From 72d99540add5e4b39afc249b375bce3ba92afd9b Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Sat, 2 May 2026 22:56:48 -0400 Subject: [PATCH 01/15] feat(Dodge): Add Dodge component for deterministic non-overlapping layout --- .changeset/add-dodge-component.md | 19 ++ .../primitives-inherit-chart-accessors.md | 23 ++ docs/src/content/components/Dodge.md | 42 +++ .../src/content/components/ForceSimulation.md | 2 +- docs/src/examples/catalog/Axis.json | 2 +- docs/src/examples/catalog/Chart.json | 37 ++- docs/src/examples/catalog/Circle.json | 37 ++- docs/src/examples/catalog/Dodge.json | 183 +++++++++++ docs/src/examples/catalog/Layer.json | 2 +- docs/src/examples/catalog/Legend.json | 2 +- docs/src/examples/catalog/Line.json | 16 +- docs/src/examples/catalog/Text.json | 16 +- docs/src/examples/catalog/Tooltip.json | 142 ++++++++- .../examples/components/Dodge/anchor.svelte | 61 ++++ .../examples/components/Dodge/beeswarm.svelte | 57 ++++ .../examples/components/Dodge/penguins.svelte | 75 +++++ .../examples/components/Dodge/timeline.svelte | 98 ++++++ .../components/Dodge/variable-radius.svelte | 71 +++++ .../components/Circle/Circle.shared.svelte.ts | 33 +- .../components/Circle/Circle.svelte.test.ts | 78 +++++ .../components/Dodge/Dodge.shared.svelte.ts | 292 ++++++++++++++++++ .../src/lib/components/Dodge/Dodge.svelte | 64 ++++ .../src/lib/components/Dodge/Dodge.test.ts | 147 +++++++++ .../lib/components/Text/Text.shared.svelte.ts | 24 +- .../lib/components/Text/Text.svelte.test.ts | 46 +++ .../layerchart/src/lib/components/index.ts | 2 + pnpm-lock.yaml | 270 +--------------- 27 files changed, 1555 insertions(+), 286 deletions(-) create mode 100644 .changeset/add-dodge-component.md create mode 100644 .changeset/primitives-inherit-chart-accessors.md create mode 100644 docs/src/content/components/Dodge.md create mode 100644 docs/src/examples/catalog/Dodge.json create mode 100644 docs/src/examples/components/Dodge/anchor.svelte create mode 100644 docs/src/examples/components/Dodge/beeswarm.svelte create mode 100644 docs/src/examples/components/Dodge/penguins.svelte create mode 100644 docs/src/examples/components/Dodge/timeline.svelte create mode 100644 docs/src/examples/components/Dodge/variable-radius.svelte create mode 100644 packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts create mode 100644 packages/layerchart/src/lib/components/Dodge/Dodge.svelte create mode 100644 packages/layerchart/src/lib/components/Dodge/Dodge.test.ts diff --git a/.changeset/add-dodge-component.md b/.changeset/add-dodge-component.md new file mode 100644 index 000000000..471bf45bc --- /dev/null +++ b/.changeset/add-dodge-component.md @@ -0,0 +1,19 @@ +--- +'layerchart': minor +--- + +feat(Dodge): Add Dodge component for deterministic non-overlapping layout + +A new composition component (similar to `ForceSimulation`) that packs items along one axis to avoid overlaps. Modeled after [Observable Plot's `dodge` transform](https://observablehq.com/plot/transforms/dodge): + +- `axis`: `'x'` or `'y'` — which axis to dodge along (default `'y'`) +- `anchor`: `'top'`/`'middle'`/`'bottom'` (for `axis='y'`) or `'left'`/`'middle'`/`'right'` (for `axis='x'`) — controls which edge items grow away from +- `padding`: minimum px gap between items +- `r`: collision radius per item (constant or accessor). When omitted, falls back to the chart's `r` accessor / `rScale` (matching `Points`), then to a default of `5`. +- `position`: override the anchor-axis pixel accessor (defaults to chart's `xGet`/`yGet`) + +Yields each item's computed pixel `x`/`y` (and original `index`) via the children snippet, so you can render with any primitive (`Circle`, `Text`, etc.). + +Also includes a `rowHeight` mode that switches from circular to row-based rectangular packing — useful for text labels where circular collision would produce unnecessarily large vertical gaps. The pure `dodge()` algorithm is exported from `Dodge.shared.svelte.ts` for direct use. + +Algorithm modeled after Observable Plot / SveltePlot: maintains an interval tree of placed items keyed by anchor-axis extent, queries it for items in the new item's collision zone, and builds candidate dodge-axis positions from circle-tangency math. Currently implemented as a linear-scan tracker with the same API; can be swapped for a real interval tree without API changes if profiling demands it. diff --git a/.changeset/primitives-inherit-chart-accessors.md b/.changeset/primitives-inherit-chart-accessors.md new file mode 100644 index 000000000..2015af9a9 --- /dev/null +++ b/.changeset/primitives-inherit-chart-accessors.md @@ -0,0 +1,23 @@ +--- +'layerchart': minor +--- + +feat(Circle, Text): Inherit chart accessors by default in data mode + +`` and `` now fall back to the chart's `x`/`y`/`r` accessors (via `xGet`/`yGet`/`rGet`) when the corresponding position prop is omitted — matching how `` and the new `` work. This lets the chart be the single source of truth for `x`/`y`/`r` and removes the boilerplate of repeating those props on every primitive: + +```svelte + + + + + + + + + +``` + +`Circle` and `Text` also now enter data mode when `data` is explicitly passed (in addition to the existing trigger when `cx`/`cy`/`x`/`y` are data-driven), so the implicit-accessor pattern works without needing to pass redundant string accessors just to trigger iteration. + +Behavior is unchanged whenever any position prop is set explicitly — the hardcoded defaults (0/0/1) only apply when neither prop nor chart-level config is present. All existing usages in the docs pass explicit position props, so this is purely additive. diff --git a/docs/src/content/components/Dodge.md b/docs/src/content/components/Dodge.md new file mode 100644 index 000000000..322f9170b --- /dev/null +++ b/docs/src/content/components/Dodge.md @@ -0,0 +1,42 @@ +--- +description: Layout transform that packs items along one axis to avoid overlaps, deterministically. +category: layout +layers: [svg, canvas, html] +related: [ForceSimulation, Points, Circle] +--- + +The **Dodge** transform repositions items along one axis so they don't overlap, given their positions on the other axis. Unlike [`ForceSimulation`](/docs/components/ForceSimulation), it's deterministic — the same input always produces the same layout — and faster to compute. Modeled after [Observable Plot's `dodge` transform](https://observablehq.com/plot/transforms/dodge). + +It's a non-rendering composition component: pass it your data, an `axis`, an `anchor`, and a per-item `r` (collision radius), and it yields each item's computed pixel `x`/`y` via the children snippet for you to render however you want. + +## Beeswarm + +A 1-D distribution stacked vertically with `axis="y"` and `anchor="middle"`. Pass a constant `r` for uniform circles. + +:example{ name="beeswarm" } + +## With series + +Combine with the `series` prop on `` and `` for a categorical beeswarm. Filter `data` by `context.series.visibleSeries` so the dodge re-packs when categories are toggled. + +:example{ name="penguins" } + +## Variable radius + +Omit Dodge's `r` prop and configure `r="someProperty"` (with `rRange`) on `` — Dodge picks up the chart's `rGet` automatically, the same way `Points` does. Larger items are placed first (closest to the anchor). + +:example{ name="variable-radius" } + +## Anchor + +Use `anchor` to control where the stack grows from along the dodge axis: `'top'`/`'middle'`/`'bottom'` for `axis="y"`, `'left'`/`'middle'`/`'right'` for `axis="x"`. Items always grow _away_ from the anchor. + +:example{ name="anchor" } + +## Row-based packing for text labels + +Circular dodge produces large vertical gaps when collision radius is meaningfully wider than item height (e.g. text labels where `r ≈ labelWidth/2`). Set `rowHeight` to switch to rectangular row-based packing — items are placed in fixed-height rows, with collision checked horizontally only. + +This timeline pans/zooms via ``; labels re-pack on every zoom step. + +:example{ name="timeline" } diff --git a/docs/src/content/components/ForceSimulation.md b/docs/src/content/components/ForceSimulation.md index 0a38df542..c69a9f085 100644 --- a/docs/src/content/components/ForceSimulation.md +++ b/docs/src/content/components/ForceSimulation.md @@ -2,7 +2,7 @@ description: Layout components which positions nodes using physics-based forces, simulating attraction, repulsion, and link constraints to create an intuitive, collision-free network visualization. category: layout layers: [svg, canvas] -related: [] +related: [Dodge] --- ## Usage diff --git a/docs/src/examples/catalog/Axis.json b/docs/src/examples/catalog/Axis.json index 6325017ca..a31a9ab4f 100644 --- a/docs/src/examples/catalog/Axis.json +++ b/docs/src/examples/catalog/Axis.json @@ -5120,5 +5120,5 @@ "line": "" } ], - "updatedAt": "2026-04-30T15:36:22.340Z" + "updatedAt": "2026-05-01T16:26:39.743Z" } \ No newline at end of file diff --git a/docs/src/examples/catalog/Chart.json b/docs/src/examples/catalog/Chart.json index fa6db086c..6e47457fb 100644 --- a/docs/src/examples/catalog/Chart.json +++ b/docs/src/examples/catalog/Chart.json @@ -1923,6 +1923,41 @@ "lineNumber": 18, "line": "" } ], - "updatedAt": "2026-04-30T15:36:23.412Z" + "updatedAt": "2026-05-01T15:54:49.419Z" } \ No newline at end of file diff --git a/docs/src/examples/catalog/Circle.json b/docs/src/examples/catalog/Circle.json index b1f149b96..a7d0f829f 100644 --- a/docs/src/examples/catalog/Circle.json +++ b/docs/src/examples/catalog/Circle.json @@ -436,6 +436,41 @@ "lineNumber": 37, "line": "" } ], - "updatedAt": "2026-04-30T15:36:23.837Z" + "updatedAt": "2026-05-01T16:26:40.468Z" } \ No newline at end of file diff --git a/docs/src/examples/catalog/Dodge.json b/docs/src/examples/catalog/Dodge.json new file mode 100644 index 000000000..562ae2529 --- /dev/null +++ b/docs/src/examples/catalog/Dodge.json @@ -0,0 +1,183 @@ +{ + "component": "Dodge", + "examples": [ + { + "name": "anchor", + "title": "anchor", + "path": "/docs/components/Dodge/anchor", + "components": [ + { + "component": "Chart", + "lineNumber": 23, + "line": "" + }, + { + "component": "Circle", + "lineNumber": 48, + "line": "" + }, + { + "component": "Circle", + "lineNumber": 30, + "line": "" + } + ] + }, + { + "name": "penguins", + "title": "penguins", + "path": "/docs/components/Dodge/penguins", + "components": [ + { + "component": "Chart", + "lineNumber": 24, + "line": "" + }, + { + "component": "Circle", + "lineNumber": 46, + "line": "" + } + ] + }, + { + "name": "timeline", + "title": "timeline", + "path": "/docs/components/Dodge/timeline", + "components": [ + { + "component": "Chart", + "lineNumber": 34, + "line": "" + }, + { + "component": "Dodge", + "lineNumber": 62, + "line": "" + }, + { + "component": "Circle", + "lineNumber": 45, + "line": "" + } + ] + } + ], + "usage": [ + { + "example": "anchor", + "component": "Dodge", + "path": "/docs/components/Dodge/anchor", + "lineNumber": 45, + "line": "" + }, + { + "example": "beeswarm", + "component": "Dodge", + "path": "/docs/components/Dodge/beeswarm", + "lineNumber": 27, + "line": "" + }, + { + "example": "penguins", + "component": "Dodge", + "path": "/docs/components/Dodge/penguins", + "lineNumber": 41, + "line": "" + }, + { + "example": "timeline", + "component": "Dodge", + "path": "/docs/components/Dodge/timeline", + "lineNumber": 62, + "line": "" + } + ], + "updatedAt": "2026-05-01T16:26:40.766Z" +} \ No newline at end of file diff --git a/docs/src/examples/catalog/Layer.json b/docs/src/examples/catalog/Layer.json index 40ef0d69a..b2e015562 100644 --- a/docs/src/examples/catalog/Layer.json +++ b/docs/src/examples/catalog/Layer.json @@ -4217,5 +4217,5 @@ "line": "" } ], - "updatedAt": "2026-04-30T15:36:26.177Z" + "updatedAt": "2026-05-01T16:26:41.452Z" } \ No newline at end of file diff --git a/docs/src/examples/catalog/Legend.json b/docs/src/examples/catalog/Legend.json index 665fef7ea..c3c77ad47 100644 --- a/docs/src/examples/catalog/Legend.json +++ b/docs/src/examples/catalog/Legend.json @@ -557,5 +557,5 @@ "line": "" }, + { + "example": "timeline", + "component": "Dodge", + "path": "/docs/components/Dodge/timeline", + "lineNumber": 60, + "line": "" + }, + { + "example": "timeline", + "component": "Dodge", + "path": "/docs/components/Dodge/timeline", + "lineNumber": 76, + "line": "" } ], - "updatedAt": "2026-04-30T15:36:26.239Z" + "updatedAt": "2026-05-01T16:26:41.508Z" } \ No newline at end of file diff --git a/docs/src/examples/catalog/Text.json b/docs/src/examples/catalog/Text.json index e16541d56..7b3a69685 100644 --- a/docs/src/examples/catalog/Text.json +++ b/docs/src/examples/catalog/Text.json @@ -577,6 +577,20 @@ "lineNumber": 91, "line": "" }, + { + "example": "beeswarm", + "component": "Dodge", + "path": "/docs/components/Dodge/beeswarm", + "lineNumber": 45, + "line": "" + }, + { + "example": "beeswarm", + "component": "Dodge", + "path": "/docs/components/Dodge/beeswarm", + "lineNumber": 47, + "line": "{data.name}" + }, + { + "example": "beeswarm", + "component": "Dodge", + "path": "/docs/components/Dodge/beeswarm", + "lineNumber": 48, + "line": "" + }, + { + "example": "beeswarm", + "component": "Dodge", + "path": "/docs/components/Dodge/beeswarm", + "lineNumber": 49, + "line": "" + }, + { + "example": "beeswarm", + "component": "Dodge", + "path": "/docs/components/Dodge/beeswarm", + "lineNumber": 50, + "line": "" + }, + { + "example": "beeswarm", + "component": "Dodge", + "path": "/docs/components/Dodge/beeswarm", + "lineNumber": 51, + "line": "" + }, + { + "example": "beeswarm", + "component": "Dodge", + "path": "/docs/components/Dodge/beeswarm", + "lineNumber": 52, + "line": "" + }, + { + "example": "penguins", + "component": "Dodge", + "path": "/docs/components/Dodge/penguins", + "lineNumber": 62, + "line": "" + }, + { + "example": "penguins", + "component": "Dodge", + "path": "/docs/components/Dodge/penguins", + "lineNumber": 64, + "line": "{data.species}" + }, + { + "example": "penguins", + "component": "Dodge", + "path": "/docs/components/Dodge/penguins", + "lineNumber": 65, + "line": "" + }, + { + "example": "penguins", + "component": "Dodge", + "path": "/docs/components/Dodge/penguins", + "lineNumber": 66, + "line": "" + }, + { + "example": "penguins", + "component": "Dodge", + "path": "/docs/components/Dodge/penguins", + "lineNumber": 67, + "line": "" + }, + { + "example": "penguins", + "component": "Dodge", + "path": "/docs/components/Dodge/penguins", + "lineNumber": 68, + "line": "" + }, + { + "example": "penguins", + "component": "Dodge", + "path": "/docs/components/Dodge/penguins", + "lineNumber": 69, + "line": "" + }, + { + "example": "variable-radius", + "component": "Dodge", + "path": "/docs/components/Dodge/variable-radius", + "lineNumber": 60, + "line": "" + }, + { + "example": "variable-radius", + "component": "Dodge", + "path": "/docs/components/Dodge/variable-radius", + "lineNumber": 62, + "line": "{data.title}" + }, + { + "example": "variable-radius", + "component": "Dodge", + "path": "/docs/components/Dodge/variable-radius", + "lineNumber": 63, + "line": "" + }, + { + "example": "variable-radius", + "component": "Dodge", + "path": "/docs/components/Dodge/variable-radius", + "lineNumber": 64, + "line": "" + }, + { + "example": "variable-radius", + "component": "Dodge", + "path": "/docs/components/Dodge/variable-radius", + "lineNumber": 65, + "line": "" + }, + { + "example": "variable-radius", + "component": "Dodge", + "path": "/docs/components/Dodge/variable-radius", + "lineNumber": 66, + "line": "" + }, { "example": "beeswarm", "component": "ForceSimulation", @@ -6797,5 +6937,5 @@ "line": "" } ], - "updatedAt": "2026-04-30T15:36:28.642Z" + "updatedAt": "2026-05-01T16:26:42.334Z" } \ No newline at end of file diff --git a/docs/src/examples/components/Dodge/anchor.svelte b/docs/src/examples/components/Dodge/anchor.svelte new file mode 100644 index 000000000..332c5accf --- /dev/null +++ b/docs/src/examples/components/Dodge/anchor.svelte @@ -0,0 +1,61 @@ + + + + +
+ {#each anchors as anchor (anchor)} +
+ + {#snippet marks({ context })} + + + + {#snippet children({ items: dodged })} + {#each dodged as { x, y, index } (index)} + context.tooltip.show(e, items[index])} + onpointerleave={context.tooltip.hide} + /> + {/each} + {/snippet} + + {/snippet} + +
+ {/each} +
diff --git a/docs/src/examples/components/Dodge/beeswarm.svelte b/docs/src/examples/components/Dodge/beeswarm.svelte new file mode 100644 index 000000000..a805e5abf --- /dev/null +++ b/docs/src/examples/components/Dodge/beeswarm.svelte @@ -0,0 +1,57 @@ + + + + + d.date_of_birth.getFullYear()} + xNice + padding={{ bottom: 20, left: 12, right: 12 }} + height={300} + axis="x" + rule={false} + props={{ xAxis: { format: 'none' } }} +> + {#snippet marks({ context })} + + {#snippet children({ items })} + {#each items as { data: senator, x, y, index } (index)} + context.tooltip.show(e, senator)} + onpointerleave={context.tooltip.hide} + /> + {/each} + {/snippet} + + {/snippet} + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {data.name} + + + + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/components/Dodge/penguins.svelte b/docs/src/examples/components/Dodge/penguins.svelte new file mode 100644 index 000000000..edea58292 --- /dev/null +++ b/docs/src/examples/components/Dodge/penguins.svelte @@ -0,0 +1,75 @@ + + + + + + {#snippet marks({ context })} + {@const visibleSeries = context.series.visibleSeries} + {@const visibleKeys = new Set(visibleSeries.map((s) => s.key))} + {@const visibleItems = items.filter((d) => visibleKeys.has(d.species))} + + + {#snippet children({ items: dodged })} + {#each dodged as { data: p, x, y, index } (index)} + {@const series = visibleSeries.find((s) => s.key === p.species)} + {@const opacity = context.series.isHighlighted(p.species, true) ? 1 : 0.2} + context.tooltip.show(e, p)} + onpointerleave={context.tooltip.hide} + /> + {/each} + {/snippet} + + {/snippet} + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {data.species} + + + + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/components/Dodge/timeline.svelte b/docs/src/examples/components/Dodge/timeline.svelte new file mode 100644 index 000000000..bb6600cf3 --- /dev/null +++ b/docs/src/examples/components/Dodge/timeline.svelte @@ -0,0 +1,98 @@ + + + + + + {#snippet aboveContext({ context })} + {@const visibleSeries = context.series.visibleSeries} + {@const visibleKeys = new Set(visibleSeries.map((s) => s.key))} + {@const visibleItems = items.filter((d) => visibleKeys.has(d.category))} + {@const baselineY = context.height} + + + labelHalfWidth(d.label)} + > + {#snippet children({ items: dodged })} + {#each dodged as { data: item, x, y, index } (index)} + {@const series = visibleSeries.find((s) => s.key === item.category)} + {@const opacity = context.series.isHighlighted(item.category, true) ? 1 : 0.2} + {@const labelY = y - 6} + + + + + {/each} + {/snippet} + + + {/snippet} + diff --git a/docs/src/examples/components/Dodge/variable-radius.svelte b/docs/src/examples/components/Dodge/variable-radius.svelte new file mode 100644 index 000000000..bffb9ddf7 --- /dev/null +++ b/docs/src/examples/components/Dodge/variable-radius.svelte @@ -0,0 +1,71 @@ + + + + + + {#snippet marks({ context })} + + {#snippet children({ items: dodged })} + {#each dodged as { data: country, x, y, r, index } (index)} + context.tooltip.show(e, country)} + onpointerleave={context.tooltip.hide} + /> + {/each} + {/snippet} + + {/snippet} + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {data.title} + + + + + + {/snippet} + + {/snippet} + diff --git a/packages/layerchart/src/lib/components/Circle/Circle.shared.svelte.ts b/packages/layerchart/src/lib/components/Circle/Circle.shared.svelte.ts index 4b1bf9029..f488cc9fa 100644 --- a/packages/layerchart/src/lib/components/Circle/Circle.shared.svelte.ts +++ b/packages/layerchart/src/lib/components/Circle/Circle.shared.svelte.ts @@ -118,18 +118,40 @@ export function resolveCircle( chartCtx: ChartState, geo: GeoState ): { cx: number; cy: number; r: number } { + // When cx/cy/r are omitted, fall back to the chart's accessors + // (xGet/yGet/rGet) — same pattern as `Points`. Hardcoded defaults + // (0/0/1) only apply when neither prop nor chart-level config is set. + const cxDefault = + typeof props.cx === 'number' + ? props.cx + : props.cx == null && chartCtx.config.x != null + ? Number(chartCtx.xGet(d)) || 0 + : 0; + const cyDefault = + typeof props.cy === 'number' + ? props.cy + : props.cy == null && chartCtx.config.y != null + ? Number(chartCtx.yGet(d)) || 0 + : 0; + const rDefault = + typeof props.r === 'number' + ? props.r + : props.r == null && chartCtx.config.r != null + ? Number(chartCtx.rGet(d)) || 1 + : 1; + if (geo.projection) { const [projX, projY] = resolveGeoDataPair(props.cx, props.cy, d, geo.projection); return { cx: projX, cy: projY, - r: resolveDataProp(props.r, d, chartCtx.rScale, typeof props.r === 'number' ? props.r : 1), + r: resolveDataProp(props.r, d, chartCtx.rScale, rDefault), }; } return { - cx: resolveDataProp(props.cx, d, chartCtx.xScale, 0), - cy: resolveDataProp(props.cy, d, chartCtx.yScale, 0), - r: resolveDataProp(props.r, d, chartCtx.rScale, typeof props.r === 'number' ? props.r : 1), + cx: resolveDataProp(props.cx, d, chartCtx.xScale, cxDefault), + cy: resolveDataProp(props.cy, d, chartCtx.yScale, cyDefault), + r: resolveDataProp(props.r, d, chartCtx.rScale, rDefault), }; } @@ -159,7 +181,8 @@ export class CircleState { this.dashArrayResolved ? this.dashArrayResolved.join(' ') : undefined ); dataMode = $derived( - hasAnyDataProp(this.#getProps().cx, this.#getProps().cy, this.#getProps().r) + this.#getProps().data != null || + hasAnyDataProp(this.#getProps().cx, this.#getProps().cy, this.#getProps().r) ); #resolvedData: any[] = $derived( this.dataMode ? (this.#getProps().data ?? chartDataArray(this.chartCtx.data)) : [] diff --git a/packages/layerchart/src/lib/components/Circle/Circle.svelte.test.ts b/packages/layerchart/src/lib/components/Circle/Circle.svelte.test.ts index 06f40377e..fb6214dd9 100644 --- a/packages/layerchart/src/lib/components/Circle/Circle.svelte.test.ts +++ b/packages/layerchart/src/lib/components/Circle/Circle.svelte.test.ts @@ -155,5 +155,83 @@ describe('Circle', () => { const circles = page.getByTestId(componentTestId).elements(); await expect.poll(() => circles.length).toBe(1); }); + + it('should enter data mode when only `data` prop is set, using chart accessors', async () => { + render(TestHarness, { + component: Circle, + chartProps: { + data, + x: 'date', + y: 'value', + yDomain: [0, 100], + r: 'value', + rRange: [2, 10], + }, + componentProps: { + data, + }, + }); + + const circles = page.getByTestId(componentTestId).elements(); + await expect.poll(() => circles.length).toBe(3); + + const radii = circles.map((c) => Number(c.getAttribute('r'))); + for (const r of radii) { + expect(r).toBeGreaterThanOrEqual(2); + expect(r).toBeLessThanOrEqual(10); + } + expect(radii[2]).toBeGreaterThan(radii[0]); + }); + + it('should mix explicit and chart-inherited position props', async () => { + render(TestHarness, { + component: Circle, + chartProps: { + data, + x: 'date', + y: 'value', + yDomain: [0, 100], + }, + componentProps: { + data, + cx: 'date', + r: 4, + }, + }); + + const circles = page.getByTestId(componentTestId).elements(); + await expect.poll(() => circles.length).toBe(3); + + const cys = circles.map((c) => Number(c.getAttribute('cy'))); + expect(cys[0]).toBeGreaterThan(cys[1]); + expect(cys[1]).toBeGreaterThan(cys[2]); + for (const c of circles) { + expect(c.getAttribute('r')).toBe('4'); + } + }); + + it('explicit r should win over chart rGet', async () => { + render(TestHarness, { + component: Circle, + chartProps: { + data, + x: 'date', + y: 'value', + yDomain: [0, 100], + r: 'value', + rRange: [2, 10], + }, + componentProps: { + data, + r: 7, + }, + }); + + const circles = page.getByTestId(componentTestId).elements(); + await expect.poll(() => circles.length).toBe(3); + for (const c of circles) { + expect(c.getAttribute('r')).toBe('7'); + } + }); }); }); diff --git a/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts b/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts new file mode 100644 index 000000000..3ded150de --- /dev/null +++ b/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts @@ -0,0 +1,292 @@ +import type { Snippet } from 'svelte'; + +/** + * Minimal interval tracker matching the subset of `interval-tree-1d`'s API + * used by the dodge algorithm (the same package Observable Plot and SveltePlot + * use). Inlined as a linear scan instead of a real tree because: + * + * - For typical dodge use cases (n < ~1000) linear scan beats a real tree + * on wall time due to lower constants — the tree only wins for very large + * datasets. + * - Avoids a CJS-only dep that requires `ssr.external` config in some Vite + * setups (e.g. `noExternal: true` deploys). + * + * The API mirrors `interval-tree-1d` (`insert` + `queryInterval`), so swap + * to a real tree if profiling ever shows it matters. + */ +function createIntervalTree() { + const items: Array<[number, number, number]> = []; + return { + insert(interval: [number, number, number]) { + items.push(interval); + }, + queryInterval(lo: number, hi: number, visit: (interval: [number, number, number]) => void) { + for (let i = 0; i < items.length; i++) { + const it = items[i]; + if (it[0] <= hi && it[1] >= lo) visit(it); + } + }, + }; +} + +export type DodgeAnchor = 'top' | 'middle' | 'bottom' | 'left' | 'right'; + +export type DodgeItem = { + data: T; + /** Pixel position along the x-axis. */ + x: number; + /** Pixel position along the y-axis. */ + y: number; + /** Resolved radius used for collision detection. */ + r: number; + /** Original index of the datum in the input `data` array. */ + index: number; +}; + +export type DodgePropsWithoutHTML = { + /** Data to dodge. Falls back to chart context data when omitted. */ + data?: T[]; + /** + * Axis to dodge along (the axis whose value is computed; the other axis is the anchor). + * @default 'y' + */ + axis?: 'x' | 'y'; + /** + * Anchor edge along the dodge axis. + * - `axis='y'`: `'top'` (stack down), `'middle'` (stack from center), `'bottom'` (stack up). Default `'bottom'`. + * - `axis='x'`: `'left'` (stack right), `'middle'`, `'right'`. Default `'left'`. + */ + anchor?: DodgeAnchor; + /** + * Minimum padding between items in pixels. + * @default 1 + */ + padding?: number; + /** + * Radius (or accessor) used for collision detection. + * - In circular mode (default), this is the literal collision radius. + * - In row mode (`rowHeight` set), this is the half-extent along the + * anchor axis (e.g. half the label width for text labels). + * + * Resolution priority: + * 1. This prop, if set. + * 2. The chart's `r` accessor (via `rScale`/`rRange`), if configured. + * 3. Default of `5`. + */ + r?: number | ((d: T) => number); + /** + * If set, switches to row-based rectangular packing instead of circular dodge. + * Items are placed in fixed-height rows along the dodge axis; collision + * is checked horizontally (anchor axis) using `r` as half-extent. + * + * Useful for text labels where circular collision would produce + * unnecessarily large vertical gaps. + */ + rowHeight?: number; + /** + * Override the anchor-axis pixel accessor. + * For `axis='y'`, this is x; for `axis='x'`, this is y. + * Defaults to the chart context's `xGet`/`yGet` (which applies the chart's + * scale to the chart's `x`/`y` accessor). + */ + position?: (d: T) => number; + /** Snippet receives computed positions in original data order. */ + children?: Snippet<[{ items: DodgeItem[] }]>; +}; + +export type DodgeProps = DodgePropsWithoutHTML; + +type DodgeInput = { x: number; r: number; data: T; index: number }; + +type DodgeOpts = { + axis: 'x' | 'y'; + anchor: DodgeAnchor; + padding: number; + /** Chart dimension along the dodge axis (height for `axis='y'`, width for `axis='x'`). */ + size: number; + /** When set, switch to row-based rectangular packing. */ + rowHeight?: number; +}; + +/** + * Anchor descriptor: `[ky, ty]` where `ky` is the direction multiplier + * (-1, 0, or 1) and `ty` is the baseline pixel coordinate. The dodge + * algorithm packs items in a normalized space starting at `0`, then maps + * back to chart space via `final = ky * packed + ty` (ky=0 treated as 1). + * + * - axis='y', anchor='bottom': [-1, size] items stack upward from bottom + * - axis='y', anchor='top': [ 1, 0] items stack downward from top + * - axis='y', anchor='middle': [ 0, size/2] items stack symmetrically from center + * - axis='x', anchor='left': [ 1, 0] + * - axis='x', anchor='right': [-1, size] + * - axis='x', anchor='middle': [ 0, size/2] + */ +function resolveAnchor(axis: 'x' | 'y', anchor: DodgeAnchor, size: number): [number, number] { + if (anchor === 'middle') return [0, size / 2]; + if (axis === 'y') { + return anchor === 'top' ? [1, 0] : [-1, size]; // bottom + } + return anchor === 'right' ? [-1, size] : [1, 0]; // left +} + +function compareSymmetric(a: number, b: number): number { + return Math.abs(a) - Math.abs(b); +} + +function compareAscending(a: number, b: number): number { + return a - b; +} + +/** + * Pack items along one axis so they don't overlap, given their positions on + * the other axis. Modeled after Observable Plot's `dodge` transform — uses an + * interval tree to find candidate positions in `O(log n + k)` per item. + * + * `input.x` is always the anchor-axis position regardless of `axis`. The + * algorithm packs along the dodge axis and the wrapper swaps `x`/`y` in the + * result for `axis='x'`. + * + * For text labels (where collision is more naturally rectangular), set + * `rowHeight` to switch to row-based packing. + * + * @see https://observablehq.com/plot/transforms/dodge + */ +export function dodge(input: DodgeInput[], opts: DodgeOpts): DodgeItem[] { + if (opts.rowHeight != null) { + return dodgeRows(input, opts as DodgeOpts & { rowHeight: number }); + } + return dodgeCircular(input, opts); +} + +/** + * Map per-item normalized dodge-axis positions (`packed`) back to chart space + * and package as `DodgeItem`s. Handles the axis swap for `axis='x'` (where + * `input.x` is the chart-y anchor). + */ +function buildResult( + input: DodgeInput[], + packed: Float64Array, + axis: 'x' | 'y', + ky: number, + ty: number +): DodgeItem[] { + const factor = ky === 0 ? 1 : ky; + const result: DodgeItem[] = new Array(input.length); + for (let i = 0; i < input.length; i++) { + const item = input[i]; + const dodgePos = packed[i] * factor + ty; + result[i] = + axis === 'y' + ? { data: item.data, x: item.x, y: dodgePos, r: item.r, index: item.index } + : { data: item.data, x: dodgePos, y: item.x, r: item.r, index: item.index }; + } + return result; +} + +function dodgeCircular(input: DodgeInput[], opts: DodgeOpts): DodgeItem[] { + const { axis, anchor, padding, size } = opts; + const [ky, ty] = resolveAnchor(axis, anchor, size); + const compare = ky === 0 ? compareSymmetric : compareAscending; + + // `intervals[0..k]` is a flat array of [lo0, hi0, lo1, hi1, ...] forbidden + // zones along the dodge axis for the current item. Slot 0/1 is reserved + // for the natural anchor zone ([0, 0], a no-op zone keeping y=0 in the + // candidate set). Tangent positions from each colliding placed item add + // two more candidate y values each. + const intervals = new Float64Array(2 * input.length + 2); + const packed = new Float64Array(input.length); + const tree = createIntervalTree(); + + for (let i = 0; i < input.length; i++) { + const item = input[i]; + const ri = item.r; + // y0 shifts the natural anchor down by ri+padding so the item sits flush + // against the anchor edge. middle anchor (ky=0) needs no shift. + const y0 = ky !== 0 ? ri + padding : 0; + const l = item.x - ri; + const h = item.x + ri; + + let k = 2; + tree.queryInterval(l - padding, h + padding, (interval: [number, number, number]) => { + const j = interval[2]; + const yj = packed[j] - y0; + const dx = item.x - input[j].x; + const dr = ri + input[j].r + padding; + const sq = dr * dr - dx * dx; + if (sq >= 0) { + const dy = Math.sqrt(sq); + intervals[k++] = yj - dy; + intervals[k++] = yj + dy; + } + }); + + let candidates = Array.from(intervals.slice(0, k)); + if (ky !== 0) candidates = candidates.filter((y) => y >= 0); + candidates.sort(compare); + + let chosen = y0; // fallback: natural anchor when nothing fits + out: for (const y of candidates) { + for (let j = 0; j < k; j += 2) { + if (intervals[j] + 1e-6 < y && y < intervals[j + 1] - 1e-6) { + continue out; + } + } + chosen = y + y0; + break; + } + packed[i] = chosen; + + tree.insert([l, h, i]); + } + + return buildResult(input, packed, axis, ky, ty); +} + +/** + * Row-based rectangular packing — same interval-tree query as circular dodge, + * but we only care which rows are already occupied in the overlap range. + * Items are placed in the lowest free row at fixed `rowHeight` increments. + * + * Useful for text labels where treating each label as a circle of radius + * `labelWidth/2` would produce unnecessarily large vertical gaps. + */ +function dodgeRows( + input: DodgeInput[], + opts: DodgeOpts & { rowHeight: number } +): DodgeItem[] { + const { axis, anchor, padding, size, rowHeight } = opts; + const [ky, ty] = resolveAnchor(axis, anchor, size); + + const rows = new Int32Array(input.length); + const packed = new Float64Array(input.length); + const tree = createIntervalTree(); + + for (let i = 0; i < input.length; i++) { + const item = input[i]; + const l = item.x - item.r; + const h = item.x + item.r; + + const used = new Set(); + tree.queryInterval(l - padding, h + padding, (interval: [number, number, number]) => { + used.add(rows[interval[2]]); + }); + + let row = 0; + while (used.has(row)) row++; + rows[i] = row; + + if (ky === 0) { + // middle: alternate above/below (even rows above, odd rows below) + const sign = row % 2 === 0 ? -1 : 1; + const step = Math.floor(row / 2) + (row === 0 ? 0 : 1); + packed[i] = sign * step * rowHeight; + } else { + // start/end: stack outward from the anchor edge + packed[i] = row * rowHeight + rowHeight / 2; + } + + tree.insert([l, h, i]); + } + + return buildResult(input, packed, axis, ky, ty); +} diff --git a/packages/layerchart/src/lib/components/Dodge/Dodge.svelte b/packages/layerchart/src/lib/components/Dodge/Dodge.svelte new file mode 100644 index 000000000..187a8c100 --- /dev/null +++ b/packages/layerchart/src/lib/components/Dodge/Dodge.svelte @@ -0,0 +1,64 @@ + + + + +{@render children?.({ items })} diff --git a/packages/layerchart/src/lib/components/Dodge/Dodge.test.ts b/packages/layerchart/src/lib/components/Dodge/Dodge.test.ts new file mode 100644 index 000000000..03e4f6129 --- /dev/null +++ b/packages/layerchart/src/lib/components/Dodge/Dodge.test.ts @@ -0,0 +1,147 @@ +import { describe, it, expect } from 'vitest'; +import { dodge } from './Dodge.shared.svelte.js'; + +type T = { id: string }; + +function input(arr: { id: string; x: number; r: number }[]) { + return arr.map((d, index) => ({ x: d.x, r: d.r, data: { id: d.id }, index })); +} + +describe('dodge() — circular packing', () => { + it('places a single item at the natural anchor position', () => { + const out = dodge(input([{ id: 'a', x: 50, r: 10 }]), { + axis: 'y', + anchor: 'bottom', + padding: 0, + size: 100, + }); + expect(out).toHaveLength(1); + expect(out[0].x).toBe(50); + expect(out[0].y).toBe(90); // size - r + }); + + it('places non-overlapping items both at the anchor', () => { + // Two items 100px apart, r=10 each — no horizontal overlap, both can sit at the bottom + const out = dodge( + input([ + { id: 'a', x: 0, r: 10 }, + { id: 'b', x: 100, r: 10 }, + ]), + { axis: 'y', anchor: 'bottom', padding: 0, size: 100 } + ); + expect(out[0].y).toBe(90); + expect(out[1].y).toBe(90); + }); + + it('stacks overlapping items vertically', () => { + // Two items at the same x — must stack with a gap ≥ r1 + r2 + padding = 21. + // padding is also applied to the chart edge, so the first item sits 1px + // above the bottom (y=89, not 90). + const out = dodge( + input([ + { id: 'a', x: 50, r: 10 }, + { id: 'b', x: 50, r: 10 }, + ]), + { axis: 'y', anchor: 'bottom', padding: 1, size: 100 } + ); + expect(out[0].y).toBe(89); + expect(out[1].y).toBeCloseTo(89 - 21, 5); // gap of sumR+padding + }); + + it('returns items in original input order', () => { + const out = dodge( + input([ + { id: 'small', x: 50, r: 5 }, + { id: 'large', x: 50, r: 20 }, + ]), + { axis: 'y', anchor: 'bottom', padding: 0, size: 100 } + ); + expect(out[0].data.id).toBe('small'); + expect(out[1].data.id).toBe('large'); + // Algorithm processes input order: small placed first at bottom (y=95), + // then large stacks above. + expect(out[0].y).toBe(95); + expect(out[1].y).toBeLessThan(95); + }); + + it('respects anchor=top (stacks downward)', () => { + const out = dodge( + input([ + { id: 'a', x: 50, r: 10 }, + { id: 'b', x: 50, r: 10 }, + ]), + { axis: 'y', anchor: 'top', padding: 0, size: 100 } + ); + expect(out[0].y).toBe(10); // first at top + expect(out[1].y).toBeCloseTo(30, 5); // second below, gap = r1+r2 = 20 + }); + + it('swaps axes for axis=x', () => { + const out = dodge(input([{ id: 'a', x: 30, r: 5 }]), { + axis: 'x', + anchor: 'left', + padding: 0, + size: 200, + }); + expect(out[0].x).toBe(5); // dodged: at left edge + expect(out[0].y).toBe(30); // anchor y preserved + }); +}); + +describe('dodge() — row-based packing (rowHeight)', () => { + it('places non-overlapping items in row 0', () => { + const out = dodge( + input([ + { id: 'a', x: 0, r: 20 }, // spans -20 to 20 + { id: 'b', x: 100, r: 20 }, // spans 80 to 120 + ]), + { axis: 'y', anchor: 'bottom', padding: 0, size: 200, rowHeight: 16 } + ); + // Row 0 center from bottom = size - rowHeight/2 = 192 + expect(out[0].y).toBe(192); + expect(out[1].y).toBe(192); + }); + + it('stacks horizontally-overlapping items into separate rows', () => { + const out = dodge( + input([ + { id: 'a', x: 50, r: 30 }, + { id: 'b', x: 60, r: 30 }, + { id: 'c', x: 70, r: 30 }, + ]), + { axis: 'y', anchor: 'bottom', padding: 0, size: 200, rowHeight: 16 } + ); + // Input order: a → row 0, b overlaps a → row 1, c overlaps both → row 2 + // Row centers from bottom: 192, 176, 160. + expect(out[0].y).toBe(192); + expect(out[1].y).toBe(176); + expect(out[2].y).toBe(160); + }); + + it("reuses row 0 when later items don't overlap earlier ones in that row", () => { + const out = dodge( + input([ + { id: 'a', x: 0, r: 10 }, + { id: 'b', x: 5, r: 10 }, // overlaps a → row 1 + { id: 'c', x: 100, r: 10 }, // far from both → row 0 + ]), + { axis: 'y', anchor: 'bottom', padding: 0, size: 200, rowHeight: 16 } + ); + expect(out[0].y).toBe(192); + expect(out[1].y).toBe(176); + expect(out[2].y).toBe(192); + }); + + it('respects anchor=top for row mode', () => { + const out = dodge( + input([ + { id: 'a', x: 50, r: 30 }, + { id: 'b', x: 60, r: 30 }, + ]), + { axis: 'y', anchor: 'top', padding: 0, size: 200, rowHeight: 16 } + ); + // Row 0 from top: 0 + 16/2 = 8. Row 1: 24. + expect(out[0].y).toBe(8); + expect(out[1].y).toBe(24); + }); +}); diff --git a/packages/layerchart/src/lib/components/Text/Text.shared.svelte.ts b/packages/layerchart/src/lib/components/Text/Text.shared.svelte.ts index 081b726f5..428f14cc3 100644 --- a/packages/layerchart/src/lib/components/Text/Text.shared.svelte.ts +++ b/packages/layerchart/src/lib/components/Text/Text.shared.svelte.ts @@ -308,7 +308,11 @@ export class TextState { pathRef = $state(); // Data mode detection - dataMode = $derived(isTextDataProp(this.#getProps().x) || isTextDataProp(this.#getProps().y)); + dataMode = $derived( + this.#getProps().data != null || + isTextDataProp(this.#getProps().x) || + isTextDataProp(this.#getProps().y) + ); // Data resolution #resolvedData: any[] = $derived( @@ -343,9 +347,23 @@ export class TextState { ); return { x: projX, y: projY }; } + // When x/y are omitted, fall back to the chart's accessors (xGet/yGet) — + // mirroring the Circle / Points / Dodge pattern. + const xDefault = + typeof props.x === 'number' + ? props.x + : props.x == null && this.chartCtx.config.x != null + ? Number(this.chartCtx.xGet(d)) || 0 + : 0; + const yDefault = + typeof props.y === 'number' + ? props.y + : props.y == null && this.chartCtx.config.y != null + ? Number(this.chartCtx.yGet(d)) || 0 + : 0; return { - x: resolveDataProp(props.x as any, d, this.chartCtx.xScale, 0), - y: resolveDataProp(props.y as any, d, this.chartCtx.yScale, 0), + x: resolveDataProp(props.x as any, d, this.chartCtx.xScale, xDefault), + y: resolveDataProp(props.y as any, d, this.chartCtx.yScale, yDefault), }; } diff --git a/packages/layerchart/src/lib/components/Text/Text.svelte.test.ts b/packages/layerchart/src/lib/components/Text/Text.svelte.test.ts index 15cc4df91..e02cc9046 100644 --- a/packages/layerchart/src/lib/components/Text/Text.svelte.test.ts +++ b/packages/layerchart/src/lib/components/Text/Text.svelte.test.ts @@ -169,5 +169,51 @@ describe('Text', () => { const texts = page.getByTestId(componentTestId).elements(); await expect.poll(() => texts.length).toBe(1); }); + + it('should enter data mode when only `data` prop is set, using chart accessors', async () => { + render(TestHarness, { + component: Text, + chartProps: { + data, + x: 'date', + y: 'value', + yDomain: [0, 100], + }, + componentProps: { + data, + value: 'label', + }, + }); + + const texts = page.getByTestId(componentTestId).elements(); + await expect.poll(() => texts.length).toBe(3); + + const ys = texts.map((t) => Number(t.getAttribute('y'))); + expect(ys[0]).toBeGreaterThan(ys[1]); + expect(ys[1]).toBeGreaterThan(ys[2]); + }); + + it('should fall back to chart x accessor when only y is omitted', async () => { + render(TestHarness, { + component: Text, + chartProps: { + data, + x: 'date', + y: 'value', + yDomain: [0, 100], + }, + componentProps: { + data, + x: 'date', + value: 'label', + }, + }); + + const texts = page.getByTestId(componentTestId).elements(); + await expect.poll(() => texts.length).toBe(3); + + const ys = texts.map((t) => Number(t.getAttribute('y'))); + expect(ys[0]).toBeGreaterThan(ys[2]); + }); }); }); diff --git a/packages/layerchart/src/lib/components/index.ts b/packages/layerchart/src/lib/components/index.ts index bb6bb636d..4d8ac5557 100644 --- a/packages/layerchart/src/lib/components/index.ts +++ b/packages/layerchart/src/lib/components/index.ts @@ -50,6 +50,8 @@ export { default as Contour } from './Contour/Contour.svelte'; export * from './Contour/Contour.svelte'; export { default as Density } from './Density/Density.svelte'; export * from './Density/Density.svelte'; +export { default as Dodge } from './Dodge/Dodge.svelte'; +export * from './Dodge/Dodge.svelte'; export { default as Ellipse } from './Ellipse/Ellipse.svelte'; export * from './Ellipse/Ellipse.svelte'; export { default as Frame } from './Frame/Frame.svelte'; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index dbcf99253..ed2c1ac54 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1170,12 +1170,6 @@ packages: cpu: [ppc64] os: [aix] - '@esbuild/aix-ppc64@0.27.0': - resolution: {integrity: sha512-KuZrd2hRjz01y5JK9mEBSD3Vj3mbCvemhT466rSuJYeE/hjuBrHfjjcjMdTm/sz7au+++sdbJZJmuBwQLuw68A==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [aix] - '@esbuild/aix-ppc64@0.27.3': resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==} engines: {node: '>=18'} @@ -1188,12 +1182,6 @@ packages: cpu: [arm64] os: [android] - '@esbuild/android-arm64@0.27.0': - resolution: {integrity: sha512-CC3vt4+1xZrs97/PKDkl0yN7w8edvU2vZvAFGD16n9F0Cvniy5qvzRXjfO1l94efczkkQE6g1x0i73Qf5uthOQ==} - engines: {node: '>=18'} - cpu: [arm64] - os: [android] - '@esbuild/android-arm64@0.27.3': resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==} engines: {node: '>=18'} @@ -1206,12 +1194,6 @@ packages: cpu: [arm] os: [android] - '@esbuild/android-arm@0.27.0': - resolution: {integrity: sha512-j67aezrPNYWJEOHUNLPj9maeJte7uSMM6gMoxfPC9hOg8N02JuQi/T7ewumf4tNvJadFkvLZMlAq73b9uwdMyQ==} - engines: {node: '>=18'} - cpu: [arm] - os: [android] - '@esbuild/android-arm@0.27.3': resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==} engines: {node: '>=18'} @@ -1224,12 +1206,6 @@ packages: cpu: [x64] os: [android] - '@esbuild/android-x64@0.27.0': - resolution: {integrity: sha512-wurMkF1nmQajBO1+0CJmcN17U4BP6GqNSROP8t0X/Jiw2ltYGLHpEksp9MpoBqkrFR3kv2/te6Sha26k3+yZ9Q==} - engines: {node: '>=18'} - cpu: [x64] - os: [android] - '@esbuild/android-x64@0.27.3': resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==} engines: {node: '>=18'} @@ -1242,12 +1218,6 @@ packages: cpu: [arm64] os: [darwin] - '@esbuild/darwin-arm64@0.27.0': - resolution: {integrity: sha512-uJOQKYCcHhg07DL7i8MzjvS2LaP7W7Pn/7uA0B5S1EnqAirJtbyw4yC5jQ5qcFjHK9l6o/MX9QisBg12kNkdHg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [darwin] - '@esbuild/darwin-arm64@0.27.3': resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==} engines: {node: '>=18'} @@ -1260,12 +1230,6 @@ packages: cpu: [x64] os: [darwin] - '@esbuild/darwin-x64@0.27.0': - resolution: {integrity: sha512-8mG6arH3yB/4ZXiEnXof5MK72dE6zM9cDvUcPtxhUZsDjESl9JipZYW60C3JGreKCEP+p8P/72r69m4AZGJd5g==} - engines: {node: '>=18'} - cpu: [x64] - os: [darwin] - '@esbuild/darwin-x64@0.27.3': resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==} engines: {node: '>=18'} @@ -1278,12 +1242,6 @@ packages: cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-arm64@0.27.0': - resolution: {integrity: sha512-9FHtyO988CwNMMOE3YIeci+UV+x5Zy8fI2qHNpsEtSF83YPBmE8UWmfYAQg6Ux7Gsmd4FejZqnEUZCMGaNQHQw==} - engines: {node: '>=18'} - cpu: [arm64] - os: [freebsd] - '@esbuild/freebsd-arm64@0.27.3': resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==} engines: {node: '>=18'} @@ -1296,12 +1254,6 @@ packages: cpu: [x64] os: [freebsd] - '@esbuild/freebsd-x64@0.27.0': - resolution: {integrity: sha512-zCMeMXI4HS/tXvJz8vWGexpZj2YVtRAihHLk1imZj4efx1BQzN76YFeKqlDr3bUWI26wHwLWPd3rwh6pe4EV7g==} - engines: {node: '>=18'} - cpu: [x64] - os: [freebsd] - '@esbuild/freebsd-x64@0.27.3': resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==} engines: {node: '>=18'} @@ -1314,12 +1266,6 @@ packages: cpu: [arm64] os: [linux] - '@esbuild/linux-arm64@0.27.0': - resolution: {integrity: sha512-AS18v0V+vZiLJyi/4LphvBE+OIX682Pu7ZYNsdUHyUKSoRwdnOsMf6FDekwoAFKej14WAkOef3zAORJgAtXnlQ==} - engines: {node: '>=18'} - cpu: [arm64] - os: [linux] - '@esbuild/linux-arm64@0.27.3': resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==} engines: {node: '>=18'} @@ -1332,12 +1278,6 @@ packages: cpu: [arm] os: [linux] - '@esbuild/linux-arm@0.27.0': - resolution: {integrity: sha512-t76XLQDpxgmq2cNXKTVEB7O7YMb42atj2Re2Haf45HkaUpjM2J0UuJZDuaGbPbamzZ7bawyGFUkodL+zcE+jvQ==} - engines: {node: '>=18'} - cpu: [arm] - os: [linux] - '@esbuild/linux-arm@0.27.3': resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==} engines: {node: '>=18'} @@ -1350,12 +1290,6 @@ packages: cpu: [ia32] os: [linux] - '@esbuild/linux-ia32@0.27.0': - resolution: {integrity: sha512-Mz1jxqm/kfgKkc/KLHC5qIujMvnnarD9ra1cEcrs7qshTUSksPihGrWHVG5+osAIQ68577Zpww7SGapmzSt4Nw==} - engines: {node: '>=18'} - cpu: [ia32] - os: [linux] - '@esbuild/linux-ia32@0.27.3': resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==} engines: {node: '>=18'} @@ -1368,12 +1302,6 @@ packages: cpu: [loong64] os: [linux] - '@esbuild/linux-loong64@0.27.0': - resolution: {integrity: sha512-QbEREjdJeIreIAbdG2hLU1yXm1uu+LTdzoq1KCo4G4pFOLlvIspBm36QrQOar9LFduavoWX2msNFAAAY9j4BDg==} - engines: {node: '>=18'} - cpu: [loong64] - os: [linux] - '@esbuild/linux-loong64@0.27.3': resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==} engines: {node: '>=18'} @@ -1386,12 +1314,6 @@ packages: cpu: [mips64el] os: [linux] - '@esbuild/linux-mips64el@0.27.0': - resolution: {integrity: sha512-sJz3zRNe4tO2wxvDpH/HYJilb6+2YJxo/ZNbVdtFiKDufzWq4JmKAiHy9iGoLjAV7r/W32VgaHGkk35cUXlNOg==} - engines: {node: '>=18'} - cpu: [mips64el] - os: [linux] - '@esbuild/linux-mips64el@0.27.3': resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==} engines: {node: '>=18'} @@ -1404,12 +1326,6 @@ packages: cpu: [ppc64] os: [linux] - '@esbuild/linux-ppc64@0.27.0': - resolution: {integrity: sha512-z9N10FBD0DCS2dmSABDBb5TLAyF1/ydVb+N4pi88T45efQ/w4ohr/F/QYCkxDPnkhkp6AIpIcQKQ8F0ANoA2JA==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [linux] - '@esbuild/linux-ppc64@0.27.3': resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==} engines: {node: '>=18'} @@ -1422,12 +1338,6 @@ packages: cpu: [riscv64] os: [linux] - '@esbuild/linux-riscv64@0.27.0': - resolution: {integrity: sha512-pQdyAIZ0BWIC5GyvVFn5awDiO14TkT/19FTmFcPdDec94KJ1uZcmFs21Fo8auMXzD4Tt+diXu1LW1gHus9fhFQ==} - engines: {node: '>=18'} - cpu: [riscv64] - os: [linux] - '@esbuild/linux-riscv64@0.27.3': resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==} engines: {node: '>=18'} @@ -1440,12 +1350,6 @@ packages: cpu: [s390x] os: [linux] - '@esbuild/linux-s390x@0.27.0': - resolution: {integrity: sha512-hPlRWR4eIDDEci953RI1BLZitgi5uqcsjKMxwYfmi4LcwyWo2IcRP+lThVnKjNtk90pLS8nKdroXYOqW+QQH+w==} - engines: {node: '>=18'} - cpu: [s390x] - os: [linux] - '@esbuild/linux-s390x@0.27.3': resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==} engines: {node: '>=18'} @@ -1458,12 +1362,6 @@ packages: cpu: [x64] os: [linux] - '@esbuild/linux-x64@0.27.0': - resolution: {integrity: sha512-1hBWx4OUJE2cab++aVZ7pObD6s+DK4mPGpemtnAORBvb5l/g5xFGk0vc0PjSkrDs0XaXj9yyob3d14XqvnQ4gw==} - engines: {node: '>=18'} - cpu: [x64] - os: [linux] - '@esbuild/linux-x64@0.27.3': resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==} engines: {node: '>=18'} @@ -1476,12 +1374,6 @@ packages: cpu: [arm64] os: [netbsd] - '@esbuild/netbsd-arm64@0.27.0': - resolution: {integrity: sha512-6m0sfQfxfQfy1qRuecMkJlf1cIzTOgyaeXaiVaaki8/v+WB+U4hc6ik15ZW6TAllRlg/WuQXxWj1jx6C+dfy3w==} - engines: {node: '>=18'} - cpu: [arm64] - os: [netbsd] - '@esbuild/netbsd-arm64@0.27.3': resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==} engines: {node: '>=18'} @@ -1494,12 +1386,6 @@ packages: cpu: [x64] os: [netbsd] - '@esbuild/netbsd-x64@0.27.0': - resolution: {integrity: sha512-xbbOdfn06FtcJ9d0ShxxvSn2iUsGd/lgPIO2V3VZIPDbEaIj1/3nBBe1AwuEZKXVXkMmpr6LUAgMkLD/4D2PPA==} - engines: {node: '>=18'} - cpu: [x64] - os: [netbsd] - '@esbuild/netbsd-x64@0.27.3': resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==} engines: {node: '>=18'} @@ -1512,12 +1398,6 @@ packages: cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-arm64@0.27.0': - resolution: {integrity: sha512-fWgqR8uNbCQ/GGv0yhzttj6sU/9Z5/Sv/VGU3F5OuXK6J6SlriONKrQ7tNlwBrJZXRYk5jUhuWvF7GYzGguBZQ==} - engines: {node: '>=18'} - cpu: [arm64] - os: [openbsd] - '@esbuild/openbsd-arm64@0.27.3': resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==} engines: {node: '>=18'} @@ -1530,12 +1410,6 @@ packages: cpu: [x64] os: [openbsd] - '@esbuild/openbsd-x64@0.27.0': - resolution: {integrity: sha512-aCwlRdSNMNxkGGqQajMUza6uXzR/U0dIl1QmLjPtRbLOx3Gy3otfFu/VjATy4yQzo9yFDGTxYDo1FfAD9oRD2A==} - engines: {node: '>=18'} - cpu: [x64] - os: [openbsd] - '@esbuild/openbsd-x64@0.27.3': resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==} engines: {node: '>=18'} @@ -1548,12 +1422,6 @@ packages: cpu: [arm64] os: [openharmony] - '@esbuild/openharmony-arm64@0.27.0': - resolution: {integrity: sha512-nyvsBccxNAsNYz2jVFYwEGuRRomqZ149A39SHWk4hV0jWxKM0hjBPm3AmdxcbHiFLbBSwG6SbpIcUbXjgyECfA==} - engines: {node: '>=18'} - cpu: [arm64] - os: [openharmony] - '@esbuild/openharmony-arm64@0.27.3': resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==} engines: {node: '>=18'} @@ -1566,12 +1434,6 @@ packages: cpu: [x64] os: [sunos] - '@esbuild/sunos-x64@0.27.0': - resolution: {integrity: sha512-Q1KY1iJafM+UX6CFEL+F4HRTgygmEW568YMqDA5UV97AuZSm21b7SXIrRJDwXWPzr8MGr75fUZPV67FdtMHlHA==} - engines: {node: '>=18'} - cpu: [x64] - os: [sunos] - '@esbuild/sunos-x64@0.27.3': resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==} engines: {node: '>=18'} @@ -1584,12 +1446,6 @@ packages: cpu: [arm64] os: [win32] - '@esbuild/win32-arm64@0.27.0': - resolution: {integrity: sha512-W1eyGNi6d+8kOmZIwi/EDjrL9nxQIQ0MiGqe/AWc6+IaHloxHSGoeRgDRKHFISThLmsewZ5nHFvGFWdBYlgKPg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [win32] - '@esbuild/win32-arm64@0.27.3': resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==} engines: {node: '>=18'} @@ -1602,12 +1458,6 @@ packages: cpu: [ia32] os: [win32] - '@esbuild/win32-ia32@0.27.0': - resolution: {integrity: sha512-30z1aKL9h22kQhilnYkORFYt+3wp7yZsHWus+wSKAJR8JtdfI76LJ4SBdMsCopTR3z/ORqVu5L1vtnHZWVj4cQ==} - engines: {node: '>=18'} - cpu: [ia32] - os: [win32] - '@esbuild/win32-ia32@0.27.3': resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==} engines: {node: '>=18'} @@ -1620,12 +1470,6 @@ packages: cpu: [x64] os: [win32] - '@esbuild/win32-x64@0.27.0': - resolution: {integrity: sha512-aIitBcjQeyOhMTImhLZmtxfdOcuNRpwlPNmlFKPcHQYPhEssw75Cl1TSXJXpMkzaua9FUetx/4OQKq7eJul5Cg==} - engines: {node: '>=18'} - cpu: [x64] - os: [win32] - '@esbuild/win32-x64@0.27.3': resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==} engines: {node: '>=18'} @@ -3811,11 +3655,6 @@ packages: engines: {node: '>=18'} hasBin: true - esbuild@0.27.0: - resolution: {integrity: sha512-jd0f4NHbD6cALCyGElNpGAOtWxSq46l9X/sWB0Nzd5er4Kz2YTm+Vl0qKFT9KUJvD8+fiO8AvoHhFvEatfVixA==} - engines: {node: '>=18'} - hasBin: true - esbuild@0.27.3: resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==} engines: {node: '>=18'} @@ -6233,234 +6072,156 @@ snapshots: '@esbuild/aix-ppc64@0.25.12': optional: true - '@esbuild/aix-ppc64@0.27.0': - optional: true - '@esbuild/aix-ppc64@0.27.3': optional: true '@esbuild/android-arm64@0.25.12': optional: true - '@esbuild/android-arm64@0.27.0': - optional: true - '@esbuild/android-arm64@0.27.3': optional: true '@esbuild/android-arm@0.25.12': optional: true - '@esbuild/android-arm@0.27.0': - optional: true - '@esbuild/android-arm@0.27.3': optional: true '@esbuild/android-x64@0.25.12': optional: true - '@esbuild/android-x64@0.27.0': - optional: true - '@esbuild/android-x64@0.27.3': optional: true '@esbuild/darwin-arm64@0.25.12': optional: true - '@esbuild/darwin-arm64@0.27.0': - optional: true - '@esbuild/darwin-arm64@0.27.3': optional: true '@esbuild/darwin-x64@0.25.12': optional: true - '@esbuild/darwin-x64@0.27.0': - optional: true - '@esbuild/darwin-x64@0.27.3': optional: true '@esbuild/freebsd-arm64@0.25.12': optional: true - '@esbuild/freebsd-arm64@0.27.0': - optional: true - '@esbuild/freebsd-arm64@0.27.3': optional: true '@esbuild/freebsd-x64@0.25.12': optional: true - '@esbuild/freebsd-x64@0.27.0': - optional: true - '@esbuild/freebsd-x64@0.27.3': optional: true '@esbuild/linux-arm64@0.25.12': optional: true - '@esbuild/linux-arm64@0.27.0': - optional: true - '@esbuild/linux-arm64@0.27.3': optional: true '@esbuild/linux-arm@0.25.12': optional: true - '@esbuild/linux-arm@0.27.0': - optional: true - '@esbuild/linux-arm@0.27.3': optional: true '@esbuild/linux-ia32@0.25.12': optional: true - '@esbuild/linux-ia32@0.27.0': - optional: true - '@esbuild/linux-ia32@0.27.3': optional: true '@esbuild/linux-loong64@0.25.12': optional: true - '@esbuild/linux-loong64@0.27.0': - optional: true - '@esbuild/linux-loong64@0.27.3': optional: true '@esbuild/linux-mips64el@0.25.12': optional: true - '@esbuild/linux-mips64el@0.27.0': - optional: true - '@esbuild/linux-mips64el@0.27.3': optional: true '@esbuild/linux-ppc64@0.25.12': optional: true - '@esbuild/linux-ppc64@0.27.0': - optional: true - '@esbuild/linux-ppc64@0.27.3': optional: true '@esbuild/linux-riscv64@0.25.12': optional: true - '@esbuild/linux-riscv64@0.27.0': - optional: true - '@esbuild/linux-riscv64@0.27.3': optional: true '@esbuild/linux-s390x@0.25.12': optional: true - '@esbuild/linux-s390x@0.27.0': - optional: true - '@esbuild/linux-s390x@0.27.3': optional: true '@esbuild/linux-x64@0.25.12': optional: true - '@esbuild/linux-x64@0.27.0': - optional: true - '@esbuild/linux-x64@0.27.3': optional: true '@esbuild/netbsd-arm64@0.25.12': optional: true - '@esbuild/netbsd-arm64@0.27.0': - optional: true - '@esbuild/netbsd-arm64@0.27.3': optional: true '@esbuild/netbsd-x64@0.25.12': optional: true - '@esbuild/netbsd-x64@0.27.0': - optional: true - '@esbuild/netbsd-x64@0.27.3': optional: true '@esbuild/openbsd-arm64@0.25.12': optional: true - '@esbuild/openbsd-arm64@0.27.0': - optional: true - '@esbuild/openbsd-arm64@0.27.3': optional: true '@esbuild/openbsd-x64@0.25.12': optional: true - '@esbuild/openbsd-x64@0.27.0': - optional: true - '@esbuild/openbsd-x64@0.27.3': optional: true '@esbuild/openharmony-arm64@0.25.12': optional: true - '@esbuild/openharmony-arm64@0.27.0': - optional: true - '@esbuild/openharmony-arm64@0.27.3': optional: true '@esbuild/sunos-x64@0.25.12': optional: true - '@esbuild/sunos-x64@0.27.0': - optional: true - '@esbuild/sunos-x64@0.27.3': optional: true '@esbuild/win32-arm64@0.25.12': optional: true - '@esbuild/win32-arm64@0.27.0': - optional: true - '@esbuild/win32-arm64@0.27.3': optional: true '@esbuild/win32-ia32@0.25.12': optional: true - '@esbuild/win32-ia32@0.27.0': - optional: true - '@esbuild/win32-ia32@0.27.3': optional: true '@esbuild/win32-x64@0.25.12': optional: true - '@esbuild/win32-x64@0.27.0': - optional: true - '@esbuild/win32-x64@0.27.3': optional: true @@ -8953,35 +8714,6 @@ snapshots: '@esbuild/win32-ia32': 0.25.12 '@esbuild/win32-x64': 0.25.12 - esbuild@0.27.0: - optionalDependencies: - '@esbuild/aix-ppc64': 0.27.0 - '@esbuild/android-arm': 0.27.0 - '@esbuild/android-arm64': 0.27.0 - '@esbuild/android-x64': 0.27.0 - '@esbuild/darwin-arm64': 0.27.0 - '@esbuild/darwin-x64': 0.27.0 - '@esbuild/freebsd-arm64': 0.27.0 - '@esbuild/freebsd-x64': 0.27.0 - '@esbuild/linux-arm': 0.27.0 - '@esbuild/linux-arm64': 0.27.0 - '@esbuild/linux-ia32': 0.27.0 - '@esbuild/linux-loong64': 0.27.0 - '@esbuild/linux-mips64el': 0.27.0 - '@esbuild/linux-ppc64': 0.27.0 - '@esbuild/linux-riscv64': 0.27.0 - '@esbuild/linux-s390x': 0.27.0 - '@esbuild/linux-x64': 0.27.0 - '@esbuild/netbsd-arm64': 0.27.0 - '@esbuild/netbsd-x64': 0.27.0 - '@esbuild/openbsd-arm64': 0.27.0 - '@esbuild/openbsd-x64': 0.27.0 - '@esbuild/openharmony-arm64': 0.27.0 - '@esbuild/sunos-x64': 0.27.0 - '@esbuild/win32-arm64': 0.27.0 - '@esbuild/win32-ia32': 0.27.0 - '@esbuild/win32-x64': 0.27.0 - esbuild@0.27.3: optionalDependencies: '@esbuild/aix-ppc64': 0.27.3 @@ -10971,7 +10703,7 @@ snapshots: tsx@4.21.0: dependencies: - esbuild: 0.27.0 + esbuild: 0.27.3 get-tsconfig: 4.13.0 optionalDependencies: fsevents: 2.3.3 From 8c68fb542994a4f9730fad937f3e4af5491570b4 Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Sun, 3 May 2026 10:14:24 -0400 Subject: [PATCH 02/15] Simplify examples --- .../examples/components/Dodge/anchor.svelte | 18 ++++---- .../examples/components/Dodge/beeswarm.svelte | 20 ++++----- .../examples/components/Dodge/penguins.svelte | 30 +++++-------- .../examples/components/Dodge/timeline.svelte | 22 +++++----- .../components/Dodge/variable-radius.svelte | 42 ++++++++----------- 5 files changed, 54 insertions(+), 78 deletions(-) diff --git a/docs/src/examples/components/Dodge/anchor.svelte b/docs/src/examples/components/Dodge/anchor.svelte index 332c5accf..ac7e092c5 100644 --- a/docs/src/examples/components/Dodge/anchor.svelte +++ b/docs/src/examples/components/Dodge/anchor.svelte @@ -4,31 +4,27 @@
{#each anchors as anchor (anchor)}
{#snippet marks({ context })} - + {#snippet children({ items: dodged })} - {#each dodged as { x, y, index } (index)} + {#each dodged as { x, y, r, index } (index)} context.tooltip.show(e, items[index])} + onpointermove={(e) => context.tooltip.show(e, data[index])} onpointerleave={context.tooltip.hide} /> {/each} diff --git a/docs/src/examples/components/Dodge/beeswarm.svelte b/docs/src/examples/components/Dodge/beeswarm.svelte index a805e5abf..c97f4f248 100644 --- a/docs/src/examples/components/Dodge/beeswarm.svelte +++ b/docs/src/examples/components/Dodge/beeswarm.svelte @@ -1,37 +1,35 @@ d.date_of_birth.getFullYear()} xNice + c="gender" + cRange={['var(--color-info)', 'var(--color-warning)']} padding={{ bottom: 20, left: 12, right: 12 }} height={300} axis="x" - rule={false} props={{ xAxis: { format: 'none' } }} > {#snippet marks({ context })} - + {#snippet children({ items })} - {#each items as { data: senator, x, y, index } (index)} + {#each items as { data: senator, x, y, r, index } (index)} context.tooltip.show(e, senator)} onpointerleave={context.tooltip.hide} diff --git a/docs/src/examples/components/Dodge/penguins.svelte b/docs/src/examples/components/Dodge/penguins.svelte index edea58292..f774cd20e 100644 --- a/docs/src/examples/components/Dodge/penguins.svelte +++ b/docs/src/examples/components/Dodge/penguins.svelte @@ -6,28 +6,20 @@ s.key))} - {@const visibleItems = items.filter((d) => visibleKeys.has(d.species))} + {@const visibleItems = data.filter((d) => visibleKeys.has(d.species))} - + {#snippet children({ items: dodged })} - {#each dodged as { data: p, x, y, index } (index)} + {#each dodged as { data: p, x, y, r, index } (index)} {@const series = visibleSeries.find((s) => s.key === p.species)} {@const opacity = context.series.isHighlighted(p.species, true) ? 1 : 0.2} ({ + const data: Item[] = milestones.map((m) => ({ date: m.date, category: m.category, label: m.label.replace(/\n/g, ' ') })); - const series = [ - { key: 'svelte', label: 'Svelte', color: 'var(--color-danger)' }, - { key: 'sveltekit', label: 'SvelteKit', color: 'var(--color-surface-content)' }, - { key: 'ecosystem', label: 'Ecosystem', color: 'var(--color-info)' } - ]; - + /** Estimate the half width of a label based on its character length */ function labelHalfWidth(label: string) { return (label.length * 6.5) / 2; } - export const data = items; + export { data }; {#snippet aboveContext({ context })} {@const visibleSeries = context.series.visibleSeries} {@const visibleKeys = new Set(visibleSeries.map((s) => s.key))} - {@const visibleItems = items.filter((d) => visibleKeys.has(d.category))} + {@const visibleItems = data.filter((d) => visibleKeys.has(d.category))} {@const baselineY = context.height} diff --git a/docs/src/examples/components/Dodge/variable-radius.svelte b/docs/src/examples/components/Dodge/variable-radius.svelte index bffb9ddf7..0e9b08347 100644 --- a/docs/src/examples/components/Dodge/variable-radius.svelte +++ b/docs/src/examples/components/Dodge/variable-radius.svelte @@ -1,52 +1,44 @@ {#snippet marks({ context })} - + {#snippet children({ items: dodged })} {#each dodged as { data: country, x, y, r, index } (index)} context.tooltip.show(e, country)} onpointerleave={context.tooltip.hide} From 7c58a37c174910e872f74f5e9a8f2f764c45b6b4 Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Sun, 3 May 2026 14:34:18 -0400 Subject: [PATCH 03/15] fix(Image): Stop disabling pointer events by default. Add more examples --- .changeset/image-pointer-events-default.md | 5 ++ docs/src/content/components/Dodge.md | 16 ++++ .../Dodge/grouped-horizontal.svelte | 78 ++++++++++++++++++ .../components/Dodge/grouped-vertical.svelte | 77 ++++++++++++++++++ .../components/Dodge/image-beeswarm.svelte | 50 ++++++++++++ .../components/Image/us-presidents.svelte | 80 ++++--------------- docs/src/lib/data.remote.ts | 27 +++++++ docs/static/data/examples/us-presidents.csv | 46 +++++++++++ .../components/Dodge/Dodge.shared.svelte.ts | 10 +++ .../src/lib/components/Dodge/Dodge.svelte | 3 +- .../lib/components/Image/Image.html.svelte | 8 -- .../src/lib/components/Image/Image.svg.svelte | 10 +-- .../lib/components/Raster/Raster.base.svelte | 10 +-- 13 files changed, 328 insertions(+), 92 deletions(-) create mode 100644 .changeset/image-pointer-events-default.md create mode 100644 docs/src/examples/components/Dodge/grouped-horizontal.svelte create mode 100644 docs/src/examples/components/Dodge/grouped-vertical.svelte create mode 100644 docs/src/examples/components/Dodge/image-beeswarm.svelte create mode 100644 docs/static/data/examples/us-presidents.csv diff --git a/.changeset/image-pointer-events-default.md b/.changeset/image-pointer-events-default.md new file mode 100644 index 000000000..da4cf7adc --- /dev/null +++ b/.changeset/image-pointer-events-default.md @@ -0,0 +1,5 @@ +--- +'layerchart': patch +--- + +fix(Image): Stop disabling pointer events by default diff --git a/docs/src/content/components/Dodge.md b/docs/src/content/components/Dodge.md index 322f9170b..3699690d4 100644 --- a/docs/src/content/components/Dodge.md +++ b/docs/src/content/components/Dodge.md @@ -33,6 +33,22 @@ Use `anchor` to control where the stack grows from along the dodge axis: `'top'` :example{ name="anchor" } +## Grouped (band scale) + +Use a band scale on the category axis and render one `` per band, passing the band's `bandwidth()` as `size` so each group dodges within its own column. Items are then translated to the band's pixel offset. + +:example{ name="grouped-vertical" } + +For a horizontal layout, swap the axes (band scale on `y`, dodge on `y` per band). + +:example{ name="grouped-horizontal" } + +## Image beeswarm + +Render `` instead of `` inside the snippet — Dodge yields pixel positions and a resolved radius for each item, which double as the image's bounding box. + +:example{ name="image-beeswarm" } + ## Row-based packing for text labels Circular dodge produces large vertical gaps when collision radius is meaningfully wider than item height (e.g. text labels where `r ≈ labelWidth/2`). Set `rowHeight` to switch to rectangular row-based packing — items are placed in fixed-height rows, with collision checked horizontally only. diff --git a/docs/src/examples/components/Dodge/grouped-horizontal.svelte b/docs/src/examples/components/Dodge/grouped-horizontal.svelte new file mode 100644 index 000000000..ee456413b --- /dev/null +++ b/docs/src/examples/components/Dodge/grouped-horizontal.svelte @@ -0,0 +1,78 @@ + + + + + + {#snippet marks({ context })} + {@const bandwidth = context.yScale.bandwidth?.() ?? 0} + {@const visibleSeries = context.series.visibleSeries} + {@const visibleKeys = new Set(visibleSeries.map((s) => s.key))} + {@const visibleData = data.filter((d) => visibleKeys.has(d.sex))} + + {#each context.yDomain as s (s)} + {@const bandTop = context.yScale(s) ?? 0} + {@const items = visibleData.filter((d) => d.species === s)} + + Number(context.xGet(d)) || 0} + > + {#snippet children({ items: dodged })} + {#each dodged as { data: p, x, y, r, index } (index)} + {@const series = visibleSeries.find((vs) => vs.key === p.sex)} + {@const opacity = context.series.isHighlighted(p.sex, true) ? 1 : 0.2} + context.tooltip.show(e, p)} + onpointerleave={context.tooltip.hide} + /> + {/each} + {/snippet} + + {/each} + {/snippet} + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {data.species} + + + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/components/Dodge/grouped-vertical.svelte b/docs/src/examples/components/Dodge/grouped-vertical.svelte new file mode 100644 index 000000000..ff190bd05 --- /dev/null +++ b/docs/src/examples/components/Dodge/grouped-vertical.svelte @@ -0,0 +1,77 @@ + + + + + + {#snippet marks({ context })} + {@const bandwidth = context.xScale.bandwidth?.() ?? 0} + {@const visibleSeries = context.series.visibleSeries} + {@const visibleKeys = new Set(visibleSeries.map((s) => s.key))} + {@const visibleData = data.filter((d) => visibleKeys.has(d.sex))} + + {#each context.xDomain as s (s)} + {@const bandLeft = context.xScale(s) ?? 0} + {@const items = visibleData.filter((d) => d.species === s)} + + Number(context.yGet(d)) || 0} + > + {#snippet children({ items: dodged })} + {#each dodged as { data: p, x, y, r, index } (index)} + {@const series = visibleSeries.find((vs) => vs.key === p.sex)} + {@const opacity = context.series.isHighlighted(p.sex, true) ? 1 : 0.2} + context.tooltip.show(e, p)} + onpointerleave={context.tooltip.hide} + /> + {/each} + {/snippet} + + {/each} + {/snippet} + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {data.species} + + + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/components/Dodge/image-beeswarm.svelte b/docs/src/examples/components/Dodge/image-beeswarm.svelte new file mode 100644 index 000000000..202bb3970 --- /dev/null +++ b/docs/src/examples/components/Dodge/image-beeswarm.svelte @@ -0,0 +1,50 @@ + + + + + + {#snippet marks({ context })} + + {#snippet children({ items })} + {#each items as { data: p, x, y, r, index } (index)} + context.tooltip.show(e, p)} + onpointerleave={context.tooltip.hide} + /> + {/each} + {/snippet} + + {/snippet} + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {data.name} + + + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/components/Image/us-presidents.svelte b/docs/src/examples/components/Image/us-presidents.svelte index e975832c8..ad07f06ec 100644 --- a/docs/src/examples/components/Image/us-presidents.svelte +++ b/docs/src/examples/components/Image/us-presidents.svelte @@ -1,81 +1,29 @@ + + - + diff --git a/docs/src/lib/data.remote.ts b/docs/src/lib/data.remote.ts index 56fbf9908..b62950382 100644 --- a/docs/src/lib/data.remote.ts +++ b/docs/src/lib/data.remote.ts @@ -161,6 +161,33 @@ export const getUsSenators = prerender(async () => { return data; }); +export type UsPresident = { + name: string; + inaugurationDate: Date; + portraitUrl: string; + veryFavorable: number; + veryUnfavorable: number; +}; + +export const getUsPresidents = prerender(async () => { + const { fetch } = getRequestEvent(); + const data = await fetch('/data/examples/us-presidents.csv').then(async (r) => { + // @ts-expect-error - autoType + const rows = csvParse(await r.text(), autoType) as Array>; + return rows.map( + (d) => + ({ + name: d['Name'], + inaugurationDate: d['First Inauguration Date'], + portraitUrl: d['Portrait URL'], + veryFavorable: d['Very Favorable %'], + veryUnfavorable: d['Very Unfavorable %'] + }) satisfies UsPresident + ); + }); + return data; +}); + export const getAlphabet = prerender(async () => { const { fetch } = getRequestEvent(); const data = (await fetch('/data/examples/alphabet.csv').then(async (r) => diff --git a/docs/static/data/examples/us-presidents.csv b/docs/static/data/examples/us-presidents.csv new file mode 100644 index 000000000..cad508448 --- /dev/null +++ b/docs/static/data/examples/us-presidents.csv @@ -0,0 +1,46 @@ +Name,Very Favorable %,Somewhat Favorable %,Somewhat Unfavorable %,Very Unfavorable %,Don’t know %,Have not heard of them %,First Inauguration Date,Portrait URL +George Washington,44,26,6,4,18,3,1789-04-30,https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Gilbert_Stuart_Williamstown_Portrait_of_George_Washington.jpg/120px-Gilbert_Stuart_Williamstown_Portrait_of_George_Washington.jpg +John Adams,16,30,7,4,37,5,1797-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/0/07/John_Adams_A18236.jpg/330px-John_Adams_A18236.jpg +Thomas Jefferson,28,34,10,5,23,1,1801-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Thomas_Jefferson_by_Rembrandt_Peale%2C_1800.jpg/120px-Thomas_Jefferson_by_Rembrandt_Peale%2C_1800.jpg +James Madison,12,27,5,4,43,9,1809-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/1/1d/James_Madison.jpg/120px-James_Madison.jpg +James Monroe,8,21,8,4,49,10,1817-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/James_Monroe_White_House_portrait_1819.jpg/120px-James_Monroe_White_House_portrait_1819.jpg +John Quincy Adams,13,31,5,4,41,6,1825-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/5/51/JQA_Photo.tif/lossy-page1-120px-JQA_Photo.tif.jpg +Andrew Jackson,11,23,12,17,32,5,1829-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Andrew_jackson_head.jpg/120px-Andrew_jackson_head.jpg +Martin Van Buren,3,12,10,4,54,18,1837-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/Martin_Van_Buren_edit.jpg/120px-Martin_Van_Buren_edit.jpg +William Henry Harrison,3,15,9,5,55,14,1841-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/William_Henry_Harrison_daguerreotype_edit.jpg/120px-William_Henry_Harrison_daguerreotype_edit.jpg +John Tyler,3,11,10,4,51,21,1841-04-04,https://upload.wikimedia.org/wikipedia/commons/thumb/1/1d/John_Tyler%2C_Jr.jpg/120px-John_Tyler%2C_Jr.jpg +James K. Polk,4,12,9,8,55,13,1845-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/JKP.jpg/120px-JKP.jpg +Zachary Taylor,2,14,10,3,53,18,1849-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/5/51/Zachary_Taylor_restored_and_cropped.jpg/120px-Zachary_Taylor_restored_and_cropped.jpg +Millard Fillmore,1,10,9,5,53,21,1850-07-09,https://upload.wikimedia.org/wikipedia/commons/thumb/7/73/Fillmore.jpg/120px-Fillmore.jpg +Franklin Pierce,3,12,10,5,53,18,1853-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Mathew_Brady_-_Franklin_Pierce_-_alternate_crop_%28cropped%29.jpg/120px-Mathew_Brady_-_Franklin_Pierce_-_alternate_crop_%28cropped%29.jpg +James Buchanan,3,12,12,9,52,14,1857-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/f/fd/James_Buchanan.jpg/120px-James_Buchanan.jpg +Abraham Lincoln,56,24,6,3,11,1,1861-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/Abraham_Lincoln_O-77_matte_collodion_print.jpg/120px-Abraham_Lincoln_O-77_matte_collodion_print.jpg +Andrew Johnson,6,17,13,12,43,8,1865-04-15,https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Andrew_Johnson_photo_portrait_head_and_shoulders%2C_c1870-1880-Edit1.jpg/120px-Andrew_Johnson_photo_portrait_head_and_shoulders%2C_c1870-1880-Edit1.jpg +Ulysses S. Grant,14,30,9,6,34,7,1869-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Ulysses_S_Grant_by_Brady_c1870-restored.jpg/120px-Ulysses_S_Grant_by_Brady_c1870-restored.jpg +Rutherford B. Hayes,4,14,9,6,54,13,1877-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/President_Rutherford_Hayes_1870_-_1880_Restored.jpg/120px-President_Rutherford_Hayes_1870_-_1880_Restored.jpg +James A. Garfield,4,16,9,5,54,12,1881-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/James_Abram_Garfield%2C_photo_portrait_seated.jpg/120px-James_Abram_Garfield%2C_photo_portrait_seated.jpg +Chester A. Arthur,3,10,8,5,48,27,1881-09-19,https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/Chester_Alan_Arthur.jpg/120px-Chester_Alan_Arthur.jpg +Grover Cleveland,4,17,12,6,47,14,1885-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Grover_Cleveland_-_NARA_-_518139_%28cropped%29.jpg/120px-Grover_Cleveland_-_NARA_-_518139_%28cropped%29.jpg +Benjamin Harrison,3,13,10,4,54,15,1889-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/Benjamin_Harrison%2C_head_and_shoulders_bw_photo%2C_1896.jpg/120px-Benjamin_Harrison%2C_head_and_shoulders_bw_photo%2C_1896.jpg +William McKinley,2,16,11,4,53,14,1897-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Mckinley.jpg/120px-Mckinley.jpg +Theodore Roosevelt,25,37,8,4,23,3,1901-09-14,https://upload.wikimedia.org/wikipedia/commons/thumb/5/5b/Theodore_Roosevelt_by_the_Pach_Bros.jpg/120px-Theodore_Roosevelt_by_the_Pach_Bros.jpg +William Howard Taft,3,18,13,6,52,8,1909-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/William_Howard_Taft_-_Harris_and_Ewing.jpg/120px-William_Howard_Taft_-_Harris_and_Ewing.jpg +Woodrow Wilson,7,25,14,11,39,4,1913-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Thomas_Woodrow_Wilson%2C_Harris_%26_Ewing_bw_photo_portrait%2C_1919.jpg/120px-Thomas_Woodrow_Wilson%2C_Harris_%26_Ewing_bw_photo_portrait%2C_1919.jpg +Warren G. Harding,3,12,12,11,46,16,1921-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Warren_G_Harding-Harris_%26_Ewing.jpg/120px-Warren_G_Harding-Harris_%26_Ewing.jpg +Calvin Coolidge,6,18,11,8,47,10,1923-08-02,https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Calvin_Coolidge_cph.3g10777_%28cropped%29.jpg/120px-Calvin_Coolidge_cph.3g10777_%28cropped%29.jpg +Herbert Hoover,5,20,16,14,37,8,1929-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/President_Hoover_portrait.jpg/120px-President_Hoover_portrait.jpg +Franklin D. Roosevelt,26,32,9,8,22,3,1933-03-04,https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/FDR_1944_Color_Portrait.jpg/120px-FDR_1944_Color_Portrait.jpg +Harry S. Truman,17,34,10,4,28,5,1945-04-12,https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/TRUMAN_58-766-06_CROPPED.jpg/120px-TRUMAN_58-766-06_CROPPED.jpg +Dwight D. Eisenhower,22,36,7,4,25,7,1953-01-20,https://upload.wikimedia.org/wikipedia/commons/thumb/6/63/Dwight_D._Eisenhower%2C_official_photo_portrait%2C_May_29%2C_1959.jpg/120px-Dwight_D._Eisenhower%2C_official_photo_portrait%2C_May_29%2C_1959.jpg +John F. Kennedy,35,38,10,4,12,2,1961-01-20,https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/John_F._Kennedy%2C_White_House_color_photo_portrait.jpg/120px-John_F._Kennedy%2C_White_House_color_photo_portrait.jpg +Lyndon B. Johnson,9,28,18,17,21,7,1963-11-22,https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/37_Lyndon_Johnson_3x4.jpg/120px-37_Lyndon_Johnson_3x4.jpg +Richard Nixon,8,19,23,34,14,3,1969-01-20,https://upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Richard_Nixon_presidential_portrait_%281%29.jpg/120px-Richard_Nixon_presidential_portrait_%281%29.jpg +Gerald Ford,7,34,22,8,25,4,1974-08-09,https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Gerald_Ford_presidential_portrait.jpg/120px-Gerald_Ford_presidential_portrait.jpg +Jimmy Carter,23,22,12,20,18,5,1977-01-20,https://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/JimmyCarterPortrait2.jpg/120px-JimmyCarterPortrait2.jpg +Ronald Reagan,31,23,14,17,12,3,1981-01-20,https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Official_Portrait_of_President_Reagan_1981.jpg/120px-Official_Portrait_of_President_Reagan_1981.jpg +George H. W. Bush,11,33,27,17,11,1,1989-01-20,https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/George_H._W._Bush_presidential_portrait_%28cropped%29.jpg/120px-George_H._W._Bush_presidential_portrait_%28cropped%29.jpg +Bill Clinton,15,30,20,22,10,2,1993-01-20,https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Bill_Clinton.jpg/120px-Bill_Clinton.jpg +George W. Bush,10,32,24,19,11,4,2001-01-20,https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/George-W-Bush.jpeg/120px-George-W-Bush.jpeg +Barack Obama,36,18,10,31,4,1,2009-01-20,https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Official_portrait_of_Barack_Obama.jpg/120px-Official_portrait_of_Barack_Obama.jpg +Donald Trump,23,16,7,47,5,1,2017-01-20,https://upload.wikimedia.org/wikipedia/commons/thumb/5/56/Donald_Trump_official_portrait.jpg/120px-Donald_Trump_official_portrait.jpg +Joe Biden,26,21,9,35,6,2,2021-01-20,https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Joe_Biden_presidential_portrait.jpg/120px-Joe_Biden_presidential_portrait.jpg diff --git a/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts b/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts index 3ded150de..c08d69d81 100644 --- a/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts +++ b/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts @@ -90,6 +90,16 @@ export type DodgePropsWithoutHTML = { * scale to the chart's `x`/`y` accessor). */ position?: (d: T) => number; + /** + * Override the chart dimension along the dodge axis used for anchor + * placement and bounds (the centerline for `'middle'`, edge for + * `'top'`/`'bottom'`/`'left'`/`'right'`). + * + * Defaults to `ctx.height` (axis=`'y'`) or `ctx.width` (axis=`'x'`). Pass + * a smaller value to dodge within a sub-region — e.g. `bandwidth()` of a + * band scale, to dodge per-band. + */ + size?: number; /** Snippet receives computed positions in original data order. */ children?: Snippet<[{ items: DodgeItem[] }]>; }; diff --git a/packages/layerchart/src/lib/components/Dodge/Dodge.svelte b/packages/layerchart/src/lib/components/Dodge/Dodge.svelte index 187a8c100..93b0f4027 100644 --- a/packages/layerchart/src/lib/components/Dodge/Dodge.svelte +++ b/packages/layerchart/src/lib/components/Dodge/Dodge.svelte @@ -20,6 +20,7 @@ r, rowHeight, position, + size: sizeProp, children, }: DodgeProps = $props(); @@ -42,7 +43,7 @@ return () => 5; }); - const size = $derived(axis === 'y' ? ctx.height : ctx.width); + const size = $derived(sizeProp ?? (axis === 'y' ? ctx.height : ctx.width)); const items = $derived.by(() => { const input = data.map((d, index) => ({ diff --git a/packages/layerchart/src/lib/components/Image/Image.html.svelte b/packages/layerchart/src/lib/components/Image/Image.html.svelte index 171b27a05..85e5eb227 100644 --- a/packages/layerchart/src/lib/components/Image/Image.html.svelte +++ b/packages/layerchart/src/lib/components/Image/Image.html.svelte @@ -104,11 +104,3 @@ {...rest as any} /> {/if} - - diff --git a/packages/layerchart/src/lib/components/Image/Image.svg.svelte b/packages/layerchart/src/lib/components/Image/Image.svg.svelte index a9d247ec1..20d0bb7f4 100644 --- a/packages/layerchart/src/lib/components/Image/Image.svg.svelte +++ b/packages/layerchart/src/lib/components/Image/Image.svg.svelte @@ -127,12 +127,4 @@ {opacity} class={cls('lc-image', className)} /> -{/if} - - +{/if} \ No newline at end of file diff --git a/packages/layerchart/src/lib/components/Raster/Raster.base.svelte b/packages/layerchart/src/lib/components/Raster/Raster.base.svelte index 80cddf15b..fda3baf10 100644 --- a/packages/layerchart/src/lib/components/Raster/Raster.base.svelte +++ b/packages/layerchart/src/lib/components/Raster/Raster.base.svelte @@ -16,11 +16,7 @@ import { max, min } from 'd3-array'; import { rgb } from 'd3-color'; - import { - accessor as resolveAccessor, - chartDataArray, - type Accessor, - } from '$lib/utils/common.js'; + import { accessor as resolveAccessor, chartDataArray, type Accessor } from '$lib/utils/common.js'; import { getChartContext } from '$lib/contexts/chart.js'; import { getGeoContext } from '$lib/contexts/geo.js'; import { gridCellCenterToBounds, resolveRasterBounds } from '$lib/utils/index.js'; @@ -89,9 +85,7 @@ if (!ctx.width || !ctx.height) return new Float64Array(0); if (isGridMode) { - return dataProp instanceof Float64Array - ? dataProp - : Float64Array.from(dataProp as number[]); + return dataProp instanceof Float64Array ? dataProp : Float64Array.from(dataProp as number[]); } if (typeof valueProp === 'function' && valueProp.length >= 2) { From 788ffb8733be009de1b447e5bfd462408b55d0a8 Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Mon, 4 May 2026 07:32:21 -0400 Subject: [PATCH 04/15] add timeline-bidirectional --- docs/src/content/components/Dodge.md | 6 + .../Dodge/timeline-bidirectional.svelte | 154 ++++++++++++++++++ 2 files changed, 160 insertions(+) create mode 100644 docs/src/examples/components/Dodge/timeline-bidirectional.svelte diff --git a/docs/src/content/components/Dodge.md b/docs/src/content/components/Dodge.md index 3699690d4..b2a7286a8 100644 --- a/docs/src/content/components/Dodge.md +++ b/docs/src/content/components/Dodge.md @@ -56,3 +56,9 @@ Circular dodge produces large vertical gaps when collision radius is meaningfull This timeline pans/zooms via ``; labels re-pack on every zoom step. :example{ name="timeline" } + +## Bidirectional timeline + +Render two `` instances split by a per-item `side` field — one with `anchor="bottom"` and `size={baselineY}` for labels above the baseline, the other with `anchor="top"` and `size={chart.height - baselineY}` (offset by `baselineY`) for labels below. Mirrors the [d3-milestones](https://walterra.github.io/d3-milestones) layout. + +:example{ name="timeline-bidirectional" } diff --git a/docs/src/examples/components/Dodge/timeline-bidirectional.svelte b/docs/src/examples/components/Dodge/timeline-bidirectional.svelte new file mode 100644 index 000000000..71cded3e9 --- /dev/null +++ b/docs/src/examples/components/Dodge/timeline-bidirectional.svelte @@ -0,0 +1,154 @@ + + + + + + {#snippet marks({ context })} + {@const visibleSeries = context.series.visibleSeries} + {@const visibleKeys = new Set(visibleSeries.map((s) => s.key))} + {@const visibleData = data.filter((d) => visibleKeys.has(d.category))} + {@const baselineY = context.height / 2} + {@const above = visibleData.filter((d) => d.side === 'above')} + {@const below = visibleData.filter((d) => d.side === 'below')} + + + + + labelHalfWidth(d.label)} + > + {#snippet children({ items: dodged })} + {#each dodged as { data: item, x, y, index } (index)} + {@const series = visibleSeries.find((s) => s.key === item.category)} + {@const opacity = context.series.isHighlighted(item.category, true) ? 1 : 0.2} + {@const labelY = y - 6} + + + + + {/each} + {/snippet} + + + + labelHalfWidth(d.label)} + > + {#snippet children({ items: dodged })} + {#each dodged as { data: item, x, y, index } (index)} + {@const series = visibleSeries.find((s) => s.key === item.category)} + {@const opacity = context.series.isHighlighted(item.category, true) ? 1 : 0.2} + {@const labelY = y + baselineY + 6} + + + + + {/each} + {/snippet} + + {/snippet} + From 74b8de2df156e23df975baa24569974e389eda2d Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Mon, 4 May 2026 08:05:46 -0400 Subject: [PATCH 05/15] add dense lanes example --- docs/src/content/components/Dodge.md | 6 ++ .../Dodge/duration-bars-dense-lanes.svelte | 71 +++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 docs/src/examples/components/Dodge/duration-bars-dense-lanes.svelte diff --git a/docs/src/content/components/Dodge.md b/docs/src/content/components/Dodge.md index b2a7286a8..d9a1fd6f2 100644 --- a/docs/src/content/components/Dodge.md +++ b/docs/src/content/components/Dodge.md @@ -62,3 +62,9 @@ This timeline pans/zooms via ``; labels re-pack on every zoom Render two `` instances split by a per-item `side` field — one with `anchor="bottom"` and `size={baselineY}` for labels above the baseline, the other with `anchor="top"` and `size={chart.height - baselineY}` (offset by `baselineY`) for labels below. Mirrors the [d3-milestones](https://walterra.github.io/d3-milestones) layout. :example{ name="timeline-bidirectional" } + +## Dense lanes (Gantt-style) + +For events with start/end ranges, pass each item's pixel midpoint as `position` and half its pixel width as `r`. With `rowHeight` set, Dodge packs each event into the lowest non-overlapping lane — equivalent to the `applyLanes()` helper used by the [`BarChart` dense-lanes example](/docs/components/BarChart/duration-bars-dense-lanes), but without precomputing lane indices on the data. + +:example{ name="duration-bars-dense-lanes" } diff --git a/docs/src/examples/components/Dodge/duration-bars-dense-lanes.svelte b/docs/src/examples/components/Dodge/duration-bars-dense-lanes.svelte new file mode 100644 index 000000000..f952a36d9 --- /dev/null +++ b/docs/src/examples/components/Dodge/duration-bars-dense-lanes.svelte @@ -0,0 +1,71 @@ + + + + + + {#snippet marks({ context })} + {@const rowHeight = 40} + {@const rowPadding = 10} + {@const barHeight = rowHeight - rowPadding} + {@const startX = (d: { startDate: Date }) => context.xScale(d.startDate)} + {@const endX = (d: { endDate: Date }) => context.xScale(d.endDate)} + + (startX(d) + endX(d)) / 2} + r={(d) => (endX(d) - startX(d)) / 2} + > + {#snippet children({ items })} + {#each items as { data: ev, y, index } (index)} + context.tooltip.show(e, ev)} + onpointerleave={context.tooltip.hide} + /> + {/each} + {/snippet} + + {/snippet} + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {data.event} + + + + + + + + + {/snippet} + + {/snippet} + From 8fee98842df2f01f526e7931546623911081de9a Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Mon, 4 May 2026 08:25:09 -0400 Subject: [PATCH 06/15] update svelte-milestones to use relative pixel dx/dy instead of data-space values to look better when zooming --- .../LineChart/svelte-milestones.svelte | 13 ++- docs/src/lib/data.remote.ts | 6 +- .../data/examples/date/svelte-milestones.csv | 84 +++++++++---------- 3 files changed, 51 insertions(+), 52 deletions(-) diff --git a/docs/src/examples/components/LineChart/svelte-milestones.svelte b/docs/src/examples/components/LineChart/svelte-milestones.svelte index 68f383966..b427840f6 100644 --- a/docs/src/examples/components/LineChart/svelte-milestones.svelte +++ b/docs/src/examples/components/LineChart/svelte-milestones.svelte @@ -67,11 +67,8 @@ m.category === 'ecosystem' ? undefined : cumsumAt(m.category === 'svelte' ? svelteSeries : sveltekitSeries, m.date)} - {@const dotPxY = dotDomainY == null ? context.height : context.yScale(dotDomainY)} - {@const dx = context.xScale(m.x) - context.xScale(m.date)} - {@const dy = context.yScale(m.y) - dotPxY} - {@const h = dx >= 0 ? 'right' : 'left'} - {@const v = dy >= 0 ? 'bottom' : 'top'} + {@const h = m.dx >= 0 ? 'right' : 'left'} + {@const v = m.dy >= 0 ? 'bottom' : 'top'} = 0 ? 22.5 : -22.5, class: 'opacity-30' }} + labelXOffset={Math.abs(m.dx)} + labelYOffset={Math.abs(m.dy)} + link={{ type: 'swoop', bend: m.dx >= 0 ? 22.5 : -22.5, class: 'opacity-30' }} props={{ circle: { fill: diff --git a/docs/src/lib/data.remote.ts b/docs/src/lib/data.remote.ts index b62950382..0c87b06da 100644 --- a/docs/src/lib/data.remote.ts +++ b/docs/src/lib/data.remote.ts @@ -253,8 +253,10 @@ export type SvelteMilestone = { date: Date; category: 'svelte' | 'sveltekit' | 'ecosystem'; label: string; - x: Date; - y: number; + /** Pixel x-offset of the label from the dot (calibrated for an 860px-wide chart). */ + dx: number; + /** Pixel y-offset of the label from the dot (calibrated for an 860px-wide chart). */ + dy: number; }; export const getSvelteMilestones = prerender(async () => { diff --git a/docs/static/data/examples/date/svelte-milestones.csv b/docs/static/data/examples/date/svelte-milestones.csv index b89d32128..1e4379082 100644 --- a/docs/static/data/examples/date/svelte-milestones.csv +++ b/docs/static/data/examples/date/svelte-milestones.csv @@ -1,46 +1,46 @@ -date,category,label,x,y +date,category,label,dx,dy 2026-03-11,sveltekit,"server-side -error boundaries",2026-03-01,225 +error boundaries",-9,-9 2026-02-20,sveltekit,"Vite 8 -support",2026-03-20,175 +support",26,14 2026-02-18,svelte,"comments -in tags",2026-02-01,588 -2026-02-15,sveltekit,match,2026-02-01,140 -2026-02-13,svelte,TrustedHTML,2026-01-22,530 -2026-02-12,sveltekit,scroll,2026-01-01,175 -2025-12-03,ecosystem,Vite 8 Beta,2025-12-31,35 -2025-11-26,svelte,print(),2025-12-01,570 -2025-11-25,svelte,hydratable,2025-12-07,465 +in tags",-16,-12 +2026-02-15,sveltekit,match,-13,32 +2026-02-13,svelte,TrustedHTML,-20,15 +2026-02-12,sveltekit,scroll,-39,13 +2025-12-03,ecosystem,Vite 8 Beta,26,-18 +2025-11-26,svelte,print(),5,-20 +2025-11-25,svelte,hydratable,11,33 2025-11-20,sveltekit,"stream -file uploads",2025-10-22,245 -2025-10-26,sveltekit,forking,2025-11-22,140 -2025-10-25,svelte,forking,2025-11-07,490 -2025-10-23,svelte,$state.eager(),2025-10-01,440 -2025-10-13,svelte,createContext(),2025-09-30,540 -2025-10-05,sveltekit,form API,2025-09-15,120 -2025-10-01,ecosystem,MCP,2025-10-01,20 -2025-09-22,sveltekit,async SSR,2025-08-22,200 -2025-09-17,svelte,async SSR,2025-07-19,510 -2025-08-15,sveltekit,OpenTelemetry,2025-06-05,170 -2025-07-31,sveltekit,remote functions,2025-06-30,95 -2025-07-24,sveltekit,resolve() / asset(),2025-04-05,140 -2025-07-14,svelte,async,2025-06-01,475 -2025-06-24,ecosystem,Vite 7,2025-07-22,35 -2025-05-14,svelte,@attach,2025-07-01,350 -2025-03-21,svelte,$derived writable,2025-04-01,430 -2025-02-12,svelte,$props.id(),2025-04-01,350 -2024-12-24,svelte,class:clsx,2025-01-31,320 -2024-12-21,sveltekit,hash-based routing,2025-02-22,110 -2024-12-19,sveltekit,bundleStrategy,2025-01-31,70 -2024-12-16,sveltekit,$app/state,2024-11-21,130 -2024-12-13,ecosystem,llms.txt,2025-01-07,10 -2024-12-10,sveltekit,init() hook,2024-10-21,100 -2024-12-08,svelte,bind get/set,2024-12-14,360 -2024-12-05,svelte,createSubscriber,2025-01-15,270 -2024-12-01,svelte,error boundary,2024-11-07,220 -2024-12-01,ecosystem,Vite 6,2024-11-22,30 -2024-10-19,svelte,Svelte 5.0.0,2024-10-19,400 -2024-09-15,ecosystem,Svelte CLI,2024-09-15,15 -2024-04-30,svelte,Svelte 5 Release Candidate,2024-03-30,220 -2024-01-19,sveltekit,read(),2024-04-05,50 -2023-11-10,svelte,Svelte 5 alpha,2024-01-01,120 \ No newline at end of file +file uploads",-27,-29 +2025-10-26,sveltekit,forking,25,22 +2025-10-25,svelte,forking,12,9 +2025-10-23,svelte,$state.eager(),-20,34 +2025-10-13,svelte,createContext(),-12,-23 +2025-10-05,sveltekit,form API,-18,26 +2025-10-01,ecosystem,MCP,0,-11 +2025-09-22,sveltekit,async SSR,-29,-20 +2025-09-17,svelte,async SSR,-55,-13 +2025-08-15,sveltekit,OpenTelemetry,-65,-17 +2025-07-31,sveltekit,remote functions,-29,17 +2025-07-24,sveltekit,resolve() / asset(),-101,-7 +2025-07-14,svelte,async,-40,-11 +2025-06-24,ecosystem,Vite 7,26,-18 +2025-05-14,svelte,@attach,44,31 +2025-03-21,svelte,$derived writable,10,-26 +2025-02-12,svelte,$props.id(),44,5 +2024-12-24,svelte,class:clsx,35,7 +2024-12-21,sveltekit,hash-based routing,58,-14 +2024-12-19,sveltekit,bundleStrategy,40,7 +2024-12-16,sveltekit,$app/state,-23,-26 +2024-12-13,ecosystem,llms.txt,23,-5 +2024-12-10,sveltekit,init() hook,-46,-12 +2024-12-08,svelte,bind get/set,6,-23 +2024-12-05,svelte,createSubscriber,38,23 +2024-12-01,svelte,error boundary,-22,43 +2024-12-01,ecosystem,Vite 6,-8,-16 +2024-10-19,svelte,Svelte 5.0.0,0,-70 +2024-09-15,ecosystem,Svelte CLI,0,-8 +2024-04-30,svelte,Svelte 5 Release Candidate,-29,-53 +2024-01-19,sveltekit,read(),71,-14 +2023-11-10,svelte,Svelte 5 alpha,48,-63 \ No newline at end of file From f227948b581ed7bafa1439c2b1e8b58e9ae7895a Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Mon, 4 May 2026 09:51:16 -0400 Subject: [PATCH 07/15] Improve svelte-milestones example --- .../LineChart/svelte-milestones.svelte | 45 ++++++++++++++----- docs/src/lib/data.remote.ts | 1 - .../data/examples/date/svelte-milestones.csv | 14 +++--- 3 files changed, 41 insertions(+), 19 deletions(-) diff --git a/docs/src/examples/components/LineChart/svelte-milestones.svelte b/docs/src/examples/components/LineChart/svelte-milestones.svelte index b427840f6..a72801b31 100644 --- a/docs/src/examples/components/LineChart/svelte-milestones.svelte +++ b/docs/src/examples/components/LineChart/svelte-milestones.svelte @@ -6,11 +6,28 @@ + + + + + {#snippet marks({ context })} + + {#snippet children({ items })} + {#each items as { data: country, x, y, r, index } (index)} + {@const fontSize = r * 1.2} + context.tooltip.show(e, country)} + onpointerleave={context.tooltip.hide} + /> + {/each} + {/snippet} + + {/snippet} + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {data.name} + + + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/components/Dodge/variable-radius.svelte b/docs/src/examples/components/Dodge/variable-radius.svelte index 0e9b08347..142e344a0 100644 --- a/docs/src/examples/components/Dodge/variable-radius.svelte +++ b/docs/src/examples/components/Dodge/variable-radius.svelte @@ -1,6 +1,6 @@ { const color = continentColors[continent] ?? 'var(--color-primary)'; return { - key: continentLabels[continent] ?? continent, + key: continent, data: items, color, props: { @@ -68,11 +59,11 @@ {#snippet tooltip()} {#snippet children({ data })} - {data.title} + {data.name} - - - + + + {/snippet} diff --git a/docs/src/lib/data.remote.ts b/docs/src/lib/data.remote.ts index 09ab9e9e8..dd46f68b8 100644 --- a/docs/src/lib/data.remote.ts +++ b/docs/src/lib/data.remote.ts @@ -301,21 +301,31 @@ export const getHydro = prerender(async () => { return data; }); -export type CountryGdpLifeExpectancy = { - title: string; - id: string; +export type Country2020 = { + name: string; + code: string; + code2: string; + lifeExpectancy: number; + gdpPerCapita: number; + population: number; continent: string; - x: number; - y: number; - value: number; }; -export const getCountryGdpLifeExpectancy = prerender(async () => { - const { fetch } = getRequestEvent(); - const data = (await fetch('/data/examples/country-gdp-life-expectancy.json').then((r) => - r.json() - )) as CountryGdpLifeExpectancy[]; - return data; +export const getCountries2020 = prerender(async () => { + const { fetch } = getRequestEvent(); + const text = await fetch('/data/examples/countries_2020.csv').then((r) => r.text()); + const rows = csvParse(text, autoType) as Array>; + return rows.map( + (d): Country2020 => ({ + name: d.Entity, + code: d.Code, + code2: d.Code2, + lifeExpectancy: d['Life expectancy'], + gdpPerCapita: d['GDP per capita'], + population: d.Population, + continent: d.Continent + }) + ); }); export const getForceGroupDots = prerender(async () => { diff --git a/docs/static/data/examples/countries_2020.csv b/docs/static/data/examples/countries_2020.csv new file mode 100644 index 000000000..e1f113531 --- /dev/null +++ b/docs/static/data/examples/countries_2020.csv @@ -0,0 +1,240 @@ +Entity,Code,Code2,Life expectancy,GDP per capita,Population,Continent +Afghanistan,AFG,AF,62.5751,1928.4547,38972236,Asia +Albania,ALB,AL,76.9893,11372.541,2866850,Europe +Algeria,DZA,DZ,74.4528,13086.293,43451668,Africa +American Samoa,ASM,AS,72.4432,,46216,Oceania +Andorra,AND,AD,79.0234,,77723,Europe +Angola,AGO,AO,62.2612,6279.929,33428490,Africa +Anguilla,AIA,AI,76.902,,15612,North America +Antigua and Barbuda,ATG,AG,78.8406,,92672,North America +Argentina,ARG,AR,75.8921,15975.839,45036032,South America +Armenia,ARM,AM,72.173,11546.176,2805610,Asia +Aruba,ABW,AW,75.7229,,106597,North America +Australia,AUS,AU,84.3239,48268.945,25670052,Oceania +Austria,AUT,AT,81.5036,40503.04,8907780,Europe +Azerbaijan,AZE,AZ,66.8679,16189.511,10284952,Asia +Bahamas,BHS,BS,72.6766,,406478,North America +Bahrain,BHR,BH,79.1735,36890.504,1477478,Asia +Bangladesh,BGD,BD,71.9678,4418.9644,167420944,Asia +Barbados,BRB,BB,77.3929,10487.387,280704,North America +Belarus,BLR,BY,72.5132,19053.156,9633745,Europe +Belgium,BEL,BE,80.7884,38763.44,11561716,Europe +Belize,BLZ,BZ,72.854,,394931,North America +Benin,BEN,BJ,60.088,2297.7698,12643121,Africa +Bermuda,BMU,BM,81.136,,64051,North America +Bhutan,BTN,BT,71.6094,,772512,Asia +Bolivia,BOL,BO,64.4667,6062.065,11936169,South America +Bonaire Sint Eustatius and Saba,BES,BQ,75.9388,,26178,North America +Bosnia and Herzegovina,BIH,BA,76.2254,10736.168,3318410,Europe +Botswana,BWA,BW,65.6471,14162.686,2546404,Africa +Brazil,BRA,BR,74.0089,13685.926,213196304,South America +British Virgin Islands,VGB,VG,75.8486,,30934,North America +Brunei,BRN,BN,74.7949,,441736,Asia +Bulgaria,BGR,BG,73.6453,18203.832,6979181,Europe +Burkina Faso,BFA,BF,59.7306,1638.8279,21522632,Africa +Burundi,BDI,BI,61.5663,720.446,12220229,Africa +Cambodia,KHM,KH,70.416,3728.1985,16396864,Asia +Cameroon,CMR,CM,60.8328,2769.2869,26491090,Africa +Canada,CAN,CA,82.0471,42493.63,37888704,North America +Cape Verde,CPV,CV,74.8077,5831.9985,582646,Africa +Cayman Islands,CYM,KY,75.1126,,67327,North America +Central African Republic,CAF,CF,54.6042,613.78937,5343024,Africa +Chad,TCD,TD,52.7774,1463.5312,16644707,Africa +Chile,CHL,CL,79.3769,20205.87,19300318,South America +China,CHN,CN,78.0766,17225.969,1424929792,Asia +Colombia,COL,CO,74.7692,12377.135,50930656,South America +Comoros,COM,KM,64.1665,1869.9441,806168,Africa +Congo,COG,CG,63.7852,4203.1104,5702183,Africa +Cook Islands,COK,CK,74.6606,,17050,Oceania +Costa Rica,CRI,CR,79.277,13996.39,5123107,North America +Cote d'Ivoire,CIV,CI,59.0318,3682.1353,26811792,Africa +Croatia,HRV,HR,77.9845,21672.479,4096872,Europe +Cuba,CUB,CU,77.5673,7364.1055,11300695,North America +Curacao,CUW,CW,76.0981,,189298,North America +Cyprus,CYP,CY,81.3905,28634.457,1237540,Europe +Czechia,CZE,CZ,78.5746,30365.37,10530951,Europe +Czechoslovakia,OWID_CZS,CS,,29043.441,,Europe +Democratic Republic of Congo,COD,CD,59.7392,794.2714,92853168,Africa +Denmark,DNK,DK,81.5449,47171.086,5825638,Europe +Djibouti,DJI,DJ,62.6943,3426.696,1090162,Africa +Dominica,DMA,DM,73.649,7974.3066,72011,North America +Dominican Republic,DOM,DO,72.8894,15325.654,10999668,North America +East Timor,TLS,TL,68.4755,,1299998,Asia +Ecuador,ECU,EC,72.1535,9646.065,17588596,South America +Egypt,EGY,EG,70.9905,12234.504,107465128,Africa +El Salvador,SLV,SV,71.0609,8137.9746,6292734,North America +Equatorial Guinea,GNQ,GQ,60.7083,23300.297,1596057,Africa +Eritrea,ERI,ER,67.1334,,3555869,Africa +Estonia,EST,EE,78.3431,28261.582,1329449,Europe +Eswatini,SWZ,SZ,59.6922,8167.6895,1180663,Africa +Ethiopia,ETH,ET,65.3705,2121.8591,117190920,Africa +Falkland Islands,FLK,FK,78.4129,,3764,South America +Faroe Islands,FRO,FO,79.3984,,52440,Europe +Fiji,FJI,FJ,67.9244,,920430,Oceania +Finland,FIN,FI,81.8657,38871.703,5529468,Europe +France,FRA,FR,82.2104,35913.82,64480052,Europe +French Guiana,GUF,GF,76.9787,,290978,South America +French Polynesia,PYF,PF,82.2167,,301935,Oceania +Gabon,GAB,GA,66.5305,15745.749,2292583,Africa +Gambia,GMB,GM,62.6125,1914.1969,2574005,Africa +Georgia,GEO,GE,72.7653,11770.782,3765912,Asia +Germany,DEU,DE,81.1472,44996.43,83328992,Europe +Ghana,GHA,GH,64.114,4069.252,32180402,Africa +Gibraltar,GIB,GI,82.1984,,32739,Europe +Greece,GRC,GR,80.9092,21767.22,10512232,Europe +Greenland,GRL,GL,72.2834,,56049,North America +Grenada,GRD,GD,74.9238,,123672,North America +Guadeloupe,GLP,GP,82.4437,,395649,North America +Guam,GUM,GU,76.6124,,169245,Oceania +Guatemala,GTM,GT,71.7969,7309.368,17362716,North America +Guernsey,GGY,GG,82.242,,62823,Europe +Guinea,GIN,GN,59.3273,1726.5083,13205157,Africa +Guinea-Bissau,GNB,GW,59.9988,1531.3096,2015839,Africa +Guyana,GUY,GY,68.4858,,797207,South America +Haiti,HTI,HT,64.0518,1641.7617,11306804,North America +Honduras,HND,HN,71.4619,4567.8857,10121762,North America +Hong Kong,HKG,HK,85.1968,46550.258,7500955,Asia +Hungary,HUN,HU,75.7297,26091.4,9750571,Europe +Iceland,ISL,IS,82.5755,39368.4,366682,Europe +India,IND,IN,70.1499,6730.547,1396387072,Asia +Indonesia,IDN,ID,68.8077,11895.075,271857984,Asia +Iran,IRN,IR,74.832,17296.264,87290192,Asia +Iraq,IRQ,IQ,69.1228,11717.375,42556988,Asia +Ireland,IRL,IE,82.4699,55134.855,4946123,Europe +Isle of Man,IMN,IM,80.588,,84063,Europe +Israel,ISR,IL,82.3598,32730.943,8757487,Asia +Italy,ITA,IT,82.3953,32385.326,59500576,Europe +Jamaica,JAM,JM,71.8686,6880.4883,2820438,North America +Japan,JPN,JP,84.6879,36826.64,125244760,Asia +Jersey,JEY,JE,80.6968,,108332,Europe +Jordan,JOR,JO,75.1843,8896.383,10928723,Asia +Kazakhstan,KAZ,KZ,70.0304,25124.486,18979250,Asia +Kenya,KEN,KE,62.6755,3129.5852,51985780,Africa +Kiribati,KIR,KI,67.2659,,126473,Oceania +Kosovo,OWID_KOS,XK,76.5666,,1670702,Europe +Kuwait,KWT,KW,76.9198,66365.99,4360451,Asia +Kyrgyzstan,KGZ,KG,69.6291,4899.061,6424880,Asia +Laos,LAO,LA,68.4968,6824.144,7319397,Asia +Latvia,LVA,LV,75.4526,25453.064,1897057,Europe +Lebanon,LBN,LB,77.8038,10182.637,5662924,Asia +Lesotho,LSO,LS,54.6933,2297.383,2254104,Africa +Liberia,LBR,LR,60.9476,768.40546,5087591,Africa +Libya,LBY,LY,72.4722,11741.864,6653946,Africa +Liechtenstein,LIE,LI,82.797,,38783,Europe +Lithuania,LTU,LT,75.0676,28971.844,2820269,Europe +Luxembourg,LUX,LU,81.4335,53489.332,630401,Europe +Macao,MAC,MO,85.1841,,676287,Asia +Madagascar,MDG,MG,65.182,1300.5428,28225182,Africa +Malawi,MWI,MW,63.7167,1186.6827,19377058,Africa +Malaysia,MYS,MY,75.9378,24279.316,33199988,Asia +Maldives,MDV,MV,79.8747,,514451,Asia +Mali,MLI,ML,58.6331,1638.9304,21224042,Africa +Malta,MLT,MT,83.3545,29703.762,515364,Europe +Marshall Islands,MHL,MH,64.977,,43437,Oceania +Martinique,MTQ,MQ,83.05,,370399,North America +Mauritania,MRT,MR,64.5321,3532.2979,4498605,Africa +Mauritius,MUS,MU,74.3306,18445.975,1297830,Africa +Mayotte,MYT,YT,75.4106,,305591,Africa +Mexico,MEX,MX,70.1328,15253.691,125998296,North America +Micronesia (country),FSM,FM,70.674,,112119,Oceania +Moldova,MDA,MD,70.1665,6560.7476,3084848,Europe +Monaco,MCO,MC,86.538,,36943,Europe +Mongolia,MNG,MN,72.141,12990.328,3294340,Asia +Montenegro,MNE,ME,76.2575,17355.623,629058,Europe +Montserrat,MSR,MS,75.3312,,4526,North America +Morocco,MAR,MA,73.9199,7849.208,36688768,Africa +Mozambique,MOZ,MZ,61.1722,1076.6941,31178242,Africa +Myanmar,MMR,MM,66.797,6282.8115,53423200,Asia +Namibia,NAM,NA,62.829,7734.6055,2489099,Africa +Nauru,NRU,NR,63.4367,,12339,Oceania +Nepal,NPL,NP,69.2456,2832.8608,29348626,Asia +Netherlands,NLD,NL,81.6381,46014.484,17434562,Europe +New Caledonia,NCL,NC,80.8252,,286412,Oceania +New Zealand,NZL,NZ,82.7419,35853.69,5061130,Oceania +Nicaragua,NIC,NI,71.7954,4575.1865,6755900,North America +Niger,NER,NE,61.4506,962.7823,24333644,Africa +Nigeria,NGA,NG,52.887,4976.3223,208327408,Africa +Niue,NIU,NU,70.8119,,1963,Oceania +North Korea,PRK,KP,73.2741,1584.3771,25867474,Asia +North Macedonia,MKD,MK,75.1677,13125.83,2111078,Europe +Northern Mariana Islands,MNP,MP,77.1541,,49611,Oceania +Norway,NOR,NO,83.1951,83543.1,5379836,Europe +Oman,OMN,OM,74.7571,46133.21,4543406,Asia +Pakistan,PAK,PK,66.2695,5242.6953,227196736,Asia +Palau,PLW,PW,65.3491,,17999,Oceania +Palestine,PSE,PS,74.4035,4490.755,5019407,Asia +Panama,PAN,PA,76.657,18840.738,4294391,North America +Papua New Guinea,PNG,PG,65.7868,,9749641,Oceania +Paraguay,PRY,PY,73.1816,8603.079,6618700,South America +Peru,PER,PE,73.6655,11136.991,33304768,South America +Philippines,PHL,PH,72.1191,7624.4136,112190984,Asia +Poland,POL,PL,76.9424,28577.14,38428368,Europe +Portugal,PRT,PT,81.0545,25700.283,10298186,Europe +Puerto Rico,PRI,PR,78.0406,33787.4,3271570,North America +Qatar,QAT,QA,79.0987,143118.53,2760390,Asia +Reunion,REU,RE,82.1032,,957829,Africa +Romania,ROU,RO,75.3456,24799.71,19442040,Europe +Russia,RUS,RU,71.3423,24625.385,145617328,Europe +Rwanda,RWA,RW,66.7741,1935.2662,13146367,Africa +Saint Barthelemy,BLM,BL,80.223,,10706,North America +Saint Helena,SHN,SH,76.8673,,5448,Africa +Saint Kitts and Nevis,KNA,KN,71.6266,,47666,North America +Saint Lucia,LCA,LC,73.416,8164.9062,179245,North America +Saint Martin (French part),MAF,MF,80.1492,,32577,North America +Saint Pierre and Miquelon,SPM,PM,77.1392,,5930,North America +Saint Vincent and the Grenadines,VCT,VC,72.1256,,104644,North America +Samoa,WSM,WS,72.7677,,214934,Oceania +San Marino,SMR,SM,79.5886,,34038,Europe +Sao Tome and Principe,STP,ST,67.7848,3826.3755,218650,Africa +Saudi Arabia,SAU,SA,76.2392,46723.93,35997108,Asia +Senegal,SEN,SN,68.0064,2524.2656,16436120,Africa +Serbia,SRB,RS,75.4057,15256.421,7358010,Europe +Seychelles,SYC,SC,73.5324,29647.482,105545,Africa +Sierra Leone,SLE,SL,59.7632,1635.713,8233973,Africa +Singapore,SGP,SG,82.861,71964.7,5909874,Asia +Sint Maarten (Dutch part),SXM,SX,74.5835,,43638,North America +Slovakia,SVK,SK,77.0054,26468.295,5456681,Europe +Slovenia,SVN,SI,80.4409,28733.303,2117648,Europe +Solomon Islands,SLB,SB,70.1987,,691198,Oceania +Somalia,SOM,SO,55.9666,,16537018,Africa +South Africa,ZAF,ZA,65.2522,10839.133,58801928,Africa +South Korea,KOR,KR,83.6089,38606.984,51844688,Asia +South Sudan,SSD,SS,55.4801,,10606224,Africa +Spain,ESP,ES,82.2892,30834.514,47363808,Europe +Sri Lanka,LKA,LK,76.3929,11447.249,21715076,Asia +Sudan,SDN,SD,65.6136,,44440484,Africa +Suriname,SUR,SR,72.5615,,607068,South America +Sweden,SWE,SE,82.4274,44128.332,10368968,Europe +Switzerland,CHE,CH,83.067,60521.26,8638609,Europe +Syria,SYR,SY,72.1399,2903.7397,20772602,Asia +Taiwan,TWN,TW,80.8924,48779.438,23821468,Asia +Tajikistan,TJK,TJ,67.9942,4828.3936,9543211,Asia +Tanzania,TZA,TZ,66.4077,2948.4724,61704520,Africa +Thailand,THA,TH,79.2739,15815.915,71475664,Asia +Togo,TGO,TG,61.035,1482.7515,8442583,Africa +Tokelau,TKL,TK,75.1751,,1845,Oceania +Tonga,TON,TO,70.9276,,105265,Oceania +Trinidad and Tobago,TTO,TT,74.4056,25548.51,1518142,North America +Tunisia,TUN,TN,75.2923,10354.239,12161720,Africa +Turkey,TUR,TR,75.85,23721.88,84135432,Asia +Turkmenistan,TKM,TM,68.687,16580.84,6250442,Asia +Turks and Caicos Islands,TCA,TC,75.0008,,44297,North America +Tuvalu,TUV,TV,64.382,,11090,Oceania +USSR,OWID_USS,SU,,18851.242,,Europe +Uganda,UGA,UG,62.8513,2032.2618,44404608,Africa +Ukraine,UKR,UA,72.5726,9769.828,43909664,Europe +United Arab Emirates,ARE,AE,78.9457,70188.27,9287286,Asia +United Kingdom,GBR,GB,80.4345,34651.184,67059472,Europe +United States,USA,US,77.4144,54379.207,335942016,North America +United States Virgin Islands,VIR,VI,74.9416,,100452,North America +Uruguay,URY,UY,78.4298,18460.04,3429087,South America +Uzbekistan,UZB,UZ,70.3309,11341.919,33526662,Asia +Vanuatu,VUT,VU,70.2995,,311694,Oceania +Venezuela,VEN,VE,71.0949,4952.53,28490458,South America +Vietnam,VNM,VN,75.3779,7395.3613,96648680,Asia +Wallis and Futuna,WLF,WF,78.7639,,11679,Oceania +Western Sahara,ESH,EH,70.5218,,556060,Africa +Yemen,YEM,YE,64.6501,2031.4436,32284044,Asia +Yugoslavia,OWID_YGS,YU,,16757.94,,Europe +Zambia,ZMB,ZM,62.3803,3270.599,18927716,Africa +Zimbabwe,ZWE,ZW,61.1242,1585.9728,15669663,Africa diff --git a/docs/static/data/examples/country-gdp-life-expectancy.json b/docs/static/data/examples/country-gdp-life-expectancy.json deleted file mode 100644 index 97b9a31c4..000000000 --- a/docs/static/data/examples/country-gdp-life-expectancy.json +++ /dev/null @@ -1,170 +0,0 @@ -[ - {"title":"Afghanistan","id":"AF","continent":"asia","x":1349.70,"y":60.524,"value":33397058}, - {"title":"Albania","id":"AL","continent":"europe","x":6969.31,"y":77.185,"value":3227373}, - {"title":"Algeria","id":"DZ","continent":"africa","x":6419.13,"y":70.874,"value":36485828}, - {"title":"Angola","id":"AO","continent":"africa","x":5838.16,"y":51.498,"value":20162517}, - {"title":"Argentina","id":"AR","continent":"south_america","x":15714.10,"y":76.128,"value":41118986}, - {"title":"Armenia","id":"AM","continent":"europe","x":5059.09,"y":74.469,"value":3108972}, - {"title":"Australia","id":"AU","continent":"oceania","x":36064.74,"y":82.364,"value":22918688}, - {"title":"Austria","id":"AT","continent":"europe","x":36731.63,"y":80.965,"value":8428915}, - {"title":"Azerbaijan","id":"AZ","continent":"europe","x":9291.03,"y":70.686,"value":9421233}, - {"title":"Bahrain","id":"BH","continent":"asia","x":24472.90,"y":76.474,"value":1359485}, - {"title":"Bangladesh","id":"BD","continent":"asia","x":1792.55,"y":70.258,"value":152408774}, - {"title":"Belarus","id":"BY","continent":"europe","x":13515.16,"y":69.829,"value":9527498}, - {"title":"Belgium","id":"BE","continent":"europe","x":32585.01,"y":80.373,"value":10787788}, - {"title":"Benin","id":"BJ","continent":"africa","x":1464.14,"y":59.165,"value":9351838}, - {"title":"Bhutan","id":"BT","continent":"asia","x":6130.86,"y":67.888,"value":750443}, - {"title":"Bolivia","id":"BO","continent":"south_america","x":4363.43,"y":66.969,"value":10248042}, - {"title":"Bosnia and Herzegovina","id":"BA","continent":"europe","x":7664.15,"y":76.211,"value":3744235}, - {"title":"Botswana","id":"BW","continent":"africa","x":14045.94,"y":47.152,"value":2053237}, - {"title":"Brazil","id":"BR","continent":"south_america","x":10383.54,"y":73.667,"value":198360943}, - {"title":"Brunei","id":"BN","continent":"asia","x":45658.25,"y":78.35,"value":412892}, - {"title":"Bulgaria","id":"BG","continent":"europe","x":11669.72,"y":73.448,"value":7397873}, - {"title":"Burkina Faso","id":"BF","continent":"africa","x":1363.78,"y":55.932,"value":17481984}, - {"title":"Burundi","id":"BI","continent":"africa","x":484.09,"y":53.637,"value":8749387}, - {"title":"Cambodia","id":"KH","continent":"asia","x":2076.69,"y":71.577,"value":14478320}, - {"title":"Cameroon","id":"CM","continent":"africa","x":2094.10,"y":54.61,"value":20468943}, - {"title":"Canada","id":"CA","continent":"north_america","x":35992.83,"y":81.323,"value":34674708}, - {"title":"Cape Verde","id":"CV","continent":"africa","x":3896.04,"y":74.771,"value":505335}, - {"title":"Central African Rep.","id":"CF","continent":"africa","x":718.26,"y":49.517,"value":4575586}, - {"title":"Chad","id":"TD","continent":"africa","x":1768.88,"y":50.724,"value":11830573}, - {"title":"Chile","id":"CL","continent":"south_america","x":15403.76,"y":79.691,"value":17423214}, - {"title":"China","id":"CN","continent":"asia","x":9501.57,"y":75.178,"value":1353600687}, - {"title":"Colombia","id":"CO","continent":"south_america","x":8035.66,"y":73.835,"value":47550708}, - {"title":"Comoros","id":"KM","continent":"africa","x":1027.41,"y":60.661,"value":773344}, - {"title":"Congo, Dem. Rep.","id":"CD","continent":"africa","x":403.16,"y":49.643,"value":69575394}, - {"title":"Congo, Rep.","id":"CG","continent":"africa","x":4106.51,"y":58.32,"value":4233063}, - {"title":"Costa Rica","id":"CR","continent":"north_america","x":10827.68,"y":79.712,"value":4793725}, - {"title":"Cote d'Ivoire","id":"CI","continent":"africa","x":1491.52,"y":50.367,"value":20594615}, - {"title":"Croatia","id":"HR","continent":"europe","x":13388.99,"y":76.881,"value":4387376}, - {"title":"Cuba","id":"CU","continent":"north_america","x":10197.42,"y":79.088,"value":11249266}, - {"title":"Cyprus","id":"CY","continent":"europe","x":23092.09,"y":79.674,"value":1129166}, - {"title":"Czech Rep.","id":"CZ","continent":"europe","x":22565.30,"y":77.552,"value":10565678}, - {"title":"Denmark","id":"DK","continent":"europe","x":32731.29,"y":79.251,"value":5592738}, - {"title":"Djibouti","id":"DJ","continent":"africa","x":2244.60,"y":61.319,"value":922708}, - {"title":"Dominican Rep.","id":"DO","continent":"north_america","x":6978.90,"y":73.181,"value":10183339}, - {"title":"Ecuador","id":"EC","continent":"south_america","x":7903.09,"y":76.195,"value":14864987}, - {"title":"Egypt","id":"EG","continent":"africa","x":6013.82,"y":70.933,"value":83958369}, - {"title":"El Salvador","id":"SV","continent":"north_america","x":5833.63,"y":72.361,"value":6264129}, - {"title":"Equatorial Guinea","id":"GQ","continent":"africa","x":13499.21,"y":52.562,"value":740471}, - {"title":"Eritrea","id":"ER","continent":"africa","x":613.72,"y":62.329,"value":5580862}, - {"title":"Estonia","id":"EE","continent":"europe","x":18858.05,"y":74.335,"value":1339762}, - {"title":"Ethiopia","id":"ET","continent":"africa","x":958.69,"y":62.983,"value":86538534}, - {"title":"Fiji","id":"FJ","continent":"oceania","x":4195.03,"y":69.626,"value":875822}, - {"title":"Finland","id":"FI","continent":"europe","x":31551.95,"y":80.362,"value":5402627}, - {"title":"France","id":"FR","continent":"europe","x":29896.42,"y":81.663,"value":63457777}, - {"title":"Gabon","id":"GA","continent":"africa","x":13853.46,"y":63.115,"value":1563873}, - {"title":"Gambia","id":"GM","continent":"africa","x":747.68,"y":58.59,"value":1824777}, - {"title":"Georgia","id":"GE","continent":"europe","x":4943.24,"y":74.162,"value":4304363}, - {"title":"Germany","id":"DE","continent":"europe","x":34131.87,"y":80.578,"value":81990837}, - {"title":"Ghana","id":"GH","continent":"africa","x":1728.48,"y":60.979,"value":25545939}, - {"title":"Greece","id":"GR","continent":"europe","x":21811.33,"y":80.593,"value":11418878}, - {"title":"Guatemala","id":"GT","continent":"north_america","x":5290.75,"y":71.77,"value":15137569}, - {"title":"Guinea","id":"GN","continent":"africa","x":965.70,"y":55.865,"value":10480710}, - {"title":"Guinea-Bissau","id":"GW","continent":"africa","x":593.07,"y":54.054,"value":1579632}, - {"title":"Guyana","id":"GY","continent":"south_america","x":4265.11,"y":66.134,"value":757623}, - {"title":"Haiti","id":"HT","continent":"north_america","x":1180.37,"y":62.746,"value":10255644}, - {"title":"Honduras","id":"HN","continent":"north_america","x":3615.16,"y":73.503,"value":7912032}, - {"title":"Hong Kong, China","id":"HK","continent":"asia","x":43854.41,"y":83.199,"value":7196450}, - {"title":"Hungary","id":"HU","continent":"europe","x":17065.60,"y":74.491,"value":9949589}, - {"title":"Iceland","id":"IS","continent":"europe","x":34371.18,"y":81.96,"value":328290}, - {"title":"India","id":"IN","continent":"asia","x":3229.15,"y":66.168,"value":1258350971}, - {"title":"Indonesia","id":"ID","continent":"asia","x":4379.70,"y":70.624,"value":244769110}, - {"title":"Iran","id":"IR","continent":"asia","x":12325.13,"y":73.736,"value":75611798}, - {"title":"Iraq","id":"IQ","continent":"asia","x":4160.85,"y":69.181,"value":33703068}, - {"title":"Ireland","id":"IE","continent":"europe","x":35856.11,"y":80.531,"value":4579498}, - {"title":"Israel","id":"IL","continent":"asia","x":27321.21,"y":81.641,"value":7694670}, - {"title":"Italy","id":"IT","continent":"europe","x":25811.74,"y":82.235,"value":60964145}, - {"title":"Jamaica","id":"JM","continent":"north_america","x":6945.70,"y":73.338,"value":2761331}, - {"title":"Japan","id":"JP","continent":"asia","x":31273.99,"y":83.418,"value":126434653}, - {"title":"Jordan","id":"JO","continent":"asia","x":5242.52,"y":73.7,"value":6457260}, - {"title":"Kazakhstan","id":"KZ","continent":"asia","x":11982.65,"y":66.394,"value":16381297}, - {"title":"Kenya","id":"KE","continent":"africa","x":1517.70,"y":61.115,"value":42749418}, - {"title":"Korea, Dem. Rep.","id":"KP","continent":"asia","x":1540.44,"y":69.701,"value":24553672}, - {"title":"Korea, Rep.","id":"KR","continent":"asia","x":26199.40,"y":81.294,"value":48588326}, - {"title":"Kuwait","id":"KW","continent":"asia","x":42045.06,"y":74.186,"value":2891553}, - {"title":"Kyrgyzstan","id":"KG","continent":"asia","x":2078.21,"y":67.37,"value":5448085}, - {"title":"Laos","id":"LA","continent":"asia","x":2807.05,"y":67.865,"value":6373934}, - {"title":"Latvia","id":"LV","continent":"europe","x":15575.28,"y":72.045,"value":2234572}, - {"title":"Lebanon","id":"LB","continent":"asia","x":13711.98,"y":79.716,"value":4291719}, - {"title":"Lesotho","id":"LS","continent":"africa","x":1970.47,"y":48.947,"value":2216850}, - {"title":"Liberia","id":"LR","continent":"africa","x":499.81,"y":60.23,"value":4244684}, - {"title":"Libya","id":"LY","continent":"africa","x":9136.34,"y":75.13,"value":6469497}, - {"title":"Lithuania","id":"LT","continent":"europe","x":18469.97,"y":71.942,"value":3292454}, - {"title":"Macedonia, FYR","id":"MK","continent":"europe","x":8918.81,"y":75.041,"value":2066785}, - {"title":"Madagascar","id":"MG","continent":"africa","x":981.48,"y":64.28,"value":21928518}, - {"title":"Malawi","id":"MW","continent":"africa","x":848.19,"y":54.798,"value":15882815}, - {"title":"Malaysia","id":"MY","continent":"asia","x":14202.21,"y":74.836,"value":29321798}, - {"title":"Mali","id":"ML","continent":"africa","x":1070.55,"y":54.622,"value":16318897}, - {"title":"Mauritania","id":"MR","continent":"africa","x":1898.35,"y":61.39,"value":3622961}, - {"title":"Mauritius","id":"MU","continent":"africa","x":13082.78,"y":73.453,"value":1313803}, - {"title":"Mexico","id":"MX","continent":"north_america","x":12030.39,"y":77.281,"value":116146768}, - {"title":"Moldova","id":"MD","continent":"europe","x":2963.99,"y":68.779,"value":3519266}, - {"title":"Mongolia","id":"MN","continent":"asia","x":4300.13,"y":67.286,"value":2844081}, - {"title":"Montenegro","id":"ME","continent":"europe","x":10064.16,"y":74.715,"value":632796}, - {"title":"Morocco","id":"MA","continent":"africa","x":4514.52,"y":70.714,"value":32598536}, - {"title":"Mozambique","id":"MZ","continent":"africa","x":1058.44,"y":49.91,"value":24475186}, - {"title":"Myanmar","id":"MM","continent":"asia","x":1657.05,"y":65.009,"value":48724387}, - {"title":"Namibia","id":"NA","continent":"africa","x":5535.84,"y":64.014,"value":2364433}, - {"title":"Nepal","id":"NP","continent":"asia","x":1264.49,"y":67.989,"value":31011137}, - {"title":"Netherlands","id":"NL","continent":"europe","x":36257.09,"y":80.906,"value":16714228}, - {"title":"New Zealand","id":"NZ","continent":"oceania","x":25223.54,"y":80.982,"value":4461257}, - {"title":"Nicaragua","id":"NI","continent":"north_america","x":3098.48,"y":74.515,"value":5954898}, - {"title":"Niger","id":"NE","continent":"africa","x":706.79,"y":57.934,"value":16644339}, - {"title":"Nigeria","id":"NG","continent":"africa","x":2483.99,"y":52.116,"value":166629383}, - {"title":"Norway","id":"NO","continent":"europe","x":47383.62,"y":81.367,"value":4960482}, - {"title":"Oman","id":"OM","continent":"asia","x":26292.85,"y":76.287,"value":2904037}, - {"title":"Pakistan","id":"PK","continent":"asia","x":2681.12,"y":66.42,"value":179951140}, - {"title":"Panama","id":"PA","continent":"north_america","x":13607.14,"y":77.342,"value":3624991}, - {"title":"Papua New Guinea","id":"PG","continent":"oceania","x":2391.58,"y":62.288,"value":7170112}, - {"title":"Paraguay","id":"PY","continent":"south_america","x":4467.16,"y":72.181,"value":6682943}, - {"title":"Peru","id":"PE","continent":"south_america","x":9277.57,"y":74.525,"value":29733829}, - {"title":"Philippines","id":"PH","continent":"asia","x":3677.10,"y":68.538,"value":96471461}, - {"title":"Poland","id":"PL","continent":"europe","x":17851.95,"y":76.239,"value":38317090}, - {"title":"Portugal","id":"PT","continent":"europe","x":19576.41,"y":79.732,"value":10699333}, - {"title":"Romania","id":"RO","continent":"europe","x":11058.18,"y":73.718,"value":21387517}, - {"title":"Russia","id":"RU","continent":"europe","x":15427.62,"y":67.874,"value":142703181}, - {"title":"Rwanda","id":"RW","continent":"africa","x":1223.53,"y":63.563,"value":11271786}, - {"title":"Saudi Arabia","id":"SA","continent":"asia","x":26259.62,"y":75.264,"value":28705133}, - {"title":"Senegal","id":"SN","continent":"africa","x":1753.49,"y":63.3,"value":13107945}, - {"title":"Serbia","id":"RS","continent":"europe","x":9335.96,"y":73.934,"value":9846582}, - {"title":"Sierra Leone","id":"SL","continent":"africa","x":1072.96,"y":45.338,"value":6126450}, - {"title":"Singapore","id":"SG","continent":"asia","x":49381.96,"y":82.155,"value":5256278}, - {"title":"Slovak Republic","id":"SK","continent":"europe","x":20780.99,"y":75.272,"value":5480332}, - {"title":"Slovenia","id":"SI","continent":"europe","x":23986.85,"y":79.444,"value":2040057}, - {"title":"Solomon Islands","id":"SB","continent":"oceania","x":2024.23,"y":67.465,"value":566481}, - {"title":"Somalia","id":"SO","continent":"africa","x":953.28,"y":54,"value":9797445}, - {"title":"South Africa","id":"ZA","continent":"africa","x":9657.25,"y":56.271,"value":50738255}, - {"title":"South Sudan","id":"SS","continent":"africa","x":1433.04,"y":54.666,"value":10386101}, - {"title":"Spain","id":"ES","continent":"europe","x":26457.76,"y":81.958,"value":46771596}, - {"title":"Sri Lanka","id":"LK","continent":"asia","x":5182.67,"y":74.116,"value":21223550}, - {"title":"Sudan","id":"SD","continent":"africa","x":2917.62,"y":61.875,"value":35335982}, - {"title":"Suriname","id":"SR","continent":"south_america","x":8979.81,"y":70.794,"value":534175}, - {"title":"Swaziland","id":"SZ","continent":"africa","x":4979.70,"y":48.91,"value":1220408}, - {"title":"Sweden","id":"SE","continent":"europe","x":34530.26,"y":81.69,"value":9495392}, - {"title":"Switzerland","id":"CH","continent":"europe","x":37678.39,"y":82.471,"value":7733709}, - {"title":"Syria","id":"SY","continent":"asia","x":4432.02,"y":71,"value":21117690}, - {"title":"Taiwan","id":"TW","continent":"asia","x":32840.86,"y":79.45,"value":23114000}, - {"title":"Tajikistan","id":"TJ","continent":"asia","x":1952.10,"y":67.118,"value":7078755}, - {"title":"Tanzania","id":"TZ","continent":"africa","x":1330.06,"y":60.885,"value":47656367}, - {"title":"Thailand","id":"TH","continent":"asia","x":8451.16,"y":74.225,"value":69892142}, - {"title":"Timor-Leste","id":"TL","continent":"asia","x":3466.08,"y":67.033,"value":1187194}, - {"title":"Togo","id":"TG","continent":"africa","x":975.40,"y":56.198,"value":6283092}, - {"title":"Trinidad and Tobago","id":"TT","continent":"north_america","x":17182.10,"y":69.761,"value":1350999}, - {"title":"Tunisia","id":"TN","continent":"africa","x":7620.47,"y":75.632,"value":10704948}, - {"title":"Turkey","id":"TR","continent":"europe","x":9287.29,"y":74.938,"value":74508771}, - {"title":"Turkmenistan","id":"TM","continent":"asia","x":7921.27,"y":65.299,"value":5169660}, - {"title":"Uganda","id":"UG","continent":"africa","x":1251.10,"y":58.668,"value":35620977}, - {"title":"Ukraine","id":"UA","continent":"europe","x":6389.59,"y":68.414,"value":44940268}, - {"title":"United Arab Emirates","id":"AE","continent":"asia","x":31980.24,"y":76.671,"value":8105873}, - {"title":"United Kingdom","id":"GB","continent":"europe","x":31295.14,"y":80.396,"value":62798099}, - {"title":"United States","id":"US","continent":"north_america","x":42296.23,"y":78.797,"value":315791284}, - {"title":"Uruguay","id":"UY","continent":"south_america","x":13179.23,"y":77.084,"value":3391428}, - {"title":"Uzbekistan","id":"UZ","continent":"asia","x":3117.27,"y":68.117,"value":28077486}, - {"title":"Venezuela","id":"VE","continent":"south_america","x":11685.18,"y":74.477,"value":29890694}, - {"title":"West Bank and Gaza","id":"PS","continent":"asia","x":4328.39,"y":73.018,"value":4270791}, - {"title":"Vietnam","id":"VN","continent":"asia","x":3073.65,"y":75.793,"value":89730274}, - {"title":"Yemen, Rep.","id":"YE","continent":"asia","x":2043.79,"y":62.923,"value":25569263}, - {"title":"Zambia","id":"ZM","continent":"africa","x":1550.92,"y":57.037,"value":13883577}, - {"title":"Zimbabwe","id":"ZW","continent":"africa","x":545.34,"y":58.142,"value":13013678} -] From 8bf450d323946fafcfef8fcd344ce1643d5332e5 Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Mon, 4 May 2026 16:42:31 -0400 Subject: [PATCH 10/15] feat(Text): Add `fontSize` prop with auto-derived `capHeight` --- .changeset/text-fontsize-prop.md | 17 ++++++++ docs/src/content/components/Text.md | 10 +++++ .../components/Arc/label-direction.svelte | 6 +-- .../examples/components/Arc/playground.svelte | 6 +-- .../components/Dodge/text-beeswarm.svelte | 4 +- .../TransformContext/planet-distances.svelte | 2 +- .../lib/components/Text/Text.canvas.svelte | 9 +++++ .../src/lib/components/Text/Text.html.svelte | 6 +++ .../lib/components/Text/Text.shared.svelte.ts | 40 +++++++++++++++++-- .../src/lib/components/Text/Text.svg.svelte | 8 +++- 10 files changed, 93 insertions(+), 15 deletions(-) create mode 100644 .changeset/text-fontsize-prop.md diff --git a/.changeset/text-fontsize-prop.md b/.changeset/text-fontsize-prop.md new file mode 100644 index 000000000..ec5991a15 --- /dev/null +++ b/.changeset/text-fontsize-prop.md @@ -0,0 +1,17 @@ +--- +'layerchart': minor +--- + +feat(Text): Add `fontSize` prop with auto-derived `capHeight` + +Adds a typed `fontSize?: number | string` prop on `` (number = pixels, string passes through). When set, `capHeight` defaults to `fontSize * 0.71` instead of the legacy `'0.71em'` — so per-item scaled labels with `verticalAnchor="middle"` align to a common visual baseline without an explicit `capHeight` override. + +Previously, `getPixelValue` resolved `'0.71em'` against a hard-coded 16px, so vertical centering was only correct for ~16px text. Larger labels sat too low, smaller ones too high — visible on text-driven beeswarms or any caller scaling labels per-element. + +```svelte + + + + + +``` diff --git a/docs/src/content/components/Text.md b/docs/src/content/components/Text.md index 5cd38d911..1fdf6f70d 100644 --- a/docs/src/content/components/Text.md +++ b/docs/src/content/components/Text.md @@ -37,6 +37,16 @@ Use the `segments` prop to render inline text with mixed styles (different font :example{ name="segments" showCode } +### Font size + +Pass `fontSize` (number = pixels, or any CSS length string) to size text. When set, `verticalAnchor="middle"` centers correctly at any size — `capHeight` defaults to `fontSize * 0.71`, so per-item scaled labels share a common visual baseline. An explicit `capHeight` still wins. + +```svelte + +``` + +For a per-datum scaled use case (text size driven by another value), see the [Dodge text-beeswarm example](/docs/components/Dodge/text-beeswarm). + ## Use cases ### Truncate text of axis labels diff --git a/docs/src/examples/components/Arc/label-direction.svelte b/docs/src/examples/components/Arc/label-direction.svelte index bf60dcfa8..8cd29ec0c 100644 --- a/docs/src/examples/components/Arc/label-direction.svelte +++ b/docs/src/examples/components/Arc/label-direction.svelte @@ -80,12 +80,12 @@ /> - - + + diff --git a/docs/src/examples/components/Arc/playground.svelte b/docs/src/examples/components/Arc/playground.svelte index 6fba9f055..a2bc4d89a 100644 --- a/docs/src/examples/components/Arc/playground.svelte +++ b/docs/src/examples/components/Arc/playground.svelte @@ -51,19 +51,19 @@ diff --git a/docs/src/examples/components/Dodge/text-beeswarm.svelte b/docs/src/examples/components/Dodge/text-beeswarm.svelte index 4abc2fddd..3fb46c9ef 100644 --- a/docs/src/examples/components/Dodge/text-beeswarm.svelte +++ b/docs/src/examples/components/Dodge/text-beeswarm.svelte @@ -40,16 +40,14 @@ {#snippet children({ items })} {#each items as { data: country, x, y, r, index } (index)} - {@const fontSize = r * 1.2} context.tooltip.show(e, country)} onpointerleave={context.tooltip.hide} diff --git a/docs/src/examples/components/TransformContext/planet-distances.svelte b/docs/src/examples/components/TransformContext/planet-distances.svelte index fc73ff427..4a8b9ac74 100644 --- a/docs/src/examples/components/TransformContext/planet-distances.svelte +++ b/docs/src/examples/components/TransformContext/planet-distances.svelte @@ -259,8 +259,8 @@ y={labelY} textAnchor="middle" verticalAnchor="end" + fontSize={10} class="fill-surface-content/70" - style="font-size: 10px" /> {/each} diff --git a/packages/layerchart/src/lib/components/Text/Text.canvas.svelte b/packages/layerchart/src/lib/components/Text/Text.canvas.svelte index 5f4d860fd..de3cc09b5 100644 --- a/packages/layerchart/src/lib/components/Text/Text.canvas.svelte +++ b/packages/layerchart/src/lib/components/Text/Text.canvas.svelte @@ -50,6 +50,14 @@ strokeWidth: itemStrokeWidth ?? c.staticStrokeWidth, opacity: itemOpacity ?? c.staticOpacity, paintOrder: 'stroke', + ...(rest.fontSize != null + ? { + fontSize: + typeof rest.fontSize === 'number' + ? `${rest.fontSize}px` + : rest.fontSize, + } + : {}), ...((rest.textAnchor ?? 'start') !== 'start' ? { textAnchor: rest.textAnchor } : {}), @@ -195,6 +203,7 @@ rest.class, c.truncateConfig, rest.rotate, + rest.fontSize, rest.lineHeight, rest.textAnchor, rest.verticalAnchor, diff --git a/packages/layerchart/src/lib/components/Text/Text.html.svelte b/packages/layerchart/src/lib/components/Text/Text.html.svelte index adf3c9570..5e092ad6e 100644 --- a/packages/layerchart/src/lib/components/Text/Text.html.svelte +++ b/packages/layerchart/src/lib/components/Text/Text.html.svelte @@ -46,6 +46,9 @@ {textAnchor === 'middle' ? 'center' : textAnchor === 'end' ? 'right' : 'left'}" style:white-space="pre-wrap" style:line-height={rest.lineHeight ?? '1em'} + style:font-size={typeof rest.fontSize === 'number' + ? `${rest.fontSize}px` + : rest.fontSize} style:color={resolvedFill} style:opacity={resolvedOpacity ?? resolvedFillOpacity} class={['lc-text', resolvedClass]} @@ -74,6 +77,9 @@ {textAnchor === 'middle' ? 'center' : textAnchor === 'end' ? 'right' : 'left'}" style:white-space="pre-wrap" style:line-height={rest.lineHeight ?? '1em'} + style:font-size={typeof rest.fontSize === 'number' + ? `${rest.fontSize}px` + : rest.fontSize} style:color={c.staticFill} style:opacity={c.staticOpacity ?? c.staticFillOpacity} class={['lc-text', c.staticClassName]} diff --git a/packages/layerchart/src/lib/components/Text/Text.shared.svelte.ts b/packages/layerchart/src/lib/components/Text/Text.shared.svelte.ts index 428f14cc3..132522786 100644 --- a/packages/layerchart/src/lib/components/Text/Text.shared.svelte.ts +++ b/packages/layerchart/src/lib/components/Text/Text.shared.svelte.ts @@ -123,8 +123,21 @@ export type TextPropsWithoutHTML = { lineHeight?: string; /** - * Cap height of the text - * @default '0.71em' + * Font size of the text. A number is treated as pixels; a string passes + * through (e.g. `'12px'`, `'1.25em'`). When set, vertical centering math + * derives `capHeight` from this value automatically (as `fontSize * 0.71`), + * so per-item scaled labels with `verticalAnchor="middle"` align correctly + * without an explicit `capHeight` override. + */ + fontSize?: number | string; + + /** + * Cap height of the text — used by vertical anchor math to align the text + * to its visual center (as opposed to the font box). Defaults to `0.71em`, + * but if `fontSize` is set, defaults to `fontSize * 0.71` so centering + * stays correct as text scales. + * + * @default '0.71em' (or `fontSize * 0.71` when `fontSize` is set) */ capHeight?: string; @@ -271,6 +284,25 @@ export function getPixelValue(cssValue: number | string) { } } +/** + * Resolve the cap-height used by vertical-anchor math. + * + * Priority: + * 1. Explicit `capHeight` prop + * 2. `fontSize * 0.71` when `fontSize` is set (keeps centering correct as + * labels scale per-item) + * 3. `'0.71em'` (legacy default — only correct for ~16px text since + * `getPixelValue` resolves `em` against 16, not the actual font-size) + */ +export function resolveCapHeight( + capHeight: string | undefined, + fontSize: number | string | undefined +): number | string { + if (capHeight != null) return capHeight; + if (fontSize != null) return getPixelValue(fontSize) * 0.71; + return '0.71em'; +} + export function isValidXOrY(xOrY: string | number | undefined) { return ( (typeof xOrY === 'number' && Number.isFinite(xOrY)) || @@ -479,7 +511,7 @@ export class TextState { const props = this.#getProps(); const verticalAnchor = props.verticalAnchor ?? 'end'; const lineHeight = props.lineHeight ?? '1em'; - const capHeight = props.capHeight ?? '0.71em'; + const capHeight = resolveCapHeight(props.capHeight, props.fontSize); if (verticalAnchor === 'start') { return getPixelValue(lineHeight); } else if (verticalAnchor === 'middle') { @@ -492,7 +524,7 @@ export class TextState { const props = this.#getProps(); const verticalAnchor = props.verticalAnchor ?? 'end'; const lineHeight = props.lineHeight ?? '1em'; - const capHeight = props.capHeight ?? '0.71em'; + const capHeight = resolveCapHeight(props.capHeight, props.fontSize); if (verticalAnchor === 'start') return getPixelValue(lineHeight); if (verticalAnchor === 'middle') return getPixelValue(capHeight) / 2; return -getPixelValue(capHeight) / 2; diff --git a/packages/layerchart/src/lib/components/Text/Text.svg.svelte b/packages/layerchart/src/lib/components/Text/Text.svg.svelte index 8ce83bb32..97f4419f9 100644 --- a/packages/layerchart/src/lib/components/Text/Text.svg.svelte +++ b/packages/layerchart/src/lib/components/Text/Text.svg.svelte @@ -30,10 +30,13 @@ rotate, dx, dy, + // `fontSize` is a typed prop (drives `capHeight` defaults), but on the + // DOM it must be rendered as the kebab-case `font-size` attribute. + fontSize, ...rest }: TextProps = $props(); - const c = new TextState(() => ({ rotate, dx, dy, ...rest } as TextProps)); + const c = new TextState(() => ({ rotate, dx, dy, fontSize, ...rest } as TextProps)); let ref = $state(); let svgRef = $state(); @@ -78,6 +81,7 @@ transform={(rest.transform as string | undefined) ?? dataRotateTransform} text-anchor={rest.textAnchor ?? 'start'} dominant-baseline={rest.dominantBaseline ?? 'auto'} + font-size={fontSize} fill={resolvedFill} fill-opacity={resolvedFillOpacity} stroke={resolvedStroke} @@ -109,6 +113,7 @@ {...rest as any} bind:this={ref} dy={dy ?? 0} + font-size={fontSize} fill={c.staticFill} fill-opacity={c.staticFillOpacity} stroke={c.staticStroke} @@ -140,6 +145,7 @@ transform={c.transform} text-anchor={rest.textAnchor ?? 'start'} dominant-baseline={rest.dominantBaseline ?? 'auto'} + font-size={fontSize} fill={c.staticFill} fill-opacity={c.staticFillOpacity} stroke={c.staticStroke} From b1cb7b1b4af7f681f233c35bf508592684a21780 Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Tue, 5 May 2026 08:30:17 -0400 Subject: [PATCH 11/15] add more Dodge and ForceSimulation examples --- .../src/content/components/ForceSimulation.md | 2 +- .../components/Dodge/bank-failures.svelte | 81 + .../components/Dodge/tech-layoffs.svelte | 82 + .../games-industry-layoffs.svelte | 106 + .../layoffs-by-industry.svelte | 144 + docs/src/lib/data.remote.ts | 98 + docs/static/data/examples/bank-failures.csv | 4115 ++++++++++++++++ docs/static/data/examples/games-layoffs.csv | 400 ++ docs/static/data/examples/layoffs.csv | 4320 +++++++++++++++++ .../components/Dodge/Dodge.shared.svelte.ts | 112 +- 10 files changed, 9425 insertions(+), 35 deletions(-) create mode 100644 docs/src/examples/components/Dodge/bank-failures.svelte create mode 100644 docs/src/examples/components/Dodge/tech-layoffs.svelte create mode 100644 docs/src/examples/components/ForceSimulation/games-industry-layoffs.svelte create mode 100644 docs/src/examples/components/ForceSimulation/layoffs-by-industry.svelte create mode 100644 docs/static/data/examples/bank-failures.csv create mode 100644 docs/static/data/examples/games-layoffs.csv create mode 100644 docs/static/data/examples/layoffs.csv diff --git a/docs/src/content/components/ForceSimulation.md b/docs/src/content/components/ForceSimulation.md index c69a9f085..3357f20a3 100644 --- a/docs/src/content/components/ForceSimulation.md +++ b/docs/src/content/components/ForceSimulation.md @@ -1,7 +1,7 @@ --- description: Layout components which positions nodes using physics-based forces, simulating attraction, repulsion, and link constraints to create an intuitive, collision-free network visualization. category: layout -layers: [svg, canvas] +layers: [svg, canvas, html] related: [Dodge] --- diff --git a/docs/src/examples/components/Dodge/bank-failures.svelte b/docs/src/examples/components/Dodge/bank-failures.svelte new file mode 100644 index 000000000..2cb6fcf5f --- /dev/null +++ b/docs/src/examples/components/Dodge/bank-failures.svelte @@ -0,0 +1,81 @@ + + + + + d.getUTCFullYear().toString() }} +> + {#snippet marks({ context })} + + {#snippet children({ items })} + {#each items as { data: bank, x, y, r, index } (index)} + context.tooltip.show(e, bank)} + onpointerleave={context.tooltip.hide} + /> + {#if bank.assets >= labelThreshold} + + {/if} + {/each} + {/snippet} + + {/snippet} + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {titleCase(data.name)} + + + + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/components/Dodge/tech-layoffs.svelte b/docs/src/examples/components/Dodge/tech-layoffs.svelte new file mode 100644 index 000000000..53a1f3de5 --- /dev/null +++ b/docs/src/examples/components/Dodge/tech-layoffs.svelte @@ -0,0 +1,82 @@ + + + + + + {#snippet marks({ context })} + + {#snippet children({ items })} + {#each items as { data: layoff, x, y, r, index } (index)} + context.tooltip.show(e, layoff)} + onpointerleave={context.tooltip.hide} + /> + {/each} + {#each items.filter((d) => d.data.totalLaidOff >= labelThreshold) as { data: layoff, x, y, r, index } (index)} + + {/each} + {/snippet} + + {/snippet} + + {#snippet tooltip({ context })} + + {#snippet children({ data })} + {data.company} + + + + {#if data.percentageLaidOff != null} + + {/if} + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/components/ForceSimulation/games-industry-layoffs.svelte b/docs/src/examples/components/ForceSimulation/games-industry-layoffs.svelte new file mode 100644 index 000000000..10ecd70ef --- /dev/null +++ b/docs/src/examples/components/ForceSimulation/games-industry-layoffs.svelte @@ -0,0 +1,106 @@ + + + + + + {#snippet children({ context })} + + d.getUTCFullYear().toString()} /> + context.xGet(asAny(d))), + y: yForce.y(context.height / 2), + collide: collideForce + }} + data={{ nodes }} + > + {#snippet children({ nodes })} + {#each nodes as node, index (index)} + {@const year = node.date.getUTCFullYear()} + {@const color = + node.headcount == null ? unknownColor : (yearColor[year] ?? unknownColor)} + context.tooltip.show(e, node)} + onpointerleave={context.tooltip.hide} + /> + {/each} + {#each nodes.filter((n) => n.headcount != null && n.headcount >= labelThreshold) as node, index (index)} + + {/each} + {/snippet} + + + + + {#snippet children({ data })} + {data.studio} + + + {#if data.headcount != null} + + {:else} + + {/if} + {#if data.parent} + + {/if} + {#if data.type} + + {/if} + + {/snippet} + + {/snippet} + diff --git a/docs/src/examples/components/ForceSimulation/layoffs-by-industry.svelte b/docs/src/examples/components/ForceSimulation/layoffs-by-industry.svelte new file mode 100644 index 000000000..b8071584a --- /dev/null +++ b/docs/src/examples/components/ForceSimulation/layoffs-by-industry.svelte @@ -0,0 +1,144 @@ + + + + +
+ + + All years + Split by year + + +
+ + + {#snippet children({ context })} + {@const xBandwidth = context.xScale.bandwidth?.() ?? 0} + {@const yBandwidth = context.yScale.bandwidth?.() ?? 0} + + + + {#if splitByYear} + + {/if} + + context.xGet(asAny(d)) + xBandwidth / 2), + // Use the chart's yScale directly so axis labels and bubble + // positions stay in lockstep regardless of band domain order. + y: yForce.y((d) => + splitByYear ? Number(context.yGet(asAny(d))) + yBandwidth / 2 : context.height / 2 + ), + collide: collideForce.radius((d) => Number(context.rGet(asAny(d))) + 1) + }} + data={{ nodes: data as Node[] }} + bind:alpha + > + {#snippet children({ nodes })} + {#each nodes as node, index (index)} + context.tooltip.show(e, node)} + onpointerleave={context.tooltip.hide} + /> + {/each} + {/snippet} + + + + + {#snippet children({ data })} + {data.company} + + + + + + + {/snippet} + + {/snippet} + diff --git a/docs/src/lib/data.remote.ts b/docs/src/lib/data.remote.ts index dd46f68b8..c65df3af8 100644 --- a/docs/src/lib/data.remote.ts +++ b/docs/src/lib/data.remote.ts @@ -328,6 +328,104 @@ export const getCountries2020 = prerender(async () => { ); }); +export type BankFailure = { + name: string; + failDate: Date; + assets: number; // in $thousands (FDIC reporting unit) + deposits: number; + city: string; + state: string; + cost: number | null; + type: string; +}; + +export const getBankFailures = prerender(async () => { + const { fetch } = getRequestEvent(); + const text = await fetch('/data/examples/bank-failures.csv').then((r) => r.text()); + const rows = csvParse(text) as Array>; + return rows + .map((d): BankFailure => { + const [m, day, y] = d.FAILDATE.split('/').map((s) => Number(s)); + return { + name: d.NAME, + failDate: new Date(Date.UTC(y, m - 1, day)), + assets: Number(d.QBFASSET) || 0, + deposits: Number(d.QBFDEP) || 0, + city: d.CITY, + state: d.PSTALP, + cost: d.COST ? Number(d.COST) : null, + type: d.RESTYPE + }; + }) + .filter((d) => Number.isFinite(d.failDate.getTime()) && d.assets > 0); +}); + +export type Layoff = { + company: string; + location: string; + totalLaidOff: number | null; + date: Date; + percentageLaidOff: number | null; + industry: string; + stage: string; + fundsRaised: number | null; + country: string; +}; + +export const getLayoffs = prerender(async () => { + const { fetch } = getRequestEvent(); + const text = await fetch('/data/examples/layoffs.csv').then((r) => r.text()); + const rows = csvParse(text) as Array>; + return rows + .map((d): Layoff | null => { + if (!d.date) return null; + const [m, day, y] = d.date.split('/').map((s) => Number(s)); + if (!y) return null; + return { + company: d.company, + location: d.location, + totalLaidOff: d.total_laid_off ? Number(d.total_laid_off) : null, + date: new Date(Date.UTC(y, m - 1, day)), + percentageLaidOff: d.percentage_laid_off ? Number(d.percentage_laid_off) : null, + industry: d.industry, + stage: d.stage, + fundsRaised: d.funds_raised ? Number(d.funds_raised) : null, + country: d.country + }; + }) + .filter((d): d is Layoff => d !== null); +}); + +export type GamesLayoff = { + studio: string; + date: Date; + headcount: number | null; + parent: string; + type: string; + studioLocation: string; + parentLocation: string; +}; + +export const getGamesLayoffs = prerender(async () => { + const { fetch } = getRequestEvent(); + const text = await fetch('/data/examples/games-layoffs.csv').then((r) => r.text()); + const rows = csvParse(text) as Array>; + return rows + .map((d): GamesLayoff | null => { + if (!d.Date) return null; + return { + studio: d.Studio, + date: new Date(d.Date), + headcount: d.Headcount ? Number(d.Headcount) : null, + parent: d.Parent, + type: d.Type, + studioLocation: d['Studio Location'], + parentLocation: d['Parent Location'] + }; + }) + .filter((d): d is GamesLayoff => d !== null && Number.isFinite(d.date.getTime())); +}); + export const getForceGroupDots = prerender(async () => { const { fetch } = getRequestEvent(); const data = (await fetch('/data/examples/force-group-dots.json').then((r) => r.json())) as { diff --git a/docs/static/data/examples/bank-failures.csv b/docs/static/data/examples/bank-failures.csv new file mode 100644 index 000000000..91cba37ad --- /dev/null +++ b/docs/static/data/examples/bank-failures.csv @@ -0,0 +1,4115 @@ +NAME,FAILDATE,QBFASSET,QBFDEP,CITY,PSTALP,COST,RESTYPE +FON DU LAC STATE BANK,5/28/1934,374,238,EAST PEORIA,IL,,FAILURE +CLIFFSIDE PARK TITLE GUARANTEE & TRUST CO.,1/3/1935,2305,590,GRANTWOOD,NJ,,FAILURE +THE CUMMINGS STATE BANK,12/21/1936,,30,CUMMINGS,ND,,FAILURE +BANK OF TAYLOR,5/31/1985,14542,13360,TAYLOR,NE,1653,FAILURE +FAIRFIELD STATE BANK,5/31/1985,6795,6034,FAIRFIELD,NE,1656,FAILURE +SECURITY STATE BANK,5/31/1985,6570,6072,EDGAR,NE,1118,FAILURE +SCROGGIN & COMPANY BANK,5/31/1985,3552,3219,OAK,NE,165,FAILURE +CENTRAL S&LA,5/31/1985,2308903,1680711,SAN DIEGO,CA,327146,ASSISTANCE +SOUTHERN CALIFORNIA S&LA,6/6/1985,1492644,1263750,BEVERLY HILLS,CA,223825,ASSISTANCE +COMMUNITY FS&LA,6/7/1985,22747,18798,NASHVILLE,TN,3638,FAILURE +MAGNOLIA FS&LA,6/7/1985,4816,3649,KNOXVILLE,TN,1529,FAILURE +AMERICAN NATIONAL BANK OF RIVERTON,6/11/1985,37937,39595,RIVERTON,WY,10568,FAILURE +THE FIRST STATE BANK,6/13/1985,8325,8119,EDNA,KS,2827,FAILURE +RESERVATION STATE BANK,12/21/1936,,78,MAKOTI,ND,,FAILURE +SWIFT COUNTY BANK,6/14/1985,41598,38007,BENSON,MN,8386,FAILURE +STRONG'S BANK,6/14/1985,30733,28240,DODGEVILLE,WI,2,FAILURE +FARMERS STATE BANK OF DEXTER,6/20/1985,4267,4166,DEXTER,KS,1280,FAILURE +"FIRST CITY BANK, N.A.",6/21/1985,97808,92708,OKLAHOMA CITY,OK,32615,FAILURE +URBANA SAVINGS BANK,6/21/1985,7158,6325,URBANA,IA,810,FAILURE +GOLDEN PACIFIC NATIONAL BANK,6/21/1985,146254,131418,NEW YORK,NY,0,FAILURE +EUREKA FS&LA,6/21/1985,1570628,1364360,SAN CARLOS,CA,453308,ASSISTANCE +"SUN BELT FEDERAL BANK, FSB",6/25/1985,278335,269111,LAKE PROVIDENCE,LA,156154,FAILURE +NEW ORLEANS S&LA,6/25/1985,118050,105339,NEW ORLEANS,LA,73507,FAILURE +AUDUBON S&LA,6/25/1985,211301,222109,NEW ORLEANS,LA,166227,FAILURE +FIRST STATE BANK OF MAX,12/21/1936,,100,MAX,ND,,FAILURE +COMMUNITY FS&LA,6/25/1985,47936,46831,BATON ROUGE,LA,29713,FAILURE +NORTHLAKE S&LA,6/25/1985,141383,148074,COVINGTON,LA,89333,FAILURE +CRESCENT SAVINGS BANK,6/25/1985,89114,83950,NEW ORLEANS,LA,53664,FAILURE +CENTURY SA,6/26/1985,91832,44968,SHAWNEE MSN,KS,16154,ASSISTANCE +FIRST BANK & TRUST,6/28/1985,21123,19718,TRACY CITY,TN,2912,FAILURE +CITIZENS S&LA,7/1/1985,18387,13257,BATESVILLE,MS,4110,ASSISTANCE +MADISON BANK,7/2/1985,8392,7739,MADISON,KS,2479,FAILURE +THE FIRST NATIONAL BANK OF JACKSONVILLE,7/5/1985,43290,39643,JACKSONVILLE,AL,9086,FAILURE +CROSSROADS STATE BANK,7/11/1985,17776,17101,OKLAHOMA CITY,OK,6920,FAILURE +THE FIRST NATIONAL BANK OF DAROUZZET,7/18/1985,18213,11388,DARROUZETT,TX,4130,FAILURE +FIRST STATE BANK OF POWERS LAKE,12/21/1936,,76,POWERS LAKE,ND,,FAILURE +ESKRIDGE STATE BANK,7/18/1985,10137,9435,ESKRIDGE,KS,5324,FAILURE +"SUNRISE, S&LA",7/18/1985,1516512,1498748,LAKE WORTH,FL,419225,FAILURE +LINN COUNTY BANK,7/19/1985,5381,5301,LINNEUS,MO,2214,FAILURE +GILPIN COUNTY BANK,7/19/1985,3861,3481,BLACK HAWK,CO,1330,FAILURE +FLUSHING FS&LA,7/19/1985,527685,524880,FLUSHING,NY,22906,ASSISTANCE +THE FIRST NATIONAL BANK OF ONAGA,7/23/1985,22379,22259,ONAGA,KS,2229,FAILURE +FIRST NATIONAL BANK OF GLENROCK,7/23/1985,18686,16463,GLENROCK,WY,4459,FAILURE +CITIZENS STATE BANK OF EL DORADO,7/25/1985,31185,29527,EL DORADO,KS,1455,FAILURE +KANSAS AMERICAN BANK,7/25/1985,25707,23888,OVERLAND PARK,KS,6351,FAILURE +BELL S&LA,7/25/1985,1635150,1312477,SAN MATEO,CA,829701,ASSISTANCE +BANK OF HOUGHTON,1/12/1937,82,50,HOUGHTON,SD,,FAILURE +RIVERSIDE NATIONAL BANK OF HOUSTON,8/1/1985,18365,17158,HOUSTON,TX,3568,FAILURE +WESTERN HERITAGE FS&LA,8/1/1985,175148,134017,PENDLETON,OR,8800,ASSISTANCE +FARMERS STATE BANK OF ROUND LAKE,8/2/1985,23210,20903,ROUND LAKE,MN,7462,FAILURE +FARMERS STATE BANK,8/2/1985,12845,11929,RISING CITY,NE,320,FAILURE +BELL SAVINGS BANC,8/2/1985,185009,288045,TEMPLE,TX,177863,FAILURE +MINEOLA STATE BANK,8/6/1985,5205,4928,MINEOLA,IA,213,FAILURE +BUTTERFIELD S&LA,8/7/1985,708261,768317,SANTA ANA,CA,371337,ASSISTANCE +SECURITY BANK & TRUST COMPANY,8/8/1985,34976,33426,MIDWEST CITY,OK,6913,FAILURE +STATE BANK OF FARMERSVILLE,8/9/1985,11984,12118,FARMERSVILLE,IL,2181,FAILURE +SIERRA FS&LA,8/9/1985,48363,81482,DENVER,CO,56310,FAILURE +SARGENT COUNTY BANK,1/14/1937,,154,FORMAN,ND,,FAILURE +STATE BANK OF HERNDON,8/14/1985,6237,5758,HERNDON,KS,1571,FAILURE +"PARK WEST BANK, N.A.",8/15/1985,20544,18232,FARMERS BRANCH,TX,5328,FAILURE +THE COMMERCIAL BANK,8/16/1985,77816,76446,ANDALUSIA,AL,0,ASSISTANCE +MONTANA S&LA,8/16/1985,26949,30360,KALISPELL,MT,12908,FAILURE +CENTENNIAL S&LA,8/20/1985,368163,367831,GUERNEVILLE,CA,148930,FAILURE +THE BANK OF BRONSON,8/23/1985,9604,9294,BRONSON,KS,3042,FAILURE +ALLIANCE FS&LA,8/23/1985,188137,133989,KENNER,LA,147947,FAILURE +CARDWELL STATE BANK,8/28/1985,6206,5664,CARDWELL,MO,868,FAILURE +MISSOURI DELTA BANK,8/28/1985,9116,8112,HAYTI,MO,1367,FAILURE +PRESIDIO S&LA,8/28/1985,284494,244890,PORTERVILLE,CA,96609,FAILURE +FARMERS BANK OF TRENTON,2/10/1937,335,323,TRENTON,MO,,FAILURE +"MONCOR BANK, N.A.",8/30/1985,229302,220340,HOBBS,NM,54020,FAILURE +WESTSIDE FS&LA,8/30/1985,378366,325085,SEATTLE,WA,100841,FAILURE +CITIZENS FS&LA,9/3/1985,133824,133506,MATTESON,IL,3000,ASSISTANCE +THE BANK OF LORETTO,9/4/1985,25637,24782,LORETTO,TN,3933,FAILURE +BANK OF CLIFTON,9/6/1985,10887,9839,CLIFTON,CO,2748,FAILURE +HEIGHTS SAVINGS ASSOCIATION,9/6/1985,436548,422018,HOUSTON,TX,738898,ASSISTANCE +FIRST SECURITY BANK OF DICKSON,9/12/1985,14785,14259,DICKSON,TN,1830,FAILURE +"MONCOR BANK, N.A.",9/12/1985,33293,32901,ROSWELL,NM,10629,FAILURE +THE FIRST NATIONAL BANK OF ROCKLAND,9/13/1985,29482,25309,RAMAPO,NY,0,FAILURE +ELBA STATE BANK,9/18/1985,4735,4217,ELBA,NE,657,FAILURE +FARMERS STATE BANK,2/18/1937,205,164,CORSICA,SD,,FAILURE +GLEN ELLYN S&LA,9/20/1985,122108,101105,GLEN ELLYN,IL,18485,ASSISTANCE +THE SEDAN STATE BANK,9/25/1985,28153,26586,SEDAN,KS,8340,FAILURE +THE FIRST NATIONLAL BANK IN TERRAL,9/27/1985,4063,3948,TERRAL,OK,1723,FAILURE +WESTERN STATE BANK,9/27/1985,27831,23678,DENTON,TX,8021,FAILURE +FAMILY FS&LA,9/27/1985,57071,71193,SPRINGFIELD,VA,776,ASSISTANCE +GOLDEN PACIFIC S&LA,9/27/1985,45574,46160,WINDSOR,CA,6070,ASSISTANCE +BOWERY SAVINGS BANK,10/1/1985,5277472,5001932,NEW YORK,NY,334542,ASSISTANCE +BATON ROUGE S&LA,10/1/1985,116047,93265,BATON ROUGE,LA,5250,ASSISTANCE +SECURITY FS&LA,10/1/1985,169057,167698,ALBERQUERQUE,NM,19536,ASSISTANCE +"TOWER BANK, N.A.",10/3/1985,20523,19722,HIALEAH GARDENS,FL,2699,FAILURE +AKASKA STATE BANK,2/18/1937,92,62,AKASKA,SD,,FAILURE +SUN S&LA,10/4/1985,231947,177079,PORTLAND,ME,17500,ASSISTANCE +BANK OF CANTON,10/10/1985,22438,20609,CANTON,OK,8576,FAILURE +SARATOGA STATE BANK,10/11/1985,18470,16300,SARATOGA,WY,4260,FAILURE +THE FIRST NATIONAL BANK OF ST. JOSEPH,10/11/1985,193485,175895,ST. JOSEPH,MO,27105,FAILURE +FARMERS STATE BANK IN AFTON,10/17/1985,10794,9905,AFTON,OK,2763,FAILURE +FARMERS STATE BANK OF KANARANZI,10/18/1985,3907,3823,KANARANZI,MN,997,FAILURE +FIRST STATE BANK,10/18/1985,12344,11495,JET,OK,5621,FAILURE +THE CITIZENS BANK,10/18/1985,93459,85512,OGDEN,UT,33895,FAILURE +THE EARLY BANK,10/18/1985,15846,15130,EARLY,TX,3103,FAILURE +FARMERS SAVINGS BANK,10/18/1985,590288,526353,DAVIS,CA,137801,FAILURE +THE CITIZENS STATE BANK OF LEBANON,2/20/1937,154,112,LEBANON,SD,,FAILURE +SECURITY TRUST S&LA,10/28/1985,28792,27192,OAKRIDGE,TN,10399,ASSISTANCE +EARLY SAVINGS BANK,11/1/1985,12890,11935,EARLY,IA,1192,FAILURE +YELLOWSTONE STATE BANK,11/1/1985,18676,20774,LANDER,WY,12300,FAILURE +THE AURORA BANK,11/1/1985,16567,15214,AURORA,CO,7453,FAILURE +LEWIS FS&LA,11/1/1985,51877,52397,CHEHALIS,WA,1763,ASSISTANCE +AUBURN SAVINGS BANK,11/8/1985,6833,6647,AUBURN,IA,714,FAILURE +NORTHSHORE BANK,11/8/1985,47187,43341,HOUSTON,TX,12162,FAILURE +FIRST NATIONAL BANK OF TEAGUE,11/14/1985,31995,29155,TEAGUE,TX,7904,FAILURE +THE DILL STATE BANK,11/21/1985,15459,14289,DILL CITY,OK,6907,FAILURE +DECATAUR COUNTY NATIONAL BANK OF OBERLIN,11/21/1985,18362,16786,OBERLIN,KS,3983,FAILURE +THE NATIONAL BANK OF HERNDON,1/9/1935,387,384,HERNDON,VA,,FAILURE +THE FIRST NATIONAL BANK OF ISMAY,2/20/1937,,83,ISMAY,MT,,FAILURE +THE CLARKSDALE BANK OF CLARKDALE,11/21/1985,6167,5847,CLARKSDALE,MO,1955,FAILURE +THE FARMERS AND MERCHANTS STATE BANK OF RU,11/21/1985,32647,28914,LA CROSSE,KS,10042,FAILURE +CHESTER STATE BANK,11/22/1985,11722,10979,CHESTER,TX,2088,FAILURE +ALLEN COUNTY BANK AND TRUST COMPANY,11/22/1985,10907,10524,LEO,IN,0,FAILURE +CALIFORNIA HERITAGE BANK,11/22/1985,24114,22397,SAN DIEGO,CA,3229,FAILURE +HI-PLAINS S&LA,11/25/1985,114611,100507,HEREFORD,TX,112620,ASSISTANCE +USM (U.S. MUTUAL) S&LA,11/26/1985,306069,286973,ANN ARBOR,MI,31089,FAILURE +CITIZENS FS&LA,12/1/1985,461380,353209,SEATTLE,WA,18018,ASSISTANCE +HOME FS&LA,12/2/1985,115303,117130,SIOUX CITY,IA,10000,ASSISTANCE +MIDLAND FS&LA,12/2/1985,37978,40926,MOORHEAD,MN,48882,ASSISTANCE +RIO STATE BANK,3/26/1937,384,329,RIO,IL,,FAILURE +HOME FS&LA,12/2/1985,106672,106091,PADUCAH,KY,21238,ASSISTANCE +CITIZENS S&LA,12/4/1985,239709,153498,SALEM,OR,85218,FAILURE +SECURITY STATE BANK,12/5/1985,8040,7550,BROKEN BOW,NE,1646,FAILURE +THE FARMERS AND MERCHANTS NATIONAL BANK OF,12/5/1985,28684,27452,HENNESSY,OK,5501,FAILURE +GUARANTY S&LA,12/6/1985,451432,316527,HARRISON,AR,64079,FAILURE +STATE FS&LA,12/6/1985,563862,443856,CORVALLIS,OR,249036,FAILURE +"THE FARMERS STATE BANK OF BARRY COUNTY, EX",12/13/1985,4203,4079,EXETER,MO,1236,FAILURE +THE FIRST NATIONAL BANK IN LINCOLN COUNTY,12/13/1985,32024,30697,RUIDOSO,NM,16664,FAILURE +LAKE NATIONAL BANK,12/13/1985,19795,19130,LAKE OZARK,MO,2090,FAILURE +PRINCETON STATE BANK,12/19/1985,18366,16809,PRINCETON,MO,5818,FAILURE +FIRST INTERNATIONAL BANK,4/3/1937,192,139,NOONAN,ND,,FAILURE +FARMERS & MERCHANTS BANK,12/19/1985,3324,3180,COMSTOCK,NE,785,FAILURE +FARMERS STATE BANK,12/19/1985,12474,11321,SARGENT,NE,1573,FAILURE +BANK OF PANAMA,12/19/1985,4376,4281,PANAMA,NE,1416,FAILURE +STATE BANK OF FROST,12/20/1985,7736,6603,FROST,MN,2031,FAILURE +FIRST CITY BANK,12/20/1985,35813,28772,GLENDALE,CA,5899,FAILURE +BROWNFIELD S&LA,12/20/1985,64709,59940,BROWNFIELD,TX,10973,ASSISTANCE +STATE S&LA OF LUBBOCK,12/20/1985,841612,815045,LUBBOCK,TX,1148063,ASSISTANCE +HOME SAVINGS BANK,12/31/1985,413948,405013,WHITE PLAINS,NY,5723,ASSISTANCE +SUN FS&LA,12/31/1985,367489,341031,TALAHASSEE,FL,12854,ASSISTANCE +FIRST FS&LA,1/2/1986,52751,55689,ASHTABULA,OH,,ASSISTANCE +TEXAS STATE BANK AND TRUST COMPANY,4/8/1937,628,419,CORPUS CHRISTI,TX,,FAILURE +THE FIRST NATIONAL BANK OF WHITE CITY,1/9/1986,9607,9239,WHITE CITY,KS,3408,FAILURE +FIRST STATE BANK,1/9/1986,20725,18897,CACHE,OK,4108,FAILURE +MANHATTAN BEACH S&LA,1/9/1986,51119,49569,MANHATTAN BEACH,CA,23812,FAILURE +BANK OF DIXIE,1/10/1986,41444,36452,LAKE PROVIDENCE,LA,13622,FAILURE +FIRST PROGRESSIVE BANK,1/17/1986,39362,37908,METAIRIE,LA,15563,FAILURE +AMERICAN BANK OF CASPER,1/17/1986,20489,18905,CASPER,WY,7066,FAILURE +UTAH FIRSTBANK,1/24/1986,38492,39601,SALT LAKE CITY,UT,10297,FAILURE +PIONEER STATE BANK,1/24/1986,11698,10893,SALT LAKE CITY,UT,537,FAILURE +BOHEMIAN S&LA,1/30/1986,242394,220643,ST. LOUIS,MO,100781,FAILURE +GREAT WEST S&LA,1/31/1986,52115,52223,LAS VEGAS,NV,3,ASSISTANCE +FIRST STATE BANK,4/12/1937,719,720,ARLINGTON,TX,,FAILURE +THE PEOPLES NATIONAL BANK & TRUST,2/6/1986,51966,49408,ALBIA,IA,13438,FAILURE +JOHNSON COUNTY BANK,2/7/1986,20173,19384,TECUMSEH,NE,4818,FAILURE +VALENCIA BANK,2/7/1986,101081,99181,PLACENTIA,CA,0,FAILURE +CORONADO FS&LA,2/7/1986,12728,13559,KANSAS CITY,KS,24,ASSISTANCE +MT. WHITNEY S&LA,2/12/1986,81642,83873,EXETER,CA,29755,FAILURE +FIRST NATIONAL BANK OF TIPTON,2/14/1986,17896,18008,TIPTON,IA,665,FAILURE +PARK BANK OF FLORIDA,2/14/1986,591667,577791,ST. PETERSBURG,FL,134893,FAILURE +"EXECUTIVE CENTER BANK, N.A.",2/14/1986,9911,9608,DALLAS,TX,3208,FAILURE +AMERICAN DIVERSIFIED SAVINGS BANK,2/14/1986,978635,958953,COSTA MESA,CA,743908,FAILURE +INTERCAPITAL S&LA,2/14/1986,65233,70825,JACKSONVILLE BEACH,FL,33410,FAILURE +ROBBINS BANK & TRUST COMPANY,4/15/1937,,29,ROBBINS,TN,,FAILURE +FIRST NATIONAL BANK AT DOUGLAS,2/21/1986,14020,14260,DOUGLAS,WY,4103,FAILURE +ELK CITY STATE BANK,2/21/1986,22159,21408,ELK CITY,OK,7862,FAILURE +CAPITOL S&LA,2/21/1986,192018,180527,MOUNT PLEASANT,IA,98990,FAILURE +THE FIRST NATIONAL BANK OF GORMAN,2/27/1986,14486,13623,GORMAN,TX,5669,FAILURE +THE FIRST NATIONAL BANK OF TEKAMAH,3/6/1986,21166,20228,TEKAMAH,NE,2204,FAILURE +THE CITY NATIONAL BANK OF PLAINVIEW,3/6/1986,48357,49606,PLAINVIEW,TX,1632,FAILURE +THE CITIZENS BANK OF WINIGAN,3/7/1986,6534,6209,WINIGAN,MO,1270,FAILURE +FARMERS & MERCHANTS ST BK OF LAMBERTON,3/14/1986,17139,16196,LAMBERTON,MN,3611,FAILURE +MERCURY S&LA OF TEXAS,3/14/1986,664049,601823,WICHITA FALLS,TX,578793,ASSISTANCE +BEN MILAM S&LA,3/14/1986,306041,279080,CAMERON,TX,348177,ASSISTANCE +BANK OF EUREKA,4/23/1937,70,57,EUREKA,MO,,FAILURE +WILLIAMS SAVINGS BANK,3/20/1986,12847,11746,WILLIAMS,IA,359,FAILURE +FIRST FS&LA OF REDDING,3/20/1986,39642,41214,REDDING,CA,-223,ASSISTANCE +HACIENDA FS&LA,3/20/1986,34456,15545,OXNARD,CA,-185,ASSISTANCE +GUARANTY S&LA,3/21/1986,22341,13877,LONGVIEW,WA,3428,FAILURE +STOCKHOLM STATE BANK,3/27/1986,7154,6644,STOCKHOLM,SD,991,FAILURE +FIRST STATE BANK,3/27/1986,17008,16307,MEMPHIS,TX,4708,FAILURE +FIRST STATE BANK,3/27/1986,6083,5597,WHITE CLOUD,KS,1399,FAILURE +WESTWOOD S&LA,3/27/1986,583179,550570,LOS ANGELES,CA,,FAILURE +FARMERS & MERCHANTS BANK OF HUNTSVILLE,3/28/1986,16603,17590,HUNTSVILLE,MO,4718,FAILURE +FAMILY BANK,3/28/1986,27979,24673,OGDEN,UT,2764,FAILURE +WHITEWOOD BANKING COMPANY,4/29/1937,124,88,WHITEWOOD,SD,,FAILURE +"UNITED BANK, SSB",3/28/1986,590234,489667,SAN FRANCISCO,CA,51973,ASSISTANCE +INDUSTRIAL NATIONAL BANK OF EAST CHICAGO,4/3/1986,8387,8146,EAST CHICAGO,IN,1180,FAILURE +EDDY COUNTY NATIONAL BANK,4/3/1986,30352,26541,CARLSBAD,NM,10919,FAILURE +MAINLAND S&LA,4/4/1986,1003281,873609,HOUSTON,TX,1124399,FAILURE +THE NATIONAL BANK,4/10/1986,43038,39806,DYERSVILLE,IA,11234,FAILURE +THE PEOPLES BANK OF MERCER,4/10/1986,10412,10456,MERCER,MO,1987,FAILURE +THE FIRST NATIONAL BANK OF RUSTON,4/10/1986,31539,31047,RUSTON,LA,2287,FAILURE +CENTER NATIONAL BANK,4/11/1986,47721,45728,LOS ANGELES,CA,10939,FAILURE +FIRST AMERICAN S&LA,4/14/1986,80596,73477,BENTON,IL,25478,ASSISTANCE +COLUMBUS S&LA,4/14/1986,271460,295030,SAN RAFAEL,CA,117355,ASSISTANCE +ST. ONGE STATE BANK,4/30/1937,81,61,ST. ONGE,SD,,FAILURE +GATEWAY SB,4/14/1986,155852,166948,SAN FRANCISCO,CA,,FAILURE +THE TALMAGE STATE BANK,4/16/1986,9258,8883,TALMAGE,KS,1530,ASSISTANCE +SUMMIT S&LA,4/16/1986,210684,180733,PARK CITY,UT,46076,FAILURE +FLORIDA CENTER BANK,4/18/1986,78891,72235,ORLANDO,FL,14758,FAILURE +UNION COUNTY BANK,4/22/1986,32902,30436,MAYNARDVILLE,TN,3473,FAILURE +THE FIRST NATIONAL BANK OF BANDERA,4/24/1986,15541,15062,BANDERA,TX,2459,FAILURE +FIRST NATIONAL BANK OF IRVING,4/24/1986,38462,37809,IRVING,TX,5247,FAILURE +WASHINGTON FIRST FS&LA,4/30/1986,57463,60092,ST. LOUIS,MO,1,ASSISTANCE +THE FIRST NATIONAL BANK OF CARTER,5/1/1986,7344,6714,CARTER,OK,1508,FAILURE +THE BEDFORD NATIONAL BANK,5/1/1986,19323,18365,BEDFORD,IA,4648,FAILURE +THE CITIZENS BANK,5/1/1937,157,141,BUCKLIN,MO,,FAILURE +BANK OF NORTONVILLE,5/1/1986,7249,6472,NORTONVILLE,KS,2473,FAILURE +BANK OF COMMERCE & TRUST COMPANY,5/8/1986,182653,154279,TULSA,OK,52895,FAILURE +FIRST BANK & TRUST OF IDAHO,5/9/1986,55867,51885,MALAD CITY,ID,17244,FAILURE +RAINSVILLE BANK,5/9/1986,17489,16081,RAINSVILLE,AL,566,FAILURE +THE CITIZENS STATE BANK OF ST. FRANCIS,5/15/1986,24189,22073,ST. FRANCIS,KS,8430,FAILURE +SADDLEBACK NATIONAL BANK,5/15/1986,13454,13112,LAGUNA HILLS,CA,3937,FAILURE +CONSOLIDATED SAVINGS BANK,5/22/1986,84370,78422,IRVINE,CA,36074,FAILURE +FIRST STATE BANK & TRUST COMPANY,5/23/1986,137947,136979,EDINBURG,TX,21671,FAILURE +SUNSHINE STATE BANK,5/23/1986,109404,103092,SOUTH MIAMI,FL,58532,FAILURE +CENTENNIAL STATE BANK OF COLORADO,5/23/1986,20357,20210,ENGLEWOOD,CO,2050,FAILURE +PALMETTO STATE BANK,3/9/1935,149,136,LAKE CITY,SC,,FAILURE +FARMERS & MERCHANTS TRUST BANK,5/22/1937,,844,CAPE CHARLES,VA,,FAILURE +ROSELAND STATE BANK,5/28/1986,12020,11237,ROSELAND,NE,662,FAILURE +THE FIRST NATIONAL BK & TR CO. OF NORMAN,5/29/1986,73170,75727,NORMAN,OK,28732,FAILURE +"THE LONE ROCK BANK, N.A.",5/29/1986,7462,7165,LONE ROCK,IA,2200,FAILURE +BANK OF COLUMBIA FALLS,5/30/1986,41470,39228,COLUMBIA FALLS,MT,18393,FAILURE +"BANCO DE AHORRO, F.S.B.",5/30/1986,33961,30021,MAYAGUEZ,PR,6985,FAILURE +SEAPOINTE S&LA,5/31/1986,17343,37882,CARLSBAD,CA,36562,FAILURE +THE CITIZENS ST BANK OF MCCRACKEN,6/5/1986,11396,10691,MCCRACKEN,KS,6008,FAILURE +SECURITY BANK OF GLENROCK,6/6/1986,5993,5619,GLENROCK,WY,2314,FAILURE +FIRST OF MONTGOMERY COUNTY,6/6/1986,14512,15468,BLACKSBURG,VA,3259,ASSISTANCE +MOUNTAIN SECURITY SB,6/6/1986,125326,114335,WYTHEVILLE,VA,18928,ASSISTANCE +THE FARMERS NATIONAL BANK OF GRAYVILLE,5/27/1937,,258,GRAYVILLE,IL,,FAILURE +"PETROBANK, N.A.",6/12/1986,35455,34624,HOUSTON,TX,12647,FAILURE +BOSSIER BANK & TRUST COMPANY,6/13/1986,215830,201871,BOSSIER CITY,LA,86182,FAILURE +THE BANK OF COMMERCE,6/13/1986,75430,74262,SHREVEPORT,LA,27805,FAILURE +THE FIRST NATIONAL BANK OF CHANUTE,6/19/1986,45414,46636,CHANUTE,KS,9549,FAILURE +FIRST NATIONAL BANK OF BORGER,6/19/1986,80113,75196,BORGER,TX,29463,FAILURE +THE AMERICAN BANK,6/20/1986,40024,36175,ALMA,WI,3258,FAILURE +UNION DEPOSIT BANK,6/26/1986,5766,4998,UNION,KY,1256,FAILURE +CONTINENTAL NATIONAL BANK OF KENTUCKY,6/26/1986,10088,10188,LOUISVILLE,KY,405,FAILURE +COMMERCIAL STATE BANK,6/27/1986,47880,42878,POCAHONTAS,IA,9936,FAILURE +THE HOME STATE BANK,6/27/1986,9157,8968,ROCHESTER,TX,3135,FAILURE +CARROLL EXCHANGE BANK,5/29/1937,,787,CARROLLTON,MO,,FAILURE +ORANGE COAST THRIFT & LOAN ASSOCIATION,6/27/1986,13966,12330,LOS ALAMITOS,CA,5352,FAILURE +CITIZENS HOME SAVINGS COMPANY,6/27/1986,156119,168623,LORAIN,OH,138,ASSISTANCE +THE STATE S&L CO.,6/27/1986,381665,401807,EUCLID,OH,176,ASSISTANCE +NATIONAL BANK OF TEXAS,7/2/1986,33378,31725,AUSTIN,TX,14529,FAILURE +EQUITABLE FSB,7/9/1986,691489,645718,LANCASTER,OH,152257,ASSISTANCE +FARMERS STATE BANK OF CLARISSA,7/11/1986,17918,16791,CLARISSA,MN,7287,FAILURE +THE FIRST NAT BK & TR CO. OF OKLAHOMA,7/14/1986,1754157,1301346,OKLAHOMA CITY,OK,220721,FAILURE +ATLAS S&LA,7/14/1986,76393,85678,SAN FRANCISCO,CA,8547,ASSISTANCE +THE FIRST NATIONAL BANK OF SHERIDAN,7/17/1986,69334,63573,SHERIDAN,WY,5576,FAILURE +THE BANK OF KIOWA,7/17/1986,10924,11019,KIOWA,KS,5110,FAILURE +THE FIRST NATIONAL BANK OF MAHANOY CITY,6/5/1937,,2060,MAHANOY CITY,PA,,FAILURE +CALLAO COMMUNITY BANK,7/17/1986,5671,5652,CALLAO,MO,1011,FAILURE +FILLMORE COUNTY BANK,7/17/1986,11975,11175,GENEVA,NE,2362,FAILURE +NEW MEXICO NATIONAL BANK,7/17/1986,159298,149163,ALBUQUERQUE,NM,34266,FAILURE +FARMER'S BANK,7/18/1986,21445,20248,TRIMBLE,TN,7372,FAILURE +PERMIAN BANK,7/18/1986,41221,38366,ODESSA,TX,10434,FAILURE +SUN S&LA,7/18/1986,370935,334444,SAN DIEGO,CA,39820,ASSISTANCE +LINCOLN S&LA,7/23/1986,261702,230363,PORTLAND,OR,25235,ASSISTANCE +THE FIRST NATIONAL BANK OF PRAIRIE CITY,7/24/1986,18948,19248,PRAIRIE CITY,IA,1802,FAILURE +MCCUNE STATE BANK,7/24/1986,9134,8673,MCCUNE,KS,1713,FAILURE +THE BANK OF PARK COUNTY,7/25/1986,5950,5015,BAILEY,CO,0,FAILURE +COLOMA STATE BANK,6/14/1937,94,79,COLOMA,WI,,FAILURE +MOUNTAIN VALLEY BANK,7/25/1986,8054,7346,CONIFER,CO,580,FAILURE +CENTRAL ILLINOIS S&LA,7/25/1986,47585,58893,VIRDEN,IL,18680,FAILURE +MAJOR FEDERAL S&LA,7/25/1986,24999,21433,CINCINNATI,OH,8837,FAILURE +EDEN STATE BANK,7/31/1986,13340,13225,EDEN,TX,2513,FAILURE +FIRST NATIONAL BANK IN CORDELL,7/31/1986,23026,22814,CORDELL,OK,8763,FAILURE +THE GERING NATIONAL BANK & TRUST,7/31/1986,70213,70580,GERING,NE,19503,FAILURE +CITIZENS STATE BANK,7/31/1986,53963,53474,IOWA FALLS,IA,4832,FAILURE +NATIONAL PERMANENT BANK FSB,8/1/1986,1033795,738982,WASHINGTON,DC,52892,ASSISTANCE +THE FIRST NAT BANK & TRUST CO. OF EL RENO,8/7/1986,47182,44238,EL RENO,OK,15522,FAILURE +THE EASTON STATE BANK,8/7/1986,17197,17162,ESTON,KS,3740,FAILURE +THE ROMNEY BANK,6/15/1937,64,56,ROMNEY,IN,,FAILURE +FIRST CITIZENS BANK,8/7/1986,112668,105402,DALLAS,TX,16142,FAILURE +GRAETTINGER STATE BANK,8/7/1986,11828,11459,GRAETTINGER,IA,711,FAILURE +MEDICINE BOW STATE BANK,8/8/1986,4810,4207,MEDICINE BOW,WY,1585,FAILURE +PENINSULA FS&LA,8/8/1986,42622,41337,SOLDOTNA,AK,13423,FAILURE +THE STATE EXCHANGE BANK,8/14/1986,27813,26692,YATES CENTER,KS,7531,FAILURE +CITIZENS NATIONAL BANK & TRUST CO,8/14/1986,179081,183284,OKLAHOMA CITY,OK,55820,FAILURE +STATE BANK OF WESTPHALIA,8/15/1986,4830,4728,WESTPHALIA,KS,0,ASSISTANCE +MENDON STATE BANK,8/20/1986,18891,17590,MENDON,IL,8019,FAILURE +THE FIRST NATIONAL BANK IN RIFLE,8/21/1986,17588,17465,RIFLE,CO,3374,FAILURE +UNITED BANK OF MINNEAPOLIS,8/21/1986,22692,22069,MINNEAPOLIS,KS,2359,FAILURE +UNION STATE BANK AND TRUST COMPANY,6/16/1937,359,302,BRYAN,TX,,FAILURE +DANBURY BANK,8/21/1986,9358,9635,DANBURY,TX,2510,FAILURE +RESERVE S&LA,8/27/1986,21510,27141,WITCHITA,KS,8155,ASSISTANCE +METROPOLITAN FS&LA,8/27/1986,49772,49937,HIALEAH,FL,,FAILURE +BUENA VISTA BANK & TRUST COMPANY,8/28/1986,32769,30475,BUENA VISTA,CO,12192,FAILURE +ALBANY STATE BANK,8/28/1986,4676,4921,ALBANY,MO,2118,FAILURE +AMERICAN NATIONAL BANK OF EASTRIDGE,8/28/1986,4367,4055,CASPER,WY,1187,FAILURE +CITIZENS FS&LA,8/29/1986,434768,475182,CLEVELAND,OH,82655,ASSISTANCE +DOLLAR SAVINGS BANK,8/29/1986,334304,314651,COLUMBUS,OH,33121,ASSISTANCE +FIRST SA OF KILGORE,8/29/1986,21562,21784,KILGORE,TX,,ASSISTANCE +MID VALLEY BANK,8/30/1986,39139,39085,OMAK,WA,221,ASSISTANCE +THE FIRST NATIONAL BANK OF PUKWANA,6/16/1937,,127,PUKWANA,SD,,FAILURE +FAIRVIEW STATE BANK OF FAIRVIEW,9/4/1986,24000,23700,FAIRVIEW,OK,6515,FAILURE +WESTERN BANK,9/4/1986,77432,70599,MIDLAND,TX,27499,FAILURE +CENTRAL BANK & TRUST OF TULSA,9/10/1986,80147,71573,TULSA,OK,13412,FAILURE +DE VARGAS S&LA BANK,9/11/1986,19062,16530,SANTA FE,NM,3359,ASSISTANCE +RAMONA S&LA,9/12/1986,108085,95957,FILLMORE,CA,59454,FAILURE +WESTERN S&LA,9/12/1986,1960164,1806271,DALLAS,TX,2336791,FAILURE +TEXAS INDEPENDENCE BANK,9/18/1986,12252,11976,PASADENA,TX,3216,FAILURE +TEXAS BANK & TRUST COMPANY,9/19/1986,39250,35812,LUBBOCK,TX,11781,FAILURE +CAL AMERICA S&LA,9/19/1986,413015,367829,WALNUT CREEK,CA,166700,ASSISTANCE +THE HOME STATE BANK,9/25/1986,14718,13596,LA CROSSE,KS,5486,FAILURE +THE STATE BANK OF MARCELLUS,6/17/1937,95,64,MARCELLUS,MI,,FAILURE +HERITAGE NATIONAL BANK,9/25/1986,33112,29998,RICHARDSON,TX,14141,FAILURE +AMERICAN BANK & TRUST COMPANY,9/26/1986,210925,191717,LAFAYETTE,LA,65539,FAILURE +REPUBLIC SAVINGS BANK,10/1/1986,56847,60316,SOUTH BELOIT,IL,20282,ASSISTANCE +MISSOURI FARMERS BANK,10/2/1986,25963,25440,MOUND CITY,MO,7219,FAILURE +CENTURY NATIONAL BANK,10/2/1986,15522,13503,HOUSTON,TX,5250,FAILURE +FRONTIER NATIONAL BANK,10/2/1986,9913,10614,VISTA,CA,1716,FAILURE +COLUMBIA COMMUNITY BANK,10/3/1986,5257,4977,HERMISTON,OR,1044,FAILURE +INDEPENDENT NATIONAL BANK,10/9/1986,28334,27744,COVINA,CA,1401,FAILURE +HOMESTEAD S&LA,10/10/1986,134982,149213,WOODWARD,OK,103691,FAILURE +UNIFIED SAVINGS BANK,10/10/1986,102833,104759,NORTHRIDGE,CA,,FAILURE +HARDIN TRUST COMPANY,6/18/1937,259,225,HARDIN,MO,,FAILURE +VALLEY STATE BANK,10/17/1986,5008,4611,BAGGS,WY,718,FAILURE +BANK OF GERING,10/23/1986,24155,22157,GERING,NE,3873,FAILURE +STILLWATER COMMUNITY BANK,10/23/1986,22610,22641,STILLWATER,OK,7607,FAILURE +SECURITY NATIONAL BANK,10/23/1986,41829,41634,ANCHORAGE,AK,21960,FAILURE +FARMERS FS&LA,10/23/1986,131271,124706,RAVENSWOOD,WV,238,ASSISTANCE +FIRST STATE S&LA,10/23/1986,78769,77864,SPARTANSBURG,SC,64,ASSISTANCE +REPUBLIC BANK,10/31/1986,41684,39419,BLANCHARD,LA,11598,FAILURE +FAMILY FS&LA,10/31/1986,338904,354906,SAGINAW,MI,17172,ASSISTANCE +SEDGWICK COUNTY BANK,11/5/1986,3825,3665,JULESBURG,CO,1482,FAILURE +THE HOME BANK,11/6/1986,39092,40088,SAVANNAH,MO,7485,FAILURE +THE FIRST STATE BANK,3/25/1935,427,303,CHEYENNE,OK,,FAILURE +AMITE RIVER BANK,6/23/1937,308,248,DENHAM SPRINGS,LA,,FAILURE +FIRST STOCK YARDS BANK,11/6/1986,31589,31526,ST. JOSEPH,MO,8681,FAILURE +THE FIRST NATIONAL BANK & TR CO.,11/6/1986,100115,96804,ENID,OK,27385,FAILURE +THE CITIZENS STATE BANK,11/6/1986,27468,27793,DONNA,TX,6912,FAILURE +CHOKIO STATE BANK,11/7/1986,11917,10959,CHOKIO,MN,4880,FAILURE +METROPOLITAN BANK & TRUST COMPANY,11/7/1986,70053,69201,BATON ROUGE,LA,28671,FAILURE +THE HOXIE STATE BANK,11/13/1986,35821,33362,HOXIE,KS,9004,FAILURE +FIRST NATIONAL BANK OF TEMPLE,11/14/1986,7346,7124,TEMPLE,OK,511,FAILURE +THE BANK OF NORTHERN CALIFORNIA,11/14/1986,16095,15774,SAN JOSE,CA,133,FAILURE +FIRST NATIONAL BANK,11/20/1986,62962,59245,WILLOWS,CA,2465,FAILURE +NORMAN BANK OF COMMERCE,11/20/1986,43525,41632,NORMAN,OK,12399,FAILURE +GHENT DEPOSIT BANK,6/26/1937,223,189,GHENT,KY,,FAILURE +TEXANA NATIONAL BANK OF COLLEGE,11/20/1986,12085,11897,COLLEGE STATION,TX,2976,FAILURE +GULF FEDERAL SAVINGS BANK,11/21/1986,499112,375140,METAIRIE,LA,278766,ASSISTANCE +FIRST SECURITY S&LA,11/21/1986,55238,52133,GRAND JUNCTION,CO,0,ASSISTANCE +"BANK OF OKLAHOMA, OKLA. CITY, N.A.",11/24/1986,468166,349863,OKLAHOMA CITY,OK,78778,ASSISTANCE +BANK OF COMMERCE,11/26/1986,66627,64699,MORRISTOWN,TN,11300,ASSISTANCE +FIRST NATIONAL BANK OF STEWARTVILLE,12/4/1986,18475,18282,STEWARTVILLE,MN,980,FAILURE +PANHANDLE BANK & TRUST COMPANY,12/4/1986,112074,99900,BORGER,TX,17761,FAILURE +HAYS STATE BANK,12/4/1986,27762,32252,HAYS,KS,15458,FAILURE +CORDELL NATIONAL BANK,12/5/1986,78649,73505,CORDELL,OK,35620,FAILURE +FIRSTSOUTH FS&LA,12/5/1986,1680854,1500237,PINE BLUFF,AR,1696677,FAILURE +FIRST STATE BANK OF SOUTH SAN ANTONIO,6/29/1937,514,490,SAN ANTONIO,TX,,FAILURE +THE CITIZENS BANK OF WINDSOR,12/9/1986,24790,24271,WINDSOR,MO,7670,FAILURE +FIRST SAVINGS OF AMERICA,12/12/1986,46975,56013,ORLAND PARK,IL,,FAILURE +GUARANTY FEDERAL BANK FSB,12/12/1986,63780,73471,CASPER,WY,18868,FAILURE +BARRON COUNTY FS&LA,12/16/1986,158237,144439,BARRON,WI,24848,ASSISTANCE +FIRST BANK & TRUST CO.,12/18/1986,94888,84607,BOOKER,TX,35752,FAILURE +LAGO VISTA NATIONAL BANK,12/18/1986,11862,12370,LAGO VISTA,TX,5312,FAILURE +LANDMARK NATIONAL BANK,12/18/1986,12879,12756,DENVER,CO,4230,FAILURE +LAKELAND STATE BANK,12/19/1986,49435,49145,PEQUOT LAKES,MN,7013,FAILURE +FARMERS STATE BANK,12/19/1986,9695,9243,LUEDERS,TX,2969,FAILURE +ST. LOUIS FS&LA,12/22/1986,955426,963216,CLAYTON,MO,75107,ASSISTANCE +THE TAYLOR NATIONAL BANK OF CAMPBELLSVILLE,6/30/1937,1651,914,CAMPBELLSVILLE,KY,,FAILURE +BANK OF KANSAS CITY,12/29/1986,114114,107316,KANSAS CITY,MO,1152,ASSISTANCE +CITIZENS BANK & TRUST COMPANY,12/31/1986,10424,10674,ARCADIA,LA,197,ASSISTANCE +LINCOLN FS&LA,12/31/1986,460843,478330,LOUISVILLE,KY,93000,ASSISTANCE +THE SECURITY NAT BK & TR CO. OF NORMAN,1/8/1987,198716,171175,NORMAN,OK,86222,FAILURE +BOWIE NATIONAL BANK,1/8/1987,12253,12406,BOWIE,TX,800,FAILURE +AMERICAN NATIONAL BANK OF GRAND JUNCTION,1/8/1987,7669,7242,GRAND JUNCTION,CO,1577,FAILURE +STATE BANK OF CUBA,1/9/1987,18275,17717,CUBA,IL,2475,FAILURE +THE FIRST NATIONAL BANK OF RUSH SPRINGS,1/15/1987,12827,12502,RUSH SPRINGS,OK,3749,FAILURE +LATIMER BANK & TRUST,1/15/1987,23230,21988,LATIMER,IA,3229,FAILURE +FIRST CHARTER BANK,1/15/1987,10125,9347,DENVER,CO,2959,FAILURE +BANK OF STURGIS,7/3/1937,246,213,STURGIS,KY,,FAILURE +THE FIRST NATIONAL BANK OF SKIATOOK,1/15/1987,13988,13566,SKIATOOK,OK,4115,FAILURE +UMPQUA S&LA,1/16/1987,108213,88486,ROSEBURG,OR,11906,FAILURE +FIRST S&LA OF BURKBURNETT,1/16/1987,204538,74124,BURKBURNETT,TX,269426,FAILURE +MAGIC VALLEY S&LA,1/16/1987,103392,116546,WESLACO,TX,160523,ASSISTANCE +NATIONAL BANK OF FREDERICK,1/22/1987,23821,22368,FREDERICK,OK,10475,FAILURE +THE FIRST NATIONAL BANK OF MARLBOROUGH,1/23/1987,60731,55881,MARLBOROUGH,MA,18654,FAILURE +FIRST SIERRA BANK,1/23/1987,23227,22996,BISHOP,CA,4082,FAILURE +NORTH AMERICA S&LA,1/23/1987,220304,220504,SANTA ANNA,CA,98903,FAILURE +THE FARMERS NATIONAL BANK OF REMINGTON,1/29/1987,34717,33499,REMINGTON,IN,7767,FAILURE +THE LA PRYOR STATE BANK,1/29/1987,5695,5444,LA PRYOR,TX,1618,FAILURE +AMERICAN BANK,7/3/1937,,206,HIGGINSVILLE,MO,,FAILURE +FIRST STATE BANK OF PATTONSBURG,1/29/1987,5915,5779,PATTONBURG,MO,1499,FAILURE +PEOPLES BANK & TRUST COMPANY,1/29/1987,20176,18791,HOLDENVILLE,OK,5147,FAILURE +"MONTGOMERY COUNTY BANK, N.A.",1/29/1987,48494,47634,THE WOODLANDS,TX,13871,FAILURE +BEAR CREEK NATIONAL BANK,1/29/1987,26593,25970,BEAR CREEK,TX,7540,FAILURE +STATE BANK OF ALLISON,2/5/1987,17353,16993,ALLISON,IA,1511,FAILURE +BOULEVARD STATE BANK,2/5/1987,102271,89631,WICHITA,KS,20129,FAILURE +MARKET NATIONAL BANK,2/5/1987,8724,9377,DENVER,CO,3644,FAILURE +SUNBELT NATIONAL BANK,2/5/1987,11380,11780,DALLAS,TX,5049,FAILURE +COMMUNITY BANK,2/11/1987,5144,5373,SEILING,OK,2407,FAILURE +FIRST CITY BANK OF ATOKA,2/12/1987,11622,12450,ATOKA,OK,2483,FAILURE +BANK OF ANUTT,7/12/1937,,33,ANUTT,MO,,FAILURE +SECURITY NATIONAL BANK,2/12/1987,8644,8813,MIDLAND,TX,3712,FAILURE +FEDERATED NATIONAL BANK,2/12/1987,13632,12392,LIVE OAK,TX,4904,FAILURE +"FIRST STATE BANK OF KING CITY, MISSOURI",2/13/1987,14457,14503,KING CITY,MO,5492,FAILURE +THE COUNTY BANK,2/13/1987,187142,159572,MANATEE COUNTY,FL,69120,FAILURE +LIFE SAVINGS OF AMERICA,2/13/1987,342279,339245,ROCKFORD,IL,115677,FAILURE +"UNIVERSAL SA, FA",2/13/1987,104554,87976,CHICKASHA,OK,40417,FAILURE +FIRST STATE BANK OF ATMORE,2/19/1987,12365,12392,ATMORE,AL,0,FAILURE +THE FIRST NATIONAL BANK OF WESLACO,2/20/1987,70708,73170,WESLACO,TX,16026,FAILURE +HUB CITY BANK & TRUST COMPANY,2/20/1987,37978,38209,LAFAYETTE,LA,12864,FAILURE +AMERICAN NATIONAL BANK,2/25/1987,9696,10167,DURANT,OK,1057,ASSISTANCE +CHATTOOGA COUNTY BANK,7/13/1937,265,205,SUMMERVILLE,GA,,FAILURE +FARMERS STATE BANK,2/26/1987,9803,9594,HART,TX,1246,FAILURE +CENTRAL BANK & TRUST COMPANY,2/26/1987,20598,24660,GLENMORA,LA,11,ASSISTANCE +FIRST NATIONAL BANK OF CROSBY,2/26/1987,7797,8001,CROSBY,TX,2388,FAILURE +THE LEWISTOWN BANK,2/27/1987,15254,14938,LEWISTOWN,IL,4167,FAILURE +FIRST FS&LA OF BELOIT,2/27/1987,82910,89654,BELOIT,KS,22385,FAILURE +KEY S&LA,2/27/1987,241648,203684,ENGLEWOOD,CO,121663,FAILURE +THE FIRST STATE BANK,3/4/1987,15754,15205,ROCKFORD,IA,1418,FAILURE +FIRST NATIONAL BANK IN WEST CONCORD,3/5/1987,9068,8741,WEST CONCORD,MN,1385,FAILURE +LIBERTY BANK,3/5/1987,57195,53860,HOUSTON,TX,17480,FAILURE +FIRST NATIONAL BANK OF SAPULPA,3/5/1987,7460,7600,SAPULPA,OK,2514,FAILURE +FARMERS STATE BANK OF BAINVILLE,7/13/1937,104,54,BAINVILLE,MT,,FAILURE +SEALY NATIONAL BANK,3/5/1987,7670,7586,SEALY,TX,2162,FAILURE +SOUTH BAY S&LA,3/6/1987,61880,64324,GARDENS,CA,5315,ASSISTANCE +THE FIRST NATIONAL BANK OF OLNEY,3/12/1987,16684,17340,OLNEY,TX,2475,FAILURE +WESTERN BANK,3/12/1987,46701,46082,EL PASO,TX,13489,FAILURE +PLAZA NATIONAL BANK,3/12/1987,34250,33068,DEL RIO,TX,17986,FAILURE +EXPRESSWAY BANK,3/12/1987,19089,20059,OKLAHOMA CITY,OK,5834,FAILURE +BEAVER CREEK STATE BANK,3/13/1987,7269,7149,BEAVER CREEK,MN,964,FAILURE +VICTOR S&LA,3/13/1987,601315,505320,MUSKOGEE,OK,235950,FAILURE +HOME S&LA,3/13/1987,150608,117570,SEATTLE,WA,25941,ASSISTANCE +UNITED OKLAHOMA BANK,3/17/1987,171925,121959,OKLAHOMA CITY,OK,39633,FAILURE +FARMERS & MERCHANTS BANK,7/17/1937,264,189,NEWBERN,TN,,FAILURE +PERPETUAL SB,3/18/1987,62462,59674,LOS ANGELES,CA,,FAILURE +CLARKS FORK NATIONAL BANK,3/19/1987,8423,8159,FROMBERG,MT,1194,FAILURE +RED RIVER NATIONAL BANK IN CLARKSVILLE,3/19/1987,22829,23367,CLARKSVILLE,TX,5309,FAILURE +SWEENEY BANK,3/19/1987,19669,20071,SWEENEY,TX,5951,FAILURE +THE MADILL BANK & TRUST COMPANY,3/20/1987,39630,39050,MADILL,OK,11324,FAILURE +MOROCCO STATE BANK,3/20/1987,16299,15779,MOROCCO,IN,1710,FAILURE +NEW CITY BANK,3/20/1987,26049,25847,ORANGE,CA,5556,FAILURE +FIRST FS&LA,3/20/1987,95719,124677,HAGERSTOWN,MD,77866,FAILURE +VERNON S&LA,3/20/1987,1347012,1582967,VERNON,TX,1061532,FAILURE +FIRST SOUTHERN SA,3/20/1987,47063,57202,PASCAGOULA,MS,14707,FAILURE +GUARANTY STATE BANK,4/4/1935,264,176,CLINTON,OK,,FAILURE +"PEOPLES BANK OF BLOXOM, INC.",7/19/1937,101,63,BLOXOM,VA,,FAILURE +BAYOU FS&LA,3/20/1987,25833,28256,NEW ORLEANS,LA,12488,ASSISTANCE +WESTERN S&LA,3/24/1987,392698,360780,SALT LAKE CITY,UT,478,ASSISTANCE +SOUTH FLORIDA SAVINGS BANK,3/25/1987,172028,176277,DAVIE,FL,4191,ASSISTANCE +THE FIRST STATE BANK IN BILLINGS,3/26/1987,10151,10308,BILLINGS,OK,1162,FAILURE +TALLULAH STATE BANK & TRUST COMP,3/27/1987,31136,31357,TALLULAH,LA,11925,FAILURE +EQUITABLE S&LA,3/27/1987,58927,83722,STANTON,CA,29205,FAILURE +THE FIRST NATIONAL BANK OF HERINGTON,4/2/1987,20742,19866,HERINGTON,KS,4928,FAILURE +TAHOE S&LA,4/3/1987,81164,90792,SOUTH LAKE TAHOE,CA,41668,ASSISTANCE +FIRST NATIONAL BANK OF BRAMAN,4/9/1987,12218,11728,BRAMAN,OK,4834,FAILURE +DEER LODGE BANK & TRUST COMPANY,4/9/1987,15166,14148,DEER LODGE,MT,2957,FAILURE +MICHIGAN CITY TRUST & SAVINGS BANK,7/20/1937,,983,MICHIGAN CITY,IN,,FAILURE +COMMONWEALTH BANK,4/9/1987,7799,7696,GLENDALE,CO,481,FAILURE +"THE SOUTHWESTERN BANK, N.A.",4/9/1987,14704,14541,HOUSTON,TX,5390,FAILURE +THE CITIZENS STATE BANK,4/10/1987,29049,27725,BROWNSTOWN,IN,1316,FAILURE +BANK OF IRON COUNTY,4/10/1987,19827,19467,PAROWAN,UT,3752,FAILURE +FUTURE S&LA,4/10/1987,57614,57710,ALBANY,OR,15833,FAILURE +FIRST STATE BANK OF FOREST CITY,4/16/1987,6457,6830,FOREST CITY,MO,1756,FAILURE +FIRST BANK OF SAGINAW,4/16/1987,30622,29945,SAGINAW,TX,8320,FAILURE +"FIRST COMMERCIAL BANK OF TEXAS,",4/16/1987,4400,4685,HOUSTON,TX,1898,FAILURE +SOUTHERN FLORIDABANC SA,4/16/1987,219068,256578,BOCA RATON,FL,,FAILURE +THE PEOPLES BANK,4/22/1987,11896,11899,COLLINSVILLE,AL,934,FAILURE +FIRST BANK & TRUST COMPANY OF HAMILTON,7/24/1937,698,544,HAMILTON,MO,,FAILURE +THE BANK OF NORTH MISSISSIPPI,4/22/1987,14452,13820,OAKLAND,MS,2720,FAILURE +OSCEOLA STATE BANK & TRUST COMPANY,4/23/1987,8590,7693,OSCEOLA,IA,1583,FAILURE +NORTH CENTRAL NATIONAL BANK,4/23/1987,23388,23093,AUSTIN,TX,11466,FAILURE +LIBERTY FS&LA,4/24/1987,134936,150687,LEESVILLE,LA,121725,FAILURE +HERITAGE BANK & TRUST,4/29/1987,17640,16225,SALT LAKE COUNTY,UT,110,FAILURE +PEOPLES STATE BANK,4/30/1987,5789,5837,TURKEY,TX,1313,FAILURE +UNITEDBANK-HOUSTON,4/30/1987,217304,183389,HOUSTON,TX,110841,FAILURE +AMERICAN BANK OF COMMERCE,5/6/1987,25504,24587,DENVER,CO,10933,FAILURE +FIRST STATE BANK OF SISSETON,5/7/1987,20058,19350,SISSETON,SD,4479,FAILURE +NORTH AMERICAN NATIONAL BANK,5/7/1987,9516,9008,LITTLETON,CO,3795,FAILURE +KOCHAN BANKING COMPANY,8/5/1937,,173,MAYSVILLE,MO,,FAILURE +FARMERS STATE BANK,5/8/1987,11864,11675,MADDOCK,ND,1118,FAILURE +MOREAUVILLE STATE BANK,5/8/1987,16813,16917,MOREAUVILLE,LA,3080,FAILURE +SYRACUSE SAVINGS BANK,5/13/1987,1183321,1099485,SYRACUSE,NY,0,ASSISTANCE +THE FIRST NATIONAL BANK OF ELBOW LAKE,5/14/1987,14157,15712,ELBOW LAKE,MN,7717,FAILURE +MARLIN NATIONAL BANK,5/14/1987,39566,43669,MARLIN,TX,12746,FAILURE +TODD COUNTY STATE BANK,5/14/1987,15410,15150,LONG PRAIRIE,MN,2357,FAILURE +UNITED BANK,5/14/1987,15369,14434,LIBBY,MT,1718,FAILURE +LIBERTY S&LA,5/15/1987,98688,115467,NEW PORT RICHEY,FL,,FAILURE +INDEPENDENT AMERICAN SA,5/20/1987,1014023,1392604,IRVING,TX,1581749,FAILURE +BANK OF OAK GROVE,5/21/1987,24019,23551,OAK GROVE,LA,5966,FAILURE +THE BANK OF NOEL,8/11/1937,135,108,NOEL,MO,,FAILURE +"TEXAS INVESTMENT BANK, N.A.",5/21/1987,17088,15268,HOUSTON,TX,7966,FAILURE +LAKE AUSTIN NATIONAL BANK,5/21/1987,43698,43348,AUSTIN,TX,14074,FAILURE +TEXAS NATIONAL BANK-WESTHEIMER,5/28/1987,26342,26420,HOUSTON,TX,18143,FAILURE +FIRST NATIONAL BANK OF WILMONT,5/29/1987,13330,11777,WILMONT,MN,2005,FAILURE +THE FIRST STATE BANK,6/4/1987,43341,43477,FRISCO,TX,10328,FAILURE +UNITED BANK OF TEXAS,6/4/1987,208352,190365,AUSTIN,TX,62407,FAILURE +SECURITY BANK OF RICH HILL,6/5/1987,12966,12729,RICH HILL,MO,225,ASSISTANCE +FIRST STATE BANK,6/11/1987,7304,6869,MILFORD,TX,1938,FAILURE +THE BENTON STATE BANK,6/11/1987,9417,8750,BENTON,KS,2972,FAILURE +"NORTHWEST COMMERCIAL BANK, N.A.",6/11/1987,14201,14457,HOUSTON,TX,4686,FAILURE +THE FIRST NATIONAL BANK OF ALBERTVILLE,8/12/1937,,428,ALBERTVILLE,AL,,FAILURE +SECURITY SAVINGS ASSOCIATION,6/11/1987,429813,478652,TEXARKANA,TX,,FAILURE +HAMILTON COUNTY STATE BANK,6/12/1987,13762,11524,LOCKLAND,OH,0,FAILURE +WHITTIER THRIFT & LOAN,6/12/1987,15206,14409,WHITTIER,CA,3263,FAILURE +FRONTIER S&LA,6/12/1987,7408,7990,FAIRBANKS,AK,2366,FAILURE +FIRST MIDWEST BANK,6/18/1987,25620,25691,MARYVILLE,MO,1813,FAILURE +INVESTORS FEDERAL BANK,6/18/1987,97509,96314,EL RENO,OK,60033,FAILURE +PELICAN STATE BANK,6/24/1987,7188,7026,MANSFIELD,LA,3375,FAILURE +EIGHTY NINER BANK OF COYLE,6/25/1987,6583,5995,COYLE,OK,1529,FAILURE +SOUTH DENVER NATIONAL BANK,6/25/1987,59565,61812,GLENDALE,CO,21110,FAILURE +LANESBORO STATE BANK,6/26/1987,11391,10974,LANESBORO,MN,2321,FAILURE +THE FORT GREENE NATIONAL BANK IN NEW YORK,8/14/1937,2379,1987,BROOKLYN,NY,,FAILURE +LIBERTY BANK & TRUST COMPANY,6/26/1987,12588,12236,GREENWOOD,LA,5197,FAILURE +UNITED FS&LA,6/29/1987,89797,78169,DURANT,OK,46360,FAILURE +FORT LEE S&LA,6/30/1987,170600,183297,FORT LEE,NJ,13141,ASSISTANCE +BANK OF BRAZORIA,7/2/1987,24475,23989,BRAZORIA,TX,3732,FAILURE +CITIZENS BANK,7/2/1987,46400,44269,BRYAN,TX,13834,FAILURE +UNITED FIRST FS&LA,7/2/1987,344451,299597,BOISE,ID,73245,ASSISTANCE +PROVIDENT FS&LA,7/2/1987,222304,210863,BOISE,ID,54583,ASSISTANCE +RED OAK STATE BANK,7/9/1987,44373,42459,RED OAK,TX,6635,FAILURE +"FIRST CONTINENTAL BK OF ROCKRIMMON, N.A.",7/9/1987,6598,5737,COLORADO SPRINGS,CO,4144,FAILURE +"BANKTEXAS DALLAS, N.A.",7/17/1987,541345,382732,DALLAS,TX,58045,ASSISTANCE +FARMERS AND MERCHANTS BANK,8/21/1937,,159,BRILLION,WI,,FAILURE +"BANCTEXAS MCKINNEY, N.A.",7/17/1987,121528,119892,MCKINNEY,TX,23482,ASSISTANCE +BANCTEXAS HOUSTON,7/17/1987,45854,45038,HOUSTON,TX,8804,ASSISTANCE +"BANCTEXAS RICHARDSON, N.A.",7/17/1987,80985,75556,RICHARDSON,TX,13093,ASSISTANCE +"BANCTEXAS WHITE ROCK, N.A.",7/17/1987,80923,80963,DALLAS,TX,12728,ASSISTANCE +"BANCTEXAS SULPHUR SPRINGS, N.A.",7/17/1987,18290,17961,SULPHUR SPRINGS,TX,2692,ASSISTANCE +BANCTEXAS WESTHEIMER,7/17/1987,34073,42498,HOUSTON,TX,6628,ASSISTANCE +"BANCTEXAS ALLEN PARKWAY, N.A.",7/17/1987,125031,161874,HOUSTON,TX,3811,ASSISTANCE +"BANCTEXAS CARROLLTON, N.A.",7/17/1987,51056,52152,CARROLLTON,TX,7949,ASSISTANCE +"BANCTEXAS NORTHSIDE HOUSTON, N.A",7/17/1987,61053,60678,HOUSTON,TX,9018,ASSISTANCE +"BANCTEXAS QUORUM, N.A.",7/17/1987,21192,22792,ADDISON,TX,3748,ASSISTANCE +FARMERS BANK & TRUST COMPANY,8/31/1937,1262,1361,CHARLES TOWN,WV,,FAILURE +FARMERS & MERCHANTS BANK,7/23/1987,11499,13920,EUFAULA,OK,3546,FAILURE +"BANK OF LOS GATOS, N.A.",7/23/1987,13149,12893,LOS GATOS,CA,1294,FAILURE +FREEDOM S&LA,7/23/1987,1892038,1241839,TAMPA,FL,,FAILURE +BANK OF GRANITE,7/30/1987,13164,13192,GRANITE,OK,2759,FAILURE +THE FIRST NATIONAL BANK OF YUKON,7/30/1987,40285,41938,YUKON,OK,8810,FAILURE +FARMERS STATE BANK,7/30/1987,15870,15347,KANAWHA,IA,2389,FAILURE +EMPIRE NATIONAL BANK,7/30/1987,8847,9626,LOS ANGELES,CA,3133,FAILURE +VALLEY BANK OF BELGRADE,7/31/1987,18610,16385,BELGRADE,MT,3025,ASSISTANCE +OK FEDERAL S&LA,7/31/1987,51790,87308,EL RENO,OK,62204,ASSISTANCE +SECURITY STATE BANK,8/6/1987,15197,16694,ROOSEVELT,OK,8952,FAILURE +ROANOKE STATE BANK,9/8/1937,265,280,ROANOKE,IL,,FAILURE +THE SECURITY STATE BANK,8/6/1987,9365,8756,DAVENPORT,OK,3629,FAILURE +FRENCH MARKET HOMESTEAD,8/6/1987,321057,302663,METAIRIE,LA,,FAILURE +ACADIA S&LA,8/6/1987,159902,162237,CROWLEY,LA,,FAILURE +BAYSHORE BANK OF FLORIDA,8/7/1987,41485,40337,MIAMI,FL,6701,FAILURE +FIRST STATE BANK,8/13/1987,23607,21892,BLANCHARD,OK,12059,FAILURE +THE FIRST NATIONAL BANK OF NAVASOTA,8/13/1987,31679,31027,NAVASOTA,TX,8224,FAILURE +THE FIRST NATIONAL BANK OF LUTHER,8/13/1987,17113,17600,LUTHER,OK,9594,FAILURE +MCNULTY BANKING COMPANY,8/14/1987,56604,53185,ST. PETERSBURG,FL,6799,FAILURE +FIRST SAVINGS OF LA,8/19/1987,33647,44616,LA PLACE,LA,,FAILURE +THE FIRST STATE BANK,8/20/1987,6696,6216,WILLOW,OK,1463,FAILURE +THE STATE BANK OF MILFORD,4/10/1935,118,87,MILFORD,KS,,FAILURE +STONEHAM TRUST COMPANY,9/11/1937,,809,STONEHAM,MA,,FAILURE +AMERICAN EXCHANGE BANK & TRUST CO,8/20/1987,87778,95808,NORMAN,OK,40571,FAILURE +AMERICAN NATIONAL BANK OF EVANSTON,8/20/1987,9092,8892,EVANSTON,WY,4043,FAILURE +SUNBELT FS&LA,8/20/1987,65532,60137,WATONGA,OK,35393,FAILURE +PEOPLE'S STATE BANK OF MAZEPPA,8/21/1987,21613,20186,MAZEPPA,MN,4867,FAILURE +BANK OF NORTH AMERICA,8/27/1987,34537,31165,HOUSTON,TX,10212,FAILURE +CITIZENS BANK OF GLENDALE,8/27/1987,4384,4036,DENVER,CO,406,FAILURE +ROCKY MOUNTAIN STATE BANK,8/28/1987,18567,17864,SALT LAKE CITY,UT,3000,FAILURE +THE FIRST NATIONAL BANK OF HAMMON,9/3/1987,6271,5751,HAMMON,OK,1579,FAILURE +THE FIRST NATIONAL BANK OF TIPTON,9/3/1987,8218,7248,TIPTON,OK,4422,FAILURE +WAXAHACHIE BANK & TRUST COMPANY,9/10/1987,68874,66215,WAXAHACHIE,TX,21731,FAILURE +THE BANK OF GALENA,9/14/1937,93,76,GALENA,MO,,FAILURE +LA MARQUE BANK,9/10/1987,6311,6168,LA MARQUE,TX,1022,FAILURE +FIRST STATE BANK OF ROLLINGSTONE,9/11/1987,15230,14440,ROLLINGSTONE,MN,3044,FAILURE +CENTRAL NATIONAL BANK OF NEW YORK,9/11/1987,180796,174715,NEW YORK,NY,58682,FAILURE +THE TALMAGE STATE BANK,9/17/1987,6669,6650,TALMAGE,KS,1295,FAILURE +BREAUX BRIDGE BANK & TRUST COMPANY,9/17/1987,22475,29821,BREAUX BRIDGE,LA,13847,FAILURE +MUSTANG NATIONAL BANK,9/17/1987,12091,11521,MUSTANG,OK,2682,FAILURE +STEEPLECHASE NATIONAL BANK,9/17/1987,15889,14217,HOUSTON,TX,3657,FAILURE +STOCKMEN'S BANK & TRUST COMPANY,9/18/1987,117429,111895,GILLETTE,WY,41107,FAILURE +PHENIX FS&LA,9/18/1987,225532,235485,PHENIX CITY,AL,,FAILURE +TWIN CITY FS & LA,9/19/1987,149486,182374,WEST MONROE,LA,160590,FAILURE +BURT STATE BANK,9/25/1937,63,39,BURT,ND,,FAILURE +THE CITIZENS BANK,9/24/1987,35121,33370,DRUMRIGHT,OK,14623,FAILURE +THE MURDOCK STATE BANK,9/24/1987,9157,8025,MURDOCK,KS,2063,FAILURE +"THE MAYFIELD STATE BANK, MAYFIELD",9/24/1987,6793,5814,MAYFIELD,KS,2440,FAILURE +LYONS FEDERAL TRUST & SAVINGS,9/24/1987,2275309,1544888,COUNTRYSIDE,IL,561601,ASSISTANCE +COMMONWEALTH BANK,9/25/1987,85059,83784,TORRANCE,CA,16679,FAILURE +VALLEY STATE BANK,9/28/1987,93209,92026,LOS ANGELES,CA,2233,FAILURE +SECURITY STATE BANK,10/1/1987,12195,11674,OXFORD,NE,1767,FAILURE +WESTERN BANK-WESTHEIMER,10/1/1987,260560,256071,HOUSTON,TX,96315,FAILURE +CLAY COUNTY STATE BANK,10/1/1987,10057,9852,DILWORTH,MN,1095,FAILURE +"WESTERN BANK-WESTWOOD, N.A.",10/1/1987,44196,42598,HOUSTON,TX,11622,FAILURE +WESTWOOD TRUST COMPANY,9/30/1937,,648,WESTWOOD,NJ,,FAILURE +"WESTERN BANK-NORTH WILCREST, N.A",10/1/1987,41055,40632,HOUSTON,TX,12896,FAILURE +STATE BANK OF GREENWALD,10/2/1987,23318,19888,GREENWALD,MN,4328,FAILURE +CITIZENS BANK OF KREBS,10/8/1987,14688,13795,KREBS,OK,5330,FAILURE +UNITED SERVICES BANK,10/8/1987,15327,14214,HARTSHORNE,OK,5653,FAILURE +THE FIRST NATIONAL BANK OF BRUSH,10/8/1987,20927,21020,BRUSH,CO,3317,FAILURE +CITIZENS BANK OF RAY,10/15/1987,11720,11332,RAY,ND,1883,FAILURE +AMERICAN NATIONAL BANK OF AFTON,10/15/1987,11361,11203,AFTON,WY,2219,FAILURE +FIRST CALIFORNIA SAVINGS BANK,10/15/1987,220564,224045,SAN FERNANDO,CA,,FAILURE +YANKEE BANK FOR FINANCE & SAVING,10/16/1987,525481,488318,BOSTON,MA,63568,FAILURE +"COMMERCIAL BANK, N.A.",10/16/1987,23408,21702,OKLAHOMA CITY,OK,4500,ASSISTANCE +RINGGOLD STATE BANK,10/1/1937,92,51,RINGGOLD,TX,,FAILURE +TOPEKA SAVINGS ASSOCIATION,10/20/1987,112482,104521,TOPEKA,KS,,FAILURE +PIONEER BANK OF FOUNTAIN,10/21/1987,12668,12223,FOUNTAIN,CO,1124,FAILURE +ALASKA NATIONAL BANK OF THE NORTH,10/22/1987,203074,200240,FAIRBANKS,AK,34285,FAILURE +FIRST STATE BANK OF BOVINA,10/22/1987,20057,17367,BOVINA,TX,0,FAILURE +NEW WORLD NATIONAL BANK,10/22/1987,14685,14786,PITTSBURGH,PA,2106,FAILURE +WESTERN NATIONAL BANK,10/22/1987,22675,23845,BRYAN,TX,8917,FAILURE +SIERRA S&LA,10/23/1987,12061,12828,GARDNERVILLE,NV,564,FAILURE +CAPITAL BANK & TRUST CO.,10/30/1987,384440,343386,BATON ROUGE,LA,55545,FAILURE +AMERICAN SECURITY BANK,10/30/1987,27124,26453,NORTH PLATTE,NE,3737,FAILURE +DELTA PACIFIC BANK,10/30/1987,17732,16969,PITTSBURG,CA,1337,FAILURE +THE FIRST NATIONAL BANK OF LOVELADY,10/1/1937,,78,LOVELADY,TX,,FAILURE +FIRST FS&LA NATCHITOCHES,10/31/1987,48103,62301,NATCHITOCHES,LA,29355,ASSISTANCE +MIDDLE PARK BANK,11/10/1987,34917,33015,GRANBY,CO,14932,FAILURE +BANK OF WINTER PARK,11/10/1987,24429,22689,WINTER PARK,CO,13904,FAILURE +TRI-STATE NATIONAL BANK,11/10/1987,10728,10722,BELLE FOURCHE,SD,1839,FAILURE +GULF FS&LA,11/12/1987,6078,6472,MOBILE,AL,1336,ASSISTANCE +WEST TEXAS STATE BANK OF CANYON,11/13/1987,20440,20036,CANYON,TX,3294,FAILURE +TRI-COUNTY S&LA,11/13/1987,36501,46220,CAMDEN,NJ,18905,FAILURE +ARGO FS&LA,11/17/1987,25566,29665,SUMMIT,IL,3574,ASSISTANCE +THE PEOPLES BANK AND TRUST OF IBERIA PARIS,11/19/1987,79081,76325,NEW IBERIA,LA,9073,FAILURE +THE ALEXANDER STATE BANK,11/19/1987,9224,9377,ALEXANDER,KS,2260,FAILURE +THE FIRST NATIONAL BANK OF PERTH AMBOY,10/2/1937,,3660,PERTH AMBOY,NJ,,FAILURE +THE TIMKEN STATE BANK,11/19/1987,3075,3117,TIMKEN,KS,1272,FAILURE +REPUBLIC BANK,11/19/1987,49129,57283,OKLAHOMA CITY,OK,22958,FAILURE +THE FARMERS NATIONAL BANK OF CORDELL,12/3/1987,62300,60260,CORDELL,OK,33554,FAILURE +FIRST STATE BANK,12/3/1987,5634,5386,OAKDALE,NE,500,FAILURE +THE PEOPLES BANK,12/3/1987,40946,39461,OLIVE HILL,KY,7609,FAILURE +CENTER STATE BANK,12/3/1987,8406,8049,CENTER,NE,1612,FAILURE +CROFTON STATE BANK,12/3/1987,11619,10844,CROFTON,NE,1748,FAILURE +STATE BANK OF JANSEN,12/3/1987,5010,4596,JANSEN,NE,264,FAILURE +CLIMBING HILL SAVINGS BANK,12/3/1987,5399,5315,CLIMBING HILL,IA,646,FAILURE +CROSSROADS BANK,12/3/1987,25093,25318,VICTORIA,TX,1296,ASSISTANCE +PERTH AMBOY TRUST COMPANY,10/2/1937,2899,1344,PERTH AMBOY,NJ,,FAILURE +MADISON BANK & TRUST COMPANY,12/3/1987,9747,9807,RICHMOND,LA,3150,FAILURE +STATE BANK OF COMMERCE,12/3/1987,49171,48634,SLIDELL,LA,14194,FAILURE +THE FIRST NATIONAL BANK IN RHOME,12/10/1987,9243,9335,RHOME,TX,1918,FAILURE +LOUISIANA BANK & TRUST COMPANY,12/10/1987,18489,21238,CROWLEY,LA,7816,FAILURE +AMERICAN BANK IN LOUISIANA,12/10/1987,15028,14620,MORGAN CITY,LA,3959,FAILURE +"BANCFIRST-AUSTIN, N.A.",12/10/1987,25253,28035,AUSTIN,TX,14067,FAILURE +HERITAGE NATIONAL BANK,12/10/1987,53227,50960,AUSTIN,TX,19497,FAILURE +FIRST INTERSTATE BANK OF ALASKA,12/11/1987,367655,358945,ANCHORAGE,AK,104386,FAILURE +LEWIS AND CLARK STATE BANK,12/11/1987,20261,19839,LAKE OSWEGO,OR,2453,FAILURE +SURETY FS&LA,12/11/1987,124871,111495,MORGANTON,NC,,ASSISTANCE +THE RARITAN TRUST COMPANY,10/2/1937,707,365,PERTH AMBOY,NJ,,FAILURE +MT. PLEASANT S&LA,12/16/1987,24873,29321,MT. PLEASANT,TX,7050,ASSISTANCE +BOONE COUNTY FS&LA,12/16/1987,19700,20843,CENTRALIA,MO,2522,ASSISTANCE +BANK OF MABANK,12/17/1987,43846,44507,MABANK,TX,9660,FAILURE +USBANK,12/17/1987,86046,84757,DENTON,TX,19618,FAILURE +AMERICAN BANK OF COMMERCE,12/17/1987,35450,36212,LAKE CHARLES,LA,4337,FAILURE +FIRST STATE BANK AT SHOSHONI,12/18/1987,4555,4144,SHOSHONI,WY,1110,FAILURE +THE FALUN STATE BANK,12/29/1987,3102,3060,FALUN,KS,50,ASSISTANCE +COMMUNITY FS&LA,12/29/1987,405642,379047,HAMILTON,OH,21259,ASSISTANCE +FIRST FINANCIAL OF LA,12/30/1987,159541,151504,LUTCHER,LA,105712,ASSISTANCE +FIRST FS&LA OF ALEXANDRIA,12/30/1987,148689,149418,ALEXANDRIA,LA,48928,ASSISTANCE +FARMERS STATE BANK OF CARLISLE,10/7/1937,99,82,CARLISLE,MN,,FAILURE +FIRSTBANC FSB,12/30/1987,46262,47076,GONZALES,LA,33093,ASSISTANCE +"FIRST FINANCIAL BANK, FSB",12/31/1987,744874,573465,NEW ORLEANS,LA,51544,ASSISTANCE +AMERICAN FS&LA,12/31/1987,166519,196659,LYNCHBURG,VA,44499,ASSISTANCE +GIBSON FEDERAL S&LA,12/31/1987,131522,146168,GIBSON CITY,IL,37428,ASSISTANCE +FIRST FS&LA OF SLIDELL,12/31/1987,46197,48836,SLIDELL,LA,13245,ASSISTANCE +THE PEOPLES STATE BANK & TRUST CO,1/7/1988,36619,39614,ELLINWOOD,KS,2456,ASSISTANCE +COMMERCE BANK OF PLANO,1/7/1988,35306,32674,PLANO,TX,23593,FAILURE +THE NORTH AMERICAN BANK,1/8/1988,32318,30691,PHOENIX,AZ,3605,FAILURE +THE JEFFERSON GUARANTY BANK,1/13/1988,292381,274423,METAIRIE,LA,57525,ASSISTANCE +THE MORAN NATIONAL BANK,1/14/1988,17204,17475,MORAN,TX,8639,FAILURE +THE FARMERS BANK,5/2/1935,166,108,ROYSTON,GA,,FAILURE +STATE BANK OF MUNDELEIN,10/18/1937,,522,MUNDELEIN,IL,,FAILURE +COLONIAL BANK,1/14/1988,50167,50407,NEW ORLEANS,LA,3390,FAILURE +BALBOA NATIONAL BANK,1/14/1988,29316,29391,NATIONAL CITY,CA,6369,FAILURE +FIRST SAVINGS OF EAST TEXAS,1/15/1988,61668,132448,SAN AUGUSTINE,TX,96556,FAILURE +AREDALE STATE BANK,1/20/1988,9647,9088,AREDALE,IA,313,FAILURE +NORTHWEST BANK,1/21/1988,58426,53140,DALLAS,TX,24615,FAILURE +CEDAR VALE STATE BANK,1/21/1988,11711,11525,CEDAR VALE,KS,2625,FAILURE +UNITED MERCANTILE BANK,1/21/1988,86324,78206,SHREVEPORT,LA,26361,FAILURE +WILLISTON BASIN STATE BANK,1/21/1988,14004,13575,WILLISTON,ND,4369,FAILURE +SAM HOUSTON NAT'L BANK OF WALKER,1/21/1988,37609,38345,HUNTSVILLE,TX,17122,FAILURE +LOUISIANA COMMERCIAL BANK,1/21/1988,26777,25696,MADISONVILLE,LA,6256,FAILURE +THE FIRST NATIONAL BANK IN BURLINGTON,10/20/1937,,3594,BURLINGTON,IA,,FAILURE +BANK OF CASPER,1/22/1988,6055,5827,CASPER,WY,1087,FAILURE +CITIZENS STATE BANK,1/27/1988,28012,28650,HAYFIELD,MN,783,ASSISTANCE +PORT CITY BANK,1/28/1988,60736,62280,HOUSTON,TX,13194,FAILURE +ALASKA MUTUAL BANK,1/28/1988,1183368,924765,ANCHORAGE,AK,170704,ASSISTANCE +UNITED BANK ALASKA,1/28/1988,314279,368279,ANCHORAGE,AK,170704,ASSISTANCE +HOUSTON COMMERCE BANK,1/28/1988,40962,40094,HOUSTON,TX,8489,FAILURE +THE TRUST BANK,1/29/1988,164547,160160,HIALEAH,FL,15654,FAILURE +TERRITORY S&LA,1/29/1988,31223,67910,SEMINOLE,OK,49854,FAILURE +THE BANK OF LOUISBURG,2/3/1988,20672,20549,LOUISBURG,KS,4445,FAILURE +BANK OF DALLAS,2/5/1988,207817,202745,DALLAS,TX,70592,FAILURE +THE LITTLE FERRY NATIONAL BANK,10/22/1937,,744,LITTLE FERRY,NJ,,FAILURE +TRADERS FS&LA,2/10/1988,68473,73056,PARKERSBURG,WV,18850,ASSISTANCE +MAGNET BANK FSB,2/10/1988,547099,418818,CHARLESTON,WV,115899,ASSISTANCE +MOUNTAIN STATE FS&LA,2/10/1988,91389,100471,CLARKSBURG,WV,21673,ASSISTANCE +FIRST STATE BANK,2/11/1988,13161,13255,OILTON,OK,3063,FAILURE +"FIRST HOUSTON BANK, N.A.",2/11/1988,33175,34578,HOUSTON,TX,11019,FAILURE +THE FIRST STATE BANK,2/12/1988,36417,37433,WHITE CLOUD,MI,10542,FAILURE +AMERICAN NATIONAL BANK,2/12/1988,27774,25421,PARMA,OH,0,ASSISTANCE +BASIN STATE BANK,2/12/1988,11982,11511,VERNAL,UT,3411,FAILURE +GLOBAL BANK,2/12/1988,21742,20423,HIALEAH,FL,6991,FAILURE +THE FARMERS & MERCHANTS BK OF HILL CITY,2/18/1988,16496,16611,HILL CITY,KS,5018,FAILURE +THE NESCOPECK NATIONAL BANK,10/22/1937,397,329,NESCOPECK,PA,,FAILURE +MUSTANG COMMUNITY BANK,2/18/1988,9407,9615,MUSTANG,OK,3115,FAILURE +"HARRIS COUNTY BANK HOUSTON, N.A.",2/25/1988,80724,81221,HOUSTON,TX,33361,FAILURE +AMERICAN NATIONAL BANK,2/25/1988,31314,30360,STAFFORD,TX,9167,FAILURE +COLLIN COUNTY STATE BANK,2/25/1988,12451,12643,MELISSA,TX,3425,FAILURE +THE HOME STATE BANK,3/3/1988,59884,61903,RUSSELL,KS,10659,FAILURE +FLOWER MOUND BANK,3/3/1988,17444,17600,FLOWER MOUND,TX,3946,FAILURE +THE FIRST NAT BANK & TRUST CO. OF CUSHING,3/10/1988,60298,61159,CUSHING,OK,19970,FAILURE +HAYESVILLE SAVINGS BANK,3/10/1988,37989,37468,HAYESVILLE,IA,1988,FAILURE +FRENCHMAN VALLEY BANK,3/10/1988,2781,2663,PALISADE,NE,602,FAILURE +FIRST AMERICAN BANK & TRUST OF BAYTOWN,3/10/1988,38198,41001,BAYTOWN,TX,16315,FAILURE +FARMERS STATE BANK,10/23/1937,100,72,WYNDMERE,ND,,FAILURE +"SECURITY BANK OF DENVER, N.A.",3/10/1988,16987,16612,DENVER,CO,3025,FAILURE +FIRST AMERICAN BANK & TRUST OF MANVEL,3/10/1988,12268,11707,MANVEL,TX,3518,FAILURE +FIRST AMERICAN BANK & TR OF FRIENDSWOOD,3/10/1988,6353,6295,FRIENDSWOOD,TX,2308,FAILURE +FIRST FS&LA OF CRAIG,3/10/1988,30101,33042,CRAIG,CO,5506,ASSISTANCE +FIRST INTERCOUNTY BANK OF NEW YORK,3/11/1988,44079,37927,NEW YORK,NY,7969,FAILURE +FIRST FEDERAL SAVINGS BANK,3/11/1988,152339,173986,WATERLOO,IA,82466,ASSISTANCE +FIRST FS&LA OF PADUCAH,3/11/1988,130938,149064,PADUCAH,KY,31796,FAILURE +PERPETUAL S&LA,3/11/1988,112789,110893,WATERLOO,IA,20918,ASSISTANCE +PEOPLES FS&LA,3/11/1988,151264,139171,WATERLOO,IA,27054,ASSISTANCE +FIRST FEDERATED SAVINGS BANK,3/11/1988,141733,155210,N. PALM BEACH,FL,90645,ASSISTANCE +FIRST STATE BANK,10/29/1937,425,391,BARBOURVILLE,KY,,FAILURE +MOREHEAD NATIONAL BANK,3/15/1988,7581,7865,MOREHEAD,KY,974,ASSISTANCE +FIRST NATIONAL BANK OF PORT ALLEN,3/17/1988,19553,19083,PORT ALLEN,LA,4389,FAILURE +STATE BANK OF MORGAN,3/18/1988,20314,19995,MORGAN,MN,2226,FAILURE +CITIZENS STATE BK OF GIBBON,3/18/1988,15051,14828,GIBBON,MN,4145,FAILURE +CENTURY BANK,3/24/1988,70834,69938,TULSA,OK,16959,FAILURE +CASHION COMMUNITY BANK,3/24/1988,6681,6623,CASHION,OK,1978,FAILURE +FIRST NATIONAL BANK OF DEL CITY,3/25/1988,30860,28123,DEL CITY,OK,8953,FAILURE +UNION BANK & TRUST COMPANY,3/31/1988,182510,181779,OKLAHOMA CITY,OK,11088,FAILURE +FIRST BANK & TRUST,3/31/1988,68665,59058,TOMBALL,TX,18657,FAILURE +HOME STATE BANK,4/7/1988,5401,5259,TRENT,TX,1089,FAILURE +FARMERS & MERCHANTS BANK OF ELGIN,10/30/1937,57,35,ELGIN,ND,,FAILURE +CENTRAL NATIONAL BANK,4/7/1988,15915,17433,DALLAS,TX,6156,FAILURE +CITIZENS STATE BANK OF EAGLE BEND,4/8/1988,10011,9897,EAGLE BEND,MN,1673,FAILURE +FIRST FEDERAL OF SHAWNEE,4/8/1988,130697,142378,SHAWNEE,OK,54069,FAILURE +CITIZENS SAVINGS AND LOAN,4/11/1988,36415,41190,EAST ALTON,IL,6100,ASSISTANCE +TRI-CITIES SAVINGS AND LOAN,4/11/1988,53148,43786,KENNEWICK,WA,14176,ASSISTANCE +VALLEY FEDERAL SAVINGS AND LOAN,4/12/1988,80475,90263,ERWIN,TN,7197,ASSISTANCE +JENNINGS BANK,4/14/1988,7087,6978,JENNINGS,KS,736,FAILURE +"CY-FAIR BANK, N.A.",4/14/1988,13897,14240,HARRIS COUNTY,TX,4810,FAILURE +BURNS STATE BANK,4/15/1988,4382,4126,BURNS,KS,567,ASSISTANCE +COLONIAL THRIFT & LOAN ASSOCIATION,4/15/1988,26761,24017,CULVER CITY,CA,4600,FAILURE +CARTER COUNTY COMMERCIAL BANK,10/30/1937,139,109,OLIVE HILL,KY,,FAILURE +METROPOLITAN INDUSTRIAL BANK,4/15/1988,12434,12495,DENVER,CO,4729,FAILURE +MC ALLEN STATE BANK,4/19/1988,580047,556220,MC ALLEN,TX,2199,FAILURE +"FIRST CITY, TEXAS - RICHARDSON",4/20/1988,234196,210940,RICHARDSON,TX,1728,ASSISTANCE +"FIRST CITY, TEXAS - DALLAS",4/20/1988,590295,489266,DALLAS,TX,79115,ASSISTANCE +"FIRST CITY, TEXAS - BEAUMONT",4/20/1988,447439,399545,BEAUMONT,TX,12305,ASSISTANCE +"FIRST CITY, TEXAS - BRYAN",4/20/1988,238427,206807,BRYAN,TX,1538,ASSISTANCE +"FIRST CITY, TEXAS - GRAHAM",4/20/1988,134170,124609,GRAHAM,TX,547,ASSISTANCE +"FIRST CITY, TEXAS - LUFKIN",4/20/1988,156571,139540,LUFKIN,TX,518,ASSISTANCE +"FIRST CITY, TEXAS - MADISONVILLE",4/20/1988,89663,81854,MADISONVILLE,TX,142,ASSISTANCE +"FIRST CITY, TEXAS - MIDLAND",4/20/1988,361162,313208,MIDLAND,TX,16750,ASSISTANCE +FIRST STATE BANK,11/1/1937,80,52,CENTER,ND,,FAILURE +"FIRST CITY, TEXAS - ORANGE",4/20/1988,119659,109669,ORANGE,TX,439,ASSISTANCE +"FIRST CITY, TEXAS - RICHMOND",4/20/1988,74652,70745,RICHMOND,TX,347,ASSISTANCE +"FIRST CITY, TEXAS - SAN ANGELO",4/20/1988,139421,130722,SAN ANGELO,TX,1083,ASSISTANCE +"FIRST CITY, TEXAS - TYLER",4/20/1988,261765,232562,TYLER,TX,22639,ASSISTANCE +"FIRST CITY, TEXAS - LEWISVILLE",4/20/1988,131131,121996,LEWISVILLE,TX,2417,ASSISTANCE +"FIRST CITY, TEXAS - HUMBLE",4/20/1988,78366,76621,HUMBLE,TX,5404,ASSISTANCE +"FIRST CITY, TEXAS - SOUR LAKE",4/20/1988,45778,42262,SOUR LAKE,TX,16,ASSISTANCE +"FIRST CITY, TEXAS - HOUSTON, NA",4/20/1988,4423355,2184608,HOUSTON,TX,720966,ASSISTANCE +"FIRST CITY, TEXAS - AUSTIN",4/20/1988,710493,601289,AUSTIN,TX,77332,ASSISTANCE +"FIRST CITY, TEXAS - LAKE JACKSON",4/20/1988,85810,78764,LAKE JACKSON,TX,181,ASSISTANCE +BANK OF ALBA,11/1/1937,97,79,ALBA,MO,,FAILURE +"FIRST CITY, TEXAS - GRAND PRAIRIE",4/20/1988,79297,74296,GRAND PRAIRIE,TX,141,ASSISTANCE +"FIRST CITY, TEXAS - EL PASO",4/20/1988,391840,339137,EL PASO,TX,904,ASSISTANCE +"FIRST CITY, TEXAS - ARLINGTON",4/20/1988,240782,217397,ARLINGTON,TX,18886,ASSISTANCE +"FIRST CITY, TEXAS - KOUNTZE",4/20/1988,34598,32204,KOUNTZE,TX,27,ASSISTANCE +"FIRST CITY, TEXAS - ALICE",4/20/1988,105915,95493,ALICE,TX,554,ASSISTANCE +"FIRST CITY, TEXAS - EAST DALLAS",4/20/1988,105823,96554,DALLAS,TX,732,ASSISTANCE +"FIRST CITY, TEXAS - GATEWAY",4/20/1988,76478,71496,BEAUMONT,TX,48,ASSISTANCE +"FIRST CITY, TEXAS - CENTRAL",4/20/1988,69512,64841,BEAUMONT,TX,325,ASSISTANCE +"FIRST CITY, TEXAS - FARMERS BRANCH",4/20/1988,161953,149480,FARMERS BRANCH,TX,4172,ASSISTANCE +BANK OF SANTA FE,4/20/1988,95616,91508,SANTA FE,NM,21986,ASSISTANCE +FIRST STATE BANK OF AGRA,5/3/1935,129,96,AGRA,KS,,FAILURE +COMMERCIAL BANK & TRUST COMPANY,11/4/1937,853,733,UNION CITY,IN,,FAILURE +"FIRST CITY, TEXAS - WINDSOR PARK",4/20/1988,126829,118598,SAN ANTONIO,TX,8550,ASSISTANCE +"FIRST CITY, TEXAS - GARLAND",4/20/1988,129803,120150,GARLAND,TX,1608,ASSISTANCE +"FIRST CITY, TEXAS - MARKET CENTER",4/20/1988,68007,64076,DALLAS,TX,5688,ASSISTANCE +"FIRST CITY, TEXAS - NORTHLINE",4/20/1988,61469,61031,HOUSTON,TX,5896,ASSISTANCE +"FIRST CITY, TEXAS - CENTRAL PARK",4/20/1988,177327,170243,SAN ANTONIO,TX,25969,ASSISTANCE +"FIRST CITY, TEXAS - LANCASTER",4/20/1988,81367,76137,LANCASTER,TX,507,ASSISTANCE +"FIRST CITY, TEXAS - ARANSAS PASS",4/20/1988,48882,44859,ARANSAS PASS,TX,203,ASSISTANCE +"FIRST CITY, TEXAS - ALMEDA GENOA",4/20/1988,77939,71486,HOUSTON,TX,201,ASSISTANCE +"FIRST CITY, TEXAS - VALLEY VIEW",4/20/1988,142623,132806,DALLAS,TX,4640,ASSISTANCE +"FIRST CITY, TEXAS - GULFGATE",4/20/1988,168141,154441,HOUSTON,TX,263,ASSISTANCE +BANK OF SWIFTON,11/19/1937,208,157,SWIFTON,AR,,FAILURE +"FIRST CITY, TEXAS - COLLEYVILLE",4/20/1988,55040,48708,COLLEYVILLE,TX,201,ASSISTANCE +"FIRST CITY, TEXAS - CLEAR LAKE",4/20/1988,79781,74665,HOUSTON,TX,1365,ASSISTANCE +"FIRST CITY, TEXAS - HIGHLAND VILLAGE",4/20/1988,147473,138214,HOUSTON,TX,3576,ASSISTANCE +"FIRST CITY, TEXAS - BELLAIRE",4/20/1988,51110,48590,BELLAIRE,TX,1423,ASSISTANCE +"FIRST CITY, TEXAS - INWOOD FOREST",4/20/1988,76232,71687,HOUSTON,TX,1645,ASSISTANCE +"FIRST CITY, TEXAS - CORPUS CHRISTI",4/20/1988,441586,312272,CORPUS CHRISTI,TX,6092,ASSISTANCE +"FIRST CITY, TEXAS - FOREST HILL",4/20/1988,44827,41801,FOREST HILL,TX,168,ASSISTANCE +"FIRST CITY, TEXAS - MEDICAL CENTER",4/20/1988,52437,49193,HOUSTON,TX,155,ASSISTANCE +"FIRST CITY, TEXAS - FONDREN SOUTH",4/20/1988,62474,59880,HOUSTON,TX,2975,ASSISTANCE +"FIRST CITY, TEXAS - CENTRAL ARLINGTON",4/20/1988,91395,83044,ARLINGTON,TX,2977,ASSISTANCE +FIRST STATE BANK OF COBDEN,11/24/1937,,52,COBDEN,IL,,FAILURE +"FIRST CITY, TEXAS - NORTHEAST",4/20/1988,71057,67120,HOUSTON,TX,624,ASSISTANCE +"FIRST CITY, TEXAS - BEAR CREEK",4/20/1988,46004,43926,HARRIS COUNTY,TX,1158,ASSISTANCE +"FIRST CITY, TEXAS - WESTHEIMER",4/20/1988,67027,63658,HOUSTON,TX,2153,ASSISTANCE +"FIRST CITY, TEXAS - NORTH BELT",4/20/1988,56686,53335,HOUSTON,TX,602,ASSISTANCE +"FIRST CITY, TEXAS - PLANO",4/20/1988,59478,58380,PLANO,TX,1983,ASSISTANCE +"FIRST CITY, TEXAS - FORT WORTH",4/20/1988,58766,57223,FORT WORTH,TX,4822,ASSISTANCE +"FIRST CITY, TEXAS - NORTHCHASE",4/20/1988,53558,50584,HOUSTON,TX,1560,ASSISTANCE +"FIRST CITY, TEXAS - WESTHEIMER PLAZA",4/20/1988,62603,61020,HOUSTON,TX,5274,ASSISTANCE +"FIRST CITY, TEXAS - WESTWOOD",4/20/1988,25622,25636,HOUSTON,TX,2679,ASSISTANCE +"FIRST CITY, TEXAS - SAN ANTONIO",4/20/1988,47714,45436,SAN ANTONIO,TX,3164,ASSISTANCE +LOGANVILLE STATE BANK,11/27/1937,,489,LOGANVILLE,WI,,FAILURE +"FIRST CITY, TEXAS - NORTHWEST HILLS",4/20/1988,52682,51066,AUSTIN,TX,1732,ASSISTANCE +FIRST CITY - SIOUX FALLS N.A.,4/20/1988,597688,227736,SIOUX FALLS,SD,0,ASSISTANCE +CITIZENS NATIONAL BANK,4/21/1988,18272,18424,COLORADO SPRINGS,CO,7403,FAILURE +TEXAS NATIONAL BANK,4/21/1988,18482,20172,AUSTIN,TX,8246,FAILURE +UNITY BANK,4/22/1988,7066,6685,DAYTON,OH,1864,FAILURE +THE VILLAGE BANK,4/22/1988,21653,19460,GREAT FALLS,MT,895,FAILURE +BOND COUNTY STATE BANK,4/25/1988,6321,6618,POCAHONTAS,IL,660,ASSISTANCE +CITIZENS BANK OF TULSA,4/28/1988,6693,8443,TULSA,OK,1943,ASSISTANCE +OAK PARK BANK,4/29/1988,21125,19735,OAK PARK HEIGHTS,MN,5898,FAILURE +AMERICAN FS&LA,4/29/1988,145821,194523,ANDERSON,IN,41515,FAILURE +STERLING STATE BANK,11/30/1937,121,84,STERLING,ND,,FAILURE +UNION BANK & TRUST OF DALLAS,5/5/1988,36676,38464,DALLAS,TX,8315,FAILURE +LINCOLN NATIONAL BANK,5/5/1988,12959,12065,ARLINGTON,TX,4238,FAILURE +FOREST CITY BANK & TRUST CO.,5/6/1988,26597,26492,FOREST CITY,IA,733,FAILURE +THE FIRST STATE BANK,5/12/1988,14876,14595,CHILDRESS,TX,3479,FAILURE +WESTSIDE NATIONAL BANK,5/13/1988,32188,38706,HOUSTON,TX,15375,FAILURE +COLORADO COUNTY FS&LA,5/13/1988,212927,224413,COLUMBUS,TX,95229,ASSISTANCE +SECURITY S&LA,5/13/1988,105845,111700,DICKINSON,TX,68101,ASSISTANCE +CAMERON COUNTY S&LA,5/13/1988,27574,26958,SAN BENITO,TX,12055,ASSISTANCE +ALLIANCE S&LA (HOUSTON),5/13/1988,103684,127649,AUSTIN,TX,118132,ASSISTANCE +CARDINAL SAVINGS BANK,5/13/1988,93936,92849,NEWPORT,NC,27519,FAILURE +NEVADA TRUST COMPANY,12/2/1937,242,189,NEVADA,MO,,FAILURE +THE AMERICAN STATE BANK,5/18/1988,62095,58954,YANKTON,SD,265,ASSISTANCE +LAMAR SAVINGS ASSOCIATION,5/18/1988,1939600,2091752,AUSTIN,TX,2017661,ASSISTANCE +BRIERCROFT SAVINGS ASSOCIATION,5/18/1988,867484,658575,AUSTIN,TX,222395,ASSISTANCE +CITY S&LA,5/18/1988,681240,867606,SAN ANGELO,TX,911921,ASSISTANCE +STOCKTON SAVINGS ASSOCIATION,5/18/1988,543024,784479,DALLAS,TX,806320,ASSISTANCE +NATIONAL BANK OF TEXAS,5/19/1988,19430,26140,HOUSTON,TX,13594,FAILURE +UNIVERSAL S&LA,5/24/1988,116778,114814,SCOTTSDALE,AZ,,FAILURE +FIRST FS&LA OF HAMMONTON,5/25/1988,237617,298266,HAMMONTON,NJ,82009,ASSISTANCE +THE FIRST STATE BANK,5/26/1988,39864,39734,ROCKWALL,TX,14784,FAILURE +LONE STAR BANK,5/26/1988,12986,12997,HARRIS COUNTY (BAYTO,TX,2992,FAILURE +PEOPLES UNITED BANK,12/2/1937,,162,SOUTHPORT,NC,,FAILURE +FIRST NATIONAL BANK OF KINGSWOOD,5/26/1988,16080,16207,KINGSWOOD,TX,4554,FAILURE +BLUEBONNET SA OF TEXAS,5/26/1988,24101,29299,HEMPSTEAD,TX,10598,ASSISTANCE +SANDY STATE BANK,5/27/1988,8946,8043,SANDY,UT,1920,FAILURE +GUARANTY BANK,6/2/1988,82097,75487,DALLAS,TX,40662,FAILURE +COMMUNITY STATE BANK,6/2/1988,5073,5000,WHITING,IA,923,FAILURE +SECURITY BANK OF BOULDER,6/2/1988,14137,13760,BOULDER,CO,305,FAILURE +SECURITY BANK OF AURORA,6/2/1988,10901,10124,AURORA,CO,694,FAILURE +RIVER PLAZA NATIONAL BANK,6/2/1988,41811,44406,FORTH WORTH,TX,17355,FAILURE +"WILLIAMSTOWN BANK, N.A.",6/2/1988,23038,22683,HOUSTON,TX,5782,FAILURE +MUSKEGON FS&LA,6/2/1988,204578,195979,MUSKEGON,MI,2004,ASSISTANCE +BIG FALLS STATE BANK,12/17/1937,103,85,BIG FALLS,WI,,FAILURE +LARUE FS&LA,6/3/1988,11956,16176,HODGENVILLE,KY,4015,FAILURE +FRONTIER FEDERAL SAVINGS BANK,6/6/1988,43735,42475,DYERSBURG,TN,10980,ASSISTANCE +PARKWAY BANK & TRUST,6/9/1988,42348,42262,DALLAS,TX,18532,FAILURE +BANK OF IMBODEN,6/14/1988,16230,16446,IMBODEN,AR,2240,ASSISTANCE +CENTURY NATIONAL BANK,6/16/1988,54001,56096,AUSTIN,TX,13758,FAILURE +KINGSLAND NATIONAL BANK,6/16/1988,14066,14697,KINGSLAND,TX,4312,FAILURE +THE LIBERTY BANK OF SEATTLE,6/17/1988,19146,20573,SEATTLE,WA,8367,FAILURE +THE BANK OF WESTMINSTER,6/22/1988,6521,6638,WESTMINSTER,CO,81,FAILURE +FIRST FINANCIAL A SAVINGS ASSOCIATION OF E,6/22/1988,325691,248121,EL PASO,TX,43075,ASSISTANCE +NORTHWEST BANK & TRUST,6/23/1988,97591,92527,HOUSTON,TX,40500,FAILURE +FIRST NAT BK & TR CO. OF MANHASSET,12/20/1937,,1214,MANHASSET,NY,,FAILURE +TEXAS NATIONAL BANK,6/23/1988,14402,14944,VICTORIA,TX,3227,FAILURE +TRI-CITIES BANK & TRUST,6/23/1988,9247,9981,GLENN HEIGHTS,TX,4023,FAILURE +LYNNWOOD S&LA,6/24/1988,24071,24885,LYNNWOOD,WA,3652,ASSISTANCE +STANFORD S&LA,6/24/1988,73494,79825,PALO ALTO,CA,17139,ASSISTANCE +CLAIBORNE BANK & TRUST COMPANY,6/29/1988,13076,12876,HOMER,LA,1268,FAILURE +MERCANTILE BANK & TRUST,6/30/1988,76189,81570,SAN ANTONIO,TX,12418,FAILURE +FIRST NATIONAL BANK,6/30/1988,24477,24193,SHERMAN,TX,5979,FAILURE +REPUBLIC NATIONAL BANK,6/30/1988,24283,26542,NORMAN,OK,7720,FAILURE +MCLEAN S&LA,7/8/1988,318921,326080,MCLEAN,VA,88926,ASSISTANCE +TEXAS BANK,7/14/1988,57193,61494,SAN ANTONIO,TX,11212,ASSISTANCE +THE HARFORD BANK,12/31/1938,893,669,BEL AIR,MD,,FAILURE +THE SECURITY BANK,7/14/1988,9370,9397,WARNER,OK,601,FAILURE +THE AMERICAN BANK,7/14/1988,20789,20360,PALESTINE,TX,3816,FAILURE +ALLEN NATIONAL BANK,7/14/1988,26310,26240,ALLEN,TX,7098,FAILURE +"TEXAS BANK NORTH, NA",7/14/1988,5763,8113,SAN ANTONIO,TX,1563,ASSISTANCE +OAK FOREST NATIONAL BANK,7/15/1988,7381,7657,LONGVIEW,TX,1372,ASSISTANCE +UNION BANK & TRUST,7/21/1988,115430,128969,BARTLESVILLE,OK,33125,FAILURE +THE FIRST NATIONAL BANK OF BLOOMING PRAIRI,7/21/1988,19972,20016,BLOOMING PRAIRIE,MN,2103,FAILURE +PLATTE VALLEY FS&LA,7/21/1988,407559,400105,GERING,NE,,FAILURE +FIRST SECURITY SB,7/21/1988,176541,133121,PLEASANT HILL,CA,44594,ASSISTANCE +FIRST CAPITOL BANK,7/28/1988,50022,46262,WEST COLUMBIA,TX,23327,FAILURE +BLUE SPRINGS STATE BANK,6/1/1935,235,234,BLUE SPRINGS,MO,,FAILURE +WORTHVILLE DEPOSIT BANK,1/11/1938,141,116,WORTHVILLE,KY,,FAILURE +NATIONAL FIDELITY BANK OF SHREVEPORT,7/28/1988,10506,10614,SHREVEPORT,LA,2932,FAILURE +GALVA FS&LA,7/28/1988,12784,13675,GALVA,IL,2836,ASSISTANCE +HOME FS&LA,7/28/1988,115080,126258,PEORIA,IL,28956,ASSISTANCE +MUTUAL FS&LA,7/28/1988,30369,38146,CANTON,IL,11766,ASSISTANCE +FIRST REPUBLICBANK-CLIFTON,7/29/1988,82273,76899,CLIFTON,TX,22951,FAILURE +FIRST REPUBLICBANK-FORNEY,7/29/1988,54599,50879,FORNEY,TX,16394,FAILURE +"FIRST REPUBLICBANK-TEMPLE, N.A.",7/29/1988,163642,150365,TEMPLE,TX,13935,FAILURE +"FIRST REPUBLICBANK-ABILENE, N.A.",7/29/1988,218162,201164,ABILENE,TX,52255,FAILURE +"FIRST REPUBLICBANK- AUSTIN, N.A.",7/29/1988,1688329,1314891,AUSTIN,TX,45903,FAILURE +"FIRST REPUBLICBANK-BROWNWOOD, N.A.",7/29/1988,126695,118839,BROWNWOOD,TX,28484,FAILURE +BANK OF DECATUR,1/19/1938,97,84,DECATUR,AR,,FAILURE +"FIRST REPUBLICBANK-CONROE, N.A.",7/29/1988,207680,200637,CONROE,TX,48771,FAILURE +"FIRST REPUBLICBANK-CORSICANA, N.A.",7/29/1988,200642,186918,CORSICANA,TX,15984,FAILURE +"FIRST REPUBLICBANK-DALLAS, N.A.",7/29/1988,17085655,7680063,DALLAS,TX,2017459,FAILURE +"FIRST REPUBLICBANK-DENISON, N.A.",7/29/1988,143514,136310,DENISON,TX,29099,FAILURE +"FIRST REPUBLICBANK-ENNIS, N.A.",7/29/1988,96091,90622,ENNIS,TX,21312,FAILURE +"FIRST REPUBLICBANK-FT. WORTH, N.A.",7/29/1988,1956560,1568528,FT. WORTH,TX,155126,FAILURE +"FIRST REPUBLICBANK-GALVESTON, N.A.",7/29/1988,257165,242631,GALVESTON,TX,13935,FAILURE +"FIRST REPUBLICBANK-GREENVILLE, N.A.",7/29/1988,85852,79582,GREENVILLE,TX,16189,FAILURE +"FIRST REPUBLICBANK-HARLINGEN, N.A.",7/29/1988,213556,193137,HARLINGEN,TX,47337,FAILURE +"FIRST REPUBLICBANK-HENDERSON, N.A.",7/29/1988,128870,119410,HENDERSON,TX,36886,FAILURE +FIRST STATE BANK OF WOLSEY,1/21/1938,123,90,WOLSEY,SD,,FAILURE +"FIRST REPUBLICBANK-HOUSTON, N.A.",7/29/1988,2712008,2275270,HOUSTON,TX,551446,FAILURE +"FIRST REPUBLICBANK-LUBBOCK, N.A.",7/29/1988,528101,475829,LUBBUCK,TX,1639,FAILURE +FIRST REPUBLICBANK-MINERAL WELLS,7/29/1988,174415,168305,MINERAL WELLS,TX,53075,FAILURE +FIRST REPUBLICBANK-MT. PLEASANT,7/29/1988,148141,137048,MT. PLEASANT,TX,32788,FAILURE +"FIRST REPUBLICBANK-ODESSA, N.A.",7/29/1988,174996,165964,ODESSA,TX,38116,FAILURE +"FIRST REPUBLICBANK-PLANO, N.A.",7/29/1988,199707,182873,PLANO,TX,37501,FAILURE +"FIRST REPUBLICBANK-RICHMOND, N.A",7/29/1988,99889,92479,RICHMOND,TX,29304,FAILURE +NATIONAL BANK OF FT. SAM HOUSTON,7/29/1988,634806,501900,FT. SAM HOUSTON,TX,96928,FAILURE +FIRST REPUBLICBANK-STEPHENVILLE,7/29/1988,124191,116809,STEPHENVILLE,TX,19673,FAILURE +"FIRST REPUBLICBANK-TYLER, N.A.",7/29/1988,610442,536496,TYLER,TX,67624,FAILURE +THE WOODMAN STATE BANK,1/22/1938,,152,WOODMAN,WI,,FAILURE +"FIRST REPUBLICBANK-WACO, N.A.",7/29/1988,716274,591858,WACO,TX,59018,FAILURE +FIRST REPUBLICBANK-WICHITA FALLS,7/29/1988,304233,270730,WICHITA FALLS,TX,42419,FAILURE +FIRST REPUBLICBANK-LUFKIN,7/29/1988,224868,192393,LUFKIN,TX,21517,FAILURE +"FIRST REPUBLICBANK-CLEBURNE, N.A",7/29/1988,118351,110894,CLEBURNE,TX,14549,FAILURE +FIRST REPUBLICBANK-SAN ANTONIO,7/29/1988,797201,726755,SAN ANTONIO,TX,57378,FAILURE +"FIRST REPUBLICBANK-HILLSBORO, N.A.",7/29/1988,68086,63008,HILLSBORO,TX,20902,FAILURE +"FIRST REPUBLICBANK-MALAKOFF, N.A",7/29/1988,49588,47271,MALAKOFF,TX,16599,FAILURE +FIRST REPUBLICBANK-JEFFERSON COUNTY,7/29/1988,240727,223894,BEAUMONT,TX,46927,FAILURE +FIRST REPUBLICBANK-VICTORIA,7/29/1988,175166,163033,VICTORIA,TX,21517,FAILURE +FIRST REPUBLICBANK-A&M,7/29/1988,101039,95773,COLLEGE STATION,TX,11681,FAILURE +BELLEVILLE BANK & TRUST COMPANY,1/26/1938,,2795,BELLEVILLE,IL,,FAILURE +FIRST REPUBLICBANK-PARIS,7/29/1988,79339,74097,PARIS,TX,20492,FAILURE +"FIRST REPUBLICBANK-EL PASO, N.A.",7/29/1988,217709,208191,EL PASO,TX,35042,FAILURE +FIRST REPUBLICBANK-WILLIAMSON CN,7/29/1988,43993,42024,AUSTIN,TX,14549,FAILURE +"FIRST REPUBLICBANK-MIDLAND, N.A.",7/29/1988,659374,574547,MIDLAND,TX,72747,FAILURE +WESTLAKE THRIFT & LOAN ASSOCIATION,7/29/1988,55152,51232,WESTLAKE VILLAGE,CA,7745,FAILURE +AMERICAN OF ANADARKO,7/29/1988,65139,144455,ANADARKO,OK,102446,FAILURE +FIRST REPUBLICBANK DELAWARE,8/2/1988,582350,164867,NEWARK,DE,249,FAILURE +FIRST OF LONGVIEW,8/2/1988,78095,76320,LONGVIEW,WA,13626,ASSISTANCE +ALASKA CONTINENTAL BANK,8/3/1988,51496,52254,ANCHORAGE,AK,20536,FAILURE +FARMERS & MERCHANTS BANK OF ELMO,8/4/1988,9189,8826,ELMO,MO,2617,FAILURE +THE TROUT CREEK STATE BANK,1/28/1938,46,22,TROUT CREEK,MI,,FAILURE +SECURITY STATE BANK,8/9/1988,15355,15225,CASEY,IA,160,ASSISTANCE +FIRST FS&LA OF TAYLORVILLE,8/10/1988,34604,37588,TAYLORVILLE,IL,2765,ASSISTANCE +GALENA PARK STATE BANK,8/11/1988,24849,28927,GALENA PARK,TX,7195,FAILURE +FIRST BANK,8/11/1988,46240,46060,BALCH SPRINGS,TX,5153,FAILURE +WEST HOUSTON NATIONAL BANK,8/11/1988,26448,26732,HOUSTON,TX,6668,FAILURE +CAPITOL FS&LA,8/11/1988,229108,219651,EVERGREEN PARK,IL,35165,ASSISTANCE +FIRST FEDERAL SAVINGS BANK,8/11/1988,20663,22676,SHENADOAH,IA,2152,ASSISTANCE +WESTERN FS&LA,8/11/1988,23915,39121,COUNCIL BLUFFS,IA,11727,ASSISTANCE +CITIZENS STATE BANK,8/18/1988,11052,10811,MAUD,OK,2464,FAILURE +TOWN & COUNTRY NATIONAL BANK,8/18/1988,29583,30759,HARLINGEN,TX,11086,FAILURE +THE BANK OF FREMONT,1/29/1938,,341,FREMONT,NC,,FAILURE +FIRST NATIONAL BANK AUSTIN,8/18/1988,25972,27175,AUSTIN,TX,12107,FAILURE +GLADEWATER FS&LA,8/18/1988,24873,35849,GLADEWATER,TX,22709,ASSISTANCE +COMMERCE FS&LA,8/18/1988,29533,32710,COMMERCE,TX,9877,ASSISTANCE +IRVING S&LA,8/18/1988,53054,105877,IRVING,TX,116964,ASSISTANCE +MAJESTIC SAVINGS ASSOCIATION,8/18/1988,283491,333007,MCKINNEY,TX,226270,ASSISTANCE +RICHARDSON SAVINGS ASSOCIATION,8/18/1988,706150,747388,DALLAS,TX,487468,ASSISTANCE +LONGVIEW S&LA,8/18/1988,145595,158898,LONGVIEW,TX,102369,ASSISTANCE +PARIS S&LA,8/18/1988,254076,401083,PARIS,TX,464485,ASSISTANCE +AMERICAN BANC SAVINGS ASSOCIAT,8/18/1988,62839,62342,DALLAS,TX,40782,ASSISTANCE +SOUTHLAND SAVINGS ASSOCIATION,8/18/1988,31530,34451,LONGVIEW,TX,21346,ASSISTANCE +FARMERS SECURITY BANK,2/1/1938,213,186,MAYWOOD,NE,,FAILURE +SKYLINE SAVINGS ASSOCIATION,8/18/1988,118198,116479,DALLAS,TX,61321,ASSISTANCE +MARSHALL COUNTY BANK,8/19/1988,10737,9411,BRITTON,SD,229,FAILURE +FEDERATED S&LA,8/19/1988,150067,158079,SAN ANTONIO,TX,97813,FAILURE +MULTIBANC SAVINGS ASSOCIATION,8/19/1988,190745,222964,DALLAS,TX,163249,FAILURE +SUNBELT SAVINGS ASSOCIATION OF TEXAS,8/19/1988,2214129,3255324,DALLAS,TX,3787923,FAILURE +SUMMIT SAVINGS ASSOCIATION,8/19/1988,185901,320801,DALLAS,TX,325242,ASSISTANCE +TEXANA S&LA,8/19/1988,78057,75516,TEXARKANA,TX,48114,FAILURE +FIRST CITY SAVINGS ASSOCIATION,8/19/1988,227003,258514,IRVING,TX,199999,FAILURE +BANK OF THE MID-SOUTH,8/25/1988,41788,41110,BOSSIER CITY,LA,6800,FAILURE +"BANCFIRST-WESTLAKE, N.A.",8/25/1988,14956,16307,AUSTIN,TX,5040,FAILURE +THE FIRST STATE BANK OF LATHROP,2/1/1938,163,125,LATHROP,MO,,FAILURE +HIGHLAND PARK NATIONAL BANK,8/25/1988,26301,31196,DALLAS,TX,17773,FAILURE +BIWABIK STATE BANK,8/26/1988,3238,3227,BIWABIK,MN,451,FAILURE +WASHINGTON FSB OF STILLWATER,8/26/1988,295753,319359,STILLWATER,MN,165268,ASSISTANCE +PIONEER FS&LA IN MASON CITY,8/26/1988,314016,310042,MASON CITY,IA,141233,ASSISTANCE +FIRST FS&LA OF BRAINERD,8/26/1988,86617,104175,BRAINERD,MN,54434,ASSISTANCE +FIRST FS&LA OF HIBBING,8/26/1988,47252,67222,HIBBING,MN,32226,ASSISTANCE +FIRST FS&LA OF GRAND RAPIDS,8/26/1988,105887,96938,GRAND RAPIDS,MN,44577,ASSISTANCE +PEOPLES S&LA,8/26/1988,210759,203719,OWANTONNA,MN,35510,ASSISTANCE +NORTHWEST FS&LA,8/26/1988,26686,25102,BOISE,ID,2460,ASSISTANCE +HOMESTATE S&LA,8/26/1988,182052,222291,HAYWARD,CA,45660,ASSISTANCE +POLLOCK STATE BANK,2/1/1938,103,56,POLLOCK,SD,,FAILURE +COMMERCE FSB,8/26/1988,40107,50776,KNOXVILLE,TN,21200,ASSISTANCE +MUTUAL FS&LA,8/31/1988,173026,198967,OKLAHOMA CITY,OK,77097,ASSISTANCE +HOME S&LA,8/31/1988,173454,205081,BARTLESVILLE,OK,84081,FAILURE +FIRST FS&LA,8/31/1988,106744,133016,ELK CITY,OK,95013,FAILURE +MIDAMERICA FS&LA,8/31/1988,482515,391585,TULSA,OK,117861,ASSISTANCE +PEOPLES FS&LA,8/31/1988,49904,46844,ARDMORE,OK,8109,FAILURE +KINGFISHER FS&LA,8/31/1988,124441,127635,KINGFISHER,OK,50255,FAILURE +"HOME SAVINGS BANK, FA",8/31/1988,264146,211547,LAWTON,OK,93912,FAILURE +CAPITOL FSB,8/31/1988,117377,112369,OKLAHOMA CITY,OK,35552,ASSISTANCE +PHOENIX FS&LA,8/31/1988,419405,382716,MUSKOGEE,OK,142405,FAILURE +ANCHOR STATE BANK,6/4/1935,891,718,WEST MILWAUKEE,WI,,FAILURE +BANK OF MARION,2/7/1938,639,554,MARION,AR,,FAILURE +FRONTIER SAVINGS & LOAN,8/31/1988,1030832,826792,PONCA CITY,OK,382313,FAILURE +HERITAGE S&LA,8/31/1988,80818,90205,ELK CITY,OK,82679,FAILURE +FIRST OKLAHOMA SAVINGS BANK,8/31/1988,37322,44404,TULSA,OK,25201,ASSISTANCE +MINGO TRUST & SAVINGS BANK,9/1/1988,12060,11419,MINGO,IA,775,FAILURE +COMMERCIAL STATE BANK,9/1/1988,25607,26129,SAN AUGUSTINE,TX,1741,FAILURE +PISGAH SAVINGS BANK,9/1/1988,9672,9315,PISGAH,IA,2976,FAILURE +LAKELAND STATE BANK,9/1/1988,9264,9199,CAMDEN COUNTY,MO,546,FAILURE +AMERICAN BANK OF MUSKOGEE,9/1/1988,28571,29844,MUSKOGEE,OK,10822,FAILURE +FIRST NATIONAL BANK OF ATASCOCITA,9/1/1988,9362,10771,HARRIS COUNTY,TX,2835,FAILURE +PIONEER NATIONAL BANK,9/1/1988,20289,22550,ARLINGTON,TX,6209,FAILURE +BANK OF STRAFFORD,2/10/1938,136,122,STRAFFORD,MO,,FAILURE +ARSENAL SA,9/1/1988,158346,178689,INDIANAPOLIS,IN,44834,ASSISTANCE +FIDELITY FS&LA,9/1/1988,37141,39463,BERWYN,IL,3722,ASSISTANCE +FRANKTON FS&LA,9/1/1988,30550,33065,FRANKTON,IN,2997,ASSISTANCE +CITIZENS FS&LA,9/1/1988,57944,64557,JACKSONVILLE,FL,125,ASSISTANCE +UNITED SA OF CENTRAL INDIANA,9/1/1988,57345,65067,TIPTON,IN,6896,ASSISTANCE +COOSA FS&LA,9/6/1988,72057,76164,GADSDEN,AL,13121,ASSISTANCE +AMERICAN S&LA,9/7/1988,30162228,15411331,STOCKTON,CA,5369617,ASSISTANCE +FIRST FEDERAL SB,9/7/1988,122899,135472,ROGERS,AR,21750,ASSISTANCE +THE SYLVIA STATE BANK,9/8/1988,5894,5334,SYLVIA,KS,1481,FAILURE +BAY CITY FS&LA,9/9/1988,157930,163007,BAY CITY,TX,255814,ASSISTANCE +PEOPLES BANK & TRUST COMPANY,2/10/1938,,123,SPARTA,TN,,FAILURE +GULF COAST SAVINGS ASSOCIATION,9/9/1988,59914,72296,RICHMOND,TX,86621,ASSISTANCE +TOWN & COUNTRY BANK,9/15/1988,30846,38385,BIXBY,OK,19343,FAILURE +CITIZENS BANK OF LITTLETON,9/15/1988,6365,6259,LITTLETON,CO,1860,FAILURE +TRINITY NATIONAL BANK,9/15/1988,33137,33753,SAN ANTONIO,TX,10667,FAILURE +CAPITAL NATIONAL BANK,9/15/1988,24363,25701,FORT WORTH,TX,7165,FAILURE +RIVER CITY BANK,9/15/1988,15070,17721,CASTLE HILLS,TX,7379,FAILURE +GUARANTY NATIONAL BANK,9/16/1988,21063,22633,AUSTIN,TX,4185,ASSISTANCE +ULTIMATE SAVINGS BANK,9/16/1988,206490,194303,RICHMOND,VA,34874,FAILURE +MOUNTAINWEST S&LA,9/21/1988,284465,262256,OGDEN,UT,,FAILURE +LOVES PARK FSB,9/21/1988,40841,44986,LOVES PARK,IL,5024,ASSISTANCE +THE BRIGGSDALE STATE BANK,2/10/1938,14,8,BRIGGSDALE,CO,,FAILURE +THE FIRST STATE BANK IN TALIHINA,9/22/1988,15813,14744,TALIHINA,OK,2801,FAILURE +THE SECURITY STATE BANK,9/22/1988,9045,8862,COMANCHE,OK,1641,FAILURE +COMMUNITY BANK & TRUST,9/22/1988,14945,14338,ROCKDALE,TX,3687,FAILURE +PEOPLES STATE BANK OF MEEKER,9/23/1988,3894,3765,MEEKER,CO,807,FAILURE +CHAMPION SAVINGS ASSOCIATION,9/23/1988,656720,804134,HOUSTON,TX,427581,ASSISTANCE +PEOPLES S&LA,9/23/1988,22515,19750,LA GRANDE,OR,19257,FAILURE +CONTINENTAL S&LA,9/26/1988,363720,585384,BELLAIRE,TX,,FAILURE +FIRST STATE BANK,9/29/1988,12224,11253,SEMINOLE,OK,1618,FAILURE +WATSON STATE BANK,9/30/1988,13731,12865,WATSON,MN,5104,FAILURE +FIRST FS&LA,9/30/1988,1013313,904454,AUSTIN,TX,480053,ASSISTANCE +THE FIRST NATIONAL BANK OF PURDON,2/12/1938,63,36,PURDON,TX,,FAILURE +CITIZENS FS&LA OF NEW CASTLE,9/30/1988,51855,56976,NEW CASTLE,IN,5281,ASSISTANCE +GREAT WEST SAVINGS BANK,9/30/1988,179890,182323,AUSTIN,TX,190599,ASSISTANCE +DELTA SAVINGS ASSOCIATION OF TEXAS,9/30/1988,202597,313331,ALVIN,TX,258282,ASSISTANCE +CREDITBANC SAVINGS ASSOCIATION,9/30/1988,593147,718584,AUSTIN,TX,732124,ASSISTANCE +FRANKLIN SAVINGS ASSOCIATION,9/30/1988,410855,615638,AUSTIN,TX,680973,ASSISTANCE +ADOBE SAVINGS BANK,9/30/1988,48124,43437,CONCORD,CA,3758,ASSISTANCE +GUARANTY FS&LA,9/30/1988,1960018,2268079,DALLAS,TX,2124303,ASSISTANCE +LIBERTY BANK & TRUST COMPANY,10/3/1988,48687,45800,WARSAW,IN,7771,FAILURE +FIDELITY NATIONAL BANK OF FORT WORTH,10/6/1988,33844,32509,FORT WORTH,TX,10570,FAILURE +FINANCIAL SECURITY S&LA,10/6/1988,150140,166306,DELRAY BEACH,FL,,FAILURE +FARMERS BANK OF BLACKBURN,2/17/1938,79,51,BLACKBURN,MO,,FAILURE +LIBERTY FSB,10/7/1988,130432,137813,RATON,NM,104609,FAILURE +FIRST FS&LA OF MAYFIELD,10/12/1988,51455,72754,MAYFIELD,KY,22101,ASSISTANCE +FIRST FSB OF INDIANA,10/12/1988,271525,287031,MERRILLVILLE,IN,22472,ASSISTANCE +CAPITAL FS&LA,10/12/1988,51414,55716,GARY,IN,6531,ASSISTANCE +OLNEY SAVINGS ASSOCIATION,10/14/1988,1342144,880869,OLNEY,TX,727106,ASSISTANCE +SECURITY FS&LA,10/14/1988,396016,289942,PAMPA,TX,141632,ASSISTANCE +FIRST FS&LA,10/14/1988,214118,203756,AMARILLO,TX,157714,ASSISTANCE +SAN ANGELO SAVINGS ASSOCIATION,10/14/1988,124534,162840,SAN ANGELO,TX,177991,ASSISTANCE +ODESSA SAVINGS ASSOCIATION,10/14/1988,132133,156610,ODESSA,TX,90886,ASSISTANCE +SOUTHWEST S&LA,10/14/1988,154345,328807,ABILENE,TX,415692,ASSISTANCE +STATE BANK OF SURPRISE,2/28/1938,65,56,SURPRISE,NE,,FAILURE +BANC HOME SAVINGS ASSOCIATION,10/14/1988,603367,680882,MIDLAND,TX,44168,ASSISTANCE +SOUTHERN S&LA,10/14/1988,154850,160257,BROWNWOOD,TX,109608,ASSISTANCE +HEART O TEXAS SAVINGS ASSOCIATION,10/14/1988,269532,201699,MIDLAND,TX,97431,ASSISTANCE +SHAMROCK FEDERAL SAVINGS BANK,10/14/1988,102296,103952,SHAMROCK,TX,81878,ASSISTANCE +PETROPLEX SAVINGS ASSOCIATION,10/14/1988,113922,178122,MIDLAND,TX,156507,ASSISTANCE +COMMERCIAL BANK & TRUST COMPANY,10/20/1988,58768,56391,METAIRIE,LA,13216,FAILURE +SECURITY BANK,10/20/1988,21789,20851,DALLAS,TX,6596,FAILURE +PEOPLES FSB,10/25/1988,341126,347272,WOOSTER,OH,33413,ASSISTANCE +MEDICAL CENTER STATE BANK,10/27/1988,8655,8562,OKLAHOMA CITY,OK,2078,FAILURE +FRONTIER NATIONAL BANK,10/27/1988,39529,39271,ROUND ROCK,TX,11517,FAILURE +CITIZENS STATE BANK,3/2/1938,118,94,HARTFORD,AR,,FAILURE +ROUND ROCK NATIONAL BANK,10/27/1988,37001,37104,ROUND ROCK,TX,19961,FAILURE +LINCOLN FS&LA,11/1/1988,1253024,964594,WESTFIELD,NJ,210257,ASSISTANCE +SOUTHSIDE S&L,11/1/1988,54128,54705,LIMA,OH,12120,ASSISTANCE +RELIANCE FS&LA,11/2/1988,64346,82502,RAHWAY,NJ,11398,ASSISTANCE +SOUTHWEST NATIONAL BANK,11/3/1988,14015,16150,HOUSTON,TX,4120,FAILURE +MT. ZION STATE BANK,11/4/1988,26444,25661,MOUNT ZION,IL,0,FAILURE +THE FIRST NATIONAL BANK OF GRACEMONT,11/10/1988,6571,6841,GRACEMONT,OK,1042,FAILURE +AVOYELLES TRUST & SAVINGS BANK,11/10/1988,27150,30223,BUNKIE,LA,8784,FAILURE +MIAMI NATIONAL BANK,11/10/1988,9249,9584,MIAMI,OK,2420,FAILURE +BANK OF THE NORTHWEST,11/10/1988,19537,18010,WOODWARD,OK,4555,FAILURE +"BANK OF NORTHAMPTON, INCORPORATED",3/3/1938,,300,NASSAWADOX,VA,,FAILURE +AMERICAN NATIONAL BANK,11/10/1988,22369,22850,TYLER,TX,5324,FAILURE +CYPRUS SA,11/10/1988,172828,203688,PLANTATION,FL,98869,FAILURE +"ALLIANCE BANK, N.A.",11/16/1988,8898,11860,OKLAHOMA CITY,OK,4145,ASSISTANCE +EAST TEXAS STATE BANK,11/17/1988,21278,20632,BUNA,TX,4671,FAILURE +THE BANK OF KERRVILLE,11/17/1988,39821,34839,KERRVILLE,TX,11240,FAILURE +FIRST NATIONAL BANK,11/18/1988,262163,297944,COVINGTON,LA,124318,FAILURE +TESORO S&LA,11/18/1988,248056,334675,LAREDO,TX,230435,ASSISTANCE +UNION BANK OF HOUSTON,12/1/1988,55448,49067,HOUSTON,TX,12614,FAILURE +"OAK LAWN BANK, N.A.",12/1/1988,10283,10674,DALLAS,TX,2788,FAILURE +ENTERPRISE NATIONAL BANK,12/1/1988,5278,5066,ENGLEWOOD,CO,1596,FAILURE +HOME SAVINGS BANK,3/5/1938,,1246,DES MOINES,IA,,FAILURE +TEXANA NATIONAL BANK OF BELTON,12/1/1988,19482,19144,BELTON,TX,6098,FAILURE +CARDINAL FSB,12/1/1988,1471492,1458128,CLEVELAND,OH,452662,ASSISTANCE +UNITED FS&LA,12/1/1988,92527,91975,ABERDEEN,SD,8015,ASSISTANCE +FIRST FS&LA,12/1/1988,265719,241623,COLUMBUS,GA,817,ASSISTANCE +NORTHPARK SAVINGS ASSOCIATION,12/1/1988,126611,163830,RICHARDSON,TX,163174,ASSISTANCE +WAUKOMIS STATE BANK,12/8/1988,12047,11852,WAUKOMIS,OK,1565,FAILURE +FIRST BANK & TRUST CO.,12/8/1988,42025,45179,DUNCAN,OK,9603,FAILURE +"RESOURCE BANK, N.A.",12/8/1988,34725,37292,HOUSTON,TX,12388,FAILURE +CARIBANK,12/9/1988,525792,522990,DANIA,FL,39026,FAILURE +SILVERADO S&LA,12/9/1988,2315295,1767010,DENVER,CO,1299606,FAILURE +BANK OF AMERICA TRUST CO.,4/19/1934,1435,1064,PITTSBURGH,PA,,FAILURE +STATE BANK OF SUAMICO,6/24/1935,161,128,SUAMICO,WI,,FAILURE +FIRST STATE BANK,3/14/1938,212,142,KULM,ND,,FAILURE +CENTRAL ARKANSAS S&LA,12/9/1988,10129,12470,CONWAY,AR,2163,FAILURE +MIDAMERICA SB,12/12/1988,244346,232325,WATERLOO,IA,14000,ASSISTANCE +EASTERN WASHINGTON S&LA,12/14/1988,51490,32340,WENATCHEE,WA,1102,ASSISTANCE +FIRST NATIONAL BANK IN BOGATA,12/15/1988,13244,13294,BOGATA,TX,1239,FAILURE +FIRST NATIONAL BANK IN CENTER,12/15/1988,26056,26150,CENTER,TX,5547,FAILURE +TEXAS NATIONAL BANK,12/15/1988,37661,47122,DALLAS,TX,17580,FAILURE +TEXAS BANK OF PLANO,12/15/1988,15055,15329,PLANO,TX,5303,FAILURE +CRESCENT CITY BANK & TRUST COMPANY,12/15/1988,23990,23137,NEW ORLEANS,LA,6394,FAILURE +AMERICAN HOME SAVINGS,12/15/1988,403016,382743,SALEM,OR,145343,ASSISTANCE +COMMUNITY FIRST FED SAVINGS,12/15/1988,386016,308114,VANCOUVER,WA,73319,ASSISTANCE +THE BORDEN STATE BANK,3/18/1938,165,135,BORDEN,IN,,FAILURE +ROOKS COUNTY FSA,12/15/1988,32001,35172,PLAINVILLE,KS,19292,ASSISTANCE +FIRST SOUTHWEST BANK,12/16/1988,9826,9710,ELDORADO,OK,2387,FAILURE +ROCKY MOUNTAIN FS&LA,12/16/1988,307198,268112,CHEYNNE,WY,102648,ASSISTANCE +FIRST DEARBORN,12/16/1988,167332,230493,DEARBORN,MI,78745,ASSISTANCE +UNITED SB OF WYOMING,12/16/1988,220486,275462,CHEYNNE,WY,120580,ASSISTANCE +BLOOMFIELD S&LA,12/16/1988,688676,607435,BIRMINGHAM,MI,119568,ASSISTANCE +FIRST INDUSTRIAL BANK OF ROCKY FORD,12/16/1988,12489,11414,ROCKY FORD,CO,6696,FAILURE +OHIO VALLEY,12/17/1988,203929,238040,STEUBENVILLE,OH,63182,ASSISTANCE +FIRST BORDER SB,12/17/1988,111026,107187,PIQUA,OH,19569,ASSISTANCE +BATON ROUGE BANK & TRUST COMPANY,12/21/1988,111498,112697,BATON ROUGE,LA,18002,ASSISTANCE +MERCHANTS' AND MECHANICS' SAVINGS BANK OF NORFOLK,3/26/1938,,2941,NORFOLK,VA,,FAILURE +MINERAL WELLS S&LA,12/22/1988,31482,34801,MINERAL WELLS,TX,11114,ASSISTANCE +HOME S&LA,12/22/1988,278460,394667,LUFKIN,TX,356328,ASSISTANCE +MESQUITE S&LA,12/22/1988,47028,46438,MESQUITE,TX,18765,ASSISTANCE +FIRST WESTERN S&LA,12/22/1988,83368,111295,COLORADO CITY,TX,72076,ASSISTANCE +COMMODORE SAVINGS ASSOCIATION,12/22/1988,499435,1139370,DALLAS,TX,1345027,ASSISTANCE +LAMESA FS&LA,12/22/1988,89329,80659,LAMESA,TX,20659,ASSISTANCE +FIRST FS&LA,12/22/1988,129260,113233,BIG SPRING,TX,73814,ASSISTANCE +HOME SA,12/22/1988,495499,543605,HOUSTON,TX,309710,ASSISTANCE +SENTRY SAVINGS ASSOCIATION,12/22/1988,87039,151451,SLATON,TX,155964,ASSISTANCE +VISTA SAVINGS ASSOCIATION,12/22/1988,133101,148549,ODESSA,TX,121993,ASSISTANCE +MARGATE TRUST COMPANY,4/2/1938,702,367,MARGATE CITY,NJ,,FAILURE +INTERWEST SAVINGS ASSOCIATION,12/22/1988,109397,176395,FORT WORTH,TX,168427,ASSISTANCE +SOUTHERN FEDERAL BANC S&LA,12/22/1988,91347,166081,LANCASTER,TX,171862,ASSISTANCE +RELIANCE SAVINGS ASSOCIATION,12/22/1988,41507,55756,HOUSTON,TX,59854,ASSISTANCE +METROPLEX FEDERAL SAVINGS ASSOCIATION,12/22/1988,64809,66900,HURST,TX,43503,ASSISTANCE +VIRGINIA FS&LA,12/23/1988,678944,517043,RICHMOND,VA,13500,ASSISTANCE +GIBRALTAR SA,12/27/1988,6459408,4592498,HOUSTON,TX,2853843,ASSISTANCE +FIRST TEXAS SAVINGS ASSOCIATION,12/27/1988,3127779,2695907,DALLAS,TX,2526719,ASSISTANCE +KILLEEN S&LA,12/27/1988,163402,267027,KILLEEN,TX,195099,ASSISTANCE +MONTFORT SAVINGS ASSOCIATION,12/27/1988,1815791,671321,DALLAS,TX,657668,ASSISTANCE +FIRST FINANCIAL SB,12/28/1988,262690,211449,DES MOINES,IA,85658,ASSISTANCE +THE FIRST STATE BANK,4/9/1938,117,83,COLFAX,ND,,FAILURE +FIRST FS&LA,12/29/1988,30584,47699,LULING,TX,47651,ASSISTANCE +YOAKUM FS&LA,12/29/1988,43628,43572,YOAKUM,TX,27099,ASSISTANCE +SEGUIN SAVINGS ASSOCIATION,12/29/1988,140515,169424,SEGUIN,TX,159143,ASSISTANCE +AMERICAN SB,12/29/1988,886999,845553,SPRINGFIELD,IL,176089,ASSISTANCE +CHARTER SAVINGS S&LA,12/29/1988,396828,551930,CORPUS CHRISTI,TX,614825,ASSISTANCE +PEOPLES S&LA,12/29/1988,171117,382844,LLANO,TX,380914,ASSISTANCE +BURNET S&LA,12/29/1988,28097,27399,BURNET,TX,11511,ASSISTANCE +UNION SA,12/29/1988,72106,73823,SAN ANTONIO,TX,42689,ASSISTANCE +LEE SAVINGS ASSOCIATION,12/29/1988,73911,87541,GIDDINGS,TX,62677,ASSISTANCE +INDEPENDENCE S&LA,12/29/1988,59110,60626,GONZALES,TX,53214,ASSISTANCE +THE CITY NATIONAL BANK OF HARRISBURG,4/9/1938,,2795,HARRISBURG,IL,,FAILURE +RANCHERS SAVINGS ASSOCIATION,12/29/1988,56154,93256,JOHNSON CITY,TX,112395,ASSISTANCE +KEYSTONE S&LA,12/29/1988,30712,35063,LAMPASAS,TX,23826,ASSISTANCE +BAYVIEW FSA,12/29/1988,64613,70389,CORPUS CHRISTI,TX,48169,ASSISTANCE +TRACY-COLLINS BANK & TRUST COMPANY,12/30/1988,213259,196005,SALT LAKE CITY,UT,88,ASSISTANCE +GREAT FALLS FS&LA,12/30/1988,127952,72662,GREAT FALLS,MT,10682,ASSISTANCE +JACKSON COUNTY FSA,12/30/1988,266123,274978,MEDFORD,OR,72446,ASSISTANCE +FIRST FS&LA OF JACKSONVILLE,12/30/1988,1243932,1013543,JACKSONVILLE,FL,25725,ASSISTANCE +NORTHWEST FS&LA,12/30/1988,129073,144646,SPENCER,IA,66541,ASSISTANCE +UNITED SAVINGS ASSOCIATION OF TEXAS,12/30/1988,4644939,3496819,HOUSTON,TX,1520256,ASSISTANCE +COLUMBIA FS&LA,12/30/1988,3125050,1813720,ENGLEWOOD,CO,747209,ASSISTANCE +BANK OF ELLENBORO,4/9/1938,,54,ELLENBORO,NC,,FAILURE +PATHWAY FINANCIAL,12/30/1988,1222965,938160,CHICAGO,IL,498015,ASSISTANCE +HOME FS&LA,12/30/1988,46496,51570,SPENCER,IA,9031,ASSISTANCE +BEACH FS&LA,12/30/1988,1141671,1190559,BOYNTON BEACH,FL,1291299,ASSISTANCE +PEORIA S&LA,12/31/1988,171600,148055,PEORIA,IL,19528,ASSISTANCE +BROWARD FS&LA,12/31/1988,535666,494346,SUNRISE,FL,221291,ASSISTANCE +BANK OF BENTON,1/5/1989,12202,12132,BENTON,LA,3365,FAILURE +FIRST STATE BANK,1/12/1989,10466,10594,HARPER,TX,2687,FAILURE +COMMERCIAL STATE BANK,1/12/1989,49186,48602,HOUSTON,TX,4837,FAILURE +THE NATIONAL BANK OF BOSSIER CITY,1/12/1989,73322,76353,BOSSIER CITY,LA,31262,FAILURE +ROLLING HILLS STATE BANK,1/12/1989,13212,13099,PIEDMONT,OK,1766,FAILURE +CAMDEN SAFE DEPOSIT & TRUST COMPANY,4/11/1938,,22564,CAMDEN,NJ,,FAILURE +WEST BELT NATIONAL BANK,1/12/1989,26121,30236,HOUSTON,TX,10815,FAILURE +ORLEANS BANK AND TRUST COMPANY,1/12/1989,24862,24478,NEW ORLEANS,LA,6540,FAILURE +OAK HILL NATIONAL BANK,1/12/1989,18195,18166,TRAVIS COUNTY,TX,5522,FAILURE +THE PLANTERS BANK & TRUST COMPANY,1/19/1989,57312,57894,HAYNESVILLE,LA,10167,FAILURE +MERCHANTS STATE BANK,1/19/1989,121963,124594,DALLAS,TX,20984,FAILURE +FIRST NATIONAL BANK OF CEDAR PARK,1/19/1989,18609,18912,CEDAR PARK,TX,6929,FAILURE +SOUTHERN FEDERAL SB,1/19/1989,76623,68505,THOMASVILLE,GA,16715,FAILURE +CITIZENS STATE BANK,1/26/1989,15630,14900,EARTH,TX,4304,FAILURE +"COMMUNITY BANK, NATIONAL ASSOCIATION",1/26/1989,8556,9446,DECKER PRAIRIE,TX,5127,FAILURE +FIRST STATE BANK OF TEXAS,1/26/1989,16339,18370,DUNCANVILLE,TX,5351,FAILURE +WEST JERSEY TRUST COMPANY,4/11/1938,,8985,CAMDEN,NJ,,FAILURE +OAKWOOD NATIONAL BANK,1/27/1989,23011,26831,ENID,OK,7394,FAILURE +FIRST FS&LA IN NEW ALBANY,1/27/1989,20761,17480,NEW ALBANY,MS,4890,FAILURE +CARVER S&LA,1/27/1989,265763,285969,ESCONDIDO,CA,35888,FAILURE +METROPOLITAN NATIONAL BANK,1/31/1989,4438,6396,SAN ANTONIO,TX,2296,ASSISTANCE +ALASKA STATEBANK,2/3/1989,90791,96858,ANCHORAGE,AK,17317,FAILURE +COOK COUNTY FS&LA,2/3/1989,164016,170962,CHICAGO,IL,55136,ASSISTANCE +BALTIMORE FEDERAL FINANCIAL,2/7/1989,1566752,1252969,BALTIMORE,MD,357885,FAILURE +PACIFIC SAVINGS BANK,2/7/1989,1117704,1019051,COSTA MESA,CA,188260,FAILURE +GILL SA,2/7/1989,1207294,1448432,SAN ANTONIO,TX,1659803,FAILURE +FREEDOM S & LA,2/7/1989,1402115,1132175,TAMPA,FL,329653,FAILURE +FIRST STATE BANK OF IPSWICH,4/12/1938,210,184,IPSWICH,SD,,FAILURE +FIRST BANK & TRUST,2/9/1989,148098,144662,BRYAN,TX,30009,FAILURE +CITIZENS BANK,2/9/1989,100126,102130,HOUSTON,TX,28589,FAILURE +CITIZENS BANK HOUSTON,2/9/1989,40169,37102,HOUSTON,TX,17042,FAILURE +DESERET S & L ASSOC.,2/10/1989,159337,177688,SALT LAKE CITY,UT,88043,FAILURE +FIRST FEDERAL OF ARKANSAS,2/10/1989,1583318,1201845,LITTLE ROCK,AR,792616,FAILURE +SAVERS FS & LA,2/10/1989,806012,788880,LITTLE ROCK,AR,618396,FAILURE +BRIGHT BANC,2/10/1989,4388466,3004443,DALLAS,TX,1307798,FAILURE +SANDIA FS & LA,2/10/1989,747076,1075651,ALBUQUERQUE,NM,1050422,FAILURE +SIGNAL S&LA,2/10/1989,46132,52873,SIGNAL HILL,CA,2877,FAILURE +MIDWEST FEDERAL SAVINGS,2/13/1989,3255576,2238263,MINNEAPOLIS,MN,754794,FAILURE +THE FIRST NATIONAL BANK OF PENDER,6/29/1935,301,195,PENDER,NE,,FAILURE +BANK OF HUMBOLDT,4/19/1938,194,131,HUMBOLDT,SD,,FAILURE +UNIVERSITY FEDERAL SAVINGS,2/14/1989,4480389,3776427,HOUSTON,TX,2177985,FAILURE +FIRST CONTINENTAL NATIONAL BANK,2/15/1989,9035,8541,HOUSTON,TX,2093,FAILURE +THE HOME STATE BANK,2/16/1989,1731,1706,ARCADIA,KS,263,FAILURE +LOUISIANA BANK & TRUST COMPANY,2/16/1989,270401,276308,SHREVEPORT,LA,70473,FAILURE +SECURITY BANK,2/16/1989,19334,19194,HOUSTON,TX,5067,FAILURE +TEXAS NATIONAL BANK,2/16/1989,39677,57767,HOUSTON,TX,24824,FAILURE +WESTPOINT NATIONAL BANK,2/16/1989,8252,11047,SAN ANTONIO,TX,5821,FAILURE +THE FIRST STATE BANK,2/17/1989,272709,206634,ABILENE,TX,85736,FAILURE +ANCHOR SA,2/17/1989,834034,596548,KANSAS CITY,KS,133114,FAILURE +BLUE VALLEY FS & LA,2/17/1989,839230,820206,KANSAS CITY,MO,233113,FAILURE +FIRST STATE BANK,4/19/1938,186,144,TURTLE LAKE,ND,,FAILURE +AMERICAN S & LA,2/17/1989,2180662,1390076,SALT LAKE CITY,UT,152495,FAILURE +"SUN SAVINGS ASSOCIATION, FA",2/17/1989,188821,186032,KANSAS CITY,KS,66541,FAILURE +COMMUNITY SAVING & LOAN,2/17/1989,185407,161093,FOND DU LAC,WI,27155,FAILURE +MIDWEST FED. S & L ASSOC.,2/17/1989,139096,119723,NEBRASKA CITY,NE,32005,FAILURE +CONCORDIA FEDERAL BANK FOR SAVINGS,2/17/1989,468800,423864,LANSING,IL,63182,FAILURE +PLATTE VALLEY FS & LA,2/17/1989,316765,320752,GERING,NE,181099,FAILURE +EQUITABLE FEDERAL SAVINGS BANK,2/17/1989,225241,205386,FREMONT,NE,28607,FAILURE +GUARANTY FED. S & L ASSOC.,2/17/1989,381335,398552,BIRMINGHAM,AL,55864,FAILURE +NORTH JERSEY FEDERAL SAV. ASSOC.,2/17/1989,278145,304265,PASSAIC,NJ,131532,FAILURE +OCCIDENTAL/NEBRASKA FSB,2/17/1989,677311,529857,OMAHA,NE,155679,FAILURE +CAROLINE STATE BANK,4/20/1938,168,134,CAROLINE,WI,,FAILURE +NILE VALLEY FEDERAL S & L ASSOC.,2/17/1989,56264,64068,SCOTTSBLUFF,NE,38924,FAILURE +SOUTHWEST S & LA,2/17/1989,2265334,1755845,PHOENIX,AZ,723170,FAILURE +FIRST FS & LA,2/17/1989,334418,391792,LARGO,FL,99288,FAILURE +SECURITY S & LA,2/17/1989,626922,1052619,SCOTTSDALE,AZ,788548,FAILURE +COLUMBIA FED. SAVINGS BANK,2/17/1989,145634,143925,WESTPORT,CT,19019,FAILURE +ELYSIAN FEDERAL SAVINGS BANK,2/17/1989,198693,200589,HOBOKEN,NJ,30897,FAILURE +INDEPENDENCE FS & LA,2/17/1989,207028,346408,BATESVILLE,AR,303459,FAILURE +WESTWOOD S & L ASSOC.,2/17/1989,328396,397326,LOS ANGELES,CA,236661,FAILURE +HORIZON FED. S & L ASSOC.,2/17/1989,380658,395977,METAIRIE,LA,250165,FAILURE +SOUTHERN FLORIDABANC FEDERAL,2/17/1989,143273,256172,BOCA RATON,FL,161958,FAILURE +STATE BANK OF IRENE,4/25/1938,176,142,IRENE,SD,,FAILURE +"FRENCH MARKET HOMESTEAD, FSA",2/17/1989,250776,237884,METAIRIE,LA,81252,FAILURE +UNIVERSAL SAVINGS & LOAN,2/17/1989,92684,103075,SCOTTSDALE,AZ,22493,FAILURE +MOUNTAINWEST S & L ASSOC.,2/17/1989,241532,227455,OGDEN,UT,71419,FAILURE +MID-STATE S&LA,2/24/1989,28388,29833,CHAMPAIGN,IL,8009,FAILURE +FIRST VALLEY S&LA,2/24/1989,11947,12870,PIKEVILLE,TN,5093,FAILURE +COMMERCE SA,2/28/1989,807256,801342,SAN ANTONIO,TX,595212,FAILURE +THE BARBER COUNTY S & L ASSOC.,3/2/1989,47511,41714,MEDICINE LODGE,KS,15351,FAILURE +PEOPLES S & L ASSOC.,3/2/1989,84337,71078,PARSONS,KS,13814,FAILURE +MID AMERICA FED. S & L ASSOC.,3/2/1989,83343,87854,PARSONS,KS,6226,FAILURE +VALLEY FS & LA OF HUTCHINSON,3/2/1989,222449,199062,HUTCHINSON,KS,103273,FAILURE +SUSSEX STATE BANK,5/14/1938,,290,SUSSEX,WI,,FAILURE +SAN ANTONIO SAVINGS,3/2/1989,2637921,1946200,SAN ANTONIO,TX,821419,FAILURE +SHAWNEE FED. S & L ASSOC.,3/2/1989,221120,196614,TOPEKA,KS,6,FAILURE +LANDMARK SAVINGS BANK FSB,3/2/1989,132289,153945,HOT SPRINGS,AR,87653,FAILURE +FIRST FSB OF KANSAS,3/2/1989,155938,168278,WELLINGTON,KS,59911,FAILURE +FIRST FEDERAL SAVINGS/HUTCHINSON,3/2/1989,183526,171906,HUTCHINSON,KS,75118,FAILURE +FIRST FS & LA OF COFFEYVILLE,3/2/1989,90553,95592,COFFEYVILLE,KS,45737,FAILURE +FIRST FED. S & L ASSOC.,3/2/1989,125628,112268,FAYETTEVILLE,AR,29055,FAILURE +FIRST FED. S & L ASSOC.,3/2/1989,51090,54028,MALVERN,AR,19495,FAILURE +FIRST FEDERAL BANK OF ALASKA,3/2/1989,137633,192285,ANCHORAGE,AK,133969,FAILURE +ALAMO SA OF TEXAS,3/2/1989,569948,627644,SAN ANTONIO,TX,703278,FAILURE +CITIZENS STATE BANK OF ANDOVER,5/17/1938,78,48,ANDOVER,SD,,FAILURE +FIRST STATE SAVINGS BANK,3/2/1989,107606,128466,MOUNTAIN HOME,AR,52219,FAILURE +PERMIAN S & L ASSOC.,3/2/1989,10849,12050,KERMIT,TX,2471,FAILURE +COLONIAL SAVINGS ASSOCIATION,3/2/1989,70304,64220,LIBERAL,KS,45740,FAILURE +SOUTHMOST S & L,3/2/1989,95761,113005,BROWNSVILLE,TX,59276,FAILURE +PADRE FEDERAL S & L,3/2/1989,18422,31880,CORPUS CHRISTI,TX,24265,FAILURE +COMMONWEALTH S & L ASSOC.,3/2/1989,37061,35661,OSCEOLA,AR,15247,FAILURE +MISSION SA OF TEXAS,3/2/1989,97768,101383,SAN ANTONIO,TX,83523,FAILURE +HOME SAVINGS BANK,3/2/1989,91476,82681,ANCHORAGE,AK,63198,FAILURE +FIRST STATE SAVINGS,3/2/1989,216989,325050,SAN ANTONIO,TX,307570,FAILURE +SUBURBAN SAVINGS ASSOC.,3/2/1989,49224,50250,SAN ANTONIO,TX,29466,FAILURE +FARMERS SAVINGS BANK,5/19/1938,186,163,ANKENY,IA,,FAILURE +VISION BANC SAVINGS ASSOC.,3/2/1989,77305,93129,KINGSVILLE,TX,78589,FAILURE +MADISON GUARANTY S & LA,3/2/1989,114698,98830,MCCRORY,AR,61787,FAILURE +UNIPOINT FED. SAVINGS BANK,3/2/1989,18901,28249,TRUMANN,AR,18319,FAILURE +HOME FED. S & L ASSOC.,3/2/1989,37215,72094,MOUNTAIN HOME,AR,56785,FAILURE +ELMWOOD FED. S & L ASSOC.,3/2/1989,57436,48338,HARAHAN,LA,25243,FAILURE +LA HACIENDA SAVINGS ASSOC.,3/2/1989,69720,116370,SAN ANTONIO,TX,118928,FAILURE +ENTERPRISE FEDERAL SAVINGS,3/2/1989,63543,66995,MARRERO,LA,35326,FAILURE +FOUNTAINBLEAU FEDERAL,3/2/1989,38718,37257,SLIDELL,LA,26311,FAILURE +GIBRALTAR S & L ASSOC.,3/2/1989,71820,71343,ANNAPOLIS,MD,7489,FAILURE +BEXAR SAVINGS ASSOCIATION,3/2/1989,813605,799152,SAN ANTONIO,TX,652855,FAILURE +GERMAN STATE BANK OF BEULAH,5/31/1938,122,100,BEULAH,ND,,FAILURE +FIRST SAVINGS OF LOUISIANA,3/2/1989,25882,44738,LA PLACE,LA,34350,FAILURE +TOPEKA SAVINGS,3/2/1989,96590,108400,TOPEKA,KS,50263,FAILURE +CITIZENS BANK AND TRUST,3/9/1989,14235,16762,CALVERT,TX,5333,FAILURE +LAKEWAY NATIONAL BANK,3/9/1989,16693,16830,AUSTIN,TX,2329,FAILURE +BANK OF THE WEST,3/9/1989,46672,46519,AUSTIN,TX,15795,FAILURE +BANKERS S & L ASSOC.,3/9/1989,106442,115052,GALVESTON,TX,20189,FAILURE +FIRST FED. S & L ASSOC.,3/9/1989,300987,249784,ATLANTA,GA,18185,FAILURE +PEOPLES SAVINGS ASSOC.,3/9/1989,107314,109426,ST. JOSEPH,MI,5,FAILURE +CONCORD-LIBERTY FED. S & L ASSOC.,3/9/1989,220282,238378,MONROEVILLE,PA,19366,FAILURE +OTERO S & L ASSOC.,3/9/1989,558585,481675,COLORADO SPRINGS,CO,306099,FAILURE +LEOPOLIS STATE BANK,6/3/1938,205,143,LEOPOLIS,WI,,FAILURE +MESA FS & LA OF COLORADO,3/9/1989,117449,108848,GRAND JUNCTION,CO,6322,FAILURE +VALLEY FEDERAL S & L ASSOC.,3/9/1989,83809,116689,GRAND JUNCTION,CO,86743,FAILURE +MODERN FED. S & L ASSOC.,3/9/1989,70408,71495,GRAND JUNCTION,CO,2200,FAILURE +FIRST FED. S & LA OF COLORADO SPR.,3/9/1989,354939,313501,COLORADO SPRINGS,CO,194784,FAILURE +ALPINE SAVINGS,3/9/1989,57654,43892,STEAMBOAT SPRINGS,CO,16740,FAILURE +LIBERTY COUNTY FS & LA,3/9/1989,43757,45939,LIBERTY,TX,16111,FAILURE +SUN S & LA,3/9/1989,289521,259865,PARKER,CO,162106,FAILURE +CENTURY FEDERAL SAVINGS BANK,3/9/1989,73942,75103,TRENTON,TN,15288,FAILURE +HILL FINANCIAL SA,3/9/1989,3004007,2473161,RED HILL,PA,730668,FAILURE +LIBERTY BELL SAVINGS ASSOC.,3/9/1989,90309,86399,BEAVER FALLS,PA,8,FAILURE +RUSSELL STATE BANK & TRUST COMPANY,6/17/1938,217,185,RUSSELL,IA,,FAILURE +VALLEY FEDERAL SAVINGS,3/9/1989,180609,263820,ROSWELL,NM,161092,FAILURE +BENJAMIN FRANKLIN SA,3/9/1989,2641392,2004722,HOUSTON,TX,882240,FAILURE +FIRST FED. S & L ASSOC.,3/9/1989,32804,35411,SUMMERVILLE,GA,5245,FAILURE +BAYSHORE SA,3/9/1989,39353,56792,LAPORTE,TX,32994,FAILURE +SPRING BRANCH S & LA,3/9/1989,99874,148131,HOUSTON,TX,102508,FAILURE +BANCPLUS SAVINGS ASSOCIATION,3/9/1989,751461,923026,PASADENA,TX,964160,FAILURE +CITIZENS OF TEXAS S & L ASSOC.,3/9/1989,76368,104539,BAYTOWN,TX,83319,FAILURE +AMERICAN FS & LA,3/9/1989,188882,151090,ALBUQUERQUE,NM,52896,FAILURE +FIRST SAVINGS BANK OF ALABAMA,3/9/1989,26035,24016,HAMILTON,AL,1941,FAILURE +AMERIWAY SAVINGS,3/9/1989,176543,236618,HOUSTON,TX,208016,FAILURE +BANK OF GRANTVILLE,7/20/1935,91,48,GRANTVILLE,GA,,FAILURE +CENTRAL SAVINGS BANK,6/22/1938,,1361,NEWPORT,KY,,FAILURE +AMERICAN S & LA OF BRAZORIA,3/9/1989,281282,327461,LAKE JACKSON,TX,243504,FAILURE +TRINITY VALLEY SAVINGS,3/9/1989,91864,87258,CLEVELAND,TX,23066,FAILURE +FIRST CAPITAL SAVINGS ASSOC./TEXAS,3/9/1989,70918,108657,HOUSTON,TX,75415,FAILURE +UNIVERSAL SA,3/9/1989,142144,260435,HOUSTON,TX,289958,FAILURE +CENTURY SAVINGS & LOAN,3/9/1989,58656,87812,BAYTOWN,TX,57443,FAILURE +HUMBLE S & L ASSOC.,3/9/1989,50315,76538,HUMBLE,TX,62186,FAILURE +FIRST EQUITY SA,3/9/1989,87146,120497,TOMBALL,TX,91331,FAILURE +WESTERN GULF SAVINGS,3/9/1989,154812,242971,BAY CITY,TX,272685,FAILURE +UNITED GUARANTY FED. SAVINGS BANK,3/9/1989,11474,13068,TULLAHOMA,TN,2687,FAILURE +LINCOLN FS & LA,3/9/1989,72216,64940,MT. CARMEL,TN,19159,FAILURE +THE BANK OF ASHE,6/24/1938,,312,JEFFERSON,NC,,FAILURE +GERMANTOWN TRUST SAVINGS,3/9/1989,135929,105912,GERMANTOWN,TN,38196,FAILURE +COMMONWEALTH SAVINGS ASSOC.,3/9/1989,1647893,1608452,HOUSTON,TX,1613353,FAILURE +SOUTHEASTERN SAVINGS ASSOC.,3/9/1989,44709,73046,DAYTON,TX,79538,FAILURE +COLORADO S & L ASSOC.,3/9/1989,54311,52967,ENGLEWOOD,CO,26816,FAILURE +VILLAGE SAVINGS FSB,3/9/1989,93753,155057,HOUSTON,TX,116336,FAILURE +SUN COUNTRY SB OF NEW MEXICO,3/9/1989,66520,76663,ALBUQUERQUE,NM,54554,FAILURE +ROCKY MOUNTAIN S & L ASSOC.,3/9/1989,18197,17951,WOODLAND PARK,CO,10199,FAILURE +CITY SAVINGS ASSOC.,3/9/1989,33762,40546,LEAGUE CITY,TX,24158,FAILURE +PHENIX FED. S & L ASSOC.,3/9/1989,150259,194750,PHENIX CITY,AL,69917,FAILURE +"CONTINENTAL SAVINGS, A FS & LA",3/9/1989,354586,587427,BELLAIRE,TX,803336,FAILURE +COMMERCIAL BANK OF MARYLAND,7/1/1938,,1410,FREDERICK,MD,,FAILURE +"BANKERS TRUST OF LOUISIANA, NA",3/10/1989,83009,88903,KENNER,LA,22732,FAILURE +FIRST SOUTH SA,3/15/1989,277984,454602,HOUSTON,TX,551352,FAILURE +THE FARMERS & MERCHANTS STATE BANK,3/16/1989,22534,22005,BALLINGER,TX,2116,FAILURE +"THE FARMERS STATE BANK, BOGUE",3/16/1989,8044,7962,BOGUE,KS,1685,FAILURE +LIVINGSTON BANK,3/16/1989,106250,104264,DENHAM SPRINGS,LA,16487,FAILURE +MERCHANTS MARINE BANK,3/16/1989,30798,30355,PORT ISABEL,TX,12155,FAILURE +ISLAND BANK,3/16/1989,17538,17217,SOUTH PADRE ISLAND,TX,6215,FAILURE +FIRST FED. S & L ASSOC.,3/16/1989,196488,201160,SHREVEPORT,LA,99402,FAILURE +AMERICAN SECURITY FS & LA,3/16/1989,67176,49872,CHICAGO,IL,2631,FAILURE +FIDELITY S & LA,3/16/1989,312510,262333,PORT ARTHUR,TX,123052,FAILURE +BANK OF MILBURN,7/11/1938,79,62,MILBURN,KY,,FAILURE +MIDWEST HOME FSB,3/16/1989,123561,106123,BELLEVILLE,IL,15646,FAILURE +MADISON COUNTY FED. S & L ASSOC.,3/16/1989,132245,131364,GRANITE CITY,IL,24395,FAILURE +MIDWESTERN SA,3/16/1989,110707,101243,MACOMB,IL,24561,FAILURE +CONTINENTAL FS & LA,3/16/1989,645144,528350,OKLAHOMA CITY,OK,198949,FAILURE +HOME FS & LA OF CENTRALIA,3/16/1989,47627,48100,CENTRALIA,IL,3640,FAILURE +RUSK FED. S & L ASSOC.,3/16/1989,44556,47154,RUSK,TX,24593,FAILURE +FIRST FED. S & LA OF SEMINOLE,3/16/1989,33255,35362,SEMINOLE,OK,5523,FAILURE +JASPER FS & LA,3/16/1989,135619,154546,JASPER,TX,79975,FAILURE +CHILLICOTHE FED. S & L ASSOC.,3/16/1989,51039,53947,CHILLICOTHE,IL,4375,FAILURE +THE DUNCAN S & L ASSOC.,3/16/1989,148576,138261,DUNCAN,OK,17876,FAILURE +HUDSON STATE BANK,7/12/1938,254,209,HUDSON,SD,,FAILURE +FIRST FED. S & L OF THE FLORIDA KEYS,3/16/1989,219923,192594,KEY WEST,FL,49350,FAILURE +MERITBANC SAVINGS ASSOCIATION,3/16/1989,272134,322329,HOUSTON,TX,226024,FAILURE +FIRST FS & LA,3/16/1989,39532,43409,BATON ROUGE,LA,33673,FAILURE +SKOKIE FS & LA,3/16/1989,1004662,769144,SKOKIE,IL,117327,FAILURE +HOME SAVINGS FSLA,3/16/1989,140570,138666,JOLIET,IL,11521,FAILURE +FIRST FED. S & L ASSOC.,3/16/1989,64310,64430,NEW IBERIA,LA,15820,FAILURE +SABINE VALLEY S & L ASSOC.,3/16/1989,41055,29142,CENTER,TX,10965,FAILURE +SOUTHEAST TEXAS FSA,3/16/1989,31198,27169,WOODVILLE,TX,8546,FAILURE +ILLINOIS SAVINGS BANK,3/16/1989,78018,67821,PEORIA,IL,4580,FAILURE +JEFFERSON S & L ASSOC.,3/16/1989,119085,125667,BEAUMONT,TX,85086,FAILURE +BETHEL SPRINGS BANK,7/22/1938,,39,BETHEL SPRINGS,TN,,FAILURE +FIRST FED. S & L ASSOC.,3/16/1989,23545,16195,EUNICE,LA,5537,FAILURE +COMMUNITY FED. S & L ASSOC.,3/16/1989,10303,14438,TAMPA,FL,13294,FAILURE +MIAMI SAVINGS BANK,3/16/1989,176615,158830,MIAMI,FL,73463,FAILURE +SAVINGS OF TEXAS ASSOC.,3/16/1989,63602,79847,JACKSONVILLE,TX,62725,FAILURE +GOLDEN TRIANGLE S & LA,3/16/1989,26934,61798,BRIDGE CITY,TX,58276,FAILURE +GENERAL SAVINGS ASSOC.,3/16/1989,74579,50179,HENDERSON,TX,25443,FAILURE +DEEP EAST TEXAS SA,3/16/1989,53599,56442,JASPER,TX,28012,FAILURE +FIRST SAV. ASSOC. SOUTHEAST TEXAS,3/16/1989,48690,44360,SILSBEE,TX,22894,FAILURE +PEOPLES FS & LA OF THIBODAUX,3/16/1989,19610,21085,THIBODAUX,LA,7209,FAILURE +TIMBERLAND FSA,3/16/1989,60252,49042,NACOGDOCHES,TX,14297,FAILURE +TAKOMA PARK BANK,7/23/1938,,2048,TAKOMA PARK,MD,,FAILURE +BRICKELLBANC SAVINGS ASSOC.,3/16/1989,38750,36615,MIAMI,FL,15339,FAILURE +LINCOLN S & LA,3/16/1989,260627,263358,MIAMI,FL,67673,FAILURE +RIVER CITY FEDERAL SAVINGS,3/16/1989,61213,98298,BATON ROUGE,LA,86579,FAILURE +FAMILY FS & LA,3/16/1989,27626,23614,SHREVEPORT,LA,19653,FAILURE +FIRST VENICE S & LA,3/16/1989,58572,62424,VENICE,FL,1053,FAILURE +SPINDLETOP SA,3/16/1989,180509,325273,BEAUMONT,TX,266768,FAILURE +EVANGELINE FEDERAL SAVINGS & LOAN,3/16/1989,37396,79422,LAFAYETTE,LA,60858,FAILURE +ROYAL PALM SAVINGS BANK,3/16/1989,563989,491035,WEST PALM BEACH,FL,187947,FAILURE +FIRST SAVINGS OF AMERICA FS & LA,3/16/1989,23495,47254,ORLAND PARK,IL,31435,FAILURE +LIBERTY FEDERAL SAVINGS,3/16/1989,60102,91063,NEW PORT RICHEY,FL,35291,FAILURE +HUTCHINSON COUNTY BANK,7/27/1938,273,215,PARKSTON,SD,,FAILURE +SECURITY SAVINGS ASSOCIATION,3/16/1989,236328,471415,TEXARKANA,TX,563188,FAILURE +ACADIA SAVINGS & LOAN,3/16/1989,89672,137710,CROWLEY,LA,98792,FAILURE +FINANCIAL SECURITY S & L ASSOC.,3/16/1989,142304,150437,DELRAY BEACH,FL,57846,FAILURE +ENTERPRISE BANK OF FLORIDA,3/17/1989,28020,26309,MIAMI LAKES,FL,3613,FAILURE +FIRST STATE BANK,3/23/1989,8962,9174,ROGERS,TX,2856,FAILURE +INDUSTRIAL BANK,3/23/1989,64773,65314,HOUSTON,TX,7524,FAILURE +FIRST BANK OF ROWLETT,3/23/1989,35636,34788,ROWLETT,TX,6945,FAILURE +"MBANK GREENVILLE, NATIONAL ASSOC",3/28/1989,153330,152701,GREENVILLE,TX,4857,FAILURE +"MBANK AUSTIN, NATIONAL ASSOCIATION",3/28/1989,642018,560075,AUSTIN,TX,87156,FAILURE +"MBANK BRENHAM, NATIONAL ASSOCIATION",3/28/1989,140264,132362,BRENHAM,TX,5166,FAILURE +WINOOSKI SAVINGS BANK,7/28/1938,4008,2479,WINOOSKI,VT,,FAILURE +"MBANK CORSICANA, NATIONAL ASSOCIATION",3/28/1989,165084,160801,CORSICANA,TX,900,FAILURE +"MBANK DALLAS, NATIONAL ASSOCIATION",3/28/1989,6556056,4033803,DALLAS,TX,1610809,FAILURE +"MBANK FORT WORTH, NATIONAL ASSOC",3/28/1989,749114,624217,FORT WORTH,TX,153292,FAILURE +"MBANK LONGVIEW, NATIONAL ASSOC",3/28/1989,264994,254672,LONGVIEW,TX,11292,FAILURE +"MBANK MARSHALL, NATIONAL ASSOC",3/28/1989,210336,196957,MARSHALL,TX,4998,FAILURE +"MBANK JEFFERSON COUNTY, NA",3/28/1989,330935,307311,PORT ARTHUR,TX,16205,FAILURE +"MBANK ALAMO, NATIONAL ASSOCIATION",3/28/1989,784855,708152,SAN ANTONIO,TX,82477,FAILURE +"MBANK SHERMAN, NATIONAL ASSOC",3/28/1989,282027,271442,SHERMAN,TX,3352,FAILURE +"MBANK WICHITA FALLS, NATIONAL ASSOC",3/28/1989,484828,450521,WICHITA FALLS,TX,15697,FAILURE +"MBANK ROUND ROCK, NATIONAL ASSOC",3/28/1989,164598,162588,ROUND ROCK,TX,17897,FAILURE +STATE BANK OF RICE LAKE,8/15/1938,946,841,RICE LAKE,WI,,FAILURE +"MBANK ODESSA, NATIONAL ASSOC",3/28/1989,317623,298538,ODESSA,TX,7059,FAILURE +"MBANK ORANGE, NATIONAL ASSOC",3/28/1989,149828,144488,ORANGE,TX,4169,FAILURE +"MBANK MIDCITIES, NATIONAL ASSOC",3/28/1989,357997,331362,ARLINGTON,TX,6654,FAILURE +"MBANK DENTON COUNTY, NATIONAL ASSOC",3/28/1989,220122,212291,LEWISVILLE,TX,1286,FAILURE +"MBANK ABILENE, NATIONAL ASSOCIATION",3/28/1989,199025,213188,ABILENE,TX,73254,FAILURE +"MBANK HOUSTON, NATIONAL ASSOC",3/28/1989,3307498,2566889,HOUSTON,TX,731556,FAILURE +"MBANK THE WOODLANDS, NATIONAL ASSOC",3/28/1989,160119,155632,THE WOODLANDS,TX,6909,FAILURE +HARVARD BANK,3/30/1989,23144,22822,TULSA,OK,4034,FAILURE +BALDWIN COUNTY FED. SAVINGS BANK,3/30/1989,171484,156816,ROBERTSDALE,AL,7328,FAILURE +BROADVIEW SAVINGS BANK,3/30/1989,1778493,1136571,CLEVELAND,OH,94678,FAILURE +MERCHANTS & FARMERS BANK,7/22/1935,227,132,MARIETTA,GA,,FAILURE +BANK OF HIGHMORE (DREW BROS.),8/16/1938,109,79,HIGHMORE,SD,,FAILURE +CARTERSVILLE FSB OF GEORGIA,3/30/1989,56726,58748,CARTERSVILLE,GA,0,ASSISTANCE +DURAND FS & LA,3/30/1989,106603,118954,DURAND,WI,41838,FAILURE +MIDLAND BUCKEYE SAVINGS,3/30/1989,218774,212267,ALLIANCE,OH,24858,FAILURE +CITY FS & LA,3/30/1989,711958,648197,BIRMINGHAM,AL,53289,FAILURE +HERITAGE FS & LA,3/30/1989,311668,254102,MONROE,NC,49165,FAILURE +COMMUNITY FED. S & L ASSOC.,3/30/1989,9421,10033,NEWPORT NEWS,VA,1326,FAILURE +GREAT ATLANTIC SAVINGS BANK,3/30/1989,126807,123803,MANTEO,NC,48275,FAILURE +FIRST SERVICE BANK FOR SAVINGS,3/31/1989,880658,683356,LEOMINSTER,MA,288210,FAILURE +"PREMIER BANK, A NATIONAL ASSOCIATION",3/31/1989,37064,35617,DALLAS,TX,16360,FAILURE +INTERSTATE BANK OF COMMERCE,3/31/1989,6406,6969,MIAMI,FL,1925,FAILURE +THE FARMERS & MERCHANTS BANK,8/18/1938,119,95,MADISON,MO,,FAILURE +"GIBRALTAR SAVINGS BANK, FSB",3/31/1989,1684381,1368547,SEATTLE,WA,59,FAILURE +"GIBRALTAR SAVINGS, FA",3/31/1989,13382327,7575392,SIMI VALLEY,CA,94595,FAILURE +MURRAY SAVINGS ASSOCIATION,4/5/1989,1440640,1168399,DALLAS,TX,384405,FAILURE +FIRST NATIONAL BANK OF NOCONA,4/6/1989,23286,24092,NOCONA,TX,4703,FAILURE +ST. TAMMANY NATIONAL BANK,4/6/1989,47115,44659,MANDEVILLE,LA,5832,FAILURE +RESOURCE SA,4/6/1989,616052,426296,DENISON,TX,337549,FAILURE +CENTENNIAL SAVINGS BANK,4/6/1989,105980,82680,GREENVILLE,TX,32178,FAILURE +LIBERTYVILLE FED. S & L ASSOC.,4/6/1989,100959,95454,LIBERTYVILLE,IL,8,FAILURE +FIRST FED. S & L OF SOUTHEAST MO.,4/6/1989,385144,332070,CAPE GIRARDEAU,MO,33437,FAILURE +FIRST OF KANSAS SAVINGS,4/6/1989,53903,46245,HAYS,KS,5970,FAILURE +HOME BANK & TRUST COMPANY,8/19/1938,401,278,WINCHESTER,TN,,FAILURE +FIRST FED. SAVINGS BANK,4/6/1989,55556,55660,EAST ALTON,IL,7205,FAILURE +CASS FS & LA OF ST. LOUIS,4/6/1989,52439,65752,FLORISSANT,MO,12578,FAILURE +AMERICAN FS & LA OF COLORADO,4/6/1989,720437,681014,COLORADO SPRINGS,CO,443513,FAILURE +FIRST FS & LA OF ESTHERVILLE,4/6/1989,60582,58862,ESTHERVILLE,IA,9682,FAILURE +FINANCIAL FEDERAL SA,4/6/1989,161427,173078,JOPLIN,MO,44820,FAILURE +CENTRAL TEXAS S & LA,4/6/1989,216105,211337,WACO,TX,119282,FAILURE +SIOUX VALLEY S & LA,4/6/1989,61788,90792,CHEROKEE,IA,41941,FAILURE +EQUITY FEDERAL SAVINGS BANK,4/6/1989,4467,4999,DENVER,CO,1906,FAILURE +EXCEL BANC SAVINGS ASSOC.,4/6/1989,146706,158926,LAREDO,TX,69635,FAILURE +STATE MUTUAL FED. S & L ASSOC.,4/6/1989,8656,9772,JACKSON,MS,4006,FAILURE +HITCHCOCK STATE BANK,8/24/1938,79,54,HITCHCOCK,SD,,FAILURE +HERITAGE BANC SAVINGS,4/6/1989,177727,146382,DUNCANVILLE,TX,87062,FAILURE +REPUBLIC BANK FOR SAVINGS,4/6/1989,43367,85165,JACKSON,MS,73564,FAILURE +CITY FEDERAL S & L ASSOC.,4/6/1989,20309,27926,OAKLAND,CA,11604,FAILURE +FOUNDERS FEDERAL S & L,4/6/1989,134696,166509,LOS ANGELES,CA,77724,FAILURE +INDEPENDENCE S & L ASSOC.,4/6/1989,440004,361620,VALLEJO,CA,23391,FAILURE +CENTRAL S & L ASSOC.,4/6/1989,52091,72912,JACKSON,MS,41027,FAILURE +DELTA FS & LA,4/6/1989,10280,13814,DREW,MS,8529,FAILURE +ARROWHEAD PACIFIC FEDERAL SAVINGS,4/6/1989,60227,88145,SAN BERNARDINO,CA,35004,FAILURE +MERIDIAN SAVING ASSOCIATION,4/6/1989,48872,434862,ARLINGTON,TX,531288,FAILURE +GATEWAY FEDERAL SAVINGS BANK,4/6/1989,72701,126174,OAKLAND,CA,81305,FAILURE +JERAULD COUNTY BANK,8/31/1938,260,211,WESSINGTON SPRINGS,SD,,FAILURE +WASHINGTON S & L ASSOC.,4/6/1989,66747,68684,STOCKTON,CA,6,FAILURE +ROYAL OAK S & L ASSOC.,4/6/1989,34356,35528,MANTECA,CA,3103,FAILURE +CABRILLO FEDERAL SAVINGS BANK,4/6/1989,71844,61915,SAN JOSE,CA,1567,FAILURE +CITY S & L ASSOC.,4/6/1989,33332,34047,WESTLAKE VILLAGE,CA,2604,FAILURE +GOLDEN CIRCLE SA,4/6/1989,20520,18539,CORSICANA,TX,4310,FAILURE +FIDELITY FSB,4/6/1989,116410,135275,CORINTH,MS,96602,FAILURE +AMERICAN FEDERAL SAVINGS BANK,4/6/1989,33512,31689,AUSTIN,TX,14136,FAILURE +BEDFORD SAVINGS ASSOC.,4/6/1989,90784,102691,BEDFORD,TX,75518,FAILURE +PARK CITIES SAVINGS ASSOCIATION,4/6/1989,43136,37040,DALLAS,TX,17023,FAILURE +UNIFIED SAVINGS FS & LA,4/6/1989,35081,52295,NORTHRIDGE,CA,22633,FAILURE +FIRST BANK OF FLAXTON,8/31/1938,80,53,FLAXTON,ND,,FAILURE +PERPETUAL SAVINGS ASSOCIATION,4/6/1989,18736,28992,SANTA ANA,CA,12595,FAILURE +FIRST CALIFORNIA SAVINGS,4/6/1989,161360,194491,ORANGE,CA,73745,FAILURE +THE COMMONWEALTH BANK,4/12/1989,65781,57210,BELLAIRE,TX,6865,FAILURE +"ALLIED OKLAHOMA BANK, NATIONAL ASSOC",4/13/1989,58267,61001,OKLAHOMA CITY,OK,11179,FAILURE +TROPICAL FS&LA,4/13/1989,55007,61820,MIAMI,FL,11932,ASSISTANCE +LINCOLN SAVINGS & LOAN,4/14/1989,4857204,4193981,IRVINE,CA,3142552,FAILURE +FIRST STATE BANK,4/20/1989,9419,9349,DEANVILLE,TX,1267,FAILURE +TRAVIS BANK AND TRUST,4/20/1989,53860,52327,AUSTIN,TX,13329,FAILURE +CONTINENTAL NATIONAL BANK,4/20/1989,12204,12613,SAN ANTONIO,TX,3374,FAILURE +ALLIANCE BANK,4/21/1989,778973,797169,ANCHORAGE,AK,75908,FAILURE +FIRST STATE BANK,9/2/1938,135,112,HEWITT,MN,,FAILURE +"BANK OF LAKEWOOD, NATIONAL ASSOC",4/27/1989,9666,8342,LAKEWOOD,CO,3412,FAILURE +SEMINOLE NATIONAL BANK,4/27/1989,6594,7648,HOLLYWOOD,FL,1241,FAILURE +"WESTCO SAVINGS BANK, FSB",4/27/1989,188286,181399,WILMINGTON,CA,42586,FAILURE +SOUTHWEST FEDERAL SAVINGS ASSOC.,4/27/1989,896825,791774,LOS ANGELES,CA,74617,FAILURE +METROPOLITAN FED. S & L ASSOC.,4/27/1989,168244,174853,DENVILLE,NJ,16,FAILURE +SEABANK FED. SAVINGS BANK,4/27/1989,35353,33632,MYRTLE BEACH,SC,5306,FAILURE +KATY NATIONAL BANK,5/4/1989,52033,55294,KATY,TX,17831,FAILURE +FIRST NATIONAL BANK OF EAST BATON ROUGE,5/4/1989,28297,30497,BATON ROUGE,LA,7588,FAILURE +GREATER TEXAS BANK LEANDER,5/4/1989,20561,22175,LEANDER,TX,11045,FAILURE +LEXINGTON STATE BANK,5/11/1989,13794,13907,LEXINGTON,TX,3073,FAILURE +STOCKMENS STATE BANK,9/24/1938,87,74,MEDORA,ND,,FAILURE +LEWIS COUNTY SAVINGS AND LOAN CO,5/12/1989,3986,3925,WESTON,WV,405,FAILURE +SECURITY BANK & TRUST COMPANY,5/18/1989,34808,37106,WHARTON,TX,9381,FAILURE +THE FIRST NATIONAL BANK OF GORDON,5/18/1989,10864,11559,GORDON,TX,1304,FAILURE +FIRST NATIONAL BANK AT OSWEGO,5/18/1989,24023,23343,OSWEGO,KS,1917,FAILURE +"THE BANK OF EDMOND, NATIONAL ASSOC",5/18/1989,8078,8525,EDMOND,OK,680,FAILURE +GRAND CANYON STATE BANK,5/19/1989,14607,13246,SCOTTSDALE,AZ,4370,FAILURE +COMMERCE AND ENERGY BANK,5/24/1989,29468,27111,LAFAYETTE,LA,6666,FAILURE +FIRST EASTERN BANK & TRUST COMPANY,5/24/1989,29422,29215,NEW ORLEANS,LA,7676,FAILURE +BANK OF AURORA,5/24/1989,6901,6578,AURORA,CO,2468,FAILURE +LIBERTY NATIONAL BANK,5/25/1989,67505,68277,DALLAS,TX,23284,FAILURE +THE SARANAC LAKE NATIONAL BANK,9/24/1938,,491,SARANAC LAKE,NY,,FAILURE +THE FIRST STATE BANK,5/31/1989,11698,11060,FORGAN,OK,365,FAILURE +FULSHEAR STATE BANK,6/8/1989,10697,10686,FULSHEAR,TX,2349,FAILURE +LAKE COUNTRY NATIONAL BANK,6/8/1989,7536,8360,BURNET,TX,1654,FAILURE +FIRST AMERICAN BANK,6/8/1989,13286,13608,SAN ANTONIO,TX,3063,FAILURE +CIVIC SAVINGS BANK,6/8/1989,98696,101253,PORTSMOUTH,OH,12886,FAILURE +"HORIZON FINANCIAL, FA",6/8/1989,2492405,1797508,SOUTHAMPTON,PA,305925,FAILURE +TREASURE STATE BANK,6/9/1989,14553,13150,GLASGOW,MT,2577,FAILURE +WESTERN SAVINGS & LOAN,6/14/1989,5654683,4130994,PHOENIX,AZ,2076644,FAILURE +SUN STATE SAVINGS & LOAN,6/14/1989,1046842,892888,PHOENIX,AZ,443613,FAILURE +NORTHERN BANK & TRUST,6/15/1989,6914,6560,FORT COLLINS,CO,776,FAILURE +FIRST STATE BANK,9/29/1938,165,112,WILMOT,SD,,FAILURE +HELOTES STATE BANK,6/15/1989,21327,21000,HELOTES,TX,4998,FAILURE +"CAPITAL BANK-NORTHWEST, NATIONAL",6/15/1989,15962,17233,SAN ANTONIO,TX,3580,FAILURE +"GUARDIAN BANK, N.A.",6/21/1989,409389,383002,HEMPSTEAD,NY,203576,FAILURE +PRESTON NORTH NATIONAL BANK,6/22/1989,6504,6930,DALLAS,TX,1536,FAILURE +HABERSHAM FEDERAL SA,6/22/1989,93297,90802,CORNELIA,GA,36003,FAILURE +GREAT SOUTHERN FEDERAL SAVINGS,6/22/1989,880160,629870,SAVANNAH,GA,146470,FAILURE +FIRST FED. S & L ASSOC.,6/22/1989,54422,49767,AMERICUS,GA,8841,FAILURE +NEW ULM STATE BANK,6/29/1989,11963,11777,NEW ULM,TX,2962,FAILURE +HOBBY COMMUNITY BANK,6/29/1989,8010,8480,HOUSTON,TX,3341,FAILURE +FIRST FED. S & L ASSOC.,6/29/1989,126419,127327,BAKERSFIELD,CA,11284,FAILURE +THE FARMERS NATIONAL BANK OF SARDINIA,7/24/1935,308,261,SARDINIA,OH,,FAILURE +BANK OF LOCKPORT,10/11/1938,68,51,LOCKPORT,KY,,FAILURE +PEOPLES S & L ASSOC.,6/29/1989,23943,24322,HAMPTON,VA,1381,FAILURE +MISSOURI SAVINGS ASSOCIATION,6/29/1989,661088,500715,CLAYTON,MO,48840,FAILURE +VICTORIA SA,6/29/1989,882849,855717,SAN ANTONIO,TX,968972,FAILURE +MID MISSOURI S & L ASSOC.,6/29/1989,76660,67577,BOONVILLE,MO,16630,FAILURE +"AMERIMAC SAVINGS BANK, FS",6/29/1989,29564,25285,HILLSBORO,IL,7968,FAILURE +THE GUARDIAN FED. S & L ASSOC.,6/29/1989,29396,28646,BAKERSFIELD,CA,11744,FAILURE +FIRST NATIONAL BANK OF RICHARDSON,6/30/1989,44549,46739,RICHARDSON,TX,8835,FAILURE +"INDEPENDENT BANK-EAST, NATIONAL",6/30/1989,40565,35780,ROCKWALL,TX,14500,FAILURE +102 VALLEY BANK,7/5/1989,5042,5019,HOPKINS,MO,1746,FAILURE +THE STERLINGTON BANK,7/13/1989,15243,14646,STERLINGTON,LA,4204,FAILURE +BANK OF ETON,10/12/1938,,29,ETON,GA,,FAILURE +NATIONAL BANK OF COMMERCE OF BROWNSVILLE,7/13/1989,34694,34771,BROWNSVILLE,TX,17194,FAILURE +BENNETT NATIONAL BANK,7/13/1989,8276,8015,BENNETT,CO,2818,FAILURE +FIRST SAVINGS & LOAN,7/13/1989,373721,415656,WACO,TX,141819,FAILURE +PIONEER SAVINGS FA,7/13/1989,81022,92273,PLYMOUTH,IN,1195,FAILURE +CROSS ROADS S & LA,7/13/1989,16802,17173,CHECOTAH,OK,14615,FAILURE +CORNERSTONE FEDERAL SAVINGS,7/13/1989,112421,110411,HOUSTON,TX,26708,FAILURE +"INDEPENDENT BANK, NATIONAL ASSOC",7/14/1989,34710,32672,COPPELL,TX,10941,FAILURE +"TEXAS AMERICAN BANK/DENISON, NA",7/20/1989,137049,137111,DENISON,TX,25454,FAILURE +"TEXAS AMERICAN BANK/FORT WORTH,",7/20/1989,1974591,1354335,FORT WORTH,TX,443222,FAILURE +TEXAS AMERICAN BANK/FREDERICKSBURG,7/20/1989,139055,138932,FREDERICKSBURG,TX,24949,FAILURE +KERMIT STATE BANK,11/1/1938,120,67,KERMIT,WV,,FAILURE +"TEXAS AMERICAN BANK/MCKINNEY, NA",7/20/1989,175696,167278,MCKINNEY,TX,24967,FAILURE +TEXAS AMERICAN BANK/BRECKENRIDGE,7/20/1989,82026,86165,BRECKENRIDGE,TX,16075,FAILURE +"TEXAS AMERICAN BANK/AMARILLO, NA",7/20/1989,218186,207371,AMARILLO,TX,14655,FAILURE +TEXAS AMERICAN BANK/LEVELLAND,7/20/1989,195037,179092,LEVELLAND,TX,910,FAILURE +"TEXAS AMERICAN BANK/DALLAS, NA",7/20/1989,229694,262833,DALLAS,TX,114531,FAILURE +UTICA NATIONAL BANK & TRUST COMP,7/20/1989,164978,177847,TULSA,OK,48048,FAILURE +"TEXAS AMERICAN BANK/MIDLAND, NA",7/20/1989,135159,131652,MIDLAND,TX,29098,FAILURE +"TEXAS AMERICAN BANK/AUSTIN, NA",7/20/1989,127093,181575,AUSTIN,TX,101109,FAILURE +"TEXAS AMERICAN BANK/GALLERIA, NA",7/20/1989,289594,352793,HOUSTON,TX,133263,FAILURE +TEXAS AMERICAN BANK/WICHITA FALLS,7/20/1989,64989,64707,WICHITA FALLS,TX,8557,FAILURE +FAYETTE BANK,11/3/1938,348,303,FAYETTE,MO,,FAILURE +TEXAS AMERICAN BANK/DUNCANVILLE,7/20/1989,213385,215660,DUNCANVILLE,TX,38905,FAILURE +"TEXAS AMERICAN BANK/SOUTHWEST, NA",7/20/1989,36015,40444,STAFFORD,TX,13898,FAILURE +"TEXAS AMERICAN BANK/TYLER, NA",7/20/1989,153843,139943,TYLER,TX,4017,FAILURE +"TEXAS AMERICAN BANK/FORUM, NA",7/20/1989,62628,64208,ARLINGTON,TX,15965,FAILURE +"TEXAS AMERICAN BANK/TEMPLE, NA",7/20/1989,68011,70082,TEMPLE,TX,8690,FAILURE +"TEXAS AMERICAN BANK/PRESTONWOOD,",7/20/1989,49842,49544,DALLAS,TX,11393,FAILURE +"TEXAS AMERICAN BANK/LBJ, NA",7/20/1989,62777,68463,DALLAS,TX,19551,FAILURE +TEXAS AMERICAN BANK/FARMERS BRANCH,7/20/1989,48380,47490,FARMERS BRANCH,TX,6341,FAILURE +TEXAS AMERICAN BANK/RICHARDSON,7/20/1989,44458,42365,RICHARDSON,TX,4545,FAILURE +"TEXAS AMERICAN BANK/LONGVIEW, NA",7/20/1989,90055,91439,LONGVIEW,TX,20896,FAILURE +BANK OF BELLFLOWER,11/5/1938,,52,BELLFLOWER,MO,,FAILURE +TEXAS AMERICAN BANK/GREATER SOUTH,7/20/1989,32656,31530,GRAND PRAIRIE,TX,3770,FAILURE +"TEXAS AMERICAN BANK/PLANO, NA",7/20/1989,34760,36159,PLANO,TX,11308,FAILURE +FALLBROOK NATIONAL BANK,7/20/1989,35964,35643,HOUSTON,TX,12153,FAILURE +HOME FEDERAL S & L ASSOC.,7/20/1989,204269,164252,MEMPHIS,TN,20017,FAILURE +PEOPLES S & L ASSOC.,7/20/1989,46305,47273,STREATOR,IL,19690,FAILURE +NEW MEXICO FSA,7/20/1989,240741,194004,ALBUQUERQUE,NM,48183,FAILURE +PARISH FEDERAL S & L ASSOC.,7/20/1989,14723,14881,DENHAM SPRINGS,LA,4364,FAILURE +COMMONWEALTH FEDERAL S & L,7/20/1989,1576500,1184116,FORT LAUDERDALE,FL,315240,FAILURE +SIERRA S & L ASSOC.,7/20/1989,40721,39974,BEVERLY HILLS,CA,11124,FAILURE +AMERICAN INTERSTATE SA,7/20/1989,24877,25043,LOS ANGELES,CA,5029,FAILURE +FARMERS STATE BANK OF ANAMOOSE,11/26/1938,62,39,ANAMOOSE,ND,,FAILURE +FIDELITY BANK,7/21/1989,11247,11586,SCOTTSDALE,AZ,3456,FAILURE +HILDALGO COUNTY BANK,7/26/1989,18879,18621,MERCEDES,TX,3359,FAILURE +THE TEXAS BANK & TRUST COMPANY,7/27/1989,33658,33473,SWEETWATER,TX,5362,FAILURE +FORESTWOOD NATIONAL BANK OF DALLAS,7/27/1989,62015,63231,DALLAS,TX,24264,FAILURE +BRUSHY CREEK NATIONAL BANK,7/27/1989,9787,10312,ROUND ROCK,TX,2495,FAILURE +HALLMARK S & L ASSOCIATION,7/27/1989,166114,175770,PLANO,TX,176946,FAILURE +NEW GUARANTY FED. S & L ASSOC.,7/27/1989,212547,192498,TAYLOR,MI,7919,FAILURE +CAPITOL CITY FEDERAL SAVINGS,7/27/1989,528171,397111,AUSTIN,TX,214790,FAILURE +NEW BRAUNFELS S & LA ASSOC.,7/27/1989,85640,82368,NEW BRAUNFELS,TX,64934,FAILURE +LAFAYETTE S & L ASSOC.,7/27/1989,29119,26928,GRETNA,LA,7300,FAILURE +THE BANK OF CUBA,11/26/1938,89,100,CUBA,AL,,FAILURE +NORTH AMERICAN FSA,7/27/1989,99796,92750,SAN ANTONIO,TX,52837,FAILURE +CAPITOL FEDERAL S & L,7/27/1989,89941,46695,LITTLE ROCK,AR,17178,FAILURE +COMMERCIAL S & LA ASSOC.,7/27/1989,74198,66607,HAMMOND,LA,33413,FAILURE +FSA OF THE SOUTHWEST,7/27/1989,45841,36549,KILGORE,TX,17620,FAILURE +EMPIRE STATE BANK,7/28/1989,30202,26247,NEW YORK,NY,2637,FAILURE +CAPROCK FEDERAL SAVINGS & LOAN,8/1/1989,436134,442935,LUBBOCK,TX,403084,FAILURE +FIRST BANK AND TRUST COMPANY,8/3/1989,28485,27677,YALE,OK,8273,FAILURE +BARNARD STATE BANK,8/3/1989,4988,5145,BARNARD,KS,976,FAILURE +UNIVERSITY NATIONAL BANK,8/3/1989,19844,22491,SAN ANTONIO,TX,5940,FAILURE +PARK FORTY-FIVE NATIONAL BANK,8/4/1989,21952,22242,SPRING,TX,10286,FAILURE +THE FIRST NATIONAL BANK OF ROOSEVELT,11/26/1938,,1001,ROOSEVELT,NY,,FAILURE +CITIZENS HOMESTEAD FSA,8/7/1989,108598,116092,NEW ORLEANS,LA,34359,FAILURE +AMERICAN SAVINGS & LOAN,8/7/1989,61122,71471,NEW ORLEANS,LA,22171,FAILURE +SECURITY HOMESTEAD FEDERAL,8/7/1989,547616,538612,NEW ORLEANS,LA,70828,FAILURE +SOUTH S & L ASSOC.,8/7/1989,267400,235857,SLIDELL,LA,86800,FAILURE +CENTRAL SAVINGS & LOAN,8/7/1989,53265,63020,NEW ORLEANS,LA,28831,FAILURE +HOME S & L ASSOC.,8/7/1989,36524,35393,NEW ORLEANS,LA,16379,FAILURE +TERREBONNE S & L ASSOC.,8/7/1989,26616,23892,HOUMA,LA,6964,FAILURE +DELTA SAVINGS & LOAN ASSOCIATION,8/7/1989,148468,114605,KENNER,LA,76340,FAILURE +FIRST CITY FEDERAL S & L,8/7/1989,22177,25099,BATON ROUGE,LA,11915,FAILURE +METROPOLITAN FINANCIAL FS & LA,8/10/1989,799517,663254,DALLAS,TX,317677,FAILURE +THE NATIONAL CITY BANK OF LYNN,12/3/1938,,2233,LYNN,MA,,FAILURE +PEOPLES HERITAGE FS & LA,8/10/1989,1810155,1467127,SALINA,KS,707046,FAILURE +UNIFIRST BANK FOR SAVINGS,8/10/1989,738323,606759,JACKSON,MS,59147,FAILURE +FIRST STATE BANK,8/17/1989,62218,61352,LIBERTY,TX,18435,FAILURE +FIRST STATE BANK OF MCKINNEY,8/17/1989,18100,20227,MCKINNEY,TX,3668,FAILURE +CITIZENS NATIONAL BANK OF KILLEEN,8/17/1989,35494,36792,KILLEEN,TX,3835,FAILURE +BLACK HAWK S & L ASSOC.,8/17/1989,71809,68341,ROCK ISLAND,IL,1802,FAILURE +SECURITY FED. S & L ASSOC.,8/17/1989,318275,231268,PEORIA,IL,23541,FAILURE +HEARNE BUILDING & LOAN ASSOC.,8/17/1989,27114,25887,HEARNE,TX,5964,FAILURE +TAYLORBANC FEDERAL S & L,8/17/1989,139517,137401,TAYLOR,TX,47645,FAILURE +GUADALUPE S & L ASSOC.,8/17/1989,25789,15838,KERRVILLE,TX,7578,FAILURE +COLEMAN STATE BANK,12/14/1938,,234,COLEMAN,WI,,FAILURE +SOUTHSIDE FED. S & L ASSOC.,8/17/1989,49604,41421,AUSTIN,TX,29172,FAILURE +TROUP BANK & TRUST COMPANY,8/24/1989,24064,24820,TROUP,TX,2432,FAILURE +FARMERS STATE BANK OF YUMA,8/24/1989,26604,24864,YUMA,CO,1905,FAILURE +FIRST STATE BANK,8/24/1989,30690,30994,PFLUGERVILLE,TX,8778,FAILURE +SUMMIT BANK,8/24/1989,19197,18484,SAN ANTONIO,TX,3859,FAILURE +THE DAKOTA BANK,8/24/1989,31174,28647,GRAND FORKS,ND,2861,FAILURE +"PARK CENTRAL BANK, NATIONAL ASSOC",8/24/1989,11853,15193,FORT WORTH,TX,5449,FAILURE +DENTON FEDERAL SAVINGS,8/24/1989,142729,147991,DENTON,TX,31981,FAILURE +HERITAGE SAVINGS ASSOC.,8/24/1989,32884,27735,JERSEYVILLE,IL,1,FAILURE +THE BURR OAK STATE BANK,8/31/1989,4387,4098,BURR OAK,KS,457,FAILURE +THE COMMERCIAL NATIONAL BANK OF BRADFORD,9/28/1935,5162,4621,BRADFORD,PA,,FAILURE +BOILING SPRINGS STATE BANK,12/17/1938,,147,BOILING SPRINGS,PA,,FAILURE +LIBERTY BANK,9/1/1989,32357,30466,GLENDALE,AZ,8218,FAILURE +THE LASALLE STATE BANK,9/7/1989,38808,37123,JENA,LA,631,FAILURE +THOUSAND OAKS NATIONAL BANK,9/7/1989,30158,32479,SAN ANTONIO,TX,3496,FAILURE +CITIZENS S & LA OF SPRINGFIELD,9/7/1989,89309,78483,SPRINGFIELD,IL,6,FAILURE +KIRBY STATE BANK,9/14/1989,16787,16453,KIRBY,TX,0,FAILURE +FIRST BANKERS TRUST OF BOSSIER CITY,9/14/1989,27094,28656,BOSSIER CITY,LA,6941,FAILURE +"MEDCENTRE BANK,N.A.",9/14/1989,27811,30152,SAN ANTONIO,TX,6695,FAILURE +PRAIRIE STATE BANK,9/14/1989,16397,16783,GRAND PRAIRIE,TX,2760,FAILURE +FIRST SAVINGS OF LAREDO,9/14/1989,171151,157577,LAREDO,TX,119150,FAILURE +ROSE CAPITAL BANK,9/21/1989,62698,60449,TYLER,TX,12643,FAILURE +FARMERS STATE BANK OF LONDON,12/21/1938,355,287,LONDON,KY,,FAILURE +EAST TEXAS S & LA ASSOCIATION,9/21/1989,362365,213728,TYLER,TX,63166,FAILURE +FIRST FED. S & LA OF BRENHAM,9/21/1989,148436,138946,BRENHAM,TX,49995,FAILURE +FIRST GARLAND FED. S & L,9/21/1989,132423,106416,GARLAND,TX,31864,FAILURE +PLANO S & L ASSOC.,9/21/1989,274375,256137,PLANO,TX,137568,FAILURE +THE FARMERS STATE BANK,9/23/1989,5677,5570,LYMAN,NE,1005,FAILURE +NATIONAL BANK OF ARIZONA,9/28/1989,15792,15731,SCOTTSDALE,AZ,3924,FAILURE +COLORADO SAVINGS BANK,9/28/1989,12259,12607,STERLING,CO,1930,FAILURE +STRAWN SECURITY BANK,10/5/1989,14420,14126,STRAWN,TX,5392,FAILURE +THE OLLA STATE BANK,10/5/1989,23569,22938,OLLA,LA,3625,FAILURE +COMMONWEALTH BANK,10/5/1989,74931,79293,ARLINGTON,TX,16497,FAILURE +FARMERS STATE BANK,12/31/1938,51,30,CANTON,WI,,FAILURE +FIRST NATIONAL BANK OF VAIL,10/5/1989,3569,3489,VAIL,CO,792,FAILURE +"FAMILY SAVINGS BANK, FSB",10/5/1989,50912,52815,SAPULPA,OK,4090,FAILURE +AMERICAN HOME S & L,10/5/1989,96734,79523,EDMOND,OK,13662,FAILURE +FIRST BANK,10/6/1989,35950,33967,COLORADO SPRINGS,CO,11156,FAILURE +CITIZENS BANK,10/12/1989,31307,32123,GALVESTON,TX,5397,FAILURE +"NORTH BANK, NATIONAL ASSOCIATION",10/12/1989,12368,12927,OKLAHOMA CITY,OK,1072,FAILURE +COLUMBIA FEDERAL HOMESTEAD,10/13/1989,96143,90065,METAIRIE,LA,26807,FAILURE +BANC IOWA FEDERAL SAVINGS BANK,10/16/1989,161877,140208,CEDAR RAPIDS,IA,21908,FAILURE +CENTURY BANK,10/19/1989,120355,119937,PHOENIX,AZ,25828,FAILURE +BEAUMONT BANK-NATIONAL ASSOCIATION,10/19/1989,29198,26886,BEAUMONT,TX,5359,FAILURE +OCONTO COUNTY STATE BANK,1/4/1939,386,346,OCONTO FALLS,WI,,FAILURE +"PARK AVENUE BANK, NATIONAL ASSOC",10/19/1989,17919,14436,OKLAHOMA CITY,OK,776,FAILURE +PEOPLES HOMESTEAD SAVINGS BANK,10/19/1989,268935,263662,MONROE,LA,100418,FAILURE +MID KANSAS S & LA ASSOC.,10/19/1989,761850,595584,WICHITA,KS,72792,FAILURE +VALLEY FEDERAL SAVINGS,10/19/1989,517092,542897,MCALLEN,TX,235329,FAILURE +SURETY FEDERAL SAVINGS ASSOC.,10/19/1989,290998,244546,EL PASO,TX,69202,FAILURE +SEASONS FEDERAL SAVINGS BANK,10/19/1989,260796,213711,RICHMOND,VA,49381,FAILURE +FIRST CONSOLIDATED BANK - FERRIS,10/20/1989,12026,11248,FERRIS,TX,3247,FAILURE +FIRST CONSOLIDATED BANK - HILLSBORO,10/20/1989,11315,10847,HILLSBORO,TX,2055,FAILURE +FIRST CONSOLIDATED BANK - ROSEBUD,10/20/1989,17125,16533,ROSEBUD,TX,4494,FAILURE +FIRST CONSOLIDATED BANK - BUDA,10/20/1989,15040,15224,BUDA,TX,5484,FAILURE +THE FIRST NATIONAL BANK OF PRESTON,1/5/1939,304,285,PRESTON,MN,,FAILURE +FIRST CONSOLIDATED BANK - PLEASANT RUN,10/20/1989,19291,19837,LANCASTER,TX,6108,FAILURE +FIRST SECURITY BANK AND TRUST CO,10/26/1989,20596,20720,HAUGHTON,LA,5828,FAILURE +WESTERN NATIONAL BANK OF LOUISIANA,10/26/1989,11848,11945,KAPLAN,LA,1470,FAILURE +GREAT PLAINS SAVINGS,10/26/1989,99765,72501,WEATHERFORD,OK,19970,FAILURE +BANK OF ST. CHARLES,11/2/1989,65235,65181,ST. ROSE,LA,11080,FAILURE +FIRST LOUISIANA FEDERAL SAVINGS,11/2/1989,161850,105813,LAFAYETTE,LA,42910,FAILURE +THE LEE STATE BANK,11/9/1989,13405,13473,BROWERVILLE,MN,2656,FAILURE +NATIONAL INDUSTRIAL BANK OF CONNECTICUT,11/9/1989,46515,48254,MERIDEN,CT,5331,FAILURE +CITY NATIONAL BANK OF PLANO,11/9/1989,56450,71100,PLANO,TX,32780,FAILURE +UNITED NATIONAL BANK OF PLANO,11/9/1989,29822,30544,PLANO,TX,4295,FAILURE +FIRST STATE BANK,1/9/1939,347,287,ELGIN,TX,,FAILURE +FIDELITY FEDERAL SAVINGS ASSOC.,11/9/1989,393814,361556,GALESBURG,IL,46571,FAILURE +COLONIAL FEDERAL SAVINGS ASSOC.,11/9/1989,427118,337964,ROSELLE PARK,NJ,103473,FAILURE +CREST FEDERAL S & L,11/9/1989,137052,133238,KANKAKEE,IL,22373,FAILURE +ASPEN SAVINGS BANK FSB,11/9/1989,136338,108156,ASPEN,CO,51279,FAILURE +SARATOGA S & L ASSOCIATION,11/9/1989,84464,81712,SAN JOSE,CA,18565,FAILURE +LOVE FIELD NATIONAL BANK,11/16/1989,28311,29020,DALLAS,TX,5891,FAILURE +EXECUTIVE NATIONAL BANK,11/16/1989,7350,8874,SAN ANTONIO,TX,2606,FAILURE +FIRST FEDERAL S & L /CENTRAL INDIANA,11/16/1989,192423,176725,ANDERSON,IN,15143,FAILURE +SOONER FEDERAL SAVINGS ASSOC.,11/16/1989,1529913,1153454,TULSA,OK,152840,FAILURE +TEXAS WESTERN FEDERAL SAVINGS,11/16/1989,116097,96713,HOUSTON,TX,19744,FAILURE +BANK OF HANCOCK,1/12/1939,,248,HANCOCK,WI,,FAILURE +SECURITY FED. SAVINGS ASSOCIATION,11/16/1989,71004,74713,GARDEN GROVE,CA,3,FAILURE +GENERAL FEDERAL SAVINGS BANK,11/16/1989,355501,301460,CORAL GABLES,FL,115396,FAILURE +SECURITY NATIONAL BANK OF SHREVEPORT,11/17/1989,19446,20224,SHREVEPORT,LA,7236,FAILURE +"GREATER TEXAS BANK NORTH, NA",11/30/1989,22670,26293,AUSTIN,TX,11233,FAILURE +"GREATER TEXAS BANK SOUTHWEST, NA",11/30/1989,32598,33466,TRAVIS COUNTY,TX,4032,FAILURE +"SECURITY FEDERAL SAVINGS, FSB",11/30/1989,759158,667256,COLUMBIA,SC,66757,FAILURE +SALAMANCA FED. SAVINGS ASSOC.,11/30/1989,29698,29673,SALAMANCA,NY,1,FAILURE +FIRST FEDERAL SAVINGS BANK,11/30/1989,13416,11533,DIAMONDVILLE,WY,7749,FAILURE +SOUTHWESTERN FEDERAL SAVINGS,11/30/1989,126427,114807,EL PASO,TX,62982,FAILURE +FORTUNE FINANCIAL FED. S & L ASSOC,11/30/1989,84198,74543,COPPERAS COVE,TX,35311,FAILURE +FIRST STATE BANK,1/16/1939,87,46,MARQUEZ,TX,,FAILURE +BROOKSIDE FEDERAL S & L,11/30/1989,601442,560299,LOS ANGELES,CA,45666,FAILURE +AUSTIN FS & LA,11/30/1989,113369,85020,AUSTIN,TX,21563,FAILURE +FIRST SECURITY BANK OF GLENDIVE,12/1/1989,32396,31862,GLENDIVE,MT,388,FAILURE +CENTRAL DAKOTA BANK,12/1/1989,13854,13654,LEHR,ND,2668,FAILURE +ATLANTIC NATIONAL BANK,12/7/1989,14412,13669,NORFOLK,VA,627,FAILURE +ALEDO STATE BANK,12/7/1989,9933,9716,ALEDO,TX,407,FAILURE +FIRST NATIONAL BANK OF FRISCO,12/7/1989,8981,9418,FRISCO,TX,976,FAILURE +"WESTHEIMER MEMORIAL BANK, NA",12/7/1989,38862,47660,HOUSTON,TX,20079,FAILURE +FIRST COMMERCE NATIONAL BANK,12/7/1989,20267,21443,PHOENIX,AZ,2381,FAILURE +THE GARNETT S & L ASSOC.,12/7/1989,13628,14523,GARNETT,KS,794,FAILURE +BANK OF SCRANTON,1/16/1939,153,94,SCRANTON,ND,,FAILURE +ARLINGTON HEIGHTS SAVINGS ASSOC.,12/7/1989,509134,400707,ARLINGTON HEIGHTS,IL,15,FAILURE +COMMUNITY FEDERAL SAVINGS ASSOC.,12/7/1989,58270,50333,BRIDGEPORT,CT,4842,FAILURE +"FIRST BANK, PINEVILLE, LOUISIANA",12/8/1989,72255,69301,PINEVILLE,LA,39467,FAILURE +ORANGE STATE BANK,12/8/1989,8047,8078,MIAMI,FL,925,FAILURE +ATLANTIC PERMANENT FEDERAL,12/8/1989,581043,370596,NORFOLK,VA,79907,FAILURE +"CITY SAVINGS, FSB",12/8/1989,9813776,7322665,SOMERSET,NJ,1565479,FAILURE +CITY NATIONAL BANK OF SAYRE,12/13/1989,20959,22437,SAYRE,OK,3808,FAILURE +MIDLOTHIAN NATIONAL BANK,12/13/1989,9964,11512,MIDLOTHIAN,TX,4125,FAILURE +NORTH SIDE STATE BANK,12/14/1989,20375,21408,TULSA,OK,4521,FAILURE +FIRST ACADIANA BANK,12/14/1989,46767,44605,EUNICE,LA,5984,FAILURE +"THE HILLSBORO-QUEEN ANNE BANK, INC.",1/21/1939,,249,HILLSBORO,MD,,FAILURE +CANYON LAKE BANK,12/14/1989,30983,32111,CANYON LAKE,TX,9219,FAILURE +LOUISIANA SAVINGS ASSN.,12/14/1989,449258,398844,LAKE CHARLES,LA,114104,FAILURE +YORKRIDGE-CALVERT FEDERAL SAVINGS,12/14/1989,585792,372236,BALTIMORE,MD,40051,FAILURE +RED RIVER S & L ASSOC.,12/14/1989,10388,7726,COUSHATTA,LA,3315,FAILURE +FIRST AMERICAN BANK AND TRUST,12/15/1989,1382924,1005829,NORTH PALM BEACH,FL,383108,FAILURE +UNITED COMMUNITY BANK,12/20/1989,32288,29318,WESTLAKE VILLAGE,CA,1351,FAILURE +FIRST CITY NATIONAL BANK AND TRUST,12/20/1989,39512,38155,NEW YORK,NY,10824,FAILURE +SILVER SAVINGS ASSOC.,12/21/1989,32209,27723,SILVER CITY,NM,7265,FAILURE +COLUMBIA FSA,12/21/1989,77141,71092,NASSAU BAY,TX,36009,FAILURE +THE FIRST NATIONAL BANK OF SAN MARCOS,1/4/1990,77567,79985,SAN MARCOS,TX,22823,FAILURE +BUNA STATE BANK,10/23/1935,47,29,BUNA,TX,,FAILURE +THE FARMERS BANK OF NEWTOWN,2/2/1939,114,89,NEWTOWN,MO,,FAILURE +MIDWEST FEDERAL SAVINGS BANK,1/4/1990,954990,577794,MINOT,ND,93565,FAILURE +FIRST CENTRAL FEDERAL SAVINGS BANK,1/4/1990,112832,104887,CHARITON,IA,372,FAILURE +BANNERBANC FS & LA,1/4/1990,46028,55588,GARLAND,TX,28029,FAILURE +FIRST GUARANTY BANK FOR SAVINGS,1/4/1990,240966,179764,HATTIESBURG,MS,79536,FAILURE +PLAZA DEL ORO NATIONAL BANK,1/11/1990,15697,15778,HOUSTON,TX,1503,FAILURE +ST. CHARLES FSA,1/11/1990,146514,113270,ST. CHARLES,IL,6084,FAILURE +AMERICAN FSB,1/11/1990,51797,39793,SANFORD,ME,14228,FAILURE +FAMILY FEDERAL SAVINGS,1/11/1990,164183,100719,DALLAS,OR,4201,FAILURE +ATLANTIC FINANCIAL SAVINGS,1/11/1990,5299370,3710735,BALA CYNWYD,PA,946981,FAILURE +ST. LOUIS COUNTY SAVINGS ASSOC.,1/11/1990,85828,81197,FERGUSON,MO,10,FAILURE +FARMERS STATE BANK IN MERKEL,2/3/1939,183,131,MERKEL,TX,,FAILURE +"HORIZON SAVINGS BANK, FSB",1/11/1990,1223701,1102973,WILMETTE,IL,80770,FAILURE +CERTIFIED FSA,1/11/1990,118852,91442,GEORGETOWN,TX,58136,FAILURE +INVESTMENT FS & LA,1/11/1990,247813,241488,CHATSWORTH,CA,0,FAILURE +DEPOSIT TRUST FEDERAL SAVINGS,1/11/1990,97966,91712,MONROE,LA,24750,FAILURE +WILSHIRE FS & LA,1/11/1990,78144,77324,LOS ANGELES,CA,9051,FAILURE +FINANCIAL FS & LA,1/11/1990,31163,33755,FRESNO,CA,3071,FAILURE +FRONTIER FEDERAL SAVINGS BANK,1/18/1990,45338,47565,BELLEVILLE,IL,278,FAILURE +GEM CITY FS & LA,1/18/1990,290392,232928,QUINCY,IL,11556,FAILURE +MARSHALL FS & LA,1/18/1990,62047,57793,MARSHALL,TX,14369,FAILURE +DUVAL FEDERAL SAVINGS ASSN.,1/18/1990,1016266,861575,JACKSONVILLE,FL,132227,FAILURE +THE COUDERSPORT TRUST COMPANY,2/4/1939,952,706,COUDERSPORT,PA,,FAILURE +FIRST FED. SAVINGS ASSOC. OF YORK,1/18/1990,59744,54885,YORK,NE,2846,FAILURE +STANDARD FSA,1/18/1990,13517,15080,HOUSTON,TX,9642,FAILURE +COLONIAL FEDERAL SAVINGS ASSOC.,1/18/1990,136400,102389,PRAIRIE VILLAGE,KS,16641,FAILURE +BROOKHAVEN FS & LA,1/18/1990,42729,41976,BROOKHAVEN,MS,8179,FAILURE +KARNES COUNTY FS & LA,1/18/1990,53124,56683,KARNES CITY,TX,24687,FAILURE +EMPIRE OF AMERICA FSB,1/24/1990,8173572,8025454,BUFFALO,NY,1243168,FAILURE +"FARMERS STATE BANK OF SHIRO, TEXAS",1/25/1990,4601,4399,SHIRO,TX,2118,FAILURE +"BANCTEXAS DALLAS, N.A.",1/26/1990,340938,338207,DALLAS,TX,64630,FAILURE +"MONROE SAVINGS BANK, FSB",1/26/1990,520587,488802,ROCHESTER,NY,25746,FAILURE +CREDITBANK,1/26/1990,76437,74090,CUTLER RIDGE,FL,15744,FAILURE +THE AMERICAN NATIONAL BANK OF CAMDEN,2/4/1939,,820,CAMDEN,NJ,,FAILURE +"FIDELITY BANK, NATIONAL ASSOCIATION",1/26/1990,36625,35817,SAN ANTONIO,TX,5092,FAILURE +FIRST SAVINGS ASSOC.,1/26/1990,113384,100539,BISMARK,ND,16720,FAILURE +COLONIAL S & LA,1/26/1990,170860,157400,CAPE GIRARDEAU,MO,7976,FAILURE +WILLIAMSBURG FS & LA,1/26/1990,310520,257666,SALT LAKE CITY,UT,31128,FAILURE +GRAND PRAIRIE FS & LA,1/26/1990,31465,24780,STUTTGART,AR,14175,FAILURE +UVALDE FS & LA,1/26/1990,13262,14318,UVALDE,TX,6085,FAILURE +PALO DURO FS & LA,1/26/1990,64983,41818,AMARILLO,TX,12600,FAILURE +MERABANK FSB,1/31/1990,6317579,4803146,PHOENIX,AZ,671485,FAILURE +TYLER NATIONAL BANK,2/1/1990,24708,26103,TYLER,TX,6892,FAILURE +CITIZENS NATIONAL BANK OF WALNUT RIDGE,2/2/1990,37524,34098,WALNUT RIDGE,AR,6321,FAILURE +THE NEW JERSEY TITLE GUARANTEE & TRUST CO.,2/11/1939,30745,21667,JERSEY CITY,NJ,,FAILURE +COMMERCE BANK OF TAMPA,2/2/1990,21631,22270,TAMPA,FL,4018,FAILURE +HENDERSON HOME S & LA,2/2/1990,50377,49827,HENDERSON,KY,2232,FAILURE +"CENTRUST BANK, SB",2/2/1990,8217563,5894019,MIAMI,FL,672161,FAILURE +CLYDE FS & LA,2/2/1990,574684,563728,NORTH RIVERSIDE,IL,54302,FAILURE +"PIONEER SAVINGS BANK, FSB",2/2/1990,1935739,1424005,CLEARWATER,FL,217193,FAILURE +SENTINEL FS & LA,2/2/1990,174915,170574,PHOENIX,AZ,39326,FAILURE +THE FIRST NATIONAL BANK OF COLBERT,2/8/1990,17910,16539,COLBERT,OK,3897,FAILURE +FAIRMONT FEDERAL SAVINGS ASSOC.,2/9/1990,45966,46392,FAIRMONT,MN,1304,FAILURE +"ABQ BANK, A FSB",2/9/1990,2018703,1467840,ALBUQUERQUE,NM,434134,FAILURE +AMERICAN FEDERAL SAVINGS ASSOC.,2/9/1990,910668,817908,DES MOINES,IA,23524,FAILURE +NORTH CAMDEN TRUST COMPANY,2/11/1939,,820,CAMDEN,NJ,,FAILURE +VERMONT SA,2/9/1990,334886,254328,TIMONIUM,MD,41859,FAILURE +HUNTINGTON FS & LA,2/9/1990,120438,120234,HUNTINGTON BEACH,CA,13327,FAILURE +LIBERTY SAVINGS BANK FSB,2/9/1990,49481,41961,RANDALLSTOWN,MD,15321,FAILURE +HUFFMAN BANK,2/15/1990,22019,21660,HUFFMAN,TX,2835,FAILURE +NORTHWAY NATIONAL BANK,2/15/1990,19138,23917,DALLAS,TX,8427,FAILURE +GATEWAY NATIONAL BANK,2/15/1990,8598,8209,PHOENIX,AZ,5864,FAILURE +FREEDOM SA,2/16/1990,360378,311944,COLUMBUS,OH,42722,FAILURE +STATE FS & LA,2/16/1990,526339,358341,TULSA,OK,82645,FAILURE +FIDELITY SAVINGS BANK,2/16/1990,16317,16462,DANVILLE,IL,1080,FAILURE +GREAT AMERICAN FS & LA,2/16/1990,1013231,736370,OAK PARK,IL,10483,FAILURE +GROVETON NATIONAL BANK,2/14/1939,,297,GROVETON,NH,,FAILURE +HERITAGE FSB,2/16/1990,225004,175737,OMAHA,NE,16463,FAILURE +FRANKLIN FSA,2/16/1990,9258163,4638598,OTTAWA,KS,38167,FAILURE +"EQUITABLE S & LA, FA",2/16/1990,73176,63656,COLUMBUS,NE,3854,FAILURE +WESTERN EMPIRE FS & LA,2/16/1990,406574,318451,YORBA LINDA,CA,26502,FAILURE +THE BEN FRANKLIN FS & LA,2/21/1990,4616850,3222248,PORTLAND,OR,133,FAILURE +THE FIRST STATE BANK OF REGENT,2/22/1990,9717,9526,REGENT,ND,2857,FAILURE +THE BANK OF RUIDOSO,2/23/1990,27843,26459,RUIDOSO,NM,12672,FAILURE +THE RED RIVER BANK,2/23/1990,6530,6550,RED RIVER,NM,2131,FAILURE +FIRST ATLANTIC S & LA,2/23/1990,1296682,1009768,PLAINFIELD,NJ,233531,FAILURE +FIRST FEDERAL SAV. ASSOC./BLUEFIELD,2/23/1990,39261,33226,BLUEFIELD,WV,2579,FAILURE +ST. JOSEPH COUNTY SAVINGS BANK,2/16/1939,,1584,SOUTH BEND,IN,,FAILURE +PROVIDENT SA,2/23/1990,244946,200294,CASPER,WY,16238,FAILURE +FRONTIER FS & LA,2/23/1990,146865,120037,WALLA WALLA,WA,10,FAILURE +IMPERIAL FEDERAL SAVINGS ASSOC.,2/23/1990,9581584,6615722,SAN DIEGO,CA,203148,FAILURE +VANGUARD SB,2/23/1990,176858,150691,VANDERGRIEF,PA,25809,FAILURE +FIRST STANDARD FED. SAVINGS ASSOC.,2/23/1990,77577,75603,FAIRMONT,WV,4,FAILURE +GREENWOOD FS & LA,2/23/1990,26663,25564,GREENWOOD,MS,4457,FAILURE +COMMUNITY FEDERAL SAVINGS BANK,2/23/1990,112025,114164,EAST MOLINE,IL,2986,FAILURE +MERCURY SAVINGS,2/23/1990,2158830,1794178,HUNTINGTON BEACH,CA,15683,FAILURE +TEXASBANC SAVINGS,2/23/1990,248839,385722,CONROE,TX,325899,FAILURE +NOWLIN SA,2/23/1990,200506,195537,FT. WORTH,TX,58132,FAILURE +THE ST. JOSEPH LOAN & TRUST COMPANY,2/16/1939,,3202,SOUTH BEND,IN,,FAILURE +FIRST NATIONAL BANK OF SANGER,3/1/1990,19653,19943,SANGER,TX,2820,FAILURE +COMMUNITY STATE BANK OF ONALASKA,3/1/1990,9685,9611,ONALASKA,TX,2931,FAILURE +SEARCH NATIONAL BANK,3/1/1990,21155,22225,DALLAS,TX,6923,FAILURE +PIMA S & LA,3/2/1990,2734063,2128178,TUCSON,AZ,160525,FAILURE +SECURITY FS & LA,3/2/1990,341553,237490,RICHMOND,VA,24020,FAILURE +NEW ATHENS FS & LA,3/2/1990,30419,27643,NEW ATHENS,IL,1559,FAILURE +NORTH CAROLINA FS & LA,3/2/1990,628098,455029,CHARLOTTE,NC,41802,FAILURE +HAVEN FS & LA,3/2/1990,172437,146159,WINTER HAVEN,FL,32869,FAILURE +UNIVERSITY NATIONAL BANK OF COLLEGE STATIO,3/8/1990,36341,39534,COLLEGE STATION,TX,11740,FAILURE +FARMERS STATE BANK,3/8/1990,32735,33426,SCHULENBERG,TX,6668,FAILURE +THE FIRST NAT'L BANK & TR CO. OF BLACKWOOD,2/18/1939,,708,BLACKWOOD,NJ,,FAILURE +CITIZENS NATIONAL BANK,3/8/1990,16160,16845,DENTON,TX,1863,FAILURE +FIRST BANK NATIONAL ASSOCIATION,3/9/1990,33087,32147,CLEVELAND,OH,2203,FAILURE +HIAWATHA SAVINGS & LOAN,3/9/1990,49198,54136,HIAWATHA,KS,38427,FAILURE +PEOPLES FS & LA,3/9/1990,105531,91019,BARTLESVILLE,OK,10841,FAILURE +YORKWOOD S & LA,3/9/1990,205283,191301,MAPLEWOOD,NJ,53166,FAILURE +NASSAU S & LA,3/9/1990,313057,275627,PRINCETON,NJ,51884,FAILURE +INVESTORS SAVINGS BANK,3/9/1990,81110,65839,NASHVILLE,TN,16078,FAILURE +WESTPORT FEDERAL SAVINGS BANK,3/9/1990,169635,171548,HANFORD,CA,27717,FAILURE +BANK OF MEEKER,3/15/1990,15529,15503,MEEKER,OK,3756,FAILURE +LIBERTY CITY STATE BANK,3/15/1990,15189,15004,LIBERTY CITY,TX,1541,FAILURE +E. P. WILBUR TRUST COMPANY,11/16/1935,,4357,BETHLEHEM,PA,,FAILURE +PEOPLES STATE BANK,2/21/1939,,1932,FRANKFORT,KY,,FAILURE +INDEPENDENT NATIONAL BANK,3/15/1990,12417,13523,PHOENIX,AZ,3243,FAILURE +NASAU FEDERAL SAVINGS & LOAN,3/16/1990,296815,300473,BROOKLYN,NY,60274,FAILURE +LAKELAND SAVINGS BANK FSB,3/16/1990,79624,80645,DETROIT LAKES,MN,24793,FAILURE +FIRST FS & LA OF WICHITA FALLS,3/16/1990,84836,88145,WICHITA FALLS,TX,17125,FAILURE +WHITESTONE SAVINGS,3/16/1990,396946,352700,WHITESTONE,NY,36506,FAILURE +"UNITED FEDERAL SAVINGS, FA",3/16/1990,53244,43923,NEW ORLEANS,LA,16516,FAILURE +SUN FEDERAL SAVINGS ASSOC.,3/16/1990,24299,18967,FORT DODGE,IA,1832,FAILURE +GREAT AMERICAN FS & LA,3/16/1990,159235,133163,CORINTH,MS,29833,FAILURE +PACIFIC COAST S & LA,3/16/1990,1040267,633168,SAN FRANCISCO,CA,55672,FAILURE +FIRST AMERICA FSB,3/16/1990,187366,146818,LONGMONT,CO,41293,FAILURE +THE FIRST NATIONAL BANK IN BROOKSVILLE,2/25/1939,,274,BROOKSVILLE,FL,,FAILURE +THE CENTRAL NATIONAL BANK OF SAN ANGELO,3/22/1990,147449,148163,SAN ANGELO,TX,45132,FAILURE +MIAMI NATIONAL BANK,3/22/1990,46399,45124,MIAMI,FL,5254,FAILURE +COMMUNITY BANK,3/22/1990,41952,42089,NEW CANEY,TX,7459,FAILURE +AMERICAN BANK OF ARLINGTON,3/22/1990,28327,28823,ARLINGTON,TX,4391,FAILURE +"THE WALLER BANK, NATIONAL ASSOCIATION",3/22/1990,13354,13677,WALLER,TX,3460,FAILURE +ALVORD NATIONAL BANK,3/29/1990,7616,7663,ALVORD,TX,496,FAILURE +FIRST NATIONAL BANK OF GARLAND,3/29/1990,9394,10071,GARLAND,TX,2307,FAILURE +"CROWN BANK, NATIONAL ASSOCIATION",3/29/1990,22767,21927,SAN ANTONIO,TX,3217,FAILURE +EVERMAN NATIONAL BANK OF FORT WORTH,3/30/1990,65941,65547,FORT WORTH,TX,11444,FAILURE +IMPERIAL BANK,3/30/1990,23166,23983,CORAL GABLES,FL,5070,FAILURE +THE BANK OF ROCKY HILL,3/4/1939,163,154,ROCKY HILL,KY,,FAILURE +FIRST BANK & TRUST COMPANY,4/5/1990,13788,13101,CEDAR HILL,TX,1664,FAILURE +CHAMPIONS POINT NATIONAL BANK,4/5/1990,20581,19513,HOUSTON,TX,4808,FAILURE +"COLONY SAVINGS BANK, FSB",4/5/1990,427473,330654,MONACA,PA,82102,FAILURE +THE BAZINE STATE BANK,4/12/1990,16940,16509,BAZINE,KS,1959,FAILURE +FIRST FEDERAL SAVINGS & LOAN,4/12/1990,150053,144101,WARNER ROBINS,GA,14965,FAILURE +CONSTITUTION FED. SAVINGS ASSOC.,4/12/1990,66415,64763,MONTEREY PARK,CA,3,FAILURE +"THE SEAMEN'S BANK OF SAVINGS, FS",4/18/1990,3391988,2141918,NEW YORK,NY,148042,FAILURE +CORINTH DEPOSIT NATIONAL BANK,4/19/1990,8744,8652,CORINTH,KY,402,FAILURE +CHAS. SCHREINER BANK,4/19/1990,228079,232549,KERRVILLE,TX,38898,FAILURE +COVE STATE BANK,4/19/1990,37343,37464,COPPERAS COVE,TX,6022,FAILURE +THE POINT PLEASANT NATIONAL BANK,3/7/1939,461,410,POINT PLEASANT,WV,,FAILURE +FIRST STATE BANK OF CRANDALL,4/19/1990,15830,15627,CRANDALL,TX,3031,FAILURE +SECURITY NATIONAL BANK OF ELGIN,4/19/1990,10839,10710,ELGIN,TX,2351,FAILURE +ACADIANA NATIONAL BANK,4/19/1990,33510,33030,LAFAYETTE,LA,1341,FAILURE +BERGEN PARK NATIONAL BANK,4/20/1990,5769,5896,EVERGREEN,CO,1113,FAILURE +FIRST SAVINGS & LOAN,4/20/1990,168158,157855,MASSILON,OH,14379,FAILURE +HERITAGE FSA,4/20/1990,45859,44335,LAMAR,CO,8185,FAILURE +TEXAS FSA,4/20/1990,55368,60497,SAN ANTONIO,TX,49152,FAILURE +SOUTHEASTERN FEDERAL SAVINGS BANK,4/20/1990,49813,38391,LAUREL,MS,8914,FAILURE +FIRST NETWORK SAVINGS BANK,4/20/1990,303826,393643,LOS ANGELES,CA,186061,FAILURE +ENTERPRISE FED. FSA,4/20/1990,62602,45095,CLEARWATER,FL,9293,FAILURE +STATE BANK OF FORESTVILLE,3/8/1939,342,281,FORESTVILLE,WI,,FAILURE +TRINITY NATIONAL BANK OF DALLAS,4/26/1990,37140,37505,DALLAS,TX,1158,FAILURE +CENTRAL ARIZONA BANK,4/26/1990,6644,7083,CHANDLER,AZ,1029,FAILURE +"SIGNATURE BANK, NATIONAL ASSOCIATION",4/26/1990,26758,27398,DALLAS,TX,1619,FAILURE +GUARDIAN BANK,4/26/1990,25901,27020,SCOTTSDALE,AZ,8369,FAILURE +SANTA BARBARA S & L ASSOC.,4/27/1990,4291640,1744298,SANTA BARBARA,CA,55,FAILURE +HOME OWNERS SAVINGS BANK,4/27/1990,3491516,2701444,BURLINGTON,MA,354298,FAILURE +RICHARDSON NATIONAL BANK,5/3/1990,50460,59061,RICHARDSON,TX,12416,FAILURE +"FIRST NATIONAL BANK, NORTHEAST",5/3/1990,18013,18699,AUSTIN,TX,4692,FAILURE +TUCKER STATE BANK,5/4/1990,41759,43458,JACKSONVILLE,FL,17829,FAILURE +FIRST FED. SAVINGS BANK & TRUST,5/4/1990,25410,21072,INDEPENDENCE,MO,9892,FAILURE +RAHWAY TRUST COMPANY,3/11/1939,,1187,RAHWAY,NJ,,FAILURE +CAPITOL FEDERAL SAVINGS & LOAN,5/4/1990,980569,794367,AURORA,CO,391105,FAILURE +MUTUAL AIDE S & LA,5/4/1990,103314,105011,MANASQUAN,NJ,17873,FAILURE +SECURITY FEDERAL SAVINGS BANK,5/4/1990,26863,34154,CARLSBAD,NM,15479,FAILURE +PENINSULA S & LA,5/4/1990,51805,46145,SOUTH SAN FRANCISCO,CA,1461,FAILURE +"MISSISSIPPI SAVINGS BANK, FSB",5/8/1990,172343,148703,BATESVILLE,MS,16308,FAILURE +CHANCERY NATIONAL BANK,5/9/1990,15234,14917,DENVER,CO,2442,FAILURE +FIRST NATIONAL BANK OF GRAND SALINE,5/10/1990,28574,28669,GRAND SALINE,TX,6291,FAILURE +COMMONWEALTH NATIONAL BANK,5/10/1990,44494,45691,DALLAS,TX,2305,FAILURE +DOMINION NATIONAL BANK OF DENVER,5/10/1990,15317,14568,DENVER,CO,2224,FAILURE +FIRST NATIONAL BANK OF DESOTO,5/10/1990,24070,26512,DESOTO,TX,8608,FAILURE +EDEN STATE BANK,3/18/1939,,179,EDEN,WI,,FAILURE +"UNITED SAVINGS BANK, FSB",5/11/1990,161452,133233,WINDOM,MN,43841,FAILURE +THE FEDERAL SAVINGS BANC FA,5/11/1990,137288,124286,ARLINGTON,TX,41210,FAILURE +FIRST FSA OF BREAUX BRIDGE,5/11/1990,20360,20901,BREAUX BRIDGE,LA,1414,FAILURE +GREAT WEST FEDERAL SAVINGS BANK,5/11/1990,28089,31038,CRAIG,CO,4904,FAILURE +UNITED SAVINGS FSB,5/15/1990,245785,244812,PATERSON,NJ,21053,FAILURE +THE FIRST NATIONAL BANK OF GEORGETOWN,5/17/1990,71615,70280,GEORGETOWN,TX,32877,FAILURE +FIRST-TAYLOR NATIONAL BANK,5/17/1990,74001,79791,TAYLOR,TX,10857,FAILURE +"MERCHANTSBANK OF BOSTON, A CO-OP",5/18/1990,392219,390997,BOSTON,MA,95568,FAILURE +JONESBORO FEDERAL SA,5/18/1990,55046,54058,JONESBORO,LA,18829,FAILURE +FIRST FEDERAL SAVINGS OF CONROE,5/18/1990,174251,146206,CONROE,TX,29614,FAILURE +THE FULTON STATE BANK,3/18/1939,168,137,FULTON,IN,,FAILURE +JENNINGS FSA,5/18/1990,54070,55946,JENNINGS,LA,10978,FAILURE +FIRST FSA,5/18/1990,63198,53681,BORGER,TX,16565,FAILURE +SOUTHWEST SAVINGS ASSOCIATION,5/18/1990,5325053,3767794,DALLAS,TX,390465,FAILURE +GENTRY COUNTY BANK,5/24/1990,42268,46328,ALBANY,MO,5583,FAILURE +FARMERS STATE BANK OF BROOKSHIRE,5/24/1990,19438,19590,BROOKSHIRE,TX,3327,FAILURE +"MEMORIAL BANK, NATIONAL ASSOCIATION",5/24/1990,75928,73263,HOUSTON,TX,34809,FAILURE +MIDWAY NATIONAL BANK,5/24/1990,16389,17059,DALLAS,TX,4461,FAILURE +FIRST AMERICAN FEDERAL SAVINGS,5/25/1990,450689,444172,FORT SMITH,AR,45217,FAILURE +FIRST FEDERAL SAVINGS & LOAN,5/25/1990,232334,209021,NEW BRAUNFELS,TX,29593,FAILURE +CAGAUS-CENTRAL FEDERAL SAVINGS,5/25/1990,1639132,1255567,CAGUAS,PR,231272,FAILURE +STATE BANK OF BREMEN,3/18/1939,61,28,BREMEN,ND,,FAILURE +REMINGTON FEDERAL SAVINGS ASSOC.,5/25/1990,127005,113909,ELGIN,TX,63199,FAILURE +"BANK USA, FEDERAL ASSOCIATION",5/25/1990,22853,20859,SILVIS,IL,-433,FAILURE +AMERICAN PIONEER SAVINGS BANK,5/25/1990,1613793,1375875,ORLANDO,FL,446120,FAILURE +THE HUNTSVILLE NATIONAL BANK,5/31/1990,107169,107969,HUNTSVILLE,TX,11189,FAILURE +"THE WILSHIRE BANK, NATIONAL ASSOC",5/31/1990,24752,23915,LOS ANGELES,CA,3435,FAILURE +ROCKY MOUNTAIN NATIONAL BANK,5/31/1990,9203,8860,DENVER,CO,1677,FAILURE +THE HOME NATIONAL BANK OF MILFORD,6/1/1990,461659,436259,MILFORD,MA,94699,FAILURE +"NBC BANK- SOUTH TEXAS, NATIONAL",6/1/1990,118358,126492,CORPUS CHRISTI,TX,10430,FAILURE +"NBC BANK-SAN ANTONIO, NATIONAL ASSOC",6/1/1990,938232,877566,SAN ANTONIO,TX,66106,FAILURE +"NBC BANK-SEGUIN, NATIONAL ASSOC",6/1/1990,63757,68258,SEGUIN,TX,5647,FAILURE +MERCHANTS & FARMERS BANK,3/23/1939,223,192,ATKINS,AR,,FAILURE +"NBC BANK-RIO GRANDE VALLEY, NA",6/1/1990,138742,135221,MISSION,TX,0,FAILURE +"NBC BANK-BOERNE, NATIONAL ASSOC",6/1/1990,53811,57099,BOERNE,TX,296,FAILURE +"NBC BANK-UVALDE, NATIONAL ASSOC",6/1/1990,35133,36165,UVALDE,TX,0,FAILURE +"NBC BANK-HOUSTON, NATIONAL ASSOC",6/1/1990,186247,284619,HOUSTON,TX,115996,FAILURE +"NBC BANK-AUSTIN, NATIONAL ASSOC",6/1/1990,33805,41824,AUSTIN,TX,5786,FAILURE +"NBC BANK-KERRVILLE, NATIONAL ASSOC",6/1/1990,26011,30750,KERRVILLE,TX,4239,FAILURE +FIRST ANNAPOLIS SAVINGS,6/1/1990,720116,618270,ANNAPOLIS,MD,176938,FAILURE +MUTUAL S & LA,6/1/1990,104774,93295,WEATHERFORD,TX,15755,FAILURE +TIME FS & LA,6/1/1990,57943,53942,SAN FRANCISCO,CA,3127,FAILURE +INVESTORS OF FLORIDA,6/1/1990,282574,244856,DEERFIELD BEACH,FL,64122,FAILURE +PRESIDIO VALLEY BANK,11/18/1935,73,49,PRESIDIO,TX,,FAILURE +BANK OF AMORITA,4/6/1939,132,117,AMORITA,OK,,FAILURE +GREAT LIFE FSA,6/1/1990,42727,36325,SUNRISE,FL,7549,FAILURE +RICHMARK BANK,6/7/1990,35194,35824,HOUSTON,TX,11665,FAILURE +HULEN NATIONAL BANK,6/7/1990,11718,11705,FORT WORTH,TX,0,FAILURE +TEXAS NATIONAL BANK,6/7/1990,131825,131684,EL PASO,TX,6309,FAILURE +CLIFTON NATIONAL BANK,6/7/1990,12139,12217,CLIFTON,TX,1625,FAILURE +THE MERCHANTS BANK OF CALIFORNIA,6/8/1990,62435,60994,BEVERLY HILLS,CA,3354,FAILURE +HOMETOWN SAVINGS BANK FSB,6/8/1990,64666,58653,DELPHI,IN,8121,FAILURE +HOME FEDERAL,6/8/1990,235780,243512,WORCESTER,MA,139459,FAILURE +FIRST BANKERS TRUST,6/8/1990,103645,93539,MIDLAND,TX,14543,FAILURE +NATIONAL CITY BANK OF DENVER,6/14/1990,58350,65127,DENVER,CO,13507,FAILURE +THE FIRST NATIONAL BANK OF PLAINFIELD,4/8/1939,,4080,PLAINFIELD,NJ,,FAILURE +EXCHANGE NATIONAL BANK OF DEL CITY,6/14/1990,43160,39583,DEL CITY,OK,6995,FAILURE +THE WIMBERLEY BANK,6/14/1990,23282,24293,WIMBERLEY,TX,3836,FAILURE +"ALLIANCE BANK, NATIONAL ASSOCIATION",6/14/1990,81144,85452,AUSTIN,TX,14250,FAILURE +WILLOW BEND NATIONAL BANK,6/14/1990,58945,66130,PLANO,TX,26590,FAILURE +BANK M,6/15/1990,10691,10719,MIAMI,FL,3852,FAILURE +UNITED S & L OF TRENTON,6/15/1990,277721,277303,TRENTON,NJ,33795,FAILURE +MOULTRIE SAVINGS BANK FSB,6/15/1990,65753,52651,MOULTRIE,GA,2459,FAILURE +FIRST FEDERAL SAVINGS & LOAN,6/15/1990,156335,134186,METAIRIE,LA,51720,FAILURE +CHARTER SAVINGS BANK,6/15/1990,313895,280368,NEWPORT,CA,9808,FAILURE +FARMERS AND MERCHANTS BANK,6/18/1990,23999,22382,BUCKEYE,AZ,5768,FAILURE +BANK OF BRUSSELS,4/14/1939,,148,BRUSSELS,IL,,FAILURE +BANK OF EAST TEXAS,6/21/1990,11049,11173,TYLER,TX,3507,FAILURE +PEOPLES NATIONAL BANK,6/21/1990,9649,10848,CALDWELL,TX,3152,FAILURE +CENTRE NATIONAL BANK-FARMERS BRANCH,6/21/1990,39656,39179,FARMERS BRANCH,TX,5164,FAILURE +LAKELAND STATE BANK,6/21/1990,12774,12760,AUSTIN,TX,1651,FAILURE +"GERMANIA BANK, FSB",6/22/1990,785535,663333,ALTON,IL,60667,FAILURE +SOUTHERN FEDERAL BANK FOR SAVINGS,6/22/1990,142792,93946,GULFPORT,MS,34991,FAILURE +THE VALLEY VIEW NATIONAL BANK,6/28/1990,12969,12958,VALLEY VIEW,TX,1511,FAILURE +SOUTHWEST NATIONAL BANK,6/28/1990,33621,33592,AUSTIN,TX,7343,FAILURE +BROOKWOOD NATIONAL BANK,6/28/1990,26870,26784,OKLAHOMA CITY,OK,5620,FAILURE +"BACLIFF BANK, NATIONAL ASSOCIATION",6/28/1990,7131,7758,BACLIFF,TX,1606,FAILURE +THE TRUST COMPANY OF NEW JERSEY,4/20/1939,,48822,JERSEY CITY,NJ,,FAILURE +AMERICAN NATIONAL BANK,6/28/1990,14841,14775,ELK CITY,OK,1362,FAILURE +ELIOT SAVINGS BANK,6/29/1990,479461,468006,BOSTON,MA,212298,FAILURE +THE MONTGOMERY NATIONAL BANK,6/29/1990,92628,91622,MONTGOMERY TWNSP,NJ,0,FAILURE +TRAVIS SAVINGS & LOAN ASSOC.,6/29/1990,321705,273507,SAN ANTONIO,TX,53149,FAILURE +PIONEER FS & LA,6/29/1990,9466,9113,MARIETTA,OH,1018,FAILURE +FIRST JACKSON FSB,6/29/1990,116519,91386,JACKSON,MS,21956,FAILURE +WINDSOR SAVINGS ASSOC.,6/29/1990,108825,102713,AUSTIN,TX,45045,FAILURE +CHARTER SAVINGS & LOAN,6/29/1990,102977,83347,STAMFORD,CT,55726,FAILURE +"HOME SB, FSB",7/5/1990,12775,9890,SALT LAKE CITY,UT,218,FAILURE +CAPITAL NATIONAL BANK,7/6/1990,158197,145767,BRONX,NY,56133,FAILURE +WEST BERGEN TRUST COMPANY,4/20/1939,,2686,JERSEY CITY,NJ,,FAILURE +HERITAGE FSA,7/6/1990,48819,50638,LANCASTER,PA,1,FAILURE +MILFORD SAVINGS BANK,7/6/1990,328062,297787,MILFORD,MA,135232,FAILURE +IREDELL STATE BANK,7/12/1990,10020,10072,IREDELL,TX,2441,FAILURE +AMERICAN NATIONAL BANK OF GREENVILLE,7/12/1990,29081,29473,GREENVILLE,TX,6898,FAILURE +THE PERMANENT SAVINGS BANK,7/13/1990,329994,319311,NIAGARA FALLS,NY,0,FAILURE +CAPITOL-UNION FSA,7/13/1990,392790,322633,BATON ROUGE,LA,116785,FAILURE +NORTH TEXAS FSA,7/13/1990,96995,95941,WICHITA FALLS,TX,8176,FAILURE +SUMMIT FIRST S & LA,7/13/1990,57798,55837,SUMMIT,IL,-21,FAILURE +PROGRESSIVE SB,7/13/1990,50232,46512,NATCHITOCHES,LA,17078,FAILURE +COMMONWEALTH SAVINGS ASSOC.,7/20/1990,44046,44346,NEW ORLEANS,LA,19070,FAILURE +RIPLEY SAVINGS BANK & TRUST COMPANY,4/28/1939,794,739,RIPLEY,TN,,FAILURE +MAINSTAY FEDERAL SAVINGS,7/20/1990,226096,165855,RED BANK,NJ,52532,FAILURE +UNITED FS & LA,7/20/1990,18949,18880,VIDALIA,LA,0,FAILURE +"CHARTER BANK, A FSB",7/20/1990,130831,68851,HATTIESBURG,MS,22638,FAILURE +BANK OF WILSON,7/26/1990,12982,13046,WILSON,OK,1754,FAILURE +CONTINENTAL BANK,7/26/1990,135476,136013,DALLAS,TX,24659,FAILURE +BANK OF ODESSA,7/26/1990,14364,14707,ODESSA,TX,3895,FAILURE +FIRST NATIONAL BANK,7/26/1990,10915,11094,PURCELL,OK,1476,FAILURE +U.S. SAVINGS BANK OF AMERICA,7/27/1990,12416,12068,SEABROOK,NH,1511,FAILURE +GUARANTY SAVINGS BANK FSB,7/27/1990,53900,49904,FAYETTEVILLE,NC,8529,FAILURE +PROFESSIONAL SAVINGS BANK,7/27/1990,695604,618411,CORAL GABLES,FL,251452,FAILURE +COLUMBIA TRUST COMPANY OF NEW JERSEY,4/29/1939,,1484,HOBOKEN,NJ,,FAILURE +CITIZENS & BUILDERS FS,7/27/1990,119184,97890,PENSACOLA,FL,31553,FAILURE +"STATESMAN BANK FOR SAVINGS, FSB",7/27/1990,540440,445078,DES MOINES,IA,20411,FAILURE +UNITED FSB,7/31/1990,415606,352744,VIENNA,VA,134507,FAILURE +AMERICAN BANK & TRUST COMPANY,8/2/1990,351544,319815,BATON ROUGE,LA,6211,FAILURE +"UNITED BANK OF WACO, NATIONAL ASSOC",8/2/1990,250030,254242,WACO,TX,33119,FAILURE +HOMETOWN FSA,8/3/1990,46450,39362,WINFIELD,IL,6305,FAILURE +TENNESSEE FEDERAL SAVINGS BANK,8/3/1990,40020,36049,COOKEVILLE,TN,10908,FAILURE +AMIGO FS & LA,8/3/1990,20745,20836,BROWNSVILLE,TX,5217,FAILURE +FIRST NATIONAL BANK OF CORPUS CHRISTI,8/9/1990,117002,116535,CORPUS CHRISTI,TX,19713,FAILURE +THE NATIONAL BANK OF WASHINGTON,8/10/1990,1650969,1268268,WASHINGTON,DC,224314,FAILURE +BANK OF EDEN,4/29/1939,,734,EDEN,NY,,FAILURE +FIRST PACIFIC BANK,8/10/1990,118841,113212,BEVERLY HILLS,CA,43448,FAILURE +AMERICAN SA OF MT. CARMEL,8/10/1990,11851,11763,MT. CARMEL,IL,1804,FAILURE +SUPERIOR FEDERAL SAVINGS BANK,8/10/1990,80206,77541,NACOGDOCHES,TX,11442,FAILURE +CHERRY CREEK NATIONAL BANK,8/16/1990,85818,94612,DENVER,CO,11198,FAILURE +CAPITOL BANK & TRUST,8/16/1990,33095,32512,OKLAHOMA CITY,OK,4060,FAILURE +CITY NATIONAL BANK,8/16/1990,35577,39313,HOUSTON,TX,9036,FAILURE +FIRST FSA OF TUSCOLA,8/17/1990,23179,23414,TUSCOLA,IL,1997,FAILURE +FINANCIAL SAVINGS OF HARTFORD FSB,8/17/1990,21927,17578,HARTFORD,CT,3240,FAILURE +SWEETWATER FS & LA,8/22/1990,11625,11705,ROCK SPRINGS,WY,1290,FAILURE +FIRST FS & LA,8/24/1990,315404,327353,TEMPLE,TX,39539,FAILURE +HUDSON TRUST COMPANY,4/29/1939,,24484,UNION CITY,NJ,,FAILURE +BROKEN ARROW SAVINGS ASSOC.,8/24/1990,26929,23243,BROKEN ARROW,OK,4952,FAILURE +AMBASSADOR FS & LA,8/24/1990,184143,161964,TAMARAC,FL,52119,FAILURE +THE FIRST NATIONAL BANK OF LEVELLAND,8/30/1990,62249,64398,LEVELLAND,TX,9446,FAILURE +BAY CITY BANK & TRUST CO.,8/30/1990,79609,82719,BAY CITY,TX,22330,FAILURE +"AMERICAN BANK OF COMMERCE, NA",8/30/1990,17389,17482,DEL RIO,TX,3606,FAILURE +SECURITY NATIONAL BANK,8/30/1990,15067,15790,AUSTIN,TX,2208,FAILURE +CITIZENS NATIONAL BANK,8/30/1990,51326,53206,EL CAMPO,TX,10160,FAILURE +CHISHOLM NATIONAL BANK,8/30/1990,20886,21192,PLANO,TX,3917,FAILURE +FIRST BANK OF PLANO,8/30/1990,9248,9612,PLANO,TX,1896,FAILURE +FIRST FSA,8/31/1990,54747,51102,WINNFIELD,LA,6312,FAILURE +TATUM STATE BANK,5/2/1939,47,17,TATUM,TX,,FAILURE +ATLANTA FSA,8/31/1990,89379,89555,ATLANTA,TX,8365,FAILURE +"FIRST AMERICAN SAVINGS BANK, FSB",8/31/1990,123625,108866,SANTA FE,NM,57392,FAILURE +"ENSIGN BANK, FSB",8/31/1990,1780403,1468703,NEW YORK,NY,628535,FAILURE +NORTHSIDE BANK,9/6/1990,54654,53617,SAN ANTONIO,TX,4009,FAILURE +EL PASO FEDERAL SAVINGS,9/7/1990,433067,370359,EL PASO,TX,142525,FAILURE +FIRST CITY FSB,9/7/1990,41726,38043,LUCEDALE,MS,9001,FAILURE +THE PAWNEE NATIONAL BANK,9/12/1990,14206,14628,PAWNEE,OK,2338,ASSISTANCE +FIRST NATIONAL BANK OF CROSBY,9/13/1990,12433,12335,CROSBY,ND,77,FAILURE +WESTERN NATIONAL BANK,9/13/1990,34013,35168,FORT WORTH,TX,8808,FAILURE +CITIZENS BANK,9/13/1990,15876,15963,CLARKSVILLE,TX,1648,FAILURE +LENNON STATE BANK,11/26/1935,79,74,LENNON,MI,,FAILURE +THE PARKSLEY NATIONAL BANK,5/18/1939,279,182,PARKSLEY,VA,,FAILURE +FIRST NATIONAL BANK OF KENNEDALE,9/13/1990,27485,27733,KENNEDALE,TX,7429,FAILURE +INGRAM STATE BANK,9/14/1990,23452,23216,INGRAM,TX,1308,FAILURE +CITIZENS NATIONAL BANK,9/14/1990,12791,13076,KERRVILLE,TX,2787,FAILURE +FIRST SB OF HEMPSTEAD,9/14/1990,35355,30879,HEMPSTEAD,TX,1670,FAILURE +FIRST STATE BANK OF RISING STAR,9/20/1990,13983,13876,RISING STAR,TX,2710,FAILURE +FIRST COMANCHE BANK,9/20/1990,33116,34942,COMANCHE,TX,7167,FAILURE +CITY NATIONAL BANK OF IRVING,9/20/1990,32126,33768,IRVING,TX,5791,FAILURE +SENTRY FEDERAL SAVINGS BANK,9/21/1990,735467,588534,HYANNIS,MA,192078,FAILURE +MERCER SAVINGS BANK,9/21/1990,92695,83408,TRENTON,NJ,18614,FAILURE +YORKVILLE FEDERAL SAVINGS,9/21/1990,344684,347042,NEW YORK,NY,76827,FAILURE +BANK OF HARTLAND,5/29/1939,455,370,HARTLAND,WI,,FAILURE +HIDALGO SAVINGS & LOAN,9/21/1990,154818,122038,EDINBURG,TX,34252,FAILURE +TEXAS COMMERCIAL SA,9/21/1990,27674,26846,SULPHUR SPRINGS,TX,6951,FAILURE +FORT WORTH STATE BANK,9/27/1990,20689,22222,FORT WORTH,TX,9334,FAILURE +GREAT WESTERN NATIONAL BANK,9/27/1990,13377,13321,LEWISVILLE,TX,1592,FAILURE +"WOODWAY BANK AND TRUST, NA",10/4/1990,35375,35365,HOUSTON,TX,2603,FAILURE +THE PEOPLES BANK & TRUST COMPANY,10/5/1990,117050,115765,NATCHITOCHES,LA,12577,FAILURE +MOUNTAIN RIDGE STATE BANK,10/5/1990,51426,50209,WEST ORANGE,NJ,12808,FAILURE +UNITED PEOPLES BANK,10/11/1990,32673,32826,LAMPASAS,TX,6474,FAILURE +INTERNATIONAL FS & LA,10/12/1990,84250,81464,N. MIAMI BEACH,FL,13022,FAILURE +THE BROOKLYN SAVINGS BANK,10/19/1990,130931,93816,DANIELSON,CT,30802,FAILURE +GLOUCESTER CITY TRUST COMPANY,6/3/1939,,1160,GLOUCESTER CITY,NJ,,FAILURE +METROPOLITAN NATIONAL BANK,10/19/1990,19851,20103,MCALLEN,TX,2875,FAILURE +FIRST AMERICAN BANK FOR SAVINGS,10/19/1990,526176,489285,BOSTON,MA,138008,FAILURE +"HERITAGE SAVINGS BANK, FSB",10/19/1990,888751,726199,RICHMOND,VA,124237,FAILURE +GOLD COAST SAVINGS BANK,10/19/1990,151694,141804,PLANTATION,FL,46894,FAILURE +SUPERIOR FSA,10/23/1990,95923,57964,CLEVELAND,OH,20620,FAILURE +FIRST NATIONAL BANK OF JACKSON,10/25/1990,73684,69932,JACKSON,TN,5155,FAILURE +THE FARMERS AND MERCHANTS BANK OF SHEYENNE,10/26/1990,2899,2867,SHEYENNE,ND,826,FAILURE +RANCHO BERNARDO FED. SAV. BANK,10/26/1990,118634,113127,SAN DIEGO,CA,7700,FAILURE +CITY SAVINGS & LOAN,10/26/1990,182972,182869,SAN ANTONIO,TX,39109,FAILURE +TRINITY NATIONAL BANK,11/1/1990,21468,21903,BENBROOK,TX,5882,FAILURE +COMMONWEALTH TRUST COMPANY,6/3/1939,,5763,UNION CITY,NJ,,FAILURE +LONE STAR NATIONAL BANK,11/2/1990,34211,42529,DALLAS,TX,20594,FAILURE +DESOTO FS & LA,11/2/1990,63885,63147,MANSFIELD,LA,8470,FAILURE +RIVERSIDE SAVINGS BANK,11/2/1990,177838,144964,RIVERSIDE,NJ,57205,FAILURE +BOONSLICK S & LA,11/2/1990,70151,70060,BOONVILLE,MO,2876,FAILURE +FREEDOM NATIONAL BANK OF NEW YORK,11/9/1990,110444,101021,NEW YORK,NY,12327,FAILURE +FLORIDA FEDERAL SAVINGS BANK,11/9/1990,4115008,2271190,ST. PETERSBURG,FL,393637,FAILURE +LOUISIANA FEDERAL SAVINGS BANK,11/9/1990,58810,50470,KENNER,LA,9539,FAILURE +EXECUTIVE BANC SA,11/9/1990,16183,15514,NEW BRAUNFELS,TX,3579,FAILURE +WESTERN BANK,11/15/1990,39838,39563,DUNCANVILLE,TX,5880,FAILURE +ACTION FEDERAL SAVINGS,11/15/1990,261969,199017,SOMMERS POINT,NJ,81662,FAILURE +MERCHANTS TRUST COMPANY,6/3/1939,,5593,UNION CITY,NJ,,FAILURE +FIRST FEDERAL SAVINGS ASSOC.,11/16/1990,55433,41409,LAS VEGAS,NM,14413,FAILURE +LIBERTY FEDERAL SAVINGS BANK,11/16/1990,53786,51693,MONTEBELLO,CA,3322,FAILURE +SOUTHEASTERN SAVINGS BANK,11/16/1990,422279,367628,CHARLOTTE,NC,23647,FAILURE +FARMERS STATE BANK OF MADISONVILLLE,11/29/1990,34847,34565,MADISONVILLE,TX,1617,FAILURE +BANK OF ARLINGTON,11/29/1990,63605,59795,ARLINGTON,TX,5113,FAILURE +BOUNDARY WATERS STATE BANK,11/30/1990,13426,13413,ELY,MN,1460,FAILURE +FIRST FSA OF NACOGDOCHES,11/30/1990,61907,51776,NACOGDOCHES,TX,22259,FAILURE +EDISON FSA,11/30/1990,140107,115788,NEW YORK,NY,3943,FAILURE +FIRST SA,11/30/1990,64124,46665,PARAGOULD,AR,24622,FAILURE +TUSKEGEE S & LA,11/30/1990,31836,28475,TUSKEGEE,AL,15266,FAILURE +GLENDIVE STATE BANK,6/15/1939,162,119,GLENDIVE,MT,,FAILURE +SAN JACINTO SAVINGS,11/30/1990,2869629,2894745,HOUSTON,TX,1700654,FAILURE +ATASCOSA SA,11/30/1990,34662,32918,JOURDANTON,TX,7091,FAILURE +FIRST SOUTHWEST FS & LA,11/30/1990,51219,45339,TYLER,TX,4901,FAILURE +DOUGLAS COUNTY NATIONAL BANK,12/6/1990,5371,5325,PARKER,CO,763,FAILURE +HEIGHTS BANK,12/7/1990,28752,27025,HARKER HEIGHTS,TX,4720,FAILURE +FIRST NATIONAL BANK OF ROWLETT,12/7/1990,20509,21351,ROWLETT,TX,6512,FAILURE +TEXARKANA FS & LA,12/7/1990,40379,43171,TEXARCANA,AR,11185,FAILURE +CENTRAL FEDERAL SAVINGS,12/7/1990,890776,848439,MINEOLA,NY,247559,FAILURE +FIRST FEDERAL SAVINGS,12/7/1990,520377,427460,RALEIGH,NC,55713,FAILURE +ANDREWS SAVINGS & LOAN ASSOC.,12/7/1990,126078,109694,ANDREWS,TX,10983,FAILURE +THE HAMILTON TRUST COMPANY OF PATERSON,6/17/1939,3734,2860,PATERSON,NJ,,FAILURE +NEW ENGLAND ALLBANK FOR SAVINGS,12/12/1990,173269,172263,GARDNER,MA,68035,FAILURE +FIRST STATE BANK,12/13/1990,7477,7581,LEXINGTON,OK,883,FAILURE +WASHINGTON COUNTY STATE BANK,12/13/1990,77722,77526,BRENHAM,TX,9368,FAILURE +BANK OF COMMERCE,12/13/1990,19650,19943,ALEXANDRIA,LA,4130,FAILURE +THE STATE BANK OF OMAHA,12/14/1990,20519,20615,OMAHA,TX,5339,FAILURE +FAR WESTERN BANK,12/14/1990,154318,150711,TUSTIN,CA,23931,FAILURE +PEOPLES STATE BANK,12/14/1990,30262,30597,DALLAS,TX,6295,FAILURE +FIRST COMMERCIAL BANK OF FLORIDA,12/14/1990,171578,164103,BOCA RATON,FL,27269,FAILURE +OLYMPIC FEDERAL SAVINGS,12/14/1990,1054382,683656,BERWYN,IL,73945,FAILURE +EMPIRE SAVINGS BANK,12/14/1990,219328,193704,HAMMONTON,NJ,28260,FAILURE +THE PLANTSVILLE NATIONAL BANK,6/24/1939,380,464,PLANTSVILLE,CT,,FAILURE +COMMUNITY FS & LA,12/14/1990,1977010,2282847,ST. LOUIS,MO,305919,FAILURE +COMFED SAVINGS BANK,12/14/1990,1402978,931868,LOWELL,MA,321340,FAILURE +OLD BOROUGH SAVINGS & LOAN,12/14/1990,133547,117224,TRENTON,NJ,6,FAILURE +FRONTIER SAVINGS ASSOCIATION,12/14/1990,252407,247450,LAS VEGAS,NV,-248,FAILURE +HOME FEDERAL BANK FOR SAVINGS,12/14/1990,348106,196099,WAUKEGAN,IL,19573,FAILURE +MID-AMERICA FS & LA,12/15/1990,1206441,894318,COLUMBUS,OH,71,FAILURE +ARKANSAS FSB,12/21/1990,71705,61584,LITTLE ROCK,AR,15373,FAILURE +"ENTERPRISE SAVINGS BANK, FA",12/27/1990,432576,322004,CHICAGO,IL,12622,FAILURE +CAPITOL BANK AND TRUST COMPANY,12/28/1990,485550,442317,BOSTON,MA,205878,FAILURE +SOUTHERN FS,12/28/1990,230780,230027,NEW ORLEANS,LA,7021,FAILURE +PLEASANTVILLE TRUST COMPANY,6/30/1939,1116,936,PLEASANTVILLE,NJ,,FAILURE +FIRST FS & LA OF ANDALUSIA,12/28/1990,38693,37738,ANDALUSIA,AL,6332,FAILURE +ROYAL OAK FS & LA,1/4/1991,27310,29154,RANDALLSTOWN,MD,2,FAILURE +FULTON FEDERAL SAVINGS BANK,1/4/1991,2016621,1380514,ATLANTA,GA,80646,FAILURE +FIRST FS & LA OF PITTSBURG,1/4/1991,3089704,2343171,PITTSBURGH,PA,96028,FAILURE +FIRST FEDERAL SAVINGS & LOAN,1/4/1991,638622,472426,SAN ANTONIO,TX,37685,FAILURE +TRIDENT FEDERAL S & L ASSOC.,1/4/1991,47159,44159,NEWARK,NJ,7519,FAILURE +THE CONNECTICUT BANK & TRUST CO,1/6/1991,7210748,6860236,HARTFORD,CT,151127,FAILURE +"BANK OF NEW ENGLAND, NATIONAL ASSOC",1/6/1991,13428614,9406853,BOSTON,MA,572581,FAILURE +MAINE NATIONAL BANK,1/6/1991,1045658,944665,PORTLAND,ME,0,FAILURE +COMMUNITY NATIONAL BANK,1/11/1991,85364,86936,GLASTONBURY,CT,26647,FAILURE +WEST HUDSON COUNTY TRUST COMPANY,6/30/1939,,5773,HARRISON,NJ,,FAILURE +FAR WEST SAVINGS & LOAN,1/11/1991,3714988,2981632,NEWPORT BEACH,CA,498684,FAILURE +CONNECTICUT SAVINGS AND LOAN,1/11/1991,17375,13680,HARTFORD,CT,3358,FAILURE +MALIBU SB,1/11/1991,139117,122923,COSTA MESA,CA,22127,FAILURE +IRVING SAVINGS & LOAN,1/18/1991,222484,235827,PATERSON,NJ,25727,FAILURE +BEACH FEDERAL SAVINGS ASSOC.,1/18/1991,81792,80703,FOUNTAIN VALLEY,CA,110,FAILURE +"AMERICAN BANK, NATIONAL ASSOCIATION",1/22/1991,20712,23319,RIO RANCHO,NM,10941,FAILURE +METROPOLITAN NATIONAL BANK,1/24/1991,97314,98491,FARMERS BRANCH,TX,15366,FAILURE +ALVARADO BANK,1/25/1991,33480,32106,RICHMOND,CA,4323,FAILURE +CENTER S & LA,1/25/1991,132562,125372,CLIFTON,NJ,15290,FAILURE +COLUMBIA SAVINGS & LOAN ASSN.,1/25/1991,5358626,5645608,BEVERLY HILLS,CA,206275,FAILURE +FIRST NATIONAL BANK OF LIMA,7/18/1934,91,42,LIMA,MT,,FAILURE +BANK OF LINDEN,11/27/1935,224,188,LINDEN,WI,,FAILURE +KEARNY NATIONAL BANK,6/30/1939,,3092,KEARNY,NJ,,FAILURE +TRUSTBANK FSB,1/25/1991,1823394,1509206,TYSONS CORNER,VA,172842,FAILURE +CORAL S & LA,1/25/1991,32197,31658,CORAL SPRINGS,FL,4291,FAILURE +CITIZENS NATIONAL BANK AND TRUST,1/29/1991,18776,19197,CHICAGO,IL,2626,FAILURE +BANK OF THE HILLS,1/31/1991,255108,237750,AUSTIN,TX,35259,FAILURE +"ROCKPORT BANK, NATIONAL ASSOCIATION",1/31/1991,17796,18038,ARANSAS COUNTY,TX,2997,FAILURE +THE MERCHANTS BANK AND TRUST CO,2/1/1991,269867,269021,NORWALK,CT,87535,FAILURE +MAINE SAVINGS BANK,2/1/1991,1182519,1191224,PORTLAND,ME,184197,FAILURE +FIRST FEDERAL SAVINGS OF TOLEDO,2/1/1991,1022500,1016062,TOLEDO,OH,38421,FAILURE +COREAST FSB,2/1/1991,1209981,993237,RICHMOND,VA,210819,FAILURE +GEORGE WASHINGTON FSA,2/1/1991,14586,13313,JONESBOROUGH,TN,1301,FAILURE +FIRST STATE BANK OF O'FALLON,8/28/1939,50,102,O'FALLON,IL,,FAILURE +LOCKHART STATE BANK,2/7/1991,24316,24800,LOCKHART,TX,2072,FAILURE +FIRST NATIONAL BANK IN KAUFMAN,2/7/1991,20351,20995,KAUFMAN,TX,3268,FAILURE +FIRST JERSEY S & LA ASSOC.,2/8/1991,287692,257442,WYCKOFF,NJ,37780,FAILURE +FIRST FSA OF WAYNESBORO,2/8/1991,18165,18137,WAYNESBORO,TN,2119,FAILURE +PEOPLES FEDERAL SAVINGS BANK,2/8/1991,59686,53910,BAY ST. LOUIS,MS,2091,FAILURE +FAMILY S & LA,2/8/1991,99576,60452,SEATTLE,WA,3621,FAILURE +UNITY FS & LA,2/8/1991,454475,444026,BEVERLY HILLS,CA,60093,FAILURE +THE FIRST NATIONAL BANK OF WORTH,2/14/1991,7282,7709,WORTHAM,TX,2111,FAILURE +MERCHANTS TRUST & SAVINGS BANK,2/14/1991,43848,42729,KENNER,LA,11175,FAILURE +FIRST NORTHERN COOP,2/20/1991,114564,87048,KEENE,NH,25824,FAILURE +RARDIN STATE BANK,8/30/1939,,3092,RARDIN,IL,,FAILURE +SOUTHWEST NATIONAL BANK,2/21/1991,37236,36461,ALBUQUERQUE,NM,4690,FAILURE +THE MCKINLEY BANK,2/22/1991,70565,65627,NILES,OH,0,FAILURE +HOLLYWOOD FSB,2/22/1991,1525465,1369899,HOLLYWOOD,FL,82556,FAILURE +FIRST FS & LA,2/22/1991,37523,36235,DALLAS,GA,4091,FAILURE +"UNITED CITIZENS BANK, NATIONAL ASSOC",2/28/1991,44906,47235,COLLEGE STATION,TX,9815,FAILURE +PEOPLES FEDERAL S & L ASSOC.,3/1/1991,107564,98599,NEW KENSINGTON,PA,2458,FAILURE +AMERIFIED SAVINGS BANK,3/1/1991,110647,99469,LAWRENCEVILLE,NJ,17600,FAILURE +MANILABANK,3/8/1991,20775,20349,LOS ANGELES,CA,3927,FAILURE +FIRST MARINE BANK OF FLORIDA,3/8/1991,17165,16769,PALM CITY,FL,3560,FAILURE +SEAFIRST BANK,3/8/1991,11521,11861,PORT ST. LUCIE,FL,1896,FAILURE +PROVIDENCE CITIZENS BANK,9/1/1939,306,251,PROVIDENCE,KY,,FAILURE +JEFFERSON FEDERAL SA,3/8/1991,666471,488725,BIRMINGHAM,AL,17504,FAILURE +FIRST FSA OF WEWOKA,3/8/1991,32917,27898,WEWOKA,OK,5239,FAILURE +BEACON FEDERAL SAVINGS,3/8/1991,405964,388612,BALDWIN,NY,19948,FAILURE +ALEXANDER HAMILTON,3/8/1991,210702,212882,PATERSON,NJ,4014,FAILURE +FIRST FSB,3/8/1991,51933,49950,HURON,SD,526,FAILURE +FIRST CITIZENS SLA,3/8/1991,200485,199317,FORT PIERCE,FL,36864,FAILURE +PREFFERED SAVINGS AND LOAN,3/8/1991,224456,174847,HIGH POINT,NC,19170,FAILURE +CROSSROADS BANK,3/14/1991,22416,22694,VICTORIA,TX,3957,FAILURE +COOLIDGE CORNER CO-OPERATIVE BANK,3/14/1991,83699,83843,BROOKLINE,MA,12127,FAILURE +THE BLACKSTONE BANK AND TRUST CO,3/15/1991,49258,48356,BOSTON,MA,15168,FAILURE +THE FARMERS STATE BANK,9/15/1939,97,82,CATO,WI,,FAILURE +AMERIFIRST FEDERAL SAVINGS,3/15/1991,3575040,2872239,MIAMI,FL,557515,FAILURE +BELL FEDERAL SAVINGS,3/15/1991,850573,733980,UPPER DARBY,PA,197296,FAILURE +HOME SAVINGS ASSOCIATION,3/15/1991,2944195,2623786,KANSAS CITY,MO,307557,FAILURE +ARCANIUM FSA,3/15/1991,45361,46771,ARCANUM,OH,2919,FAILURE +SOVEREIGN SB,3/15/1991,38909,33828,PALM HARBOR,FL,3389,FAILURE +CITADEL BANK,3/21/1991,21874,21643,WILLIS,TX,5701,FAILURE +SABINAL BANK,3/21/1991,24822,24395,SABINAL,TX,3673,FAILURE +STATE SAVINGS,3/22/1991,445379,393817,JACKSON HEIGHTS,NY,166282,FAILURE +FIRST FSA OF CHICKASHA,3/22/1991,161381,153087,CHICKASHA,OK,4311,FAILURE +UNITED FSA OF IOWA,3/22/1991,895845,715825,DES MOINES,IA,50214,FAILURE +SECURITY STATE BANK,10/3/1939,121,96,LAWRENCE,NE,,FAILURE +"THE FEDERAL SB, FSB",3/22/1991,150907,131244,SWAINSBORO,GA,46343,FAILURE +AMERICAN FEDERAL BANK,3/22/1991,110234,90436,ADA,OK,44585,FAILURE +CITIZENS SECURITY BANK,3/22/1991,34089,28176,BORGER,TX,6158,FAILURE +"REPUBLIC SB, FSB",3/22/1991,26394,26499,ROCKVILLE,MD,8380,FAILURE +"COUNTY BANK, FSB",3/27/1991,1172063,961737,SANTA BARBARA,CA,103369,FAILURE +THE LANDMARK BANK,3/28/1991,227859,219851,HARTFORD,CT,53299,FAILURE +CITY BANK AND TRUST,3/29/1991,116044,119406,CLAREMONT,NH,40626,FAILURE +CITIZENS NATIONAL BANK,3/29/1991,11414,11251,LIMON,CO,3011,FAILURE +FIRST STATE BANK,4/4/1991,26023,26208,WEIMAR,TX,2212,FAILURE +THE BLUEVILLE BANK OF GRAFTON,4/5/1991,48118,46936,GRAFTON,WV,3752,FAILURE +THE EGG HARBOR COMMERCIAL BANK,10/7/1939,,865,EGG HARBOR CITY,NJ,,FAILURE +COLUMBIA FSA OF HAMILTON,4/5/1991,61327,51742,HAMILTON,OH,1172,FAILURE +FIRST FS & LA OF SEMINOLE CO.,4/5/1991,185267,160429,SANFORD,FL,17734,FAILURE +FIRST SAVINGS OF ZION,4/5/1991,63207,60613,ZION,IL,6158,FAILURE +"FIRST FEDERAL SB, FSB",4/5/1991,30156,30573,ASHBURN,GA,2746,FAILURE +AMERICAN BANK & TRUST COMPANY,4/11/1991,60928,60439,SHREVEPORT,LA,10525,FAILURE +ARIZONA COMMERCE BANK,4/12/1991,80832,79757,TUCSON,AZ,7329,FAILURE +WHITNEY BANK AND TRUST,4/12/1991,40601,49222,HAMDEN,CT,29581,FAILURE +SECURITY SAVINGS & LOAN,4/12/1991,143194,129364,WATERBURY,CT,49989,FAILURE +COMMUNITY NATIONAL BANK,4/18/1991,19048,18929,SHERMAN,TX,2728,FAILURE +"PROSPECT PARK, FSB",4/19/1991,511522,474313,WEST PATERSON,NJ,94773,FAILURE +THE FARMERS STATE BANK,11/25/1939,,94,CUBA,KS,,FAILURE +METROPOLITAN FS & LA,4/19/1991,985057,811836,NASHVILLE,TN,112220,FAILURE +MERCANTILE SAVINGS BANK,4/19/1991,33779,33995,SOUTHAVEN,MS,9121,FAILURE +CIMARRON FEDERAL SAVINGS,4/19/1991,781965,713933,MUSKOGEE,OK,0,FAILURE +CHISHOLM FS & LA,4/19/1991,154401,147099,KINGFISHER,OK,-386,FAILURE +COLUMBINE VALLEY BANK AND TRUST,4/26/1991,9458,9213,JEFFERSON COUNTY,CO,2002,FAILURE +"HOME FS & LA, FA",4/26/1991,134307,116937,ALGONA,IA,4,FAILURE +AUGUSTA FSA,4/26/1991,151333,132558,BALTIMORE,MD,5595,FAILURE +"EXECUTIVE SB, FSB",4/26/1991,58634,55501,MARINA DEL REY,CA,6324,FAILURE +JOHN HANSON FSB,4/26/1991,840701,658563,BELTSVILLE,MD,147716,FAILURE +SUNBELT SAVINGS,4/26/1991,6038921,4265330,IRVING,TX,3,FAILURE +COMMERCIAL BANK OF LIBERTY,11/25/1939,548,502,LIBERTY,KY,,FAILURE +RED RIVER FS & LA,4/26/1991,422245,378312,LAWTON,OK,-442,FAILURE +BOSTON TRADE BANK,5/3/1991,307033,301548,BOSTON,MA,127300,FAILURE +FIRST FS & LA OF PITTSBURG,5/3/1991,290886,143505,PITTSBURG,KS,5,FAILURE +CENTURY FEDERAL SAVINGS,5/3/1991,25857,24375,CHICAGO,IL,1319,FAILURE +SENTRY FSA,5/3/1991,50295,47246,NORFOLK,VA,12306,FAILURE +"LIBERTY SB, FSB",5/3/1991,17787,17762,MARIETTA,OH,3322,FAILURE +"NEWTON SAVINGS BANK, FSA",5/3/1991,40854,38447,FAIRFIELD,NJ,3585,FAILURE +SECURITY FS & LA OF ALBUQUERQUE,5/3/1991,261711,193444,ALBUQUERQUE,NM,29423,FAILURE +THE FIRST NATIONAL BANK OF POTH,5/9/1991,18673,18545,POTH,TX,1450,FAILURE +CHIRENO STATE BANK,5/9/1991,12397,12345,CHIRENO,TX,1467,FAILURE +THE YONKERS NATIONAL BANK & TRUST CO.,12/4/1939,,8849,YONKERS,NY,,FAILURE +TEXAS BANK AND TRUST OF TEMPLE,5/9/1991,45228,44972,TEMPLE,TX,10724,FAILURE +VILLAGE GREEN NATIONAL BANK,5/9/1991,29452,27110,JERSEY VILLAGE,TX,8505,FAILURE +MADISON NATIONAL BANK,5/10/1991,473781,404200,WASHINGTON,DC,77772,FAILURE +MADISON NATIONAL BANK OF VIRGINIA,5/10/1991,174187,159413,MCLEAN,VA,18207,FAILURE +THE WASHINGTON BANK (OF MARYLAND),5/10/1991,38974,39003,BALTIMORE,MD,968,FAILURE +FIRST FS & LA OF FARGO,5/10/1991,50013,51170,FARGO,ND,3040,FAILURE +CAPITOL FEDERAL BANK FOR SAVINGS,5/10/1991,39274,33403,CHICAGO,IL,0,FAILURE +FIRST FS & LA OF CRESTON,5/10/1991,67326,67915,CRESTON,IA,1751,FAILURE +FIRST FSA OF NEWTON,5/10/1991,125607,105802,NEWTON,KS,1477,FAILURE +VERMILION FSB,5/10/1991,17825,17570,ABBEVILLE,LA,323,FAILURE +FARMERS BANK OF CHARLTON COUNTY,12/5/1935,287,229,KEYTESVILLE,MO,,FAILURE +THE STATE BANK OF LIEBENTHAL,12/6/1939,60,58,LIEBENTHAL,KS,,FAILURE +GUARANTY FSA,5/10/1991,25648,23606,WARNER ROBINS,GA,9770,FAILURE +COLONIAL FSB,5/10/1991,60629,62304,CRANSTON,RI,28617,FAILURE +CAPITAL BANK,5/16/1991,111610,104756,DALLAS,TX,25404,FAILURE +FIRST NATIONAL BANK OF CEDAR HILL,5/16/1991,10959,11132,CEDAR HILL,TX,2553,FAILURE +THE COSMOPOLITAN NATIONAL BANK OF CHICAGO,5/17/1991,110088,108468,CHICAGO,IL,14870,FAILURE +FIRST CITY BANK,5/17/1991,56068,56509,NEW ORLEANS,LA,10404,FAILURE +ALTUS FSB,5/17/1991,1970413,1154520,MOBILE,AL,71167,FAILURE +LUDINGTON FSB,5/17/1991,34190,33661,LUDINGTON,MI,807,FAILURE +THE FIRST NATIONAL BANK OF TOMS RIVER,5/22/1991,1417531,1380815,TOMS RIVER,NJ,115612,FAILURE +LIBERTY NATIONAL BANK,5/23/1991,51370,51562,LOVINGTON,NM,3917,FAILURE +MAYNARDVILLE STATE BANK,12/11/1939,218,186,MAYNARDVILLE,TN,,FAILURE +FAR WEST FSB,5/23/1991,2070002,1286017,PORTLAND,OR,313560,FAILURE +FLORIDA STATE BANK,5/24/1991,87374,81640,HOLIDAY,FL,16482,FAILURE +FIRST SECURITY BANK,5/24/1991,15885,15027,ROANOKE,VA,4460,FAILURE +PROGRESSIVE SAVINGS BANK,5/24/1991,388336,373666,PASADENA,CA,41659,FAILURE +"UNIVERSITY BANK, NATIONAL ASSOCIATION",5/31/1991,318836,295818,NEWTON,MA,104173,FAILURE +GOLDOME,5/31/1991,9890866,6525085,BUFFALO,NY,779432,FAILURE +WESTERLEIGH SAVINGS,5/31/1991,147849,145160,STATEN ISLAND,NY,9850,FAILURE +GOLDOME FSB,5/31/1991,1476880,1320508,ST. PETERSBURG,FL,96925,FAILURE +UNITED FS & LA,5/31/1991,119333,106033,SMYRNA,GA,10986,FAILURE +ENTERPRISE S&LA,5/31/1991,13508,13115,COMPTON,CA,88,FAILURE +THE TUCKERTON BANK,12/27/1939,735,624,TUCKERTON,NJ,,FAILURE +BURLESON COUNTY SAVINGS ASSOC.,5/31/1991,31475,31986,CALDWELL,TX,7388,FAILURE +MERABANK TEXAS,5/31/1991,1157911,744873,EL PASO,TX,-4386,FAILURE +"NORTHWEST BANK, NATIONAL ASSOCIATION",6/6/1991,7204,7215,SAN ANTONIO,TX,789,FAILURE +DRYADES S & LA,6/7/1991,262265,259731,NEW ORLEANS,LA,15075,FAILURE +WOBURN FIVE CENTS SAVINGS BANK,6/7/1991,247219,239998,WOBURN,MA,35933,FAILURE +THE BANK OF HORTON,6/13/1991,167298,170540,HORTON,KS,4250,FAILURE +TASCOSA NATIONAL BANK OF AMARILLO,6/13/1991,73908,75195,AMARILLO,TX,11845,FAILURE +PEOPLES BANK,6/13/1991,17273,16674,HEWITT,TX,3959,FAILURE +"TEXAS PREMIER BANK OF VICTORIA, NATIONAL A",6/13/1991,15449,15278,VICTORIA,TX,1245,FAILURE +SPRINGFIELD FSLA,6/14/1991,97522,95318,SPRINGFIELD,PA,-551,FAILURE +GUARANTY BOND STATE BANK,1/4/1940,169,119,NORTH ZULCH,TX,,FAILURE +"FIRST COMMERCE SB, FSB",6/14/1991,10886,10520,LOWELL,IN,1366,FAILURE +BEACON CO-OPERATIVE BANK,6/21/1991,31806,30538,BOSTON,MA,2887,FAILURE +GUARDIAN FSA,6/21/1991,682096,654275,HUNTINGTON BEACH,CA,150166,FAILURE +FIRST MUTUAL BANK FOR SAVINGS,6/28/1991,1129946,1081228,BOSTON,MA,169857,FAILURE +UNITED FS & LA,6/28/1991,142465,136677,JONESBORO,AR,16282,FAILURE +METROBANK FS & LA,6/28/1991,474327,350087,PALISADES PARK,NJ,145771,FAILURE +SURETY FS & LA,7/9/1991,224820,163447,MORGANTON,NC,1830,FAILURE +DRIPPING SPRINGS NATIONAL BANK,7/12/1991,20177,20527,DRIPPING SPRINGS,TX,3682,FAILURE +LANDMARK THRIFT AND LOAN ASSOCIATION,7/12/1991,16638,15835,SAN DIEGO,CA,2208,FAILURE +DANBURRY SAVINGS & LOAN,7/12/1991,270228,184143,DANBURY,CT,24663,FAILURE +THE CITIZENS STATE BANK OF NIANGUA,1/12/1940,143,119,NIANGUA,MO,,FAILURE +MONYCOR SAVINGS BANK,7/12/1991,151736,137588,BARRON,WI,1906,FAILURE +PAN AMERICAN FSB,7/12/1991,287190,250176,SAN MATEO,CA,8346,FAILURE +FIDELITY FS & LA,7/12/1991,67044,56885,AUSTIN,TX,4995,FAILURE +PONTCHARTRAIN STATE BANK,7/19/1991,139958,142089,METAIRIE,LA,29418,FAILURE +COMMUNITY GUARDIAN BANK,7/19/1991,55327,55038,ELMWOOD PARK,NJ,16016,FAILURE +CLINTON S & LA,7/19/1991,22220,21565,CLINTON,OK,2434,FAILURE +COOPERATIVE FSB,7/19/1991,74903,46985,WESTMONT,IL,1,FAILURE +NEW METROPOLITAN FSB,7/19/1991,18440,43214,HIALEAH,FL,28173,FAILURE +THE KERENS BANK,7/25/1991,19538,19848,KERENS,TX,5128,FAILURE +THE HOUSATONIC BANK & TRUST CO,7/26/1991,69070,64075,ANSONIA,CT,13403,FAILURE +INTEGRITY TRUST COMPANY,1/13/1940,,29362,PHILADELPHIA,PA,,FAILURE +SUBURBAN NATIONAL BANK,7/26/1991,91091,91287,HILLSBOROUGH TWNS,NJ,27794,FAILURE +WESTLAND FS & LA,7/26/1991,31809,31705,RAWLINS,WY,2695,FAILURE +ATLANTIC FINANCIAL FSB,7/26/1991,448913,413500,SAN FRANCISCO,CA,34963,FAILURE +STANDARD FS & LA,8/2/1991,319651,280738,COLUMBIA,SC,2702,FAILURE +CORAL COAST FSB,8/2/1991,61158,60341,BOYNTON BEACH,FL,16190,FAILURE +CITYTRUST,8/9/1991,1918530,1807942,BRIDGEPORT,CT,511098,FAILURE +MECHANICS AND FARMERS SAVINGS BANK,8/9/1991,1083920,903692,BRIDGEPORT,CT,324571,FAILURE +SOUTHCOAST BANK CORPORATION,8/9/1991,26094,26674,WEST PALM BEACH,FL,12617,FAILURE +BANK OF SOUTH PALM BEACHES,8/9/1991,61282,63475,HYPOLUXO,FL,30995,FAILURE +GREAT AMERICAN FSA,8/9/1991,9523603,7230789,SAN DIEGO,CA,995496,FAILURE +WOODCLIFF TRUST COMPANY,2/3/1940,,1492,NORTH BERGEN,NJ,,FAILURE +LARCHMONT FS & LA,8/9/1991,123777,123595,LARCHMONT,NY,6,FAILURE +FIRST FS & LA OF THIEF RIVER FALLS,8/9/1991,54605,55516,THIEF RIVER FALLS,MN,2620,FAILURE +NORTHWEST NATIONAL BANK,8/16/1991,29438,30190,FAYETTEVILLE,AR,936,FAILURE +ENFIELD NATIONAL BANK,8/16/1991,18966,19759,ENFIELD,CT,4529,FAILURE +FIRST AMERICAN FSB,8/16/1991,144988,130273,TUCSON,AZ,11229,FAILURE +"CENTRE SA, FA",8/16/1991,15233,15618,ARLINGTON,TX,4682,FAILURE +BUCHEL BANK & TRUST CO.,8/22/1991,25026,24778,CUERO,TX,1255,FAILURE +FIRST MEXIA BANK,8/22/1991,22479,22432,MEXIA,TX,3734,FAILURE +NEW AGE FSA,8/23/1991,9238,9585,ST. LOUIS,MO,1896,FAILURE +MERCHANTS & MECHANICS FSB,8/23/1991,209860,206081,SPRINGFIELD,OH,22550,FAILURE +BANK OF BROCTON,2/24/1940,,444,BROCTON,NY,,FAILURE +FIRST FS & LA,8/23/1991,73142,74359,MT. VERNON,OH,4,FAILURE +THE SAN SABA NATIONAL BANK,8/29/1991,15607,15492,SAN SABA,TX,1058,FAILURE +FIRST NATIONAL BANK AND TRUST CO,8/29/1991,33498,33799,BLACKWELL,OK,1088,FAILURE +HILTON HEAD BANK & TRUST COMPANY,8/30/1991,64629,63039,HILTON HEAD ISLAND,SC,20857,FAILURE +HILLSBOROUGH BANK AND TRUST CO,8/30/1991,49895,59467,MILFORD,NH,23907,FAILURE +FUTURE FEDERAL SAVINGS BANK,8/30/1991,422336,408926,LOUISVILLE,KY,29147,FAILURE +UNITED FSB,8/30/1991,39869,39317,PRESTONSBURG,KY,0,FAILURE +HOMESTEAD FSA,8/30/1991,223248,180986,MIDDLETOWN,PA,17492,FAILURE +LOWELL INSTITUTION FOR SAVINGS,8/30/1991,386363,318149,LOWELL,MA,122009,FAILURE +SUFFIELD BANK,9/6/1991,294777,257036,SUFFIELD,CT,83633,FAILURE +THE NATIONAL BANK OF WESTFIELD,2/24/1940,,1611,WESTFIELD,NY,,FAILURE +THE FAMILY BANK AND TRUST,9/6/1991,46671,46973,ALLENSTOWN,NH,10248,FAILURE +UNITED HOME FEDERAL,9/6/1991,443424,446860,TOLEDO,OH,9719,FAILURE +HEARTLAND S & LA,9/6/1991,121671,120790,LA MESA,CA,18381,FAILURE +BAY FSB,9/6/1991,58064,54053,WEST PALM BEACH,FL,12678,FAILURE +VALLEY BANK,9/13/1991,33694,35568,WHITE RIVER JUNCTION,VT,11069,FAILURE +EVERGREEN FS & LA,9/13/1991,40271,34959,CHARLESTON,WV,3584,FAILURE +DAVY CROCKETT FS & LA,9/13/1991,50532,48311,CROCKETT,TX,2321,FAILURE +FIRST BANK AND TRUST,9/16/1991,26582,26248,HARRISBURG,IL,627,ASSISTANCE +"SOUTHEAST BANK, NATIONAL ASSOCIATION",9/19/1991,11026691,8908637,MIAMI,FL,0,FAILURE +SOUTHEAST BANK OF WEST FLORIDA,9/19/1991,97289,88214,PENSACOLA,FL,0,FAILURE +BANKERS TRUST COMPANY,2/1/1940,2131,986,ATLANTIC CITY,NJ,,FAILURE +ABRAHAM LINCOLN FSA,9/19/1991,189089,166964,DRESHER,PA,10147,FAILURE +BANK FIVE FOR SAVINGS,9/20/1991,386572,402696,ARLINGTON,MA,96642,FAILURE +MID-JERSEY NATIONAL BANK,9/20/1991,29471,28451,SOMERVILLE,NJ,6010,FAILURE +MIDCOUNTY BANK AND TRUST COMPANY,9/27/1991,62113,58231,NORWOOD,MA,12361,FAILURE +FIRST FEDERAL SAVINGS,9/27/1991,251153,251734,BEAUMONT,TX,24891,FAILURE +SANTA PAULA S & LA,9/27/1991,280667,242557,SANTA PAULA,CA,6947,FAILURE +UNITED SAVINGS OF AMERICA,9/27/1991,1160926,1067681,CHICAGO,IL,63518,FAILURE +NUTLEY SAVINGS & LOAN,9/27/1991,188649,178510,NUTLEY,NJ,17887,FAILURE +HOME FS & LA OF HARLAN,9/27/1991,91411,89021,HARLAN,IA,35,FAILURE +PLYMOUTH FSA,9/27/1991,174717,137835,PLYMOUTH,MA,20068,FAILURE +FRIENDSHIP STATE BANK,12/7/1935,147,125,FRIENDSHIP,WI,,FAILURE +HARTFORD SAVINGS BANK AND TRUST COMPANY,3/9/1940,,352,WHITE RIVER JUNCTION,VT,,FAILURE +EASTERN FS & LA OF SAYVILLE,9/27/1991,249533,264912,SAYVILLE,NY,29136,FAILURE +GOLD RIVER SB,9/27/1991,24140,21944,FAIR OAKS,CA,2094,FAILURE +THE GUNNISON BANK & TRUST CO.,10/2/1991,20082,19255,GUNNISON,CO,1516,ASSISTANCE +REAGAN STATE BANK,10/3/1991,20254,20902,BIG LAKE,TX,4552,FAILURE +HARBOR NATIONAL BANK OF CONNECTICUT,10/3/1991,22853,22824,BRANFORD,CT,1655,FAILURE +NASHUA TRUST COMPANY,10/10/1991,425059,397018,NASHUA,NH,35469,FAILURE +BANKEAST,10/10/1991,816843,631606,MANCHESTER,NH,64402,FAILURE +AMOSKEAG BANK,10/10/1991,937259,768425,MANCHESTER,NH,190785,FAILURE +"NUMERICA SAVINGS BANK, FSB",10/10/1991,509074,436535,MANCHESTER,NH,110982,FAILURE +"BANK MERIDIAN, NATIONAL ASSOCIATION",10/10/1991,109379,105416,HAMPTON,NH,8162,FAILURE +EUGENE STATE BANK,3/13/1940,128,106,EUGENE,MO,,FAILURE +DARTMOUTH BANK,10/10/1991,877159,835263,MANCHESTER,NH,220604,FAILURE +NEW HAMPSHIRE SAVINGS BANK,10/10/1991,1171673,947219,CONCORD,NH,229739,FAILURE +HOMEBANK FSA,10/10/1991,255081,192059,GILFORD,NH,16683,FAILURE +IONA SAVINGS BANK,10/11/1991,31180,29513,TILTON,NH,5334,FAILURE +"THE FIRST, FEDERAL ASSOCIATION",10/11/1991,1066094,960802,ORLANDO,FL,148030,FAILURE +FIRST FEDERAL SAVINGS,10/11/1991,223669,222486,LUBBOCK,TX,5152,FAILURE +LIFE FSB,10/11/1991,107603,88524,CLEARWATER,FL,9210,FAILURE +OAKTREE FEDERAL SAVINGS,10/13/1991,2214549,2256189,NEW ORLEANS,LA,2345947,FAILURE +FIRST FS & LA,10/16/1991,916980,558620,PONTIAC,MI,34307,FAILURE +CITIZENS FSA,10/16/1991,65710,66972,JACKSONVILLE,FL,8855,FAILURE +THE SWEDESBORO NATIONAL BANK,3/16/1940,,680,SWEDESBORO,NJ,,FAILURE +CENTRAL BANK,10/18/1991,654715,627935,MERIDEN,CT,242063,FAILURE +"MISSION VALLEY BANK, NATIONAL ASSOC",10/18/1991,42672,40510,SAN CLEMENTE,CA,14527,FAILURE +CONNECTICUT VALLEY BANK,10/18/1991,28359,27862,CROMWELL,CT,8598,FAILURE +"FIRST NATIONAL BANK, BEDFORD",10/24/1991,23189,23253,BEDFORD,TX,2394,FAILURE +THE CITIZENS BANK OF PAGOSA SPRINGS,10/25/1991,17275,16649,PAGOSA SPRINGS,CO,2055,FAILURE +COOLIDGE BANK AND TRUST COMPANY,10/25/1991,321204,315007,BOSTON,MA,85653,FAILURE +FIRST HANOVER BANK,10/25/1991,48212,46547,WILMINGTON,NC,5704,FAILURE +"THE PRIVATE BANK & TRUST, NATION",10/29/1991,4264,0,MIAMI,FL,1536,FAILURE +BANK OF THE SOUTH,10/30/1991,31835,31307,BATON ROUGE,LA,3583,FAILURE +UNION BANK,10/31/1991,84877,85239,SAN ANTONIO,TX,8889,FAILURE +FARMERS BANK,3/23/1940,363,286,DRY RIDGE,KY,,FAILURE +MARINE VIEW FSB,11/1/1991,119221,107526,MIDDLETOWN,NJ,3835,FAILURE +COMMUNITY NATIONAL BANK AND TRUST,11/7/1991,333771,354235,NEW YORK,NY,95868,FAILURE +DELTA FSB,11/8/1991,52410,29400,WESTMINSTER,CA,11975,FAILURE +COBB FSA,11/8/1991,83159,82813,MARIETTA,GA,25527,FAILURE +WORTHINGTON STATE BANK,11/14/1991,36646,34227,WORTHINGTON,IN,1427,FAILURE +CONNECTICUT SAVINGS BANK,11/14/1991,1044990,897732,NEW HAVEN,CT,203462,FAILURE +ALVARADO NATIONAL BANK,11/14/1991,9169,9489,ALVARADO,TX,2835,FAILURE +DURHAM TRUST COMPANY,11/15/1991,71024,68528,DURHAM,NH,6312,FAILURE +PEOPLES FSA,11/22/1991,34316,33662,OTTUMWA,IA,735,FAILURE +WESTERN FS & LA,11/22/1991,33164,26424,CLENVIEW,IL,1849,FAILURE +THE FIRST NATIONAL BANK OF WENATCHEE,3/26/1940,,1548,WENATCHEE,WA,,FAILURE +CHASE SAVINGS & LOAN,11/22/1991,46857,46011,PHILADELPHIA,PA,10445,FAILURE +WHITE HORSE FS & LA,11/22/1991,72477,67897,TRENTON,NJ,16819,FAILURE +FIRST NATIONAL BANK OF MIAMI,11/26/1991,40462,40877,MIAMI,FL,6270,FAILURE +THE DOUGLASS BANK,12/4/1991,31860,30217,KANSAS CITY,KS,881,ASSISTANCE +SAYBROOK BANK AND TRUST COMPANY,12/6/1991,77287,78375,OLD SAYBROOK,CT,18749,FAILURE +GRANITE CO-OPERATIVE BANK,12/12/1991,103814,84328,QUINCY,MA,14026,FAILURE +MERCHANTS NATIONAL BANK,12/13/1991,153615,147364,LEOMINSTER,MA,29446,FAILURE +THE BANK MART,12/13/1991,578220,486776,BRIDGEPORT,CT,93901,FAILURE +"FEDERAL FINANCE & MORTGAGE, LTD",12/13/1991,7732,7427,HONOLULU,HI,878,FAILURE +BANK OF EAST HARTFORD,12/13/1991,36581,38396,EAST HARTFORD,CT,12893,FAILURE +BLAIRSVILLE SAVINGS AND TRUST COMPANY,4/4/1940,1821,1390,BLAIRSVILLE,PA,,FAILURE +INVESTORS FSB,12/13/1991,2057643,1431239,RICHMOND,VA,470676,FAILURE +NORTH RIDGE BANK,12/20/1991,94332,92729,OAKLAND PARK,FL,2931,FAILURE +ASSURED THRIFT AND LOAN ASSOCIATION,1/3/1992,48226,46635,STOCKTON,CA,21028,FAILURE +THE CITIZENS BANK,1/10/1992,60568,59063,DALLAS,GA,12692,FAILURE +HANSEN FSA,1/10/1992,572398,427259,HAMMONTON,NJ,42408,FAILURE +PERPETUAL SAVINGS BANK,1/10/1992,2892072,2447078,VIENNA,VA,453690,FAILURE +HANSEN FSB,1/10/1992,51816,43441,PALM BEACH GARDEN,FL,10907,FAILURE +THE BANK OF VERDE VALLEY,1/16/1992,10254,10155,COTTONWOOD,AZ,1412,FAILURE +FIRST STATE BANK,1/23/1992,16518,16416,BANGS,TX,2977,FAILURE +AMERICAN NATIONAL BANK OF NEW YORK,1/24/1992,18006,17823,FLEISCHMANNS,NY,3633,FAILURE +BALDWINSVILLE STATE BANK,4/6/1940,,807,BALDWINSVILLE,NY,,FAILURE +"CROSSLAND SAVINGS BANK, FSB",1/24/1992,7431636,5514987,BROOKLYN,NY,753397,FAILURE +"BANCO NACIONAL, NATIONAL ASSOCIATION",1/24/1992,52084,48860,SAN JUAN,PR,8010,FAILURE +ADVANCED FSB,1/24/1992,23089,23557,NORTHRIDGE,CA,19298,FAILURE +INDEPENDENCE BANK,1/30/1992,535786,547627,LOS ANGELES,CA,137204,FAILURE +ATLANTIC TRUST COMPANY,1/30/1992,21229,22733,NEWINGTON,NH,5824,FAILURE +FOUNTAIN BANK,1/31/1992,15639,16125,SCOTTSDALE,AZ,4734,FAILURE +SENTINEL BANK,1/31/1992,74846,73512,HARTFORD,CT,27542,FAILURE +PELICAN HOMESTEAD SA,1/31/1992,1284313,1489485,METAIRIE,LA,288288,FAILURE +SECURITY FSA,1/31/1992,107078,100444,PANAMA CITY,FL,15967,FAILURE +LANDMARK BANK OF FORTH WORTH,2/6/1992,80529,80517,FORT WORTH,TX,17483,FAILURE +FIRST TRUST & DEPOSIT COMPANY,4/6/1940,,48256,SYRACUSE,NY,,FAILURE +KEMPTON STATE BANK,2/7/1992,3644,3612,KEMPTON,IL,564,FAILURE +MERCHANTS NATIONAL BANK,2/7/1992,35091,35262,FORT MYERS,FL,5209,FAILURE +"UNITED SAVINGS OF AMERICA, FA",2/7/1992,327158,293368,MELBOURNE,FL,15421,FAILURE +THE CENTRAL SAVINGS BANK,2/14/1992,369110,354218,LOWELL,MA,26720,FAILURE +DOLLAR DRY DOCK BANK,2/21/1992,4028368,3733163,WHITE PLAINS,NY,309136,FAILURE +NATIONAL CITY BANK,2/21/1992,19031,18593,CORAL SPRINGS,FL,2621,FAILURE +THE BANK OF BRANDYWINE VALLEY,2/21/1992,44930,47334,WEST CHESTER,PA,12081,FAILURE +COLUMBIA BANK,2/27/1992,16987,16859,AVONDALE,AZ,3677,FAILURE +MISSION VIEJO NATIONAL BANK,2/28/1992,114584,102372,MISSION VIEJO,CA,31421,FAILURE +COLONY SAVINGS BANK,2/28/1992,35664,32801,WALLINGFORD,CT,5662,FAILURE +BANK OF REEDER,4/17/1940,,125,REEDER,ND,,FAILURE +IRVINGTON FSB,2/28/1992,43817,43203,GLEN BURNIE,MD,5143,FAILURE +LEMONT FSA,2/28/1992,193664,188801,LEMONT,IL,53022,FAILURE +ALPHA INDIAN ROCK FS & LA,2/28/1992,7208,7677,PHILADELPHIA,PA,2779,FAILURE +VISTA FSA,2/28/1992,113212,108736,RESTON,VA,36862,FAILURE +NEW HERITAGE BANK,3/6/1992,99806,99939,LAWRENCE,MA,19261,FAILURE +PROGRESSIVE NATIONAL BANK OF RAYNE,3/12/1992,11412,11177,RAYNE,LA,1654,FAILURE +UKRANIAN FS & LA,3/12/1992,74915,72642,PHILADELPHIA,PA,8868,FAILURE +BROADWAY BANK,3/13/1992,400540,383318,PATERSON,NJ,76188,FAILURE +"FIRST OHIO SB, FSB",3/13/1992,40774,31768,ST. BERNARD,OH,0,FAILURE +CARROLTON HOME,3/13/1992,35856,32646,NEW ORLEANS,LA,2204,FAILURE +ASHLEY STATE BANK,4/18/1940,247,172,ASHLEY,ND,,FAILURE +FIRST SECURITY BANK OF ANACONDA,3/16/1992,31553,30234,ANACONDA,MT,5990,FAILURE +FARMERS & MERCHANTS BANK,3/19/1992,4291,4139,TRYON,OK,940,FAILURE +SOUTHSIDE NATIONAL BANK,3/19/1992,12040,12049,NACOGDOCHES,TX,3294,FAILURE +INDEPENDENCE BANK,3/19/1992,21836,20846,PLANO,TX,2809,FAILURE +THE BANK FOR SAVINGS,3/20/1992,397979,392720,MALDEN,MA,21723,FAILURE +"UNITED MERCANTILE B & T CO, N.A.",3/20/1992,36452,37701,PASADENA,CA,12398,FAILURE +AMERICAN BANK OF COMMERCE,3/26/1992,13481,13777,OKLAHOMA CITY,OK,2255,FAILURE +THEODORE ROOSEVELT NATIONAL BANK,3/26/1992,13834,13589,WASHINGTON,DC,3393,FAILURE +VANGUARD SAVINGS BANK,3/27/1992,427949,432557,HOLYOKE,MA,120495,FAILURE +PLACER BANK OF COMMERCE,3/27/1992,34820,33109,ROSEVILLE,CA,5340,FAILURE +LIVINGSTON STATE BANK,12/14/1935,91,72,LIVINGSTON,NJ,,FAILURE +FIRST STATE BANK,4/18/1940,136,113,WISHEK,ND,,FAILURE +FLAGLER FS & LA,3/27/1992,1601277,1493111,MIAMI,FL,101588,FAILURE +FIRST COMMUNITY BANK OF CHEROKEE,3/31/1992,35648,33714,WOODSTOCK,GA,6884,FAILURE +THE BANK OF BEVERLY HILLS,4/3/1992,125939,122347,BEVERLY HILLS,CA,24956,FAILURE +SUMMIT NATIONAL BANK,4/3/1992,91381,89766,TORRINGTON,CT,22780,FAILURE +FIRST STATE SA,4/3/1992,166121,163947,SEDALIA,MO,2,FAILURE +COMMONWEALTH FSB,4/3/1992,72536,64780,MANASSAS,VA,16425,FAILURE +RED BIRD BANK OF DALLAS,4/9/1992,38568,37666,DALLAS,TX,10532,FAILURE +FAIRFIELD COUNTY TRUST COMPANY,4/9/1992,132437,132001,STAMFORD,CT,19204,FAILURE +SECURITY FIRST FS & LA,4/10/1992,1013550,904202,DAYTONA BEACH,FL,24074,FAILURE +VALLEY FS & LA,4/10/1992,1996340,1549633,VAN NUYS,CA,124377,FAILURE +BANK OF MORELAND,4/19/1940,142,124,MORELAND,KY,,FAILURE +FEDERAL SA OF VIRGINIA,4/10/1992,31479,29585,FALLS CHURCH,VA,14463,FAILURE +VALLEY COMMERCIAL BANK,4/24/1992,30767,29410,STOCKTON,CA,4823,FAILURE +THE NORWALK BANK,4/24/1992,80597,77227,NORWALK,CT,17448,FAILURE +SHORE BANK & TRUST CO.,4/24/1992,183184,184170,LYNN,MA,70553,FAILURE +FIRST FSB OF SOUTH DAKOTA,4/24/1992,155900,169948,RAPID CITY,SD,24066,FAILURE +FIRST SOUTH SB,4/24/1992,56956,48503,COLUMBIA,SC,7515,FAILURE +SOUTHSTATE BANK FOR SAVINGS,4/24/1992,285923,267466,BROCKTON,MA,10457,FAILURE +"METROPOLITAN BANK, N.A.",5/1/1992,27090,27074,WASHINGTON,DC,2246,FAILURE +"THE FINANCIAL CENTER BANK, N.A.",5/4/1992,225189,218847,SAN FRANCISCO,CA,25639,FAILURE +JACKSON EXCHANGE BANK & TRUST CO,5/7/1992,123295,127822,JACKSON,MO,16383,FAILURE +THE FIRST NATIONAL BANK OF HARRISON,4/20/1940,,1924,HARRISON,NY,,FAILURE +FIRST EXCHANGE BANK OF MADISON COUNTY,5/7/1992,34814,34238,FREDERICKTOWN,MO,1639,FAILURE +FIRST EXCHANGE BANK OF CAPE GIRARDEAU,5/7/1992,84418,87015,CAPE GIRARDEAU,MO,9713,FAILURE +FIRST EXCHANGE BANK OF ST. LOUIS,5/7/1992,55555,60891,ST. LOUIS,MO,7066,FAILURE +FIRST EXCHANGE BANK NORTH ST. LOUIS,5/7/1992,45880,47038,FLORISSANT,MO,0,FAILURE +BROOKFIELD BANK,5/8/1992,60696,68675,BROOKFIELD,CT,41728,FAILURE +SHENANDOAH FSA,5/8/1992,94195,69001,MARTINSBURG,WV,5139,FAILURE +MALDEN TRUST COMPANY,5/15/1992,225228,238455,MALDEN,MA,39417,FAILURE +FIRST FSA,5/21/1992,83004,76333,LEWISTON,ME,11773,FAILURE +POWDER MILL BANK,5/22/1992,49587,47944,MORRIS PLAINS,NJ,6893,FAILURE +WORKINGMEN'S CO-OPERATIVE BANK,5/29/1992,223665,189866,BOSTON,MA,12935,FAILURE +THE RYE NATIONAL BANK,4/20/1940,,3358,RYE,NY,,FAILURE +NORTH AMERICAN THRIFT AND LOAN,5/29/1992,21276,20863,CORONA DEL MAR,CA,4496,FAILURE +THE HOME STATE BANK,6/4/1992,4189,4212,LONGTON,KS,730,FAILURE +MAYFAIR BANK,6/4/1992,32170,29707,CHICAGO,IL,1205,FAILURE +HOME UNITY FEDERAL,6/4/1992,684804,632317,LAFAYETTE HILL,PA,18550,FAILURE +VOLUNTEER FSA,6/5/1992,51240,49370,LITTLE FERRY,NJ,5155,FAILURE +"COOPER RIVER, FSA",6/5/1992,228859,201442,NORTH CHARLESTON,SC,10740,FAILURE +FIRST AMERICAN FSB,6/5/1992,804316,639124,GREENSBORO,NC,35421,FAILURE +REPUBLIC FSB,6/5/1992,290292,264244,MATTESON,IL,0,FAILURE +AMERICAN SAVINGS BANK,6/12/1992,3202492,2827416,WHITE PLAINS,NY,431311,FAILURE +RIVERHEAD SAVINGS BANK,6/12/1992,388806,316612,RIVERHEAD,NY,0,FAILURE +THE FIRST NATIONAL BANK OF BALLY,4/27/1940,,619,BALLY,PA,,FAILURE +AMERICAN INTERSTATE BANK,6/12/1992,41990,40792,NEWPORT BEACH,CA,7427,FAILURE +LANDMARK BANK FOR SAVINGS,6/12/1992,62124,48107,WHITMAN,MA,11238,FAILURE +CHEROKEE VALLEY FSA,6/12/1992,142536,124432,CLEVELAND,TN,0,FAILURE +COLUMBIA BANKING FED.,6/12/1992,1277433,1078091,ROCHESTER,NY,40629,FAILURE +SAN CLEMENTE FSB,6/12/1992,220368,205745,SAN CLEMENTE,CA,32751,FAILURE +FIRST HOME FSA,6/19/1992,131686,129271,PITTSBURGH,PA,463,FAILURE +COASTAL FSB,6/19/1992,238194,224473,NEW LONDON,CT,5887,FAILURE +FIRST NEWPORT FSB,6/19/1992,35042,34365,NEWPORT BEACH,CA,3193,FAILURE +CASTLE HILLS NATIONAL BANK,6/25/1992,13769,13718,SAN ANTONIO,TX,429,FAILURE +AMERICAN NATIONAL BANK - POST OAK,6/25/1992,24735,25067,HOUSTON,TX,4454,FAILURE +MACKEY STATE BANK,5/9/1940,40,25,MACKEY,IN,,FAILURE +THE SOMERSWORTH BANK,6/26/1992,114129,113453,SOMERSWORTH,NH,18433,FAILURE +OLYMPIC INTERNATIONAL BANK & TRUST,6/26/1992,140339,142322,BOSTON,MA,69196,FAILURE +VERNON BANK,6/26/1992,34296,34543,VERNON,CT,3133,FAILURE +JACKSONVILLE FSA,6/26/1992,150884,147507,JACKSONVILLE,FL,25258,FAILURE +"HOMEFED BANK, FA",7/6/1992,12175590,8903571,SAN DIEGO,CA,751633,FAILURE +"TRANSOHIO, FSB",7/10/1992,3370809,2396269,CLEVELAND,OH,52125,FAILURE +SOUTHERN FSA OF GEORGIA,7/10/1992,159982,151424,ATLANTA,GA,8384,FAILURE +HOME FSB,7/10/1992,224198,195186,NORFOLK,VA,42797,FAILURE +STATE BANK OF SPRINGFIELD,7/17/1992,30267,28464,SPRINGFIELD,MN,127,FAILURE +LIBERTY FSB,7/17/1992,91966,86915,WARRENTON,VA,12265,FAILURE +THE SOUTHAMPTON BANK,6/8/1940,,1274,SOUTHAMPTON,NY,,FAILURE +NEW ENGLAND FSA,7/17/1992,137307,118091,WELLESLEY,MA,25919,FAILURE +FIRST NATIONAL BANK OF TEXAS,7/23/1992,92076,91348,WEBSTER,TX,14241,FAILURE +FIRST RUSSELL COUNTY,7/24/1992,86987,80457,PHENIX CITY,AL,390,FAILURE +MASSACHUSETTS BANK & TRUST CO.,7/31/1992,61824,59427,BROCKTON,MA,13416,FAILURE +FOXWORTH BANK,8/7/1992,36460,36030,FOXWORTH,MS,5375,FAILURE +CITADEL FS & LA,8/7/1992,38978,37571,CHARLESTON,SC,8780,FAILURE +WINCHENDON SAVINGS BANK,8/14/1992,65213,64012,WINCHENDON,MA,7309,FAILURE +BIRMINGHAM FSB,8/21/1992,91770,82123,BIRMINGHAM,AL,3416,FAILURE +ATTLEBORO PAWTUCKET SB,8/21/1992,632450,567733,PAWTUCKET,MA,28119,FAILURE +THE UNION SAVINGS BANK,8/28/1992,491100,529486,PATCHOGUE,NY,133851,FAILURE +FIRST STATE BANK OF STONEWALL,6/13/1940,143,147,STONEWALL,OK,,FAILURE +SEACOAST SAVINGS BANK,8/28/1992,84808,64786,DOVER,NH,7114,FAILURE +POTOMAC FSB,8/28/1992,72326,68838,SILVER SPRING,MD,31995,FAILURE +THE FIRST NATIONAL BANK OF YORKTOWN,9/10/1992,34439,34512,YORKTOWN,TX,7614,FAILURE +THE WASHINGTON BANK,9/18/1992,28113,27871,FAIRFAX COUNTY,VA,5071,FAILURE +PLYMOUTH FIVE CENTS SAVINGS BANK,9/18/1992,220972,182877,PLYMOUTH,MA,5281,FAILURE +FIRST EXCHANGE BANK OF LITTLE ROCK,9/24/1992,24681,24396,LITTLE ROCK,AR,1857,FAILURE +"HIGHLANDS COMMUNITY BANK, N.A.",9/25/1992,19702,19546,CLINTON TOWNSHIP,NJ,2511,FAILURE +HOMETOWN BANK,9/25/1992,25200,24816,EDISON,NJ,7343,FAILURE +THE HOWARD SAVINGS BANK,10/2/1992,3461421,3378992,NEWARK,NJ,67979,FAILURE +"EASTWEST BANK, N.A.",10/2/1992,3754,3398,KIHEI,HI,870,FAILURE +THE LUCERNE STATE BANK,6/22/1940,195,166,LUCERNE,IN,,FAILURE +FIRST CONSTITUTION BANK,10/2/1992,1571240,1350530,NEW HAVEN,CT,125592,FAILURE +PEIDMONT FSA,10/9/1992,444605,370085,MANASSAS,VA,75636,FAILURE +FREEDOM BANK,10/16/1992,20888,20338,RANGER,TX,3,ASSISTANCE +UNIVERSAL BANK,10/16/1992,18026,18050,LANHAM,MD,5978,FAILURE +SECURITY FS & LA,10/16/1992,276476,271387,JACKSON,MS,42647,FAILURE +STANDARD FSB,10/21/1992,1717520,1539974,GAITHERSBURG,MD,527571,FAILURE +"FIRST CITY, TEXAS - DALLAS, NA",10/30/1992,1359158,1307005,DALLAS,TX,0,FAILURE +"FIRST CITY, TEXAS - BEAUMONT, NA",10/30/1992,532248,488695,BEAUMONT,TX,0,FAILURE +"FIRST CITY, TEXAS - BRYAN, NA",10/30/1992,340189,318838,BRYAN,TX,0,FAILURE +"FIRST CITY, TEXAS - GRAHAM, NA",10/30/1992,95398,86486,GRAHAM,TX,0,FAILURE +FIRST STATE BANK OF SCOTCH PLAINS,6/22/1940,,612,SCOTCH PLAINS,NJ,,FAILURE +"FIRST CITY, TEXAS - LUFKIN, NA",10/30/1992,156640,145727,LUFKIN,TX,0,FAILURE +"FIRST CITY, TEXAS - MADISONVILLE",10/30/1992,123394,114740,MADISONVILLE,TX,0,FAILURE +"FIRST CITY, TEXAS - MIDLAND, NA",10/30/1992,313055,289991,MIDLAND,TX,0,FAILURE +"FIRST CITY, TEXAS - ORANGE, NA",10/30/1992,131984,122457,ORANGE,TX,0,FAILURE +"FIRST CITY, TEXAS - SAN ANGELO,",10/30/1992,142819,131932,SAN ANGELO,TX,0,FAILURE +"FIRST CITY, TEXAS - TYLER, NA",10/30/1992,259208,231534,TYLER,TX,0,FAILURE +"FIRST CITY, TEXAS - SOUR LAKE",10/30/1992,53521,48823,SOUR LAKE,TX,0,FAILURE +"FIRST CITY, TEXAS - HOUSTON, NA",10/30/1992,2802064,2519978,HOUSTON,TX,0,FAILURE +"FIRST CITY, TEXAS - AUSTIN, NA",10/30/1992,345518,331568,AUSTIN,TX,0,FAILURE +"FIRST CITY, TEXAS - LAKE JACKSON",10/30/1992,104302,96353,LAKE JACKSON,TX,0,FAILURE +THE FARMERS BANK,12/16/1935,55,37,WEST LOUISVILLE,KY,,FAILURE +THE WESTFIELD TRUST COMPANY,6/22/1940,,4668,WESTFIELD,NJ,,FAILURE +"FIRST CITY, TEXAS - EL PASO, NA",10/30/1992,395894,367322,EL PASO,TX,0,FAILURE +"FIRST CITY, TEXAS - KOUNTZE, NA",10/30/1992,51347,46969,KOUNTZE,TX,0,FAILURE +"FIRST CITY, TEXAS - ALICE, NA",10/30/1992,128044,118027,ALICE,TX,0,FAILURE +"FIRST CITY, TEXAS - ARANSAS PASS",10/30/1992,51695,47213,ARANSAS PASS,TX,0,FAILURE +"FIRST CITY, TEXAS - CORPUS CHRIS",10/30/1992,462832,383384,CORPUS CHRISTI,TX,0,FAILURE +"FIRST CITY, TEXAS - SAN ANTONIO",10/30/1992,265669,259018,SAN ANTONIO,TX,0,FAILURE +HOMESTEAD FSA,10/30/1992,1314538,1234402,SAN FRANCISCO,CA,19189,FAILURE +"GREENWOOD BANK OF BETHEL, INC.",11/6/1992,33255,33160,BETHEL,CT,9775,FAILURE +"FIRST FSB OF GEORGIA, FA",11/6/1992,108173,97532,WINDER,GA,4423,FAILURE +GUARANTY-FIRST TRUST COMPANY,11/13/1992,353230,348942,WALTHAM,MA,60206,FAILURE +WAUSHARA COUNTY BANK,6/25/1940,,267,PLAINFIELD,WI,,FAILURE +METRO NORTH STATE BANK,11/13/1992,472467,493828,KANSAS CITY,MO,159537,FAILURE +FIRST NEW YORK BANK FOR BUSINESS,11/13/1992,530651,498907,NEW YORK,NY,164561,FAILURE +INVESTORS BANK AND TRUST COMPANY,11/13/1992,51586,50767,GRETNA,LA,4787,FAILURE +STATEWIDE THRIFT AND LOAN CO.,11/13/1992,9636,9455,REDWOOD CITY,CA,2341,FAILURE +THE OVERLAND PARK FS & LA,11/13/1992,213413,95324,OVERLAND PARK,KS,6406,FAILURE +THE MERCHANTS BANK,11/20/1992,1451535,1395338,KANSAS CITY,MO,123159,FAILURE +IRVING FB FOR SAVINGS,11/20/1992,246965,246268,CHICAGO,IL,4589,FAILURE +POLIFLY FS & LA,11/20/1992,457974,374000,NEW MILFORD,NJ,35138,FAILURE +CRESTLINE FS & LA,11/20/1992,27455,26775,CRESTLINE,OH,6949,FAILURE +BURRITT INTERFINANCIAL BANCORPORATION,12/4/1992,523850,506022,NEW BRITAIN,CT,78973,FAILURE +KANE TRUST AND SAVINGS BANK,7/2/1940,915,717,KANE,PA,,FAILURE +HERITAGE BANK FOR SAVINGS,12/4/1992,1288435,1000727,HOLYOKE,MA,24010,FAILURE +HUNTINGTON PACIFIC THRIFT & LOAN,12/4/1992,40476,38255,HUNTINGTON,CA,17368,FAILURE +CARTERET FSB,12/4/1992,4827462,2716356,MADISON,NJ,23977,FAILURE +SECURITY FEDERAL,12/4/1992,1185897,857581,VINELAND,NJ,41434,FAILURE +"SECOND NATIONAL, FSB",12/4/1992,1572770,1159197,SALISBURY,MD,78024,FAILURE +PALM BEACH FSA,12/8/1992,59403,54369,PALM BEACH GARDEN,FL,20897,FAILURE +CITIZENS STATE BANK,12/10/1992,12943,12779,PRINCETON,TX,247,ASSISTANCE +MERITOR SAVINGS BANK,12/11/1992,4126701,2909344,PHILADELPHIA,PA,0,FAILURE +EASTLAND SAVINGS BANK,12/11/1992,515301,499012,WOONSOCKET,RI,10303,FAILURE +EASTLAND BANK,12/11/1992,85405,76172,WOONSOCKET,RI,0,FAILURE +CHASEBURG STATE BANK,7/13/1940,,341,CHASEBURG,WI,,FAILURE +SAILORS & MERCHANTS B&T CO.,12/11/1992,34775,34481,VIENNA,VA,4958,FAILURE +THE RUSHVILLE NATIONAL BANK,12/18/1992,41631,39677,RUSHVILLE,IN,6046,FAILURE +THE BREMEN STATE BANK,12/18/1992,2679,2623,BREMEN,KS,722,FAILURE +COLUMBIA NATIONAL BANK,1/22/1993,47618,47627,SANTA MONICA,CA,17631,FAILURE +FIRST NATIONAL BANK OF VERMONT,1/29/1993,295784,282378,BRADFORD,VT,25528,FAILURE +OLD STONE SB,1/29/1993,1847236,1704347,PROVIDENCE,RI,73560,FAILURE +VISTA FSA,1/29/1993,105114,94489,CANOGA PARK,CA,15123,FAILURE +LIFE FSB,1/29/1993,16753,16512,BATON ROUGE,LA,2207,FAILURE +AMERICAN BANK OF HALTOM CITY,2/5/1993,99525,100195,HALTOM CITY,TX,14480,FAILURE +THE PLANTERS NB OF ROSEBUD,2/25/1993,13728,13636,ROSEBUD,TX,1499,FAILURE +MOUNT PLEASANT BANK & TRUST CO.,7/20/1940,,2137,PLEASANTVILLE,NY,,FAILURE +JEFFERSON NATIONAL BANK,2/26/1993,256014,248652,WATERTOWN,NY,43540,FAILURE +"FIRST AMERICAN CAPITAL BANK, N.A",3/4/1993,28451,26276,LAGUNA BEACH,CA,7393,FAILURE +"THE GUARDIAN BANK, FSB",3/16/1993,75564,69245,BOCA RATON,FL,3589,FAILURE +"UNITED BANK, N.A.",3/18/1993,49805,49016,LANCASTER,TX,161,FAILURE +FIRST STATE BANK,4/1/1993,21444,20743,VEGA,TX,2828,FAILURE +MIDLAND BANK OF KANSAS,4/2/1993,124262,120891,MISSION,KS,12899,FAILURE +COLLEGE BOULEVARD NATIONAL BANK,4/2/1993,202754,190827,OVERLAND PARK,KS,15438,FAILURE +OLYMPIC NATIONAL BANK,4/2/1993,82446,80484,LOS ANGELES,CA,25230,FAILURE +PIONEER FS & LA,4/2/1993,132850,128001,PRAIRIE VILLAGE,KS,36310,FAILURE +PREMIER BANK,4/8/1993,73024,69818,NORTHRIDGE,CA,8857,FAILURE +THE CLAXTON STATE BANK,7/20/1940,223,162,CLAXTON,GA,,FAILURE +"FIRST WESTERN BANK, N.A.",4/15/1993,16235,15313,SAN DIEGO,CA,3092,FAILURE +VALLEY NATIONAL BANK OF FREMONT,4/29/1993,6952,6809,HAMBURG,IA,165,FAILURE +AMERICAN COMMERCE NATIONAL BANK,4/30/1993,139087,127661,ANAHEIM,CA,43596,FAILURE +"WILSHIRE CENTER BANK,",5/6/1993,9677,9391,LOS ANGELES,CA,5919,FAILURE +CROWN NATIONAL BANK,5/20/1993,26341,24804,CHARLOTTE,NC,1658,FAILURE +NEW ENGLAND SAVINGS BANK,5/21/1993,914884,720512,NEW LONDON,CT,116968,FAILURE +PALOS VERDES NATIONAL BANK,5/21/1993,45633,47775,ROLLING HILLS EST,CA,10296,FAILURE +WESTERN FSB,6/4/1993,3796241,2704214,MARINA DEL RAY,CA,107864,FAILURE +BANKCENTRAL AMARILLO,6/10/1993,34745,34059,AMARILLO,TX,2515,FAILURE +AMERICAN BANK AND TRUST,6/18/1993,35577,34583,SAN JOSE,CA,5528,FAILURE +BANK OF WILLIAMSVILLE,7/27/1940,,1775,WILLIAMSVILLE,NY,,FAILURE +CAPITAL BANK OF CALIFORNIA,6/18/1993,227732,224691,LOS ANGELES,CA,64131,FAILURE +CITY NATIONAL BANK OF WASHINGTON,6/25/1993,23984,22716,WASHINGTON,DC,1023,FAILURE +"EAGLE BANK OF CHAMPAIGN COUNTY, NATIONAL A",7/1/1993,20188,19706,RANTOUL,IL,679,FAILURE +WESTHEIMER NATIONAL BANK,7/1/1993,27945,28116,HOUSTON,TX,8175,FAILURE +JEFFERSON BANK & TRUST,7/2/1993,127077,119404,LAKEWOOD,CO,38567,FAILURE +EMERALD CITY BANK,7/2/1993,7845,7219,SEATTLE,WA,1053,FAILURE +FIRST CALIFORNIA BANK,7/9/1993,79395,77014,LA MESA,CA,14330,FAILURE +CITY THRIFT AND LOAN ASSOCIATION,7/9/1993,39383,36977,LOS ANGELES,CA,17697,FAILURE +FIDELITY NATIONAL BANK,7/22/1993,52624,50348,HOUSTON,TX,5473,FAILURE +THE WOLFE CITY NATIONAL BANK,7/29/1993,30421,32231,WOLFE CITY,TX,4851,FAILURE +BADGER STATE BANK,8/3/1940,74,53,BADGER,SD,,FAILURE +"NEW ATLANTIC BANK, NA",8/12/1993,15083,14364,NORFOLK,VA,792,FAILURE +GOLDEN STATE FSB,8/13/1993,50629,46554,IRVINE,CA,4521,FAILURE +TARRANT BANK,8/25/1993,62583,59718,FORT WORTH,TX,7328,FAILURE +MARITIME BANK OF CALIFORNIA,8/27/1993,31761,30932,LOS ANGELES,CA,5922,FAILURE +AMADOR VALLEY S & L,9/10/1993,41886,41150,PLEASANTON,CA,2775,FAILURE +REGENT THRIFT AND LOAN ASSOCIATION,9/17/1993,35751,7228,SAN FRANCISCO,CA,1450,FAILURE +WESTERN UNITED NATIONAL BANK,9/24/1993,23727,22602,LOS ANGELES,CA,7232,FAILURE +"WESTSIDE BANK, FSB",9/24/1993,81689,76949,LOS ANGELES,CA,21646,FAILURE +"PLAZA BANK, N.A. OF NEW BRAUNFELS",10/14/1993,54647,56897,NEW BRAUNFELS,TX,2725,FAILURE +BRENTWOOD THRIFT AND LOAN ASSOCIATION,10/15/1993,12920,11481,LOS ANGELES,CA,3323,FAILURE +MT. UNION STATE BANK,8/24/1940,,179,MT. UNION,IA,,FAILURE +"MID CITY BANK, N.A.",10/21/1993,105734,102630,BREA,CA,14270,FAILURE +THE BANK OF SAN DIEGO,10/29/1993,294277,289131,SAN DIEGO,CA,58850,FAILURE +CENTURY THRIFT AND LOAN,11/5/1993,31876,24486,LOS ANGELES,CA,9553,FAILURE +MECHANICS NATIONAL BANK,4/1/1994,148713,148881,PARAMOUNT,CA,47674,FAILURE +SUPERIOR NATIONAL BANK,4/14/1994,19970,19618,KANSAS CITY,MO,3650,FAILURE +COMMERCIAL BANK AND TRUST COMPANY,5/6/1994,30274,29762,LOWELL,MA,3750,FAILURE +BARBARY COAST NATIONAL BANK,5/19/1994,10678,9296,SAN FRANCISCO,CA,684,FAILURE +"ENCINO SAVINGS BANK, FSB",6/3/1994,92470,89098,ENCINO,CA,7424,FAILURE +THE BANK OF HARTFORD,6/10/1994,321457,276016,HARTFORD,CT,13815,FAILURE +THE MERIDEN TRUST AND SAFE DEPOSIT,7/7/1994,3203,0,MERIDEN,CT,0,FAILURE +FIRST CITIZENS BANK & TRUST CO. OF UTICA,9/14/1940,,34277,UTICA,NY,,FAILURE +PIONEER BANK,7/8/1994,133250,128382,FULLERTON,CA,14515,FAILURE +BANK OF SAN PEDRO,7/15/1994,132636,128303,LOS ANGELES,CA,28821,FAILURE +COMMERCE BANK,7/29/1994,142315,138296,NEWPORT BEACH,CA,14107,FAILURE +WESTERN COMMUNITY BANK,7/29/1994,54013,53141,CORONA,CA,2618,FAILURE +BANK OF NEWPORT,8/12/1994,167802,161785,NEWPORT BEACH,CA,28711,FAILURE +CAPITAL BANK,8/26/1994,76892,74408,DOWNEY,CA,17839,FAILURE +LUDLOW SAVINGS BANK,10/21/1994,222671,229130,LUDLOW,MA,2866,FAILURE +CORNERSTONE BANK FSB,12/16/1994,44345,38410,MISSION VIEJO,CA,4047,FAILURE +GUARDIAN BANK,1/20/1995,316944,297948,LOS ANGELES,CA,20450,FAILURE +FIRST TRUST BANK,3/3/1995,227695,223573,ONTARIO,CA,25627,FAILURE +CENTRAL STATE BANK OF SHERMAN,12/31/1936,312,219,SHERMAN,TX,,FAILURE +THE BANK OF LESLIE,9/18/1940,141,113,LESLIE,GA,,FAILURE +LOS ANGELES THRIFT AND LOAN COMPANY,3/31/1995,23388,22280,LOS ANGELES,CA,6078,FAILURE +CONTINENTAL SAVINGS OF AMERICA,4/28/1995,359422,357025,SAN FRANCISCO,CA,22226,FAILURE +AMERICAN S & L ASSOCIATION,5/5/1995,64397,57667,NEW YORK,NY,5967,FAILURE +"BANK USA, N.A.",5/19/1995,9048,9124,"KIHEI, MAUI",HI,2593,FAILURE +PACIFIC HERITAGE BANK,7/28/1995,147685,146100,TORRANCE,CA,19349,FAILURE +FOUNDERS BANK,7/28/1995,77364,77362,NEW HAVEN,CT,10374,FAILURE +METROBANK OF PHILADELPHIA,3/8/1996,40379,39177,PHILADELPHIA,PA,7701,FAILURE +PEOPLE'S BANK & TRUST,5/31/1996,22739,22288,BORGER,TX,3378,FAILURE +FIRST NB OF THE PANHANDLE,6/14/1996,68126,67968,PANHANDLE,TX,16312,FAILURE +FAIRFIELD FIRST BANK & TRUST CO,7/12/1996,57267,57329,SOUTHPORT,CT,5663,FAILURE +SAVINGS BANK OF NANTICOKE,10/4/1940,190,159,NANTICOKE,MD,,FAILURE +"UNION FEDERAL BANK, FSB",8/9/1996,32576,32745,LOS ANGELES,CA,21921,FAILURE +COMMONWEALTH THRIFT & LOAN,8/16/1996,11547,10883,TORRANCE,CA,5640,FAILURE +SOUTHWEST BANK,11/21/1997,27923,27511,JENNINGS,LA,5026,FAILURE +OMNIBANK,4/9/1998,42038,40462,RIVER ROUGE,MI,2866,FAILURE +BESTBANK,7/23/1998,233223,206325,BOULDER,CO,218595,FAILURE +Q BANK,8/7/1998,14977,13888,FORT BENTON,MT,1590,FAILURE +VICTORY STATE BANK,3/26/1999,13205,12887,COLUMBIA,SC,0,FAILURE +ZIA NEW MEXICO BANK,4/23/1999,17251,16708,TUCUMCARI,NM,2222,FAILURE +EAST TEXAS NB OF MARSHALL,7/9/1999,121564,113054,MARSHALL,TX,9855,FAILURE +"OCEANMARK BANK, A FSB",7/9/1999,68981,61303,NORTH MIAMI BEACH,FL,1195,FAILURE +BANK OF EAGLE,10/25/1940,457,387,EAGLE,WI,,FAILURE +FIRST NB OF KEYSTONE,9/1/1999,1119865,880859,KEYSTONE,WV,532198,FAILURE +PEOPLES NB OF COMMERCE,9/10/1999,36823,35946,MIAMI,FL,3342,FAILURE +PACIFIC THRIFT AND LOAN CO,11/22/1999,127342,119451,WOODLAND HILLS,CA,42049,FAILURE +GOLDEN CITY COMMERCIAL BANK,12/10/1999,87158,80365,NEW YORK,NY,,FAILURE +HARTFORD-CARLISLE SB,1/14/2000,105044,68549,CARLISLE,IA,11574,FAILURE +MUTUAL FEDERAL SAVINGS BANK OF ATLANTA,3/10/2000,31479,32234,ATLANTA,GA,1322,FAILURE +MONUMENT NATIONAL BANK,6/2/2000,7923,7680,RIDGECREST,CA,617,FAILURE +TOWN & COUNTRY BANK OF ALMELUND,7/14/2000,25942,26667,ALMELUND,MN,1363,FAILURE +BANK OF FALKNER,9/29/2000,85485,77140,FALKNER,MS,14592,FAILURE +BANK OF HONOLULU,10/13/2000,63890,59037,HONOLULU,HI,400,FAILURE +THE FIRST NATIONAL BANK OF BURLINGAME,11/19/1940,301,256,BURLINGAME,KS,,FAILURE +NATIONAL STATE BANK OF METROPOLIS,12/14/2000,90397,71277,METROPOLIS,IL,2670,FAILURE +FIRST ALLIANCE BANK AND TRUST CO,2/2/2001,17438,16931,MANCHESTER,NH,817,FAILURE +MALTA NATIONAL BANK,5/3/2001,9075,8728,MALTA,OH,769,FAILURE +"SUPERIOR BANK, FSB",7/27/2001,1765455,1609501,HINSDALE,IL,286673,FAILURE +SINCLAIR NATIONAL BANK,9/7/2001,29792,26054,GRAVETTE,AR,4206,FAILURE +"HAMILTON BANK, NATIONAL ASSOCIATION",1/11/2002,1409496,1298731,MIAMI,FL,101748,FAILURE +BANK OF SIERRA BLANCA,1/18/2002,10764,9914,SIERRA BLANCA,TX,4574,FAILURE +OAKWOOD DEPOSIT BANK,2/1/2002,72267,60168,OAKWOOD,OH,63600,FAILURE +NEXTBANK,2/7/2002,700180,551297,PHOENIX,AZ,164047,FAILURE +NET FIRST NATIONAL BANK,3/1/2002,37207,31601,BOCA RATON,FL,0,FAILURE +THE STATE EXCHANGE BANK,11/23/1940,,986,HOLLEY,NY,,FAILURE +NEW CENTURY BANK,3/28/2002,21091,18902,SHELBY TOWNSHIP,MI,4440,FAILURE +CONNECTICUT BANK OF COMMERCE,6/26/2002,384172,344416,STAMFORD,CT,53784,FAILURE +UNIVERSAL FSB,6/27/2002,51628,40340,CHICAGO,IL,274,FAILURE +AMTRADE INTERNATIONAL BANK OF GEORGIA,9/30/2002,92144,73205,ATLANTA,GA,1326,FAILURE +BANK OF ALAMO,11/8/2002,58454,52157,ALAMO,TN,9316,FAILURE +THE FARMERS BANK & TRUST OF CHENEYVILLE,12/17/2002,35317,32103,CHENEYVILLE,LA,12205,FAILURE +SOUTHERN PACIFIC BANK,2/7/2003,904294,864160,TORRANCE,CA,49179,FAILURE +THE FIRST NATIONAL BANK OF BLANCHARDVILLE,5/9/2003,34536,28760,BLANCHARDVILLE,WI,12788,FAILURE +PULASKI SAVINGS BANK,11/14/2003,8487,9058,PHILADELPHIA,PA,679,FAILURE +DOLLAR SAVINGS BANK,2/14/2004,13408,10909,NEWARK,NJ,0,FAILURE +THE AMERICAN NAT BK OF SANTA MONICA,12/4/1940,,1078,SANTA MONICA,CA,,FAILURE +GUARANTY NATIONAL BANK,3/12/2004,71280,65614,TALLAHASSEE,FL,0,FAILURE +RELIANCE BANK,3/19/2004,28637,27881,WHITE PLAINS,NY,919,FAILURE +BANK OF EPHRAIM,6/25/2004,56774,52329,EPHRAIM,UT,2998,FAILURE +METROPOLITAN SAVINGS BANK,2/2/2007,15760,14540,PITTSBURGH,PA,9438,FAILURE +NETBANK,9/28/2007,2473806,2290046,ALPHARETTA,GA,119608,FAILURE +MIAMI VALLEY BANK,10/4/2007,125362,119601,LAKEVIEW,OH,28394,FAILURE +DOUGLASS NATIONAL BANK,1/25/2008,52824,50250,KANSAS CITY,MO,7157,FAILURE +HUME BANK,3/7/2008,18682,13566,HUME,MO,3755,FAILURE +ANB FINANCIAL NATIONAL ASSOCIATION,5/9/2008,1895545,1815691,BENTONVILLE,AR,1025204,FAILURE +"FIRST INTEGRITY BANK, N.A.",5/30/2008,52916,50178,STAPLES,MN,10305,FAILURE +BANK OF JAMESTOWN,1/11/1941,186,156,JAMESTOWN,MO,,FAILURE +INDYMAC BANK F.S.B,7/11/2008,30698512,18941727,PASADENA,CA,11982626,FAILURE +FIRST NATIONAL BANK OF NEVADA,7/25/2008,3411145,3038053,RENO,NV,710037,FAILURE +FIRST HERITAGE BANK N.A.,7/25/2008,255376,234812,NEWPORT BEACH,CA,92139,FAILURE +FIRST PRIORITY BANK,8/1/2008,258610,226698,BRADENTON,FL,95555,FAILURE +THE COLUMBIAN BANK AND TRUST COMPANY,8/22/2008,735071,620354,TOPEKA,KS,334277,FAILURE +INTEGRITY BANK,8/29/2008,1107514,962456,ALPHARETTA,GA,465942,FAILURE +SILVER STATE BANK,9/5/2008,1957120,1733091,HENDERSON,NV,722104,FAILURE +"AMERIBANK, INC.",9/19/2008,103965,100901,NORTHFORK,WV,38290,FAILURE +WASHINGTON MUTUAL BANK,9/25/2008,307021614,188260793,HENDERSON,NV,0,FAILURE +MERIDIAN BANK,10/10/2008,38223,36090,ELDRED,IL,16618,FAILURE +THE FIRST NATIONAL BANK OF ANADARKO,1/17/1941,822,725,ANADARKO,OK,,FAILURE +MAIN STREET BANK,10/10/2008,112368,98934,NORTHVILLE,MI,56318,FAILURE +ALPHA BANK & TRUST,10/24/2008,354090,344231,ALPHARETTA,GA,211264,FAILURE +FREEDOM BANK,10/31/2008,270842,256793,BRADENTON,FL,113456,FAILURE +SECURITY PACIFIC BANK,11/7/2008,527959,456472,SAN DIEGO,CA,148255,FAILURE +"FRANKLIN BANK, SSB",11/7/2008,5089260,3692887,HOUSTON,TX,614111,FAILURE +THE COMMUNITY BANK,11/21/2008,634901,603733,LOGANVILLE,GA,335062,FAILURE +PFF BANK & TRUST,11/21/2008,3715433,2393845,POMONA,CA,258807,FAILURE +"DOWNEY SAVINGS AND LOAN ASSOCIATION, F.A.",11/21/2008,12779371,9653169,NEWPORT BEACH,CA,151232,FAILURE +"CITIBANK, NATIONAL ASSOCIATION",11/23/2008,1207007000,230042000,LAS VEGAS,NV,,ASSISTANCE +"CITICORP TRUST BANK, FSB",11/23/2008,19599414,7231013,WILMINGTON,DE,,ASSISTANCE +FIRST STATE BANK & TRUST CO. OF INDIANOLA,1/29/1941,195,165,INDIANOLA,IL,,FAILURE +CITIBANK (BANAMEX USA),11/23/2008,1322720,876086,CENTURY CITY,CA,,ASSISTANCE +"CITIBANK (SOUTH DAKOTA), N.A.",11/23/2008,77737957,42356986,SIOUX FALLS,SD,,ASSISTANCE +DEPARTMENT STORES NATIONAL BANK,11/23/2008,374903,300881,SIOUX FALLS,SD,,ASSISTANCE +FIRST GEORGIA COMMUNITY BANK,12/5/2008,256371,215287,JACKSON,GA,86315,FAILURE +SANDERSON STATE BANK,12/12/2008,38217,32012,SANDERSON,TX,7710,FAILURE +HAVEN TRUST BANK,12/12/2008,559551,489692,DULUTH,GA,246603,FAILURE +BANK OF AMERICA N.A.,1/16/2009,1471631047,954677580,CHARLOTTE,NC,,ASSISTANCE +NATIONAL BANK OF COMMERCE,1/16/2009,419741,395868,BERKELEY,IL,80488,FAILURE +BANK OF AMERICA CALIFORNIA N.A.,1/16/2009,21502223,500,SAN FRANCISCO,CA,,ASSISTANCE +MERRILL LYNCH BANK USA,1/16/2009,61809503,53620324,SALT LAKE CITY,UT,,ASSISTANCE +BANK OF BALDWYN,3/8/1941,233,179,BALDWYN,MS,,FAILURE +COUNTRYWIDE BANK FSB,1/16/2009,117978966,43663251,ALEXANDRIA,VA,,ASSISTANCE +FIA CARD SERVICES N.A.,1/16/2009,159637136,9816599,WILMINGTON,DE,,ASSISTANCE +MERRILL LYNCH BANK & TRUST CO FSB,1/16/2009,37986413,28539028,NEW YORK,NY,,ASSISTANCE +BANK OF CLARK COUNTY,1/16/2009,441085,377506,VANCOUVER,WA,150724,FAILURE +BANK OF AMERICA OREGON N.A.,1/16/2009,11526309,500,PORTLAND,OR,,ASSISTANCE +BANK OF AMERICA RHODE ISLAND N.A.,1/16/2009,35410586,500,PROVIDENCE,RI,,ASSISTANCE +1ST CENTENNIAL BANK,1/23/2009,797959,678570,REDLANDS,CA,136041,FAILURE +OCALA NATIONAL BANK,1/30/2009,219424,204663,OCALA,FL,93552,FAILURE +SUBURBAN FEDERAL SAVINGS BANK,1/30/2009,347408,301847,CROFTON,MD,73819,FAILURE +MAGNET BANK,1/30/2009,300674,282578,SALT LAKE CITY,UT,170125,FAILURE +CITIZENS BANK OF ERWIN,1/10/1936,159,95,ERWIN,TN,,FAILURE +THE KESWICK NATIONAL BANK OF GLENSIDE,4/12/1941,1307,1200,GLENSIDE,PA,,FAILURE +COUNTY BANK,2/6/2009,1711552,1324635,MERCED,CA,61783,FAILURE +ALLIANCE BANK,2/6/2009,1113361,951106,CULVER CITY,CA,118079,FAILURE +FIRSTBANK FINANCIAL SERVICES,2/6/2009,317237,279308,MCDONOUGH,GA,151333,FAILURE +SHERMAN COUNTY BANK,2/13/2009,135431,90647,LOUP CITY,NE,42684,FAILURE +CORN BELT BANK AND TRUST COMPANY,2/13/2009,260201,233788,PITTSFIELD,IL,80894,FAILURE +RIVERSIDE BANK OF THE GULF COAST,2/13/2009,523673,422708,CAPE CORAL,FL,199818,FAILURE +PINNACLE BANK,2/13/2009,71921,64168,BEAVERTON,OR,10218,FAILURE +SILVER FALLS BANK,2/20/2009,134206,115976,SILVERTON,OR,39331,FAILURE +HERITAGE COMMUNITY BANK,2/27/2009,235154,225735,GLENWOOD,IL,48231,FAILURE +SECURITY SAVINGS BANK,2/27/2009,238307,174872,HENDERSON,NV,32328,FAILURE +THE FIRST NAT BK & TR CO. OF PORT CHESTER,4/26/1941,,5157,PORT CHESTER,NY,,FAILURE +FREEDOM BANK OF GEORGIA,3/6/2009,172454,159048,COMMERCE,GA,43267,FAILURE +"TEAMBANK, N.A.",3/20/2009,669830,532520,PAOLA,KS,134593,FAILURE +FIRSTCITY BANK,3/20/2009,285015,259056,STOCKBRIDGE,GA,135210,FAILURE +COLORADO NATIONAL BANK,3/20/2009,123508,85150,COLORADO SPRINGS,CO,12687,FAILURE +OMNI NATIONAL BANK,3/27/2009,979585,813205,ATLANTA,GA,288415,FAILURE +CAPE FEAR BANK,4/10/2009,492418,402820,WILMINGTON,NC,118565,FAILURE +NEW FRONTIER BANK,4/10/2009,1774588,1496347,GREELEY,CO,913432,FAILURE +AMERICAN STERLING BANK,4/17/2009,166456,170946,SUGAR CREEK,MO,44669,FAILURE +GREAT BASIN BANK OF NEVADA,4/17/2009,238940,220834,ELKO,NV,20023,FAILURE +FIRST BANK OF BEVERLY HILLS,4/24/2009,1260354,866492,CALABASAS,CA,8430,FAILURE +MUTUAL TRUST CO. OF WESTCHESTER COUNTY,4/26/1941,,2495,PORT CHESTER,NY,,FAILURE +MICHIGAN HERITAGE BANK,4/24/2009,167710,149065,FARMINGTON HILLS,MI,48551,FAILURE +"FIRST BANK OF IDAHO, FSB",4/24/2009,490656,370580,KETCHUM,ID,109230,FAILURE +AMERICAN SOUTHERN BANK,4/24/2009,105950,105940,KENNESAW,GA,32820,FAILURE +"SILVERTON BANK, NATIONAL ASSOCIATION",5/1/2009,4157246,3314928,ATLANTA,GA,639419,FAILURE +AMERICA WEST BANK,5/1/2009,281564,286040,LAYTON,UT,114287,FAILURE +CITIZENS COMMUNITY BANK,5/1/2009,40657,40664,RIDGEWOOD,NJ,18187,FAILURE +WESTSOUND BANK,5/8/2009,334608,304464,BREMERTON,WA,81050,FAILURE +"BANKUNITED, FSB",5/21/2009,13111463,8775985,CORAL GABLES,FL,5228684,FAILURE +CITIZENS NATIONAL BANK,5/22/2009,438560,393635,MACOMB,IL,30439,FAILURE +STRATEGIC CAPITAL BANK,5/22/2009,546576,479384,CHAMPAIGN,IL,92681,FAILURE +THE EXCHANGE STATE BANK,6/23/1941,,455,PARSONS,KS,,FAILURE +BANK OF LINCOLNWOOD,6/5/2009,212718,209285,LINCOLNWOOD,IL,70928,FAILURE +FIRST NATIONAL BANK OF ANTHONY,6/19/2009,156954,142551,ANTHONY,KS,33230,FAILURE +COOPERATIVE BANK,6/19/2009,966778,768479,WILMINGTON,NC,287345,FAILURE +SOUTHERN COMMUNITY BANK,6/19/2009,371695,297962,FAYETTEVILLE,GA,136636,FAILURE +HORIZON BANK,6/26/2009,84763,69254,PINE CITY,MN,24010,FAILURE +NEIGHBORHOOD COMMUNITY BANK,6/26/2009,212616,190070,NEWNAN,GA,80745,FAILURE +MIRAE BANK,6/26/2009,480619,409951,LOS ANGELES,CA,45309,FAILURE +COMMUNITY BANK OF WEST GEORGIA,6/26/2009,201222,189398,VILLA RICA,GA,71712,FAILURE +METROPACIFIC BANK,6/26/2009,75316,70078,IRVINE,CA,32168,FAILURE +THE FIRST NATIONAL BANK OF DANVILLE,7/2/2009,148218,140185,DANVILLE,IL,24202,FAILURE +"BANK OF AU SABLE FORKS, N.Y.",9/29/1941,,800,AU SABLE FORKS,NY,,FAILURE +THE ELIZABETH STATE BANK,7/2/2009,55027,48131,ELIZABETH,IL,9832,FAILURE +THE FIRST STATE BANK OF WINCHESTER,7/2/2009,30073,30806,WINCHESTER,IL,8030,FAILURE +THE JOHN WARNER BANK,7/2/2009,69609,65179,CLINTON,IL,14315,FAILURE +ROCK RIVER BANK,7/2/2009,74808,74896,OREGON,IL,18558,FAILURE +FOUNDERS BANK,7/2/2009,889172,832160,WORTH,IL,129512,FAILURE +MILLENNIUM STATE BANK OF TEXAS,7/2/2009,118601,115478,DALLAS,TX,52700,FAILURE +BANK OF WYOMING,7/10/2009,70188,66598,THERMOPOLIS,WY,32543,FAILURE +"VINEYARD BANK, NATIONAL ASSOCIATION",7/17/2009,1638378,1526186,RANCHO CUCAMONGA,CA,278591,FAILURE +BANKFIRST,7/17/2009,210844,232203,SIOUX FALLS,SD,110201,FAILURE +TEMECULA VALLEY BANK,7/17/2009,1396622,1276287,TEMECULA,CA,227400,FAILURE +THE FIRST NATIONAL BANK OF FORESTVILLE,11/1/1941,328,303,FORESTVILLE,NY,,FAILURE +FIRST PIEDMONT BANK,7/17/2009,114113,108499,WINDER,GA,37998,FAILURE +SECURITY BANK OF JONES COUNTY,7/24/2009,432712,375238,GRAY,GA,98201,FAILURE +SECURITY BANK OF HOUSTON COUNTY,7/24/2009,371624,313155,PERRY,GA,50980,FAILURE +SECURITY BANK OF BIBB COUNTY,7/24/2009,943744,831437,MACON,GA,414269,FAILURE +SECURITY BANK OF NORTH METRO,7/24/2009,184184,182413,WOODSTOCK,GA,102031,FAILURE +SECURITY BANK OF GWINNETT COUNTY,7/24/2009,259182,256578,SUWANNEE,GA,193409,FAILURE +SECURITY BANK OF NORTH FULTON,7/24/2009,190564,179523,ALPHARETTA,GA,49000,FAILURE +WATERFORD VILLAGE BANK,7/24/2009,55707,56145,WILLIAMSVILLE,NY,7875,FAILURE +FIRST STATE BANK OF ALTUS,7/31/2009,90867,98161,ALTUS,OK,25969,FAILURE +MUTUAL BANK,7/31/2009,1595657,1546525,HARVEY,IL,793841,FAILURE +THE FIRST NATIONAL BANK OF DODGEVILLE,11/29/1941,941,907,DODGEVILLE,WI,,FAILURE +PEOPLES COMMUNITY BANK,7/31/2009,606153,538787,WEST CHESTER,OH,61523,FAILURE +FIRST BANKAMERICANO,7/31/2009,163372,155463,ELIZABTH,NJ,20048,FAILURE +INTEGRITY BANK,7/31/2009,105298,98511,JUPITER,FL,36473,FAILURE +COMMUNITY FIRST BANK,8/7/2009,199508,180691,PRINEVILLE,OR,73567,FAILURE +COMMUNITY NATIONAL BANK OF SARASOTA COUNTY,8/7/2009,92528,92352,VENICE,FL,25369,FAILURE +FIRST STATE BANK,8/7/2009,447667,394701,SARASOTA,FL,119466,FAILURE +COLONIAL BANK,8/14/2009,25455112,20072099,MONTGOMERY,AL,2368927,FAILURE +DWELLING HOUSE SAVINGS AND LOAN,8/14/2009,12947,12984,PITTSBURGH,PA,8352,FAILURE +COMMUNITY BANK OF NEVADA,8/14/2009,1397798,1372744,LAS VEGAS,NV,557962,FAILURE +"UNION BANK, NATIONAL ASSOCIATION",8/14/2009,119529,110362,GILBERT,AZ,51989,FAILURE +BANCO DI NAPOLI TRUST CO. OF NEW YORK,12/11/1941,13799,10991,NEW YORK,NY,,FAILURE +COMMUNITY BANK OF ARIZONA,8/14/2009,158517,143834,PHOENIX,AZ,26760,FAILURE +CAPITALSOUTH BANK,8/21/2009,586586,539422,BIRMINGHAM,AL,126332,FAILURE +GUARANTY BANK,8/21/2009,13464352,11984112,AUSTIN,TX,0,FAILURE +EBANK,8/21/2009,144688,131510,ATLANTA,GA,49948,FAILURE +FIRST COWETA,8/21/2009,163755,154903,NEWNAN,GA,66684,FAILURE +MAINSTREET BANK,8/28/2009,458533,432818,FOREST LAKE,MN,89930,FAILURE +AFFINITY BANK,8/28/2009,1211431,905593,VENTURA,CA,234069,FAILURE +BRADFORD BANK,8/28/2009,451888,382159,BALTIMORE,MD,46897,FAILURE +INBANK,9/4/2009,209848,209211,OAK FOREST,IL,56911,FAILURE +FIRST BANK OF KANSAS CITY,9/4/2009,15723,14479,KANSAS CITY,MO,7548,FAILURE +THE ST. CHARLES STATE BANK,12/13/1941,,412,ST. CHARLES,MI,,FAILURE +VANTUS BANK,9/4/2009,503643,394369,SIOUX CITY,IA,101576,FAILURE +FIRST STATE BANK,9/4/2009,107235,95734,FLAGSTAFF,AZ,49833,FAILURE +PLATINUM COMMUNITY BANK,9/4/2009,147961,110186,ROLLING MEADOWS,IL,0,FAILURE +"CORUS BANK, N.A.",9/11/2009,7003321,7060693,CHICAGO,IL,0,FAILURE +VENTURE BANK,9/11/2009,968385,917729,LACEY,WA,201128,FAILURE +BRICKWELL COMMUNITY BANK,9/11/2009,72576,64981,WOODBURY,MN,24597,FAILURE +IRWIN UNION BANK AND TRUST COMPANY,9/18/2009,2839747,2254025,COLUMBUS,IN,755962,FAILURE +"IRWIN UNION BANK, FSB",9/18/2009,518151,462611,LOUISVILLE,KY,114006,FAILURE +GEORGIAN BANK,9/25/2009,2230230,1960123,ATLANTA,GA,960820,FAILURE +JENNINGS STATE BANK,10/2/2009,52347,50801,SPRING GROVE,MN,18876,FAILURE +THE FRANKLIN TRUST CO.,12/22/1941,,3196,FRANKLIN,PA,,FAILURE +WARREN BANK,10/2/2009,504816,467767,WARREN,MI,217487,FAILURE +SOUTHERN COLORADO NATIONAL BANK,10/2/2009,37142,29568,PUEBLO,CO,8323,FAILURE +SAN JOAQUIN BANK,10/16/2009,766359,626359,BAKERSFIELD,CA,79080,FAILURE +BANK OF ELMWOOD,10/23/2009,327444,272782,RACINE,WI,99463,FAILURE +FIRST DUPAGE BANK,10/23/2009,262093,253992,WESTMONT,IL,85319,FAILURE +FLAGSHIP NATIONAL BANK,10/23/2009,177563,170118,BRADENTON,FL,62112,FAILURE +RIVERVIEW COMMUNITY BANK,10/23/2009,99057,75012,OSTEGO,MN,23476,FAILURE +AMERICAN UNITED BANK,10/23/2009,110094,102386,LAWRENCEVILLE,GA,44018,FAILURE +PARTNERS BANK,10/23/2009,65498,64798,NAPLES,FL,31809,FAILURE +HILLCREST BANK FLORIDA,10/23/2009,82774,83254,NAPLES,FL,42976,FAILURE +THE FIRST NATIONAL BANK OF CLINTON,2/1/1936,,437,CLINTON,OK,,FAILURE +THE LAMBERTON NATIONAL BANK OF FRANKLIN,12/22/1941,,2476,FRANKLIN,PA,,FAILURE +PARK NATIONAL BANK,10/30/2009,4680881,3716626,CHICAGO,IL,2992,FAILURE +NORTH HOUSTON BANK,10/30/2009,325474,307166,HOUSTON,TX,12000,FAILURE +SAN DIEGO NATIONAL BANK,10/30/2009,3594544,2891576,SAN DIEGO,CA,36350,FAILURE +CITIZENS NATIONAL BANK,10/30/2009,118236,97590,TEAGUE,TX,5846,FAILURE +PACIFIC NATIONAL BANK,10/30/2009,2319263,1757986,SAN FRANCISCO,CA,58567,FAILURE +"BANK USA, NA",10/30/2009,213205,170685,PHOENIX,AZ,11741,FAILURE +MADISONVILLE STATE BANK,10/30/2009,256330,224653,MADISONVILLE,TX,0,FAILURE +CALIFORNIA NATIONAL BANK,10/30/2009,7781100,6145207,LOS ANGELES,CA,182213,FAILURE +COMMUNITY BANK OF LEMONT,10/30/2009,81843,80688,LEMONT,IL,25945,FAILURE +GATEWAY BANK OF ST LOUIS,11/6/2009,26882,27534,ST LOUIS,MO,11648,FAILURE +PROVIDENCE BANK,1/17/1942,,754,SCRANTON,PA,,FAILURE +UNITED SECURITY BANK,11/6/2009,153639,149616,SPARTA,GA,60895,FAILURE +HOME FEDERAL SAVINGS BANK,11/6/2009,12994,12730,DETROIT,MI,8612,FAILURE +UNITED COMMERCIAL BANK,11/6/2009,10895336,7653666,SAN FRANCISCO,CA,572640,FAILURE +PROSPERAN BANK,11/6/2009,197442,182794,OAKDALE,MN,31685,FAILURE +ORION BANK,11/13/2009,2612515,2169446,NAPLES,FL,713129,FAILURE +"CENTURY BANK, A FEDERAL SAVINGS BANK",11/13/2009,755923,659742,SARASOTA,FL,306877,FAILURE +PACIFIC COAST NATIONAL BANK,11/13/2009,131418,128867,SAN CLEMENTE,CA,33470,FAILURE +COMMERCE BANK OF SOUTHWEST FLORIDA,11/20/2009,70997,72821,FORT MYERS,FL,32236,FAILURE +BENCHMARK BANK,12/4/2009,173062,182760,AURORA,IL,79321,FAILURE +THE TATNALL BANK,12/4/2009,49612,47100,REIDSVILLE,GA,14705,FAILURE +PALISADE STATE BANK,1/21/1942,91,88,PALISADE,MN,,FAILURE +FIRST SECURITY NATIONAL BANK,12/4/2009,127455,121645,NORCROSS,GA,34282,FAILURE +AMTRUST BANK,12/4/2009,11438990,8558609,CLEVELAND,OH,1686815,FAILURE +GREATER ATLANTIC BANK,12/4/2009,203262,179248,RESTON,VA,26610,FAILURE +THE BUCKHEAD COMMUNITY BANK,12/4/2009,856236,813668,ATLANTA,GA,310552,FAILURE +SOLUTIONSBANK,12/11/2009,511103,421271,OVERLAND PARK,KS,93393,FAILURE +"REPUBLIC FEDERAL BANK, N.A.",12/11/2009,433011,352695,MIAMI,FL,77977,FAILURE +"VALLEY CAPITAL BANK, N.A.",12/11/2009,40270,41312,MESA,AZ,15047,FAILURE +CITIZENS STATE BANK,12/18/2009,168551,157149,NEW BALTIMORE,MI,68171,FAILURE +IMPERIAL CAPITAL BANK,12/18/2009,4046888,2822300,LA JOLLA,CA,266543,FAILURE +INDEPENDENT BANKERS' BANK,12/18/2009,585508,511473,SPRINGFIELD,IL,0,FAILURE +THE LOUISA NATIONAL BANK,1/31/1942,,477,LOUISA,KY,,FAILURE +"FIRST FEDERAL BANK OF CALIFORNIA, A FEDERAL SAVINGS BANK",12/18/2009,6143903,4538607,SANTA MONICA,CA,0,FAILURE +PEOPLES FIRST COMMUNITY BANK,12/18/2009,1795420,1684443,PANAMA CITY,FL,597058,FAILURE +NEW SOUTH FEDERAL SAVINGS BANK,12/18/2009,1464127,1163916,IRONDALE,AL,311641,FAILURE +ROCKBRIDGE COMMERCIAL BANK,12/18/2009,294024,291707,ATLANTA,GA,98837,FAILURE +HORIZON BANK,1/8/2010,1188956,1049063,BELLINGHAM,WA,205488,FAILURE +BARNES BANKING COMPANY,1/15/2010,709171,697109,KAYSVILLE,UT,106769,FAILURE +ST. STEPHEN STATE BANK,1/15/2010,22895,23912,ST. STEPHEN,MN,7707,FAILURE +TOWN COMMUNITY BANK AND TRUST,1/15/2010,70758,68323,ANTIOCH,IL,23289,FAILURE +BANK OF LEETON,1/22/2010,20128,20335,LEETON,MO,7092,FAILURE +EVERGREEN BANK,1/22/2010,395980,340378,SEATTLE,WA,43422,FAILURE +BANK OF DRAPER,2/6/1942,129,83,DRAPER,NC,,FAILURE +COLUMBIA RIVER BANK,1/22/2010,955112,908132,THE DALLES,OR,54899,FAILURE +CHARTER BANK,1/22/2010,1201922,859933,SANTA FE,NM,127197,FAILURE +PREMIER AMERICAN BANK,1/22/2010,299225,285554,MIAMI,FL,84454,FAILURE +FLORIDA COMMUNITY BANK,1/29/2010,835701,776556,IMMOKALEE,FL,308984,FAILURE +COMMUNITY BANK & TRUST,1/29/2010,1181717,1067957,CORNELIA,GA,477153,FAILURE +"MARSHALL BANK, NATIONAL ASSOCIATION",1/29/2010,58566,55662,HALLOCK,MN,1063,FAILURE +FIRST NATIONAL BANK OF GEORGIA,1/29/2010,840633,780196,CARROLLTON,GA,203881,FAILURE +AMERICAN MARINE BANK,1/29/2010,329246,287443,BAINBRIDGE ISLAND,WA,28352,FAILURE +FIRST REGIONAL BANK,1/29/2010,2082684,1664450,LOS ANGELES,CA,224134,FAILURE +1ST AMERICAN STATE BANK OF MINNESOTA,2/5/2010,18155,16327,HANCOCK,MN,4521,FAILURE +THE HADDONFIELD NATIONAL BANK,2/28/1942,,2662,HADDONFIELD,NJ,,FAILURE +THE LA COSTE NATIONAL BANK,2/19/2010,53936,49275,LA COSTE,TX,5709,FAILURE +GEORGE WASHINGTON SAVINGS BANK,2/19/2010,413673,395310,ORLAND PARK,IL,118852,FAILURE +"LA JOLLA BANK, FSB",2/19/2010,3646071,2799362,LA JOLLA,CA,560147,FAILURE +MARCO COMMUNITY BANK,2/19/2010,119578,117097,MARCO ISLAND,FL,25614,FAILURE +RAINIER PACIFIC BANK,2/26/2010,717806,446192,TACOMA,WA,2752,FAILURE +CARSON RIVER COMMUNITY BANK,2/26/2010,51095,50024,CARSON CITY,NV,14451,FAILURE +BANK OF ILLINOIS,3/5/2010,211711,198487,NORMAL,IL,18737,FAILURE +SUN AMERICAN BANK,3/5/2010,535724,443481,BOCA RATON,FL,122301,FAILURE +CENTENNIAL BANK,3/5/2010,212839,205076,OGDEN,UT,70515,FAILURE +WATERFIELD BANK,3/5/2010,155566,156188,GERMANTOWN,MD,11322,FAILURE +THE CITIZENS NATIONAL BANK OF FREEPORT,3/7/1942,,1279,FREEPORT,NY,,FAILURE +LIBERTYPOINTE BANK,3/11/2010,216500,209477,NEW YORK,NY,18407,FAILURE +THE PARK AVENUE BANK,3/12/2010,520146,494505,NEW YORK,NY,76368,FAILURE +STATEWIDE BANK,3/12/2010,243215,207821,COVINGTON,LA,26124,FAILURE +OLD SOUTHERN BANK,3/12/2010,336390,319746,ORLANDO,FL,76501,FAILURE +STATE BANK OF AURORA,3/19/2010,28159,27801,AURORA,MN,7026,FAILURE +BANK OF HIAWASSEE,3/19/2010,377779,339597,HIAWASSEE,GA,107263,FAILURE +AMERICAN NATIONAL BANK,3/19/2010,70318,66752,PARMA,OH,14960,FAILURE +FIRST LOWNDES BANK,3/19/2010,137175,131117,FORT DEPOSIT,AL,11725,FAILURE +ADVANTA BANK CORP.,3/19/2010,1525931,1519471,DRAPER,UT,521525,FAILURE +APPALACHIAN COMMUNITY BANK,3/19/2010,1010075,917575,ELLIJAY,GA,456455,FAILURE +THE FIRST NATIONAL BANK OF WEATHERLY,3/14/1942,,521,WEATHERLY,PA,,FAILURE +CENTURY SECURITY BANK,3/19/2010,96535,93967,DULUTH,GA,37707,FAILURE +UNITY NATIONAL BANK,3/26/2010,300590,264286,CARTERSVILLE,GA,73589,FAILURE +KEY WEST BANK,3/26/2010,88031,67662,KEY WEST,FL,16210,FAILURE +DESERT HILLS BANK,3/26/2010,496552,426473,PHOENIX,AZ,108862,FAILURE +MCINTOSH COMMERCIAL BANK,3/26/2010,363405,343339,CARROLLTON,GA,164026,FAILURE +BEACH FIRST NATIONAL BANK,4/9/2010,590024,521138,MYRTLE BEACH,SC,164585,FAILURE +CITY BANK,4/16/2010,981913,919606,LYNNWOOD,WA,154993,FAILURE +INNOVATIVE BANK,4/16/2010,266816,223164,OAKLAND,CA,22715,FAILURE +RIVERSIDE NATIONAL BANK OF FLORIDA,4/16/2010,3393818,2724475,FORT PIERCE,FL,0,FAILURE +BUTLER BANK,4/16/2010,245534,227420,LOWELL,MA,18261,FAILURE +FLORAL PARK BANK AND TRUST COMPANY,3/28/1942,,1999,FLORAL PARK,NY,,FAILURE +FIRST FEDERAL BANK OF NORTH FLORIDA,4/16/2010,440122,369617,PALATKA,FL,11969,FAILURE +TAMALPAIS BANK,4/16/2010,611504,457206,SAN RAFAEL,CA,0,FAILURE +LAKESIDE COMMUNITY BANK,4/16/2010,49173,48622,STERLING HEIGHTS,MI,20977,FAILURE +AMERICANFIRST BANK,4/16/2010,104034,100070,CLERMONT,FL,16404,FAILURE +"AMCORE BANK, NATIONAL ASSOCIATION",4/23/2010,3066240,2743485,ROCKFORD,IL,11098,FAILURE +PEOTONE BANK AND TRUST COMPANY,4/23/2010,130165,124676,PEOTONE,IL,45596,FAILURE +BROADWAY BANK,4/23/2010,1059194,1023421,CHICAGO,IL,377438,FAILURE +LINCOLN PARK SAVINGS BANK,4/23/2010,194618,162627,CHICAGO,IL,37917,FAILURE +CITIZENS BANK & TRUST COMPANY OF CHICAGO,4/23/2010,73490,72772,CHICAGO,IL,41327,FAILURE +NEW CENTURY BANK,4/23/2010,447239,438999,CHICAGO,IL,132056,FAILURE +BANK OF MALONE,3/31/1942,149,140,MALONE,FL,,FAILURE +WHEATLAND BANK,4/23/2010,441694,448917,NAPERVILLE,IL,189658,FAILURE +BC NATIONAL BANKS,4/30/2010,52204,43635,BUTLER,MO,8620,FAILURE +FRONTIER BANK,4/30/2010,3250734,2846886,EVERETT,WA,453920,FAILURE +EUROBANK,4/30/2010,2453138,1861350,SAN JUAN,PR,539124,FAILURE +CF BANCORP,4/30/2010,1599122,1418445,PORT HURON,MI,340615,FAILURE +WESTERNBANK PUERTO RICO,4/30/2010,10797345,8420357,MAYAGUEZ,PR,2174156,FAILURE +R-G PREMIER BANK OF PUERTO RICO,4/30/2010,5681177,4220108,HATO REY,PR,978974,FAILURE +CHAMPION BANK,4/30/2010,195510,162816,CREVE COEUR,MO,57091,FAILURE +THE BANK OF BONIFAY,5/7/2010,242871,230190,BONIFAY,FL,65887,FAILURE +ACCESS BANK,5/7/2010,31996,31969,CHAMPLIN,MN,7916,FAILURE +PEOPLES BANK,2/5/1936,186,143,COLE CAMP,MO,,FAILURE +THE EMMAUS NATIONAL BANK,4/25/1942,,1399,EMMAUS,PA,,FAILURE +1st PACIFIC BANK OF CALIFORNIA,5/7/2010,335798,291173,SAN DIEGO,CA,6342,FAILURE +TOWNE BANK OF ARIZONA,5/7/2010,120246,113243,MESA,AZ,44322,FAILURE +MIDWEST BANK AND TRUST COMPANY,5/14/2010,3172915,2420738,ELMWOOD PARK,IL,0,FAILURE +SOUTHWEST COMMUNITY BANK,5/14/2010,100659,102463,SPRINGFIELD,MO,25580,FAILURE +SATILLA COMMUNITY BANK,5/14/2010,135688,134005,SAINT MARYS,GA,36321,FAILURE +NEW LIBERTY BANK,5/14/2010,111239,101884,PLYMOUTH,MI,23558,FAILURE +PINEHURST BANK,5/21/2010,61215,58288,ST. PAUL,MN,8410,FAILURE +SUN WEST BANK,5/28/2010,360662,353943,LAS VEGAS,NV,115960,FAILURE +BANK OF FLORIDA - SOUTHWEST,5/28/2010,640894,559897,NAPLES,FL,87638,FAILURE +"GRANITE COMMUNITY BANK, NATIONAL ASSOCIATION",5/28/2010,102913,94252,GRANITE BAY,CA,13175,FAILURE +THE FIRST NAT BK & TR CO. OF DALLASTOWN,6/20/1942,,1351,DALLASTOWN,PA,,FAILURE +BANK OF FLORIDA - SOUTHEAST,5/28/2010,595318,531752,FORT LAUDERDALE,FL,60470,FAILURE +BANK OF FLORIDA - TAMPA BAY,5/28/2010,240513,224024,TAMPA BAY,FL,30582,FAILURE +FIRST NATIONAL BANK,6/4/2010,60449,63483,ROSEDALE,MS,18085,FAILURE +TIERONE BANK,6/4/2010,2824737,2185817,LINCOLN,NE,0,FAILURE +ARCOLA HOMESTEAD SAVINGS BANK,6/4/2010,17028,18092,ARCOLA,IL,11534,FAILURE +WASHINGTON FIRST INTERNATIONAL BANK,6/11/2010,520887,441362,SEATTLE,WA,95151,FAILURE +NEVADA SECURITY BANK,6/18/2010,492491,479759,RENO,NV,70039,FAILURE +PENINSULA BANK,6/25/2010,630179,580140,ENGLEWOOD,FL,184045,FAILURE +FIRST NATIONAL BANK,6/25/2010,252520,231857,SAVANNAH,GA,78167,FAILURE +HIGH DESERT STATE BANK,6/25/2010,80343,80985,ALBUQUERQUE,NM,28392,FAILURE +FARMER'S AND MERCHANT'S BANK,7/6/1942,395,325,COCHRANE,WI,,FAILURE +HOME NATIONAL BANK,7/9/2010,585445,514038,BLACKWELL,OK,65822,FAILURE +IDEAL FEDERAL SAVINGS BANK,7/9/2010,6177,5803,BALTIMORE,MD,3694,FAILURE +BAY NATIONAL BANK,7/9/2010,217743,212612,BALTIMORE,MD,21144,FAILURE +USA BANK,7/9/2010,190678,188644,PORT CHESTER,NY,63537,FAILURE +METRO BANK OF DADE COUNTY,7/16/2010,399441,375522,MIAMI,FL,64179,FAILURE +"MAINSTREET SAVINGS BANK, FSB",7/16/2010,96584,63291,HASTINGS,MI,12789,FAILURE +OLDE CYPRESS COMMUNITY BANK,7/16/2010,161355,157997,CLEWISTON,FL,25533,FAILURE +TURNBERRY BANK,7/16/2010,240251,179169,AVENTURA,FL,28658,FAILURE +WOODLANDS BANK,7/16/2010,382803,364808,BLUFFTON,SC,107349,FAILURE +FIRST NATIONAL BANK OF THE SOUTH,7/16/2010,619374,550891,SPARTANBURG,SC,68274,FAILURE +THE FIRST NATIONAL BANK OF LEHIGHTON,8/1/1942,,1834,LEHIGHTON,PA,,FAILURE +THUNDER BANK,7/23/2010,28248,27048,SYLVAN GROVE,KS,6651,FAILURE +WILLIAMSBURG FIRST NATIONAL BANK,7/23/2010,130411,126993,KINGSTREE,SC,2425,FAILURE +HOME VALLEY BANK,7/23/2010,250488,227935,CAVE JUNCTION,OR,28068,FAILURE +CRESCENT BANK AND TRUST COMPANY,7/23/2010,970235,932809,JASPER,GA,303698,FAILURE +STERLING BANK,7/23/2010,354966,329541,LANTANA,FL,41792,FAILURE +COMMUNITY SECURITY BANK,7/23/2010,100649,95100,NEW PRAGUE,MN,18495,FAILURE +SOUTHWESTUSA BANK,7/23/2010,203690,183985,LAS VEGAS,NV,86297,FAILURE +COASTAL COMMUNITY BANK,7/30/2010,377469,370016,PANAMA CITY BEACH,FL,116866,FAILURE +THE COWLITZ BANK,7/30/2010,489019,474742,LONGVIEW,WA,31361,FAILURE +LIBERTYBANK,7/30/2010,714574,692670,EUGENE,OR,50954,FAILURE +CITIZENS NAT BK & TR CO. OF LEHIGHTON,8/1/1942,,1104,LEHIGHTON,PA,,FAILURE +NORTHWEST BANK & TRUST,7/30/2010,160763,155531,ACWORTH,GA,33627,FAILURE +BAYSIDE SAVINGS BANK,7/30/2010,64344,52720,PORT SAINT JOE,FL,12479,FAILURE +RAVENSWOOD BANK,8/6/2010,264628,269448,CHICAGO,IL,67728,FAILURE +PALOS BANK AND TRUST COMPANY,8/13/2010,493391,467784,PALOS HEIGHTS,IL,66962,FAILURE +SHOREBANK,8/20/2010,2166431,1547403,CHICAGO,IL,525962,FAILURE +COMMUNITY NATIONAL BANK AT BARTOW,8/20/2010,67918,63708,BARTOW,FL,9170,FAILURE +PACIFIC STATE BANK,8/20/2010,312077,278832,STOCKTON,CA,34038,FAILURE +SONOMA VALLEY BANK,8/20/2010,337113,255501,SONOMA,CA,10285,FAILURE +INDEPENDENT NATIONAL BANK,8/20/2010,156218,141877,OCALA,FL,11982,FAILURE +IMPERIAL SAVINGS AND LOAN ASSOCIATION,8/20/2010,9448,10090,MARTINSVILLE,VA,4746,FAILURE +THE HARNEY COUNTY NATIONAL BANK OF BURNS,8/29/1942,,1114,BURNS,OR,,FAILURE +LOS PADRES BANK,8/20/2010,866459,770899,SOLVANG,CA,3434,FAILURE +BUTTE COMMUNITY BANK,8/20/2010,498751,471256,CHICO,CA,1663,FAILURE +HORIZON BANK,9/10/2010,187819,164594,BRADENTON,FL,61295,FAILURE +THE PEOPLES BANK,9/17/2010,447185,398181,WINDER,GA,101852,FAILURE +BRAMBLE SAVINGS BANK,9/17/2010,47523,41551,MILFORD,OH,17928,FAILURE +MARITIME SAVINGS BANK,9/17/2010,350488,248134,WEST ALLIS,WI,88384,FAILURE +ISN BANK,9/17/2010,81564,79652,CHERRY HILL,NJ,18856,FAILURE +FIRST COMMERCE COMMUNITY BANK,9/17/2010,248151,242831,DOUGLASVILLE,GA,101039,FAILURE +THE BANK OF ELLIJAY,9/17/2010,168820,160718,ELLIJAY,GA,79709,FAILURE +NORTH COUNTY BANK,9/24/2010,288776,276081,ARLINGTON,WA,70800,FAILURE +MERCHANTS BANKING TRUST COMPANY,9/12/1942,,859,MAHANOY,PA,,FAILURE +HAVEN TRUST BANK FLORIDA,9/24/2010,148575,133561,PONTE VEDRA BEACH,FL,34827,FAILURE +WAKULLA BANK,10/1/2010,402205,367228,CRAWFORDVILLE,FL,119933,FAILURE +SHORELINE BANK,10/1/2010,92980,90644,SHORELINE,WA,23478,FAILURE +"SECURITY SAVINGS BANK, F.S.B.",10/15/2010,453349,347080,OLATHE,KS,53100,FAILURE +PREMIER BANK,10/15/2010,989382,869367,JEFFERSON CITY,MO,308543,FAILURE +WESTBRIDGE BANK AND TRUST COMPANY,10/15/2010,87782,70131,CHESTERFIELD,MO,22436,FAILURE +THE FIRST NATIONAL BANK OF BARNESVILLE,10/22/2010,126622,122880,BARNESVILLE,GA,46897,FAILURE +FIRST SUBURBAN NATIONAL BANK,10/22/2010,143451,135475,MAYWOOD,IL,44303,FAILURE +HILLCREST BANK,10/22/2010,1583611,1488785,OVERLAND PARK,KS,275262,FAILURE +FIRST BANK OF JACKSONVILLE,10/22/2010,73922,72198,JACKSONVILLE,FL,14277,FAILURE +FARMERS BANK,10/2/1942,580,537,LONE ROCK,WI,,FAILURE +PROGRESS BANK OF FLORIDA,10/22/2010,94823,86861,TAMPA,FL,34562,FAILURE +"FIRST ARIZONA SAVINGS, A FSB",10/22/2010,255920,190615,SCOTTSDALE,AZ,26776,FAILURE +THE GORDON BANK,10/22/2010,29259,26867,GORDON,GA,10354,FAILURE +K BANK,11/5/2010,538258,500056,RANDALLSTOWN,MD,136316,FAILURE +PIERCE COMMERCIAL BANK,11/5/2010,221082,193473,TACOMA,WA,26754,FAILURE +FIRST VIETNAMESE AMERICAN BANK,11/5/2010,48000,47012,WESTMINSTER,CA,14264,FAILURE +WESTERN COMMERCIAL BANK,11/5/2010,98635,101127,WOODLAND HILLS,CA,16943,FAILURE +DARBY BANK & TRUST COMPANY,11/12/2010,654714,587626,VIDALIA,GA,125908,FAILURE +COPPER STAR BANK,11/12/2010,203955,190182,SCOTTSDALE,AZ,52561,FAILURE +TIFTON BANKING COMPANY,11/12/2010,143729,141573,TIFTON,GA,21383,FAILURE +THE FARMERS NATIONAL BANK OF SELINSGROVE,10/17/1942,,719,SELINSGROVE,PA,,FAILURE +FIRST BANKING CENTER,11/19/2010,750724,664752,BURLINGTON,WI,86071,FAILURE +GULF STATE COMMUNITY BANK,11/19/2010,112144,112193,CARRABELLE,FL,44443,FAILURE +ALLEGIANCE BANK OF NORTH AMERICA,11/19/2010,106595,91996,BALA CYNWYD,PA,12652,FAILURE +PARAMOUNT BANK,12/10/2010,252744,213550,FARMINGTON HILLS,MI,68586,FAILURE +EARTHSTAR BANK,12/10/2010,112643,104505,SOUTHAMPTON,PA,22495,FAILURE +THE BANK OF MIAMI,12/17/2010,448150,374218,CORAL GABLES,FL,28965,FAILURE +COMMUNITY NATIONAL BANK,12/17/2010,31569,28844,LINO LAKES,MN,5827,FAILURE +CHESTATEE STATE BANK,12/17/2010,244376,240476,DAWSONVILLE,GA,83075,FAILURE +UNITED AMERICAS BANK,12/17/2010,242339,193803,ATLANTA,GA,96415,FAILURE +FIRST SOUTHERN BANK,12/17/2010,191764,155803,BATESVILLE,AR,24771,FAILURE +THE CITIZENS BANK OF LIBERTY,11/18/1942,258,206,LIBERTY,MO,,FAILURE +"APPALACIAN COMMUNITY BANK, F.S.B.",12/17/2010,68201,76360,MCCAYSVILLE,GA,28452,FAILURE +FIRST COMMERCIAL BANK OF FLORIDA,1/7/2011,578638,537223,ORLANDO,FL,88904,FAILURE +LEGACY BANK,1/7/2011,136446,119685,SCOTTSDALE,AZ,32224,FAILURE +OGLETHORPE BANK,1/14/2011,211149,201369,BRUNSWICK,GA,84066,FAILURE +ENTERPRISE BANKING COMPANY,1/21/2011,99461,94591,MCDONOUGH,GA,43538,FAILURE +UNITED WESTERN BANK,1/21/2011,2153690,1535194,DENVER,CO,133359,FAILURE +THE BANK OF ASHEVILLE,1/21/2011,204925,199394,ASHEVILLE,NC,43945,FAILURE +COMMUNITYSOUTH BANK AND TRUST,1/21/2011,340986,314250,EASLEY,SC,45189,FAILURE +THE FIRST STATE BANK,1/28/2011,44546,41204,CAMARGO,OK,33590,FAILURE +EVERGREEN STATE BANK,1/28/2011,240949,193694,STOUGHTON,WI,28060,FAILURE +FARMERS & MECHANICS BANK,2/15/1936,,3734,ANN ARBOR,MI,,FAILURE +GUARANTEE TR & SAFE DEP. CO.-MT.CARMEL,11/28/1942,,1123,MT. CARMEL,PA,,FAILURE +FIRST COMMUNITY BANK,1/28/2011,2188154,1847851,TAOS,NM,230712,FAILURE +FIRSTIER BANK,1/28/2011,764090,718797,LOUISVILLE,CO,232851,FAILURE +NORTH GEORGIA BANK,2/4/2011,153172,139672,WATKINSVILLE,GA,48161,FAILURE +AMERICAN TRUST BANK,2/4/2011,238205,222161,ROSWELL,GA,69323,FAILURE +COMMUNITY FIRST BANK - CHICAGO,2/4/2011,51083,49504,CHICAGO,IL,10213,FAILURE +BADGER STATE BANK,2/11/2011,83828,78549,CASSVILLE,WI,19454,FAILURE +PEOPLES STATE BANK,2/11/2011,390524,389868,HAMTRAMCK,MI,103057,FAILURE +CANYON NATIONAL BANK,2/11/2011,210859,205285,PALM SPRINGS,CA,15617,FAILURE +SUNSHINE STATE COMMUNITY BANK,2/11/2011,125531,116715,PORT ORANGE,FL,32294,FAILURE +HABERSHAM BANK,2/18/2011,387681,339934,CLARKESVILLE,GA,119370,FAILURE +THE POULTNEY NATIONAL BANK,3/17/1943,919,862,POULTNEY,VT,,FAILURE +CITIZENS BANK OF EFFINGHAM,2/18/2011,214275,206490,SPRINGFIELD,GA,48229,FAILURE +"SAN LUIS TRUST BANK, FSB",2/18/2011,332596,272216,SAN LUIS OBISPO,CA,72906,FAILURE +CHARTER OAK BANK,2/18/2011,120833,105309,NAPA,CA,20076,FAILURE +VALLEY COMMUNITY BANK,2/25/2011,123774,124179,ST. CHARLES,IL,28270,FAILURE +THE FIRST NATIONAL BANK OF DAVIS,3/11/2011,90183,68331,DAVIS,OK,29846,FAILURE +LEGACY BANK,3/11/2011,190418,183309,MILWAUKEE,WI,73718,FAILURE +THE BANK OF COMMERCE,3/25/2011,163074,161379,WOOD DALE,IL,44142,FAILURE +WESTERN SPRINGS NATIONAL BANK AND TRUST,4/8/2011,186677,182441,WESTERN SPRINGS,IL,38047,FAILURE +NEVADA COMMERCE BANK,4/8/2011,135064,128573,LAS VEGAS,NV,38492,FAILURE +HERITAGE BANKING GROUP,4/15/2011,228328,205035,CARTHAGE,MS,37841,FAILURE +BANK OF BLACK MOUNTAIN,3/18/1943,855,767,BLACK MOUTAIN,NC,,FAILURE +SUPERIOR BANK,4/15/2011,2977290,2736201,BIRMINGHAM,AL,281381,FAILURE +NEXITY BANK,4/15/2011,757574,611681,BIRMINGHAM,AL,182002,FAILURE +BARTOW COUNTY BANK,4/15/2011,314019,290005,CARTERSVILLE,GA,83037,FAILURE +ROSEMOUNT NATIONAL BANK,4/15/2011,21454,20980,ROSEMOUNT,MN,5398,FAILURE +NEW HORIZONS BANK,4/15/2011,103055,99022,EAST ELLIJAY,GA,34708,FAILURE +THE PARK AVENUE BANK,4/29/2011,849409,724483,VALDOSTA,GA,212045,FAILURE +FIRST NATIONAL BANK OF CENTRAL FLORIDA,4/29/2011,342079,308784,WINTER PARK,FL,42899,FAILURE +COMMUNITY CENTRAL BANK,4/29/2011,451683,371494,MOUNT CLEMENS,MI,98636,FAILURE +CORTEZ COMMUNITY BANK,4/29/2011,66282,65439,BROOKSVILLE,FL,17194,FAILURE +FIRST CHOICE COMMUNITY BANK,4/29/2011,291196,294769,DALLAS,GA,105180,FAILURE +FARMERS STATE BANK OF CULLOM,4/2/1943,439,474,CULLOM,IL,,FAILURE +COASTAL BANK,5/6/2011,129429,123950,COCOA BEACH,FL,18527,FAILURE +SUMMIT BANK,5/20/2011,142729,131631,BURLINGTON,WA,24195,FAILURE +ATLANTIC SOUTHERN BANK,5/20/2011,741855,707643,MACON,GA,280971,FAILURE +FIRST GEORGIA BANKING COMPANY,5/20/2011,730981,702231,FRANKLIN,GA,134595,FAILURE +FIRST HERITAGE BANK,5/27/2011,173478,163303,SNOHOMISH,WA,33596,FAILURE +ATLANTIC BANK AND TRUST,6/3/2011,208204,191614,CHARLESTON,SC,31204,FAILURE +MCINTOSH STATE BANK,6/17/2011,339929,324403,JACKSON,GA,75418,FAILURE +FIRST COMMERCIAL BANK OF TAMPA BAY,6/17/2011,98624,92641,TAMPA,FL,33477,FAILURE +MOUNTAIN HERITAGE BANK,6/24/2011,103716,89554,CLAYTON,GA,34480,FAILURE +FIRST CHICAGO BANK & TRUST,7/8/2011,896864,830530,CHICAGO,IL,192899,FAILURE +THE JEFFERSON COUNTY NAT BK -WATERTOWN,9/25/1943,6677,5898,WATERTOWN,NY,,FAILURE +COLORADO CAPITAL BANK,7/8/2011,665806,635202,CASTLE ROCK,CO,254944,FAILURE +SIGNATURE BANK,7/8/2011,62518,60349,WINDSOR,CO,23311,FAILURE +HIGH TRUST BANK,7/15/2011,180340,177221,STOCKBRIDGE,GA,70772,FAILURE +FIRST PEOPLES BANK,7/15/2011,225035,207621,PORT SAINT LUCIE,FL,13110,FAILURE +SUMMIT BANK,7/15/2011,73066,67471,PRESCOTT,AZ,14868,FAILURE +ONE GEORGIA BANK,7/15/2011,177715,158123,ATLANTA,GA,40555,FAILURE +BANK OF CHOICE,7/22/2011,954106,818670,GREELEY,CO,135593,FAILURE +LANDMARK BANK OF FLORIDA,7/22/2011,266482,244362,SARASOTA,FL,37389,FAILURE +SOUTHSHORE COMMUNITY BANK,7/22/2011,41252,41434,APOLLO BEACH,FL,11403,FAILURE +INTEGRA BANK NATIONAL ASSOCIATION,7/29/2011,1994430,1693592,EVANSVILLE,IN,26334,FAILURE +FIRST NATIONAL BK & TR CO. OF EASTON,12/10/1943,5169,4171,EASTON,PA,,FAILURE +"BANKMERIDIAN, N.A.",7/29/2011,232648,209737,COLUMBIA,SC,49181,FAILURE +VIRGINIA BUSINESS BANK,7/29/2011,83493,72955,RICHMOND,VA,19851,FAILURE +BANK OF WHITMAN,8/5/2011,548570,515732,COLFAX,WA,100914,FAILURE +BANK OF SHOREWOOD,8/5/2011,110723,104021,SHOREWOOD,IL,29378,FAILURE +THE FIRST NATIONAL BANK OF OLATHE,8/12/2011,538091,524290,OLATHE,KS,103328,FAILURE +PUBLIC SAVINGS BANK,8/18/2011,46818,45770,HUNTINGDON VALLEY,PA,15828,FAILURE +LYDIAN PRIVATE BANK,8/19/2011,1700117,1253835,PALM BEACH,FL,183624,FAILURE +FIRST CHOICE BANK,8/19/2011,141016,137215,GENEVA,IL,34064,FAILURE +FIRST SOUTHERN NATIONAL BANK,8/19/2011,164599,159673,STATESBORO,GA,22171,FAILURE +CREEKSIDE BANK,9/2/2011,102338,96583,WOODSTOCK,GA,33845,FAILURE +THE BROWNVILLE STATE BANK,5/12/1944,447,405,BROWNSVILLE,IN,,FAILURE +PATRIOT BANK OF GEORGIA,9/2/2011,150751,140612,CUMMING,GA,54248,FAILURE +THE FIRST NATIONAL BANK OF FLORIDA,9/9/2011,296841,280095,MILTON,FL,75749,FAILURE +BANK OF THE COMMONWEALTH,9/23/2011,985096,901845,NORFOLK,VA,238719,FAILURE +CITIZENS BANK OF NORTHERN CALIFORNIA,9/23/2011,288765,253079,NEVADA CITY,CA,40895,FAILURE +FIRST INTERNATIONAL BANK,9/30/2011,239916,208775,PLANO,TX,58022,FAILURE +THE RIVERBANK,10/7/2011,419723,384120,WYOMING,MN,71176,FAILURE +SUN SECURITY BANK,10/7/2011,351492,280649,ELLINGTON,MO,93109,FAILURE +"BLUE RIDGE SAVINGS BANK, INC.",10/14/2011,161430,159628,ASHEVILLE,NC,44112,FAILURE +COUNTRY BANK,10/14/2011,195034,180835,ALEDO,IL,69305,FAILURE +PIEDMONT COMMUNITY BANK,10/14/2011,198993,178773,GRAY,GA,88194,FAILURE +THE FIRST NATIONAL BANK OF SUSQUEHANNA,5/27/1944,1651,1459,SUSQUEHANNA,PA,,FAILURE +FIRST STATE BANK,10/14/2011,191852,188099,CRANFORD,NJ,45629,FAILURE +COMMUNITY BANKS OF COLORADO,10/21/2011,1280964,1239630,GREENWOOD VILLAGE,CO,169247,FAILURE +DECATUR FIRST BANK,10/21/2011,184750,172042,DECATUR,GA,24568,FAILURE +COMMUNITY CAPITAL BANK,10/21/2011,165291,157808,JONESBORO,GA,64965,FAILURE +OLD HARBOR BANK,10/21/2011,209048,212184,CLEARWATER,FL,26299,FAILURE +ALL AMERICAN BANK,10/28/2011,34800,30542,DES PLAINES,IL,13753,FAILURE +"MID CITY BANK, INC.",11/4/2011,106075,105461,OMAHA,NE,10944,FAILURE +SUNFIRST BANK,11/4/2011,198081,169135,SAINT GEORGE,UT,43575,FAILURE +COMMUNITY BANK OF ROCKMART,11/10/2011,62383,55906,ROCKMART,GA,20301,FAILURE +POLK COUNTY BANK,11/18/2011,91580,81967,JOHNSTON,IA,16053,FAILURE +THE FARMERS & MERCHANTS STATE BANK,1/13/1945,6392,5695,FREDERICKSBURG,VA,,FAILURE +CENTRAL PROGRESSIVE BANK,11/18/2011,383132,347720,LACOMBE,LA,48824,FAILURE +WESTERN NATIONAL BANK,12/16/2011,162872,144491,PHOENIX,AZ,41735,FAILURE +PREMIER COMMUNITY BANK OF THE EMERALD COAST,12/16/2011,125976,112050,CRESTVIEW,FL,25065,FAILURE +THE FIRST STATE BANK,1/20/2012,516760,509065,STOCKBRIDGE,GA,192145,FAILURE +AMERICAN EAGLE SAVINGS BANK,1/20/2012,19259,17548,BOOTHWYN,PA,4671,FAILURE +CENTRAL FLORIDA STATE BANK,1/20/2012,71485,71080,BELLEVIEW,FL,13697,FAILURE +FIRST GUARANTY BANK AND TRUST COMPANY OF JACKSONVILLE,1/27/2012,397082,378309,JACKSONVILLE,FL,54383,FAILURE +BANKEAST,1/27/2012,261947,259571,KNOXVILLE,TN,74064,FAILURE +PATRIOT BANK MINNESOTA,1/27/2012,105029,102833,FOREST LAKE,MN,35346,FAILURE +TENNESSEE COMMERCE BANK,1/27/2012,1009154,1037716,FRANKLIN,TN,351815,FAILURE +"AUGUSTA COUNTY BANK, INC.",9/14/1946,351,316,CHURCHVILLE,VA,,FAILURE +CHARTER NATIONAL BANK AND TRUST,2/10/2012,93894,89485,HOFFMAN ESTATES,IL,18454,FAILURE +SCB BANK,2/10/2012,182561,171365,SHELBYVILLE,IN,38269,FAILURE +CENTRAL BANK OF GEORGIA,2/24/2012,278860,266589,ELLAVILLE,GA,51763,FAILURE +HOME SAVINGS OF AMERICA,2/24/2012,434111,432223,LITTLE FALLS,MN,43037,FAILURE +GLOBAL COMMERCE BANK,3/2/2012,143678,116813,DORAVILLE,GA,40289,FAILURE +NEW CITY BANK,3/9/2012,71202,72399,CHICAGO,IL,13227,FAILURE +PREMIER BANK,3/23/2012,268703,198953,WILMETTE,IL,69338,FAILURE +CONVENANT BANK & TRUST,3/23/2012,95725,90632,ROCK SPRING,GA,30279,FAILURE +FIDELITY BANK,3/30/2012,818237,747640,DEARBORN,MI,97229,FAILURE +"FORT LEE FEDERAL SAVINGS BANK, FSB",4/20/2012,48861,47786,FORT LEE,NJ,11925,FAILURE +FLORENCE DEPOSIT BANK,7/18/1934,105,69,FLORENCE,IN,,FAILURE +THE ANN ARBOR SAVINGS BANK,2/15/1936,,6758,ANN ARBOR,MI,,FAILURE +THE FIRST NATIONAL BANK OF EVANSTON,1/11/1947,1803,1991,EVANSTON,WY,,FAILURE +PALM DESERT NATIONAL BANK,4/27/2012,129253,129023,PALM DESERT,CA,26331,FAILURE +BANK OF THE EASTERN SHORE,4/27/2012,162460,150951,CAMBRIDGE,MD,57856,FAILURE +"INTER SAVINGS BANK, FSB D/B/A/ INTERBANK, FSB",4/27/2012,463840,458053,MAPLE GROVE,MN,79681,FAILURE +PLANTATION FEDERAL BANK,4/27/2012,433512,415943,PAWLEYS ISLAND,SC,83230,FAILURE +HARVEST BANK OF MARYLAND,4/27/2012,163019,145534,GAITHERSBURG,MD,26694,FAILURE +"SECURITY BANK, NATIONAL ASSOCIATION",5/4/2012,101026,99067,NORTH LAUDERDALE,FL,15098,FAILURE +"ALABAMA TRUST BANK, NATIONAL ASSOCIATION",5/18/2012,51553,45149,SYLACAUGA,AL,10672,FAILURE +FIRST CAPITAL BANK,6/8/2012,44448,44828,KINGFISHER,OK,8725,FAILURE +FARMERS' AND TRADERS' STATE BANK,6/8/2012,43077,42302,SHABBONA,IL,10243,FAILURE +WACCAMAW BANK,6/8/2012,533114,472704,WHITEVILLE,NC,23756,FAILURE +THE FIRST NATIONAL BANK OF LEMONT,1/25/1947,1666,1749,LEMONT,IL,,FAILURE +CAROLINA FEDERAL SAVINGS BANK,6/8/2012,54373,53082,CHARLESTON,SC,17630,FAILURE +THE FARMERS BANK OF LYNCHBURG,6/15/2012,163859,156402,LYNCHBURG,TN,33106,FAILURE +PUTNAM STATE BANK,6/15/2012,169489,160024,PALATKA,FL,28751,FAILURE +SECURITY EXCHANGE BANK,6/15/2012,150962,147896,MARIETTA,GA,44760,FAILURE +MONTGOMERY BANK & TRUST,7/6/2012,153208,164181,AILEY,GA,65798,FAILURE +GLASGOW SAVINGS BANK,7/13/2012,22341,21809,GLASGOW,MO,1396,FAILURE +HEARTLAND BANK,7/20/2012,96002,89723,LEAWOOD,KS,363,FAILURE +SECOND FEDERAL SAVINGS AND LOAN ASSOCIATION OF CHICAGO,7/20/2012,190891,171627,CHICAGO,IL,86252,FAILURE +FIRST CHEROKEE STATE BANK,7/20/2012,209021,182114,WOODSTOCK,GA,36215,FAILURE +THE ROYAL PALM BANK OF FLORIDA,7/20/2012,78771,78876,NAPLES,FL,16848,FAILURE +THE CENTRAL CITY NATIONAL BANK,7/12/1947,1693,1709,CENTRAL CITY,PA,,FAILURE +GEORGIA TRUST BANK,7/20/2012,116890,114748,BUFORD,GA,25335,FAILURE +JASPER BANKING COMPANY,7/27/2012,206672,204238,JASPER,GA,49244,FAILURE +WAUKEGAN SAVINGS BANK,8/3/2012,83679,73001,WAUKEGAN,IL,23518,FAILURE +FIRST COMMERCIAL BANK,9/7/2012,215867,206809,BLOOMINGTON,MN,65213,FAILURE +TRUMAN BANK,9/14/2012,282338,245716,ST. LOUIS,MO,39469,FAILURE +FIRST UNITED BANK,9/28/2012,328422,316877,CRETE,IL,33841,FAILURE +EXCEL BANK,10/19/2012,186113,173670,SEDALIA,MO,29582,FAILURE +FIRST EAST SIDE SAVINGS BANK,10/19/2012,65686,64888,TAMARAC,FL,12370,FAILURE +GULFSOUTH PRIVATE BANK,10/19/2012,139391,131579,DESTIN,FL,40332,FAILURE +NOVA BANK,10/26/2012,444710,395248,BERWYN,PA,85428,FAILURE +PEOPLES BANK OF DONALDS,11/29/1947,762,713,DONALDS,SC,,FAILURE +CITIZENS FIRST NATIONAL BANK,11/2/2012,923959,869440,PRINCETON,IL,32458,FAILURE +HERITAGE BANK OF FLORIDA,11/2/2012,225477,223309,LUTZ,FL,73811,FAILURE +HOMETOWN COMMUNITYBANK,11/16/2012,124561,108931,BRASELTON,GA,39665,FAILURE +COMMUNITY BANK OF THE OZARKS,12/14/2012,42816,41881,SUNRISE,MO,13419,FAILURE +WESTSIDE COMMUNITY BANK,1/11/2013,91935,91879,UNIVERSITY PLACE,WA,22860,FAILURE +1ST REGENTS BANK,1/18/2013,49626,49147,ANDOVER,MN,12229,FAILURE +COVENANT BANK,2/15/2013,58422,54202,CHICAGO,IL,19576,FAILURE +FRONTIER BANK,3/8/2013,258840,224108,LAGRANGE,GA,73446,FAILURE +GOLD CANYON BANK,4/5/2013,42125,41728,GOLD CANYON,AZ,8263,FAILURE +HERITAGE BANK OF NORTH FLORIDA,4/19/2013,103960,106348,ORANGE PARK,FL,25231,FAILURE +LYONS STATE BANK,12/6/1947,874,804,LYONS,WI,,FAILURE +FIRST FEDERAL BANK,4/19/2013,92982,87196,LEXINGTON,KY,7767,FAILURE +CHIPOLA COMMUNITY BANK,4/19/2013,37471,37067,MARIANNA,FL,7920,FAILURE +DOUGLAS COUNTY BANK,4/26/2013,317288,315326,DOUGLASVILLE,GA,89606,FAILURE +PARKWAY BANK,4/26/2013,109642,104709,LENOIR,NC,16490,FAILURE +SUNRISE BANK,5/10/2013,60793,57775,VALDOSTA,GA,16002,FAILURE +PISGAH COMMUNITY BANK,5/10/2013,21880,21246,ASHEVILLE,NC,7943,FAILURE +CENTRAL ARIZONA BANK,5/14/2013,31550,30822,SCOTTSDALE,AZ,5425,FAILURE +BANKS OF WISCONSIN,5/31/2013,134024,127590,KENOSHA,WI,22473,FAILURE +1st COMMERCE BANK,6/6/2013,20152,19579,NORTH LAS VEGAS,NV,5208,FAILURE +MOUNTAIN NATIONAL BANK,6/7/2013,437282,373366,SEVIERVILLE,TN,33292,FAILURE +COLUMBUS TRUST COMPANY,7/24/1948,7892,7921,NEWARK,NJ,,FAILURE +FIRST COMMUNITY BANK OF SOUTHWEST FLORIDA,8/2/2013,247315,243618,FORT MYERS,FL,24921,FAILURE +BANK OF WAUSAU,8/9/2013,43564,40663,WAUSAU,WI,13428,FAILURE +COMMUNITY SOUTH BANK,8/23/2013,386908,377672,PARSONS,TN,129719,FAILURE +SUNRISE BANK OF ARIZONA,8/23/2013,202179,196924,PHOENIX,AZ,15391,FAILURE +FIRST NATIONAL BANK,9/13/2013,3085764,2338335,EDINBURG,TX,616177,FAILURE +THE COMMUNITY'S BANK,9/13/2013,26368,25715,BRIDGEPORT,CT,9211,FAILURE +BANK OF JACKSON COUNTY,10/30/2013,24724,24591,GRACEVILLE,FL,5849,FAILURE +"TEXAS COMMUNITY BANK, NATIONAL ASSOCIATION",12/13/2013,159257,142640,THE WOODLANDS,TX,14203,FAILURE +DUPAGE NATIONAL BANK,1/17/2014,53524,51878,WEST CHICAGO,IL,1530,FAILURE +THE BANK OF UNION,1/24/2014,317172,315843,EL RENO,OK,93335,FAILURE +THE AMERICAN NATIONAL BANK OF PRYOR CREEK,11/20/1948,1774,1925,PRYOR,OK,,FAILURE +SYRINGA BANK,1/31/2014,153361,145813,BOISE,ID,3487,FAILURE +"MILLENNIUM BANK, NATIONAL ASSOCIATION",2/28/2014,130305,121704,STERLING,VA,10940,FAILURE +VANTAGE POINT BANK,2/28/2014,63453,62472,HORSHAM,PA,8956,FAILURE +ALLENDALE COUNTY BANK,4/25/2014,49498,49356,FAIRFAX,SC,22149,FAILURE +AZTECAMERICA BANK,5/16/2014,66309,65031,BERWYN,IL,21715,FAILURE +COLUMBIA SAVINGS BANK,5/23/2014,36484,29538,CINCINNATI,OH,7224,FAILURE +SLAVIE FEDERAL SAVINGS BANK,5/30/2014,140063,111142,BEL AIR,MD,10954,FAILURE +VALLEY BANK,6/20/2014,456442,359953,MOLINE,IL,47807,FAILURE +VALLEY BANK,6/20/2014,81843,66541,FORT LAUDERDALE,FL,5439,FAILURE +THE FREEDOM STATE BANK,6/27/2014,22816,20855,FREEDOM,OK,3734,FAILURE +THE FIRST STATE BANK,12/18/1948,694,609,FRANKLIN,TX,,FAILURE +EASTSIDE COMMERCIAL BANK,7/18/2014,173946,166875,CONYERS,GA,38334,FAILURE +"GREENCHOICE BANK, FSB",7/25/2014,70286,68722,CHICAGO,IL,18412,FAILURE +NBRS FINANCIAL BANK,10/17/2014,155353,151559,RISING SUN,MD,19837,FAILURE +THE NATIONAL REPUBLIC BANK OF CHICAGO,10/24/2014,843118,809638,CHICAGO,IL,54424,FAILURE +"FRONTIER BANK, FSB",11/7/2014,80736,76344,PALM DESERT,CA,2905,FAILURE +NORTHERN STAR BANK,12/19/2014,18794,18221,MANKATO,MN,3946,FAILURE +FIRST NATIONAL BANK OF CRESTVIEW,1/16/2015,73804,73199,CRESTVIEW,FL,6329,FAILURE +HIGHLAND COMMUNITY BANK,1/23/2015,54727,53453,CHICAGO,IL,4743,FAILURE +CAPITOL CITY BANK & TRUST COMPANY,2/13/2015,272311,262652,ATLANTA,GA,95942,FAILURE +DORAL BANK,2/27/2015,5898515,4097734,SAN JUAN,PR,690704,FAILURE +THE FIRST NATIONAL BANK OF DYER,2/19/1949,3157,3090,DYER,IN,,FAILURE +EDGEBROOK BANK,5/8/2015,90034,90007,CHICAGO,IL,20647,FAILURE +PREMIER BANK,7/10/2015,26760,25480,DENVER,CO,1210,FAILURE +HOMETOWN NATIONAL BANK,10/2/2015,3785,3705,LONGVIEW,WA,995,FAILURE +THE BANK OF GEORGIA,10/2/2015,286102,264234,PEACHTREE CITY,GA,27760,FAILURE +NORTH MILWAUKEE STATE BANK,3/11/2016,67115,61493,MILWAUKEE,WI,11773,FAILURE +TRUST COMPANY BANK,4/29/2016,18998,20148,MEMPHIS,TN,10372,FAILURE +FIRST CORNERSTONE BANK,5/6/2016,103307,101040,KING OF PRUSSIA,PA,10825,FAILURE +THE WOODBURY BANKING COMPANY,8/19/2016,21426,21122,WOODBURY,GA,3290,FAILURE +ALLIED BANK,9/23/2016,66336,64713,MULBERRY,AR,6213,FAILURE +HARVEST COMMUNITY BANK,1/13/2017,124223,122177,PENNSVILLE,NJ,22158,FAILURE +STOCKMENS BANK OF MARTINSDALE,4/30/1949,634,709,MARTINSDALE,MT,,FAILURE +SEAWAY BANK AND TRUST COMPANY,1/27/2017,297809,256505,CHICAGO,IL,43691,FAILURE +PROFICIO BANK,3/3/2017,68208,65042,COTTONWOOD HEIGHTS,UT,10121,FAILURE +FIRST NBC BANK,4/28/2017,3325870,3032208,NEW ORLEANS,LA,753398,FAILURE +GUARANTY BANK,5/5/2017,1031900,1002026,MILWAUKEE,WI,131962,FAILURE +FAYETTE COUNTY BANK,5/26/2017,34370,33972,SAINT ELMO,IL,8088,FAILURE +THE FARMERS AND MERCHANTS STATE BANK OF ARGONIA,10/13/2017,33012,27466,ARGONIA,KS,280,FAILURE +WASHINGTON FEDERAL BANK FOR SAVINGS,12/15/2017,166345,143964,CHICAGO,IL,75282,FAILURE +ENLOE STATE BANK,5/31/2019,36738,31254,COOPER,TX,18263,FAILURE +LOUISA COMMUNITY BANK,10/25/2019,28163,25174,LOUISA,KY,4264,FAILURE +RESOLUTE BANK,10/25/2019,23292,22885,MAUMEE,OH,1571,FAILURE +THE FIRST NATIONAL BANK & TRUST CO.,2/15/1936,,1729,ANN ARBOR,MI,,FAILURE +THE CITIZENS BANKING COMPANY,6/11/1949,740,742,WESTON,OH,,FAILURE +CITY NATIONAL BANK OF NEW JERSEY,11/1/2019,120574,111234,NEWARK,NJ,2098,FAILURE +ERICSON STATE BANK,2/14/2020,100879,95159,ERICSON,NE,23279,FAILURE +THE FIRST STATE BANK,4/3/2020,151808,143102,BARBOURSVILLE,WV,43620,FAILURE +FIRST CITY BANK OF FLORIDA,10/16/2020,136566,133936,FORT WALTON BEACH,FL,7247,FAILURE +ALMENA STATE BANK,10/23/2020,65733,64941,ALMENA,KS,15861,FAILURE +SILICON VALLEY BANK,3/10/2023,209026000,175378000,SANTA CLARA,CA,18959624,FAILURE +SIGNATURE BANK,3/12/2023,110363650,88612911,NEW YORK,NY,0,FAILURE +FIRST REPUBLIC BANK,5/1/2023,212638872,176436706,SAN FRANCISCO,CA,15753256,FAILURE +HEARTLAND TRI-STATE BANK,7/28/2023,139446,130110,ELKHART,KS,43727,FAILURE +CITIZENS BANK,11/3/2023,60448,52311,SAC CITY,IA,14596,FAILURE +FARMERS & MERCHANTS STATE BANK,10/8/1949,354,437,SPENCERVILLE,IN,,FAILURE +REPUBLIC BANK,4/26/2024,5866190,4373927,PHILADELPHIA,PA,719903,FAILURE +FIRST NB OF LINDSAY,10/18/2024,107850,97515,LINDSAY,OK,47303,FAILURE +PULASKI SAVINGS BANK,1/17/2025,49466,42741,CHICAGO,IL,30284,FAILURE +SANTA ANNA NATIONAL BANK,6/27/2025,76938,71376,SANTA ANNA,TX,23460,FAILURE +METROPOLITAN CAPITAL B&T,1/30/2026,261185,212152,CHICAGO,IL,,FAILURE +THE WESTPHALIA STATE BANK,4/3/1950,744,1126,WESTPHALIA,MI,,FAILURE +THE BANK OF AURORA,7/24/1950,1291,991,AURORA,NC,,FAILURE +THE FARMERS FIRST NATIONAL BANK OF MINOOKA,8/14/1950,1332,1403,MINOOKA,IL,,FAILURE +FIRST NATIONAL BANK IN CECIL,10/9/1950,638,2245,CECIL,PA,,FAILURE +BRAZEAU BANK,1/22/1951,144,148,BRAZEAU,MO,,FAILURE +THE PARNASSUS NATIONAL BANK,8/25/1951,2906,3260,NEW KENSINGTON,PA,,FAILURE +THOMASVILLE BANK AND TRUST CO.,1/21/1952,1031,1757,THOMASVILLE,AL,,FAILURE +CAMDEN STATE BANK,5/5/1952,838,817,CAMDEN,IL,,FAILURE +MERCHANTS AND FARMERS BANK,2/17/1936,213,142,STARKVILLE,MS,,FAILURE +BANK OF DIERKS,9/2/1952,520,583,DIERKS,AR,,FAILURE +MAYFIELD STATE BANK,2/13/1953,1355,1305,MAYFIELD,PA,,FAILURE +FIRST STATE BANK OF ELMWOOD PARK,5/26/1953,17456,16957,ELMWOOD PARK,IL,,FAILURE +BANK OF ILA,8/9/1954,98,60,ILA,GA,,FAILURE +BANK OF WHITESVILLE,10/1/1954,1040,930,WHITESVILLE,KY,,FAILURE +FIRST NATIONAL BANK OF LEWISVILLE,1/27/1955,721,892,LEWISVILLE,TX,,FAILURE +RATHDRUM STATE BANK,4/30/1955,1017,909,RATHDRUM,ID,,FAILURE +BANK OF NORTH IDAHO,4/30/1955,1101,983,PRIEST RIVER,ID,,FAILURE +JOSHUA MONUMENT NAT BANK-TWENTYNINE PALMS,7/25/1955,3111,3714,TWENTYNINE PALMS,CA,,FAILURE +FRONTIER TRUST COMPANY,10/3/1955,6036,5465,FORT FAIRFIELD,ME,,FAILURE +COLUMBIA STATE BANK,2/18/1936,906,775,COLUMBIA CITY,IN,,FAILURE +RIVER OAKS STATE BANK,10/15/1956,5202,4703,FORTH WORTH,TX,,FAILURE +THE HOME NATIONAL OF ELLENVILLE,12/4/1956,7712,6578,ELLENVILLE,NY,,FAILURE +FIRST STATE BANK OF YORKTOWN,4/10/1957,1253,1163,YORKTOWN,TX,,FAILURE +THE FIRST NATIONAL BANK OF HALFWAY,3/17/1958,1446,1368,HALFWAY,OR,,FAILURE +PEOPLES STATE BANK,5/5/1958,618,574,RICHLAND SPRINGS,TX,,FAILURE +THE RUSHVILLE BANKING COMPANY,5/26/1958,4476,4084,RUSHVILLE,OH,,FAILURE +THE MANUFACTURERS' BANK OF EDGEWATER,7/17/1958,2365,2213,EDGEWATER,NJ,,FAILURE +THE BARTLETT STATE BANK,5/13/1959,570,504,BARTLETT,NE,,FAILURE +LIBERAL STATE BANK,6/9/1959,1012,925,LIBERAL,MO,,FAILURE +FIRST STATE BANK,12/3/1959,1277,1110,TENAHA,TX,,FAILURE +THE BANK OF HIGH HILL,2/20/1936,106,93,HIGH HILL,MO,,FAILURE +THE CAPITOL HILL STATE BANK,7/29/1960,7506,6955,OKLAHOMA CITY,OK,,FAILURE +THE SHELDON NATIONAL BANK,1/16/1961,4365,3884,SHELDON,IA,,FAILURE +BANK OF EARLSBORO,8/11/1961,962,902,EARLSBORO,OK,,FAILURE +BANK OF OCHLOCHNEE,9/7/1961,984,872,OCHLOCHNEE,GA,,FAILURE +THE FIRST NATIONAL BANK OF MAUD,12/19/1961,1626,1509,MAUD,OK,,FAILURE +FIRST STATE BANK,12/30/1961,1882,1652,PREMONT,TX,,FAILURE +THE FIRST NATIONAL BANK OF EXETER,2/19/1962,,3011,EXETER,PA,,FAILURE +THE FIRST BANK OF WESTMONT,5/24/1963,7055,6659,WESTMONT,IL,,FAILURE +CHATHAM BANK OF CHICAGO,8/23/1963,19124,16782,CHICAGO,IL,,FAILURE +THE FIRST NATIONAL BANK OF MARLIN,3/10/1964,3741,3459,MARLIN,TX,,FAILURE +FARMERS BANK OF LEONARD,2/27/1936,69,51,LEONARD,MO,,FAILURE +THE STATE SAVINGS BANK OF MINDEN CITY,3/17/1964,1310,1233,MINDEN CITY,MI,,FAILURE +FIRST STATE BANK,7/4/1964,1237,1082,DELL CITY,TX,,FAILURE +BELLEVIEW VALLEY BANK,7/20/1964,1285,1189,BELLEVIEW,MO,,FAILURE +FRONTIER BANK,7/31/1964,2642,2312,COVELO,CA,,FAILURE +CROWN SAVINGS BANK,9/4/1964,7865,7023,NEWPORT NEWS,VA,,FAILURE +"NEBRASKA ST BANK OF VALENTINE, NEBRASKA",10/29/1964,7769,7025,VALENTINE,NE,,FAILURE +THE BRIGHTON NATIONAL BANK,1/22/1965,3015,2254,BRIGHTON,CO,,FAILURE +SAN FRANCISCO NATIONAL BANK,1/22/1965,54061,40176,SAN FRANCISCO,CA,,FAILURE +WINONA STATE BANK,2/5/1965,479,435,WINONA,TX,,FAILURE +MALONE STATE BANK,2/25/1965,589,524,MALONE,TX,,FAILURE +FARMERS & MERCHANTS BANK,2/1/1936,14,5,ADAMS,TN,,FAILURE +FIRST STATE BANK,4/5/1965,606,488,COVINGTON,TX,,FAILURE +FIVE POINTS NATIONAL BANK,1/12/1966,2703,2967,MIAMI,FL,,FAILURE +CITIZENS BANK,1/24/1966,832,774,POTTSVILLE,AR,,FAILURE +BLANKET STATE BANK,1/31/1966,1257,1183,BLANKET,TX,,FAILURE +SAGUACHE COUNTY NATIONAL BANK,3/17/1966,512,725,SAGUACHE,CO,,FAILURE +BANK OF GRAY SUMMIT,4/7/1966,1935,1832,GRAY SUMMIT,MO,,FAILURE +PUBLIC BANK,10/12/1966,110077,92960,DETROIT,MI,,FAILURE +FIRST STATE BANK OF TUSCOLA,10/17/1966,3330,3081,TUSCOLA,TX,,FAILURE +BANK OF PINE APPLE,1/31/1967,4289,3885,PINE APPLE,AL,,FAILURE +SOUTHERN BANK OF ST. PETERSBURG,2/17/1967,2884,2451,ST. PETERSBURG,FL,,FAILURE +PEOPLES BANK,3/2/1936,93,75,FRANKLINTON,KY,,FAILURE +SACUL STATE BANK,6/23/1967,762,724,SACUL,TX,,FAILURE +THE CEDAR VALE NATIONAL BANK,7/7/1967,4058,3818,CEDAR VALE,KS,,FAILURE +LORENZO STATE BANK,2/13/1968,6159,5612,LORENZO,TX,,FAILURE +CENTRAL NATIONAL BANK OF JACKSONVILLE,5/27/1968,13445,11757,JACKSONVILLE,FL,,FAILURE +BANK OF COMMERCE,9/25/1968,5551,5155,TONKAWA,OK,,FAILURE +THE ROCKY MOUNTAIN BANK,2/6/1969,8617,8065,LAKEWOOD,CO,,FAILURE +CITIZENS STATE BANK,4/12/1969,2556,2320,ALVARADO,TX,,FAILURE +THE MORRICE STATE BANK,5/6/1969,2283,2167,MORRICE,MI,,FAILURE +THE FIRST STATE BANK,5/12/1969,1134,1085,DODSON,TX,,FAILURE +THE STATE NATIONAL BANK,5/28/1969,4136,3802,LOVELADY,TX,,FAILURE +FARMERS AND MERCHANTS BANK OF LINN,3/5/1936,228,198,LINN,MO,,FAILURE +FIRST NATIONAL BANK OF URSA,8/20/1969,2053,1798,URSA,IL,,FAILURE +THE BIG LAKE STATE BANK,8/22/1969,4750,4427,BIG LAKE,TX,,FAILURE +THE FIRST STATE BANK,9/5/1969,11417,10472,ARANSAS PASS,TX,,FAILURE +THE FIRST NATIONAL BANK OF COALVILLE,10/10/1969,6625,5992,COALVILLE,UT,,FAILURE +BEREA BANK AND TRUST COMPANY,10/8/1970,5871,5375,BEREA,KY,,FAILURE +FIRST STATE BANK OF BONNE TERRE,8/24/1970,8003,7118,BONNE TERRE,MO,,FAILURE +FARMERS BANK OF PETERSBURG,6/25/1970,1074,1259,PETERSBURG,KY,,FAILURE +STATE BANK OF PRAIRIE CITY,2/22/1970,4130,3897,PRAIRIE CITY,IA,,FAILURE +THE PEOPLES STATE SAVINGS BANK,4/18/1970,10877,9940,AUBURN,MI,,FAILURE +EATONTOWN NATIONAL BANK,8/7/1970,21417,15912,EATONTOWN,NJ,,FAILURE +BENJAMIN STATE BANK,3/18/1936,254,181,BENJAMIN,TX,,FAILURE +CITY BANK OF PHILADELPHIA,9/3/1970,10775,8839,PHILADELPHIA,PA,,FAILURE +UNITY BANK & TRUST COMPANY,7/27/1971,,9300,BOSTON (ROXBURY),MA,,ASSISTANCE +FIRST COMMUNITY STATE BANK OF SAVANNAH,12/30/1971,3701,3488,SAVANNAH,MO,,FAILURE +THE FIRST NATIONAL BANK OF CRIPPLE CREEK,11/30/1971,1301,1201,CRIPPLE CREEK,CO,,FAILURE +BANK OF SALEM,4/5/1971,679,606,SALEM,NE,,FAILURE +FARMERS STATE BANK OF CARLOCK,2/17/1971,2196,2077,CARLOCK,IL,,FAILURE +SHARPSTOWN STATE BANK,1/25/1971,78903,66763,HOUSTON,TX,,FAILURE +BIRMINGHAM-BLOOMFIELD BANK,2/16/1971,109739,57547,BIRMINGHAM,MI,,FAILURE +BANK OF THE COMMONWEALTH,1/18/1972,1300000,,DETROIT,MI,,ASSISTANCE +SURETY BANK AND TRUST COMPANY,5/27/1972,22054,20385,WAKEFIELD,MA,,FAILURE +BANK OF LEWISPORT,8/6/1934,81,68,LEWISPORT,KY,,FAILURE +FARMERS STATE BANK,3/18/1936,56,59,AMHERST,SD,,FAILURE +UNITED STATES NATIONAL BANK,10/18/1973,1265868,931954,SAN DIEGO,CA,,FAILURE +FIRST NATIONAL BANK OF ELDORA,10/5/1973,8072,7540,ELDORA,IA,,FAILURE +THE FIRST STATE BANK,7/16/1973,16242,14797,VERNON,TX,,FAILURE +ELM CREEK STATE BANK,5/7/1973,3186,2915,ELM CREEK,NE,,FAILURE +DELTA SECURITY BANK AND TRUST COMPANY,1/19/1973,9780,8079,FERRIDAY,LA,,FAILURE +SKYLINE NATIONAL BANK,3/26/1973,6527,6006,DENVER,CO,,FAILURE +FRANKLIN NATIONAL BANK,10/8/1974,3655662,1444982,NEW YORK,NY,,FAILURE +AMERICAN BANK & TRUST,9/20/1974,147137,112703,ORANGEBURG,SC,,FAILURE +CROMWELL STATE SAVINGS BANK,10/9/1974,3502,3271,CROMWELL,IA,,FAILURE +TRI-CITY BANK,9/27/1974,16295,14876,WARREN,MI,,FAILURE +CITIZENS BANK OF BOSWORTH,3/18/1936,,80,BOSWORTH,MO,,FAILURE +STATE BANK OF CLEARING,7/12/1975,74354,60603,CHICAGO,IL,,FAILURE +"AMERICAN CITY BANK & TRUST COMPANY, N.A.",10/21/1975,147563,98344,MILWAUKEE,WI,,FAILURE +BANK OF PICAYUNE,6/18/1975,18049,15352,PICAYUNE,MS,,FAILURE +BANK OF CHIDESTER,7/1/1975,2449,2298,CHIDESTER,AR,,FAILURE +ALGOMA BANK,5/30/1975,5176,4772,ALGOMA,WI,,FAILURE +THE FIRST STATE BANK OF JENNINGS,12/27/1975,2898,2613,JENNINGS,KS,,FAILURE +FRANKLIN BANK,3/24/1975,20690,18247,HOUSTON,TX,,FAILURE +CHICOPEE BANK & TRUST COMPANY,5/9/1975,11406,9862,CHICOPEE,MA,,FAILURE +THE PEOPLES BANK,12/19/1975,5657,5044,WILCOX,AZ,,FAILURE +SWOPE PARKWAY NATIONAL BANK,1/3/1975,7576,7422,KANSAS CITY,MO,,FAILURE +THE FARMERS STATE BANK,3/24/1936,,71,RILEY,KS,,FAILURE +THE PEOPLES BANK OF THE VIRGIN ISLANDS,10/24/1975,14879,14256,CHARLOTTE AMALIE,VI,,FAILURE +NORTHERN OHIO BANK,2/19/1975,103782,95616,CLEVELAND,OH,,FAILURE +ASTRO BANK,10/16/1975,5471,5168,HOUSTON,TX,,FAILURE +FARMERS BANK OF THE STATE OF DELAWARE,3/15/1976,,370000,WILMINGTON,DE,,ASSISTANCE +FIRST STATE BANK & TRUST CO.,11/19/1976,13754,12082,RIO GRANDE CITY,TX,,FAILURE +AMERICAN BANK & TRUST COMPANY,9/15/1976,224502,165079,NEW YORK,NY,,FAILURE +THE HAMILTON NATIONAL BANK OF CHATTANOOGA,2/16/1976,412107,336292,CHATTANOOGA,TN,,FAILURE +MT. ZION DEPOSIT BANK,6/25/1976,507,555,MT. ZION,KY,,FAILURE +CENTENNIAL BANK,10/19/1976,13670,12312,PHILADELPHIA,PA,,FAILURE +THE HAMILTON BANK AND TRUST COMPANY,10/8/1976,40075,32022,ATLANTA,GA,,FAILURE +DONELSON BANK & TRUST CO.,3/25/1936,,131,DONELSON,TN,,FAILURE +CITIZENS STATE BANK,6/28/1976,17410,15943,CARRIZO SPRINGS,TX,,FAILURE +NORTHEAST BANK OF HOUSTON,6/3/1976,18141,17452,HOUSTON,TX,,FAILURE +FIRST STATE BANK OF NORTHERN CALIFORNIA,5/21/1976,56018,53405,SAN LEANDRO,CA,,FAILURE +THE BANK OF BLOOMFIELD,1/10/1976,31652,25969,BLOOMFIELD,NJ,,FAILURE +INTERNATIONAL CITY BANK AND TRUST COMPANY,12/3/1976,176320,161639,NEW ORLEANS,LA,,FAILURE +FIRST STATE BANK OF HUDSON COUNTY,6/14/1976,14072,13790,JERSEY CITY,NJ,,FAILURE +THE NEW BOSTON BANK AND TRUST COMPANY,9/14/1976,6662,5335,BOSTON,MA,,FAILURE +SOUTH TEXAS BANK,2/25/1976,7756,7074,HOUSTON,TX,,FAILURE +BANK OF WOODMOOR,1/12/1976,4033,3549,WOODMOOR,CO,,FAILURE +CORONADO NATIONAL BANK,6/25/1976,2613,2610,DENVER,CO,,FAILURE +CLIFTON STATE BANK,3/27/1936,30,22,CLIFTON,TN,,FAILURE +FIRST STATE BANK,3/10/1977,2044,1763,FOSS,OK,,FAILURE +DONAHUE SAVINGS BANK,8/26/1977,5509,5094,DONAHUE,IA,,FAILURE +BANCO ECONOMIAS,9/2/1977,190254,169999,SAN GERMAN,PR,,ASSISTANCE +FIRST AUGUSTA BANK & TRUST COMPANY,5/20/1977,24223,20017,AUGUSTA,GA,,FAILURE +THE MONROE BANK AND TRUST COMPANY,3/28/1977,4315,2791,MONROE,CT,,FAILURE +REPUBLIC NATIONAL BANK OF LOUISIANA,7/29/1977,6267,4912,NEW ORLEANS,LA,,FAILURE +WATKINS BANKING COMPANY,7/21/1978,1660,1282,FAUNSDALE,AL,,FAILURE +WILCOX COUNTY BANK,3/1/1978,12652,10585,CAMDEN,AL,,FAILURE +FIRST BANK OF MACON COUNTY,1/26/1978,4538,3825,NOTASULGA,AL,,FAILURE +THE DROVERS' NATIONAL BANK OF CHICAGO,1/19/1978,226826,197166,CHICAGO,IL,,FAILURE +THE EARL PARK STATE BANK,3/28/1936,181,134,EARL PARK,IN,,FAILURE +BANCO CREDITO Y DE AHORRO PONCENO,3/31/1978,712540,607611,PONCE,PR,,FAILURE +BANCO DE AHORRO DE PUERTO RICO,9/5/1978,9352,11831,SAN JUAN,PR,,FAILURE +NORTH POINT STATE BANK,12/16/1978,26466,21850,ARLINGTON,IL,,FAILURE +FIDELITY BANK,9/28/1979,32818,30223,UTICA,MS,,FAILURE +BANK OF ENVILLE,6/16/1979,3468,3139,ENVILLE,TN,,FAILURE +TONEY BROTHERS BANK,1/5/1979,5869,5791,DOERUN,GA,,FAILURE +THE GUARANTY BANK & TRUST COMPANY,7/14/1979,7876,7416,CHICAGO,IL,,FAILURE +THE FARMERS STATE BANK,9/21/1979,5038,4686,PROTECTION,KS,,FAILURE +GATEWAY NATIONAL BANK,7/14/1979,16933,9230,CHICAGO,IL,,FAILURE +AMERICAN NATIONAL BANK,10/12/1979,10659,10353,HOUSTON,TX,,FAILURE +LELAND COOPERATIVE BANK,3/31/1936,150,155,LELAND,IA,,FAILURE +LIVINGSTON STATE BANK,10/12/1979,12681,11021,LIVINGSTON,NJ,,FAILURE +SOUTHERN NATIONAL BANK,6/14/1979,32586,24032,BIRMINGHAM,AL,,FAILURE +VILLAGE BANK,1/26/1979,5059,4862,PUEBLO WEST,CO,,FAILURE +BANK OF LAKE HELEN,1/11/1980,3027,4334,LAKE HELEN,FL,88,FAILURE +FIRST S&LA,2/1/1980,33185,26066,HONOLULU,HI,127,ASSISTANCE +FIRST NATIONAL BK OF CARRINGTON,2/12/1980,12444,11184,CARRINGTON,ND,221,FAILURE +MOHAWK BK & TR CO.,2/16/1980,5908,5375,GREENFIELD,MA,221,FAILURE +WASHINGTON FS&LA,3/1/1980,376399,176547,UNIVERSITY HEIGHTS,OH,,ASSISTANCE +"FIRST PENNSYLVANIA BK, N.A.",4/28/1980,7953042,5001755,PHILADELPHIA,PA,0,ASSISTANCE +CARLSBAD S&LA,5/1/1980,26690,20098,CARLSBAD,NM,1518,ASSISTANCE +BANK OF HOLCOMB,3/31/1936,23,11,HOLCOMB,MS,,FAILURE +TELEGRAPH S&LA,5/1/1980,264460,218111,CHICAGO,IL,,ASSISTANCE +CONTINENTAL S&LA,5/1/1980,74926,58495,GLOUCESTER CITY,NJ,,ASSISTANCE +THE CITIZENS STATE BANK,6/4/1980,1980,1722,VIOLA,KS,7,FAILURE +FIRST CALUMET CITY SAVINGS,6/4/1980,102053,82447,BERWYN,IL,14611,ASSISTANCE +CITY & COUNTY BK OF CAMPBELL CTY,6/28/1980,39804,36031,JELLICO,TN,8105,FAILURE +MAYFLOWER FS&LA,7/1/1980,24009,15768,PROVIDENCE,RI,1864,ASSISTANCE +UNIVERSITY FS&LA,8/1/1980,235418,175698,CORAL GABLES,FL,1161,ASSISTANCE +THE MISSION STATE BK & TR CO.,8/8/1980,86436,79646,MISSION,KS,14992,FAILURE +SECURITY S&LA,9/1/1980,54603,44272,MARION,IA,2000,ASSISTANCE +"THE METRO BK OF HUNTINGTON, INC.",9/12/1980,26969,23949,HUNTINGTON,WV,2348,FAILURE +CROSS PLAINS BANK,4/10/1936,50,32,CROSS PLAINS,TN,,FAILURE +THE ROCHELLE BK & TR CO.,10/11/1980,8430,7567,ROCHELLE,IL,778,FAILURE +FIRST OF NILES FS&LA,10/14/1980,131814,120261,NILES,MI,13270,ASSISTANCE +SIOUX CITY FS&LA,11/1/1980,25351,18115,SIOUX CITY,IA,,ASSISTANCE +CITIZENS STATE BK OF GALENA,11/21/1980,10338,9402,GALENA,KS,974,FAILURE +EAST GADSDEN BANK,12/31/1980,43980,40680,GADSDEN,AL,957,FAILURE +HOME SA,1/18/1981,686365,492649,MINNEAPOLIS,MN,73650,ASSISTANCE +FRANKLIN SA,2/9/1981,97566,71948,CHICAGO,IL,1564,ASSISTANCE +SECURITY OF STATESVILLE,2/9/1981,15689,12988,STATESVILLE,NC,,ASSISTANCE +THE DES PLAINES BANK,3/14/1981,46503,42927,DES PLAINES,IL,1138,FAILURE +SOUTH SIDE BANK,3/14/1981,27505,25983,CHICAGO,IL,3515,FAILURE +HARDIN BANK,4/18/1936,72,53,HARDIN,KY,,FAILURE +PEOPLES BANKING COMPANY,3/17/1981,8391,8103,BOSTON,GA,435,FAILURE +GUARDIAN FSB,4/30/1981,125905,89142,NORTHPORT,NY,31378,ASSISTANCE +ARCTIC FS&LA,5/9/1981,40512,34783,FAIRBANKS,AK,3750,ASSISTANCE +ECONOMY S&LA,5/18/1981,73870,58375,CHICAGO,IL,21974,FAILURE +NY & SUBURBAN FS&LA,5/31/1981,547636,355632,NEW YORK,NY,145783,ASSISTANCE +FINANCIAL SECURITY S&LA,6/1/1981,63802,50126,ELK GROVE VILLAGE,IL,15708,ASSISTANCE +NORTHWEST COMMERCE BANK,6/19/1981,6737,5193,NORTH BEND,OR,1017,FAILURE +COMMUNITY FS&LA,6/21/1981,22872,21140,WASHINGTON,DC,2513,ASSISTANCE +FIRST FS&LA OF NEW BERN,7/1/1981,57378,46803,NEW BERN,NC,3642,ASSISTANCE +FIRST FINANCIAL FS&LA,7/10/1981,5925,4844,BELLAIRE,TX,1811,ASSISTANCE +FARMERS STATE BANK OF BONGARDS,9/13/1934,91,73,BONGARDS,MN,,FAILURE +FARMERS & MERCHANTS BANK,4/21/1936,128,89,REVILLO,SD,,FAILURE +COUNTY FS&LA,8/9/1981,144051,95084,ROCKVILLE,MD,25785,ASSISTANCE +WEST SIDE FS&LA,9/8/1981,2496182,1959661,NEW YORK,NY,315500,ASSISTANCE +FIRST FS&LA OF ROCHESTER,9/8/1981,1195291,989186,ROCHESTER,NY,,FAILURE +FRANKLIN SOCIETY FS&LA,9/8/1981,947357,703911,NEW YORK,NY,200000,ASSISTANCE +WASHINGTON FS&LA,9/8/1981,1201562,913543,MIAMI BEACH,FL,147223,ASSISTANCE +PERPETUAL S&LA,9/15/1981,49718,39174,RAPID CITY,SD,9397,ASSISTANCE +SOUTHWESTERN BANK,9/25/1981,5308,5006,TUCSON,AZ,0,FAILURE +LAFAYETTE FS&LA,10/2/1981,416460,253734,WARSON WOODS,MO,799330,ASSISTANCE +RESERVE S&LA,10/7/1981,129782,99976,ELMHURST,IL,,ASSISTANCE +HIGH LAKES COMMUNITY BANK,10/23/1981,3706,3004,LA PINE,OR,1185,FAILURE +NORBORNE TRUST COMPANY,4/22/1936,,121,NORBORNE,MO,,FAILURE +MIDTOWN NATIONAL BANK,10/30/1981,10599,9938,PUEBLO,CO,1698,FAILURE +GREENWICH SAVINGS BANK,11/4/1981,2475384,1953922,NEW YORK,NY,678374,ASSISTANCE +FIRST FS&LA OF BROWARD COUNTY,11/19/1981,2552308,1934504,FT. LAUDERDALE,FL,-253,ASSISTANCE +FIRST FS&LA OF PUERTO RICO,11/20/1981,,,SANTURCE,PR,,ASSISTANCE +"PAN AMERICAN, FS&LA",11/20/1981,43915,31610,RIO PIEDRAS,PR,,ASSISTANCE +EMPIRE STATE FS&LA,11/30/1981,291326,217217,WHITE PLAINS,NY,9992,ASSISTANCE +GUARANTY FS&LA,11/30/1981,33451,29033,BATON ROUGE,LA,49,ASSISTANCE +CENTRAL SAVINGS BANK,12/4/1981,910243,698912,NEW YORK,NY,32912,ASSISTANCE +PALOS S&LA,12/5/1981,97999,81023,PALOS HEIGHTS,IL,,ASSISTANCE +MOHAWK S&LA,12/9/1981,91082,76252,NEWARK,NJ,4711,ASSISTANCE +GUARANTY BOND STATE BANK,4/23/1936,202,103,MILES,TX,,FAILURE +BOCA RATON FS&LA,12/9/1981,275848,236162,BOCA RATON,FL,8803,ASSISTANCE +HAMILTONIAN FS&LA,12/17/1981,239540,198866,LADUE,MO,1778,ASSISTANCE +SECURITY FS&LA OF SIKESTON,12/17/1981,84464,67070,SIKESTON,MO,795,ASSISTANCE +SOUTHERN FS&LA OF BROWARD COUNTY,12/17/1981,615444,495688,POMPANO BEACH,FL,5226,ASSISTANCE +UNION DIME SAVINGS BANK,12/18/1981,1452985,1261434,NEW YORK,NY,61503,ASSISTANCE +THE WESTERN NEW YORK SAVINGS BK,1/15/1982,1027986,874606,BUFFALO,NY,30233,ASSISTANCE +REPUBLIC OF TEXAS SA,1/15/1982,257629,188342,HOUSTON,TX,63718,ASSISTANCE +ROYAL FS&LA,1/15/1982,167603,66144,DALLAS,TX,26465,ASSISTANCE +HYDE PARK FS&LA,1/15/1982,308499,170913,CHICAGO,IL,66712,ASSISTANCE +BUFFALO S&LA,1/15/1982,155345,123664,HOUSTON,TX,25286,ASSISTANCE +GROWERS EXCHANGE BANK,5/9/1936,53,43,ST. JOSEPH,MO,,FAILURE +CIVIC S&LA,1/15/1982,36758,12856,IRVING,TX,7102,ASSISTANCE +EL CENTRO FS&LA,1/15/1982,11162,7921,DALLAS,TX,2314,ASSISTANCE +FIRST S&LA OF NEW BRUNSWICK,1/25/1982,405823,265836,NEW BRUNSWICK,NJ,9537,ASSISTANCE +INGLEWOOD FS&LA,2/1/1982,7667,6776,INGLEWOOD,CA,2077,ASSISTANCE +GUARANTY FS&LA,2/5/1982,34847,30979,ADEL,GA,,ASSISTANCE +CENTRAL ILLINOIS B&HA,2/5/1982,29288,27076,CLINTON,IL,4275,ASSISTANCE +PEACH STATE FS&LA,2/5/1982,115922,84229,BREMEN,GA,,ASSISTANCE +FIRST FS&LA OF SYLVANIA,2/5/1982,17534,16014,SYLVANIA,GA,,ASSISTANCE +UNITED FS&LA OF BROWARD COUNTY,2/5/1982,672428,573666,FORT LAUDERDALE,FL,,ASSISTANCE +THE FIRST NATIONAL BANK AND TRUST COMPANY,2/6/1982,22138,17067,TUSCOLA,IL,2739,FAILURE +FORD CITY STATE BANK,5/13/1936,62,50,FORD CITY,MO,,FAILURE +METROPOLITAN BK & TR COMPANY,2/12/1982,267410,210173,TAMPA,FL,0,FAILURE +BANK OF YORKVILLE,2/20/1982,7097,6387,YORKVILLE,TN,1441,FAILURE +FARMERS & MECHANICS SAVINGS BANK OF MINNEA,2/20/1982,1010324,842021,MINNEAPOLIS,MN,52420,ASSISTANCE +"NORTH WEST, FS&LA",2/20/1982,1280548,1137397,CHICAGO,IL,90383,ASSISTANCE +"TALMAN HOME, FS&LA",2/20/1982,3402878,2661600,CHICAGO,IL,255420,FAILURE +"ALLIANCE, S&LA",2/20/1982,280663,231668,CHICAGO,IL,27420,ASSISTANCE +"UNITY, SA",2/20/1982,987429,738799,NORRIDGE,IL,79895,ASSISTANCE +THE BANK OF WOODSON,3/1/1982,3908,3500,WOODSON,TX,271,FAILURE +MORGAN PARK S&LA,3/8/1982,2308,2153,CHICAGO,IL,292,ASSISTANCE +NINTH FEDERAL SAVINGS,3/9/1982,477525,241494,NEW YORK,NY,,ASSISTANCE +FARMERS BANK OF NEW TRUXTON,5/14/1936,71,53,NEW TRUXTON,MO,,FAILURE +KNICKERBOCKER FS&LA,3/9/1982,528825,347767,NEW YORK,NY,,ASSISTANCE +"UNITED STATES BK OF NEWARK, N.J.",3/11/1982,688491,576360,NEWARK,NJ,77340,ASSISTANCE +FIDELITY MUTUAL SAVINGS BANK,3/11/1982,695542,568965,SPOKANE,WA,44474,ASSISTANCE +HARTFORD FS&LA,3/15/1982,377728,352657,HARTFORD,CT,,ASSISTANCE +THE NEW YORK BK FOR SAVINGS,3/26/1982,3503545,2900493,NEW YORK,NY,751362,ASSISTANCE +FIDELITY S&LA,4/1/1982,2909485,1408007,SAN FRANCISCO,CA,10213,ASSISTANCE +THE FIRST NATIONAL BK IN HUMBOLD,4/2/1982,55412,47398,HUMBOLDT,IA,0,FAILURE +THE WESTERN SAVING FUND SOCIETY OF PHILADE,4/2/1982,2126384,1966280,PHILADELPHIA,PA,29256,ASSISTANCE +AQUIA BK & TR COMPANY,4/3/1982,14009,12228,STAFFORD,VA,3544,FAILURE +FIRST FS&LA OF CHICAGO,4/3/1982,3534834,2839538,GALENA,IL,634559,ASSISTANCE +WEST MONROE STATE BANK,5/23/1936,520,410,WEST MONROE,LA,,FAILURE +"FIRST FINANCIAL, S&LA",4/3/1982,633927,398164,DOWNER'S GROVE,IL,,ASSISTANCE +SUFFOLK COUNTY FS&LA,4/15/1982,1113263,950155,CENTEREACH,NY,24982,ASSISTANCE +COUNTY FS&LA,4/15/1982,1409395,980664,ROCKVILLE CENTRE,NY,36754,ASSISTANCE +NATIONAL SECURITY BANK,4/16/1982,8530,8018,TYLER,TX,575,FAILURE +PACIFIC COAST BANK,4/29/1982,9758,8684,SAN DIEGO,CA,4928,FAILURE +CARROLL COUNTY BANK,4/30/1982,8739,8292,HUNTINGTON,TN,2095,FAILURE +COLES COUNTY NATIONAL BANK OF CHARLESTON,5/1/1982,26807,24200,CHARLESTON,IL,2241,FAILURE +COMMUNITY BK OF WASHTENAW,5/15/1982,19915,18218,YPSILANTAI,MI,243,FAILURE +UNITED FS&LA,5/31/1982,172401,132185,BALTIMORE,MD,,ASSISTANCE +MONTEBELLO FS&LA,6/1/1982,36285,34378,MONTEBELLO,CA,,ASSISTANCE +KOSHKONONG STATE BANK,5/23/1936,,48,KOSHKONONG,MO,,FAILURE +FIDELITY FS&LA,6/10/1982,62996,58767,VALLEY CITY,ND,,ASSISTANCE +BANCO REGIONAL,6/12/1982,21440,17922,BAYAMON,PR,320,FAILURE +CITIZENS BANK,6/23/1982,6316,5582,TILLAR,AR,433,FAILURE +FARMERS STATE BK OF LEWISTON,6/25/1982,30852,28104,LEWISTON,IL,8167,FAILURE +THE BELLE-BLAND BANK,7/2/1982,4251,3902,BLAND,MO,1024,FAILURE +"PENN SQUARE BANK, N.A.",7/5/1982,436484,390029,OKLAHOMA CITY,OK,64970,FAILURE +TRI-LAKES FS&LA,7/15/1982,13904,12777,BRANSON,MO,700,ASSISTANCE +FIRST FS&LA OF PITTSTON,7/16/1982,45771,43346,PITTSTON,PA,7092,ASSISTANCE +GUARANTY BOND STATE BANK,7/27/1982,14070,12407,REDWATER,TX,3417,FAILURE +THE BOWIE COUNTY STATE BANK,7/27/1982,14413,13408,HOOKS,TX,2161,FAILURE +HOLTON STATE BANK,5/28/1936,204,171,HOLTON,IN,,FAILURE +UNITY BK & TR COMPANY,7/30/1982,12759,11467,BOSTON,MA,2842,FAILURE +HARRIS COUNTY FS&LA,7/30/1982,181692,157791,BAYTOWN,TX,537,ASSISTANCE +FIRST OF MID FLORIDA,7/30/1982,549298,486774,DELAND,FL,1829,ASSISTANCE +AMERICAN FS&LA,7/30/1982,841713,475756,SOUTHFIELD,MI,3135,ASSISTANCE +UNITED FS&LA OF PUERTO RICO,7/30/1982,286852,215880,SAN JUAN,PR,,ASSISTANCE +FIRST FS&LA OF BURLINGTON CTY,7/31/1982,135168,104801,CINNAMONSON,NJ,3990,ASSISTANCE +PRINCETON S&LA,7/31/1982,249639,197229,PRINCETON,NJ,,ASSISTANCE +ALLIED FS&LA,7/31/1982,18308,17045,JAMAICA,NY,1986,ASSISTANCE +MUTUAL S&LA OF EL PASO,8/2/1982,174737,151735,EL PASO,TX,,ASSISTANCE +RIVER EDGE S&LA,8/2/1982,61729,47488,RIVER EDGE,NJ,4635,ASSISTANCE +COMMUNITY BANK,6/5/1936,75,50,SMITHTON,MO,,FAILURE +GUARDIAN FS&LA,8/2/1982,184443,108946,SILVER SPRING,MD,10000,ASSISTANCE +MOUNT PLEASANT BK & TR COMPANY,8/6/1982,29367,26214,MOUNT PLEASANT,IA,0,FAILURE +ABILENE NATIONAL BANK,8/6/1982,437282,427572,ABILENE,TX,0,ASSISTANCE +FIRST FS&LA OF SUFFOLK,8/6/1982,102727,81623,SUFFOLK,VA,18736,ASSISTANCE +FIRST SECURITY BANK OF NORTH ARKANSAS,8/27/1982,14148,12728,HORSESHOE,AR,2631,FAILURE +SECURITY BK & TR COMPANY,8/27/1982,12021,11169,CAIRO,IL,2484,FAILURE +WESTERN NATIONAL BANK,8/27/1982,25590,21892,SANTA ANA,CA,4178,FAILURE +CORONADO S&LA,8/27/1982,34353,24952,ALBUQUERQUE,NM,1353,ASSISTANCE +FIRST FS&LA,9/1/1982,445969,401663,PEORIA,IL,,ASSISTANCE +UNION OF COOK COUNTY,9/1/1982,107002,94471,MATTESON,IL,,ASSISTANCE +FARMERS & TRADERS BANK,10/11/1934,46,32,PORTERFIELD,WI,,FAILURE +THE CHRISTIAN COUNTY BANK,6/5/1936,339,297,OZARK,MO,,FAILURE +HAVRE FS&LA,9/1/1982,73255,65836,HAVRE,MT,5007,ASSISTANCE +HOHENWALD NATIONAL BANK,9/3/1982,27053,24334,HOHENWALD,TN,981,FAILURE +INVESTORS S&LA,9/10/1982,48056,39809,FAIRVIEW HEIGHTS,IL,949,ASSISTANCE +UNION FS&LA OF NEW YORK,9/10/1982,151850,122593,NEW YORK,NY,8798,ASSISTANCE +VANDALIA CITIZENS S&LA,9/10/1982,13653,13064,VANDALIA,IL,899,ASSISTANCE +FIRST FS&LA OF NEW YORK,9/20/1982,658856,462566,NEW YORK CITY,NY,,ASSISTANCE +FIRST FS&LA OF SIOUX FALLS,9/20/1982,78232,74332,SIOUX FALLS,SD,2894,ASSISTANCE +FIRST DAKOTA HOME S&LA,9/20/1982,27834,25595,PIERRE,SD,1106,ASSISTANCE +FIRST FS&LA OF ACADIA,9/20/1982,11252,11025,RAYNE,LA,421,ASSISTANCE +REPUBLIC FS&LA,9/20/1982,19347,17029,LAFAYETTE,LA,249,ASSISTANCE +THE PEOPLES STATE BANK OF FLAT ROCK,6/17/1936,,61,FLAT ROCK,IL,,FAILURE +FIRST FS&LA,9/21/1982,11696,11392,SPRINGHILL,LA,,ASSISTANCE +UNITED MUTUAL SAVINGS BANK,9/24/1982,832858,777890,NEW YORK,NY,33112,ASSISTANCE +DIXIE FS&LA,10/1/1982,539032,433848,NEW ORLEANS,LA,19023,ASSISTANCE +BARTON S&LA,10/1/1982,170368,123015,NEWARK,NJ,11783,ASSISTANCE +1ST OF DELRAY BEACH S&LA,10/1/1982,842959,675151,DELRAY BEACH,FL,,ASSISTANCE +UNION FS&LA,10/1/1982,29113,25033,PINEVILLE,LA,1465,ASSISTANCE +HERITAGE FS&LA,10/1/1982,70959,47197,BOSSIER CITY,LA,1977,ASSISTANCE +OKLAHOMA NATIONAL BK & TR CO.,10/3/1982,131620,133587,OKLAHOMA CITY,OK,24587,ASSISTANCE +TRI-STATE BANK,10/8/1982,16281,16034,MARKHAM,IL,0,FAILURE +FREEDOM FS&LA,10/12/1982,790666,645029,WORCESTER,MA,9789,ASSISTANCE +CENTRAL BANK AND TRUST COMPANY,6/29/1936,,361,NEWARK,NJ,,FAILURE +FIRST FS&LA,10/12/1982,235978,177713,BOSTON,MA,3026,ASSISTANCE +MECHANICS SAVINGS BANK,10/15/1982,55254,50608,ELMIRA,NY,0,ASSISTANCE +CORSICANA FS&LA,10/22/1982,70311,68310,CORSICANA,TX,,ASSISTANCE +MODERN S&LA,10/22/1982,20659,17583,PASADENA,TX,,ASSISTANCE +CEDAR BLUFF BANK,11/2/1982,13685,12735,CEDAR BLUFF,AL,1501,FAILURE +THE FIRST NATIONAL BANK OF SOUTH CHARLESTO,11/5/1982,28629,27711,SOUTH CHARLESTON,WV,4622,FAILURE +TEXAS BK OF AMARILLO,11/5/1982,13149,11540,AMARILLO,TX,1317,FAILURE +BANK OF QUITMAN,11/12/1982,17359,16318,QUITMAN,AR,1412,FAILURE +ISLAND S&LA,11/15/1982,284483,221013,HEMPSTEAD,NY,12058,ASSISTANCE +SOUTH SHORE FS&LA,11/15/1982,366131,272227,MASSAPEQUA,NY,19524,ASSISTANCE +WALTON EQUITABLE BANK,7/3/1936,,235,WALTON,KY,,FAILURE +RANCHLANDER NATIONAL BANK,11/19/1982,4305,4123,MELVIN,TX,2244,FAILURE +NORTH KANSAS SA,11/19/1982,36508,31074,BELOIT,KS,7187,FAILURE +BOLLINGER COUNTY BANK,12/10/1982,15867,14637,LUTESVILLE,MO,1593,FAILURE +THE SECURITY STATE BANK,12/16/1982,11554,10062,MOORELAND,OK,1415,FAILURE +CHICAGOLAND FS&LA,12/17/1982,140540,126317,CHICAGO,IL,9827,ASSISTANCE +CLAY COUNTY FS&LA,12/20/1982,14082,12489,WEST POINT,MS,925,ASSISTANCE +SOUTH EAST FS&LA,12/20/1982,132146,111824,LOUISVILLE,KY,3588,ASSISTANCE +FIRST FS&LA OF CRISP COUNTY,12/20/1982,44595,44195,CORDELE,GA,36,ASSISTANCE +MID-CITY FS&LA,12/20/1982,47779,40872,NORTH WALES,PA,1171,ASSISTANCE +GARFIELD FS&LA,12/20/1982,70419,37627,POTTSTOWN,PA,4330,ASSISTANCE +FARMERS STATE BANK,7/10/1936,80,55,DENSMORE,KS,,FAILURE +FIRST HOME FS&LA,12/20/1982,83632,65328,OWENSBORO,KY,3172,ASSISTANCE +PEACHTREE FS&LA,12/20/1982,104979,77140,ATLANTA,GA,131,ASSISTANCE +SECURITY FS&LA,12/20/1982,45862,41967,MAYFIELD,KY,1240,ASSISTANCE +HOME TRUST S&LA,12/20/1982,13175,12102,VERMILLION,SD,300,ASSISTANCE +LANSING FS&LA,1/6/1983,45787,44460,LANSING,IL,1940,ASSISTANCE +VALLEY FIRST FS&LA,1/14/1983,37110,33698,EL CENTRO,CA,-7434,FAILURE +THE MADISON COUNTY BANK,1/21/1983,7000,6758,FREDERICKTOWN,MO,730,FAILURE +MANNING S&LA,2/3/1983,78654,60740,CHICAGO,IL,19847,FAILURE +STATE BANK OF BARNUM,2/9/1983,13873,13056,BARNUM,MN,1705,FAILURE +DRY DOCK SAVINGS BANK,2/9/1983,2452158,2037825,NEW YORK,NY,59448,ASSISTANCE +THE STATE BANK OF SARCOXIE,7/11/1936,,99,SARCOXIE,MO,,FAILURE +AMERICAN STATE BANK,2/12/1983,14124,13775,BRADLEY,IL,1152,FAILURE +METROPOLITAN SA,2/12/1983,395940,254007,FARMINGTON,MI,1499,ASSISTANCE +UNITED AMERICAN BK IN KNOXVILLE,2/14/1983,760473,590861,KNOXVILLE,TN,266384,ASSISTANCE +MERCHANTS & FARMERS STATE BANK,2/18/1983,5908,5685,BLYTHE,CA,972,FAILURE +AMERICAN CITY BANK,2/25/1983,319354,293937,LOS ANGLES,CA,25334,FAILURE +FIRST FS&LA OF MOBERLY,2/28/1983,38696,29965,MOBERLY,MO,2324,ASSISTANCE +CARONDELET S&LA ALSO CASE 115,2/28/1983,740577,645581,ST. LOUIS,MO,51336,ASSISTANCE +GEM FS&LA,3/1/1983,16758,11088,NORWOOD,OH,977,ASSISTANCE +UNITED S&LA,3/1/1983,102120,68568,CINCINNATI,OH,8145,ASSISTANCE +LEADER S&LA,3/4/1983,229759,139755,MONROE,LA,8038,ASSISTANCE +D'AURIA BANK & TRUST COMPANY,7/15/1936,1245,1118,NEWARK,NJ,,FAILURE +FIRST FS&LA OF NEWPORT NEWS,3/5/1983,94600,86302,NEWPORT NEWS,VA,4372,ASSISTANCE +PENINSULA FS&LA,3/5/1983,95851,76112,NEWPORT NEWS,VA,1863,ASSISTANCE +NEWPORT HARBOUR NATIONAL BANK,3/11/1983,47296,44035,NEWPORT BEACH,CA,9707,FAILURE +PAN AMERICAN NATIONAL BANK,3/18/1983,37172,36307,UNION CITY,NJ,4967,FAILURE +COLUMBIA PACIFIC BK & TR CO.,3/18/1983,47385,45696,PORTLAND,OR,213,FAILURE +TWIN PINES FS&LA,3/21/1983,45880,41070,BERKELEY,CA,2000,ASSISTANCE +PRAIRIE COUNTY BANK,3/24/1983,13251,12119,HAZEN,AR,0,FAILURE +BEAR CREEK VALLEY BANK,3/25/1983,13589,11164,PHOENIX,OR,4799,FAILURE +NORTH MISSISSIPPI S&LA,4/1/1983,151971,130521,CLARKSDALE,MS,42699,ASSISTANCE +BISCAYNE FS&LA,4/6/1983,1892054,1727115,MIAMI,FL,389,ASSISTANCE +THE EAST HAMPTON BANK & TRUST CO.,7/16/1936,1233,1050,EAST HAMPTON,CT,,FAILURE +THE INA STATE BANK,4/8/1983,17743,16566,INA,IL,2791,FAILURE +BANK OF SAN MARINO,4/8/1983,12997,12754,SAN MARINO,CA,1717,FAILURE +NORTHWESTERN S&LA,4/11/1983,82522,69343,NORMANDY,MO,11879,ASSISTANCE +SPARTA-SANDERS STATE BANK,4/15/1983,19033,18517,SPARTA,KY,6636,FAILURE +GUARANTY S&LA,4/28/1983,182852,135168,PITTSBURGH,PA,11325,ASSISTANCE +FIRST NAT BK OF OAK LAWN,4/29/1983,130265,123278,OAK LAWN,IL,21376,FAILURE +HERITAGE BANK,4/29/1983,18518,16254,ASHLAND,OR,4486,FAILURE +SMITH COUNTY BANK,5/6/1983,32985,30898,CARTHAGE,TN,4671,FAILURE +CITY & COUNTY BK OF ROANE CTY,5/27/1983,42232,40420,KINGSTON,TN,13051,FAILURE +CITY & COUNTY BK OF ANDERSON CTY,5/27/1983,142875,133943,LAKE CITY,TN,59412,FAILURE +BANK OF MAGNOLIA,8/14/1936,70,58,MAGNOLIA,MO,,FAILURE +UNITED AMERICAN BANK IN HAMILTON COUNTY,5/27/1983,133834,125232,CHATTANOOGA,TN,19062,FAILURE +CITY & COUNTY BK OF KNOX COUNTY,5/27/1983,262474,250036,KNOXVILLE,TN,114390,FAILURE +UNITED SOUTHERN BK OF NASHVILLE,5/27/1983,144171,135665,NASHVILLE,TN,37792,FAILURE +THE COMMERCIAL BK OF CALIFORNIA,5/27/1983,32437,30180,LOS ANGELES,CA,172,FAILURE +CONTINENTAL S&LA,5/31/1983,39961,28578,NEW ORLEANS,LA,2855,ASSISTANCE +FIRST FS&LA OF WALWORTH COUNTY,6/2/1983,38346,32409,DELAVAN,WI,2630,ASSISTANCE +WOMEN'S FS&LA,6/3/1983,570215,512969,CLEVELAND,OH,26014,ASSISTANCE +JACKSON FS&LA,6/6/1983,34508,23797,JACKSON,MS,128,ASSISTANCE +FIRST FS&LA OF SIOUX FALLS,6/10/1983,77959,75253,SIOUX FALLS,SD,6884,ASSISTANCE +FIRST DAKOTA HOME S&LA,6/10/1983,27756,26073,PIERRE,SD,1778,ASSISTANCE +CUMBERLAND BANK,8/14/1936,87,71,CUMBERLAND,IN,,FAILURE +COMMUNITY BANK,6/17/1983,32007,28291,HARTFORD,SD,5894,FAILURE +WESTERN NAT BK OF LOVELL,6/24/1983,24804,23281,LOVELL,WY,363,FAILURE +NORTHERN FS&LA,6/24/1983,267258,135393,ST. PAUL,MN,1751,ASSISTANCE +COLONIAL SA,6/24/1983,90046,83614,HOUSTON,TX,519,ASSISTANCE +MINERAL BK OF NEVADA,6/30/1983,18036,13131,LAS VEGAS,NV,0,FAILURE +MUTUAL FS&LA OF MASON CITY,7/1/1983,118784,103706,MASON CITY,IA,6797,ASSISTANCE +PROVIDENT S&LA,7/5/1983,51049,48032,PHILADELPHIA,PA,1500,ASSISTANCE +THE FIRST CENTRAL BANK,7/8/1983,18905,17851,SMITHVILLE,TN,5467,FAILURE +BANK OF NIOBRARA,7/8/1983,7177,6123,NIOBRARA,NE,2684,FAILURE +UNION NAT BK OF CHICAGO,7/8/1983,26252,24360,CHICAGO,IL,4428,FAILURE +PICKENS COUNTY BANK,10/13/1934,243,210,JASPER,GA,,FAILURE +DURHAM STATE BANK,8/22/1936,,124,DURHAM,MO,,FAILURE +ANTIOCH S&LA,7/8/1983,57936,52212,ANTIOCH,IL,3193,FAILURE +GUARANTY FS&LA,7/22/1983,143416,133535,TAYLOR,MI,1000,ASSISTANCE +FIRST PEOPLES BANK OF WASHINGTON COUNTY,7/29/1983,177785,175010,JOHNSON CITY,TN,72483,FAILURE +METRO BANK,7/29/1983,33607,31113,MIDLAND,TX,13173,FAILURE +THE FIRST NAT BK OF DANVERS,8/5/1983,12525,11659,DANVERS,IL,3174,FAILURE +OREGON MUTUAL SAVINGS BANK,8/5/1983,265734,251338,PORTLAND,OR,11852,ASSISTANCE +FIRST FLORIDA S&LA,8/5/1983,80826,70526,GAINESVILLE,FL,7727,ASSISTANCE +MIDDLE PNSLA NRTH. NECK FS&LA,8/5/1983,44674,41920,GLOUCESTER,VA,4296,ASSISTANCE +MT. VERNON S&LA,8/5/1983,117788,118015,ROSSLYN,VA,18577,ASSISTANCE +FIRST COMMERCE BK OF HAWKINS CTY,8/12/1983,43097,44920,ROGERSVILLE,TN,16829,FAILURE +COMMERCIAL BANK OF STANBERRY,8/31/1936,173,128,STANBERRY,MO,,FAILURE +GIBRALTAR S&LA,8/12/1983,48895,43743,MAPLEWOOD,MO,1961,ASSISTANCE +UNITED SOUTHERN BANK OF CLARKSVILLE,8/26/1983,9943,11494,CLARKSVILLE,TN,6041,FAILURE +SUBURBAN S&LA,8/31/1983,2017751,1747530,WAYNE,NJ,60001,ASSISTANCE +1ST FS&LA OF E. CHICAGO,8/31/1983,209535,211064,EAST CHICAGO,IN,12131,ASSISTANCE +GARY FS&LA,8/31/1983,15223,15666,GARY,IN,1066,ASSISTANCE +WASHINGTON FS&LA,8/31/1983,644987,548349,NEW YORK,NY,11846,ASSISTANCE +COMMUNITY FS&LA,8/31/1983,123084,101789,HIALEAH,FL,1201,ASSISTANCE +CITIZENS FS&LA OF MARYSVILLE,9/1/1983,96571,89222,MARYSVILLE,OH,,ASSISTANCE +THE DOUGLASS STATE BANK,9/2/1983,35385,31156,KANSAS CITY,KS,10843,FAILURE +WARREN COUNTY BANK,9/16/1983,19639,18728,MCMINNIVILLE,TN,8833,FAILURE +THE WELLSVILLE BANK,9/12/1936,325,290,WELLSVILLE,MO,,FAILURE +NATIONAL BK OF ODESSA,9/30/1983,92878,100531,ODESSA,TX,22702,FAILURE +DOMINION BK OF DENVER,9/30/1983,16709,13724,DENVER,CO,3992,FAILURE +BASTROP FS&LA,9/30/1983,32917,32497,BASTROP,LA,983,ASSISTANCE +SECURITY S&LA,9/30/1983,26499,25117,VILLE PLATTE,LA,329,ASSISTANCE +AUBURN SAVINGS BANK,10/1/1983,133184,131382,AUBURN,NY,0,ASSISTANCE +THE DESCHUTES BANK,10/7/1983,10207,10021,REDMOND,OR,4251,FAILURE +THE FIRST NAT BK OF MIDLAND,10/14/1983,1409639,780076,MIDLAND,TX,526577,FAILURE +FIRST CAROLINA FS&LA,10/14/1983,98290,96539,COLUMBIA,SC,,ASSISTANCE +CLEVELAND COMMUNITY SAVINGS CO.,10/28/1983,21027,17336,CLEVELAND,OH,15946,FAILURE +"STATE OF CLOVIS, SA",11/3/1983,30904,30147,CLOVIS,NM,20832,FAILURE +SECURITY BANK,9/15/1936,,149,KINGFISHER,OK,,FAILURE +FIRST NAT BK OF BROWNING,11/11/1983,13703,13366,BROWNING,MT,3123,FAILURE +FIRST FS&LA OF FT. WAYNE,11/14/1983,298108,267167,FORT WAYNE,IN,17296,ASSISTANCE +SOUTH BEND FS&LA,11/14/1983,71417,71483,SOUTH BEND,IN,4682,ASSISTANCE +AMERICAN FS&LA,11/14/1983,55358,46430,FORT WAYNE,IN,3404,ASSISTANCE +FT. WAYNE FS&LA,11/14/1983,37028,30992,FORT WAYNE,IN,2198,ASSISTANCE +ATKINSON TRUST & SAVINGS BANK,11/25/1983,21074,18511,ATKINSON,IL,9470,FAILURE +BOHEMIAN S&LA,12/1/1983,168567,173188,ST. LOUIS,MO,2500,ASSISTANCE +METRO FS&LA,12/2/1983,27381,18509,LAKE CHARLES,LA,10870,FAILURE +UNION TRUST COMPANY,12/9/1983,30578,25653,SAN JUAN,PR,9237,FAILURE +BANK OF HACKLEBURG,12/13/1983,6531,6421,HACKLEBURG,AL,1847,FAILURE +FARMERS STATE BANK,9/17/1936,70,52,TINDALL,MO,,FAILURE +THE BANK OF RED OAK,12/16/1983,11135,10489,RED OAK,OK,2806,FAILURE +CITIZENS S&LA,12/27/1983,63594,50908,MIDDLETOWN,OH,5422,ASSISTANCE +FIRST FS&LA OF MONROEVILLE,12/30/1983,29780,29805,MONROEVILLE,AL,2500,ASSISTANCE +FARMERS BK & TR CO.,1/6/1984,48606,48269,WINCHESTER,TN,8093,FAILURE +CITY & COUNTY BK OF JEFFERSON CT,1/20/1984,21712,22775,WHITE PINE,TN,4492,FAILURE +INDIAN SPRINGS STATE BANK,1/27/1984,30896,27345,KANSAS CITY,KS,8506,FAILURE +UNION MUTUAL S&LA,1/27/1984,8641,7945,RICHMOND,VA,,FAILURE +THE TUCKER COUNTY BANK,2/3/1984,15437,14785,PARSONS,WV,2614,FAILURE +EMERALD EMPIRE BANKING CO.,2/3/1984,22278,21331,SPRINGFIELD,OR,2410,FAILURE +HERITAGE BANK OF BUREAU COUNTY,2/8/1984,8706,7846,DEPUE,IL,1388,FAILURE +STOVER BANK,10/3/1936,,153,STOVER,MO,,FAILURE +WEST OLYMPIA BANK,2/10/1984,20411,19916,LOS ANGELES,CA,2972,FAILURE +BROWNFIELD STATE BK & TR CO.,2/17/1984,38854,37585,BROWNFIELD,TX,7574,FAILURE +HOME S&LA,3/1/1984,77455,75717,NORWALK,OH,3100,ASSISTANCE +UNITED BANK OF OREGON,3/2/1984,17258,16056,MILWAUKIE,OR,3059,FAILURE +ALL AMERICAN NATIONAL BANK,3/2/1984,13855,12033,VIRGINA GARDENS,FL,3128,FAILURE +NATIONAL BANK AND TRUST COMPANY OF TRAVERS,3/9/1984,103968,97825,TRAVERSE CITY,MI,12209,FAILURE +EMPIRE S&LA,3/14/1984,332512,303451,MESQUITE,TX,266905,FAILURE +SEMINOLE STATE NATIONAL BANK,3/16/1984,51131,48364,SEMINOLE,TX,1991,FAILURE +HERITAGE BANK,3/16/1984,186068,180425,ANAHEIM,CA,5153,FAILURE +SCANDIA S&LA,4/1/1984,65195,65919,DES MOINES,IA,3400,ASSISTANCE +DESOTO BANK AND TRUST COMPANY,10/9/1936,1169,996,MANSFIELD,LA,,FAILURE +FIRST FS AND LA OF GRAND FORKS AND MINOT,4/2/1984,245988,210581,MINOT,ND,40485,ASSISTANCE +AMERICAN S&LA,4/3/1984,9444,15631,BILOXI,MS,10359,FAILURE +FIRST SECURITY BANK,4/6/1984,22457,21289,ERWIN,TN,6497,FAILURE +WATAUGA VALLEY BANK,4/6/1984,15393,14880,ELIZABETHTON,TN,4832,FAILURE +SECURITY NATIONAL BK OF LUBBOCK,4/13/1984,51404,49854,LUBBOCK,TX,3677,FAILURE +THE SHELBY NAT BK OF SHELBYVILLE,4/19/1984,67778,65542,SHELBYVILLE,IN,378,FAILURE +GAMALIEL BANK,4/19/1984,22773,21509,GAMALIEL,KY,4665,FAILURE +UNITED OF AMERICA BANK,4/26/1984,38145,36913,CHICAGO,IL,876,FAILURE +CITIZENS BK OF MONROE COUNTY,4/27/1984,21099,20643,TELICO PLAINS,TN,6397,FAILURE +WEST COAST BANK,4/27/1984,198210,189986,LOS ANGELES,CA,12681,FAILURE +THE UNION BANK,10/27/1936,1906,1992,UHRICHSVILLE,OH,,FAILURE +THE FIRST NAT BK OF RUSHFORD,5/4/1984,21991,21360,RUSHFORD,MN,7301,FAILURE +WESTERN NATIONAL BK OF CASPER,5/4/1984,27373,23329,CASPER,WY,10038,FAILURE +STATE BANK OF MILLS,5/4/1984,7240,6424,MILLS,WY,2928,FAILURE +FIRST NATIONAL BANK,5/4/1984,23518,22169,SNYDER,TX,754,FAILURE +THE NAT BK OF CARMEL,5/8/1984,76185,68381,CARMEL-BY-THE-SEA,CA,6638,FAILURE +THE MISSISSIPPI BANK,5/11/1984,238037,182956,JACKSON,MS,20035,FAILURE +FIRST CONTINENTAL BANK & TRUST COMPANY OF,5/11/1984,107237,104028,DEL CITY,OK,21348,FAILURE +INVESTORS S&LA,5/16/1984,31463,24245,HOUSTON,TX,,ASSISTANCE +CONTINENTAL ILLINOIS NAT BK & TR,5/17/1984,39956956,28590214,CHICAGO,IL,1108948,ASSISTANCE +PLANTERS TRUST & SAVINGS BANK OF OPELOUSAS,5/18/1984,71427,66396,OPELOUSAS,LA,28846,FAILURE +BANK OF CAMBRIA,12/1/1936,,317,CAMBRIA,WI,,FAILURE +BANK OF IRVINE,5/18/1984,30992,29401,IRVINE,CA,2278,FAILURE +BLEDSOE COUNTY BANK,5/18/1984,5272,5402,PIKEVILLE,TN,2092,FAILURE +WASHINGTON NAT BK OF CHICAGO,5/18/1984,14077,13809,CHICAGO,IL,1984,FAILURE +FIRST NAT BK OF PRIOR LAKE,5/24/1984,12231,11494,PRIOR LAKE,MN,4914,FAILURE +GARDEN GROVE COMMUNITY BANK,6/1/1984,43892,41127,GARDEN GROVE,CA,5412,FAILURE +CHEROKEE COUNTY BANK,6/5/1984,39391,37588,CENTRE,AL,7084,FAILURE +STEWARDSHIP BANK OF OREGON,6/8/1984,6314,5843,PORTLAND,OR,1083,FAILURE +AMERICAN S&LA,6/8/1984,58431,38790,DEDEDO,GU,8825,ASSISTANCE +THE CORNING BANK,6/15/1984,32030,30570,CORNING,AR,13766,FAILURE +FARMERS STATE BANK,6/15/1984,3231,2984,LYONS,SD,855,FAILURE +CITIZENS STATE BANK,12/5/1936,350,297,PALMYRA,IN,,FAILURE +THE LAWRENCE COUNTY BANK,6/15/1984,25155,24521,LAWRENCEBURG,TN,6521,FAILURE +REPUBLIC BK OF KANSAS CITY,6/18/1984,41326,38328,KANSAS CITY,MO,3898,FAILURE +THE FARMERS NAT BK OF AURELIA,6/21/1984,19900,19142,AURELIA,IA,2008,FAILURE +AMERICAN BANK,6/27/1984,32993,29811,SAINT JOSEPH,TN,13316,FAILURE +EAST TEXAS BK & TR CO.,6/29/1984,106092,97121,LONGVIEW,TX,19882,FAILURE +THE COFFEEN NATIONAL BANK,7/12/1984,9359,9374,COFFEEN,IL,1679,FAILURE +WINDOM FS&LA,7/18/1984,47882,45268,WINDOM,MN,5664,ASSISTANCE +THE GUARANTY BK OF SAINT PAUL,7/19/1984,28619,27461,ST. PAUL,MN,5919,FAILURE +COALMONT SAVINGS BANK,7/24/1984,25716,24039,COALMONT,TN,7786,FAILURE +"QUEEN CITY S&LA, WA",7/24/1984,233512,130867,SEATTLE,WA,4226,ASSISTANCE +THE STATE BANK,11/16/1934,195,170,SAUK CITY,WI,,FAILURE +SCOTTSBURG STATE BANK,12/5/1936,563,491,SCOTTSBURG,IN,,FAILURE +MITCHELL HOME S&LA,8/1/1984,16607,18029,MITCHELL,SD,,ASSISTANCE +JACKSON COUNTY NATIONAL BANK,8/9/1984,13254,12941,TUCKERMAN,AR,5341,FAILURE +PEOPLES STATE BANK OF CLAY COUNTY,8/10/1984,17724,17106,POLAND,IN,5092,FAILURE +THE TINGLEY STATE SAVINGS BANK,8/10/1984,19404,18478,MOUNT AYR,IA,6317,FAILURE +CENTURY FS&LA,8/10/1984,651723,724485,CEDARHURST,NY,6470,ASSISTANCE +AMERICAN NAT BK IN MCLEAN,8/16/1984,14271,13408,MCLEAN,TX,3006,FAILURE +GIROD TRUST COMPANY,8/16/1984,405685,289698,SAN JUAN,PR,86341,FAILURE +THE FIRST STATE BANK,8/22/1984,12163,11224,THAYER,KS,5094,FAILURE +HEREFORD STATE BANK,8/24/1984,2707,2476,HEREFORD,CO,765,FAILURE +FIDELITY FS&LA,8/28/1984,137793,79211,BALTIMORE,MD,23662,ASSISTANCE +THE UNION STATE BANK,12/7/1936,248,207,CROTHERSVILLE,IN,,FAILURE +AMERICAN HERITAGE SAVINGS FA,8/28/1984,277008,256379,BLOOMINGTON,IL,42898,ASSISTANCE +BANK OF THE NORTHWEST,8/31/1984,21780,19793,EUGENE,OR,1170,FAILURE +RHODE ISLAND FS&LA,9/1/1984,130265,124408,PROVIDENCE,RI,9550,ASSISTANCE +DAVID CITY BANK,9/6/1984,21321,18801,DAVID CITY,NE,2285,FAILURE +OAKLAND SAVINGS BANK,9/7/1984,22101,19921,OAKLAND,IA,6565,FAILURE +UNION FS&LA,9/7/1984,309344,285940,INDIANAPOLIS,IN,26754,ASSISTANCE +COMMUNITY BK & TR CO.,9/14/1984,32236,28002,ENID,OK,10755,FAILURE +BANK OF VERDIGRE & TRUST COMPANY,9/19/1984,13356,12729,VERDIGRE,NE,3709,FAILURE +CENTURY NATIONAL BANK,9/20/1984,13207,13267,JACKSONVILLE,FL,2306,FAILURE +SECURITY STATE BANK,9/21/1984,50126,48462,WEATHERFORD,OK,20447,FAILURE +THE BREWSTER STATE BANK,12/7/1936,,75,BREWSTER,KS,,FAILURE +CONTINENTAL FS&LA,9/21/1984,1039846,837663,CLEVELAND,OH,80848,ASSISTANCE +ORANGE SAVINGS BANK,9/28/1984,513376,498033,LIVINGSTON,NJ,7326,ASSISTANCE +SUBURBIA FS&LA,10/1/1984,660228,630807,GARDEN CITY,NY,16000,ASSISTANCE +HOME FS&LA,10/1/1984,45594,23715,PONCE,PR,1703,ASSISTANCE +FIDELITY FS&LA,10/2/1984,34817,33596,CORINTH,MS,1500,ASSISTANCE +THE FARMERS & MERCHANTS BANK,10/5/1984,31139,30968,TECUMSEH,OK,6052,FAILURE +THE REXFORD STATE BANK,10/10/1984,5770,5294,REXFORD,KS,4481,FAILURE +BUCKLIN STATE BANK OF BUCKLIN,10/12/1984,16133,15265,BUCKLIN,MO,7056,FAILURE +ONEIDA BK & TR CO.,10/12/1984,6292,5445,ONEIDA,TN,2983,FAILURE +AMERICAN STATE BANK,10/19/1984,23869,22195,THOMAS,OK,6923,FAILURE +THE FIRST STATE BANK OF LIGNITE,12/12/1936,83,46,LIGNITE,ND,,FAILURE +THE BANK OF CODY,10/24/1984,10277,9380,CODY,NE,2716,FAILURE +FARMERS STATE BANK,10/24/1984,6082,5538,KILGORE,NE,0,FAILURE +STATE BANK OF BOYD,10/24/1984,7117,6221,BOYD,MN,2847,FAILURE +THE FIRST NAT BK OF GAYLORD,10/25/1984,6426,6074,GAYLORD,KS,2506,FAILURE +FIRST AMERICAN BANKING COMPANY,11/16/1984,18630,15269,PENDLETON,OR,2221,FAILURE +KNOX FS&LA,11/16/1984,154654,141607,KNOXVILLE,TN,30415,ASSISTANCE +AMERICAN S&LA,11/16/1984,64839,59729,KNOXVILLE,TN,9856,ASSISTANCE +JOHN SEVIER S&LA,11/16/1984,35765,34238,SEVIERVILLE,TN,14864,ASSISTANCE +SAVANNAH FS&LA,11/16/1984,19343,14507,SAVANNAH,TN,9667,FAILURE +EAST TENNESSEE,11/16/1984,21881,15024,KNOXVILLE,TN,5124,ASSISTANCE +THE FIRST NATIONAL BANK OF CENTERVILLE,12/18/1936,569,506,CENTERVILLE,SD,,FAILURE +THE STRONG CITY STATE BANK,11/29/1984,5026,4746,STRONG CITY,KS,1848,FAILURE +THE DAYTON BK & TR CO.,11/30/1984,51433,50035,DAYTON,TN,6306,FAILURE +GOLDEN SPIKE STATE BANK,12/4/1984,7788,7269,TREMONTON,UT,3575,FAILURE +FARMERS STATE BK OF HOLYOKE,12/7/1984,3901,3578,HOLYOKE,CO,1415,FAILURE +SAN MARINO S&LA,12/7/1984,856806,212229,SAN MARINO,CA,263147,FAILURE +UNIVERSITY BANK OF WICHITA,12/11/1984,4700,4474,WICHITA,KS,2064,FAILURE +UEHLING STATE BANK,12/18/1984,4224,3713,UEHLING,NE,700,FAILURE +THE FARMERS STATE BANK,12/20/1984,14578,13697,SELDEN,KS,8024,FAILURE +FIRST SECURITY BANK,12/22/1984,13422,12101,SANDWICH,IL,1018,FAILURE +FIDELITY S&L,1/1/1985,72544,72528,MARTINS FERRY,OH,,ASSISTANCE +NORTHERN AND DAKOTA TRUST COMPANY,12/19/1936,,479,FARGO,ND,,FAILURE +PEOPLES S&LA,1/1/1985,15032,10453,HONOLULU,HI,4318,ASSISTANCE +CITIZENS STATE BANK,1/4/1985,2907,2563,EDGERTON,WY,1208,FAILURE +STATE BANK OF DANNEBROG,1/7/1985,4870,4350,DANNEBROG,NE,1138,FAILURE +COAST COMMUNITY BANK,1/11/1985,9123,8473,HARBOR,OR,1429,FAILURE +THE FIRST NATIONAL BANK IN MARLOW,1/24/1985,27447,27006,MARLOW,OK,7642,FAILURE +FIRST NATIONAL BANK IN CLARKSVILLE,1/24/1985,34955,33390,CLARKSVILLE,TX,8697,FAILURE +THE STEELE STATE BANK,1/25/1985,21891,20586,CHEROKEE,IA,3309,FAILURE +CITIZENS FIDELITY BANK,2/1/1985,18223,17599,BRISTOL,TN,4060,FAILURE +FARMERS NATIONAL BANK OF ERICK,2/7/1985,16845,17340,ERICK,OK,3639,FAILURE +FIRST NATIONAL BANK OF WOODBINE,2/7/1985,25782,25800,WOODBINE,IA,7308,FAILURE +FIRST INTERNATIONAL BANK,12/19/1936,,360,MINOT,ND,,FAILURE +PEOPLES BANK & TRUST CO.,2/8/1985,24408,23107,WARTBURG,TN,6273,FAILURE +WEST VALLEY BANK,2/8/1985,48262,43364,WOODLAND HILLS,CA,1247,FAILURE +FIRST NATIONAL BANK OF EADS,2/14/1985,17547,16718,EADS,CO,4648,FAILURE +CITIZENS STATE BANK OF FULDA,2/15/1985,39376,36355,FULDA,MN,12818,FAILURE +INWOOD STATE BANK,2/19/1985,8147,7648,INWOOD,IA,1259,FAILURE +HALIFAX NATIONAL BANK OF PORT ORANGE,3/1/1985,38584,35745,PORT ORANGE,FL,2459,FAILURE +COMMERCIAL STATE BANK,3/8/1985,16260,15561,AFTON,IA,2956,FAILURE +CITIZENS STATE BANK,3/8/1985,16932,15644,ARAPAHOE,NE,2108,FAILURE +WESTERN COMMUNITY S&L,3/8/1985,110589,7606,EL CERRITO,CA,-11381,FAILURE +TAYLOR STATE BANK,3/15/1985,4980,4840,EMINGTON,IL,1460,FAILURE +THE FIRST INTERNATIONAL BANK OF WILLISTON,12/19/1936,,763,WILLISTON,ND,,FAILURE +GOLDEN VALLEY BANK,3/25/1985,82236,79818,TURLOCK,CA,9427,FAILURE +FIDELITY BANK OF DENVER,3/29/1985,54700,48789,DENVER,CO,12245,FAILURE +BANK OF HUNTER,4/4/1985,3001,3109,HUNTER,OK,1230,FAILURE +CAPISTRANO NATIONAL BANK,4/5/1985,58224,56664,SAN JUAN CAPISTRA,CA,6429,FAILURE +STATE BANK OF ALEXANDRIA,4/10/1985,2545,2413,ALEXANDRIA,NE,170,FAILURE +FIRST STATE BANK OF ELGIN,4/12/1985,18169,15775,ELGIN,OR,4919,FAILURE +SOUTH COAST BANK,4/12/1985,31304,29483,COSTA MESA,CA,1154,FAILURE +STATE S&LA,4/12/1985,639002,417950,SALT LAKE CITY,UT,0,FAILURE +THE FIRST NATIONAL BANK OF SPRINGFIELD,4/18/1985,15305,14011,SPRINGFIELD,CO,5325,FAILURE +THE PEOPLES NATIONAL BANK OF LAMPASAS,4/18/1985,39427,40518,LAMPASAS,TX,3881,FAILURE +BANK OF BERTHOLD,12/21/1936,,84,BERTHOLD,ND,,FAILURE +BEVERLY HILLS S&LA,4/23/1985,2918178,2444652,BEVERLY HILLS,CA,1429314,ASSISTANCE +PEOPLES STATE BANK,4/26/1985,13541,12654,ODEBOLT,IA,2325,FAILURE +FIRST ENTERPRISE BANK,4/26/1985,43809,43013,OAKLAND,CA,0,FAILURE +BRIGHTON FS&LA,5/1/1985,91402,83084,BRIGHTON,CO,22255,ASSISTANCE +THE BANK OF COMMERCE,5/2/1985,66843,63907,CHANUTE,KS,15896,FAILURE +CAPITAL CITY FS&LA,5/2/1985,361193,298020,WASHINGTON,DC,27125,ASSISTANCE +NORTHERN VIRGINIA S&LA,5/2/1985,237179,240568,ARLINGTON,VA,18936,ASSISTANCE +FIRST FEDERAL OF TITUSVILLE,5/2/1985,162735,157676,TITUSVILLE,FL,7096,ASSISTANCE +FARMERS STATE BANK,5/3/1985,50867,49603,ST. JOSEPH,MO,13267,FAILURE +FARMERS SAVINGS BANK,5/3/1985,16920,15393,MASSENA,IA,6412,FAILURE +FIRST STATE BANK,12/21/1936,,43,COTEAU,ND,,FAILURE +STORY COUNTY STATE BANK,5/9/1985,33586,31633,STORY CITY,IA,6611,FAILURE +"FIRST FINANCIAL BANK, FSB",5/10/1985,739385,630966,NEW ORLEANS,LA,51544,ASSISTANCE +BANK OF NEWCASTLE,5/16/1985,32623,31169,NEWCASTLE,OK,11012,FAILURE +"THE ENERGY BANK, N.A.",5/16/1985,29744,27370,DALLAS,TX,7493,FAILURE +HOME FS&LA,5/22/1985,201914,206552,MARION,OH,0,ASSISTANCE +NORTHWEST BANK,5/23/1985,54001,51102,WHITE SETTLEMENT,TX,11541,FAILURE +FIRST FS&LA OF FREEPORT,5/28/1985,63321,45738,FREEPORT,IL,13607,ASSISTANCE +FIRST TRUST BANK OF LAKEFIELD,5/31/1985,24288,22126,LAKEFIELD,MN,9450,FAILURE +BANK OF OREGON,5/31/1985,117145,96968,WOODBURN,OR,18791,ASSISTANCE +BANK OF LOCKESBURG,5/31/1985,25469,23508,LOCKESBURG,AR,7366,FAILURE diff --git a/docs/static/data/examples/games-layoffs.csv b/docs/static/data/examples/games-layoffs.csv new file mode 100644 index 000000000..b66c5fb43 --- /dev/null +++ b/docs/static/data/examples/games-layoffs.csv @@ -0,0 +1,400 @@ +Studio,Date,Headcount,Parent,Type,Studio Location,Parent Location +Heartbeat Network,2022-01-15,600,,Publisher,China,China +Perfect World Games,2022-01-27,1000,Perfect World Co. Ltd.,Publisher,China,China +Playgendary Minsk,2022-02-01,200,Playgendary,Mobile,Belarus,Cyprus +Gamigo,2022-03-28,,Media and Games Invest,Publisher,Washington State,Sweden +PlayStation,2022-04-01,93,Sony Entertainment,Publisher,California,Japan +Wargaming Minskj,2022-04-04,,Wargaming,Publisher,Belarus,Russia +Electronic Arts,2022-05-18,200,Electronic Arts,Publisher,California,United States +MPL,2022-05-22,100,,Mobile,India,India +Tencent IEG,2022-05-25,50,Tencent,Publisher,China,China +Hangar 13,2022-05-26,87,TakeTwo Interactive,Console,California,United States +PlayTika,2022-06-01,250,PlayTika,Mobile,"England, Quebec",Israel +Penguin Esports,2022-06-01,,Tencent,Online,China,China +101XP,2022-06-02,,,Mobile,Russia,Russia +Plarium Krasnador,2022-06-15,500,Plarium,Mobile,Russia,Israel +Game Insight,2022-06-15,600,Game Insight,Mobile,Russia,Lithuania +Friday's Games,2022-06-21,50,,Mobile,Russia,Russia +Adjust,2022-06-27,,App Lovin,Mobile,California,United States +101 Studio,2022-06-28,150,ByteDance,Mobile,China,China +Intellivision,2022-06-28,,,Tech,California,United States +Unity Technologies,2022-06-30,150,Unity,Tech,California,United States +Niantic,2022-06-30,90,Niantic,Mobile,California,United States +IGG,2022-06-30,598,IGG,Mobile,China,Singapore +Archosaur Games,2022-06-30,304,Zulong Entertainment,Mobile,China,China +LineKong Interactive,2022-07-01,50,,Online,China,China +NetEase Spark Studio,2022-07-14,,NetEase,Publisher,China,China +37 Mobile Games,2022-07-29,130,Sanqi Interactive Entertainment,Mobile,China,China +Uken Games,2022-08-01,,,Mobile,British Columbia,Canada +Ludia,2022-08-04,200,Jam City,Mobile,Quebec,United States +Mino Games,2022-08-26,,,Mobile,Quebec,Canada +Lockwood Publishing,2022-09-02,34,,Publisher,England,United Kingdom +Wushuan Studio,2022-09-06,,ByteDance,Online,China,China +Garena,2022-09-09,700,Sea Ltd.,Online,Singapore,Singapore +Booyah!,2022-09-22,35,Sea Ltd.,Online,California,Singapore +Mighty Kingdom,2022-09-28,,,Indie,Australia,Australia +Playdots,2022-10-14,65,TakeTwo Interactive,Mobile,New York,United States +Xbox,2022-10-18,1000,Microsoft,Publisher,Washington State,United States +Onoma,2022-11-02,200,Embracer Group,Mobile,Quebec,Sweden +WIIMO Games,2022-11-02,,,Mobile,Texas,United States +Kabam,2022-11-10,35,,Mobile,Canada,Canada +Tencent IEG,2022-11-15,,Tencent,Online,China,China +Amazon Luna,2022-11-17,,Amazon,Tech,Washington State,United States +Lilith Games,2022-11-19,,,Publisher,China,China +Wildlife Studios,2022-11-29,300,Wildlife Studios,Mobile,Brazil,Brazil +Spokko Studio,2022-12-06,,CD Projekt,Mobile,Poland,Poland +Age of Learning Inc.,2022-12-08,128,ABC Mouse,Online,California,United States +Gamigo,2022-12-21,50,Media and Games Invest,Online,Washington State,Sweden +PlayTika,2022-12-22,600,PlayTika,Mobile,,Israel +Wizards of the Coast,2023-01-03,15,Hasbro,Console,,United States +Unity Technologies,2023-01-17,300,Unity,Tech,California,United States +HiRez Games,2023-01-19,,,Online,Georgia,United States +343 Studios,2023-01-19,95,Microsoft,Console,Washington State,United States +The Coalition,2023-01-19,,Microsoft,Console,British Columbia,United States +Bethesda Games,2023-01-19,,Microsoft,Console,,United States +Riot Games,2023-01-19,46,Tencent,Online,California,China +Roblox,2023-01-20,30,,Tech,California,United States +Hidden Leaf Games,2023-01-25,30,,Indie,California,United States +Wicked Realm Games,2023-01-30,60,Tilting Point,Mobile,Massachusetts,United States +EA Industrial Toys,2023-01-31,150,Electronic Arts,Mobile,California,United States +Respawn Entertainment,2023-01-31,,Electronic Arts,Mobile,California,United States +Hyper Hippos Entertainment,2023-02-01,10,,Mobile,British Columbia,Canada +Mutant Arm Studios,2023-02-01,31,,Indie,Oregon,United States +Big Run Studios,2023-02-02,25,,Mobile,California,United States +Nexon Games West,2023-02-02,80,Nexon,Online,California,South Korea +Survios,2023-02-13,35,,AR/VR,California,United States +PUBG Santa Monica,2023-02-24,5,Krafton,Online,California,South Korea +EA Baton Rouge,2023-02-28,200,Electronic Arts,Publisher,Lousiana,United States +GameLoft Budapest,2023-03-01,100,GameLoft,Mobile,Hungary,France +Private Division,2023-03-07,,TakeTwo Interactive,Publisher,California,United States +Team17,2023-03-17,,Team17,Publisher,England,United Kingdom +Twitch,2023-03-20,400,Amazon,Online,California,United States +Electronic Arts,2023-03-30,775,,Publisher,,United States +LINE games,2023-03-30,30,Naver,Online,South Korea,South Korea +Counterplay Games,2023-04-04,,,Indie,California,United States +Paradox Games,2023-04-04,36,Paradox Interactive,Indie,Sweden,Sweden +Amazon Game Studios,2023-04-04,100,Amazon,Publisher,California,United States +Innogames,2023-04-14,75,,Mobile,Germany,Germany +Bungie,2023-04-14,,Sony Entertainment,Console,Washington State,Japan +CyberConnect2 Montreal,2023-04-17,55,CyberConnect2,Console,Quebec,Japan +Downpour Interactive,2023-04-20,,Meta,AR/VR,Washington State,United States +Ready at Dawn,2023-04-20,30,Meta,AR/VR,California,United States +Ten Square Games,2023-04-21,105,,Mobile,Wroclaw,Poland +Phoenix Labs,2023-04-25,30,Garena,Online,British Columbia,Singapore +PixelOpus,2023-05-01,20,Sony Entertainment,Console,California,Japan +We're Five Games,2023-05-01,14,TinyBuild,Console,Minneapolis,United States +PlayStudios,2023-05-01,100,PlayStudios,Mobile,Nevada,United States +Unity Technologies,2023-05-02,600,Unity,Online,California,United States +Final Strike Games,2023-05-09,30,,Console,California,United States +Ubisoft,2023-05-10,60,Ubisoft,Publisher,,France +The Molasses Flood,2023-05-11,29,CD Projekt,Console,Massachusetts,Poland +Deviation Games,2023-05-12,90,,Console,Los Angeles,United States +Brace Yourself Games,2023-05-18,21,,Console,British Columbia,Canada +Deck Nine Games,2023-05-19,30,,Console,Colorado,United States +Resolution Games,2023-05-22,70,,AR/VR,Sweden,Sweden +Plucky Bytes,2023-05-23,,Embracer Group,Console,Sweden,Sweden +Relic Games,2023-05-23,121,SEGA,Console,British Columbia,Japan +Kabam,2023-05-24,,Netmarble,Mobile,British Columbia,South Korea +Antimatter Games,2023-05-25,53,Enad Global 7,Console,England,Sweden +PlayStation San Diego,2023-05-26,,Sony Entertainment,Console,California,Japan +Firaxis Games,2023-05-30,30,TakeTwo Interactive,Console,Massachusetts,United States +Vanpool,2023-05-31,,,Console,Japan,Japan +Firemonkeys,2023-06-01,45,Electronic Arts,Mobile,Australia,United States +BonusXP,2023-06-01,48,Netflix,Console,Texas,United States +The Game Band,2023-06-03,,,Console,California,United States +Hellbent Games,2023-06-12,40,,Indie,British Columbia,Canada +Kiloo Games,2023-06-14,55,,Mobile,Denmark,Denmark +ProbablyMonsters,2023-06-15,35,,Online,Washington State,United States +Wildlife Studios,2023-06-15,143,Wildlife Studios,Mobile,Brazil,Brazil +Bilibili Guangzhou Xinyuan,2023-06-16,220,Bilibili,Online,China,China +Scavenger Studios,2023-06-21,20,,Indie,Quebec,Canada +Wildseed Games,2023-06-23,15,,Online,California,United States +HiRez Ventures,2023-06-27,50,,Online,Georgia,United States +Elodie Games,2023-06-28,,,Online,California,United States +Ludia,2023-06-29,45,Jam City,Mobile,Quebec,United States +Niantic,2023-06-29,230,Niantic,AR/VR,California,United States +Puny Human,2023-06-30,14,,Indie,North Carolina,United States +LifeForce Games,2023-06-30,13,,Indie,, +Daedalic Entertainment,2023-06-30,25,Nacon,Console,Germany,France +JumpStart Games,2023-06-30,60,NetDragon Websoft,Online,California,China +TavroxGames,2023-07-01,4,,Indie,France,France +A Thinking Ape,2023-07-01,5,Embracer Group,Mobile,British Columbia,Sweden +Harebrained Schemes,2023-07-01,40,Paradox Interactive,Indie,Washington State,Sweden +Adglobe Montreal,2023-07-06,29,Skeleton Crew,AR/VR,Quebec,Japan +Product Madness,2023-07-11,25,Aristocrat Games,Online,Nevada,United States +Activision Blizzard,2023-07-19,50,Activision Blizzard King,Publisher,California,United States +Double Stallion Games,2023-07-20,10,,Indie,Quebec,Canada +CD Projekt Red,2023-07-26,100,CD Projekt,Console,Poland,Poland +Popcore,2023-07-31,,TakeTwo Interactive,Mobile,Germany,United States +Striking Distance Studios,2023-07-31,32,Krafton,Console,California,South Korea +Action Squad Studios,2023-08-05,14,,Indie,Finland,Finland +Campfire Cabal,2023-08-08,18,Embracer Group,Console,Sweden,Sweden +Imagendary Studios,2023-08-11,55,FunPlus,Console,California,China +Vela Games,2023-08-21,45,,Online,Ireland,United Kingdom +Bioware Games,2023-08-23,50,Electronic Arts,Console,Alberta,United States +Mimimi,2023-08-29,30,,Indie,Germany,Germany +Blackbird Interactive,2023-08-29,90,,Indie,British Columbia,Canada +EastSide Games,2023-08-29,28,,Mobile,British Columbia,Canada +Romino Games,2023-08-30,25,,Indie,Netherlands,Netherlands +Gearbox Publishing,2023-08-30,,Embracer Group,Publisher,Texas,Sweden +Volition,2023-08-31,240,Embracer Group,Console,Illinois,Sweden +Rainbow Studios,2023-08-31,15,Embracer Group,Console,Arizona,Sweden +Keywords Edmonton,2023-08-31,13,Keywords Studios,Publisher,Alberta,United Kingdom +Telltale Games,2023-09-08,,,Indie,California,United States +Demiurge Studios,2023-09-08,5,,Indie,Massachusetts,United States +Visual Concepts,2023-09-12,,TakeTwo Interactive,Console,Texas,United States +Ascendant Studios,2023-09-14,50,,Console,California,United States +Ubisoft London,2023-09-14,54,Ubisoft,Mobile,England,France +probablyMonsters,2023-09-15,55,,Indie,Washington State,United States +BeamDog,2023-09-15,23,Embracer Group,Console,Washington State,Sweden +DoubleDown Interactive,2023-09-15,25,DoubleU Games Co Ltd.,Mobile,Washington State,United States +Crystal Dynamics,2023-09-20,10,Embracer Group,Console,California,Sweden +Naughty Dog,2023-09-22,,Sony Entertainment,,California,Japan +Blizzard Entertainment,2023-09-25,10,Activision Blizzard King,Console,California,United States +Other Ocean Interactive,2023-09-27,,Other Ocean Group Inc,Indie,California,United States +Maze Theory,2023-09-27,12,Emergent Entertainment,AR/VR,England,United Kingdom +Noggin,2023-09-27,30,Paramount Global,Online,,United States +Ubisoft Redstorm,2023-09-28,6,Ubisoft,Publisher,North Carolina,France +Epic Games,2023-09-28,830,Epic,Tech,North Carolina,United States +Fishlabs,2023-09-30,8,Embracer Group,Console,Germany,Sweden +Dang!,2023-10-02,5,,Indie,New York,United States +Team17,2023-10-02,,Team17,Publisher,England,England +Twitch,2023-10-03,35,Amazon,Online,California,United States +Hyper Hippos Entertainment,2023-10-04,30,,Mobile,British Columbia,Canada +Rogue Games Inc,2023-10-05,10,,Publisher,California,United States +Calypte,2023-10-05,15,Virtuos,Publisher,California,China +Drifter Entertainment,2023-10-06,15,,Indie,Washington State,United States +ForeVR Games,2023-10-12,5,,AR/VR,California,United States +Zen Studios,2023-10-13,32,Embracer Group,Console,Hungary,Sweden +Frontier Developments,2023-10-17,,,Console,England,United Kingdom +Media Molecule,2023-10-18,20,Sony Entertainment,Console,England,Japan +PlayStation VASG,2023-10-18,,Sony Entertainment,Console,California,Japan +Six to Start,2023-10-18,12,OliveX,Mobile,England,Hong Kong +LuoBu,2023-10-23,15,Roblox,Online,China,United States +LevelEx,2023-10-23,14,BrainLab,Mobile,Illinois,United States +MotorSport Games,2023-10-29,38,MotorSport Network,Console,Florida,United States +Bungie,2023-10-30,100,Sony Entertainment,Console,Washington State,Japan +DR Studios,2023-10-31,,505 Games,Console,England,United States +Cryptic Studios,2023-11-02,,Embracer Group,Online,California,Sweden +Chimera Entertainment,2023-11-02,15,Remote Control Productions,Mobile,Germany,Germany +Ubisoft Montreal,2023-11-07,135,Ubisoft,Console,Montreal,France +Free Radical Design,2023-11-08,80,Embracer Group,Console,England,Sweden +Digital Extremes,2023-11-09,30,Leyou,Online,Ottawa,China +Amazon Games,2023-11-13,180,Amazon,Publisher,,United States +Digital Bros Group,2023-11-14,130,,Publisher,Italy,Italy +Kongregate,2023-11-14,20,Modern Times Group,Online,California,Sweden +Humble Games,2023-11-14,,Humble Bundle,Publisher,,United States +Blackbird Interactive,2023-11-15,30,,Indie,British Columbia,Canada +Two Desperados,2023-11-16,20,,Indie,Serbia,Serbia +Embracer Placeholder,2023-11-16,473,Embracer Group,Publisher,Sweden,Sweden +Dark Slope,2023-11-17,7,,AR/VR,Ontario,Canada +Papukaya,2023-11-20,5,,Mobile,Finland,Finland +Wildlife Studios,2023-11-22,300,,Mobile,Brazil,Brazil +NanoReality Games Ltd.,2023-11-24,,,Mobile,Cyprus,Cyprus +Zhoaoxi Guangnian (Nuverse),2023-11-27,1000,ByteDance,Online,China,China +Fishlabs,2023-11-28,50,Embracer Group,Console,Germany,Sweden +Weta Digital,2023-11-28,265,Unity,Tech,New Zealand,United States +Bossa Studios,2023-11-30,19,,Indie,England,United Kingdom +Phoenix Labs,2023-11-30,35,,Online,British Columbia,Canada +IGUO Mobile Entertainment,2023-12-01,8,Embracer Group,Mobile,British Columbia,Sweden +New World Intertactive,2023-12-04,,Embracer Group,Console,Colorado,Sweden +CodeMasters,2023-12-04,,Electronic Arts,Console,England,United States +Age of Learning Inc.,2023-12-04,,ABC Mouse,Online,California,United States +Rovio Montreal,2023-12-05,16,SEGA,Console,Quebec,Japan +HakJak Studios,2023-12-05,16,TinyBuild,Mobile,Idaho,United States +Funselektor Labs,2023-12-06,3,,Indie,Australia,Australia +League of Geeks,2023-12-06,29,,Indie,Australia,Australia +Triple Topping Games,2023-12-08,10,,Indie,Denmark,Denmark +3D Realms / Slipgate Ironworks,2023-12-14,,Embracer Group,Console,Denmark,Sweden +Wonderstorm Inc.,2023-12-18,,,Console,California,United States +First Contact Entertainment,2023-12-21,40,,AR/VR,California,United States +Versus Evil,2023-12-22,13,TinyBuild,Publisher,Maryland,United States +Lion Games,2023-12-26,60,,Mobile,South Korea,South Korea +Archiact,2024-01-02,20,,AR/VR,British Columbia,Canada +Sliptegate Iron Works,2024-01-03,,Embracer Group,Console,Sweden,Sweden +Unity Technologies,2024-01-08,1800,Unity,Tech,California,United States +Twitch,2024-01-10,500,Amazon,Online,California,United States +Playtika,2024-01-11,350,PlayTika,Mobile,Israel,Israel +Nesting Games,2024-01-12,68,Digital Bros,Console,Quebec,Italy +Lost Boys Interactive,2024-01-12,125,Embracer Group,Console,Wisconsin,Sweden +Prahna Bytes,2024-01-16,,Embracer Group,Console,,Sweden +PTW,2024-01-16,45,,Publisher,, +Wimo Games,2024-01-17,20,,Online,Texas,United States +Netspeak Games,2024-01-17,25,,Indie,, +Thunderful Group,2024-01-17,75,Thunderful Group,Publisher,,Sweden +Pixelberry,2024-01-17,,Nexon,Mobile,California,South Korea +Ntreev Soft,2024-01-18,70,NCSoft,Online,South Korea,South Korea +31st Union,2024-01-18,,TakeTwo Interactive,Console,,United States +CI Games,2024-01-18,30,,Console,, +Behaviour Interactive,2024-01-18,45,,Console,Quebec,Canada +Chief Rebel,2024-01-19,,,Indie,, +Metaverse World,2024-01-19,70,Netmarble,Online,South Korea,South Korea +Little Red Dog Games,2024-01-22,30,,Console,, +Riot Games,2024-01-22,530,Tencent,Online,California,China +Warducks,2024-01-23,10,,Mobile,Ireland,Ireland +Plarium,2024-01-24,45,Aristocrat Games,Mobile,, +People Can Fly Studios,2024-01-24,30,,Console,, +Black Forest Games,2024-01-25,40,Embracer Group,Console,,Sweden +Activision Blizzard,2024-01-25,1900,Microsoft,Console,,United States +Eidos Montreal,2024-01-29,97,Embracer Group,Console,Quebec,Sweden +Starword Industries,2024-01-30,15,,Console,Poland,Poland +Nimble Giant,2024-01-30,,Embracer Group,Console,,Sweden +Artificer,2024-01-31,,Devolver Digital,Console,, +Airship Syndicate,2024-01-31,12,,Indie,Texas,United States +Rovio Montreal,2024-01-31,12,SEGA,Mobile,,Japan +Chimera Entertainment,2024-02-01,20,Remote Control Productions,Mobile,, +Threaks,2024-02-01,25,,Indie,Germany,Germany +Crop Circle Games,2024-02-05,,Prytania Media,Indie,,United States +Cloud Imperium Games,2024-02-06,,,Indie,,United States +Visual Concepts,2024-02-06,,TakeTwo Interactive,Console,Texas,United States +GameScience,2024-02-07,10,Prytania Media,Indie,,United States +Hidden Path Entertainment,2024-02-07,44,,Indie,Washington,United States +91Act,2024-02-07,15,,Indie,,China +Threshold Games,2024-02-09,11,,Indie,,United States +Daybreak Games,2024-02-12,15,Enad Global 7,Online,California,Sweden +Genvid Technologies,2024-02-12,,,Online,,United States +Scopely,2024-02-14,15,Savvy Games Group,Mobile,California,Saudi Arabia +Noggin,2024-02-16,,Paramount Global,Online,,United States +Build a Rocket Boy,2024-02-19,,,Console,,United Kingdom +GameLoft Lviv,2024-02-21,38,Viacom,Mobile,Ukraine,France +Disruptive Games,2024-02-21,,,Console,California,United States +CodeMasters,2024-02-23,,Electronic Arts,Mobile,England,United States +Die Gut Fabrik,2024-02-26,10,,Indie,Denmark,Denmark +SuperMassive Games,2024-02-26,90,,Console,England,United Kingdom +Deck Nine Games,2024-02-27,25,,Console,Colorado,United States +PlayStation London,2024-02-27,,,Console,England,Japan +PlayStation Studios,2024-02-27,900,Sony,Console,,Japan +Wildlife Studios,2024-02-28,130,,Mobile,,Brazil +Electronic Arts,2024-02-28,670,Electronic Arts,Publisher,,United States +505 Games,2024-02-29,,Digital Bros,Publisher,Italy,Italy +Keoken Interactive,2024-02-29,4,,Indie,Netherlands,Netherlands +Babaroga Games,2024-03-01,4,,Indie,Illinois,United States +Radical Forge,2024-03-01,6,,Indie,England,United Kingdom +FrogSong Studios,2024-03-01,25,,Indie,Sweden,Sweden +ZA/UM,2024-03-06,24,,Indie,,United Kingdom +Sega of America,2024-03-08,61,SEGA,Publisher,California,United States +Deviation Games,2024-03-08,50,,Console,California,United States +Something Wicked Games,2024-03-15,40,,Indie,Maryland,United States +Velan Studios,2024-03-17,46,,Indie,New York,United States +Happy Volcano,2024-03-17,8,,Indie,Belgium,Belgium +Tarsier Studios,2024-03-22,,Embracer Group,Console,Sweden,Sweden +Smilegate Barcelona,2024-03-27,45,Smilegate,Console,Spain,South Korea +Sega HARDLight,2024-03-28,,SEGA,Mobile,England,Japan +Creative Assembly,2024-03-28,240,SEGA,Console,England,Japan +Certain Affinity,2024-03-28,25,,Indie,Texas,Texas +Gearbox Publishing,2024-03-28,,TakeTwo Interactive,Publisher,Texas,United States +Bold Spirit Game Studio,2024-04-01,30,,Indie,Quebec,Canada +Ubisoft,2024-04-02,45,Ubisoft,Publisher,,France +MI-CLOS Studio,2024-04-03,20,,Indie,France,France +Whitethorn Games,2024-04-03,5,,Publisher,Pennsylvania,United States +Spearhead Games,2024-04-03,31,,Indie,Quebec,Canada +Singularity 6,2024-04-04,49,,Online,California,California +Relic Entertainment,2024-04-04,40,,Indie,British Columbia,Canada +Ubisoft Korea,2024-04-09,,Ubisoft,Publisher,South Korea,France +Possibility Space,2024-04-12,50,Prytania Media,Indie,Louisiana,United States +Kwalee,2024-04-16,40,,Mobile,England,United Kingdom +TakeTwo Interactive,2024-04-17,600,TakeTwo Interactive,Publisher,,United States +ModernWolf,2024-04-18,6,,Publisher,, +Bethesda France,2024-04-23,15,Microsoft,Publisher,France,United States +Flaming Fowl Studios,2024-04-23,20,,Indie,England,United Kingdom +NCSoft,2024-04-26,,NCSoft,Publisher,South Korea,South Korea +Playtika Belarus,2024-04-30,150,PlayTika,,Belarus,Israel +Keoken Interactive,2024-04-30,13,,Indie,Netherlands,Netherlands +Paladin Studios,2024-05-02,45,,Indie,Netherlands,Netherlands +Bethesda Softworks,2024-05-07,,Microsoft,Publisher,Maryland,United States +Tango GameWorks,2024-05-07,150,Microsoft,Console,Japan,United States +Alpha Dog Games,2024-05-07,25,Microsoft,Mobile,Nova Scotia,United States +Arkane Austin,2024-05-07,60,Microsoft,Console,Texas,United States +Dawon Interactive,2024-05-08,,Prytania Media,Indie,India,United States +Lightforge Games,2024-05-08,35,,Online,California,United States +CI Games,2024-05-10,30,,Indie,Poland,Poland +Mighty Kingdom,2024-05-13,25,,Mobile,Australia,Australia +Studio Wildcard,2024-05-15,6,SDE Inc.,Console,Washington,United States +Singularity 6,2024-05-16,36,,Online,California,United States +Phoenix Labs,2024-05-16,162,Forte,Console,British Columbia,United States +GameLoft Cluj,2024-05-16,136,Vivendi,Mobile,Romania,France +Fall Damage,2024-05-23,50,Fragbite,Online,Sweden,Sweden +Hatchery Games,2024-05-23,13,,Indie,Quebec,Canada +Avalanche Studios,2024-06-03,,Avalanche Studios Group,Console,Quebec,Sweden +Avalanche Studios,2024-06-03,50,Avalanche Studios Group,Console,New York,Sweden +Behaviour Interactive,2024-06-04,95,,Console,Quebec,Canada +GameLoft Kharkiv,2024-06-05,41,Vivendi,Mobile,Ukraine,France +Sumo Group,2024-06-11,150,Tencent,Console,United Kingdom,China +Timbre Games,2024-06-11,100,Tencent,Console,British Columbia,China +VRChat,2024-06-12,50,,AR/VR,California,United States +Archiact,2024-06-12,,,AR/VR,British Columbia,Canada +Striking Distance Studios,2024-06-14,10,Krafton,Console,California,South Korea +Galvanic Games Inc.,2024-06-14,,,Indie,Washington,United States +Pieces Interactive AB,2024-06-17,40,Embracer Group,Console,Sweden,Sweden +Paradox Tectonic,2024-06-18,18,Paradox Interactive,Console,California,Sweden +Techland,2024-06-18,,Tencent,Console,Poland,China +GameLoft Toronto,2024-06-26,49,Viacom,Mobile,Ottawa,France +Ubisoft Toronto,2024-06-27,33,Ubisoft,Console,Ottawa,France +Surgent Studios,2024-07-02,12,,Indie,England,United Kingdom +Wicked Games AG.,2024-07-03,15,,Indie,Switzerland,Switzerland +Splash Damage,2024-07-11,,Splash Damage Group Limited,Console,England,United Kingdom +Rumble Games,2024-07-12,35,Forte,Mobile,California,United States +NetherRealm Studios,2024-07-17,50,Warner Brothers,Console,Illinois,United States +Humble Games,2024-07-23,36,Ziff Davis,Publisher,California,United States +Lively Studio,2024-07-29,,Keywords Studios,Mobile,United Kingdom,Ireland +Bungie,2024-07-31,220,Sony,Console,Washington,Japan +probablyMonsters,2024-08-01,,,Console,Washington,United States +Jam City,2024-08-02,85,Netmarble,Mobile,California,South Korea +Ready at Dawn,2024-08-08,,Meta,AR/VR,California,United States +Com2Us,2024-08-09,100,Com2Us,Mobile,South Korea,South Korea +Archiact,2024-08-12,12,,AR/VR,British Columbia,Canada +Ubisoft San Francisco,2024-08-15,45,Ubisoft,Console,California,France +Machine Zone,2024-08-15,,App Lovin,Mobile,California,United States +CodeName Entertainment,2024-08-16,6,,Indie,British Columbia,Canada +Visual Concepts,2024-08-23,22,TakeTwo Interactive,Console,California,United States +Ouka Studios,2024-08-28,,Netease,Console,Japan,China +Toadman Interactive,2024-08-28,,Enad Global 7,Console,Norway,Sweden +Toadman Interactive,2024-08-28,100,Enad Global 7,Console,Sweden,Sweden +Ballistic Moon Ltd.,2024-08-30,,,Console,England,United Kingdom +Tilting Point,2024-09-02,90,,Mobile,New York,United States +Lost Boys Interactive,2024-09-06,139,Embracer Group,Console,Wisconsin,Sweden +Midnight Society,2024-09-11,,,Online,California,United States +Microsoft Gaming,2024-09-12,650,Microsoft,Publisher,Washington,United States +Neon Machine,2024-09-12,35,,Indie,Washington,United States +Evening Star,2024-09-13,6,,Indie,,United States +Midwinter Entertainment,2024-09-17,35,Behaviour Interactive,Console,Washington,Canada +Airship Syndicate,2024-09-18,16,,Indie,Texas,United States +SkyBox Labs,2024-09-18,25,Netease,Online,British Columbia,China +Mountaintop Studios,2024-09-23,13,,Online,Washington,United States +Merge Games,2024-09-26,,Maximum Entertainment,Publisher,England,Sweden +Nexon America,2024-09-30,,Nexon,Publisher,California,South Korea +XR Games,2024-10-01,72,,AR/VR,England,United Kingdom +HiRez Studios,2024-10-01,70,Hirez Ventures,Online,Georgia,United States +Sharkmob London,2024-10-01,,Tencent,Console,England,China +Studio Black Flag,2024-10-02,5,,Indie,France,France +Antstream Arcade,2024-10-04,,,Online,England,United Kingdom +Tequila Works,2024-10-08,,Tencent,Console,Spain,China +Cryptic Studios,2024-10-09,,Embracer Group,Online,California,Sweden +NaturalMotion,2024-10-10,,TakeTwo Interactive,Mobile,England,United States +Riot Games,2024-10-15,32,Tencent,Online,California,China +DON'T NOD,2024-10-16,69,,Console,France,France +Surgent Studios,2024-10-18,,,Indie,England,United Kingdom +Inflexion Games,2024-10-22,50,Tencent,Console,Alberta,China +Netflix Studio Blue,2024-10-22,35,Netflix,Online,California,United States +Machine Zone,2024-10-24,,App Lovin,Mobile,California,United States +Firewalk Studios,2024-10-29,174,Sony,Console,Washington,Japan +Neon Koi,2024-10-29,45,Sony,Mobile,England,Japan +probablyMonsters,2024-10-30,50,,Console,Washington,United States +Fingersoft,2024-10-30,14,,Mobile,Finland,Finland +Skydance Interactive,2024-11-01,12,Paramount Global,AR/VR,California,United States +Heart Machine,2024-11-09,8,,Indie,California,United States +Lilith Games,2024-11-13,40,,Mobile,China,China +Thunderful Games,2024-11-14,100,Thunderful Group,Console,Sweden,Sweden +NCSoft,2024-11-15,500,NCSoft,Online,South Korea,South Korea +Reflector Entertainment,2024-11-18,45,Bandai Namco,Console,Quebec,Japan +Zapper Games,2024-11-19,18,Embracer Group,Console,North Carolina,Sweden +Humanoid Origin,2024-11-25,70,,Console,Alberta,Canada +KING Art Games,2024-11-25,10,,Indie,Germany,Germany +Worlds Untold,2024-11-26,35,Netease,Console,British Columbia,China +Ubisoft Osaka,2024-12-03,,Ubisoft,Console,Japan,France +Ubisoft San Francisco,2024-12-03,175,Ubisoft,Console,California,France +Torn Banner Studios,2024-12-03,,,Indie,Ottawa,Canada +Sweet Bandits,2024-12-04,10,,Indie,Qeuebec,Canada +IllFonic,2024-12-04,,,Indie,Colorado,United States +Ubisoft Sydney,2024-12-04,134,Ubisoft,Console,Australia,France +Deck Nine Games,2024-12-06,,,Indie,Colorado,United States diff --git a/docs/static/data/examples/layoffs.csv b/docs/static/data/examples/layoffs.csv new file mode 100644 index 000000000..8cbc32147 --- /dev/null +++ b/docs/static/data/examples/layoffs.csv @@ -0,0 +1,4320 @@ +company,location,total_laid_off,date,percentage_laid_off,industry,source,stage,funds_raised,country,date_added +Digg,New York City,,3/13/2026,,Consumer,https://techcrunch.com/2026/03/13/digg-lays-off-staff-and-shuts-down-app-as-company-retools/,Acquired,49,United States,3/13/2026 +Atlassian,"Sydney, Non-U.S.",1600.0,3/11/2026,0.1,Other,https://au.finance.yahoo.com/news/atlassian-lay-off-1-600-212610757.html?guccounter=1,Post-IPO,210,Australia,3/11/2026 +Flipkart,"Bengaluru, Non-U.S.",500.0,3/6/2026,,Retail,https://inc42.com/buzz/flipkart-lays-off-about-500-employees-post-annual-performance-review/,Acquired,12900,India,3/7/2026 +SSense,"Montreal, Non-U.S.",215.0,3/5/2026,,Retail,https://betakit.com/ssense-cut-more-than-200-jobs-days-after-founders-won-bid-to-buy-back-company/,Series A,,Canada,3/7/2026 +Supernal,Los Angeles,296.0,3/4/2026,0.8,Transportation,https://www.latimes.com/business/story/2026-03-04/irvine-startup-lays-off-close-to-300-employees,Unknown,,United States,3/7/2026 +Envato,"Melbourne, Non-U.S.",200.0,3/4/2026,0.3,Marketing,https://www.startupdaily.net/advice/business-strategy/shutterstock-owned-envato-is-slashing-its-workforce/,Unknown,,Australia,3/7/2026 +At-Bay,"Tel Aviv, Non-U.S.",25.0,3/4/2026,,Security,https://www.calcalistech.com/ctechnews/article/bye11uubkwe,Unknown,296,United States,3/7/2026 +MicroVision,Seattle,49.0,3/3/2026,,Other,https://www.bizjournals.com/seattle/news/2026/03/03/microvision-lidar-redmond-layoffs-warn-cars.html,Post-IPO,415,United States,3/7/2026 +Verint Systems,New York City,,3/2/2026,,Security,https://www.calcalistech.com/ctechnews/article/rjpmvvqf11l,Acquired,213,United States,3/7/2026 +Zap Africa,"Lagos, Non-U.S.",,2/28/2026,0.44,Finance,https://techcabal.com/2026/02/28/zap-africa-layoffs/,Seed,,Nigeria,3/3/2026 +Block,SF Bay Area,4000.0,2/26/2026,0.4,Finance,https://www.cnbc.com/2026/02/26/block-laying-off-about-4000-employees-nearly-half-of-its-workforce.html,Post-IPO,150,United States,2/26/2026 +Ocado,"London, Non-U.S.",1000.0,2/26/2026,0.05,Food,https://www.theguardian.com/business/2026/feb/26/ocado-to-cut-1000-jobs-in-150m-cost-cutting-drive,Post-IPO,2000,United Kingdom,3/3/2026 +eBay,SF Bay Area,800.0,2/26/2026,0.06,Retail,https://www.cnbc.com/2026/02/26/ebay-layoffs-800-workforce.html,Post-IPO,1200,Israel,2/26/2026 +C3.ai,SF Bay Area,280.0,2/25/2026,0.26,AI,https://www.morningstar.com/stocks/xnys/ai/earnings-transcript,Series F,228,United States,2/26/2026 +WiseTech,"Sydney, Non-U.S.",2000.0,2/24/2026,0.3,Logistics,https://www.bloomberg.com/news/articles/2026-02-24/wisetech-to-cut-2-000-jobs-as-ai-ends-era-of-manual-coding,Post-IPO,3000,Australia,2/25/2026 +TrueCar,Los Angeles,100.0,2/24/2026,0.3,Transportation,https://aimgroup.com/2026/02/24/truecar-cuts-30-of-staff/,Post-IPO,340,United States,2/25/2026 +DraftKings,Boston,,2/24/2026,,Consumer,https://next.io/news/people/draftkings-reduces-workforce-company-embraces-ai/,Post-IPO,719,United States,2/25/2026 +Livspace,"Bengaluru, Non-U.S.",1000.0,2/20/2026,0.12,Consumer,https://inc42.com/buzz/livspace-fires-1000-employees-cofounder-quits/,Series F,482,India,2/22/2026 +Lucid Motors,SF Bay Area,,2/20/2026,0.12,Transportation,https://techcrunch.com/2026/02/20/lucid-motors-slashes-12-of-its-workforce-as-it-seeks-profitability/,Post-IPO,8300,United States,2/22/2026 +Cyberark,Boston,500.0,2/17/2026,0.12,Security,https://www.calcalistech.com/ctechnews/article/hy707511ube,Acquired,1700,United States,2/18/2026 +Huawei,"Tel Aviv, Non-U.S.",50.0,2/15/2026,,Hardware,https://www.calcalistech.com/ctechnews/article/bkmmdojuwx,Unknown,,Israel,2/18/2026 +Axonius,New York City,40.0,2/15/2026,0.04,Security,https://www.calcalistech.com/ctechnews/article/s1xchi1oze,Series E,865,United States,2/18/2026 +Firebolt,"Tel Aviv, Non-U.S.",,2/15/2026,,Data,https://www.calcalistech.com/ctechnews/article/r1cj0csuwl,Series C,264,Israel,3/7/2026 +Clari,SF Bay Area,76.0,2/12/2026,,Sales,https://www.bizjournals.com/sanjose/news/2026/02/12/clari-salesloft-merger-ai-investments-layoffs.html,Acquired,496,United States,2/18/2026 +Glossier,New York City,50.0,2/11/2026,0.33,Retail,https://www.businessoffashion.com/news/cosmetics/glossier-layoffs-2026/,Series E,266,United States,2/13/2026 +Dayforce,"Toronto, Non-U.S.",,2/11/2026,0.05,HR,Internal memo,Post-IPO,40,Canada,2/18/2026 +Salesforce,SF Bay Area,,2/9/2026,,Sales,https://www.businessinsider.com/salesforce-cuts-jobs-executive-changes-2026-2,Post-IPO,65,United States,2/11/2026 +Workday,SF Bay Area,400.0,2/4/2026,0.02,HR,https://www.bloomberg.com/news/articles/2026-02-04/workday-to-cut-about-400-employees-focused-on-customer-support,Post-IPO,230,United States,2/5/2026 +Rewire,"Tel Aviv, Non-U.S.",110.0,2/4/2026,,Finance,https://www.calcalistech.com/ctechnews/article/bkxy2fwv11g,Acquired,57,Israel,2/18/2026 +Smartsheet,Seattle,,2/4/2026,,Other,https://www.geekwire.com/2026/smartsheet-layoffs-enterprise-software-giant-cuts-staff/,Post-IPO,152,United States,2/7/2026 +Zillow,Seattle,200.0,2/2/2026,,Real Estate,https://www.seattletimes.com/business/real-estate/seattle-based-zillow-lays-off-200-employees/,Post-IPO,97,United States,2/5/2026 +Zipcar,Boston,126.0,2/2/2026,,Transportation,https://www.boston.com/news/business/2026/02/02/zipcar-to-close-seaport-headquarters-cut-more-than-100-jobs/,Acquired,107,United States,2/10/2026 +Expedia,Seattle,100.0,2/1/2026,,Travel,https://finance.yahoo.com/news/expedia-cut-100-jobs-austin-161917994.html?guccounter=1,Post-IPO,3300,United States,2/7/2026 +Zupee,"New Delhi, Non-U.S.",200.0,1/30/2026,,Consumer,https://yourstory.com/2026/01/zupee-cuts-about-200-jobs-in-second-layoff-after-money-gaming-ban,Series B,121,India,2/3/2026 +Peloton,New York City,,1/30/2026,0.11,Fitness,https://www.reuters.com/business/peloton-cuts-11-staff-including-engineering-teams-bloomberg-news-reports-2026-01-30/,Post-IPO,1900,United States,2/3/2026 +Kiwi.com,"Brno, Non-U.S.",250.0,1/29/2026,0.36,Travel,https://forbes.cz/kiwi-pokracuje-v-propousteni-odchazi-tretina-zamestnancu/,Unknown,107,Czech Republic,2/3/2026 +Gloo,Boulder,,1/29/2026,,Consumer,https://www.bizjournals.com/denver/news/2026/01/29/ai-company-cuts-staff-reduces-executive-salaries.html,Post-IPO,152,United States,2/18/2026 +Amazon,Seattle,16000.0,1/28/2026,,Retail,https://www.aboutamazon.com/news/company-news/amazon-layoffs-corporate-jan-2026,Post-IPO,8100,United States,1/28/2026 +ASML,"Veldhoven, Non-U.S.",1700.0,1/28/2026,,Hardware,https://www.asml.com/en/news/press-releases/2026/strengthening-focus-on-engineering-and-innovation,Post-IPO,,Netherlands,2/3/2026 +Pinterest,SF Bay Area,700.0,1/27/2026,0.15,Consumer,https://www.theverge.com/news/868531/pinterest-layoffs-cuts-15-percent-ai-transformation,Post-IPO,1500,United States,1/27/2026 +Moon Active,"Tel Aviv, Non-U.S.",110.0,1/27/2026,0.05,Consumer,https://www.calcalistech.com/ctechnews/article/jvbqyjznm,Unknown,425,Israel,3/7/2026 +Expedia,Seattle,,1/26/2026,,Travel,https://www.bizjournals.com/seattle/news/2026/01/26/expedia-layoffs-tech-team-interbay-travel.html,Post-IPO,3300,United States,1/28/2026 +Entropy,New York City,,1/25/2026,1.0,Crypto,https://www.theblock.co/post/386942/entropy-a16z-backed-decentralized-custody-startup-is-winding-down-and-returning-capital-to-investors,Seed,27,United States,1/26/2026 +Autodesk,SF Bay Area,1000.0,1/22/2026,0.07,Other,https://www.reuters.com/business/world-at-work/autodesk-lay-off-about-7-workforce-2026-01-22/,Post-IPO,,United States,1/23/2026 +Shopify,"Ottawa, Non-U.S.",,1/22/2026,,Retail,https://betakit.com/shopify-makes-more-job-cuts-this-time-targeting-partnerships-division/,Post-IPO,122,Canada,1/26/2026 +Vimeo,New York City,,1/21/2026,,Consumer,https://www.businessinsider.com/vimeo-laying-off-staff-after-billion-sale-to-bending-spoons-2026-1,Post-IPO,450,United States,1/23/2026 +Vimeo,"Tel Aviv, Non-U.S.",,1/20/2026,,Consumer,https://www.calcalistech.com/ctechnews/article/sjtjgbabzx,Post-IPO,450,United States,3/7/2026 +Polygon,"Cayman Islands, Non-U.S.",60.0,1/16/2026,,Crypto,https://www.coindesk.com/business/2026/01/16/polygon-labs-said-to-have-laid-off-60-staff-following-new-usd250-million-acquisition,Unknown,451,Cayman Islands,1/16/2026 +Ericsson,"Stockholm, Non-U.S.",1600.0,1/15/2026,,Other,https://www.reuters.com/business/world-at-work/ericsson-shed-1600-jobs-sweden-2026-01-15/,Post-IPO,663,Sweden,1/16/2026 +Tipalti,SF Bay Area,100.0,1/15/2026,,Finance,https://en.globes.co.il/en/article-tipalti-laying-off-dozens-of-employees-1001532153,Series F,565,United States,1/19/2026 +Playtika,"Tel Aviv, Non-U.S.",500.0,1/14/2026,0.15,Consumer,https://www.calcalistech.com/ctechnews/article/bkl6xzhswe,Post-IPO,,Israel,1/15/2026 +Aleph Alpha,"Frankfurt, Non-U.S.",50.0,1/14/2026,0.16,AI,https://www.startbase.com/news/aleph-alpha-baut-rund-50-stellen-ab/,Series B,534,Germany,1/19/2026 +Meta,SF Bay Area,1500.0,1/13/2026,0.02,Consumer,https://www.nytimes.com/2026/01/12/technology/meta-layoffs-reality-labs.html?unlocked_article_code=1.D1A.ckee.3ANQhKMxi5Ld&smid=url-share,Post-IPO,26000,United States,1/14/2026 +eToro,"Tel Aviv, Non-U.S.",105.0,1/13/2026,0.07,Finance,https://www.calcalistech.com/ctechnews/article/sjedi1vh11x,Unknown,322,Israel,1/14/2026 +StoreDot,"Tel Aviv, Non-U.S.",,1/13/2026,,Other,https://www.calcalistech.com/ctechnews/article/sjkqkmeb11x,Series D,184,Israel,1/14/2026 +MercadoLibre,"Buenos Aires, Non-U.S.",116.0,1/12/2026,,Retail,https://eleconomista.com.ar/economia/despidos-mercado-libre-entrenamos-ia-nos-reemplazo-n91871,Post-IPO,5100,Brazil,1/14/2026 +FormFactor,SF Bay Area,220.0,1/9/2026,0.11,Manufacturing,https://www.latimes.com/business/story/2026-01-09/bay-area-semiconductor-testing-company-to-lay-off-more-than-200-workers,Post-IPO,15,United States,1/13/2026 +Kaseya,Miami,250.0,1/8/2026,0.05,Security,https://www.crn.com/news/channel-news/2026/kaseya-lays-off-5-percent-of-workforce-to-align-our-go-to-market-teams?itc=refresh,Private Equity,547,United States,1/13/2026 +Hailo,"Tel Aviv, Non-U.S.",30.0,1/8/2026,0.1,Manufacturing,https://www.calcalistech.com/ctechnews/article/hyzk11etvwx,Series C,344,Israel,1/13/2026 +Foretellix,"Tel Aviv, Non-U.S.",29.0,1/8/2026,0.18,Transportation,https://www.calcalistech.com/ctechnews/article/hjjj7b6vzx,Series C,132,Israel,1/13/2026 +Tailwind Labs,Oklahoma City,3.0,1/8/2026,,Product,https://www.businessinsider.com/tailwind-engineer-layoffs-ai-github-2026-1,Unknown,,United States,1/13/2026 +Angi,Indianapolis,350.0,1/7/2026,,Consumer,https://ir.angi.com/node/12951/html,Post-IPO,180,United States,1/13/2026 +Multiverse,"London, Non-U.S.",55.0,1/5/2026,,Education,https://sifted.eu/articles/multiverse-job-cuts-euan-blair,Series D,414,United Kingdom,1/13/2026 +Sapiens,"Tel Aviv, Non-U.S.",700.0,12/28/2025,0.15,Finance,https://www.calcalistech.com/ctechnews/article/r1oyau0mzl,Acquired,88,Israel,12/31/2025 +Yellow.ai,SF Bay Area,100.0,12/23/2025,0.3,Support,https://inc42.com/buzz/exclusive-yellow-ai-lays-off-over-100-employees-amid-automation-push/,Series C,102,United States,12/26/2025 +The Trade Desk,Los Angeles,,12/17/2025,,Marketing,https://www.adexchanger.com/platforms/the-trade-desk-lays-off-staff-one-year-after-its-last-major-reorg/,Post-IPO,257,United States,12/19/2025 +Amazon,Seattle,84.0,12/15/2025,,Retail,https://www.bizjournals.com/seattle/news/2025/12/15/amazon-layoffs-84-february.html,Post-IPO,8100,United States,12/19/2025 +PowerSchool,Sacramento,,12/12/2025,,Education,https://www.bizjournals.com/sacramento/news/2025/12/12/powerschool-restructuring-layoffs.html,Acquired,31,United States,12/15/2025 +Zebra Technologies,Chicago,,12/12/2025,,Manufacturing,https://www.therobotreport.com/zebra-technologies-winding-down-fetch-based-mobile-robot-group/,Post-IPO,2000,United States,12/19/2025 +Believer Meats,"Jerusalem, Non-U.S.",,12/11/2025,,Food,https://www.calcalistech.com/ctechnews/article/bknaajdzbe,Series B,389,Israel,12/12/2025 +EyeEm,"Berlin, Non-U.S.",,12/11/2025,1.0,Other,https://petapixel.com/2025/12/11/eyeem-is-shutting-down/,Acquired,24,Germany,12/12/2025 +Lusha,Boston,24.0,12/10/2025,0.08,Sales,https://www.calcalistech.com/ctechnews/article/sybqqlwm11g,Series B,245,United States,12/12/2025 +Tenstorrent,"Toronto, Non-U.S.",80.0,12/9/2025,0.07,Hardware,https://www.eetimes.com/layoffs-at-tenstorrent-as-startup-pivots-towards-developer-sales/,Series D,1000,Canada,12/12/2025 +Whatfix,"Bengaluru, Non-U.S.",60.0,12/9/2025,0.06,AI,https://inc42.com/buzz/softbank-backed-whatfix-fires-60-employees/,Series E,265,India,2/7/2026 +VSCO,SF Bay Area,24.0,12/9/2025,,Consumer,https://techcrunch.com/2025/12/09/vsco-lays-off-24-staff-as-its-consumer-business-suffers/,Series B,90,United States,12/10/2025 +GenWise,"New Delhi, Non-U.S.",,12/9/2025,1.0,Other,https://inc42.com/buzz/exclusive-kunal-shah-backed-genwise-shuts-down-operations/,Seed,3,India,12/10/2025 +Mobileye,"Jerusalem, Non-U.S.",200.0,12/8/2025,0.04,Transportation,https://www.calcalistech.com/ctechnews/article/hjznnzvzzl,Post-IPO,2100,Israel,12/8/2025 +Payoneer,New York City,60.0,12/8/2025,0.06,Finance,https://www.calcalistech.com/ctechnews/article/s1fu4c4zzg,Post-IPO,,United States,12/8/2025 +Teads,New York City,180.0,12/4/2025,0.1,Marketing,https://www.calcalistech.com/ctechnews/article/skb9q0lgwl,Unknown,123,United States,12/10/2025 +Cellebrite,"Tel Aviv, Non-U.S.",20.0,12/3/2025,0.01,Other,https://www.calcalistech.com/ctechnews/article/izmghyvm1,Post-IPO,410,Israel,12/8/2025 +Modern Hydrogen,Seattle,,12/3/2025,,Energy,https://fuelcellsworks.com/2025/12/03/green-investment/bill-gates-backed-modern-hydrogen-lays-off-most-of-its-employees-after-decade-long-pursuit-of-clean-energy,Series B,99,United States,12/4/2025 +Aqua Security,"Tel Aviv, Non-U.S.",20.0,12/1/2025,,Security,https://www.calcalistech.com/ctechnews/article/4bzp62ggf,Series E,325,United States,12/2/2025 +Inbound Health,Minneapolis,,12/1/2025,1.0,Healthcare,https://www.axios.com/pro/health-tech-deals/2025/12/01/inbound-health-closing-home-care-waiver,Series B,50,United States,12/2/2025 +Junglee Games,"New Delhi, Non-U.S.",350.0,11/26/2025,,Consumer,https://inc42.com/buzz/junglee-games-parent-flutter-sheds-350-jobs-in-post-rmg-ban-recast/,Seed,3,India,12/9/2025 +Shopify,"Ottawa, Non-U.S.",,11/26/2025,,Retail,https://www.thecanadianpressnews.ca/business/shopify-lays-off-staff-to-keep-team-fast-sharp-and-focused/article_2b3b4e8c-4531-5e36-a0ad-b02a9f8e6b6a.html,Post-IPO,122,Canada,12/4/2025 +HP,SF Bay Area,4000.0,11/25/2025,,Hardware,https://www.wsj.com/tech/hp-to-cut-up-to-10-of-workforce-as-part-of-ai-push-a2c198da?mod=hp_lead_pos4,Post-IPO,,United States,3/1/2025 +ezCater,Boston,40.0,11/21/2025,0.04,Food,https://www.bizjournals.com/boston/news/2025/11/21/ezcater-tech-layoffs.html,Series D,319,United States,11/23/2025 +Monarch Tractor,SF Bay Area,102.0,11/19/2025,,Other,https://techcrunch.com/2025/11/19/monarch-tractor-preps-for-layoffs-and-warns-employees-it-may-shut-down/,Unknown,214,United States,11/23/2025 +Pleo,"Copenhagen, Non-U.S.",100.0,11/19/2025,0.12,Finance,https://tech.eu/2025/11/19/expense-management-firm-pleo-hit-by-layoffs/,Series C,428,Denmark,11/23/2025 +UKG,"Montevideo, Non-U.S.",300.0,11/18/2025,,HR,https://www.elobservador.com.uy/cafe-y-negocios/la-multinacional-ukg-cierra-sus-operaciones-uruguay-y-despide-300-profesionales-n6025098,Unknown,,Uruguay,11/23/2025 +Culture Amp,"Melbourne, Non-U.S.",60.0,11/18/2025,0.06,HR,https://www.capitalbrief.com/article/culture-amp-lays-off-6-of-its-staff-globally-as-it-focuses-on-new-ai-products-3d5073ac-879a-4e01-9a08-a513ead8834b/,Series F,257,Australia,11/23/2025 +Veson Nautical,Boston,,11/18/2025,0.2,Other,https://www.tradewindsnews.com/technology/veson-nautical-acknowledges-staff-cuts-after-growth-spurt/2-1-1902984,Private Equity,,United States,11/23/2025 +Playtika,"Tel Aviv, Non-U.S.",700.0,11/17/2025,0.2,Consumer,https://www.calcalistech.com/ctechnews/article/h1y4ejyg11g,Post-IPO,,Israel,11/23/2025 +Pipe,SF Bay Area,200.0,11/16/2025,0.5,Finance,https://fintechbusinessweekly.substack.com/p/celtic-bank-faces-another-lawsuit,Series D,453,United States,11/17/2025 +Flipkart,"Bengaluru, Non-U.S.",40.0,11/16/2025,,Retail,https://www.calcalistech.com/ctechnews/article/sk7ktewxwg,Acquired,12900,India,11/17/2025 +BharatAgri,"Mumbai, Non-U.S.",37.0,11/13/2025,1.0,Food,https://inc42.com/buzz/agritech-startup-bharatagri-shuts-operations-due-to-funding-crunch/,Series A,21,India,12/9/2025 +AI Fleet,Austin,,11/13/2025,,Transportation,https://www.bizjournals.com/austin/news/2025/11/13/layoffs-hit-at-austin-ai-startup.html,Series B,56,United States,11/14/2025 +Synopsys,SF Bay Area,2000.0,11/12/2025,0.1,Other,https://www.reuters.com/business/world-at-work/synopsys-cut-about-10-its-workforce-2025-11-12/,Post-IPO,,United States,11/14/2025 +Deepwatch,Tampa Bay,80.0,11/12/2025,0.32,Security,https://techcrunch.com/2025/11/12/cybersecurity-firm-deepwatch-lays-off-dozens-citing-move-to-accelerate-ai-investment/,Series C,256,United States,11/14/2025 +GamesKraft,"Bengaluru, Non-U.S.",280.0,11/10/2025,,Consumer,https://inc42.com/buzz/real-money-gaming-ban-gameskrafts-layoff-count-climbs-to-400/,Unknown,,India,11/11/2025 +Sonder,SF Bay Area,,11/10/2025,1.0,Travel,https://skift.com/2025/11/10/sonder-shuts-down-after-marriott-termination-marking-the-end-of-a-hospitality-experiment/,Post-IPO,839,United States,11/10/2025 +Axonius,New York City,100.0,11/6/2025,0.11,Security,https://www.calcalistech.com/ctechnews/article/sj0syry1wg,Series E,865,United States,11/7/2025 +MyBambu,Memphis,141.0,11/5/2025,1.0,Finance,https://cbs12.com/news/local/new-west-palm-beach-fintech-firm-to-lay-off-141-employees-amid-funding-collapse-layoff-south-florida-palm-beach-county-downtown-west-palm-beach-news-mybambu-a-fintech-startup-2751-s-dixie-hwy-420-november-5-2025,Unknown,15,United States,11/7/2025 +Hewlett Packard Enterprise,SF Bay Area,52.0,11/5/2025,,Hardware,https://www.sfchronicle.com/tech/article/layoffs-hpe-hitachi-vantara-21140900.php,Post-IPO,1400,United States,11/7/2025 +Indeed,Austin,,11/5/2025,,HR,https://www.businessinsider.com/indeed-layoffs-job-cuts-after-summer-reorg-2025-11,Acquired,5,United States,11/8/2025 +TripAdvisor,Boston,,11/5/2025,0.2,Travel,https://skift.com/2025/11/05/layoffs-hit-20-of-tripadvisor-viator-and-administrative-staff-scoop/,Post-IPO,3,United States,11/7/2025 +Porter,"Bengaluru, Non-U.S.",350.0,11/4/2025,0.18,Logistics,https://inc42.com/buzz/exclusive-porter-lays-off-over-350-employees/,Series F,357,India,11/7/2025 +Personio,"Munich, Non-U.S.",165.0,10/29/2025,0.1,HR,Internal memo,Series E,724,Germany,10/31/2025 +Amazon,Seattle,14000.0,10/27/2025,0.01,Retail,https://www.cnbc.com/2025/10/28/amazon-layoffs-corporate-workers-ai.html,Post-IPO,8100,United States,10/28/2025 +Chegg,SF Bay Area,388.0,10/27/2025,0.45,Education,https://www.reuters.com/sustainability/boards-policy-regulation/hit-by-ai-edtech-firm-chegg-slashes-jobs-names-new-ceo-major-overhaul-2025-10-27/,Post-IPO,227,United States,10/28/2025 +Lightricks,"Jerusalem, Non-U.S.",85.0,10/27/2025,0.15,Consumer,https://www.calcalistech.com/ctechnews/article/byvtpanceg,Series D,335,Israel,11/7/2025 +Medtronic,"Jerusalem, Non-U.S.",60.0,10/27/2025,,Healthcare,https://www.calcalistech.com/ctechnews/article/s1g3z02cgg,Post-IPO,5900,United States,12/8/2025 +Hootsuite,"Vancouver, Non-U.S.",,10/27/2025,0.2,Marketing,https://www.biv.com/news/technology/hootsuite-laying-off-hundreds-of-staff-20-of-workforce-11405954,Series C,300,Canada,10/28/2025 +Robin AI,"London, Non-U.S.",,10/24/2025,0.33,Legal,https://sifted.eu/articles/robin-ai-cuts-a-third-of-staff,Series B,68,United Kingdom,10/28/2025 +Applied Material,SF Bay Area,1400.0,10/23/2025,0.04,Manufacturing,https://www.bloomberg.com/news/articles/2025-10-23/applied-materials-to-cut-4-of-global-staff-after-sales-slow,Post-IPO,2100,United States,10/25/2025 +Rivian,Los Angeles,600.0,10/23/2025,0.04,Transportation,https://www.reuters.com/business/autos-transportation/rivian-lay-off-more-than-600-workers-amid-ev-pullback-wsj-reports-2025-10-23/,Post-IPO,10700,United States,10/25/2025 +Kaseya,Miami,200.0,10/23/2025,,Security,https://www.crn.com/news/channel-news/2026/kaseya-lays-off-5-percent-of-workforce-to-align-our-go-to-market-teams?itc=refresh,Private Equity,547,United States,1/13/2026 +Altruist,SF Bay Area,50.0,10/23/2025,0.15,Finance,https://www.investmentnews.com/ria-news/altruist-lays-off-50-employees-but-ceo-says-profitability-is-in-sight/262681,Series E,449,United States,10/25/2025 +Meta,SF Bay Area,600.0,10/22/2025,,Consumer,https://www.cnbc.com/2025/10/22/meta-layoffs-ai.html,Post-IPO,26000,United States,10/22/2025 +Ludeo,Los Angeles,25.0,10/20/2025,0.5,Consumer,https://www.calcalistech.com/ctechnews/article/bjukuox0xe,Series A,42,United States,10/25/2025 +Zepto,"Mumbai, Non-U.S.",300.0,10/18/2025,0.05,Retail,https://www.moneycontrol.com/news/business/startup/around-300-employees-impacted-at-zepto-amid-cost-efficiency-drive-at-the-quick-commerce-company-13622853.html,Series H,2600,India,12/2/2025 +Broadcom,SF Bay Area,247.0,10/17/2025,,Hardware,https://www.businessinsider.com/broadcom-layoffs-rifs-cuts-sales-staff-ai-expansion-2025-10,Post-IPO,,United States,11/11/2025 +Tia,New York City,,10/17/2025,0.23,Healthcare,https://www.businessinsider.com/womens-health-startup-tia-cut-23-of-workforce-layoff-2025-10,Series B,133,United States,10/25/2025 +Bill.com,SF Bay Area,,10/15/2025,0.06,Finance,https://www.bill.com/blog/a-message-to-bill-employees,Post-IPO,280,United States,10/15/2025 +OfferUp,Seattle,,10/15/2025,,Retail,https://www.geekwire.com/2025/offerup-hit-with-new-round-of-layoffs-as-marketplace-plans-to-simplify-its-offerings/,Unknown,381,United States,10/22/2025 +Handshake,SF Bay Area,100.0,10/14/2025,0.15,Recruiting,https://www.upstartsmedia.com/p/handshake-refounding-layoff-ai,Series F,434,United States,10/15/2025 +Smartsheet,Seattle,120.0,10/2/2025,,Other,https://www.geekwire.com/2025/smartsheet-cuts-jobs-shortly-after-departure-of-longtime-ceo/,Post-IPO,152,United States,10/6/2025 +Google,SF Bay Area,50.0,10/2/2025,,Consumer,https://www.sfchronicle.com/tech/article/google-bay-area-layoffs-21081705.php,Post-IPO,26,United States,10/6/2025 +Paycom,Oklahoma City,500.0,10/1/2025,,HR,https://www.oklahoman.com/story/business/information-technology/2025/10/01/paycom-layoffs-2025-workers-replaced-with-ai/86448337007/,Post-IPO,,United States,10/1/2025 +Google,SF Bay Area,100.0,10/1/2025,,Consumer,https://www.cnbc.com/2025/10/01/google-cloud-unit-layoffs.html,Post-IPO,26,United States,10/6/2025 +Simpl,"Bengaluru, Non-U.S.",80.0,10/1/2025,,Finance,https://inc42.com/buzz/bnpl-startup-simpl-lays-off-80-employees-after-rbi-whiplash/,Series B,72,India,10/1/2025 +Just Eat,"Amsterdam, Non-U.S.",450.0,9/25/2025,0.05,Food,https://www.reuters.com/business/world-at-work/just-eat-lay-off-around-450-employees-partly-automating-operations-2025-09-25/,Acquired,129,Netherlands,9/29/2025 +GamesKraft,"Bengaluru, Non-U.S.",120.0,9/18/2025,,Consumer,https://inc42.com/buzz/now-gameskraft-lays-off-120-employees/,Unknown,,India,9/25/2025 +ZipRecruiter,"Tel Aviv, Non-U.S.",80.0,9/16/2025,,Recruiting,https://www.calcalistech.com/ctechnews/article/pwjukv20s,Post-IPO,769,United States,9/16/2025 +Fiverr,"Tel Aviv, Non-U.S.",250.0,9/15/2025,0.3,Other,https://www.wsj.com/business/fiverr-to-cut-about-250-jobs-in-refocusing-effort-reiterates-guidance-8f15ee4b,Post-IPO,111,Israel,9/16/2025 +Sorbet,"Tel Aviv, Non-U.S.",,9/14/2025,,Finance,https://www.calcalistech.com/ctechnews/article/syhzsenjxl,Series A,58,Israel,12/8/2025 +Hike,"New Delhi, Non-U.S.",,9/13/2025,1.0,Consumer,https://techcrunch.com/2025/09/13/hike-once-a-unicorn-shuts-down-as-india-cracks-down-on-real-money-gaming/,Unknown,261,India,9/15/2025 +xAI,SF Bay Area,500.0,9/12/2025,,AI,https://www.businessinsider.com/elon-musk-xai-layoffs-data-annotators-2025-9,Unknown,22700,United States,9/15/2025 +Zupee,"New Delhi, Non-U.S.",170.0,9/11/2025,0.3,Consumer,https://yourstory.com/2025/09/zupee-employees-real-money-gaming-ban-layoffs,Series B,121,India,9/15/2025 +Atlassian,"Sydney, Non-U.S.",200.0,9/10/2025,,Other,https://www.ziptone.nl/en/nieuws/atlassian-schrapt-200-customerservicebanen-in-nederland-en-frankrijk/,Post-IPO,210,Australia,9/18/2025 +Verbit,New York City,22.0,9/10/2025,,Data,https://www.calcalistech.com/ctechnews/article/r19t0xjixg,Series E,569,United States,12/8/2025 +Microsoft,Seattle,42.0,9/8/2025,,Other,https://www.bizjournals.com/seattle/news/2025/09/08/microsoft-lays-off-dozens-more-employees-in-wa.html,Post-IPO,1,United States,9/8/2025 +Rivian,Los Angeles,200.0,9/5/2025,0.01,Transportation,https://www.latimes.com/business/story/2025-09-08/rivian-lays-off-employees-new-suv-tax-credits,Post-IPO,10700,United States,9/8/2025 +Scope3,New York City,,9/5/2025,,Energy,https://www.adweek.com/media/scope3-lays-off-sales-staff-ai-agentic-advertising-restructuring/,Series B,45,United States,9/8/2025 +Head Digital Works,"Hyderabad, Non-U.S.",500.0,9/4/2025,,Consumer,https://entrackr.com/news/a23-parent-lays-off-500-employees-following-rmg-ban-report-9901016,Private Equity,74,India,9/8/2025 +Salesforce,SF Bay Area,262.0,9/4/2025,,Sales,https://www.kron4.com/news/bay-area/salesforce-laying-off-262-employees-in-san-francisco-after-ceo-praises-ai/,Post-IPO,65,United States,9/8/2025 +Oracle,SF Bay Area,254.0,9/4/2025,,Other,https://www.kron4.com/news/technology-ai/oracle-bay-area-layoffs/,Post-IPO,,United States,9/8/2025 +GupShup,SF Bay Area,100.0,9/4/2025,,Other,https://inc42.com/buzz/exclusive-gupshup-lays-off-100-employees-in-cost-cutting-exercise/,Series F,484,India,9/8/2025 +Bobble AI,"New Delhi, Non-U.S.",50.0,9/4/2025,,Consumer,https://entrackr.com/exclusive/exclusive-bobble-ai-lays-off-50-employees-amid-organizational-redesign-9888363,Unknown,59,India,9/8/2025 +Oracle,Seattle,101.0,9/3/2025,,Other,https://www.seattletimes.com/business/cloud-computing-giant-oracle-lays-off-more-seattle-workers/,Post-IPO,,United States,9/8/2025 +Salesforce,Seattle,93.0,9/3/2025,,Sales,https://www.seattletimes.com/business/seattle-area-tech-layoffs-mount-with-salesforce-and-oracle-job-cuts/,Post-IPO,65,United States,9/8/2025 +Salesforce,"Dublin, Non-U.S.",30.0,9/3/2025,,Sales,https://www.thejournal.ie/salesforce-ireland-redundancies-6806486-Sep2025/,Post-IPO,65,United States,9/8/2025 +The Gist,"Tel Aviv, Non-U.S.",,9/3/2025,1.0,Other,https://www.calcalistech.com/ctechnews/article/jeyngl375,Seed,7,Israel,9/8/2025 +theGist,"Tel Aviv, Non-U.S.",,9/3/2025,1.0,Other,https://www.calcalistech.com/ctechnews/article/jeyngl375,Seed,7,Israel,12/8/2025 +Vimeo,New York City,,9/3/2025,0.1,Consumer,https://www.linkedin.com/posts/phmoyer_today-we-announced-that-we-will-be-reducing-activity-7369003115422851074-qHt-/,Post-IPO,450,United States,9/8/2025 +Oracle,Kansas City,,9/2/2025,,Other,https://www.kmbc.com/article/oracle-layoffs-kansas-city-cerner-employees/65961940,Post-IPO,,United States,9/8/2025 +Games 24x7,"Mumbai, Non-U.S.",400.0,9/1/2025,,Consumer,https://www.peoplematters.in/news/strategic-hr/after-mpl-games24x7-lays-off-400-employees-govt-steps-in-43232,Unknown,75,India,9/2/2025 +Mobile Premier League,"Bengaluru, Non-U.S.",300.0,9/1/2025,,Consumer,https://timesofindia.indiatimes.com/technology/tech-news/online-gaming-app-ban-mpl-to-layoff-60-of-india-staff/articleshow/123618820.cms,Series E,375,India,9/2/2025 +Krutrim,"Bengaluru, Non-U.S.",50.0,9/1/2025,,AI,https://www.techinasia.com/news/olas-krutrim-cuts-nearly-50-linguistics-staff-in-third-layoff,Unknown,304,India,9/2/2025 +Salesforce,SF Bay Area,4000.0,8/31/2025,,Sales,https://www.businessinsider.com/marc-benioff-says-salesforce-cut-4000-roles-because-of-agents-2025-9,Post-IPO,65,United States,9/2/2025 +Flip,SF Bay Area,,8/29/2025,1.0,Consumer,https://www.sfgate.com/tech/article/flip-startup-shuts-down-billion-21022297.php,Series C,294,United States,8/30/2025 +Rec Room,Seattle,141.0,8/27/2025,,Consumer,https://www.geekwire.com/2025/filing-rec-room-layoffs-impact-141-employees-at-seattle-gaming-startup/,Series F,294,United States,8/30/2025 +Verily,SF Bay Area,,8/26/2025,,Healthcare,https://www.businessinsider.com/alphabets-verily-lays-off-staff-cuts-its-devices-program-2025-8,Subsidiary,3500,United States,8/30/2025 +Klaviyo,Boston,,8/25/2025,,Marketing,https://www.theinformation.com/briefings/klaviyo-restructures-r-d-teams-emphasizes-ai-technical-skills,Unknown,778,United States,8/25/2025 +BeepKart,"Bengaluru, Non-U.S.",150.0,8/23/2025,1.0,Retail,https://inc42.com/buzz/exclusive-stellaris-backed-beepkart-shuts-down/,Series A,19,India,8/23/2025 +TikTok,"London, Non-U.S.",,8/22/2025,,Consumer,https://www.wsj.com/tech/tiktok-to-lay-off-hundreds-of-u-k-content-moderators-in-ai-push-d040ae21,Acquired,,United Kingdom,8/23/2025 +Cisco,SF Bay Area,221.0,8/19/2025,,Infrastructure,https://www.sfchronicle.com/tech/article/cisco-oracle-layoffs-bay-area-20824135.php,Post-IPO,2,United States,8/23/2025 +Oracle,SF Bay Area,101.0,8/19/2025,,Other,https://www.sfchronicle.com/tech/article/cisco-oracle-layoffs-bay-area-20824135.php,Post-IPO,,United States,8/23/2025 +Kyte,SF Bay Area,,8/15/2025,1.0,Transportation,https://techcrunch.com/2025/08/15/kyte-which-billed-itself-as-the-best-competitor-to-hertz-shuts-down/,Unknown,548,United States,8/18/2025 +Restaurant365,Los Angeles,100.0,8/14/2025,0.09,Food,https://www.restaurantbusinessonline.com/technology/tech-supplier-restaurant365-lays-9-staff,Series C,127,United States,8/18/2025 +Oracle,SF Bay Area,289.0,8/13/2025,,Other,https://www.pleasantonweekly.com/business/2025/08/19/dozens-of-pleasanton-workers-hit-by-wave-of-oracle-layoffs/,Post-IPO,,United States,9/8/2025 +Oracle,SF Bay Area,188.0,8/13/2025,,Other,https://www.sfchronicle.com/tech/article/oracle-tech-layoffs-20818166.php,Post-IPO,,United States,8/18/2025 +Oracle,Seattle,161.0,8/13/2025,,Other,https://www.geekwire.com/2025/oracle-lays-off-161-employees-in-seattle-as-part-of-broader-reported-cuts-impacting-cloud-business/,Post-IPO,,United States,8/18/2025 +F5,Seattle,106.0,8/13/2025,0.02,Security,https://www.geekwire.com/2024/f5-confirms-new-round-of-job-cuts-continuing-annual-pattern-of-workforce-reductions/,Post-IPO,,United States,8/18/2025 +Micron,Boise,300.0,8/12/2025,,Hardware,https://www.scmp.com/tech/big-tech/article/3321613/micron-starts-lay-offs-china-us-memory-chipmaker-retreats-mobile-nand-market,Post-IPO,50,United States,11/11/2025 +BenchSci,"Toronto, Non-U.S.",83.0,8/12/2025,0.23,Healthcare,https://www.theglobeandmail.com/business/article-benchsci-job-cuts-replace-humans-with-ai/?intcmp=gift_share,Series D,164,Canada,8/23/2025 +Amdocs,St. Louis,,8/12/2025,,Support,https://www.calcalistech.com/ctechnews/article/legpd5dv7,Post-IPO,,United States,8/18/2025 +Crunchyroll,"Tokyo, Non-U.S.",,8/12/2025,,Media,https://www.thewrap.com/crunchyroll-restructuring-layoffs/,Acquired,26,Japan,8/18/2025 +Kaltura,New York City,70.0,8/7/2025,0.1,Media,https://www.calcalistech.com/ctechnews/article/6a8duhohw,Post-IPO,166,United States,8/10/2025 +Nextdoor,SF Bay Area,67.0,8/7/2025,0.12,Consumer,https://www.bloomberg.com/news/articles/2025-08-07/nextdoor-cuts-12-of-workforce-in-quest-for-profitability,Post-IPO,736,United States,8/18/2025 +Peloton,New York City,,8/7/2025,0.06,Fitness,https://www.reuters.com/technology/peloton-cut-more-jobs-forecasts-strong-2026-revenue-shares-rise-2025-08-07/,Post-IPO,1900,United States,8/10/2025 +Yotpo,New York City,200.0,8/5/2025,0.34,Marketing,https://www.calcalistech.com/ctechnews/article/s1cc5uk00xx,Unknown,436,United States,8/5/2025 +Windsurf,SF Bay Area,30.0,8/5/2025,,AI,https://techcrunch.com/2025/08/05/three-weeks-after-acquiring-windsurf-cognition-offers-staff-the-exit-door/,Acquired,243,United States,8/10/2025 +Wondery,Los Angeles,100.0,8/4/2025,,Media,https://variety.com/2025/biz/news/amazon-reorganizes-audio-wondery-audible-jen-sargent-exit-1236477796/,Acquired,15,United States,8/5/2025 +Clear,"Bengaluru, Non-U.S.",145.0,8/1/2025,0.16,Finance,https://entrackr.com/news/clear-cuts-16-of-workforce-amid-peak-tax-filing-season-9628272,Series C,140,India,8/5/2025 +Atlassian,"Sydney, Non-U.S.",150.0,7/30/2025,,Other,https://au.finance.yahoo.com/news/atlassian-billionaire-spruiks-ai-as-ceo-fires-150-workers-over-video-in-scary-digital-revolution-052623412.html,Post-IPO,210,Australia,7/30/2025 +Astra,"Bengaluru, Non-U.S.",106.0,7/28/2025,1.0,Sales,https://inc42.com/buzz/aravind-srinivas-backed-ai-startup-astra-shuts-operations/,Unknown,,India,8/5/2025 +Krutrim,"Bengaluru, Non-U.S.",100.0,7/28/2025,,AI,https://inc42.com/buzz/krutrim-lays-off-over-100-staff-in-fresh-job-cuts-report/,Unknown,304,India,7/30/2025 +Eyeo,"Cologne, Non-U.S.",,7/28/2025,0.4,,https://www.adexchanger.com/privacy/eyeo-names-new-ceo-cuts-40-of-staff-and-refocuses-the-business-on-privacy/,Unknown,,Germany,7/30/2025 +Ohm Mobility,Bengaluru,,7/24/2025,1.0,Transportation,https://entrackr.com/snippets/ev-financing-startup-ohm-mobility-shuts-down-operations-9534248,Seed,,India,7/26/2025 +Tipalti,SF Bay Area,,7/24/2025,,Finance,https://www.calcalistech.com/ctechnews/article/syrnrsyvgg,Series F,565,United States,7/26/2025 +PlaxidityX,"Tel Aviv, Non-U.S.",65.0,7/23/2025,0.36,Security,https://www.calcalistech.com/ctechnews/article/rk1c9mclxl,Acquired,25,Israel,12/8/2025 +WiseTech,"Sydney, Non-U.S.",,7/23/2025,,Logistics,https://www.reuters.com/world/asia-pacific/australias-wisetech-cut-some-jobs-ai-driven-efficiency-push-2025-07-23/,Post-IPO,3000,Australia,7/24/2025 +ConsenSys,New York City,47.0,7/22/2025,0.07,Crypto,https://www.bloomberg.com/news/articles/2025-07-22/crypto-software-firm-consensys-eliminates-about-7-of-workforce,Series D,726,United States,7/22/2025 +Zeen,SF Bay Area,,7/21/2025,1.0,Consumer,https://www.businessinsider.com/social-media-creator-economy-collage-startup-zeen-shutting-down-2025-7,Unknown,9,United States,7/22/2025 +Rocket Companies,Detroit,,7/18/2025,0.02,Real Estate,https://www.housingwire.com/articles/rocket-lays-off-2-of-workforce-after-closing-redfin-acquisition/,Post-IPO,5200,United States,7/22/2025 +TytoCare,New York City,35.0,7/17/2025,0.22,Healthcare,https://www.calcalistech.com/ctechnews/article/sjv1k6i8xx,Series E,206,United States,10/6/2025 +Amazon,Seattle,,7/17/2025,,Retail,https://www.reuters.com/business/retail-consumer/amazons-aws-cloud-computing-unit-cuts-least-hundreds-jobs-sources-say-2025-07-17/,Post-IPO,8100,United States,7/18/2025 +Amicole,New York City,,7/17/2025,1.0,Retail,https://techcrunch.com/2025/07/17/after-raising-over-3m-popular-vc-backed-beauty-brand-ami-cole-is-shuttering/,Seed,5,United States,7/18/2025 +CodeParrot,"Bengaluru, Non-U.S.",,7/17/2025,1.0,Product,https://inc42.com/buzz/another-startup-bites-the-dust-y-combinator-backed-codeparrot-shuts-down/,Seed,,India,7/18/2025 +Scale AI,SF Bay Area,200.0,7/16/2025,0.14,Data,https://www.bloomberg.com/news/articles/2025-07-16/scale-ai-to-cut-14-of-staff-following-meta-investment,Series E,602,United States,7/17/2025 +Lenovo,Raleigh,100.0,7/16/2025,0.03,Hardware,https://www.newsobserver.com/news/business/article310699130.html,Post-IPO,850,United States,7/18/2025 +Jamf,Minneapolis,166.0,7/15/2025,0.06,Other,https://www.bizjournals.com/twincities/news/2025/07/16/jamf-lays-off-166-employees.html,Post-IPO,332,United States,7/15/2025 +King.com,"Stockholm, Non-U.S.",200.0,7/14/2025,,Consumer,https://mobilegamer.biz/laid-off-king-staff-set-to-be-replaced-by-the-ai-tools-they-helped-build-say-sources/,Acquired,84,Sweden,7/17/2025 +Blip,"Bengaluru, Non-U.S.",,7/12/2025,1.0,Retail,https://inc42.com/buzz/quick-fashion-startup-blip-shuts-shop/,Unknown,,India,7/15/2025 +Intel,Sacramento,5000.0,7/11/2025,,Hardware,https://www.manufacturingdive.com/news/intel-layoffs-surpass-5000-across-California-Oregon-Arizona-Texas/752756/,Post-IPO,12,United States,7/17/2025 +TripleLift,New York City,,7/11/2025,,Marketing,https://www.adexchanger.com/publishers/triplelift-quietly-lays-off-a-double-digit-percentage-of-its-workforce/,Acquired,16,United States,7/18/2025 +Indeed + Glassdoor,Austin,1300.0,7/10/2025,,HR,https://www.bloomberg.com/news/articles/2025-07-10/indeed-glassdoor-to-cut-1-300-jobs-in-ai-focused-consolidation,Acquired,5,United States,7/10/2025 +Augury,New York City,60.0,7/10/2025,0.18,Manufacturing,https://www.calcalistech.com/ctechnews/article/sk7t511thxx,Series E,274,United States,12/8/2025 +Eigen Labs,Seattle,29.0,7/8/2025,0.25,Crypto,https://blockworks.co/news/eigen-layoffs-25-eigencloud,Unknown,234,United States,7/11/2025 +Nayax,"Tel Aviv, Non-U.S.",70.0,7/7/2025,0.06,Finance,https://www.calcalistech.com/ctechnews/article/bjzblekrel,Post-IPO,245,Israel,12/8/2025 +Subtl AI,"Hyderabad, Non-U.S.",,7/3/2025,1.0,AI,https://inc42.com/buzz/genai-startup-subtl-ai-shuts-shop-after-failing-to-raise-funds/,Seed,,India,7/7/2025 +Microsoft,Seattle,9000.0,7/2/2025,0.04,Other,https://www.cnbc.com/2025/07/02/microsoft-laying-off-about-9000-employees-in-latest-round-of-cuts.html,Post-IPO,1,United States,7/2/2025 +Retrain.ai,New York City,20.0,7/2/2025,1.0,HR,https://www.calcalistech.com/ctechnews/article/s1avcuzhgg,Unknown,34,Israel,12/8/2025 +Okra,"Lagos, Non-U.S.",,7/2/2025,1.0,Finance,https://techpoint.africa/news/okra-cofounder-fara-jituboh-exits/,Series A,12,Nigeria,7/7/2025 +TikTok,"Dublin, Non-U.S.",,7/2/2025,,Consumer,https://www.bloomberg.com/news/articles/2025-07-02/tiktok-shop-cuts-more-us-workers-in-third-round-since-april,Acquired,,Ireland,7/2/2025 +TomTom,"Amsterdam, Non-U.S.",300.0,6/30/2025,0.1,Other,https://www.tomtom.com/newsroom/press-releases/earnings-other/29121/tomtom-advances-its-product-led-strategy-and-realigns-its-organization/,Post-IPO,430,Netherlands,7/7/2025 +Rivian,Los Angeles,140.0,6/26/2025,0.01,Transportation,https://techcrunch.com/2025/06/26/rivian-cuts-dozens-on-manufacturing-team-ahead-of-r2-launch/,Post-IPO,10700,United States,6/27/2025 +Bumble,Austin,240.0,6/25/2025,0.3,Consumer,https://www.cnbc.com/2025/06/25/bumble-layoffs.html,Post-IPO,313,United States,6/25/2025 +Klue,"Vancouver, Non-U.S.",85.0,6/25/2025,0.4,Sales,https://betakit.com/klue-lays-off-40-percent-of-staff-as-startup-faces-internal-and-external-ai-pressure/,Series B,83,Canada,6/25/2025 +Google,SF Bay Area,75.0,6/24/2025,,Consumer,https://www.theinformation.com/articles/google-cuts-smart-tv-budget-doubles-youtube,Post-IPO,26,United States,6/25/2025 +Intel,Sacramento,,6/24/2025,,Hardware,https://www.oregonlive.com/silicon-forest/2025/06/intel-will-shut-down-its-automotive-business-lay-off-most-of-the-departments-employees.html,Post-IPO,12,United States,6/25/2025 +Microsoft,Seattle,,6/24/2025,,Other,https://www.bloomberg.com/news/articles/2025-06-24/microsoft-plans-major-job-cuts-at-xbox-gaming-division?accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzb3VyY2UiOiJTdWJzY3JpYmVyR2lmdGVkQXJ0aWNsZSIsImlhdCI6MTc1MDc3Mjc0NiwiZXhwIjoxNzUxMzc3NTQ2LCJhcnRpY2xlSWQiOiJTWUQ0VkxEV1JHRzAwMCIsImJjb25uZWN0SWQiOiJCMUVBQkI5NjQ2QUM0REZFQTJBRkI4MjI1MzgyQTJFQSJ9.iMkVuxzB6m6hT_Rpwa-NQCTCvDapSt1DaRfpnGaqUSw&embedded-checkout=true&leadSource=uverify%20wall,Post-IPO,1,United States,6/25/2025 +Pluralsight,Salt Lake City,,6/24/2025,0.17,Education,https://www.sltrib.com/news/business/2025/06/26/pluralsight-is-leaving-utah-after/,Acquired,192,United States,6/27/2025 +Khoros,Austin,116.0,6/20/2025,,Sales,https://www.bizjournals.com/austin/news/2025/06/20/layoffs-at-austin-social-media-co-khoros.html,Private Equity,138,United States,6/20/2025 +Sabi,"Lagos, Non-U.S.",50.0,6/19/2025,0.2,Retail,https://techcrunch.com/2025/06/20/after-raising-38m-african-e-commerce-startup-sabi-lays-off-20-pivots-to-traceable-exports/,Series B,66,Nigeria,6/21/2025 +Intel,"Tel Aviv, Non-U.S.",,6/17/2025,,Hardware,https://www.calcalistech.com/ctechnews/article/pgg42xgob,Post-IPO,12,Israel,7/17/2025 +Salto,"Tel Aviv, Non-U.S.",30.0,6/10/2025,0.5,Other,https://www.calcalistech.com/ctechnews/article/byxvfir7lx,Series B,69,Israel,6/12/2025 +ZoomInfo,"Vancouver, Non-U.S.",150.0,6/9/2025,0.04,Sales,https://www.oregonlive.com/silicon-forest/2025/06/zoominfo-one-of-portland-areas-most-valuable-companies-will-cut-200-jobs.html,Post-IPO,7,Canada,6/10/2025 +Playtika,"Tel Aviv, Non-U.S.",90.0,6/5/2025,,Consumer,https://www.calcalistech.com/ctechnews/article/hjhutnrggg,Post-IPO,,Israel,6/10/2025 +Airtime,New York City,25.0,6/4/2025,0.43,Consumer,https://techcrunch.com/2025/06/04/its-layoff-season-at-phil-libins-airtime/,Series B,33,United States,6/5/2025 +Microsoft,Seattle,305.0,6/2/2025,0.03,Other,https://www.geekwire.com/2025/new-filing-microsoft-cuts-another-305-jobs-in-washington-state/,Post-IPO,1,United States,6/5/2025 +Hims & Hers,SF Bay Area,68.0,5/30/2025,0.04,Healthcare,https://www.reuters.com/business/healthcare-pharmaceuticals/hims-cut-4-workforce-amid-ban-weight-loss-drug-copies-2025-05-30/,Post-IPO,1200,United States,6/5/2025 +Business Insider,New York City,,5/29/2025,0.2,Media,https://www.adweek.com/media/business-insider-layoffs-traffic-sensitivity/,Acquired,56,United States,6/1/2025 +eBay,"Tel Aviv, Non-U.S.",200.0,5/28/2025,,Retail,https://www.calcalistech.com/ctechnews/article/hywdt44mxx,Post-IPO,1200,Israel,6/1/2025 +Cars24,"Gurugram, Non-U.S.",120.0,5/27/2025,,Transportation,https://inc42.com/buzz/cars24-to-fire-120-more-employees-in-restructuring-exercise/,Series G,1300,India,5/28/2025 +nCino,Wilmington,,5/27/2025,0.07,Finance,https://www.housingwire.com/articles/ncino-workforce-layoffs-artificial-intelligence-technology/,Post-IPO,1100,United States,5/28/2025 +Otipy,"New Delhi, Non-U.S.",300.0,5/23/2025,1.0,Food,https://economictimes.indiatimes.com/tech/startups/subscription-based-grocery-provider-otipy-shuts-shop-impacts-300-employees/articleshow/121367249.cms?from=mdr,Series B,44,India,5/26/2025 +LeddarTech,"Quebec, Non-U.S.",138.0,5/22/2025,0.95,Transportation,https://betakit.com/leddartech-cuts-95-percent-of-staff-in-bid-to-rescue-its-business/,Post-IPO,402,Canada,5/22/2025 +Climeworks,"Zurich, Non-U.S.",106.0,5/21/2025,0.22,Energy,https://www.bloomberg.com/news/articles/2025-05-21/carbon-removal-startup-climeworks-is-cutting-22-of-staff,Private Equity,734,Switzerland,5/22/2025 +Builder.ai,"London, Non-U.S.",,5/20/2025,1.0,AI,https://techcrunch.com/2025/05/20/once-worth-over-1b-microsoft-backed-builder-ai-is-running-out-of-money/,Series D,445,United Kingdom,5/22/2025 +Luminar,Orlando,,5/20/2025,,Transportation,https://techcrunch.com/2025/05/20/luminar-kicks-off-another-round-of-layoffs-amid-ceos-sudden-resignation/,Post-IPO,780,United States,5/26/2025 +Blink Charging,Baltimore,,5/19/2025,0.2,Other,https://blinkcharging.com/news/blink-charging-announces-workforce-reduction-to-accelerate-blinkforward-initiative-and-strengthen-global-market-position,Post-IPO,110,United States,5/22/2025 +VerSe Innovation copy,"Bengaluru, Non-U.S.",350.0,5/18/2025,,Media,https://inc42.com/buzz/josh-dailyhunt-parent-verse-innovation-lays-off-350-employees/,Series J,1700,India,5/22/2025 +GroundGame Health,Tampa Bay,97.0,5/15/2025,,Healthcare,https://www.bizjournals.com/tampabay/news/2025/05/15/groundgame-health-layoffs.html,Series A,17,United States,5/16/2025 +Noogata,"Tel Aviv, Non-U.S.",10.0,5/15/2025,1.0,AI,https://www.calcalistech.com/ctechnews/article/bjluv00711xe,Series A,28,Israel,5/16/2025 +Amazon,Seattle,100.0,5/14/2025,,Retail,https://www.cnbc.com/2025/05/14/amazon-lays-off-about-100-employees-in-devices-and-services-unit.html,Post-IPO,8100,United States,5/16/2025 +Microsoft,Seattle,6000.0,5/13/2025,0.03,Other,https://www.cnbc.com/2025/05/13/microsoft-is-cutting-3percent-of-workers-across-the-software-company.html,Post-IPO,1,United States,5/13/2025 +Chegg,SF Bay Area,248.0,5/12/2025,0.22,Education,https://www.reuters.com/world/americas/chegg-lay-off-22-workforce-ai-tools-shake-up-edtech-industry-2025-05-12/,Post-IPO,227,United States,5/12/2025 +Match Group,New York City,325.0,5/8/2025,0.13,Consumer,https://www.bloomberg.com/news/articles/2025-05-08/match-group-cuts-13-staff-in-latest-move-to-reverse-declines,Post-IPO,,United States,5/9/2025 +CrowdStrike,SF Bay Area,500.0,5/7/2025,0.05,Security,https://www.wsj.com/business/crowdstrike-to-cut-5-of-workforce-8eda42ed?st=dVSJCS&reflink=desktopwebshare_permalink,Post-IPO,1200,United States,5/7/2025 +Games 24x7,"Mumbai, Non-U.S.",180.0,5/7/2025,,Consumer,https://www.storyboard18.com/gaming-news/games-24x7-cuts-staff-amid-gst-dispute-industry-turmoil-64843.htm,Unknown,75,India,9/2/2025 +OpenText,"Waterloo, Non-U.S.",1600.0,5/6/2025,,Data,https://betakit.com/opentext-makes-ai-number-one-priority-as-company-slashes-1600-jobs/,Post-IPO,1100,Canada,5/16/2025 +GenWise,"New Delhi, Non-U.S.",15.0,5/5/2025,0.2,Other,https://entrackr.com/exclusive/exclusive-z47-backed-genwise-lays-off-20-of-workforce-9036952,Seed,3,India,5/5/2025 +General Fusion,"Vancouver, Non-U.S.",,5/5/2025,0.25,Energy,https://techcrunch.com/2025/05/05/layoffs-hit-general-fusion-as-the-fusion-power-startup-runs-short-on-cash/,Unknown,370,Canada,5/5/2025 +Deep Instinct,"Tel Aviv, Non-U.S.",20.0,5/4/2025,0.1,Security,https://www.calcalistech.com/ctechnews/article/bjfqkgbglx,Unknown,322,Israel,5/5/2025 +Log 9 Materials,"Bengaluru, Non-U.S.",,5/2/2025,1.0,Manufacturing,https://inc42.com/features/log9-materials-collapse-battery-tech-startup-cash-crunch/,Series B,32,India,5/3/2025 +Beam,"Bristol, Non-U.S.",200.0,5/1/2025,1.0,Other,https://sifted.eu/articles/beam-robotics-shuts-down,Unknown,,United Kingdom,5/3/2025 +Bench,SF Bay Area,,5/1/2025,,Finance,https://techcrunch.com/2025/05/01/fintech-bench-conducts-layoff-while-others-still-work-month-to-month/,Acquired,109,United States,5/3/2025 +NetApp,SF Bay Area,700.0,4/30/2025,0.06,Data,https://blocksandfiles.com/2025/04/30/netapp-making-layoffs/,Post-IPO,,United States,5/3/2025 +Electronic Arts,SF Bay Area,300.0,4/29/2025,,Consumer,https://www.bloomberg.com/news/articles/2025-04-29/electronic-arts-lays-off-hundreds-cancels-titanfall-game,Post-IPO,2,United States,5/3/2025 +Stem,SF Bay Area,,4/29/2025,0.27,Energy,https://seekingalpha.com/news/4437501-stem-announces-27-percent-workforce-reduction-with-30m-savings-target-for-2025,Post-IPO,583,United States,5/3/2025 +Expedia,Seattle,,4/28/2025,0.03,Travel,https://skift.com/2025/04/28/expedia-restructures-product-and-tech-teams-will-lay-off-3-of-workforce/,Post-IPO,3300,United States,5/3/2025 +Spotter,Los Angeles,,4/28/2025,,Other,https://www.businessinsider.com/amazon-backed-creator-startup-spotter-lays-off-staffers-2025-5,Unknown,238,United States,5/3/2025 +Tomorrow,Seattle,,4/28/2025,1.0,Hardware,https://thespoon.tech/next-gen-fridge-startup-tomorrow-shuts-down/,Unknown,,United States,5/3/2025 +Cars24,"Gurugram, Non-U.S.",200.0,4/26/2025,,Transportation,https://entrackr.com/exclusive/exclusive-cars24-lays-off-200-employees-9003193,Series G,1300,India,4/29/2025 +Cars24,"Gurugram, Non-U.S.",200.0,4/26/2025,,Transportation,https://inc42.com/buzz/cars24-lays-off-200-staff-in-restructuring-exercise/,Series G,1300,India,12/9/2025 +SambaNova,SF Bay Area,77.0,4/25/2025,0.15,AI,https://www.eetimes.com/sambanova-lays-off-15-of-workforce-to-refocus-on-inference/,Series D,1100,United States,5/3/2025 +Meta,SF Bay Area,100.0,4/24/2025,,Consumer,https://www.bloomberg.com/news/articles/2025-04-24/meta-lays-off-more-than-100-staff-across-reality-labs-unit,Post-IPO,26000,United States,4/29/2025 +Intel,Sacramento,22000.0,4/23/2025,0.2,Hardware,https://www.bloomberg.com/news/articles/2025-04-23/intel-to-announce-plans-this-week-to-cut-more-than-20-of-staff?srnd=homepage-americas,Post-IPO,12,United States,4/23/2025 +Zopper,"Noida, Non-U.S.",100.0,4/17/2025,,Finance,https://inc42.com/buzz/elevation-capital-backed-zopper-fires-100-employees/,Series D,125,India,4/18/2025 +Turo,SF Bay Area,150.0,4/16/2025,0.17,Transportation,https://www.bloomberg.com/news/articles/2025-04-16/car-rental-startup-turo-cuts-15-of-workers-after-icing-ipo,Series E,467,United States,4/16/2025 +AppLovin,SF Bay Area,97.0,4/16/2025,,Marketing,https://www.pocketgamer.biz/applovin-lays-off-97-staff/,Post-IPO,1600,United States,4/19/2025 +Smashing,SF Bay Area,7.0,4/16/2025,1.0,Consumer,https://techcrunch.com/2025/04/16/smashing-the-reading-curation-app-by-goodreads-founder-shuts-down/,Seed,3,United States,4/18/2025 +GupShup,SF Bay Area,200.0,4/15/2025,,Other,https://inc42.com/buzz/exclusive-saas-unicorn-gupshup-fires-500-employees/,Series F,484,India,4/16/2025 +Sonder,SF Bay Area,,4/14/2025,,Travel,https://skift.com/2025/04/14/sonder-announces-50-million-in-layoffs-and-spending-cuts-ahead-of-marriott-integration/,Post-IPO,839,United States,4/16/2025 +Forto,"Berlin, Non-U.S.",200.0,4/12/2025,,Logistics,https://www.businessinsider.de/gruenderszene/automotive-mobility/forto-entlassungen-gruende/,Series D,593,Germany,4/16/2025 +Google,SF Bay Area,,4/11/2025,,Consumer,https://www.reuters.com/technology/google-lays-off-hundreds-employees-android-pixel-group-information-reports-2025-04-11/,Post-IPO,26,United States,4/16/2025 +Marin Software,SF Bay Area,,4/10/2025,1.0,Marketing,https://searchengineland.com/marin-software-shutting-down-454228,Post-IPO,99,United States,4/16/2025 +Wing Cloud,"Tel Aviv, Non-U.S.",,4/9/2025,1.0,Infrastructure,https://www.calcalistech.com/ctechnews/article/bj90wnmrjl#google_vignette,Seed,,Israel,4/16/2025 +Coho AI,"Tel Aviv, Non-U.S.",,4/6/2025,1.0,Sales,https://www.calcalistech.com/ctechnews/article/hjkodbg0jg,Seed,8,Israel,4/16/2025 +Five9,SF Bay Area,123.0,4/3/2025,0.04,Support,https://www.marketwatch.com/story/five9-to-cut-4-of-workforce-cd4da325,Post-IPO,862,United States,4/16/2025 +Tract,"London, Non-U.S.",,4/3/2025,,Real Estate,https://sifted.eu/articles/ai-proptech-startup-tract-blog,Unknown,,United Kingdom,4/6/2025 +Automattic,SF Bay Area,281.0,4/2/2025,0.16,Other,https://techcrunch.com/2025/04/02/wordpress-maker-automattic-lays-off-16-of-staff/,Series E,986,United States,4/2/2025 +Canva,"Sydney, Non-U.S.",10.0,4/2/2025,,Consumer,https://www.afr.com/technology/canva-shocks-employees-with-ai-related-job-cuts-20250331-p5lo06,Unknown,2500,Australia,4/2/2025 +WhyHive,"Melbourne, Non-U.S.",,4/2/2025,1.0,Data,https://www.startupdaily.net/topic/business/data-analytics-startup-whyhive-is-shutting-down-2-years-after-raising-600000/,Seed,,Australia,4/6/2025 +Zomato,"Gurugram, Non-U.S.",600.0,4/1/2025,,Food,https://inc42.com/buzz/zomato-trims-600-jobs-amid-increasing-automation-quick-commerce-wars/,Series J,914,India,12/9/2025 +Northvolt,"Stockholm, Non-U.S.",2800.0,3/31/2025,0.62,Energy,https://sifted.eu/articles/northvolt-lays-off-half-of-staff-as-bankrupt-battery-maker-seeks-buyer,Unknown,13800,Sweden,4/1/2025 +2U,Washington D.C.,,3/31/2025,,Education,https://www.classcentral.com/report/2u-layoffs-march-2025/,Post-IPO,426,United States,4/1/2025 +Palantir,Denver,120.0,3/27/2025,,Data,https://finance.yahoo.com/news/palantir-just-cut-over-60-192816370.html,Post-IPO,3000,United States,4/1/2025 +Block,SF Bay Area,931.0,3/25/2025,0.08,Finance,https://techcrunch.com/2025/03/25/read-the-email-jack-dorsey-sent-when-he-cut-931-of-blocks-staff/,Post-IPO,150,United States,3/26/2025 +Niantic,SF Bay Area,68.0,3/25/2025,,Other,https://www.sfgate.com/tech/article/niantic-spatial-layoffs-ferry-building-20240572.php,Series D,770,United States,3/27/2025 +Prefect,Washington D.C.,20.0,3/25/2025,,Data,https://www.bizjournals.com/washington/inno/stories/profiles/2025/03/25/prefect-technologies-job-cuts-jeremiah-lowin.html,Series B,47,United States,3/27/2025 +Brightcove,Boston,198.0,3/19/2025,0.33,Marketing,https://www.boston.com/news/business/2025/03/19/boston-based-streaming-company-brightcove-to-lay-off-198-workers/,Acquired,145,United States,3/21/2025 +Acxiom,Little Rock,130.0,3/19/2025,0.03,Marketing,https://adage.com/article/agency-news/acxiom-lays-35-staff-more-130-employees/2606146,Post-IPO,,United States,3/21/2025 +HelloFresh,SF Bay Area,273.0,3/17/2025,,Food,https://www.grocerydive.com/news/hellofresh-close-texas-distribution-centers-cut-nearly-300-jobs/742616/,Post-IPO,367,United States,3/18/2025 +Otorio,"Tel Aviv, Non-U.S.",45.0,3/17/2025,0.56,Security,https://www.calcalistech.com/ctechnews/article/sjz9nob2jl,Acquired,,Israel,3/18/2025 +ActiveFence,New York City,22.0,3/13/2025,0.07,Security,https://www.calcalistech.com/ctechnews/article/hjvqbqg3jx,Series B,100,United States,3/14/2025 +D-ID,"Tel Aviv, Non-U.S.",22.0,3/10/2025,0.25,AI,https://www.calcalistech.com/ctechnews/article/bjrzoinjjg,Series B,48,Israel,3/12/2025 +Arrival,"London, Non-U.S.",,3/10/2025,1.0,Transportation,https://sifted.eu/articles/arrival-sales-collapse-news,Post-IPO,629,United Kingdom,3/12/2025 +Zonar Systems,Seattle,,3/9/2025,,Logistics,https://www.bizjournals.com/seattle/news/2025/03/09/zonar-systems-layoffs-gps-trackit-inverness-graham.html,Acquired,50,United States,3/12/2025 +Wayfair ,Boston,340.0,3/7/2025,,Retail,https://finance.yahoo.com/news/retailer-wayfair-restructures-technology-team-135556649.html,Post-IPO,1700,Germany,3/7/2025 +Hewlett Packard Enterprise,SF Bay Area,2500.0,3/6/2025,0.05,Hardware,https://www.cnbc.com/2025/03/06/hewlett-packard-enterprise-hpe-q1-earnings-report-2025.html,Post-IPO,1400,United States,3/7/2025 +TikTok,"Dublin, Non-U.S.",300.0,3/6/2025,,Consumer,https://www.rte.ie/news/ireland/2025/0306/1500535-tik-tok-ireland/,Acquired,,Ireland,3/7/2025 +LiveRamp,SF Bay Area,65.0,3/5/2025,0.05,Marketing,https://www.benzinga.com/news/guidance/25/03/44189581/saas-company-liveramp-lays-off-5-of-full-time-workforce-amid-strategic-restructuring,Post-IPO,16,United States,3/7/2025 +Ola Electric,"Bengaluru, Non-U.S.",1000.0,3/3/2025,,Transportation,https://inc42.com/buzz/ola-electric-to-cut-over-1k-jobs-amid-rising-losses-report/,Post-IPO,1700,India,3/5/2025 +Rec Room,Seattle,,3/3/2025,0.16,Consumer,https://blog.recroom.com/posts/2025/3/3/rec-room-update-march-2025,Series F,294,United States,3/5/2025 +ANS Commerce,"Gurugram, Non-U.S.",,3/2/2025,1.0,Retail,https://www.etnownews.com/technology/flipkart-shuts-down-ans-commerce-after-3-years-lays-off-employees-amid-e-commerce-restructuring-details-article-118657546,Acquired,2,India,3/3/2025 +HP,SF Bay Area,4000.0,2/28/2025,0.1,Hardware,https://www.sfchronicle.com/tech/article/hp-job-cuts-tariff-concerns-20193141.php,Post-IPO,,United States,11/27/2025 +Grubhub,SF Bay Area,500.0,2/28/2025,0.23,Food,https://www.reuters.com/technology/food-delivery-company-grubhub-lay-off-500-positions-2025-02-28/,Acquired,284,United States,3/1/2025 +Autodesk,SF Bay Area,1350.0,2/27/2025,0.09,Other,https://www.cnbc.com/2025/02/27/autodesk-says-it-will-cut-1350-employees.html,Post-IPO,,United States,2/28/2025 +Digimarc,Portland,90.0,2/27/2025,0.4,Other,https://www.oregonlive.com/silicon-forest/2025/02/digimarc-shares-plunge-as-oregon-company-lays-off-40-of-its-staff.html,Post-IPO,105,United States,3/5/2025 +Google,SF Bay Area,,2/27/2025,,Consumer,https://www.cnbc.com/2025/02/27/google-makes-cuts-to-hr-and-cloud-units.html,Post-IPO,26,United States,2/28/2025 +Flywire,Boston,125.0,2/26/2025,,Finance,https://www.bostonglobe.com/2025/02/26/business/student-visa-cutback-flywire-stock-price/,Series E,263,United States,3/1/2025 +eBay,"Tel Aviv, Non-U.S.",20.0,2/26/2025,,Retail,https://www.calcalistech.com/ctechnews/article/bjgsl8n9yl,Post-IPO,1200,Israel,2/28/2025 +Commercetools,"Munich, Non-U.S.",,2/26/2025,0.1,Retail,https://techcrunch.com/2025/02/26/commercetools-a-pioneer-in-headless-commerce-lays-off-dozens-of-staff/,Series C,119,Germany,2/28/2025 +Dayforce,"Toronto, Non-U.S.",,2/26/2025,0.05,HR,https://www.marketwatch.com/story/dayforce-to-cut-about-5-of-workforce-in-efficiency-drive-2eabda38?mod=investing,Post-IPO,40,Canada,2/28/2025 +Expedia,Seattle,,2/26/2025,,Travel,https://www.geekwire.com/2025/expedia-confirms-layoffs-at-seattle-travel-giant/,Post-IPO,3300,United States,2/28/2025 +Skybox Security,SF Bay Area,300.0,2/24/2025,1.0,Security,https://www.calcalistech.com/ctechnews/article/s1wi4rc5yl,Private Equity,335,United States,2/26/2025 +HerMD,Cincinnati,,2/24/2025,1.0,Healthcare,https://www.bizjournals.com/cincinnati/inno/stories/news/2025/02/24/hermd-womens-health-startup-closing-venture.html,Series A,28,United States,2/26/2025 +Ibotta,Denver,70.0,2/22/2025,0.08,Retail,https://coloradosun.com/2025/02/22/fired-federal-workers-eligible-colorado-unemployment-benefits/#h-other-working-bits,Post-IPO,93,United States,2/24/2025 +NetEase,"Tokyo, Non-U.S.",,2/22/2025,,Consumer,https://www.techinasia.com/news/netease-cuts-jobs-projects-as-growth-remains-slow,Post-IPO,,Japan,2/23/2025 +Zendesk,SF Bay Area,51.0,2/21/2025,,Support,https://www.kron4.com/news/bay-area/zendesk-lays-off-dozens-of-employees-at-sf-headquarters/,Acquired,85,United States,2/21/2025 +Electriq Global,"Tel Aviv, Non-U.S.",,2/21/2025,1.0,Energy,https://www.calcalistech.com/ctechnews/article/syqy71l91e,Unknown,8,Israel,2/26/2025 +SeatGeek,New York City,150.0,2/20/2025,0.15,Consumer,https://www.theticketingbusiness.com/2025/02/20/seatgeek-to-slash-headcount-by-15-outgoing-employees-claim/,Series E,400,United States,2/21/2025 +Vendease,"Lagos, Non-U.S.",120.0,2/19/2025,0.44,Food,https://techcabal.com/2025/02/19/vendease-second-layoffs/,Series A,43,Nigeria,2/21/2025 +Riskified,New York City,,2/19/2025,,Retail,https://www.calcalistech.com/ctechnews/article/h1hkriq91l,Post-IPO,229,United States,2/21/2025 +Logically,"Manchester, Non-U.S.",40.0,2/17/2025,0.2,AI,https://sifted.eu/articles/anti-misinformation-startup-logically-lays-off-dozens-in-global-cost-cutting-drive,Series A,37,United Kingdom,2/18/2025 +Eviation Aircraft,"Tel Aviv, Non-U.S.",,2/14/2025,,Aerospace,https://www.aerotime.aero/articles/electric-startup-eviation-lays-off-staff-as-it-seeks-funding-media-reports,Acquired,140,Israel,2/18/2025 +Blue Origin,Seattle,1000.0,2/13/2025,0.1,Aerospace,https://www.cnn.com/2025/02/13/science/blue-origin-employee-layoffs/index.html,Unknown,167,United States,2/15/2025 +Metro Africa Xpress,"Lagos, Non-U.S.",150.0,2/13/2025,,Logistics,https://techcabal.com/2025/02/13/max-laid-off-150-employees/,Unknown,64,Nigeria,3/28/2025 +Sophos,"Oxford, Non-U.S.",,2/13/2025,0.06,Security,https://techcrunch.com/2025/02/13/sophos-lays-off-6-of-workforce-following-secureworks-acquisition/,Acquired,125,United Kingdom,2/13/2025 +Redfin,Seattle,450.0,2/12/2025,,Real Estate,https://www.realestatenews.com/2025/02/12/redfin-to-cut-450-roles-following-zillow-rentals-deal,Post-IPO,320,United States,2/18/2025 +Zepz,"London, Non-U.S.",200.0,2/12/2025,0.2,Finance,https://www.cnbc.com/2025/02/12/fintech-unicorn-zepz-to-lay-off-200-employees-sources-say.html,Series E,700,United Kingdom,2/12/2025 +Getaround,SF Bay Area,,2/12/2025,,Transportation,https://www.sfchronicle.com/bayarea/article/s-f-based-getaround-lay-nearly-u-s-based-20164114.php,Series D,403,United States,2/13/2025 +Unity,SF Bay Area,,2/11/2025,,Other,https://www.theverge.com/news/610165/unity-layoffs-2025-runtime-fee,Post-IPO,1300,United States,2/12/2025 +Meta,SF Bay Area,3600.0,2/10/2025,0.05,Consumer,https://finance.yahoo.com/news/mark-zuckerberg-warned-employees-prepare-174916671.html,Post-IPO,26000,United States,1/16/2025 +Wise,Tampa Bay,300.0,2/10/2025,,Finance,https://www.tampabay.com/news/business/2025/02/10/wise-close-tampa-offices-cutting-more-than-300-jobs/,Post-IPO,300,United States,2/26/2025 +Justworks,New York City,200.0,2/10/2025,,HR,https://www.justworks.com/press/company-news/a-note-from-justworks-ceo-mike-seckler,Unknown,160,United States,2/11/2025 +MessageBird,"Amsterdam, Non-U.S.",120.0,2/10/2025,0.33,Other,https://techcrunch.com/2025/02/10/bird-cuts-120-jobs-as-part-of-strategic-realignment/,Series C,1100,Netherlands,2/11/2025 +Sprinklr,New York City,500.0,2/6/2025,0.15,Support,https://techcrunch.com/2025/02/06/sprinklr-cuts-500-employees-citing-underwhelming-business-performance/,Post-IPO,429,United States,2/8/2025 +NanoLock,"Tel Aviv, Non-U.S.",,2/6/2025,1.0,Security,https://www.calcalistech.com/ctechnews/article/rjgagxmkyl,Series B,18,Israel,2/26/2025 +Workday,SF Bay Area,1750.0,2/5/2025,0.08,HR,https://www.cnbc.com/2025/02/05/workday-to-cut-1750-jobs-in-ai-push.html,Post-IPO,230,United States,2/5/2025 +Gemini,New York City,200.0,2/5/2025,,Crypto,https://www.reuters.com/business/world-at-work/gemini-space-station-plans-cut-200-jobs-2026-02-05/,Unknown,423,United States,2/6/2026 +Outbrain,New York City,200.0,2/5/2025,,Marketing,https://www.calcalistech.com/ctechnews/article/rkxxve11yyl,Post-IPO,394,United States,2/5/2025 +Sonos,Santa Barbara,200.0,2/5/2025,0.12,Consumer,https://www.theverge.com/news/607022/sonos-february-layoffs-app-problems,Post-IPO,455.2,United States,2/5/2025 +SRTX,"Montreal, Non-U.S.",140.0,2/5/2025,,Manufacturing,https://substack.com/inbox/post/156526787,Unknown,151,Canada,2/5/2025 +Tabnine,"Tel Aviv, Non-U.S.",15.0,2/5/2025,0.18,AI,https://www.calcalistech.com/ctechnews/article/h1jlmiek1l,Series B,57,Israel,2/6/2025 +Hugging Face,New York City,10.0,2/5/2025,0.04,AI,https://www.theinformation.com/briefings/hugging-face-lays-off-4-of-staff,Series D,395,United States,2/6/2025 +Cruise,SF Bay Area,1000.0,2/4/2025,0.5,Transportation,https://techcrunch.com/2025/02/04/cruise-to-slash-workforce-by-50-after-gm-cuts-funding-to-robotaxi-operations/,Acquired,15000,United States,2/4/2025 +Okta,SF Bay Area,180.0,2/4/2025,0.03,Security,https://techcrunch.com/2025/02/04/okta-lays-off-180-employees-nearly-one-year-after-last-workforce-reduction/,Post-IPO,1200,United States,2/4/2025 +AppsFlyer,SF Bay Area,100.0,2/4/2025,0.07,Data,https://www.calcalistech.com/ctechnews/article/hjfbxkkt1e,Unknown,293,United States,2/4/2025 +Asana,SF Bay Area,100.0,2/4/2025,,Other,Internal memo,Post-IPO,453,United States,2/5/2025 +TripAdvisor,Boston,75.0,2/4/2025,,Travel,https://skift.com/2025/02/04/tripadvisor-fires-more-than-150-employees-and-contractors-scoop/,Post-IPO,3,United States,2/5/2025 +Intel,Sacramento,58.0,2/4/2025,,Hardware,https://folsomtimes.com/intel-announces-another-58-layoffs-for-folsom-campus/,Post-IPO,12,United States,2/21/2025 +Innoviz,"Tel Aviv, Non-U.S.",40.0,2/4/2025,0.09,Transportation,https://www.calcalistech.com/ctechnews/article/hydnmjjkjx,Post-IPO,547,Israel,12/8/2025 +Salesforce,SF Bay Area,1000.0,2/3/2025,0.01,Sales,https://finance.yahoo.com/news/salesforce-cut-1-000-roles-002028643.html,Post-IPO,65,United States,2/4/2025 +Sure,New York City,70.0,2/3/2025,,Finance,https://www.theinsurer.com/ti/news/embedded-insurtech-sure-slashes-headcount-by-around-70-amid-latest-fundraising-2025-02-03/,Series C,123,United States,2/5/2025 +Cushion,SF Bay Area,,1/30/2025,1.0,Finance,https://techcrunch.com/2025/01/30/fintech-startup-cushion-shuts-down-after-8-years-and-over-20-million-in-funding/,Series A,20,United States,2/2/2025 +Placer.ai,SF Bay Area,150.0,1/29/2025,0.18,Data,https://www.calcalistech.com/ctechnews/article/sj6ptuddye,Unknown,267,United States,1/30/2025 +Amazon,Seattle,,1/29/2025,,Retail,https://www.bloomberg.com/news/articles/2025-01-29/amazon-cuts-dozens-of-corporate-jobs-in-latest-round-of-layoffs,Post-IPO,8100,United States,2/2/2025 +Digital River,Minneapolis,122.0,1/28/2025,,Retail,https://www.startribune.com/digital-river-ecommerce-close-layoff-shut-down-microsoft-online-shop/601213069,Private Equity,50,United States,2/2/2025 +Aurora Labs,"Tel Aviv, Non-U.S.",45.0,1/27/2025,0.6,Transportation,https://www.calcalistech.com/ctechnews/article/rjh2d64ukx,Series C,97,Israel,12/8/2025 +Moon Active,"Tel Aviv, Non-U.S.",,1/27/2025,,Consumer,https://www.calcalistech.com/ctechnews/article/bjejkmruyg,Unknown,425,Israel,1/29/2025 +Stripe,SF Bay Area,300.0,1/21/2025,0.03,Finance,https://www.businessinsider.com/stripe-layoffs-staff-payments-memo-2025-1,Series I,8700,United States,1/21/2025 +Turso,"London, Non-U.S.",,1/21/2025,,Product,https://turso.tech/blog/upcoming-changes-to-the-turso-platform-and-roadmap,Seed,7,Canada,1/29/2025 +Unbabel,"Lisbon, Non-U.S.",66.0,1/20/2025,0.25,Support,https://observador.pt/2025/01/20/unbabel-reduz-equipa-tecnologica-portuguesa-fala-processo-de-reestruturacao-em-curso/,Series C,91,Portugal,1/29/2025 +Chrono24,"Karlsruhe, Non-U.S.",110.0,1/16/2025,0.24,Retail,https://usa.watchpro.com/chrono24-reboot-begins-with-one-in-four-workers-cut/,Series C,205,Germany,1/17/2025 +Pocket FM,"Bengaluru, Non-U.S.",75.0,1/16/2025,,Media,https://yourstory.com/2025/01/pocketfm-75-employees-pushes-toward-profitability,Series D,212,India,1/21/2025 +Aurora Solar,SF Bay Area,58.0,1/16/2025,,Energy,https://www.sfexaminer.com/news/technology/sf-green-tech-startup-aurora-solar-laying-off-dozens-again/article_a5fc0dbc-d450-11ef-95d2-03eab04fe214.html,Series D,523,United States,1/17/2025 +HeyJobs,"Berlin, Non-U.S.",90.0,1/15/2025,,Recruiting,https://aimgroup.com/2025/01/15/heyjobs-axes-90-workers-shuts-two-locations-anonymous-sources/,Series B,62,Germany,2/2/2025 +AppLovin,SF Bay Area,89.0,1/15/2025,,Marketing,https://www.pocketgamer.biz/applovin-lays-off-97-staff/,Post-IPO,1600,United States,4/19/2025 +ShareChat,"Bengaluru, Non-U.S.",27.0,1/15/2025,0.05,Marketing,https://entrackr.com/news/sharechat-cuts-5-jobs-as-part-of-performance-review-cycle-8623795,Series D,222,India,1/16/2025 +Textio,Seattle,15.0,1/15/2025,,Recruiting,https://www.geekwire.com/2025/augmented-writing-startup-textio-lays-off-more-employees-will-invest-in-different-mix-of-roles/,Unknown,42,United States,1/17/2025 +Advisor Credit Exchange,Philadelphia,,1/14/2025,1.0,Finance,https://citywire.com/ria/news/envestnet-backed-advisor-credit-exchange-to-shut-down-sources/a2457772,Unknown,31,United States,1/15/2025 +Microsoft,Seattle,,1/14/2025,,Other,https://www.businessinsider.com/microsoft-layoffs-hit-security-devices-sales-gaming-2025-1,Post-IPO,1,United States,1/15/2025 +TechCrunch,SF Bay Area,,1/14/2025,,Media,https://www.businessinsider.com/techcrunch-cuts-staff-amid-evolving-needs-2025-1,Acquired,,United States,1/17/2025 +Alza,New York City,,1/13/2025,1.0,Finance,https://fortune.com/2025/01/13/alza-fintech-latino-thrive-capital-stripe-level-employer-com-shut-down-venture/,Seed,7,United States,1/15/2025 +Boozt,"Malmo, Non-U.S.",,1/13/2025,0.1,Retail,https://www.breakit.se/artikel/42184/boozt-sager-upp-var-tionde-pekar-pa-ai,Post-IPO,56,Sweden,2/2/2025 +Wayfair,"Berlin, Non-U.S.",730.0,1/10/2025,0.03,Retail,https://www.cnbc.com/2025/01/10/wayfair-to-exit-germany-cut-730-jobs-in-latest-layoffs.html,Post-IPO,1700,Germany,1/12/2025 +Pandion,Seattle,63.0,1/10/2025,1.0,Logistics,https://www.geekwire.com/2025/heavily-funded-pandion-delivery-startup-closes-abruptly-in-latest-logistics-industry-fallout/,Series B,76,United States,1/12/2025 +Zillow,Seattle,,1/10/2025,,Real Estate,https://www.geekwire.com/2025/zillow-makes-job-cuts-after-reorganizing-agent-software-and-advertising-teams/,Post-IPO,97,United States,1/15/2025 +Icon,Austin,114.0,1/9/2025,,Construction,https://www.statesman.com/story/business/2025/01/09/icon-layoffs-austin-texas-3d-printing-company-100-employees/77573345007/,Series B,451,United States,1/12/2025 +Redfin,Seattle,46.0,1/9/2025,,Real Estate,https://www.geekwire.com/2025/redfin-lays-off-46-employees-in-latest-cuts-at-seattle-real-estate-company/,Post-IPO,320,United States,1/15/2025 +Altruist,SF Bay Area,37.0,1/7/2025,0.1,Finance,https://riabiz.com/a/2025/1/7/altruist-lays-off-10-of-its-staff-despite-300-revenue-jump-to-get-best-possible-people-as-aggressive-hiring-continues-says-ceo,Series E,449,United States,1/8/2025 +Aqua Security,Boston,,1/7/2025,,Security,https://www.calcalistech.com/ctechnews/article/rjd6qpclyx,Series E,325,United States,1/8/2025 +Cloud Software Group,SF Bay Area,,1/7/2025,,Other,https://www.crn.com/news/cloud/2025/citrix-parent-cloud-software-group-confirms-layoffs?itc=refresh,Unknown,,United States,1/12/2025 +Microsoft,Seattle,,1/7/2025,,Other,https://www.businessinsider.com/microsoft-plans-job-cuts-performance-management-2025-1,Post-IPO,1,United States,1/11/2025 +SolarEdge,"Tel Aviv, Non-U.S.",400.0,1/6/2025,,Energy,https://www.reuters.com/business/energy/solaredge-technologies-lay-off-400-employees-globally-2025-01-06/,Post-IPO,155,Israel,1/8/2025 +Level,New York City,,1/2/2025,1.0,Finance,https://www.pymnts.com/acquisitions/2025/report-benefits-startup-level-shuts-down-after-acquisition-falls-through,Series B,27,United States,1/4/2025 +GupShup,SF Bay Area,300.0,12/31/2024,,Other,https://inc42.com/buzz/exclusive-saas-unicorn-gupshup-fires-500-employees/,Series F,484,India,4/16/2025 +Brave Care,Portland,,12/31/2024,1.0,Healthcare,https://www.oregonlive.com/health/2024/12/portland-pediatrics-startup-brave-care-shutters-permanently.html,Series B,43,United States,1/4/2025 +Epicery,"Paris, Non-U.S.",,12/31/2024,1.0,Food,https://techcrunch.com/2024/12/31/after-ups-and-down-food-delivery-startup-epicery-closes-shop/,Acquired,7,France,1/4/2025 +Bench,"Vancouver, Non-U.S.",450.0,12/27/2024,1.0,Finance,https://techcrunch.com/2024/12/27/bench-shuts-down-leaving-thousands-of-businesses-without-access-to-accounting-and-tax-docs/,Series C,109,Canada,12/28/2024 +Lilium,"Munich, Non-U.S.",1000.0,12/23/2024,1.0,Aerospace,https://techcrunch.com/2024/12/23/electric-aircraft-startup-lilium-ceases-operations-1000-workers-laid-off/,Post-IPO,1400,Germany,12/28/2024 +BionicHIVE,"Sderot, Non-U.S.",,12/22/2024,1.0,Hardware,https://www.calcalistech.com/ctechnews/article/bjejbfsbyx,Unknown,,Israel,12/28/2024 +RealSelf,Seattle,,12/19/2024,,Healthcare,https://www.geekwire.com/2024/realself-layoffs-cosmetic-procedure-review-company-cuts-staff/,Series B,42,United States,1/15/2025 +Refinery29,New York City,,12/17/2024,,Media,https://www.axios.com/2024/12/17/refinery29-layoffs-ceo-cory-haik,Acquired,134,United States,12/18/2024 +Thrive,"Mumbai, Non-U.S.",,12/14/2024,1.0,Food,https://yourstory.com/2024/12/food-delivery-startup-thrive-to-shut-down-operations,Series A,,India,12/18/2024 +Cint,"Stockholm, Non-U.S.",,12/12/2024,0.12,Data,https://investors.cint.com/en/press/cint-reducing-its-cost-base-increase-efficiency-and-sets-date-strategy-update-2287372,Post-IPO,17,Sweden,2/8/2025 +Yahoo,SF Bay Area,,12/12/2024,,Consumer,https://techcrunch.com/2024/12/12/yahoo-cybersecurity-team-sees-layoffs-outsourcing-of-red-team-under-new-cto/,Acquired,6,United States,12/13/2024 +Foundry,Rochester,74.0,12/11/2024,0.27,Crypto,https://coingeek.com/foundry-lays-off-staff-as-marathon-hive-expand/,Subsidiary,,United States,12/13/2024 +Calendly,Atlanta,70.0,12/11/2024,0.13,Other,https://finance.yahoo.com/news/read-memo-calendlys-ceo-sent-133038639.html,Series B,351,United States,12/13/2024 +Canoo,Los Angeles,20.0,12/11/2024,,Transportation,https://eletric-vehicles.com/canoo/canoo-initiates-layoffs-as-bankruptcy-looms/,Post-IPO,300,United States,12/13/2024 +OfferUp,Seattle,,12/11/2024,0.22,Retail,https://www.geekwire.com/2024/offerup-cuts-22-of-staff-amid-expansion-beyond-used-goods-read-ceos-memo-to-staff/,Unknown,381,United States,12/13/2024 +Spotter,Los Angeles,,12/11/2024,,Other,https://www.theinformation.com/articles/spotter-a-startup-that-funds-youtubers-lays-off-staff-following-amazon-deal,Unknown,238,United States,12/13/2024 +Bluevine,"Tel Aviv, Non-U.S.",100.0,12/10/2024,0.18,Finance,https://www.calcalistech.com/ctechnews/article/bkfccpr4kx,Unknown,769,Israel,12/11/2024 +Spectrm,"Berlin, Non-U.S.",,12/10/2024,,Marketing,https://tech.eu/2024/12/10/when-layoffs-go-wrong/,Series B,11,Germany,12/18/2024 +EasyKnock,New York City,,12/9/2024,1.0,Real Estate,https://www.housingwire.com/articles/easyknock-fintech-abruptly-shuts-down/,Series D,440,United States,12/11/2024 +Carousell,"Singapore, Non-U.S.",76.0,12/6/2024,0.07,Retail,https://www.channelnewsasia.com/singapore/carousell-layoffs-december-2024-76-roles-strategic-market-resources-4791261,Unknown,375,Singapore,12/7/2024 +Mixtroz,Birmingham,,12/6/2024,1.0,Other,https://bhamnow.com/2024/12/06/mixtroz-co-founders-announce-shutting-down-operations/,Seed,2,United States,12/11/2024 +Circle,Boston,50.0,12/5/2024,0.06,Crypto,https://www.coindesk.com/business/2024/12/05/usdc-issuer-circle-makes-layoffs-as-part-of-operations-review-bloomberg,Private Equity,1100,United States,12/7/2024 +Vox Media,Washington D.C.,,12/5/2024,,Media,https://www.adweek.com/media/vox-media-layoffs-reorganizes-lifestyle-properties/,Series F,307,United States,12/7/2024 +Stash,New York City,88.0,12/4/2024,0.4,Finance,https://fortune.com/2024/12/04/stash-fintech-layoffs-ceo-departure-acquisition/,Unknown,480,United States,12/7/2024 +Booking Holdings,Norwalk,60.0,12/4/2024,,Travel,https://skift.com/2024/12/04/booking-holdings-laid-off-60-employees-at-b2b-arm-as-it-resets-priorities/,Post-IPO,2800,United States,12/7/2024 +2U,Washington D.C.,,12/4/2024,,Education,https://www.classcentral.com/report/2u-axes-trilogy-bootcamps-layoffs/,Post-IPO,426,United States,12/7/2024 +Skai,"Tel Aviv, Non-U.S.",80.0,12/3/2024,0.14,Marketing,https://www.calcalistech.com/ctechnews/article/bjorbhhmyg,Series E,60,Israel,12/11/2024 +Lightspeed Commerce,"Montreal, Non-U.S.",200.0,12/2/2024,,Retail,https://www.marketwatch.com/story/lightspeed-commerce-to-cut-200-jobs-17842379,Post-IPO,1200,Canada,12/3/2024 +Kobo360,"Lagos, Non-U.S.",30.0,11/30/2024,,Logistics,https://techcabal.com/2025/01/20/kobo360-layoff/,Series B,85,Nigeria,1/21/2025 +Klub,"Bengaluru, Non-U.S.",60.0,11/29/2024,,Finance,https://www.livemint.com/companies/start-ups/klub-halves-workforce-peak-xv-trifecta-capital-backed-fintech-startup-11732868338440.html,Unknown,35,India,12/1/2024 +SolarEdge,"Tel Aviv, Non-U.S.",500.0,11/27/2024,0.12,Energy,https://www.reuters.com/business/energy/inverter-maker-solaredge-reduce-12-its-workforce-2024-11-27/,Post-IPO,155,Israel,1/8/2025 +AlphaSense,New York City,150.0,11/27/2024,0.08,Other,https://news.bloomberglaw.com/daily-labor-report/market-research-firm-alphasense-cut-150-jobs-in-restructuring,Series F,1400,United States,11/28/2024 +Sprout Social,Chicago,,11/25/2024,,Marketing,https://docs.google.com/spreadsheets/d/18Grpra9ciB9dWzWJ2W0ao8WjCrm_t5foqFt6Ebb6aUo/edit?gid=1610497511#gid=1610497511,Post-IPO,111,United States,12/13/2024 +Apple,SF Bay Area,,11/24/2024,,Hardware,https://www.bloomberg.com/news/articles/2025-11-24/apple-aapl-cuts-jobs-across-its-sales-organization-in-rare-layoff,Post-IPO,1200,United States,11/27/2025 +Ola Electric,"Bengaluru, Non-U.S.",500.0,11/22/2024,,Transportation,https://www.techinasia.com/news/indias-ola-electric-cuts-500-employees-boost-profits,Post-IPO,1700,India,11/24/2024 +Adjust,"Berlin, Non-U.S.",304.0,11/22/2024,,Marketing,https://www.pocketgamer.biz/applovin-owned-adjust-lays-off-staff/,Acquired,256,Germany,11/24/2024 +Hopper,"Montreal, Non-U.S.",,11/22/2024,,Travel,https://skift.com/2024/11/22/hopper-restructures-with-job-cuts-for-the-second-time-in-a-year/,Unknown,730,Canada,11/24/2024 +LinkedIn,SF Bay Area,202.0,11/21/2024,0.01,Recruiting,https://www.theinformation.com/briefings/linkedin-lays-off-200-employees,Acquired,154,United States,11/24/2024 +Headspace,Los Angeles,,11/20/2024,0.13,Healthcare,https://bhbusiness.com/2024/11/20/headspace-axes-13-of-workforce-transition-therapist-network-to-part-time-and-contract-roles/,Unknown,216,United States,11/28/2024 +Own,New York City,,11/19/2024,,Data,https://www.bloomberg.com/news/articles/2024-11-19/salesforce-plans-layoffs-at-acquisition-own-in-strategy-shift,Acquired,507,United States,11/21/2024 +TrueLayer,"London, Non-U.S.",71.0,11/15/2024,0.25,Finance,https://www.cityam.com/former-fintech-unicorn-truelayer-laid-off-a-quarter-of-staff-in-one-day/,Series E,321,United Kingdom,11/21/2024 +Better Collective,"Copenhagen, Non-U.S.",300.0,11/14/2024,,Other,https://www.igbaffiliate.com/en/articles/117348/m-a-helps-better-collective-fend-off-trouble-in-q3-as-300-staff-layoffs-revealed/,Unknown,,Denmark,2/18/2025 +Kuku FM,"Mumbai, Non-U.S.",80.0,11/14/2024,,Media,https://inc42.com/buzz/kuku-fm-fires-100-employees-to-cut-costs/,Series C,71,India,11/15/2024 +AMD,SF Bay Area,1000.0,11/13/2024,0.04,Hardware,https://www.techopedia.com/news/amd-layoffs-amid-mixed-earnings-and-intel-merger-speculation,Post-IPO,,United States,11/13/2024 +AppLovin,SF Bay Area,120.0,11/13/2024,,Marketing,https://www.sfgate.com/tech/article/applovin-layoffs-stock-market-run-19920195.php,Post-IPO,1600,United States,11/16/2024 +Chegg,SF Bay Area,319.0,11/12/2024,0.21,Education,https://www.wsj.com/livecoverage/stock-market-today-dow-sp500-nasdaq-live-11-12-2024/card/online-education-company-chegg-to-lay-off-staff-as-ai-tools-weigh-on-revenue-targets-qYYbTOKMAe8OblSEyLUD,Post-IPO,227,United States,11/13/2024 +Forward,SF Bay Area,200.0,11/12/2024,1.0,Healthcare,https://www.theinformation.com/articles/forward-startup-behind-doctor-in-box-healthcare-modules-to-shut-down,Series E,325,United States,11/13/2024 +Lyra Health,SF Bay Area,77.0,11/12/2024,0.02,Healthcare,https://www.fiercehealthcare.com/digital-health/lyra-lays-2-workforce-amid-restructuring-impacting-non-clinicians,Series F,910,United States,11/21/2024 +New Relic,SF Bay Area,,11/12/2024,,Infrastructure,https://www.bizjournals.com/portland/news/2024/11/12/more-layoffs-new-relic-francisco-partners-tpg.html,Acquired,214,United States,11/13/2024 +Stoa,"Bengaluru, Non-U.S.",,11/12/2024,1.0,Education,https://inc42.com/buzz/alternative-mba-startup-stoa-shuts-operations/,Seed,,India,11/14/2024 +Enphase Energy,SF Bay Area,500.0,11/11/2024,0.17,Energy,https://www.sfgate.com/tech/article/enphase-energy-layoffs-workers-solar-19907535.php,Post-IPO,116,United States,11/12/2024 +23andMe,SF Bay Area,200.0,11/11/2024,0.4,Healthcare,https://www.wsj.com/tech/biotech/23andme-to-cut-workforce-by-40-discontinues-therapeutics-pipeline-8c818729,Post-IPO,1100,United States,11/12/2024 +Sword Health,New York City,13.0,11/11/2024,,Healthcare,https://www.businessinsider.com/3-billion-sword-health-cuts-physical-therapists-2024-11,Unknown,450,United States,11/12/2024 +Monarch Tractor,SF Bay Area,35.0,11/8/2024,0.1,Other,https://techcrunch.com/2024/11/08/monarch-tractor-lays-off-10-in-restructuring-towards-software-and-licensing-av-tech/,Unknown,214,United States,11/9/2024 +BigCommerce,Austin,,11/8/2024,,Retail,https://www.bizjournals.com/austin/news/2024/11/08/layoffs-bigcommerce-restructure-austin-tech.html,Post-IPO,224,United States,11/9/2024 +Booking.com,Grand Rapids,,11/8/2024,,Travel,https://skift.com/2024/11/08/booking-holdings-to-lay-off-employees-shift-spending-priorities/,Acquired,,United States,11/10/2024 +Exosonic,Los Angeles,,11/8/2024,1.0,Aerospace,https://techcrunch.com/2024/11/08/supersonic-aircraft-startup-exosonic-is-shutting-down/,Seed,4,United States,11/9/2024 +Freshworks,SF Bay Area,660.0,11/7/2024,0.13,Support,https://entrackr.com/news/freshworks-announces-13-layoffs-400-mn-stock-buyback-and-q3-results-7561767,Post-IPO,484,United States,11/7/2024 +Just Eat,"Amsterdam, Non-U.S.",300.0,11/7/2024,0.02,Food,https://www.dailymail.co.uk/news/article-14048375/just-eat-job-cuts-redundancies.html,Acquired,129,Netherlands,11/8/2024 +Opendoor,SF Bay Area,300.0,11/7/2024,0.17,Real Estate,https://investor.opendoor.com/static-files/b720864a-b9b8-4286-a2f0-d35abb057f17,Post-IPO,1900,United States,11/8/2024 +Akamai,Boston,250.0,11/7/2024,0.02,Security,https://www.bizjournals.com/boston/news/2024/11/07/akamai-layoffs-2024.html,Post-IPO,35,United States,11/8/2024 +ShareFile,Raleigh,199.0,11/7/2024,,Other,https://www.newsobserver.com/news/business/article295211124.html,Acquired,,United States,11/8/2024 +Personio,"Munich, Non-U.S.",115.0,11/7/2024,0.06,HR,https://www.businessinsider.de/gruenderszene/business/neue-entlassungswelle-bei-personio-115-leute-muessen-gehen/,Series E,724,Germany,11/7/2024 +iRobot,Boston,105.0,11/6/2024,0.16,Consumer,https://techcrunch.com/2024/11/06/irobot-lays-off-another-105-employees/,Post-IPO,30,United States,11/7/2024 +Outreach,Seattle,67.0,11/6/2024,0.09,Sales,https://www.geekwire.com/2024/outreach-cuts-9-of-workforce-in-latest-layoffs-at-seattle-sales-automation-startup/,Series G,489,United States,11/7/2024 +Avaya,Durham,,11/6/2024,,Other,https://www.uctoday.com/unified-communications/avaya-undergoes-another-round-of-layoffs/,Post-IPO,700,United States,11/8/2024 +Mozilla Foundation,SF Bay Area,,11/5/2024,0.3,Consumer,https://techcrunch.com/2024/11/05/mozilla-foundation-lays-off-30-staff-drops-advocacy-division/,Subsidiary,2.3,United States,11/6/2024 +Incredibuild,"Tel Aviv, Non-U.S.",18.0,11/4/2024,0.11,Product,https://www.calcalistech.com/ctechnews/article/1ifvf95ra,Acquired,35,Israel,11/6/2024 +Atera,"Tel Aviv, Non-U.S.",20.0,11/3/2024,0.06,Other,https://www.calcalistech.com/ctechnews/article/byvtjavbyg,Series B,102,Israel,11/4/2024 +Maven Clinic,New York City,60.0,11/1/2024,0.1,Healthcare,https://endpts.com/maven-clinic-cuts-10-of-workforce-weeks-after-raising-125m/,Series F,417,United States,11/2/2024 +Bowery Farming,New York City,,11/1/2024,1.0,Food,https://pitchbook.com/news/articles/bowery-indoor-farming-agtech-company-ceases-operations,Unknown,626,United States,11/2/2024 +Tidal,New York City,,10/31/2024,,Consumer,https://www.engadget.com/entertainment/music/tidal-which-is-in-dire-need-of-some-good-marketing-lays-off-its-entire-product-marketing-team-143045120.html,Acquired,,United States,10/31/2024 +Dropbox,SF Bay Area,527.0,10/30/2024,0.2,Other,https://techcrunch.com/2024/10/30/dropbox-is-laying-off-20-of-its-staff/,Post-IPO,1700,United States,10/30/2024 +Kraken,SF Bay Area,400.0,10/30/2024,0.15,Crypto,https://www.nytimes.com/2024/10/30/technology/kraken-cryptocurrency-layoff-ceo.html,Unknown,134,United States,10/31/2024 +Miro,SF Bay Area,275.0,10/30/2024,0.18,Other,https://www.theinformation.com/articles/productivity-startup-miro-to-lay-off-roughly-18-of-staff,Series C,476,United States,10/30/2024 +ConsenSys,New York City,163.0,10/29/2024,0.2,Crypto,https://decrypt.co/288832/ethereum-giant-consensys-layoffs-eth-slump,Series D,726,United States,10/30/2024 +F5,Seattle,100.0,10/29/2024,0.02,Security,https://www.geekwire.com/2024/f5-confirms-new-round-of-job-cuts-continuing-annual-pattern-of-workforce-reductions/,Post-IPO,,United States,10/30/2024 +Docker,SF Bay Area,,10/29/2024,0.1,Infrastructure,Internal memo,Series C,436,United States,10/30/2024 +dYdX,SF Bay Area,,10/29/2024,0.35,Crypto,https://cointelegraph.com/news/dydx-lays-off-thirty-five-percent-workforce-after-consensys-cuts,Series C,87,United States,10/30/2024 +Coursera,SF Bay Area,150.0,10/25/2024,0.1,Education,https://www.classcentral.com/report/cousera-layoffs-2024/,Post-IPO,458,United States,10/31/2024 +Kyte,SF Bay Area,,10/25/2024,0.4,Transportation,https://techcrunch.com/2024/10/25/rental-car-startup-kyte-slashes-staff-and-shrinks-to-two-markets-in-bid-for-survival/,Unknown,548,United States,10/26/2024 +Twelve,SF Bay Area,,10/25/2024,,Energy,https://www.linkedin.com/feed/update/urn:li:activity:7255308684677795840/,Unknown,844,United States,10/31/2024 +Airthings,"Oslo, Non-U.S.",,10/24/2024,,Hardware,https://www.airthings.com/hubfs/01_Website/investors/presentations/Airthings_ASA_Q324_Presentation.pdf,Unknown,,Norway,10/26/2024 +Catena Media,"Sliema, Non-U.S.",29.0,10/23/2024,,Marketing,https://whoswho.mt/en/catena-media-cuts-29-content-and-marketing-jobs,Unknown,,Malta,11/4/2024 +Upwork,SF Bay Area,,10/23/2024,0.21,Other,https://investors.upwork.com/news-releases/news-release-details/upwork-announces-organizational-changes-drive-continued,Post-IPO,168,United States,10/24/2024 +Venminder,Louisville,100.0,10/21/2024,,Security,https://www.bizjournals.com/louisville/inno/stories/news/2024/10/21/venminder-mass-layoff-elizabethtown-tech-2024.html,Acquired,49,United States,10/23/2024 +Jellysmack,New York City,22.0,10/21/2024,,Media,https://www.businessinsider.in/tech/news/jellysmack-is-laying-off-staff-as-it-scales-back-its-creator-program/articleshow/114434680.cms,Series C,22,France,10/23/2024 +Chief,New York City,,10/20/2024,,HR,https://africa.businessinsider.com/news/chief-the-networking-group-for-executive-women-has-laid-off-staff/rhnxmel,Series B,140,United States,10/23/2024 +CapWay,Atlanta,,10/17/2024,1.0,Finance,https://techcrunch.com/2024/10/16/y-combinator-backed-fintech-capway-has-shut-down/,Unknown,,United States,10/18/2024 +Meta,SF Bay Area,,10/16/2024,,Consumer,https://www.theverge.com/2024/10/16/24272195/meta-layoffs-whatsapp-instagram-reality-labs,Post-IPO,26000,United States,10/17/2024 +Gigamon,SF Bay Area,69.0,10/15/2024,,Data,https://www.sfgate.com/tech/article/gigamon-layoffs-elliott-investment-management-19839414.php,Acquired,23,United States,10/16/2024 +AppLovin,SF Bay Area,58.0,10/15/2024,,Marketing,https://www.pocketgamer.biz/applovin-owned-adjust-lays-off-staff/,Post-IPO,1600,United States,4/19/2025 +Fable,New York City,,10/15/2024,1.0,Product,https://www.fable.app/blog/fable-is-winding-down,Series A,19,United States,10/18/2024 +Bytedance,"Jakarta, Non-U.S.",500.0,10/11/2024,,Consumer,https://www.reuters.com/technology/bytedance-cuts-over-700-jobs-malaysia-shift-towards-ai-moderation-sources-say-2024-10-11/,Unknown,9400,Indonesia,10/11/2024 +Nikola,Phoenix,130.0,10/11/2024,0.15,Transportation,https://finance.yahoo.com/news/numbers-nikola-150000920.html,Post-IPO,3300,United States,10/17/2024 +Toplyne,"Bengaluru, Non-U.S.",,10/11/2024,1.0,Sales,https://www.linkedin.com/feed/update/urn:li:activity:7250449812049813504/,Series A,17,India,10/11/2024 +CareerBuilder + Monster,Chicago,200.0,10/10/2024,0.15,Recruiting,https://aimgroup.com/2024/10/10/200-laid-off-at-new-careerbuilder-monster-staff-cut-of-15-hits-all-departments-levels/,Acquired,,United States,10/11/2024 +GoWild,Louisville,,10/10/2024,1.0,Retail,https://www.bizjournals.com/louisville/inno/stories/news/2024/10/10/gowild-shuts-down-operations-luttrell-2024.html,Seed,8,United States,10/11/2024 +Toptal,SF Bay Area,,10/10/2024,,Recruiting,https://www.theinformation.com/briefings/toptal-lays-off-workers-as-remote-hiring-demand-ebbs,Unknown,,United States,10/10/2024 +Grabango,SF Bay Area,,10/9/2024,1.0,Food,https://www.cnbc.com/2024/10/09/amazon-just-walk-out-rival-shutters-after-failing-to-secure-funding.html,Unknown,94,United States,10/11/2024 +BeepKart,"Bengaluru, Non-U.S.",130.0,10/8/2024,0.4,Retail,https://inc42.com/buzz/exclusive-beepkart-fires-130-employees-in-5-months-to-cut-costs-halves-store-count/,Series A,19,India,10/9/2024 +Zapp,"London, Non-U.S.",,10/8/2024,0.9,Food,https://www.uktech.news/foodtech/grocery-startup-zapp-losses-with-heavy-cuts-20241008,Series B,300,United Kingdom,10/9/2024 +Eaze,SF Bay Area,500.0,10/7/2024,1.0,Consumer,https://www.sfgate.com/cannabis/article/eaze-california-layoffs-19820734.php,Series D,202,United States,10/7/2024 +PubMatic,SF Bay Area,12.0,10/7/2024,0.01,Marketing,https://www.businessinsider.com/adtech-company-pubmatic-layoffs-staff-reductions-2024-10,Post-IPO,63,United States,10/7/2024 +Zapata Computing,Boston,,10/7/2024,1.0,Other,https://ir.zapata.ai/node/7701/html,Post-IPO,82,United States,10/15/2024 +AppLovin,SF Bay Area,65.0,10/3/2024,,Marketing,https://www.pocketgamer.biz/applovin-owned-adjust-lays-off-staff/,Post-IPO,1600,United States,4/19/2025 +Tome,SF Bay Area,12.0,10/2/2024,0.31,Sales,https://www.theinformation.com/briefings/early-generative-ai-startup-leader-tome-lays-of-31-of-staff,Series B,75,United States,10/2/2024 +Alma,New York City,,10/2/2024,0.09,Healthcare,https://bhbusiness.com/2024/10/02/citing-need-to-re-focus-resources-digital-therapy-platform-alma-lays-off-9-of-staff/,Series D,220,United States,10/3/2024 +Flexport,SF Bay Area,,10/2/2024,0.02,Logistics,https://www.freightwaves.com/news/flexport-to-reduce-workforce-amid-company-reorganization,Series E,2400,United States,10/4/2024 +ABBYY,Nicosia,200.0,10/1/2024,,Data,https://www.bignewsnetwork.com/news/274659725/us-tech-giant-fires-russian-expats,Unknown,6,Cyprus,10/3/2024 +FreshBooks,"Toronto, Non-U.S.",140.0,10/1/2024,,Finance,https://www.freshbooks.com/blog/a-letter-from-mara,Unknown,331,Canada,10/2/2024 +Vendease,"Lagos, Non-U.S.",68.0,9/30/2024,0.2,Food,https://techcabal.com/2025/02/19/vendease-second-layoffs/,Series A,43,Nigeria,2/21/2025 +Marin Software,SF Bay Area,27.0,9/30/2024,0.26,Marketing,https://www.businesswire.com/news/home/20241031446878/en/Marin-Software-Announces-Third-Quarter-2024-Financial-Results,Post-IPO,99,United States,4/16/2025 +Shein,"Singapore, Non-U.S.",17.0,9/30/2024,,Retail,https://marketech-apac.com/shein-lays-off-17-employees-in-sg-despite-local-growth-plans/,Private Equity,4100,Singapore,10/1/2024 +DoubleCloud,"Dubai, Non-U.S.",,9/30/2024,1.0,Infrastructure,https://double.cloud/blog/posts/2024/10/doublecloud-final-update/,Unknown,,UAE,10/2/2024 +Greenikk,"Trivandrum, Non-U.S.",,9/30/2024,1.0,Food,https://inc42.com/buzz/100unicorns-backed-agritech-startup-greenikk-shuts-operations/,Seed,1,India,10/1/2024 +Drata,San Diego,40.0,9/26/2024,0.09,Security,https://techcrunch.com/2024/09/26/security-compliance-unicorn-drata-lays-off-9-of-its-workforce/,Series C,328,United States,9/26/2024 +Moov,Cedar Falls,50.0,9/25/2024,,Finance,https://www.linkedin.com/posts/jasonmikula_andreessen-horowitz-backed-payment-infrastructure-activity-7244381710526689280-_P05/,Series B,77,United States,9/26/2024 +FreightWaves,Chattanooga,16.0,9/24/2024,,Logistics,https://www.timesfreepress.com/news/2024/sep/24/chattanoogas-freightwaves-eliminates-16-jobs/,Private Equity,92,United States,9/26/2024 +F5,Seattle,,9/24/2024,,Security,https://www.geekwire.com/2024/f5-layoffs-impact-in-house-content-creation-employees/,Post-IPO,,United States,9/26/2024 +Northvolt,"Stockholm, Non-U.S.",1600.0,9/23/2024,0.2,Energy,https://www.cnbc.com/2024/09/23/battery-giant-northvolt-to-cut-25percent-of-swedish-workforce-in-cost-cutting-drive.html,Unknown,13800,Sweden,9/26/2024 +Olo,New York City,,9/23/2024,0.09,Food,https://www.fsrmagazine.com/feature/olo-announces-layoffs-for-9-percent-of-staff/,Post-IPO,184,United States,9/24/2024 +Healthy.io,"Tel Aviv, Non-U.S.",40.0,9/22/2024,0.3,Healthcare,https://www.calcalistech.com/ctechnews/article/rkbihy060,Series D,185,Israel,9/24/2024 +Reverb,Chicago,40.0,9/20/2024,,Retail,https://www.valueaddedresource.net/etsy-reverb-layoffs-september-2024/,Acquired,47,United States,9/26/2024 +Luminar,Orlando,,9/20/2024,0.15,Transportation,https://www.luminartech.com/updates/a-message-from-founder-ceo-austin-russell,Post-IPO,780,United States,9/24/2024 +Notable Labs,SF Bay Area,,9/20/2024,0.65,Healthcare,https://www.bizjournals.com/sanfrancisco/news/2024/09/20/notable-labs-ntbl-layoffs.html,Series B,,United States,9/21/2024 +CarTrawler,"Dublin, Non-U.S.",40.0,9/19/2024,0.1,Transportation,https://www.businesspost.ie/tech-news/cartrawler-to-cut-10-of-workforce-amid-strategic-shift-but-new-roles-will-follow/,Acquired,,Ireland,9/21/2024 +ApplyBoard,"Waterloo, Non-U.S.",,9/19/2024,0.04,Education,https://kitchener.citynews.ca/2024/09/19/layoffs-at-applyboard-due-to-restructuring/,Series D,483,Canada,9/21/2024 +Spendesk,"Paris, Non-U.S.",151.0,9/18/2024,,Finance,https://www.lesechos.fr/start-up/ecosysteme/french-tech-la-licorne-spendesk-taille-dans-ses-effectifs-2119722,Series C,,France,10/1/2024 +Aakash,"New Delhi, Non-U.S.",80.0,9/18/2024,,Education,https://entrackr.com/2024/09/exclusive-aakash-lays-off-employees-amid-strategic-shift/,Acquired,,India,9/21/2024 +IBM,New York City,,9/18/2024,,Hardware,https://www.theregister.com/2024/09/18/ibm_job_cuts/,Post-IPO,,United States,9/21/2024 +Runtastic,"Linz, Non-U.S.",170.0,9/16/2024,,Fitness,https://www.derstandard.at/story/3000000236735/adidas-sperrt-runtastic-in-pasching-und-wien-zu?ref=rss,Acquired,,Austria,9/17/2024 +Microsoft,Seattle,650.0,9/12/2024,,Other,https://www.ign.com/articles/microsoft-lays-off-another-650-staff-from-its-video-game-workforce-xbox-boss-phil-spencer-sends-memo-to-staff,Post-IPO,1,United States,9/12/2024 +Amperity,Seattle,,9/12/2024,0.13,Marketing,https://www.geekwire.com/2024/amperity-lays-off-13-of-staff-in-latest-cuts-for-customer-data-startup/,Series D,187,United States,9/13/2024 +Udemy,SF Bay Area,280.0,9/11/2024,,Education,https://investors.udemy.com/static-files/98f10e29-29a6-4b13-bfcc-79ee29c14a02,Post-IPO,311,United States,9/18/2024 +Mobileye,"Jerusalem, Non-U.S.",100.0,9/9/2024,,Transportation,https://www.calcalistech.com/ctechnews/article/bj11rpdhh0,Post-IPO,2100,Israel,9/24/2024 +InsurStaq.ai,"New Delhi, Non-U.S.",,9/9/2024,1.0,AI,https://inc42.com/buzz/faad-network-backed-gen-ai-startup-insurstaq-ai-shuts-operations/,Seed,,India,9/10/2024 +Nori,Seattle,,9/9/2024,1.0,Energy,https://www.bizjournals.com/seattle/news/2024/09/09/nori-carbon-removal-shuts-down-green-tech.html,Unknown,19,United States,9/10/2024 +WeTransfer,"Amsterdam, Non-U.S.",260.0,9/8/2024,0.75,Other,https://techcrunch.com/2024/09/08/bending-spoons-plans-to-lay-off-75-of-wetransfer-staff-after-acquisition/,Acquired,64,Netherlands,9/9/2024 +Center,Seattle,8.0,9/7/2024,0.04,Finance,https://www.geekwire.com/2024/corporate-expense-software-startup-center-lays-off-workers/,Series C,102,United States,10/1/2024 +Goop,Los Angeles,39.0,9/6/2024,0.18,Retail,https://www.businessinsider.com/gwyneth-paltrow-goop-lays-off-staff-refocuses-on-beauty-food-2024-9,Unknown,75,United States,9/6/2024 +Motif Foodworks,Boston,,9/6/2024,1.0,Food,https://agfundernews.com/exclusive-boston-based-foodtech-startup-motif-foodworks-is-closing-down,Unknown,343,United States,9/9/2024 +ChargePoint,SF Bay Area,250.0,9/4/2024,0.15,Manufacturing,https://www.marketwatch.com/story/chargepoint-to-cut-15-of-workforce-7cebef74,Unknown,1400,United States,9/6/2024 +Fly.io,Chicago,40.0,9/4/2024,,Infrastructure,https://news.ycombinator.com/item?id=41442521,Series C,110,United States,9/11/2024 +Lyft,SF Bay Area,30.0,9/4/2024,0.01,Transportation,https://www.cnbc.com/2024/09/04/lyft-layoffs.html,Post-IPO,4900,United States,9/4/2024 +ABL,Los Angeles,,9/3/2024,,Aerospace,https://payloadspace.com/rocket-startup-abl-reduces-its-workforce/,Unknown,479,United States,9/4/2024 +Matter Labs,"Berlin, Non-U.S.",,9/3/2024,0.16,Crypto,https://cointelegraph.com/news/matter-labs-ceo-announces-company-restructuring-layoffs,Unknown,380,Germany,9/6/2024 +Dozee,"Bengaluru, Non-U.S.",40.0,9/2/2024,,Healthcare,https://inc42.com/buzz/dozee-lays-off-around-40-employees/,Series A,26,India,9/4/2024 +Dunzo,"Bengaluru, Non-U.S.",150.0,8/31/2024,0.75,Food,https://inc42.com/buzz/dunzo-fires-150-more-employees-amid-funding-woes/,Unknown,458,India,9/1/2024 +Character.ai,SF Bay Area,6.0,8/29/2024,0.05,AI,https://www.theinformation.com/briefings/character-ai-lays-off-at-least-5-of-its-staff,Series A,150,United States,9/1/2024 +Brave,SF Bay Area,27.0,8/28/2024,0.14,Consumer,https://techcrunch.com/2024/08/28/brave-lays-off-27-employees/,Series B,42,United States,8/28/2024 +Apple,SF Bay Area,100.0,8/27/2024,,Hardware,https://www.bloomberg.com/news/articles/2024-08-28/apple-cuts-about-100-services-jobs-as-part-of-priority-shift,Post-IPO,1200,United States,8/28/2024 +IBM,"Beijing, Non-U.S.",1000.0,8/26/2024,,Hardware,https://www.reuters.com/technology/ibm-close-china-rd-department-affecting-over-1000-jobs-yicai-reports-2024-08-26/,Post-IPO,,China,8/28/2024 +Tome Biosciences,Boston,131.0,8/26/2024,1.0,Healthcare,https://www.biopharmadive.com/news/tome-biosciences-layoffs-startup-strategic-options/725214/,Series A,213,United States,8/28/2024 +Velo3D,SF Bay Area,42.0,8/26/2024,,Manufacturing,https://www.siliconvalley.com/2024/08/19/economy-tech-jobs-layoff-south-bay-silicon-valley-biotech-internet/,Post-IPO,305,United States,9/2/2024 +Kenko Health,"Mumbai, Non-U.S.",,8/23/2024,1.0,Healthcare,https://inc42.com/buzz/kenko-health-shuts-ops-due-to-cash-crunch-failure-to-get-insurance-licence/,Series A,14,India,8/28/2024 +Received,New York City,,8/23/2024,1.0,Finance,https://www.fintechfutures.com/2024/08/us-fintech-start-up-received-to-close-down/,Unknown,,United States,8/28/2024 +Sandvine,"Waterloo, Non-U.S.",,8/23/2024,,Infrastructure,https://www.bnnbloomberg.ca/business/company-news/2024/08/23/francisco-partners-ends-ownership-of-crisis-plagued-sandvine/,Acquired,63,Canada,8/28/2024 +Redfin,Seattle,82.0,8/22/2024,0.02,Real Estate,https://www.seattletimes.com/business/real-estate/redfin-lays-off-dozens-amid-changes-to-agent-pay-sluggish-market/,Post-IPO,320,United States,8/28/2024 +Kaiyo,New York City,,8/21/2024,1.0,Retail,https://businessofhome.com/articles/kaiyo-is-closing-down,Series B,43,United States,8/22/2024 +Skip the Dishes,"Winnipeg, Non-U.S.",800.0,8/20/2024,,Food,https://www.cbc.ca/news/canada/manitoba/skip-the-dishes-lay-off-canadian-jobs-1.7299719,Acquired,8,Canada,8/21/2024 +Five9,SF Bay Area,190.0,8/20/2024,0.07,Support,https://www.crn.com/news/cloud/2024/five9-plans-7-percent-workforce-layoffs,Post-IPO,862,United States,8/21/2024 +ReshaMandi,"Bengaluru, Non-U.S.",,8/20/2024,1.0,Food,https://entrackr.com/2024/08/exclusive-reshamandi-faces-complete-layoffs-website-shutdown-and-auditor-red-flag/,Unknown,54,India,8/22/2024 +GoPro,SF Bay Area,139.0,8/19/2024,0.15,Consumer,https://www.reuters.com/technology/gopro-cut-15-workforce-restructuring-push-2024-08-19/,Post-IPO,288,United States,8/21/2024 +Localize,New York City,,8/19/2024,,Real Estate,https://www.calcalistech.com/ctechnews/article/sypuszzjr,Series A,40,United States,8/20/2024 +Paper,"Montreal, Non-U.S.",81.0,8/16/2024,0.45,Education,https://betakit.com/phil-cutler-removed-as-paper-ceo-startup-reportedly-cuts-staff-by-45-percent/,Series D,389,Canada,8/28/2024 +Retention.com,Austin,15.0,8/16/2024,,Marketing,https://www.linkedin.com/posts/retentionadam_this-is-a-tough-post-to-write-last-friday-activity-7230266178835771392-VeMU/,Unknown,,United States,8/20/2024 +Loop,Columbus,,8/16/2024,,Retail,https://www.linkedin.com/feed/update/urn:li:activity:7230197128617213952/,Series B,125,United States,8/16/2024 +Regrow Ag,Durham,,8/16/2024,0.19,Food,https://www.linkedin.com/posts/anastasia-volkova1_linkedin-community-after-careful-consideration-activity-7230360775645704192-5MYi/,Series B,64,United States,8/20/2024 +AppLovin,SF Bay Area,61.0,8/15/2024,,Marketing,https://www.siliconvalley.com/2024/08/19/economy-tech-jobs-layoff-south-bay-silicon-valley-biotech-internet/,Post-IPO,1600,United States,9/2/2024 +Inuitive,"Ra'anana, Non-U.S.",16.0,8/15/2024,0.2,Manufacturing,https://www.calcalistech.com/ctechnews/article/ry118noi90,Unknown,23,Israel,8/16/2024 +Formlabs,Boston,,8/15/2024,,Hardware,https://techcrunch.com/2024/08/15/3d-printing-stalwart-formlabs-confirms-small-number-of-layoffs/,Series E,254,United States,8/16/2024 +Mister Spex,"Berlin, Non-U.S.",,8/15/2024,0.1,Retail,https://www.businessinsider.de/gruenderszene/business/mister-spex-entlassungen-und-filialschliessungen/,Post-IPO,158,Germany,8/15/2024 +PacketFabric,Los Angeles,,8/15/2024,,Infrastructure,https://packetfabric.com/blog/team-updates-and-the-future-of-packetfabric,Unknown,110,United States,8/16/2024 +Sampler,"Toronto, Non-U.S.",,8/15/2024,1.0,Retail,https://betakit.com/sampler-files-for-bankruptcy/,Series B,10,Canada,8/28/2024 +Sonos,Santa Barbara,100.0,8/14/2024,0.06,Consumer,https://www.theverge.com/2024/8/14/24220357/sonos-layoffs-august-2024-app,Post-IPO,455.2,United States,8/14/2024 +Grail,SF Bay Area,350.0,8/13/2024,,Healthcare,https://www.sfgate.com/tech/article/grail-biotech-layoffs-menlo-park-19659668.php,Post-IPO,,United States,8/20/2024 +DayTwo,SF Bay Area,,8/13/2024,1.0,Healthcare,https://www.calcalistech.com/ctechnews/article/rk4fbrd9c,Series B,90,United States,8/14/2024 +Quizac,"Lagos, Non-U.S.",,8/13/2024,1.0,Education,https://techpoint.africa/2024/08/13/why-quizac-is-shutting-down/,Acquired,,Nigeria,9/4/2024 +Tally,SF Bay Area,,8/12/2024,1.0,Finance,https://techcrunch.com/2024/08/12/a16z-backed-fintech-tally-which-raised-172m-in-funding-is-shutting-down-after-running-out-of-cash/,Series C,172,United States,8/13/2024 +Cisco,SF Bay Area,5600.0,8/9/2024,0.07,Infrastructure,https://techcrunch.com/2024/09/17/ciscos-second-layoff-of-2024-affect-thousands-of-employees/,Post-IPO,2,United States,8/9/2024 +Branch.io,SF Bay Area,100.0,8/9/2024,,Marketing,https://9to5google.com/2024/08/09/nova-launcher-faces-rocky-future-after-dev-team-layoffs/,Series F,667,United States,8/9/2024 +iCIMS,Holmdel,69.0,8/9/2024,,Recruiting,https://twitter.com/AsburyParkPress/status/1821892949640184004,Acquired,93,United States,8/14/2024 +Ready Robotics,Columbus,,8/9/2024,,Manufacturing,https://www.therobotreport.com/ready-robotics-maker-of-forgeos-shuts-down/,Unknown,41,United States,8/9/2024 +Submittable,Missoula,40.0,8/8/2024,,Other,https://www.geekwire.com/2024/social-impact-software-platform-submittable-acquires-wizehive-cuts-staff/,Unknown,115,United States,10/17/2024 +Fastly,SF Bay Area,,8/8/2024,0.11,Infrastructure,https://seekingalpha.com/news/4137719-fastly-to-reduce-global-headcount-by-11,Post-IPO,219,United States,8/9/2024 +Eventbrite,SF Bay Area,100.0,8/7/2024,0.11,Consumer,https://www.marketwatch.com/story/eventbrite-to-about-100-jobs-reducing-headcount-by-11-a5daf94b,Post-IPO,557,United States,8/8/2024 +LegalZoom,Los Angeles,,8/7/2024,0.15,Legal,https://finance.yahoo.com/news/legalzoom-reports-second-quarter-2024-200100127.html,Post-IPO,952,United States,8/8/2024 +Axios Media,Washington D.C.,50.0,8/6/2024,0.1,Media,https://www.nytimes.com/2024/08/06/business/media/axios-layoffs.html,Acquired,57,United States,8/6/2024 +Mobius Motors,"Nairobi, Non-U.S.",,8/6/2024,1.0,Transportation,https://techpoint.africa/2024/08/06/mobius-to-shut-down/,Unknown,6,Kenya,8/6/2024 +Teradata,San Diego,,8/6/2024,0.13,Data,https://www.marketwatch.com/story/teradata-slides-13-after-2q-revenue-falls-guidance-cut-243b01c6,Post-IPO,,United States,8/7/2024 +Infineon,"Munich, Non-U.S.",1400.0,8/5/2024,,Manufacturing,https://finance.yahoo.com/news/infineon-cut-1-400-jobs-125510481.html,Post-IPO,1500,Germany,8/5/2024 +Jam City,Los Angeles,85.0,8/5/2024,0.1,Consumer,https://www.pocketgamer.biz/jam-city-has-laid-off-10-of-its-workforce/,Unknown,652,United States,8/5/2024 +Dell,Austin,,8/5/2024,,Hardware,https://siliconangle.com/2024/08/05/dell-lays-off-thousands-workers-sales-reorganization/,Post-IPO,,United States,8/5/2024 +ShareChat,"Bengaluru, Non-U.S.",30.0,8/3/2024,0.05,Marketing,https://yourstory.com/2024/08/sharechat-bags-16m-edbi-lays-off-5-percent-workforce,Series D,222,India,8/5/2024 +Intel,SF Bay Area,15000.0,8/1/2024,0.15,Hardware,https://www.intel.com/content/www/us/en/newsroom/news/actions-accelerate-our-progress.html#gs.cgq6eg,Post-IPO,12,United States,8/1/2024 +Avaya,Durham,180.0,8/1/2024,0.03,Other,https://www.uctoday.com/unified-communications/avaya-layoffs-theyve-talked-the-talk-now-they-need-to-walk-the-walk/,Post-IPO,700,United States,11/8/2024 +Rad Power Bikes,Seattle,,8/1/2024,,Transportation,https://techcrunch.com/2024/08/01/rad-power-bikes-layoffs/,Series D,329,United States,8/1/2024 +Bungie,Seattle,220.0,7/31/2024,0.17,Consumer,https://www.bungie.net/7/en/News/article/newpath,Acquired,100,United States,8/1/2024 +Delivery Hero,"Berlin, Non-U.S.",200.0,7/31/2024,,Food,https://www.bloomberg.com/news/articles/2024-07-31/delivery-hero-to-combine-european-and-asian-businesses-cut-jobs,Post-IPO,9900,Germany,8/6/2024 +Match Group,New York City,,7/31/2024,0.06,Consumer,https://techcrunch.com/2024/07/31/match-group-ends-live-streaming-service-layoffs/,Post-IPO,,United States,8/1/2024 +NerdWallet,SF Bay Area,,7/30/2024,0.15,Finance,https://www.marketwatch.com/amp/story/nerdwallet-to-cut-15-of-its-workforce-aa1db7c7,Post-IPO,105,United States,7/31/2024 +Moxion Power,SF Bay Area,248.0,7/29/2024,1.0,Energy,https://www.sfgate.com/tech/article/moxion-power-shutdown-layoff-huelskamp-19605417.php,Unknown,124,United States,7/30/2024 +OrCam,"Jerusalem, Non-U.S.",,7/28/2024,,Healthcare,https://www.calcalistech.com/ctechnews/article/hy0rv6qya,Unknown,86,Israel,7/29/2024 +Pocket FM,"Bengaluru, Non-U.S.",200.0,7/27/2024,,Media,https://inc42.com/buzz/lightspeed-backed-pocket-fm-fires-around-200-writers/,Series D,212,India,7/29/2024 +WayCool,"Chennai, Non-U.S.",200.0,7/26/2024,,Food,https://www.moneycontrol.com/technology/not-cool-agritech-startup-waycool-fires-over-200-employees-in-third-round-of-layoffs-in-12-months-article-12778790.html,Unknown,363,India,7/26/2024 +Webflow,SF Bay Area,,7/25/2024,0.08,Marketing,https://webflow.com/blog/restructuring-announcement,Series C,335,United States,7/25/2024 +Humble Games,SF Bay Area,36.0,7/23/2024,1.0,Media,https://venturebeat.com/games/humble-games-layoffs-shut-down-ziff-davis/,Acquired,4,United States,7/29/2024 +Cohere,"Toronto, Non-U.S.",20.0,7/23/2024,0.05,AI,https://fortune.com/2024/07/23/after-500-million-funding-ai-startup-cohere-layoffs/,Series D,935,Canada,7/24/2024 +Bluelearn,"Bengaluru, Non-U.S.",,7/22/2024,1.0,Education,https://www.moneycontrol.com/technology/elevation-capital-backed-edtech-startup-bluelearn-shuts-down-article-12774167.html#goog_rewarded,Seed,4,India,7/22/2024 +Magic Leap,Miami,75.0,7/19/2024,,Consumer,https://www.bloomberg.com/news/articles/2024-07-19/magic-leap-cuts-sales-marketing-teams-in-ar-about-face,Series E,4100,United States,7/19/2024 +Mercari U.S.,SF Bay Area,,7/19/2024,0.5,Retail,https://asia.nikkei.com/Business/Retail/Japan-marketplace-app-Mercari-lays-off-almost-half-its-U.S.-workforce,Subsidiary,,United States,7/20/2024 +Aqua Security,Boston,50.0,7/17/2024,0.1,Security,https://www.calcalistech.com/ctechnews/article/rky00s7rd0,Series E,325,United States,7/18/2024 +EverC,"Tel Aviv, Non-U.S.",16.0,7/17/2024,0.1,Security,https://www.calcalistech.com/ctechnews/article/bjrddqr00r,Unknown,61,Israel,7/18/2024 +Lex,New York City,,7/17/2024,,Consumer,https://www.businessinsider.com/queer-social-network-lex-lays-off-staff-growth-startup-dating-2024-7,Seed,7,United States,7/18/2024 +ON,SF Bay Area,60.0,7/16/2024,1.0,Retail,https://venturebeat.com/games/on-enterprise-ai-startup-ceo-resigns-staff-laid-off-after-11m-in-cash-goes-missing/,Unknown,81,United States,7/17/2024 +Kaspersky,Boston,,7/16/2024,,Security,https://techcrunch.com/2024/07/16/kaspersky-to-shut-down-us-operations-lay-off-employees-after-us-government-ban/,Private Equity,,United States,7/17/2024 +Unbounce,"Vancouver, Non-U.S.",,7/16/2024,,Marketing,https://docs.google.com/spreadsheets/d/15LG7GR8xg316I-Iy2NNJRNOK_gFL7cj_xycaeQQPrpI/edit?gid=1516705010#gid=1516705010,Acquired,39,Canada,7/25/2024 +SolarEdge,"Tel Aviv, Non-U.S.",400.0,7/15/2024,,Energy,https://www.reuters.com/business/energy/solaredge-technologies-lay-off-400-employees-2024-07-15/,Post-IPO,155,Israel,7/16/2024 +Salesforce,SF Bay Area,300.0,7/15/2024,,Sales,https://www.bloomberg.com/news/articles/2024-07-15/salesforce-cuts-about-300-jobs-in-latest-sign-of-tech-austerity,Post-IPO,65,United States,7/15/2024 +Spotify,"Stockholm, Non-U.S.",40.0,7/15/2024,,Media,https://adage.com/article/digital-marketing-ad-tech-news/spotify-focus-smaller-clients-programmatic-ad-tech-includes-40-layoffs/2569771,Post-IPO,2100,Sweden,7/16/2024 +SadaPay,"Islamabad, Non-U.S.",,7/12/2024,0.3,Finance,https://www.crowdfundinsider.com/2024/07/227287-fintech-sadapay-has-reportedly-announced-layoffs-while-citing-cost-cutting-measures-after-acquisition-equity-injection/,Acquired,20,Pakistan,7/16/2024 +MoxiWorks,Seattle,,7/11/2024,,Real Estate,https://www.inman.com/2024/07/11/moxiworks-laying-off-employees-1-month-after-replacing-ceo/,Private Equity,,United States,7/16/2024 +Intuit,SF Bay Area,1800.0,7/10/2024,0.1,Finance,https://www.bloomberg.com/news/articles/2024-07-10/intuit-to-cull-10-of-employees-in-latest-round-of-tech-layoffs,Post-IPO,18,United States,7/10/2024 +Redbox,Chicago,1000.0,7/10/2024,1.0,Media,https://www.wsj.com/articles/redbox-owner-to-shut-down-kiosk-business-in-bankruptcy-f0cada8d,Acquired,51,United States,7/22/2024 +CyberProof,Los Angeles,,7/10/2024,0.07,Security,https://www.calcalistech.com/ctechnews/article/h1nrv0odr,Subsidiary,,United States,7/11/2024 +UIPath,New York City,420.0,7/9/2024,0.1,Other,https://www.cnbc.com/2024/07/09/uipath-layoffs-company-to-cut-10percent-of-workforce.html,Post-IPO,2000,United States,7/10/2024 +UKG,Boston,2200.0,7/3/2024,0.14,HR,https://www.bizjournals.com/boston/news/2024/07/03/ukg-cuts-14-of-its-workforce.html,Unknown,,United States,7/3/2024 +OpenText,"Waterloo, Non-U.S.",1200.0,7/3/2024,0.02,Data,https://www.marketwatch.com/story/open-text-to-cut-1-200-jobs-as-part-of-cost-saving-plan-cef1f9a0,Post-IPO,1100,Canada,7/3/2024 +Microsoft,Seattle,,7/3/2024,,Other,https://www.geekwire.com/2024/microsoft-lays-off-employees-in-new-round-of-cuts/,Post-IPO,1,United States,7/8/2024 +Unacademy,"Bengaluru, Non-U.S.",250.0,7/2/2024,,Education,https://techcrunch.com/2024/07/02/indian-edtech-unacademy-cuts-another-250-jobs/,Series H,838,India,7/3/2024 +Koo,"Bengaluru, Non-U.S.",,7/2/2024,1.0,Consumer,https://techcrunch.com/2024/07/02/indian-social-network-koo-to-shut-down/,Unknown,51,India,7/4/2024 +Lightricks,"Jerusalem, Non-U.S.",70.0,7/1/2024,0.12,Consumer,https://www.calcalistech.com/ctechnews/article/b1dj8mgda,Series D,335,Israel,7/3/2024 +Upside Foods,SF Bay Area,26.0,7/1/2024,,Food,https://www.wired.com/story/leading-lab-grown-meat-company-cuts-dozens-of-jobs-upside-foods-cultivated-chicken/,Unknown,598,United States,7/3/2024 +Sightful,"Tel Aviv, Non-U.S.",20.0,7/1/2024,0.33,Hardware,https://www.calcalistech.com/ctechnews/article/rkeyfjlv0,Unknown,61,Israel,7/3/2024 +Cint,"Stockholm, Non-U.S.",,7/1/2024,,Data,https://investors.cint.com/en/press/organizational-changes-cint-group-2248206,Post-IPO,17,Sweden,7/3/2024 +Ninja Van,"Singapore, Non-U.S.",,7/1/2024,0.05,Transportation,https://www.theedgesingapore.com/news/company-news/second-round-layoffs-ninja-van-less-three-months-5-singapore-staff-affected,Series E,974,Singapore,7/3/2024 +Priceline,Norwalk,103.0,6/28/2024,0.07,Travel,https://www.travelweekly.com/Travel-News/Travel-Agent-Issues/Priceline-chops-more-than-100-jobs,Acquired,77,United States,7/3/2024 +RealPage,Dallas,260.0,6/27/2024,0.04,Real Estate,https://www.bisnow.com/national/news/multifamily/realpage-to-lay-off-4-of-its-workforce-price-fixing-allegations-124885,Acquired,105,United States,7/3/2024 +Planet,SF Bay Area,180.0,6/26/2024,0.17,Aerospace,https://spacenews.com/planet-lays-off-17-of-workforce/,Post-IPO,574,United States,6/29/2024 +Moxion Power,SF Bay Area,101.0,6/26/2024,,Energy,https://www.sfgate.com/tech/article/moxion-power-layoffs-after-expansion-19541807.php,Unknown,124,United States,6/29/2024 +eBay,"Tel Aviv, Non-U.S.",,6/26/2024,,Retail,https://www.calcalistech.com/ctechnews/article/rysmrkfua,Post-IPO,1200,Israel,6/29/2024 +Perion,"Tel Aviv, Non-U.S.",35.0,6/25/2024,0.05,Marketing,https://en.globes.co.il/en/article-perion-network-lays-off-20-transfers-us-activities-to-israel-1001420801,Post-IPO,76,Israel,6/26/2024 +BeReal,"Paris, Non-U.S.",,6/25/2024,,Consumer,https://www.businessinsider.com/bereal-layoffs-after-acquisition-voodoo-2024-6,Acquired,,France,6/26/2024 +Flutterwave,"Lagos, Non-U.S.",30.0,6/24/2024,0.03,Finance,https://techcabal.com/2024/06/24/flutterwave-lays-off-3-of-its-workforce/,Unknown,509,Nigeria,6/26/2024 +Ginkgo Bioworks,Boston,,6/24/2024,,Healthcare,https://www.biospace.com/article/biospace-layoff-tracker-2023-athenex-shutters-facility-cuts-staff/,Post-IPO,1600,United States,6/19/2024 +Trade Republic,"Berlin, Non-U.S.",,6/23/2024,,Finance,https://www.wiwo.de/finanzen/geldanlage/neobroker-trade-republic-schliesst-den-eigenen-kundenservice/29862010.html,Unknown,1300,Germany,6/23/2024 +Ginkgo Bioworks,Boston,400.0,6/20/2024,0.35,Healthcare,https://www.bostonglobe.com/2024/06/25/business/gingko-jason-kelly-mit-securities-and-exchange-commission-covid-biosecurity/,Post-IPO,1600,United States,6/23/2024 +Bluevine,"Tel Aviv, Non-U.S.",,6/20/2024,,Finance,https://www.calcalistech.com/ctechnews/article/byqph00wlr,Unknown,769,Israel,6/23/2024 +ReshaMandi,"Bengaluru, Non-U.S.",,6/20/2024,0.8,Food,https://economictimes.indiatimes.com/tech/startups/fund-crunch-forces-reshamandi-to-lay-off-80-employees/articleshow/111119052.cms?from=mdr,Unknown,54,India,6/23/2024 +Emma Sleep,"Frankfurt, Non-U.S.",200.0,6/19/2024,0.18,Retail,https://www.wiwo.de/unternehmen/handel/matratzenhersteller-in-der-krise-emma-entlaesst-jeden-fuenften-mitarbeiter/29856880.html,Acquired,,Germany,6/23/2024 +Moovit,"Tel Aviv, Non-U.S.",20.0,6/19/2024,0.1,Transportation,https://www.calcalistech.com/ctechnews/article/h10s7illc,Acquired,131,Israel,6/23/2024 +Wex,Portland,375.0,6/18/2024,0.05,Finance,https://www.pressherald.com/2024/06/18/wex-is-laying-off-375-employees-worldwide/,Post-IPO,400,United States,6/23/2024 +PayPal,SF Bay Area,85.0,6/18/2024,,Finance,https://www.irishexaminer.com/business/companies/arid-41418832.html,Post-IPO,216,Ireland,6/23/2024 +Rapyd,"Tel Aviv, Non-U.S.",30.0,6/18/2024,,Finance,https://www.calcalistech.com/ctechnews/article/h1vvoykur,Unknown,770,Israel,6/19/2024 +C2FO,Kansas City,16.0,6/18/2024,,Finance,https://www.bizjournals.com/kansascity/news/2024/06/18/c2fo-layoffs-supplier-relations-managers.html,Series H,537,United States,6/19/2024 +Fisker,Los Angeles,,6/18/2024,1.0,Transportation,https://www.wsj.com/business/autos/electric-vehicle-startup-fisker-files-for-bankruptcy-0a3eb7d6,Post-IPO,1700,United States,6/19/2024 +Chegg,SF Bay Area,441.0,6/17/2024,0.23,Education,https://www.businesswire.com/news/home/20240617323391/en/Chegg-Announces-Restructuring-Plan-and-New-Vision-for-Growth,Post-IPO,227,United States,6/19/2024 +Stackpath,Dallas,,6/17/2024,1.0,Infrastructure,https://www.datacenterdynamics.com/en/news/stackpath-to-close-down-liquidate-assets/,Series B,396,United States,6/23/2024 +Unit,New York City,,6/17/2024,0.15,Finance,https://www.unit.co/a-note-to-our-team,Series C,170,United States,6/19/2024 +LOOP,Austin,23.0,6/16/2024,0.77,Finance,https://www.coverager.com/loop-goes-through-another-round-of-layoffs/,Series A,34,United States,6/19/2024 +Care/of,New York City,143.0,6/15/2024,1.0,Healthcare,https://techcrunch.com/2024/06/15/subscription-vitamin-company-care-of-is-shutting-down/,Acquired,83,United States,6/19/2024 +Running Tide,Portland,,6/15/2024,1.0,Energy,https://www.pressherald.com/2024/06/15/portland-startup-that-became-global-leader-in-capturing-carbon-shuts-down-lays-off-all-staff/,Series B,54,United States,6/19/2024 +Satellogic,"Montevideo, Non-U.S.",70.0,6/14/2024,0.3,Aerospace,https://spacenews.com/satellogic-announces-new-round-of-layoffs/,Post-IPO,424,Uruguay,6/19/2024 +Cypress.io,Atlanta,11.0,6/14/2024,,Product,https://www.cypress.io/blog/2024/06/13/update-on-cypresss-workforce,Series B,54,United States,6/19/2024 +Medtronic,SF Bay Area,,6/13/2024,,Healthcare,https://www.massdevice.com/medtronic-layoffs-global-confirmed/,Post-IPO,5900,United States,6/14/2024 +Bytedance,"Jakarta, Non-U.S.",450.0,6/12/2024,,Consumer,https://www.bloomberg.com/news/articles/2024-06-12/bytedance-to-cut-450-jobs-in-indonesia-after-tokopedia-deal,Unknown,9400,Indonesia,6/12/2024 +Paxos,New York City,65.0,6/12/2024,0.2,Crypto,https://www.bloomberg.com/news/articles/2024-06-12/stablecoin-issuer-paxos-cuts-20-of-workforce?embedded-checkout=true,Unknown,543,United States,6/15/2024 +SCiFi Foods,SF Bay Area,,6/12/2024,1.0,Food,https://www.sfgate.com/tech/article/bay-area-lab-meat-company-shuts-down-19511362.php,Series A,39,United States,6/14/2024 +VRChat,SF Bay Area,,6/12/2024,0.3,Consumer,https://ask.vrchat.com/t/an-email-from-our-ceo/25060,Series D,95,United States,6/13/2024 +Ladenzeile,"Berlin, Non-U.S.",,6/11/2024,1.0,Retail,https://t3n.de/news/ladenzeile-macht-dicht-das-sind-die-gruende-fuer-das-ende-des-e-commerce-aggregators-1629334/,Subsidiary,,Germany,6/11/2024 +Paytm,"Noida, Non-U.S.",3500.0,6/10/2024,,Finance,https://www.livemint.com/companies/news/paytm-layoffs-fitench-hands-pink-slip-to-employees-after-rbi-ban-on-paytm-payments-bank-services-11718005572975.html,Subsidiary,,India,6/10/2024 +Kissflow,"Chennai, Non-U.S.",45.0,6/10/2024,0.11,Other,https://economictimes.indiatimes.com/tech/startups/bootstrapped-saas-startup-kissflow-culls-11-workforce/articleshow/110875509.cms?from=mdr,Unknown,1,India,6/10/2024 +Copia,"Nairobi, Non-U.S.",1060.0,6/6/2024,,Retail,https://techcabal.com/2024/06/06/copia-layoffs-kenya/,Series C,103,Kenya,6/10/2024 +Revel,New York City,1000.0,6/6/2024,,Transportation,https://techcrunch.com/2024/06/06/revels-latest-pivot-ditching-all-employee-ride-hail-in-favor-of-gig-worker-model/,Unknown,214,United States,6/10/2024 +Simpl,"Bengaluru, Non-U.S.",30.0,6/6/2024,,Finance,https://economictimes.indiatimes.com/tech/startups/bnpl-startup-simpl-undertakes-another-round-of-layoffs-rejigs-senior-leadership/articleshow/110764659.cms?from=mdr,Series B,72,India,6/10/2024 +Oda,"Oslo, Non-U.S.",150.0,6/5/2024,,Food,https://techcrunch.com/2024/06/05/softbank-backed-grocery-startup-oda-lays-off-150-resets-focus-on-norway-and-sweden/,Unknown,691,Norway,6/5/2024 +Pagaya,"Tel Aviv, Non-U.S.",100.0,6/5/2024,0.2,Finance,https://www.calcalistech.com/ctechnews/article/h19floaec,Post-IPO,2000,Israel,6/5/2024 +Aleph Farms,"Tel Aviv, Non-U.S.",30.0,6/5/2024,0.3,Food,https://www.calcalistech.com/ctechnews/article/hkdwxv0na,Unknown,119,Israel,6/5/2024 +MoonPay,Dover,30.0,6/5/2024,0.1,Crypto,https://www.theblock.co/post/298638/moonpay-lays-off-10-staff,Unknown,651,United States,6/5/2024 +Yext,New York City,,6/5/2024,0.12,Marketing,https://www.investing.com/news/economy-news/yext-announces-12-workforce-reduction-to-boost-profitability-93CH-3471417,Post-IPO,117,United States,6/5/2024 +Microsoft,Seattle,1000.0,6/3/2024,,Other,https://www.theverge.com/2024/6/3/24170902/microsoft-hololens-2-mixed-reality-azure-layoffs,Post-IPO,1,United States,6/3/2024 +OrCam,"Jerusalem, Non-U.S.",100.0,6/3/2024,0.5,Healthcare,https://www.calcalistech.com/ctechnews/article/skd15oj4a,Unknown,86,Israel,6/4/2024 +Google,SF Bay Area,100.0,5/31/2024,,Consumer,https://www.businessinsider.com/google-cloud-layoffs-job-cuts-employees-globally-2024-5,Post-IPO,26,United States,6/1/2024 +Tropic,New York City,40.0,5/31/2024,,Finance,https://www.linkedin.com/feed/update/urn:li:activity:7202356908194758657/,Series B,67,United States,6/1/2024 +Gro Intelligence,New York City,,5/31/2024,0.1,Food,https://agfundernews.com/breaking-ag-insights-platform-gro-intelligence-is-closing-down,Series B,118,United States,6/3/2024 +Jasper Health,Boise,,5/31/2024,,Healthcare,https://techcrunch.com/2024/05/31/general-catalyst-backed-jasper-health-lays-off-staff/,Series A,32,United States,6/1/2024 +FlightStats,Portland,73.0,5/30/2024,,Travel,https://www.oregonlive.com/silicon-forest/2024/05/flight-tracking-company-cirium-will-lay-off-37-portland-tech-workers.html,Acquired,3,United States,5/31/2024 +ICANN,Los Angeles,33.0,5/30/2024,0.07,Infrastructure,https://www.icann.org/en/blogs/details/organizational-changes-to-ensure-icanns-financial-stability-and-sustainability-30-05-2024-en,Unknown,,United States,6/5/2024 +Walnut,New York City,15.0,5/29/2024,0.2,Sales,https://www.calcalistech.com/ctechnews/article/hj71t1b4r,Series B,56,United States,5/31/2024 +Fisker,Los Angeles,,5/29/2024,,Transportation,https://techcrunch.com/2024/05/29/fisker-layoffs-workers-restructuring-bankruptcy/,Post-IPO,1700,United States,5/31/2024 +Funding Circle,"London, Non-U.S.",,5/29/2024,,Finance,https://markets.ft.com/data/announce/detail?dockey=600-202405290435DGAP____UKPR_____UK_Regulatory_1913105-1,Post-IPO,746,United Kingdom,6/3/2024 +Glovo,"Madrid, Non-U.S.",22.0,5/25/2024,,Food,https://www.eleconomista.es/tecnologia/noticias/12832290/05/24/glovo-fulmina-su-hub-tecnologico-en-madrid-y-se-lo-lleva-a-barcelona.html,Acquired,1200,Spain,7/25/2024 +Lucid Motors,SF Bay Area,400.0,5/24/2024,0.06,Transportation,https://electrek.co/2024/05/24/lucid-lcid-cuts-us-workforce-by-6-ahead-gravity-ev-launch/,Post-IPO,8300,United States,5/24/2024 +Satellogic,"Montevideo, Non-U.S.",34.0,5/24/2024,0.13,Aerospace,https://spacenews.com/satellogic-lays-off-13-of-workforce/,Post-IPO,424,Uruguay,6/19/2024 +Foursquare,New York City,105.0,5/23/2024,0.25,Marketing,https://techcrunch.com/2024/05/23/foursquare-just-laid-off-105-employees/,Series G,390,United States,5/24/2024 +Guild,Denver,300.0,5/22/2024,0.25,Education,https://www.denverpost.com/2024/05/22/education-tech-guild-layoffs/,Series F,643,United States,5/23/2024 +Cue Health,San Diego,180.0,5/22/2024,1.0,Healthcare,https://www.fiercebiotech.com/medtech/home-covid-testmaker-cue-health-shut-down-operations-lay-staff-report,Post-IPO,899,United States,5/23/2024 +Silo,SF Bay Area,,5/22/2024,0.3,Food,https://techcrunch.com/2024/05/22/food-supply-chain-software-maker-silo-lays-off-30-of-staff-amid-ma-discussions/,Series C,272,United States,5/23/2024 +TikTok,Los Angeles,1000.0,5/21/2024,,Consumer,https://www.theinformation.com/articles/tiktok-plans-layoffs-of-operations-and-marketing-employees,Acquired,,United States,6/14/2024 +Joonko,New York City,,5/19/2024,1.0,HR,https://www.calcalistech.com/ctechnews/article/sk81p8pma,Series B,38,United States,5/23/2024 +Toshiba,"Tokyo, Non-U.S.",4000.0,5/16/2024,,Manufacturing,https://www.reuters.com/technology/newly-privatised-toshiba-cut-4000-jobs-restructuring-drive-2024-05-16/,Unknown,,Japan,5/24/2024 +Wefox,"Berlin, Non-U.S.",60.0,5/16/2024,,Finance,https://news.sky.com/story/insurance-unicorn-wefox-warns-investors-of-insolvency-risk-13137125,Series D,1300,Germany,5/17/2024 +Replit,SF Bay Area,30.0,5/16/2024,0.2,Product,https://www.theinformation.com/briefings/ai-coding-startup-replit-cuts-20-of-staff-shifts-to-enterprise-sales,Unknown,222,United States,5/16/2024 +Gopuff,Philadelphia,,5/16/2024,0.06,Food,https://www.theinformation.com/briefings/gopuff-cuts-6-of-corporate-staff-in-fresh-layoffs,Series H,3400,United States,5/16/2024 +Karhoo,"London, Non-U.S.",,5/16/2024,1.0,Transportation,https://www.prodrivermags.com/news/renault-calls-in-administrators-for-not-financially-viable-karhoo/,Acquired,39,United Kingdom,6/3/2024 +SeekOut,Seattle,,5/16/2024,0.3,Recruiting,https://techcrunch.com/2024/05/20/seekout-layoffs-30percent-talent-search-tigerglobal/,Series C,,United States,5/20/2024 +Atmosphere,Austin,100.0,5/15/2024,,Other,https://www.bizjournals.com/austin/news/2024/05/15/layoffs-streaming-startup-austin-atmosphere.html,Series D,214,United States,5/17/2024 +Singularity 6,Los Angeles,36.0,5/15/2024,,Other,https://twitter.com/sweetpotatoes/status/1790866384810811763,Series B,49,United States,5/17/2024 +Mainvest,Boston,,5/14/2024,1.0,Finance,https://mainvest.notion.site/Investor-Support-Hub-45c61ca735dd4daf8203c28d8945f9ff,Unknown,3,United States,5/17/2024 +Indeed,Austin,1000.0,5/13/2024,0.08,HR,https://www.indeed.com/press/releases/a-message-from-our-ceo-chris-hyams-2?co=US,Acquired,5,United States,5/13/2024 +Motional,Pittsburgh,550.0,5/10/2024,0.4,Transportation,https://techcrunch.com/2024/05/10/motional-cut-about-550-employees-around-40-in-recent-restructuring-sources-say/,Unknown,,United States,5/8/2024 +Rivian,Los Angeles,120.0,5/10/2024,,Transportation,https://www.sfchronicle.com/tech/article/tech-layoffs-google-rivian-19451076.php,Post-IPO,10700,United States,5/11/2024 +Google,SF Bay Area,57.0,5/10/2024,,Consumer,https://www.sfchronicle.com/tech/article/tech-layoffs-google-rivian-19451076.php,Post-IPO,26,United States,5/11/2024 +Symend,"Calgary, Non-U.S.",,5/10/2024,,Other,https://www.linkedin.com/posts/symend_what-follows-is-a-summary-of-the-communication-activity-7194804652700307456-cTPR/,Series C,148,Canada,8/9/2024 +Vacasa,Portland,800.0,5/9/2024,0.13,Travel,https://skift.com/2024/05/09/vacasa-told-employees-about-layoffs-restructuring-and-leadership-changes/,Post-IPO,834,United States,5/10/2024 +Sight Diagnostics,"Tel Aviv, Non-U.S.",40.0,5/9/2024,0.3,Healthcare,https://www.calcalistech.com/ctechnews/article/rkhuj119gc,Series D,124,Israel,6/5/2024 +PrepLadder,"New Delhi, Non-U.S.",145.0,5/8/2024,0.25,Education,https://inc42.com/buzz/unacademys-prepladder-lays-off-145-employees-in-sales-strategy-rejig/,Acquired,,India,5/9/2024 +Simpl,"Bengaluru, Non-U.S.",100.0,5/8/2024,0.15,Finance,https://www.moneycontrol.com/technology/bnpl-startup-simpl-lays-off-at-least-100-employees-as-part-of-cost-cutting-measures-article-12717158.html?classic=true,Series B,72,India,5/8/2024 +Arkane Studios,Austin,96.0,5/8/2024,1.0,Consumer,https://www.bizjournals.com/austin/news/2024/05/08/austin-gaming-studio-shuts-down.html,Unknown,,United States,5/10/2024 +Brilliant,SF Bay Area,,5/8/2024,1.0,Hardware,https://www.theverge.com/2024/5/8/24150346/brilliant-smart-home-lighting-out-of-business,Series B,64,United States,5/9/2024 +Kinaxis,"Ottawa, Non-U.S.",,5/8/2024,0.06,Other,https://investors.kinaxis.com/news-releases/news-release-details/2024/Kinaxis-Inc.-Reports-First-Quarter-2024-Results/default.aspx,Post-IPO,79,Canada,5/23/2024 +Hopin,"London, Non-U.S.",,5/7/2024,,Other,https://hopin-talent-list.notion.site/90e1b6afe89e4264866ab04db1c3d76b?v=ab2de1190547432bb2ac6d0599aa0d60,Series D,1000,United Kingdom,5/9/2024 +Enovix,SF Bay Area,170.0,5/6/2024,0.33,Energy,https://www.theinformation.com/articles/battery-developer-enovix-lays-off-roughly-one-third-of-staff,Post-IPO,516,United States,5/7/2024 +Cue Health,San Diego,230.0,5/3/2024,0.49,Healthcare,https://www.beckershospitalreview.com/digital-health/health-tech-company-lays-off-49-of-workforce.html,Post-IPO,899,United States,5/4/2024 +Rivian,Los Angeles,150.0,5/3/2024,0.01,Transportation,https://abc7.com/rivian-jobs-irvine-careers-electric-vehicle/14761190/,Post-IPO,10700,United States,5/11/2024 +Luminar,Orlando,140.0,5/3/2024,0.2,Transportation,https://techcrunch.com/2024/05/03/luminar-layoffs-reduction-restructuring-lidar/,Post-IPO,780,United States,5/4/2024 +Sprinklr,New York City,116.0,5/3/2024,0.03,Support,https://techcrunch.com/2024/05/03/sprinklr-lays-off-more-than-100-employees/,Post-IPO,429,United States,5/3/2024 +Bakkt,Atlanta,28.0,5/3/2024,,Crypto,https://seekingalpha.com/news/4099966-crypto-platform-bakkt-to-lay-off-28-employees,Post-IPO,932,United States,5/4/2024 +Peloton,New York City,400.0,5/2/2024,0.15,Fitness,https://www.cnbc.com/2024/05/02/peloton-ceo-barry-mccarthy-steps-down-15percent-of-staff-laid-off.html,Post-IPO,1900,United States,5/2/2024 +Cabify,"Madrid, Non-U.S.",29.0,5/2/2024,,Transportation,https://www.epe.es/es/activos/20240502/cabify-ejecuta-veintena-despidos-staff-101773083,Unknown,601,Spain,5/9/2024 +Google,SF Bay Area,200.0,5/1/2024,,Consumer,https://www.cnbc.com/2024/05/01/google-cuts-hundreds-of-core-workers-moves-jobs-to-india-mexico.html,Post-IPO,26,United States,5/2/2024 +Assurance,Seattle,112.0,5/1/2024,1.0,Finance,https://www.geekwire.com/2024/prudential-to-shut-down-assurance-the-insurance-tech-startup-it-acquired-for-2-35b-in-2019/,Acquired,,United States,5/2/2024 +Sproutt,Hartford,,5/1/2024,1.0,Finance,https://www.calcalistech.com/ctechnews/article/rzw567hs7,Series B,38,United States,5/2/2024 +Tesla,Austin,500.0,4/30/2024,,Transportation,https://www.theverge.com/2024/4/30/24145621/tesla-layoff-supercharger-ev-charging-nacs-elon-musk,Post-IPO,20200,United States,5/1/2024 +RiseUp,"Tel Aviv, Non-U.S.",50.0,4/30/2024,0.5,Finance,https://www.calcalistech.com/ctechnews/article/sjhgncr11c,Series B,30,Israel,6/5/2024 +Akili Interactive,Boston,,4/30/2024,0.46,Healthcare,https://investors.akiliinteractive.com/news/news-details/2024/Akili-Announces-Amended-Agreement-with-Shionogi-Shift-in-Corporate-Strategy-and-Release-Date-for-First-Quarter-2024-Financial-Results/default.aspx,Post-IPO,271,United States,5/2/2024 +Google,SF Bay Area,,4/30/2024,,Consumer,https://techcrunch.com/2024/04/29/google-lays-off-staff-from-flutter-dart-python-weeks-before-its-developer-conference/,Post-IPO,26,United States,4/30/2024 +Getir,"London, Non-U.S.",3300.0,4/29/2024,,Food,https://techcrunch.com/2024/04/29/getir-getout-instant-delivery/,Series E,1800,United Kingdom,4/29/2024 +Ola,"Bengaluru, Non-U.S.",180.0,4/29/2024,0.1,Transportation,https://techcrunch.com/2024/04/29/indian-ride-hailing-giant-ola-cuts-180-jobs-in-profitability-push/,Series J,5000,India,4/30/2024 +Ninja Van,"Singapore, Non-U.S.",21.0,4/29/2024,0.1,Transportation,https://www.theedgesingapore.com/news/company-news/second-round-layoffs-ninja-van-less-three-months-5-singapore-staff-affected,Series E,974,Singapore,7/3/2024 +ComplYant,Los Angeles,,4/29/2024,1.0,Finance,https://www.businessinsider.com/tax-compliance-startup-raised-millions-then-it-abruptly-shut-down-2024-4,Seed,6,United States,4/30/2024 +Fisker,Los Angeles,,4/29/2024,,Transportation,https://techcrunch.com/2024/04/29/fisker-layoffs-staff-email-cuts-bankruptcy-sale/,Post-IPO,1700,United States,4/30/2024 +HealthifyMe,"Bengaluru, Non-U.S.",150.0,4/27/2024,0.27,Healthcare,https://inc42.com/buzz/healthify-fires-150-employees-in-a-restructuring-exercise/,Series D,130,India,4/29/2024 +True Anomaly,Denver,30.0,4/25/2024,0.25,Aerospace,https://techcrunch.com/2024/04/25/defense-space-startup-true-anomaly-layoffs-cancels-internship/,Series B,158,United States,4/26/2024 +Grin,Sacramento,,4/25/2024,,Marketing,https://www.businessinsider.com/influencer-marketing-firm-grin-lays-off-staffers-2024-4,Series B,145,United States,4/27/2024 +Expedia,Austin,,4/24/2024,,Travel,https://www.bizjournals.com/austin/news/2024/04/24/expedia-layoffs-austin-employees.html,Post-IPO,3300,United States,4/25/2024 +Freenome,SF Bay Area,100.0,4/23/2024,0.2,Healthcare,https://www.sfchronicle.com/bayarea/article/tech-layoffs-freenome-19421173.php,Series E,1400,United States,4/24/2024 +Heureka Group,"Prague, Non-U.S.",100.0,4/23/2024,0.16,Retail,https://cc.cz/heureka-hromadne-propustila-stovku-lidi-jsme-zasazeni-tlakem-na-efektivitu-uvedla/,Acquired,,Czech Republic,4/24/2024 +98point6,Seattle,,4/23/2024,,Healthcare,https://www.geekwire.com/2024/98point6-hit-by-new-layoffs-in-latest-change-at-health-tech-startup/,Acquired,299,United States,4/25/2024 +OutSystems,Boston,150.0,4/19/2024,0.08,Product,https://observador.pt/2024/04/19/unicornio-outsystems-faz-reducao-de-8-no-total-de-trabalhadores/,Series G,802,United States,5/3/2024 +Homie,Salt Lake City,,4/19/2024,,Real Estate,https://www.sltrib.com/news/business/2024/04/19/homie-utah-company-meant-disrupt/,Series B,35,United States,4/20/2024 +The Good Glamm Group,"New Delhi, Non-U.S.",150.0,4/18/2024,0.15,Retail,https://economictimes.indiatimes.com/tech/technology/content-to-commerce-platform-the-good-glamm-group-lays-off-150-employees/articleshow/109401639.cms,Unknown,180,India,4/18/2024 +Showpad,"Ghent, Non-U.S.",50.0,4/18/2024,0.1,Marketing,https://www.tijd.be/ondernemen/technologie/techbedrijf-showpad-slaat-met-nieuwe-ontslagronde-pad-naar-winst-in-we-willen-overnames-doen/10540237.html,Series D,159,Belgium,4/24/2024 +Stability AI,"London, Non-U.S.",20.0,4/18/2024,,AI,https://www.cnbc.com/2024/04/18/ai-startup-stability-lays-off-10percent-of-employees-after-ceo-exit.html,Unknown,174,United Kingdom,4/18/2024 +Pax8,Denver,,4/18/2024,0.05,Infrastructure,https://www.crn.com/news/channel-news/2024/pax8-cuts-about-five-percent-of-workforce-parting-with-valued-teammates-is-never-easy,Unknown,400,United States,4/20/2024 +ConnectWise,Tampa Bay,,4/17/2024,,Other,https://www.crn.com/news/channel-news/2024/connectwise-lays-off-less-than-100-staffers-to-improve-operations?itc=refresh,Acquired,1,United States,4/18/2024 +Google,SF Bay Area,,4/17/2024,,Consumer,https://www.reuters.com/technology/google-lays-off-employees-shifts-some-roles-abroad-amid-cost-cuts-2024-04-17/,Post-IPO,26,United States,4/18/2024 +Rivian,Detroit,,4/17/2024,0.01,Transportation,https://www.reuters.com/business/autos-transportation/rivian-cuts-1-workforce-second-job-cut-this-year-2024-04-17/,Post-IPO,10700,United States,4/18/2024 +Take-Two,New York City,579.0,4/16/2024,0.05,Consumer,https://www.ign.com/articles/take-two-announces-layoffs-while-canceling-multiple-in-development-projects,Post-IPO,4100,United States,4/16/2024 +Tome,SF Bay Area,12.0,4/16/2024,0.25,AI,https://www.semafor.com/article/04/16/2024/ai-startup-tome-lays-off-staff-to-focus-on-revenue,Series B,75,United States,4/16/2024 +Tesla,Austin,14000.0,4/15/2024,0.1,Transportation,https://www.nytimes.com/2024/04/15/business/tesla-layoff-elon-musk.html,Post-IPO,20200,United States,4/15/2024 +Criteo,"Paris, Non-U.S.",140.0,4/12/2024,0.04,Marketing,https://www.businessinsider.com/criteo-layoffs-global-staff-job-reductions-2024-4,Post-IPO,61,France,4/12/2024 +Glovo,"Barcelona, Non-U.S.",25.0,4/12/2024,,Food,https://beteve.cat/economia/glovo-acomiada-25-treballadors-oficines-barcelona/,Acquired,1200,Spain,4/12/2024 +TikTok,"Dublin, Non-U.S.",250.0,4/11/2024,,Consumer,https://www.thejournal.ie/tiktok-to-cut-around-300-jobs-6352003-Apr2024/,Acquired,,Ireland,4/12/2024 +Fabric,New York City,30.0,4/11/2024,0.15,Logistics,https://www.calcalistech.com/ctechnews/article/hyfcqfhlr,Series C,336,United States,4/12/2024 +Hinge Health,SF Bay Area,,4/11/2024,0.1,Healthcare,https://techcrunch.com/2024/04/11/virtual-physical-therapist-hinge-health-lays-off-10-of-its-workforce/,Series E,826,United States,4/12/2024 +Zoe,"London, Non-U.S.",,4/11/2024,0.2,Healthcare,https://sifted.eu/articles/zoe-healthtech-cost-cutting-news,Series B,89,United Kingdom,4/12/2024 +Cornershop,"Santiago, Non-U.S.",200.0,4/10/2024,,Food,https://dfmas.df.cl/df-mas/coffee-break/uber-chile-despide-a-200-personas,Acquired,32,Chile,4/12/2024 +Scaler,"Bengaluru, Non-U.S.",150.0,4/10/2024,,Education,https://entrackr.com/2024/04/tech-upskilling-startup-scaler-lays-off-150-employees/,Series B,55,India,4/10/2024 +Checkr,SF Bay Area,382.0,4/9/2024,0.32,HR,Internal memo,Series D,679,United States,4/9/2024 +Intel,SF Bay Area,62.0,4/9/2024,,Hardware,https://www.crn.com/news/components-peripherals/2024/intel-layoffs-impact-62-jobs-at-california-hq,Post-IPO,12,United States,4/12/2024 +Trendsales,"Copenhagen, Non-U.S.",79.0,4/8/2024,1.0,Retail,https://aimgroup.com/2024/04/08/vinted-reportedly-lays-off-all-trendsales-employees-after-takeover/,Acquired,,Denmark,4/10/2024 +Singularity 6,Los Angeles,49.0,4/8/2024,0.35,Other,https://www.gamesindustry.biz/singularity-6-reduces-workforce-by-35,Series B,49,United States,4/10/2024 +Fission,"Vancouver, Non-U.S.",,4/7/2024,1.0,Other,https://fission.codes/blog/farewell-from-fission/,Unknown,,Canada,4/8/2024 +Bolt.Earth,"Bengaluru, Non-U.S.",70.0,4/6/2024,0.4,Energy,https://inc42.com/buzz/bolt-earth-fires-employees-in-another-restructuring-exercise-shuts-two-business-verticals/,Series B,24,India,4/8/2024 +Apple,SF Bay Area,614.0,4/4/2024,,Hardware,https://www.bloomberg.com/news/articles/2024-04-04/apple-cut-at-least-600-workers-when-car-screen-projects-stopped?embedded-checkout=true,Post-IPO,1200,United States,4/5/2024 +Agility Robotics,Portland,,4/4/2024,,Other,https://techcrunch.com/2024/04/04/agility-robotics-lays-off-some-staff-amid-commercialization-focus/,Series B,179,United States,4/5/2024 +Lightspeed Commerce,"Montreal, Non-U.S.",280.0,4/3/2024,,Retail,https://www.bnnbloomberg.ca/lightspeed-commerce-cutting-280-jobs-as-it-focuses-on-profitable-growth-1.2054620,Post-IPO,1200,Canada,4/3/2024 +Ghost Autonomy,SF Bay Area,100.0,4/3/2024,1.0,Transportation,https://www.sfgate.com/tech/article/ghost-autonomy-shutdown-tech-layoff-19385702.php,Series E,247,United States,4/4/2024 +Vivian Health,SF Bay Area,13.0,4/3/2024,,Healthcare,Internal memo,Acquired,60,United States,4/10/2024 +Amazon,Seattle,,4/3/2024,,Retail,https://www.geekwire.com/2024/amazon-web-services-cuts-hundreds-of-jobs-in-sales-training-and-physical-stores-technology/,Post-IPO,108,United States,4/3/2024 +CoRover,"Bengaluru, Non-U.S.",,4/3/2024,,AI,https://inc42.com/buzz/corover-ai-to-shut-down-its-us-uk-subsidiaries-to-focus-on-the-india-market/,Unknown,,India,4/4/2024 +Kaseya,Miami,,4/3/2024,,Security,https://www.bizjournals.com/southflorida/news/2024/04/03/kaseya-miami-job-staff-cuts.html,Unknown,547,United States,4/5/2024 +New Relic,SF Bay Area,,4/3/2024,,Infrastructure,https://www.bizjournals.com/portland/news/2024/04/03/layoffs-reported-at-new-relic.html,Acquired,214,United States,4/4/2024 +Yummly,SF Bay Area,,4/3/2024,1.0,Food,https://thespoon.tech/whirlpool-lays-off-entire-team-for-cooking-and-recipe-app-yummly/,Acquired,24,United States,4/3/2024 +Byju's,"Bengaluru, Non-U.S.",500.0,4/2/2024,0.03,Education,https://www.business-standard.com/companies/news/byju-s-lays-off-500-employees-terminates-employment-over-phone-calls-124040201104_1.html,Private Equity,5500,India,4/2/2024 +Lentra,"Pune, Non-U.S.",,4/2/2024,,Finance,https://inc42.com/buzz/fintech-saas-startup-lentra-lays-off-employees-to-optimise-operations/,Series B,104,India,4/3/2024 +Thepeer,"Lagos, Non-U.S.",,4/2/2024,1.0,Finance,https://techpoint.africa/2024/04/01/nigerian-startup-thepeer-to-shut-down/,Seed,2,Nigeria,4/2/2024 +Osso VR,SF Bay Area,67.0,4/1/2024,,Healthcare,https://www.medtechdive.com/news/osso-vr-lay-off-67-people-san-francisco/711814/,Series C,109,United States,4/2/2024 +Identiq,"Tel Aviv, Non-U.S.",20.0,4/1/2024,0.44,Security,https://www.calcalistech.com/ctechnews/article/bjfyzloya,Series A,52,Israel,4/2/2024 +Ranger Insurance,New York City,,4/1/2024,1.0,Finance,https://www.linkedin.com/feed/update/urn:li:activity:7180607619240243201/,Seed,5,United States,4/2/2024 +Rezi,New York City,,4/1/2024,1.0,Real Estate,https://therealdeal.com/national/2024/04/01/rental-platform-rezi-runs-out-of-money-shuts-down/,Series B,230,United States,4/2/2024 +ChowNow,Los Angeles,60.0,3/28/2024,0.2,Food,https://techcrunch.com/2024/03/28/chownow-acquires-yc-backed-point-of-sale-platform-cuboh-and-is-laying-off-staff/,Series C,64,United States,3/28/2024 +Synctera,SF Bay Area,17.0,3/26/2024,0.15,Finance,https://techcrunch.com/2024/03/26/baas-startup-synctera-layoffs-fintech/,Series A,79,United States,3/26/2024 +GoPro,SF Bay Area,,3/26/2024,0.04,Consumer,https://www.wsj.com/business/earnings/gopro-to-cut-total-workforce-by-4-reduce-office-space-208f369a?,Post-IPO,288,United States,4/8/2024 +Dell,Austin,6000.0,3/25/2024,0.05,Hardware,https://siliconangle.com/2024/03/25/dell-reduces-global-workforce-around-6000-jobs/,Post-IPO,,United States,3/27/2024 +Verily,SF Bay Area,,3/22/2024,,Healthcare,https://www.businessinsider.com/alphabets-verily-layoffs-google-employees-molecular-science-immune-profiler-r2024-3,Subsidiary,3500,United States,3/24/2024 +Cybereason,Boston,,3/20/2024,,Security,https://www.calcalistech.com/ctechnews/article/bkrfcv00ra,Series F,750,United States,3/20/2024 +ShopBack,"Singapore, Non-U.S.",195.0,3/19/2024,0.24,Retail,https://www.bloomberg.com/news/articles/2024-03-19/temasek-backed-shopback-cuts-24-of-jobs-in-pay-later-defeat?embedded-checkout=true,Series F,355,Singapore,3/20/2024 +Orbotech,"Yavne, Non-U.S.",100.0,3/19/2024,,Manufacturing,https://www.calcalistech.com/ctechnews/article/hy20lqwrt,Acquired,,Israel,3/20/2024 +Airmeet,"Bengaluru, Non-U.S.",,3/19/2024,0.2,Marketing,https://inc42.com/buzz/airmeet-lays-off-20-workforce-in-second-restructuring-exercise-within-a-year/,Series B,50,India,3/20/2024 +Singular Genomics,San Diego,,3/19/2024,0.2,Healthcare,https://www.genomeweb.com/business-news/singular-genomics-lay-20-percent-workforce-q4-revenues-41-percent,Post-IPO,176,United States,4/12/2024 +Longi,"Xi'an, Non-U.S.",,3/18/2024,0.05,Energy,https://www.nasdaq.com/articles/chinas-longi-says-it-will-lay-off-about-5-of-employees,Unknown,,China,3/20/2024 +Flock Freight,San Diego,54.0,3/16/2024,,Logistics,https://www.freightwaves.com/news/flock-reports-layoffs-path-to-profitability,Series D,399,United States,3/17/2024 +Chipper Cash,SF Bay Area,20.0,3/15/2024,,Finance,https://www.theinformation.com/briefings/payments-startup-chipper-cuts-jobs-in-seventh-round-of-layoffs,Series C,302,United States,3/17/2024 +Blueboard,SF Bay Area,,3/15/2024,1.0,HR,https://www.kqed.org/news/11979696/popular-employee-rewards-company-blueboard-shutters-abruptly,Series A,16,United States,3/17/2024 +Ancestry,Lehi,81.0,3/14/2024,0.06,Consumer,https://endpts.com/ancestry-cut-6-of-workforce-as-genealogy-giant-struggles-with-subscription-revenue/,Post-IPO,33,United States,4/18/2024 +Textio,Seattle,14.0,3/14/2024,0.16,Recruiting,https://www.geekwire.com/2024/augmented-writing-startup-textio-lays-off-14-employees-or-16-of-staff/,Unknown,42,United States,3/15/2024 +Stash,New York City,80.0,3/13/2024,0.25,Finance,https://www.axios.com/pro/fintech-deals/2024/03/13/stash-lays-off-25-percent,Unknown,480,United States,3/13/2024 +Phantom Auto,SF Bay Area,100.0,3/12/2024,1.0,Transportation,https://techcrunch.com/2024/03/12/remote-driving-startup-phantom-auto-is-shutting-down/,Unknown,86,United States,3/12/2024 +IBM,New York City,,3/12/2024,,Hardware,https://www.cnbc.com/2024/03/12/ibm-tells-employees-of-job-cuts-in-marketing-and-communications.html,Post-IPO,,United States,3/17/2024 +Deadspin,New York City,11.0,3/11/2024,1.0,Media,https://variety.com/2024/digital/news/deadspin-staff-laid-off-site-sold-1235938325/,Acquired,,United States,3/11/2024 +Niche,Pittsburgh,24.0,3/8/2024,0.07,Education,https://technical.ly/professional-development/niche-layoffs-pittsburgh-edtech/,Series C,44,United States,3/11/2024 +Inscribe,SF Bay Area,,3/8/2024,0.4,Finance,https://techcrunch.com/2024/03/08/ai-fraud-detection-software-maker-inscribe-ai-lays-off-40-of-staff/,Series B,39,United States,3/9/2024 +Turnitin,SF Bay Area,15.0,3/7/2024,0.02,Education,https://techcrunch.com/2024/03/07/turnitin-laid-off-staff-earlier-this-year-after-ceo-forecast-ai-would-allow-it-to-cut-headcount/,Acquired,,United States,3/7/2024 +Totango,SF Bay Area,,3/7/2024,,Support,https://www.calcalistech.com/ctechnews/article/rkbpxedat,Acquired,147,United States,3/8/2024 +Sorare,New York City,22.0,3/6/2024,0.13,Crypto,https://techcrunch.com/2024/03/06/nft-fantasy-sports-startup-sorare-layoffs-web3-gaming/,Series B,739,United States,3/6/2024 +Meta,SF Bay Area,,3/6/2024,,Consumer,https://www.businessinsider.com/meta-facebook-messenger-hit-with-layoffs-2024-3?IR=T,Post-IPO,26000,United States,3/8/2024 +PlanetScale,SF Bay Area,,3/6/2024,,Data,https://planetscale.com/blog/planetscale-forever,Series C,105,United States,3/6/2024 +MessageBird,"Amsterdam, Non-U.S.",90.0,3/5/2024,0.2,Other,https://www.amsterdamai.com/en/nieuws/529e0e27-44d0-0505-2af2-f473d807ab03/Bird-ontslaat-werknemers-wegens-AI-effici%C3%ABntie,Series C,1100,Netherlands,3/8/2024 +Form Energy,Boston,,3/5/2024,,Energy,https://www.bizjournals.com/boston/news/2024/03/05/form-energy-layoffs-company-agile.html,Unknown,966,United States,3/6/2024 +Verbit,New York City,,3/5/2024,,Data,https://www.calcalistech.com/ctechnews/article/hjfc9uvp6,Series E,569,United States,3/5/2024 +Edgio,Phoenix,80.0,3/4/2024,0.1,Infrastructure,https://investors.edg.io/node/13996/html,Post-IPO,462,United States,3/7/2024 +Melio,New York City,40.0,3/4/2024,0.07,Finance,https://www.calcalistech.com/ctechnews/article/r1sremqtt,Series D,504,United States,3/5/2024 +Our Next Energy,Detroit,40.0,3/4/2024,0.13,Transportation,https://www.bloomberg.com/news/articles/2024-03-04/michigan-battery-startup-one-cuts-jobs-as-ceo-seeks-fresh-funds?embedded-checkout=true,Series B,390,United States,3/5/2024 +Project Ronin,SF Bay Area,150.0,3/1/2024,1.0,Healthcare,https://www.bloomberg.com/news/articles/2024-03-01/larry-ellison-s-cancer-software-startup-project-ronin-is-closing,Unknown,,United States,3/5/2024 +Pristyn Care,"Gurugram, Non-U.S.",120.0,3/1/2024,0.07,Healthcare,https://entrackr.com/2024/03/pristyn-care-lays-off-around-120-employees-as-it-targets-profitability-and-ipo/,Series E,177,India,3/1/2024 +Gro Intelligence,New York City,90.0,3/1/2024,0.6,Food,https://www.wsj.com/business/climate-data-startup-with-all-star-investors-and-roots-in-africa-nearly-collapses-3f675357?mod=e2li,Series B,118,United States,3/3/2024 +Tonik,"Singapore, Non-U.S.",,3/1/2024,,Finance,https://www.techinasia.com/tonik-lays-employees-reaching-unit-profitability,Series B,175,Singapore,3/3/2024 +Fisker,Los Angeles,,2/29/2024,0.15,Transportation,https://techcrunch.com/2024/02/29/fisker-layoffs-cash-going-concern-dealerships/,Post-IPO,1700,United States,2/29/2024 +Kevin,"Vilnius, Non-U.S.",,2/29/2024,0.14,Finance,https://sifted.eu/articles/kevin-salaries,Series A,79,Lithuania,3/5/2024 +Electronic Arts,SF Bay Area,670.0,2/28/2024,0.05,Consumer,https://www.cnbc.com/2024/02/28/ea-layoffs-company-to-cut-5percent-of-workforce-or-about-670-employees.html,Post-IPO,2,United States,2/29/2024 +Vacasa,Portland,320.0,2/28/2024,0.05,Travel,https://www.oregonlive.com/business/2024/02/portland-based-vacasa-will-lay-off-another-320-new-year-is-off-to-a-difficult-start.html,Post-IPO,834,United States,2/29/2024 +OrCam,"Jerusalem, Non-U.S.",50.0,2/28/2024,0.19,Healthcare,https://www.calcalistech.com/ctechnews/article/skd15oj4a,Unknown,86,Israel,6/4/2024 +Treasury Prime,SF Bay Area,40.0,2/28/2024,0.4,Finance,https://www.bankingdive.com/news/treasury-prime-lay-off-40-50-employees-marketing-liaison-direct-fintech-partner-chris-dean/708770/,Series C,71,United States,2/29/2024 +Motional,Boston,,2/28/2024,0.05,Transportation,https://techcrunch.com/2024/02/28/hyundai-backed-autonomous-company-motional-cuts-5-of-workforce/,Unknown,,United States,2/28/2024 +Sony Interactive,SF Bay Area,900.0,2/27/2024,0.08,Consumer,https://www.theverge.com/2024/2/27/24084494/sony-playstation-layoffs-2024,Subsidiary,,United States,2/27/2024 +Bumble,Austin,350.0,2/27/2024,0.3,Consumer,https://www.cnbc.com/2024/02/27/bumble-layoffs-350-employees-or-about-37percent-of-workforce.html,Post-IPO,313,United States,2/27/2024 +PropertyGuru,"Singapore, Non-U.S.",79.0,2/27/2024,,Real Estate,https://www.theedgesingapore.com/news/company-news/propertyguru-cuts-79-jobs-amid-organisational-changes,Post-IPO,676,Singapore,2/27/2024 +Apple,SF Bay Area,,2/27/2024,,Transportation,https://techcrunch.com/2024/02/27/apple-cancels-electric-car-project-titan/,Post-IPO,1200,United States,2/27/2024 +Expedia,Seattle,1500.0,2/26/2024,0.08,Travel,https://www.geekwire.com/2024/expedia-group-cutbacks-will-impact-1500-roles-this-year-more-than-8-of-workforce/,Post-IPO,3300,United States,2/27/2024 +WayCool,"Chennai, Non-U.S.",70.0,2/26/2024,,Food,https://inc42.com/buzz/exclusive-waycool-fires-70-employees-in-second-restructuring-exercise-within-a-year/,Unknown,363,India,2/27/2024 +Daraz,"Singapore, Non-U.S.",,2/26/2024,,Retail,https://www.reuters.com/business/retail-consumer/alibabas-south-asian-e-commerce-giant-daraz-announces-layoffs-memo-2024-02-27/,Unknown,,Singapore,2/29/2024 +Redesign Health,New York City,77.0,2/23/2024,,Healthcare,https://www.crainsnewyork.com/health-pulse/union-square-based-redesign-health-cuts-staff-slows-startup-creation,Series C,315,United States,2/24/2024 +Carbon Health,SF Bay Area,56.0,2/23/2024,,Healthcare,https://www.sfchronicle.com/bayarea/article/bay-area-layoffs-carbon-health-18684600.php,Series D,522,United States,2/24/2024 +Vice Media,New York City,,2/22/2024,,Media,https://www.nytimes.com/2024/02/22/business/vice-media-layoffs.html,Unknown,1600,United States,2/24/2024 +Affirm,Pittsburgh,60.0,2/21/2024,,Finance,https://bnnbreaking.com/finance-nav/affirms-pittsburgh-layoffs-a-tale-of-corporate-strategy-and-employee-impact,Post-IPO,1500,United States,2/22/2024 +Finder,"Sydney, Non-U.S.",60.0,2/21/2024,0.17,Retail,https://www.startupdaily.net/topic/business/finder-cuts-staffing-for-the-3rd-time-in-a-year-shedding-60-jobs/,Unknown,30,Australia,2/22/2024 +BuzzFeed,New York City,,2/21/2024,0.16,Media,https://variety.com/2024/digital/news/buzzfeed-sells-complex-ntwrk-layoffs-1235918498/,Post-IPO,696,United States,2/23/2024 +Rivian,Detroit,,2/21/2024,0.1,Transportation,https://techcrunch.com/2024/02/21/rivian-lays-off-10-of-workforce-as-ev-pricing-pressure-mounts/,Post-IPO,10700,United States,2/22/2024 +Aptiv,"Krakow, Non-U.S.",250.0,2/20/2024,,Transportation,"https://wyborcza.biz/biznes/7,159911,30719165,w-pol-godziny-zwolnili-250-osob-dostal-godzine-na-spakowanie.html?disableRedirects=true",Post-IPO,8,Poland,2/21/2024 +Tails.com,"London, Non-U.S.",55.0,2/20/2024,0.25,Retail,https://www.businessinsider.com/tails-com-is-laying-off-25-percent-of-staffers-2024-2,Series A,5,United Kingdom,2/21/2024 +Auctane,Austin,,2/20/2024,,Retail,https://www.ecommercebytes.com/2024/02/20/layoffs-hit-shipping-solution-auctane-aka-stamps-com/,Unknown,,United States,3/12/2024 +KnownOrigin,"Manchester, Non-U.S.",,2/20/2024,0.3,Crypto,https://crypto.news/ebay-reportedly-laid-off-staff-at-nft-marketplace-knownorigin-it-acquired-in-2022/,Acquired,3,United Kingdom,2/21/2024 +Meati,Boulder,,2/20/2024,0.3,Food,https://techcrunch.com/2024/02/20/meati-foods-cuts-workforce-amid-ceo-shift/,Series C,274,United States,2/21/2024 +Farfetch,"London, Non-U.S.",2000.0,2/16/2024,0.25,Retail,https://www.drapersonline.com/news/farfetch-to-cut-up-to-30-jobs,Acquired,1700,United Kingdom,2/16/2024 +Voi,"Stockholm, Non-U.S.",120.0,2/16/2024,0.12,Transportation,https://sifted.eu/articles/voi-layoffs-news,Series D,515,Sweden,2/20/2024 +Toast,Boston,550.0,2/15/2024,0.1,Food,https://www.bloomberg.com/news/articles/2024-02-15/toast-layoffs-to-impact-hundreds-at-restaurant-tech-company?embedded-checkout=true,Post-IPO,962,United States,2/15/2024 +Sonder,SF Bay Area,106.0,2/15/2024,0.17,Travel,https://www.sec.gov/ixviewer/ix.html?doc=/Archives/edgar/data/1819395/000181939524000007/son-20240215.htm,Post-IPO,839,United States,2/21/2024 +LinkSquares,Boston,90.0,2/15/2024,,Legal,Internal memo,Series C,161,United States,1/5/2025 +Storytel,"Stockholm, Non-U.S.",80.0,2/15/2024,0.13,Consumer,https://investors.storytel.com/en/wp-content/uploads/sites/2/2024/02/presentation-q4-report-2023.pdf,Post-IPO,312,Sweden,2/16/2024 +Gro Intelligence,New York City,20.0,2/15/2024,0.1,Food,https://agfundernews.com/ai-powered-ag-insights-platform-gro-intelligence-lays-off-10-of-its-staff,Series B,118,United States,2/16/2024 +CodeSee,SF Bay Area,,2/15/2024,1.0,Data,https://www.linkedin.com/posts/shaneak_i-am-very-sad-to-announce-officially-activity-7163970333912289281-DaOb/,Seed,10,United States,2/15/2024 +May Mobility,Ann Arbor,,2/15/2024,0.13,Transportation,https://www.detroitnews.com/story/business/autos/2024/02/15/michigan-based-av-startup-may-mobility-reduces-workforce-by-13/72618523007/,Series D,303,United States,2/15/2024 +Cisco,SF Bay Area,4250.0,2/14/2024,0.05,Infrastructure,https://www.cnbc.com/2024/02/14/cisco-cutting-5percent-of-global-workforce-in-restructuring-move.html,Post-IPO,2,United States,2/14/2024 +Wint Wealth,"Nashik, Non-U.S.",19.0,2/14/2024,0.2,Finance,https://inc42.com/buzz/exclusive-wint-wealth-fires-20-of-its-workforce-in-a-restructuring-exercise/,Series A,16,India,2/15/2024 +Away,New York City,,2/14/2024,0.25,Retail,https://www.inc.com/rebecca-deczynski/away-just-cut-25-percent-of-its-internal-staff-ceo-jen-rubio-shares-companys-path-forward.html,Series D,181,United States,2/14/2024 +Instacart,SF Bay Area,250.0,2/13/2024,0.07,Food,https://www.cnbc.com/2024/02/13/instacart-layoffs-company-to-cut-250-employees-or-about-7percent.html,Post-IPO,2900,United States,2/13/2024 +Redesign Health,New York City,77.0,2/13/2024,,Healthcare,https://www.fiercehealthcare.com/health-tech/redesign-health-reduces-workforce-it-slows-down-pace-new-company-launches-2024,Unknown,315,United States,2/14/2024 +Mozilla,SF Bay Area,60.0,2/13/2024,0.05,Consumer,https://www.bloomberg.com/news/articles/2024-02-13/firefox-maker-mozilla-is-cutting-60-jobs-after-naming-new-ceo,Unknown,2.3,United States,2/13/2024 +Impinj,Seattle,50.0,2/13/2024,0.1,Other,https://www.bizjournals.com/seattle/news/2024/02/12/impinj-layoffs-seattle-internet-of-things.html,Post-IPO,137,United States,3/14/2024 +Riskified,New York City,40.0,2/13/2024,0.06,Retail,https://en.globes.co.il/en/article-israeli-fintech-co-riskified-lays-off-6-of-workforce-1001471055,Post-IPO,229,United States,2/14/2024 +Everybuddy,"Tel Aviv, Non-U.S.",,2/13/2024,1.0,Consumer,https://www.calcalistech.com/ctechnews/article/rj28wryo6,Series A,15,Israel,2/15/2024 +Popcore,"Berlin, Non-U.S.",,2/13/2024,,Consumer,https://www.pocketgamer.biz/news/83416/popcore-undergoes-wave-of-layoffs-impacting-key-staff/,Acquired,,Germany,2/28/2024 +Wisense,"Tel Aviv, Non-U.S.",,2/13/2024,1.0,Transportation,https://www.calcalistech.com/ctechnews/article/rjeyhktjt,Unknown,37,Israel,2/14/2024 +SiriusXM,New York City,160.0,2/12/2024,0.03,Media,https://variety.com/2024/digital/news/siriusxm-layoffs-160-employees-1235908020/,Post-IPO,525,United States,3/17/2024 +Licious,"Bengaluru, Non-U.S.",80.0,2/9/2024,0.03,Food,https://www.livemint.com/companies/licious-lays-off-80-employees-with-eye-on-growth-11707473279919.html,Series F,490,India,2/9/2024 +BlissClub,"Bengaluru, Non-U.S.",21.0,2/9/2024,0.18,Retail,https://inc42.com/buzz/exclusive-d2c-startup-blissclub-fires-about-18-workforce-to-cut-costs/,Series A,20,India,2/10/2024 +Kandji,San Diego,,2/9/2024,,Other,Internal memo,Series C,188,United States,2/12/2024 +Pure Storage,SF Bay Area,275.0,2/8/2024,,Data,https://blocksandfiles.com/2024/02/08/pure-storage-lays-off-staff-again/,Post-IPO,529,United States,2/8/2024 +Otovo,"Oslo, Non-U.S.",65.0,2/8/2024,0.15,Energy,https://www.mynewsdesk.com/otovo/pressreleases/otovo-q4-2023-cost-cuts-and-efficiency-program-executed-ready-for-2024-3302572,Post-IPO,247,Norway,2/20/2024 +Getaround,SF Bay Area,,2/8/2024,0.3,Transportation,https://techcrunch.com/2024/02/08/car-sharing-company-getaround-cuts-one-third-of-u-s-workforce/,Post-IPO,948,United States,2/8/2024 +Journera,Chicago,,2/8/2024,1.0,Travel,https://www.phocuswire.com/jeffrey-katz-journera-shuts-down,Series B,31,United States,2/10/2024 +Grammarly,SF Bay Area,230.0,2/7/2024,,Consumer,https://elbuz.com/en/grammarly-skorochue-230-chleniv-komandi-37-z-yakikh-v-ukraini,Unknown,400,United States,2/7/2024 +Fireblocks,New York City,20.0,2/7/2024,0.03,Crypto,https://www.calcalistech.com/ctechnews/article/rjkvszzit,Series E,1000,United States,2/7/2024 +Tenable,Baltimore,,2/7/2024,0.05,Security,https://bnnbreaking.com/finance-nav/tenable-reveals-strong-q4-2023-financial-performance-and-strategy-optimization,Post-IPO,565,United States,2/8/2024 +Workfellow,"Espoo, Non-U.S.",,2/7/2024,1.0,HR,https://tech.eu/2024/02/07/finnish-hrtech-startup-workfellow-announces-shutdown-amid-challenges/,Seed,3,Finland,2/7/2024 +DocuSign,SF Bay Area,440.0,2/6/2024,0.06,Sales,https://www.cnbc.com/2024/02/06/docusign-to-lay-off-6percent-of-workforce-or-about-440-jobs.html,Post-IPO,536,United States,2/6/2024 +Amazon,Seattle,400.0,2/6/2024,,Retail,https://www.businessinsider.com/amazon-one-medical-pharmacy-layoffs-broader-cost-cutting-campaign-2024-2,Post-IPO,108,United States,2/7/2024 +Glowforge,Seattle,,2/6/2024,,Manufacturing,https://www.geekwire.com/2024/glowforge-lays-off-more-employees-after-funding-round-falls-through-at-3d-laser-engraver-maker/,Series E,133,United States,2/28/2024 +Snap,Los Angeles,500.0,2/5/2024,0.1,Consumer,https://www.cnbc.com/2024/02/05/snap-to-lay-off-10percent-of-global-workforce-around-500-employees.html,Post-IPO,4900,United States,2/5/2024 +Drizly,Boston,168.0,2/5/2024,1.0,Retail,https://www.boston.com/news/business/2024/02/05/uber-drizly-to-lay-off-168-boston-workers/,Acquired,119,United States,2/6/2024 +BillGO,Fort Collins,80.0,2/5/2024,,Finance,https://www.coloradoan.com/story/money/business/2024/02/05/billgo-announces-80-layoffs-at-fort-collins-office/72484159007/,Series B,119,United States,2/6/2024 +Impact.com,Los Angeles,40.0,2/5/2024,0.03,Sales,https://www.adnews.com.au/news/impact-com-cuts-staff-in-global-cost-cutting,Private Equity,361,United States,2/6/2024 +Astrate Medical,Philadelphia,,2/5/2024,1.0,Healthcare,https://www.businessinsider.com/exclusive-why-baby-tech-startup-astarte-medical-shutting-down-2024-1,Series A,13,United States,2/6/2024 +Meetup,New York City,,2/5/2024,,Consumer,https://www.meetup.com/blog/recent-changes-and-a-look-toward-the-future/,Acquired,18,United States,2/6/2024 +Muvin,"Bengaluru, Non-U.S.",,2/5/2024,1.0,Finance,https://entrackr.com/2024/02/exclusive-neobank-muvin-shuts-down-operations/,Seed,4,India,2/6/2024 +Nomad Health,New York City,,2/5/2024,,Healthcare,https://www.businessinsider.com/nomad-health-layoffs-employees-healthcare-2024-2,Unknown,218,United States,2/6/2024 +Zwift,Los Angeles,,2/5/2024,,Fitness,https://forums.zwift.com/t/zwift-organizational-changes-february-2024/623962,Series C,619,United States,2/6/2024 +Cue Health,San Diego,245.0,2/2/2024,0.3,Healthcare,https://www.sandiegouniontribune.com/business/story/2024-02-02/cue-health-lays-off-more-than-30-percent-of-its-global-workforce,Post-IPO,899,United States,2/5/2024 +Top Hat,"Toronto, Non-U.S.",35.0,2/2/2024,0.07,Education,https://betakit.com/toronto-software-companies-top-hat-loopio-wattpad-make-layoffs/,Series E,234,Canada,2/2/2024 +Cake Bikes,"Stockholm, Non-U.S.",,2/2/2024,1.0,Transportation,https://techcrunch.com/2024/02/02/cake-electric-motorcycle-bankruptcy/,Unknown,74,Sweden,2/3/2024 +Small Robot Company,"Salisbury, Non-U.S.",,2/2/2024,1.0,Food,https://www.therobotreport.com/agtech-startup-small-robot-company-shutting-down/,Unknown,10,United Kingdom,2/3/2024 +Twig,"London, Non-U.S.",,2/2/2024,1.0,Finance,https://www.fintechfutures.com/2024/02/uk-fintech-twig-enters-liquidation/,Unknown,41,United Kingdom,2/3/2024 +Okta,SF Bay Area,400.0,2/1/2024,0.07,Security,https://www.cnbc.com/2024/02/01/okta-to-lay-off-7percent-of-staff-about-400-employees.html,Post-IPO,1200,United States,2/1/2024 +Zoom,SF Bay Area,150.0,2/1/2024,0.02,Other,https://www.cnbc.com/2024/02/01/zoom-layoffs-company-cuts-150-employees-2percent-of-workforce.html,Post-IPO,276,United States,2/1/2024 +Illumina,San Diego,111.0,2/1/2024,,Healthcare,https://www.sandiegouniontribune.com/business/story/2024-02-01/illumina-lays-off-11,Post-IPO,28,United States,2/3/2024 +Polygon,"Cayman Islands, Non-U.S.",60.0,2/1/2024,0.19,Crypto,https://forum.polygon.technology/t/an-update-on-polygon-labs-polygon-ventures-and-polygon-id/13507,Unknown,451,Cayman Islands,2/1/2024 +Indigo,Boston,,2/1/2024,,Other,https://www.bizjournals.com/boston/news/2024/02/01/indigo-cuts-jobs-new-ceo-takes-over.html,Series F,1200,United States,2/2/2024 +Proofpoint,SF Bay Area,280.0,1/31/2024,0.06,Security,https://www.calcalistech.com/ctechnews/article/hjaniiwc6,Acquired,885,United States,1/31/2024 +Trove Recommerce,SF Bay Area,130.0,1/31/2024,,Retail,https://www.bizjournals.com/sanfrancisco/news/2024/01/31/trove-apparel-resale-tech-layoff-brisbane.html,Series E,152,United States,2/2/2024 +CircleCI,SF Bay Area,100.0,1/31/2024,,Product,Internal memo,Series F,315,United States,2/1/2024 +Thinx,New York City,95.0,1/31/2024,,Retail,https://www.modernretail.co/operations/thinx-to-layoff-95-workers-per-new-york-state-labor-filing/,Acquired,26,United States,1/31/2024 +Innoviz,"Tel Aviv, Non-U.S.",60.0,1/31/2024,0.13,Transportation,https://www.calcalistech.com/ctechnews/article/hjs6xbucp,Post-IPO,547,Israel,2/1/2024 +The Messenger,Miami,,1/31/2024,1.0,Media,https://www.nbcnews.com/news/us-news/startup-news-site-messenger-shutters-less-year-launch-rcna136643,Unknown,,United States,2/1/2024 +Zuora,SF Bay Area,,1/31/2024,0.08,Finance,https://www.sec.gov/ixviewer/ix.html?doc=/Archives/edgar/data/0001423774/000142377424000052/zuo-20240127.htm,Post-IPO,647,United States,2/2/2024 +PayPal,SF Bay Area,2500.0,1/30/2024,0.09,Finance,https://www.bloomberg.com/news/articles/2024-01-30/paypal-to-cut-around-2-500-jobs-as-rivals-snag-market-share,Post-IPO,216,United States,1/30/2024 +Block,SF Bay Area,1000.0,1/30/2024,0.1,Finance,https://www.businessinsider.com/block-layoffs-jack-dorsey-tech-industry-cuts-2024-1,Post-IPO,150,United States,1/30/2024 +Kiwi.com,"Brno, Non-U.S.",216.0,1/30/2024,0.18,Travel,https://cc.cz/vyhledavac-letenek-kiwi-com-hromadne-propousti-nejtezsi-rozhodnuti-v-zivote-rika-dlouhy/,Unknown,107,Czech Republic,1/30/2024 +Aurora Solar,SF Bay Area,111.0,1/30/2024,0.2,Energy,https://techcrunch.com/2024/01/30/aurora-solar-layoffs/,Series D,523,United States,1/30/2024 +Wattpad,"Toronto, Non-U.S.",20.0,1/30/2024,0.1,Media,https://techcrunch.com/2024/01/30/wattpad-a-storytelling-platform-conducts-another-layoff-round/,Acquired,117,Canada,1/31/2024 +TechCrunch,SF Bay Area,7.0,1/30/2024,,Media,https://www.adweek.com/media/techcrunch-shutters-subscription-layoffs/,Acquired,,United States,1/31/2024 +Noom,New York City,,1/30/2024,,Fitness,https://endpts.com/weight-loss-app-noom-lays-off-employees-including-coaches-and-engineers/,Series F,657,United States,1/31/2024 +Procore,Santa Barbara,,1/30/2024,0.04,Construction,Internal memo,Post-IPO,654,United States,2/29/2024 +Vipps,"Vilnius, Non-U.S.",,1/30/2024,,Finance,https://www.lrytas.lt/verslas/rinkos-pulsas/2024/01/30/news/vilniuje-uzdaro-mobiliu-mokejimu-kompanijos-padalini-atleidzia-100-darbuotoju-30322693#google_vignette,Unknown,,Lithuania,2/1/2024 +iRobot,Boston,350.0,1/29/2024,0.31,Consumer,https://www.cnbc.com/2024/01/29/amazon-terminates-irobot-deal-vacuum-maker-to-lay-off-31percent-of-staff.html,Post-IPO,30,United States,1/29/2024 +DispatchHealth,Denver,88.0,1/29/2024,,Healthcare,https://homehealthcarenews.com/2024/01/layoffs-hit-at-home-care-innovator-dispatchhealth/,Series E,733,United States,1/30/2024 +Loopio,"Toronto, Non-U.S.",,1/29/2024,0.06,Sales,https://www.linkedin.com/posts/zakirhemraj_today-we-made-the-difficult-decision-to-activity-7157834089197105154-sDoL/,Private Equity,263,Canada,1/30/2024 +Salesforce,SF Bay Area,700.0,1/26/2024,0.01,Sales,https://www.wsj.com/economy/jobs/salesforce-laying-off-700-workers-in-latest-tech-industry-downsizing-6a082fa3,Post-IPO,65,United States,1/26/2024 +Flexport,SF Bay Area,,1/26/2024,0.2,Logistics,https://www.theinformation.com/articles/flexport-to-lay-off-nearly-20-of-staff-in-latest-cuts,Series E,2400,United States,1/26/2024 +Productboard,SF Bay Area,,1/26/2024,,Product,https://www.businessinsider.com/kleiner-perkins-sequoia-and-bessemer-backed-productboard-fourth-round-layoffs-2024-1,Series D,,United States,1/27/2024 +Microsoft,Seattle,1900.0,1/25/2024,,Other,https://www.theverge.com/2024/1/25/24049050/microsoft-activision-blizzard-layoffs,Post-IPO,1,United States,1/25/2024 +Swiggy,"Bengaluru, Non-U.S.",400.0,1/25/2024,0.07,Food,https://techcrunch.com/2024/01/25/swiggy-to-cut-another-400-jobs-ahead-of-ipo-later-this-year/,Unknown,3600,India,1/25/2024 +Veho,Boulder,65.0,1/25/2024,0.19,Logistics,https://techcrunch.com/2024/01/25/delivery-startup-veho-makes-corporate-job-cuts/,Series B,299,United States,1/26/2024 +Amperity,Seattle,20.0,1/25/2024,,Marketing,https://www.bizjournals.com/seattle/news/2024/01/25/amperity-layoffs-restructuring-seattle.html,Series D,187,United States,1/27/2024 +MVPindex,Austin,12.0,1/25/2024,0.3,Marketing,https://www.sportsbusinessjournal.com/Articles/2024/01/25/mvpindex-cuts,Series B,27,United States,2/16/2024 +Business Insider,New York City,,1/25/2024,0.08,Media,https://thehill.com/homenews/media/4428915-business-insider-lay-off-newsroom/,Acquired,56,United States,1/26/2024 +Cova,"Lagos, Non-U.S.",,1/25/2024,1.0,Finance,https://techpoint.africa/2024/01/25/techpoint-digest-756/,Unknown,,Nigeria,1/26/2024 +Jamf,Minneapolis,,1/25/2024,0.06,Other,https://www.streetinsider.com/dr/news.php?id=22671112,Post-IPO,332,United States,1/25/2024 +Cult.fit,"Bengaluru, Non-U.S.",100.0,1/24/2024,,Fitness,https://economictimes.indiatimes.com/tech/startups/zomato-backed-fitness-startup-cult-fit-lays-off-over-100-employees/articleshow/107089694.cms?from=mdr,Series F,635,India,4/12/2024 +Personio,"Munich, Non-U.S.",100.0,1/24/2024,,HR,Internal memo,Series E,724,Germany,1/25/2024 +Storytel,"Stockholm, Non-U.S.",80.0,1/24/2024,0.13,Media,https://investors.storytel.com/en/storytel-sharpens-focus-on-profitability-on-the-back-of-strong-q4-2023-earnings-and-upgrades-mid-term-financial-targets-announces-efficiency-initiative-and-write-downs/,Post-IPO,275,Sweden,1/24/2024 +Aurora,Pittsburgh,,1/24/2024,0.03,Transportation,https://techcrunch.com/2024/01/24/self-driving-vehicle-company-aurora-cuts-3-of-its-workforce/,Post-IPO,3700,United States,1/25/2024 +Desktop Metal,Boston,,1/24/2024,0.2,Other,https://ir.desktopmetal.com/news/press-releases/detail/175/desktop-metal-intensifies-cost-reduction-plan-and-ongoing,Post-IPO,811,United States,1/25/2024 +HubSpot,Boston,,1/24/2024,,Marketing,https://www.linkedin.com/posts/jcolman_hubspot-content-designers-open-to-work-activity-7156050968306991105-917M/,Post-IPO,100,United States,1/25/2024 +SAP,"Walldorf, Non-U.S.",8000.0,1/23/2024,0.07,Other,https://www.cnbc.com/2024/01/23/sap-plans-job-changes-or-buyouts-for-8000-employees-in-restructuring-plan.html,Post-IPO,1300,Germany,1/24/2024 +eBay,SF Bay Area,1000.0,1/23/2024,0.09,Retail,https://www.cnbc.com/2024/01/23/ebay-to-slash-about-1000-roles-or-approximately-9percent-of-full-time-employees.html,Post-IPO,1200,United States,1/24/2024 +Vroom,New York City,800.0,1/23/2024,0.9,Transportation,https://www.calcalistech.com/ctechnews/article/bktdjgakt,Post-IPO,1300,United States,1/23/2024 +Brex,SF Bay Area,282.0,1/23/2024,0.2,Finance,https://techcrunch.com/2024/01/23/brex-layoffs-fintech/,Series D,1500,United States,1/23/2024 +Cure.fit,"Bengaluru, Non-U.S.",120.0,1/23/2024,,Fitness,https://www.moneycontrol.com/europe/?url=https://www.moneycontrol.com/news/technology/zomato-backed-cult-fit-fires-150-employees-to-lower-cash-burn-12110751.html,Series F,625,India,1/23/2024 +GoStudent,"Vienna, Non-U.S.",100.0,1/23/2024,,Education,https://www.businessinsider.com/gostudent-softbank-backed-edtech-unicorn-carries-out-more-layoffs-2024-1,Series D,686,Austria,1/24/2024 +Jellysmack,"Paris, Non-U.S.",30.0,1/23/2024,,Media,https://www.businessinsider.com/creator-startup-jellysmack-lays-off-staffers-restructures-memo-2024-1,Series C,22,France,10/23/2024 +GoTo,Boston,29.0,1/23/2024,,Other,https://www.bizjournals.com/boston/news/2024/01/23/goto-cuts-29-roles-in-massachusetts.html,Acquired,2,United States,1/26/2024 +Seedr,"London, Non-U.S.",15.0,1/23/2024,,Finance,https://sifted.eu/articles/seedrs-lays-off-15-of-its-european-workforce-news,Acquired,28,United Kingdom,1/23/2024 +Riot Games,Los Angeles,530.0,1/22/2024,0.11,Consumer,https://www.bloomberg.com/news/articles/2024-01-22/tencent-s-riot-games-to-lay-off-530-people-about-11-of-staff,Acquired,21,United States,1/22/2024 +Xendit,"Jakarta, Non-U.S.",200.0,1/22/2024,,Finance,https://www.techinasia.com/indonesian-unicorn-slashes-200-jobs,Series D,534,Indonesia,2/2/2024 +TikTok,Los Angeles,60.0,1/22/2024,,Consumer,https://www.npr.org/2024/01/22/1226127366/tiktok-cuts-jobs-tech-layoffs-china,Acquired,,United States,1/23/2024 +2U,Washington D.C.,,1/22/2024,,Education,https://www.classcentral.com/report/2u-layoffs-2024/,Post-IPO,426,United States,1/23/2024 +Google,SF Bay Area,,1/22/2024,,Consumer,https://www.bloomberg.com/news/articles/2024-01-22/google-layoffs-saga-continues-as-alphabet-s-x-cuts-dozens-of-jobs-seeks-funds,Post-IPO,26,United States,1/23/2024 +Xendit,"Jakarta, Non-U.S.",,1/22/2024,,Finance,https://www.dealstreetasia.com/stories/xendit-announces-layoffs-379961,Series D,534,Indonesia,1/25/2024 +SolarEdge,"Tel Aviv, Non-U.S.",900.0,1/21/2024,0.16,Energy,https://www.calcalistech.com/ctechnews/article/rk4xlfcya,Post-IPO,155,Israel,1/22/2024 +Wayfair,Boston,1650.0,1/19/2024,0.13,Retail,https://www.cnbc.com/2024/01/19/wayfair-layoffs-home-goods-retailer-to-cut-1650-employees.html,Post-IPO,1700,United States,1/19/2024 +Amazon,Seattle,30.0,1/18/2024,,Retail,https://www.cnbc.com/2024/01/18/-amazon-layoffs-hit-its-buy-with-prime-unit.html,Post-IPO,108,United States,1/19/2024 +Fashinza,New York City,,1/18/2024,,Retail,https://www.moneycontrol.com/news/technology/b2b-fashion-startup-fashinza-struggles-to-find-its-footing-bogged-down-by-top-level-exits-12070021.html,Unknown,153,United States,1/23/2024 +Stitch Fix,Dallas,,1/18/2024,,Retail,https://www.retaildive.com/news/stitch-fix-ends-full-time-work-stylists-layoffs/704886/,Post-IPO,79,United States,1/25/2024 +YouTube,SF Bay Area,100.0,1/17/2024,,Media,https://techcrunch.com/2024/01/17/youtube-to-eliminate-100-employees-as-layoffs-at-google-continue/,Acquired,11,United States,1/17/2024 +Sirplus,"Berlin, Non-U.S.",60.0,1/17/2024,,Food,https://tech.eu/2024/01/19/food-waste-startup-sirplus-files-for-insolvency-due-to/,Seed,,Germany,1/18/2024 +SonderMind,Denver,49.0,1/16/2024,0.17,Healthcare,https://endpts.com/mental-health-tech-unicorn-sondermind-lays-off-17-of-its-employees/,Series C,183,United States,1/18/2024 +First Mode,Seattle,48.0,1/16/2024,0.2,Transportation,https://www.geekwire.com/2024/first-mode-reduces-workforce-revises-hybrid-trucks/,Acquired,9,United States,1/18/2024 +ALI Technologies,"Tokyo, Non-U.S.",,1/16/2024,1.0,Transportation,https://www.bbc.com/news/technology-67946088,Unknown,,Japan,1/20/2024 +Google,SF Bay Area,,1/16/2024,,Consumer,https://www.businessinsider.com/google-is-laying-off-hundreds-of-employees-in-its-advertising-team-2024-1,Post-IPO,26,United States,1/30/2024 +Thursday,"London, Non-U.S.",,1/16/2024,0.7,Consumer,https://www.linkedin.com/feed/update/urn:li:activity:7152989702512414720/,Seed,3,United Kingdom,1/16/2024 +Veeam,Columbus,300.0,1/12/2024,,Data,https://blocksandfiles.com/2024/01/12/veeam-layoffs/,Acquired,500,United States,1/13/2024 +GrabCAD,"Tallinn, Non-U.S.",13.0,1/12/2024,,Other,https://digipro.geenius.ee/rubriik/uudis/eesti-juurtega-grabcad-paneb-tallinnas-pillid-kotti-siinsed-palgad-kasvavad-liiga-kiiresti/,Acquired,28,Estonia,1/12/2024 +Artifact,SF Bay Area,,1/12/2024,1.0,Media,https://techcrunch.com/2024/01/12/instagram-co-founders-news-aggregation-startup-artifact-to-shut-down/,Unknown,,United States,1/13/2024 +Dastgyr,"Karachi, Non-U.S.",,1/12/2024,0.8,Retail,https://wetalkstartups.com/2024/01/dastgyr-has-reportedly-laid-off-80-workforce/,Series A,41,Pakistan,1/18/2024 +Hologram,Chicago,,1/12/2024,,Infrastructure,https://www.linkedin.com/feed/update/urn:li:activity:7153148984423841792/,Unknown,82,United States,1/18/2024 +Vendr,Boston,,1/12/2024,,Other,https://www.vendr.com/blog/vendr-organizational-update,Series B,216,United States,1/13/2024 +New Work SE,"Hamburg, Non-U.S.",400.0,1/11/2024,,Consumer,https://www.new-work.se/de/newsroom/pressemitteilungen/2024-ad-hoc-2024-11-01,Post-IPO,,Germany,1/12/2024 +Playtika,"Tel Aviv, Non-U.S.",300.0,1/11/2024,0.1,Consumer,https://www.calcalistech.com/ctechnews/article/skb6elt006,Post-IPO,,Israel,1/12/2024 +Discord,SF Bay Area,170.0,1/11/2024,0.17,Consumer,https://www.theverge.com/2024/1/11/24034705/discord-layoffs-17-percent-employees,Series H,995,United States,1/11/2024 +Inmobi,"Bengaluru, Non-U.S.",125.0,1/11/2024,0.05,Marketing,https://economictimes.indiatimes.com/tech/technology/inmobi-to-lay-off-125-employees-in-operations-rejig/articleshow/106706950.cms,Unknown,320,India,1/12/2024 +Audible,New York City,100.0,1/11/2024,0.05,Media,https://variety.com/2024/digital/news/audible-layoffs-amazon-1235869320/,Acquired,14,United States,1/12/2024 +7Shifts,"Saskatoon, Non-U.S.",68.0,1/11/2024,0.19,Food,https://betakit.com/7shifts-cuts-19-percent-of-staff-in-new-layoffs-to-start-2024/,Series C,131,Canada,1/18/2024 +Sisense,New York City,60.0,1/11/2024,0.13,Data,https://www.calcalistech.com/ctechnews/article/ryujxxtoa,Series F,274,United States,1/12/2024 +Cloudflare,SF Bay Area,40.0,1/11/2024,,Security,https://twitter.com/eastdakota/status/1745697840180191501,Post-IPO,332,United States,2/2/2024 +888,"Tel Aviv, Non-U.S.",,1/11/2024,,Consumer,https://www.calcalistech.com/ctechnews/article/skbqy9a00p,Post-IPO,,Israel,1/13/2024 +Certinia,SF Bay Area,,1/11/2024,,Other,https://www.kron4.com/news/bay-area/bay-area-based-software-company-conducts-layoffs/,Unknown,194,United States,1/13/2024 +Chief,New York City,,1/11/2024,,HR,https://updates.chief.com/2024/01/11/an-organization-update-to-our-team/,Series B,140,United States,1/16/2024 +Dextrous Robotics,Memphis,,1/11/2024,1.0,Logistics,https://www.therobotreport.com/dextrous-robotics-shuts-down/,Unknown,,United States,1/12/2024 +Citrix,Miami,1000.0,1/10/2024,0.12,Infrastructure,https://www.crn.com/news/cloud/2024/citrix-parent-cloud-software-group-cuts-12-percent-of-workforce,Acquired,20,United States,1/11/2024 +Google,SF Bay Area,1000.0,1/10/2024,,Consumer,https://www.theverge.com/2024/1/11/24034124/google-layoffs-engineering-assistant-hardware,Post-IPO,26,United States,1/11/2024 +IAC,New York City,330.0,1/10/2024,,Consumer,https://www.bloomberg.com/news/articles/2024-01-10/iac-divests-mosaic-apps-to-bending-spoons-in-deal-valued-at-100-million-plus?embedded-checkout=true,Post-IPO,,United States,1/13/2024 +FreshDirect,New York City,100.0,1/10/2024,0.03,Food,https://www.grocerydive.com/news/freshdirect-restructures-corporate-division-cuts-jobs/704251/,Acquired,280,United States,1/30/2024 +Beam Benefits,Columbus,74.0,1/10/2024,,Healthcare,https://coverager.com/layoffs-at-beam-benefits/,Series E,168,United States,1/10/2024 +Instagram,SF Bay Area,60.0,1/10/2024,,Consumer,https://www.businessinsider.com/instagram-cuts-technical-program-managers-reinterview-for-pm-roles-2024-1,Acquired,57,United States,1/12/2024 +Amazon,Seattle,,1/10/2024,,Retail,https://www.reuters.com/technology/amazon-lay-off-employees-prime-video-studios-divisions-information-2024-01-10/,Post-IPO,108,United States,1/10/2024 +ChargePoint,SF Bay Area,,1/10/2024,0.12,Manufacturing,https://www.businesswire.com/news/home/20240110537239/en/ChargePoint-Announces-Reorganization-to-Position-Itself-for-Long-Term-Sustainable-Growth,Unknown,1400,United States,1/12/2024 +SoFi,SF Bay Area,,1/10/2024,0.04,Finance,https://twitter.com/SoFiIR/status/1745100766681960696,Post-IPO,3000,United States,1/12/2024 +Twitch,SF Bay Area,500.0,1/9/2024,0.35,Consumer,https://www.bloomberg.com/news/articles/2024-01-09/amazon-s-twitch-to-cut-500-employees-about-35-of-staff,Acquired,35,United States,1/9/2024 +Branch,Columbus,85.0,1/9/2024,,Finance,https://coverager.com/insurtech-branch-conducts-another-round-of-layoffs/,Series C,229,United States,1/10/2024 +Nevro,SF Bay Area,63.0,1/9/2024,0.05,Healthcare,https://www.marketwatch.com/story/nevro-laying-off-63-employees-revenue-to-beat-analyst-estimates-107a85d7,Post-IPO,556,United States,1/10/2024 +FullStory,Atlanta,50.0,1/9/2024,0.1,Marketing,https://docs.google.com/spreadsheets/d/e/2PACX-1vQImogyZzjfY7JuSDHLwScTdPsG2S_y6S6qKnfbroU-tglTZUO81W7R4B5U_-qghCLeZ9v3LpaaTxbU/pubhtml,Unknown,197,United States,1/24/2024 +Uber Freight,SF Bay Area,40.0,1/9/2024,,Logistics,https://www.freightwaves.com/news/digital-brokerage-uber-freight-slashes-jobs,Subsidiary,2700,United States,1/11/2024 +Rent the Runway,New York City,37.0,1/9/2024,0.1,Retail,https://www.wsj.com/business/retail/rent-the-runway-to-cut-about-10-of-corporate-jobs-lose-operating-chief-f7bc74b3,Post-IPO,526,United States,1/9/2024 +Treasure Financial,SF Bay Area,14.0,1/9/2024,0.6,Finance,https://techcrunch.com/2024/01/09/treasure-financial-lays-off-staff-just-months-after-reporting-explosive-growth/,Series A,14,United States,1/30/2024 +Humane,SF Bay Area,10.0,1/9/2024,0.04,Hardware,https://www.theverge.com/2024/1/9/24032274/humane-layoffs-ai-pin,Series C,230,United States,1/10/2024 +EVBox,"Amsterdam, Non-U.S.",,1/9/2024,,Energy,https://news.evbox.com/en-WW/233459-evbox-commences-efficiency-enhancement-program-to-streamline-organization,Post-IPO,,Netherlands,1/23/2024 +Morning Consult,Washington D.C.,,1/9/2024,,Data,https://www.bizjournals.com/washington/news/2024/01/09/morning-consult-layoffs-market-research.html,Series B,91,United States,1/16/2024 +Trend Micro,"Tokyo, Non-U.S.",,1/9/2024,0.02,Security,https://www.cnbc.com/2024/01/09/trend-micro-lays-off-2percent-of-its-global-workforce.html,Unknown,,Japan,1/10/2024 +Unity,SF Bay Area,1800.0,1/8/2024,0.25,Other,https://www.reuters.com/technology/unity-software-cutting-25-staff-company-reset-continuation-2024-01-08/,Post-IPO,1300,United States,1/8/2024 +Flipkart,"Bengaluru, Non-U.S.",1100.0,1/8/2024,0.05,Retail,https://www.republicworld.com/business/industry/flipkart-reportedly-to-lay-off-over-1000-employees/,Acquired,12900,India,1/13/2024 +NuScale Power,Corvallis,154.0,1/8/2024,0.28,Energy,https://www.oregonlive.com/business/2024/01/oregon-nuclear-power-company-nuscale-acknowledges-layoffs-says-154-workers-lost-their-jobs.html,Post-IPO,470,United States,1/7/2024 +Flexe,Seattle,99.0,1/8/2024,0.38,Logistics,https://www.geekwire.com/2024/warehousing-and-logistics-startup-flexe-cuts-38-of-workforce-in-latest-layoffs/,Series D,263,United States,1/8/2024 +Pitch,"Berlin, Non-U.S.",80.0,1/8/2024,0.67,Other,https://techcrunch.com/2024/01/08/pitch-christian-reber-venture-funding/,Series B,138,Germany,1/8/2024 +BenchSci,"Toronto, Non-U.S.",70.0,1/8/2024,0.17,Healthcare,https://betakit.com/benchsci-trims-headcount-citing-generative-ai-economic-conditions/,Series D,164,Canada,1/8/2024 +Here,Miami,,1/8/2024,1.0,Real Estate,https://techcrunch.com/2024/01/08/another-proptech-startup-crashes-and-burns-citing-current-interest-rate-environment/,Seed,5,United States,1/9/2024 +Ledger Investing,New York City,,1/8/2024,0.25,Finance,https://www.theinsurer.com/news/ils-insurtech-ledger-investing-undertakes-40-reduction-in-force/,Series B,91,United States,1/15/2024 +Lendio,Lehi,,1/8/2024,,Finance,https://www.linkedin.com/posts/paul-o-donnell-89ba19a1_today-we-shared-the-unfortunate-news-of-a-activity-7150269305555664897-OCID/,Series E,108,United States,1/15/2024 +MeridianLink,Los Angeles,,1/8/2024,0.09,Finance,https://d18rn0p25nwr6d.cloudfront.net/CIK-0001834494/6c1d7f9a-f5ef-4c32-bb54-d5915b81d77e.pdf,Post-IPO,485,United States,1/13/2024 +LiveVox,SF Bay Area,,1/7/2024,,Support,https://www.channelfutures.com/unified-communications/livevox-layoffs-hit-channel-and-sales-team,Acquired,12,United States,1/20/2024 +NanoString Technologies,Seattle,50.0,1/6/2024,0.09,Healthcare,https://www.geekwire.com/2024/nanostring-technologies-to-cut-9-of-workforce-gets-delisting-warning-from-nasdaq/,Post-IPO,826,United States,1/9/2024 +Cue Health,San Diego,94.0,1/5/2024,0.13,Healthcare,https://www.360dx.com/business-news/cue-health-lays-94-people-fda-declines-grant-covidflu-test-eua,Post-IPO,899,United States,1/7/2024 +Lever,SF Bay Area,,1/5/2024,,Recruiting,https://sfstandard.com/2024/01/05/lever-san-francisco-tech-layoffs/,Acquired,123,United States,1/7/2024 +Trigo,"Tel Aviv, Non-U.S.",30.0,1/4/2024,0.15,Retail,https://www.calcalistech.com/ctechnews/article/b1pfj7nu6,Series C,199,Israel,1/5/2024 +InVision,New York City,,1/4/2024,1.0,Product,https://www.theinformation.com/briefings/design-startup-invision-once-valued-at-2b-is-shutting-down,Series F,356,United States,1/5/2024 +VideoAmp,Los Angeles,,1/4/2024,0.2,Marketing,https://adage.com/article/measurement/videoamp-ceo-ross-mccray-steps-down-company-lays-20-staff/2535441,Series F,456,United States,1/5/2024 +Xerox,Norwalk,3000.0,1/3/2024,0.15,Hardware,https://www.cnbc.com/2024/01/03/xerox-layoffs-company-to-cut-15percent-of-workforce.html,Post-IPO,27200,United States,2/29/2024 +Lazada Group ,"Singapore, Non-U.S.",100.0,1/3/2024,0.3,Retail,https://www.channelnewsasia.com/singapore/lazada-layoffs-retrenchment-job-cuts-employees-4024746,Acquired,7200,Singapore,1/5/2024 +Orca Security,"Tel Aviv, Non-U.S.",60.0,1/3/2024,0.15,Security,https://www.calcalistech.com/ctechnews/article/skm23oz00t,Series C,632,Israel,1/3/2024 +Frontdesk,Milwaukee,200.0,1/2/2024,1.0,Travel,https://techcrunch.com/2024/01/02/short-term-rental-provider-frontdesk-lays-off-entire-staff-on-the-verge-of-shutting-down/,Unknown,26,United States,1/3/2024 +The Messenger,New York City,24.0,1/2/2024,,Media,https://www.nytimes.com/2024/01/02/business/media/the-messenger-news-layoffs.html,Unknown,,United States,1/3/2024 +Ocado,"London, Non-U.S.",1000.0,12/31/2023,,Food,https://www.thetimes.com/business-money/entrepreneurs/article/ocado-reduced-staff-numbers-amid-difficult-times-for-online-grocers-xrxknd58s,Post-IPO,2000,United Kingdom,7/26/2024 +Bolt.Earth,"Bengaluru, Non-U.S.",,12/29/2023,0.2,Energy,https://inc42.com/buzz/exclusive-ev-charging-infra-provider-bolt-earth-fires-about-20-of-its-workforce/,Series B,24,India,1/2/2024 +Strake,Boulder,,12/28/2023,1.0,Infrastructure,https://www.linkedin.com/posts/aryounce_it-saddens-me-to-announce-that-the-company-activity-7146247081442041856-lvdx/,Unknown,,United States,1/2/2024 +Paytm,"Noida, Non-U.S.",1000.0,12/25/2023,,Finance,https://timesofindia.indiatimes.com/business/india-business/paytm-announces-layoffs-aims-to-streamline-operations-and-reduce-costs/articleshow/106260763.cms?from=mdr,Unknown,,India,12/26/2023 +Intel,Sacramento,311.0,12/21/2023,,Hardware,https://www.theregister.com/2023/12/21/intel_gifts_311_cali_workers/,Post-IPO,12,United States,12/19/2023 +Hyperloop One,Los Angeles,,12/21/2023,1.0,Transportation,https://www.bloomberg.com/news/articles/2023-12-21/hyperloop-one-to-shut-down-after-raising-millions-to-reinvent-transit?embedded-checkout=true,Unknown,368,United States,12/22/2023 +Palmetto Clean Technology,Charleston,,12/21/2023,,Energy,https://www.bizjournals.com/charlotte/inno/stories/news/2023/12/21/clean-tech-unicorn-startup-palmetto-layoff-rounds.html,Private Equity,628,United States,12/22/2023 +ShareChat,"Bengaluru, Non-U.S.",200.0,12/20/2023,0.15,Consumer,https://entrackr.com/2023/12/sharechat-lays-off-15-of-its-workforce/,Series H,1700,India,12/20/2023 +InSightec,"Haifa, Non-U.S.",100.0,12/19/2023,0.2,Healthcare,https://www.calcalistech.com/ctechnews/article/bkmqvekv6,Unknown,733,Israel,12/20/2023 +Kaspien,Seattle,,12/19/2023,1.0,Retail,https://www.geekwire.com/2023/kaspien-a-e-commerce-company-previously-known-as-etailz-is-shutting-down/,Post-IPO,52,United States,12/22/2023 +Enphase Energy,SF Bay Area,350.0,12/18/2023,0.1,Energy,https://enphase.com/blog/employees/dec-2023-message-from-our-ceo,Post-IPO,116,United States,12/19/2023 +Udaan,"Bengaluru, Non-U.S.",100.0,12/18/2023,0.1,Retail,https://startupstorymedia.com/insights-udaan-despite-340-million-funding-implements-layoffs-cuts-10-of-workforce/,Unknown,1500,India,12/19/2023 +Checkout.com,"London, Non-U.S.",80.0,12/18/2023,,Finance,https://enphase.com/blog/employees/dec-2023-message-from-our-ceo,Series D,1800,United Kingdom,12/19/2023 +Arm Holdings,"Shanghai, Non-U.S.",70.0,12/18/2023,,Hardware,https://www.bloomberg.com/news/articles/2023-12-18/arm-lays-off-over-70-engineers-in-china-relocating-roles,Post-IPO,,China,12/19/2023 +Delivery Hero,"Berlin, Non-U.S.",,12/18/2023,,Food,https://www.bloomberg.com/news/articles/2023-12-18/delivery-hero-closes-hubs-in-taiwan-turkey-in-push-to-cut-costs,Post-IPO,9900,Germany,12/18/2023 +eBay,"Tel Aviv, Non-U.S.",20.0,12/17/2023,,Retail,https://www.calcalistech.com/ctechnews/article/h1d3zchia,Post-IPO,1200,Israel,12/18/2023 +Glowforge,Seattle,30.0,12/15/2023,,Manufacturing,https://www.geekwire.com/2023/glowforge-lays-off-30-employees-as-maker-of-3d-laser-engravers-gets-ready-for-whats-next/,Series E,133,United States,2/28/2024 +Jellysmack,"Paris, Non-U.S.",,12/15/2023,,Media,https://www.businessinsider.com/creator-startup-jellysmack-lays-off-staffers-restructures-memo-2024-1,Series C,22,France,1/20/2024 +Superpedestrian,Boston,,12/15/2023,,Transportation,https://techcrunch.com/2023/12/15/scooter-startup-superpedestrian-shutting-down-us-operations-explores-sale-of-europe-business/,Series C,262,United States,12/18/2023 +Cruise,SF Bay Area,900.0,12/14/2023,0.24,Transportation,https://techcrunch.com/2023/12/14/cruise-slashes-24-of-self-driving-car-workforce-in-sweeping-layoffs/,Acquired,15000,United States,12/14/2023 +Solarisbank,"Berlin, Non-U.S.",20.0,12/14/2023,,Finance,https://finanz-szene.de/fintech/solarisbank-entlaesst-mehr-als-20-beschaeftigte-auch-drei-manager-gehen/,Unknown,385,Germany,12/19/2023 +Bolt,SF Bay Area,,12/14/2023,0.29,Finance,https://www.theinformation.com/briefings/bolt-lays-off-29-of-staff-in-latest-cut-for-checkout-software-firm,Series E,1300,United States,12/14/2023 +Curalie,"Berlin, Non-U.S.",,12/14/2023,1.0,Healthcare,https://www.msn.com/de-de/finanzen/top-stories/fresenius-aktie-gibt-nach-fresenius-stampft-digitaltochter-curlie-ein/ar-AA1lxOnW,Unknown,,Germany,1/2/2024 +Curbio,Washington D.C.,,12/14/2023,,Real Estate,https://www.linkedin.com/posts/rick-rudman-18019731_proptech-recruiting-talentacquisition-activity-7141099800715747329-1Ffy/,Series B,76,United States,12/15/2023 +Flyhomes,Seattle,,12/14/2023,,Real Estate,https://www.geekwire.com/2023/seattle-real-estate-startup-flyhomes-conducts-more-layoffs-amid-worsening-industry-headwinds/,Series C,310,United States,12/18/2023 +Stellar Pizza,Los Angeles,,12/14/2023,0.5,Food,https://www.bloomberg.com/news/articles/2023-12-14/layoffs-bankruptcies-and-reorgs-haunted-silicon-valley-startups-this-year,Series A,25,United States,12/14/2023 +Invitae,SF Bay Area,235.0,12/13/2023,0.15,Healthcare,https://sfstandard.com/2023/12/19/tech-layoffs-san-francisco-invitae/,Post-IPO,2500,United States,12/15/2023 +Etsy,New York City,225.0,12/13/2023,0.11,Retail,https://www.cnbc.com/2023/12/13/etsy-laying-off-11percent-of-staff-citing-competitive-environment.html,Post-IPO,97,United States,12/13/2023 +Analog Devices,SF Bay Area,111.0,12/13/2023,,Manufacturing,https://www.bizjournals.com/sanjose/news/2023/12/13/layoffs-come-to-analog-devices-as-111.html,Post-IPO,,United States,12/22/2023 +ForgeRock,SF Bay Area,109.0,12/13/2023,,Other,https://www.sfchronicle.com/bayarea/article/bay-area-tech-layoffs-pac-12-forgerock-analog-18552853.php,Acquired,234,United States,12/22/2023 +Flex,SF Bay Area,31.0,12/13/2023,,Manufacturing,https://www.siliconvalley.com/2023/12/13/tech-job-cut-layoff-san-jose-economy-sports-google-facebook-nextdoor/,Unknown,,United States,12/22/2023 +FourKites,Chicago,,12/13/2023,0.15,Logistics,https://www.freightwaves.com/news/fourkites-confirms-15-cut-in-global-workforce-dismisses-key-exec,Unknown,241,United States,1/8/2024 +Sojern,SF Bay Area,,12/13/2023,0.2,Marketing,https://skift.com/2023/12/13/sojern-lays-off-20-of-staff-to-reduce-expenses/,Unknown,172,United States,12/13/2023 +TomTom,"Lodz, Non-U.S.",45.0,12/12/2023,,Transportation,https://businessinsider.com.pl/wiadomosci/tomtom-oglosil-zwolnienia-grupowe-wszystko-przez-sztuczna-inteligencje/czlqpyz,Post-IPO,,Poland,12/19/2023 +Chipper Cash,SF Bay Area,15.0,12/11/2023,0.33,Finance,https://techcabal.com/2023/12/11/chipper-cash-cuts-15-jobs/,Series C,302,United States,12/11/2023 +Jungle Scout,Austin,,12/9/2023,,Retail,https://www.linkedin.com/feed/update/urn:li:activity:7138998837737648130/,Private Equity,110,United States,12/12/2023 +SmileDirectClub,Nashville,,12/9/2023,1.0,Healthcare,https://www.cnn.com/2023/12/09/business/smiledirectclub-shutdown-bankruptcy/index.html,Post-IPO,694,United States,12/10/2023 +Sunfolding,SF Bay Area,,12/9/2023,1.0,Energy,https://www.openthenews.com/sunfolding-an-inventive-solar-tracker-startup-has-shut-down/,Series B,32,United States,12/10/2023 +Zulily,Seattle,839.0,12/8/2023,1.0,Retail,https://www.geekwire.com/2023/zulilys-closure-of-ohio-fulfillment-center-will-impact-274-workers/,Acquired,194,United States,12/8/2023 +D2iQ,SF Bay Area,,12/8/2023,1.0,Infrastructure,https://www.theinformation.com/articles/a16z-backed-startup-that-once-rejected-150m-sale-to-microsoft-shuts-down?shared=e532b505170fc244,Series D,247,United States,12/10/2023 +Simplilearn,"Bengaluru, Non-U.S.",200.0,12/7/2023,,Education,https://startupstorymedia.com/insights-simplilearn-backed-by-blackstone-terminates-200-employees-citing-performance-issues/,Acquired,76,India,12/8/2023 +Rivian,Detroit,20.0,12/7/2023,,Transportation,https://www.theinformation.com/articles/exclusive-from-the-electric-rivian-becomes-the-latest-to-lay-off-battery-workers,Post-IPO,10700,United States,12/22/2023 +Atmosphere,Austin,,12/7/2023,,Other,https://www.bizjournals.com/austin/inno/stories/inno-insights/2023/12/07/austin-viral-tv-unicorn-layoffs-off-employees.html,Series D,214,United States,12/7/2023 +Navan,SF Bay Area,145.0,12/6/2023,,Travel,https://skift.com/2023/12/06/navan-lays-off-145-people-to-reach-profitability/,Unknown,2200,United States,1/3/2024 +Tidal,New York City,40.0,12/6/2023,0.1,Consumer,https://www.bloomberg.com/news/articles/2023-12-06/dorsey-s-ax-hits-tidal-music-service-over-10-of-staff-let-go,Acquired,,United States,12/7/2023 +ZestMoney,"Bengaluru, Non-U.S.",150.0,12/5/2023,1.0,Finance,https://techcrunch.com/2023/12/05/goldman-sachs-backed-zestmoney-once-valued-at-450m-to-shut-down/,Series C,120,India,12/6/2023 +Navan,SF Bay Area,145.0,12/5/2023,0.05,Finance,https://www.theinformation.com/briefings/ipo-candidate-navan-lays-off-145-in-profitability-push,Unknown,2200,United States,12/6/2023 +Incredibuild,"Tel Aviv, Non-U.S.",40.0,12/5/2023,0.2,Product,https://www.calcalistech.com/ctechnews/article/b14g5i3rt,Series B,35,Israel,12/7/2023 +Bill.com,SF Bay Area,,12/5/2023,0.15,Finance,https://www.investing.com/news/stock-market-news/bill-gains-on-plans-to-cut-workforce-by-15-432SI-3249756,Post-IPO,280,United States,12/5/2023 +Contentful,"Berlin, Non-U.S.",,12/5/2023,,Marketing,https://www.businessinsider.de/gruenderszene/technologie/software-unicorn-contentful-entlaesst-50-mitarbeitende/,Series F,350,Germany,12/7/2023 +Course Hero,SF Bay Area,,12/5/2023,0.25,Education,https://www.linkedin.com/posts/coursehero_course-hero-alumni-talent-activity-7137848787347132416-q9KI/,Series C,477,United States,12/8/2023 +Pivo,"Abuja, Non-U.S.",,12/5/2023,1.0,Finance,https://techpoint.africa/2023/12/05/pivo-has-shut-down/,Seed,3,Nigeria,12/7/2023 +Yahoo,SF Bay Area,,12/5/2023,,Consumer,https://www.thedailybeast.com/yahoo-news-lays-off-staffers-shuts-down-gen-z-focused-site,Acquired,6,United States,1/30/2024 +Spotify,"Stockholm, Non-U.S.",1500.0,12/4/2023,0.17,Media,https://www.cnbc.com/2023/12/04/spotify-to-lay-off-17percent-of-employees-ceo-daniel-ek-says.html,Post-IPO,2100,Sweden,12/4/2023 +TuSimple,San Diego,150.0,12/4/2023,,Transportation,https://www.morningstar.com/news/marketwatch/20231204801/autonomous-truck-company-tusimple-to-wind-down-us-operations-slash-jobs,Post-IPO,648,United States,12/5/2023 +Meow Wolf,Santa Fe,8.0,12/4/2023,,Media,https://finance.yahoo.com/news/meow-wolf-lays-off-eight-003400761.html,Unknown,185,United States,12/7/2023 +DwellWell,Los Angeles,,12/4/2023,1.0,Real Estate,https://www.linkedin.com/feed/update/urn:li:activity:7137484656584622080/,Seed,6,United States,12/5/2023 +Twilio,SF Bay Area,,12/4/2023,0.05,Other,https://www.bloomberg.com/news/articles/2023-12-04/twilio-to-cut-another-5-of-workforce-in-third-round-of-layoffs,Post-IPO,614,United States,12/4/2023 +Filmic,Seattle,,12/1/2023,1.0,Other,https://petapixel.com/2023/12/01/filmics-entire-staff-laid-off-by-parent-company-bending-spoons/,Acquired,,United States,12/3/2023 +Loco,"Mumbai, Non-U.S.",40.0,11/30/2023,0.36,Consumer,https://inc42.com/buzz/krafton-backed-loco-joins-layoff-spree-trims-36-headcount/,Acquired,52,India,12/2/2023 +Zepz,"London, Non-U.S.",30.0,11/30/2023,0.02,Finance,https://www.cnbc.com/2023/11/30/zepz-a-5-billion-fintech-unicorn-is-laying-off-more-staff.html,Series E,700,United Kingdom,12/2/2023 +Domo,Salt Lake City,,11/30/2023,0.07,Data,https://finance.yahoo.com/news/q3-2024-domo-inc-earnings-134921438.html,Post-IPO,689,United States,12/2/2023 +Mojo,New York City,,11/30/2023,,Consumer,https://www.businessinsider.com/sports-betting-app-mojo-cuts-staff-amid-strategic-shift-2023-11,Unknown,100,United States,12/3/2023 +Pipedrive,"Tallinn, Non-U.S.",,11/30/2023,,Sales,https://digipro.geenius.ee/rubriik/uudis/pipedrive-koondab-tootajaid-seoses-strateegiliste-muudatustega/,Private Equity,90,Estonia,12/2/2023 +Vox Media,Washington D.C.,,11/30/2023,0.04,Media,https://www.theinformation.com/briefings/vox-media-cuts-4-of-workforce,Series F,307,United States,11/30/2023 +Unity,SF Bay Area,265.0,11/28/2023,0.04,Other,https://www.reuters.com/technology/unity-software-cut-38-staff-company-reset-2023-11-28/,Post-IPO,1300,United States,11/29/2023 +Dataminr,New York City,150.0,11/28/2023,0.2,AI,https://techcrunch.com/2023/11/28/dataminr-the-4b-big-data-startup-is-laying-off-20-of-staff-today-or-150-people-as-it-preps-to-double-down-on-ai/,Series F,1100,United States,11/28/2023 +Multiverse,"London, Non-U.S.",,11/28/2023,0.05,Education,https://sifted.eu/articles/multiverse-layoffs,Series D,414,United Kingdom,11/29/2023 +Tier Mobility,"Berlin, Non-U.S.",,11/28/2023,0.22,Transportation,https://techcrunch.com/2023/11/28/scooter-startup-tier-lays-off-22-of-workforce-to-reach-profitability/,Series D,646,Germany,11/29/2023 +VMware,SF Bay Area,2837.0,11/27/2023,,Infrastructure,https://arstechnica.com/information-technology/2023/12/broadcom-cuts-at-least-2800-vmware-jobs-following-69-billion-acquisition/,Acquired,393,United States,11/29/2023 +Bytedance,"Shanghai, Non-U.S.",1000.0,11/27/2023,,Consumer,https://asia.nikkei.com/Business/China-tech/TikTok-parent-ByteDance-to-cut-1-000-gaming-jobs-in-strategic-shift,Unknown,9400,China,11/27/2023 +Our Next Energy,Detroit,128.0,11/27/2023,0.25,Transportation,https://www.reuters.com/business/autos-transportation/ev-battery-startup-one-cuts-workforce-by-25-2023-11-27/,Series B,390,United States,11/28/2023 +Veev,SF Bay Area,,11/26/2023,1.0,Construction,https://www.theinformation.com/briefings/khosla-backed-construction-tech-startup-veev-to-shut-down,Series D,597,United States,11/27/2023 +Anar,"Mumbai, Non-U.S.",,11/25/2023,1.0,Marketing,https://inc42.com/buzz/as-elevation-backed-anar-shuts-shop-here-are-key-learnings-from-b2b-networking-startups-cofounder-ceo/,Seed,6,India,11/27/2023 +Alerzo,"Ibadan, Non-U.S.",100.0,11/21/2023,,Retail,https://techpoint.africa/2023/11/21/alerzo-has-laid-off-100-employees-due-to-warehouse-automation/,Series B,16,Nigeria,11/22/2023 +McMakler,"Berlin, Non-U.S.",60.0,11/21/2023,,Real Estate,https://www.businessinsider.de/gruenderszene/business/naechste-entlassungswelle-bei-mcmakler-58-personen-verlieren-ihren-job/,Unknown,214,Germany,11/21/2023 +Tulip Retail,"Toronto, Non-U.S.",25.0,11/21/2023,,Retail,https://www.linkedin.com/posts/aliasaria_yesterday-was-a-difficult-day-at-tulip-we-activity-7133191110356566016-8eiX/,Series C,79,Canada,11/23/2023 +Jodo,"Bengaluru, Non-U.S.",100.0,11/20/2023,,Finance,https://inc42.com/buzz/exclusive-tiger-global-backed-jodo-sacks-100-employees-as-business-outlook-falters/,Series A,19,India,11/20/2023 +C3.ai,SF Bay Area,,11/20/2023,,AI,https://www.nasdaq.com/articles/c3.ai-cuts-jobs-to-reduce-costs-bloomberg-news,Series F,228,United States,11/21/2023 +Presto,SF Bay Area,,11/20/2023,0.17,Food,https://investor.presto.com/news-releases/news-release-details/presto-automation-announces-fiscal-first-quarter-2024-financial,Post-IPO,167,United States,1/13/2024 +Physics Wallah,"Noida, Non-U.S.",120.0,11/19/2023,0.01,Education,https://entrackr.com/2023/11/exclusive-physicswallah-lays-off-over-100-employees/,Series A,100,India,11/20/2023 +NextGen Healthcare,St. Louis,84.0,11/17/2023,,Healthcare,https://www.bizjournals.com/stlouis/news/2023/11/17/health-care-tech-firm-lay-off-84-st-louis-workers.html,Acquired,,United States,11/18/2023 +Amazon,Seattle,,11/17/2023,,Retail,https://www.geekwire.com/2023/amazon-will-cut-several-hundred-more-jobs-on-alexa-team-as-it-discontinues-some-initiatives/,Post-IPO,108,United States,11/17/2023 +Buildertrend,Omaha,,11/17/2023,0.16,Construction,https://siliconprairienews.com/2023/11/buildertrend-layoffs-november-2023/,Unknown,,United States,11/18/2023 +Jane,Lehi,,11/17/2023,1.0,Retail,https://www.sltrib.com/news/business/2023/11/17/utah-based-online-marketplace/,Series A,40,United States,11/22/2023 +Zazuu,London,,11/17/2023,,Finance,https://www.benjamindada.com/african-focused-fintech-zazuu-shuts-down/,Unknown,,United Kingdom,11/18/2023 +Sierra Space,Boulder,115.0,11/16/2023,,Aerospace,https://www.cnbc.com/2023/11/16/sierra-space-layoffs.html,Series B,1700,United States,11/17/2023 +Paystack,"Lagos, Non-U.S.",33.0,11/16/2023,,Finance,https://techcrunch.com/2023/11/16/paystack-reduces-operations-outside-of-africa-affecting-33-employees-in-europe-and-dubai/,Acquired,10,Nigeria,11/17/2023 +Beamery,"London, Non-U.S.",,11/16/2023,0.25,HR,https://tech.eu/2023/11/16/london-hrtech-startup-beamery-to-cut-25-of-workforce-amid-restructuring/,Series D,223,United Kingdom,11/16/2023 +Sonos,New York City,,11/16/2023,,Consumer,https://www.bloomberg.com/news/articles/2023-11-16/sonos-plans-to-cut-jobs-as-it-prepares-push-into-headphones,Post-IPO,455.2,United States,12/14/2023 +FintechOS,"Bucharest, Non-U.S.",,11/15/2023,,Finance,https://www.startupcafe.ro/idei-antreprenori/concedieri-startup-it-fintechos-companie-restructurari.htm,Series B,91,Romania,11/15/2023 +FreshBooks,"Toronto, Non-U.S.",,11/15/2023,0.06,Finance,https://betakit.com/freshbooks-president-and-ceo-depart-as-company-lays-off-six-percent-of-employees/,Unknown,331,Canada,11/16/2023 +Landing,Birmingham,,11/15/2023,,Real Estate,https://www.bizjournals.com/birmingham/inno/stories/news/2023/11/15/landing-initiates-another-round-of-layoffs.html,Series C,347,United States,11/18/2023 +Singular Genomics,San Diego,,11/15/2023,0.1,Healthcare,https://www.genomeweb.com/sequencing/singular-genomics-lays-10-percent-workforce-adjusts-product-roadmap,Post-IPO,176,United States,11/22/2023 +Uleet,Columbus,,11/15/2023,1.0,Healthcare,https://www.bizjournals.com/columbus/inno/stories/inno-insights/2023/11/15/columbus-uleet-shutdown-alex-husted-interview.html,Unknown,,United States,11/16/2023 +Chewy,Miami,200.0,11/14/2023,,Retail,https://techcrunch.com/2023/11/14/online-pet-goods-retailer-chewy-lays-off-200-employees/,Post-IPO,451,United States,11/15/2023 +Sarcos,Pittsburgh,150.0,11/14/2023,,Aerospace,https://www.bizjournals.com/pittsburgh/inno/stories/profiles/2023/11/14/sarcos-robotics-to-close-pittsburgh-office.html,Post-IPO,316,United States,1/2/2024 +Cake Group,"Singapore, Non-U.S.",50.0,11/14/2023,0.3,Crypto,https://www.linkedin.com/posts/julianhosp_cake-group-ceos-message-to-employees-activity-7130117237218156545-oPjI/,Unknown,,Singapore,11/15/2023 +Halodoc,"Jakarta, Non-U.S.",,11/14/2023,,Healthcare,https://www.techinasia.com/halodoc-lays-employees-pursue-sustainable-business-growth,Series D,245,India,11/15/2023 +Markforged,Boston,,11/14/2023,,Manufacturing,https://www.bizjournals.com/boston/news/2023/11/14/markforged-layoffs-2023-macroeconomic-headwinds.html,Post-IPO,347,United States,11/15/2023 +Ping Identity,Denver,,11/14/2023,,Security,https://www.bizjournals.com/denver/news/2023/11/14/ping-identity-layoffs-thoma-bravo.html,Acquired,128,United States,11/15/2023 +Amazon,Seattle,180.0,11/13/2023,,Retail,https://www.cnbc.com/2023/11/13/amazon-cuts-more-than-180-jobs-in-gaming-division.html,Post-IPO,108,United States,11/13/2023 +TripAdvisor,Boston,125.0,11/12/2023,0.04,Travel,https://skift.com/2023/11/12/tripadvisor-laid-off-4-of-its-workforce-and-more-cuts-are-on-the-way/,Post-IPO,3,United States,12/22/2023 +Bowery Farming,New York City,,11/10/2023,,Food,https://pitchbook.com/news/articles/indoor-farming-bowery-vc-valuation-layoffs-loans,Unknown,626,United States,1/2/2024 +Carta,SF Bay Area,,11/9/2023,,HR,https://fortune.com/2023/11/09/exclusive-unicorn-carta-lays-off-another-round-of-employees/,Series G,1100,United States,11/10/2023 +Commure,SF Bay Area,,11/9/2023,,Healthcare,https://www.businessinsider.com/commure-layoffs-healthcare-ai-merger-athelas-2023-12,Unknown,1900,United States,12/20/2023 +OSlash,"Bengaluru, Non-U.S.",,11/9/2023,1.0,Other,https://inc42.com/buzz/accel-backed-saas-startup-oslash-to-shut-down-by-end-of-this-month/,Seed,7,India,11/10/2023 +Snap,Los Angeles,20.0,11/8/2023,,Consumer,https://www.theinformation.com/articles/snap-lays-off-product-managers-as-spiegel-revamps-workforce,Post-IPO,4900,United States,11/9/2023 +Amazon,Seattle,,11/8/2023,,Retail,https://www.reuters.com/technology/amazon-says-cuts-jobs-music-streaming-unit-2023-11-08/,Post-IPO,108,United States,11/9/2023 +BigCommerce,Austin,,11/8/2023,0.07,Retail,https://www.pymnts.com/news/ecommerce/2023/bigcommerce-cuts-staff-amid-ecommerce-headwinds/,Post-IPO,224,United States,11/10/2023 +CloudKitchens,Los Angeles,,11/8/2023,,Real Estate,https://www.businessinsider.com/travis-kalanick-cloudkitchens-startup-cuts-jobs-2023-11,Unknown,1300,United States,11/9/2023 +Google,SF Bay Area,,11/8/2023,,Consumer,https://www.theinformation.com/briefings/google-lays-off-some-user-support-staff,Post-IPO,26,United States,11/9/2023 +Oportun,SF Bay Area,185.0,11/7/2023,0.07,Finance,https://finance.yahoo.com/news/oportun-lay-off-18-corporate-021807823.html,Post-IPO,766,United States,3/9/2024 +Zillow,Seattle,23.0,11/7/2023,,Real Estate,https://www.realestatenews.com/2023/11/07/zillow-confirms-layoffs-affecting-a-small-number-of-roles,Post-IPO,97,United States,11/8/2023 +Nextdoor,SF Bay Area,,11/7/2023,0.25,Consumer,https://investors.nextdoor.com/news/news-details/2023/Nextdoor-Reports-Third-Quarter-2023-Results/,Post-IPO,736,United States,11/7/2023 +Zeus Living,SF Bay Area,,11/7/2023,1.0,Real Estate,https://www.theinformation.com/articles/airbnb-backed-real-estate-startup-zeus-living-to-shut-down,Series C,151,United States,11/7/2023 +Ava Labs,New York City,,11/6/2023,0.12,Crypto,https://decrypt.co/204581/ava-labs-employees-report-layoffs-many-people-affected,Unknown,640,United States,11/7/2023 +Homie,Salt Lake City,,11/6/2023,,Real Estate,https://www.sltrib.com/news/business/2023/11/06/utah-grown-homie-vowed-disrupt/,Series B,35,United States,11/7/2023 +Moore Threads,"Beijing, Non-U.S.",,11/6/2023,,Hardware,https://www.bloomberg.com/news/articles/2023-11-07/china-ai-chipmaker-moore-threads-cuts-jobs-after-us-blacklisting?embedded-checkout=true,Series B,,China,11/9/2023 +Pico Interactive,SF Bay Area,,11/6/2023,,Other,https://www.uploadvr.com/major-pico-layoffs/,Acquired,62,United States,11/7/2023 +F5,Seattle,120.0,11/3/2023,0.02,Security,https://www.geekwire.com/2023/seattle-cloud-giant-f5-lays-off-120-employees/,Post-IPO,,United States,11/6/2023 +NIO,"Shanghai, Non-U.S.",,11/3/2023,0.1,Transportation,https://www.bloomberg.com/news/articles/2023-11-03/chinese-ev-maker-nio-to-cut-10-of-staff-positions-and-may-spin-off-businesses#xj4y7vzkg,Post-IPO,7200,China,11/6/2023 +OpenSea,New York City,,11/3/2023,0.5,Crypto,https://decrypt.co/204371/opensea-slashes-nft-marketplace-staff-50-layoffs,Series C,427,United States,11/3/2023 +Viasat,San Diego,800.0,11/2/2023,0.1,Other,https://news.bloomberglaw.com/bankruptcy-law/viasat-to-cut-global-workforce-by-approximately-10,Post-IPO,366,United States,11/2/2023 +Beyond Meat,Los Angeles,65.0,11/2/2023,0.08,Food,https://investors.beyondmeat.com/news-releases/news-release-details/beyond-meatr-provides-select-third-quarter-financial-results,Post-IPO,122,United States,11/7/2023 +OpenSpace,SF Bay Area,,11/2/2023,,Construction,https://www.linkedin.com/posts/jeevan_i-wanted-to-share-with-our-customers-partners-activity-7125890673840394240-QmO9/,Series D,200,United States,11/2/2023 +Orchard,New York City,,11/2/2023,,Real Estate,https://www.linkedin.com/feed/update/urn:li:activity:7125905764115722241/,Series D,472,United States,11/3/2023 +Sportradar,"St. Gallen, Non-U.S.",,11/2/2023,0.1,Data,https://www.sportspromedia.com/news/sportradar-job-cuts-sports-data/?zephr_sso_ott=VfONzi,Post-IPO,84,Switzerland,1/24/2024 +Informatica,SF Bay Area,545.0,11/1/2023,0.1,Data,https://www.barrons.com/articles/informatica-buyback-earnings-6cc15b80,Post-IPO,,United States,11/2/2023 +Splunk,SF Bay Area,500.0,11/1/2023,0.07,Data,https://www.cnbc.com/2023/11/01/splunk-layoffs-7percent-of-workforce-to-be-cut-ahead-of-cisco-acquisition.html,Post-IPO,2400,United States,11/1/2023 +Faire,SF Bay Area,250.0,11/1/2023,0.2,Retail,https://www.businessinsider.com/wholesale-startup-faire-lays-off-another-250-employees-2023-11,Series G,1700,United States,11/2/2023 +Sana Benefits,Austin,73.0,11/1/2023,0.5,HR,https://www.sanabenefits.com/blog/changes-at-sana/,Series B,106,United States,11/2/2023 +Olive,Columbus,,10/31/2023,1.0,Healthcare,https://www.axios.com/pro/health-tech-deals/2023/10/31/olive-ai-is-shutting-down,Series H,856,United States,11/2/2023 +StepStone,"Berlin, Non-U.S.",215.0,10/30/2023,0.05,Recruiting,https://aimgroup.com/2023/10/30/recruitment-giant-stepstone-lays-off-more-than-200-people/,Acquired,,Germany,10/31/2023 +Hubilo,SF Bay Area,50.0,10/30/2023,,Other,https://meetings.skift.com/hubilo-lays-off-at-least-50-staffers-hints-at-desperate-times-for-virtual-platforms/?utm_content=270020146&utm_medium=social&utm_source=linkedin&hss_channel=lcp-6921677,Series B,153,United States,11/2/2023 +Karat Financial,Los Angeles,,10/27/2023,,Finance,https://www.businessinsider.com/creator-startup-karat-lays-off-staff-firing-financial-services-funding-2023-10,Series B,116,United States,10/27/2023 +Hippo Insurance,SF Bay Area,120.0,10/26/2023,0.2,Finance,https://www.theinsurer.com/news/hippo-undertakes-another-round-of-job-cuts-impacting-70-roles/,Post-IPO,1300,United States,10/27/2023 +Graphy,"Bengaluru, Non-U.S.",50.0,10/26/2023,0.2,Education,https://inc42.com/buzz/exclusive-unacademys-graphy-cuts-20-30-jobs-to-focus-on-offline-ops/,Subsidiary,,India,10/26/2023 +Salsify,Boston,110.0,10/25/2023,,Retail,https://www.bizjournals.com/boston/inno/stories/news/2023/10/25/salsify-cuts-over-100-jobs-moves-roles-abroad.html,Unknown,453,United States,10/25/2023 + F-Secure ,"Helsinki, Non-U.S.",70.0,10/25/2023,,Security,https://yle.fi/a/74-20056883,Post-IPO,,Finland,10/26/2023 +Virgio,"Bengaluru, Non-U.S.",20.0,10/25/2023,0.33,Retail,https://inc42.com/buzz/after-pivoting-accel-backed-virgio-lays-off-33-workforce/,Series A,,India,10/9/2023 +Exabeam,SF Bay Area,,10/25/2023,0.2,Security,https://www.exabeam.com/company-news/company-update-october-25-2023/,Series F,391,United States,10/26/2023 +Multiverse,"London, Non-U.S.",,10/25/2023,,Education,https://www.cityam.com/euan-blairs-multiverse-quietly-shelves-school-leaver-mission-as-growing-pains-set-in/,Series D,414,United Kingdom,11/29/2023 +Slync,Dallas,,10/25/2023,1.0,Logistics,https://www.forbes.com/sites/davidjeans/2023/10/25/slync-goldman-sachs-shutting-down/?sh=46b485021818,Series B,76,United States,10/26/2023 +SiFive,SF Bay Area,130.0,10/24/2023,0.2,Hardware,https://www.theinformation.com/articles/semiconductor-firm-sifive-on-sidelines-of-ai-chip-boom-lays-off-130-workers,Series F,365,United States,10/25/2023 +Pebble,SF Bay Area,,10/24/2023,1.0,Consumer,https://techcrunch.com/2023/10/24/pebble-the-twitter-alternative-previously-known-as-t2-is-closing-down/,Seed,1,United States,10/25/2023 +Shipt,Birmingham,,10/24/2023,0.03,Retail,https://www.al.com/business/2023/10/shipt-lays-off-35-of-filled-positions-closing-many-open-ones.html,Acquired,65,United States,10/25/2023 +Parity Technologies,"London, Non-U.S.",100.0,10/23/2023,0.3,Crypto,https://www.bloomberg.com/news/articles/2023-10-23/polkadot-blockchain-developer-parity-to-eliminate-about-30-of-staff?embedded-checkout=true,Unknown,,United Kingdom,10/12/2023 +Roblox China,"Shenzen, Non-U.S.",15.0,10/23/2023,,Consumer,https://techcrunch.com/2023/10/23/roblox-china-tencent-layoff/,Subsidiary,,China,10/25/2023 +Nomad Health,New York City,119.0,10/20/2023,0.17,Healthcare,https://www.forbes.com/sites/katiejennings/2023/02/09/staffing-marketplace-nomad-health-lays-off-20-of-workforce-employees-say/?sh=71b4037a1557,Unknown,218,United States,2/10/2023 +Tropic,New York City,26.0,10/20/2023,,Finance,https://www.linkedin.com/posts/davidtropic_today-weve-made-the-sad-decision-to-let-activity-7121182074861957120-UzOF/,Series B,67,United States,10/20/2023 +Nomad Health,New York City,,10/20/2023,0.25,Healthcare,https://www.businessinsider.com/nomad-health-layoffs-healthcare-staffing-startup-2023-10,Unknown,218,United States,10/20/2023 +Convoy,Seattle,500.0,10/19/2023,1.0,Logistics,https://www.geekwire.com/2023/convoy-collapse-read-ceos-memo-detailing-sudden-shutdown-of-seattle-trucking-startup/,Series E,1100,United States,10/19/2023 +Bullhorn,Boston,140.0,10/19/2023,0.09,Sales,https://www.bizjournals.com/boston/news/2023/10/20/bullhorn-cuts-downturn.html,Acquired,32,United States,10/20/2023 +LegalZoom,Austin,100.0,10/19/2023,,Legal,https://www.bizjournals.com/austin/news/2023/10/19/legal-zoom-layoffs-williamson-county-warn-notice.html,Post-IPO,951,United States,10/20/2023 +StellarAlgo,"Calgary, Non-U.S.",21.0,10/19/2023,0.28,Data,https://betakit.com/cooler-financing-environment-leads-stellaralgo-to-restructure-and-make-layoffs/,Series A,16,Canada,10/20/2023 +ManoMano,"Paris, Non-U.S.",230.0,10/18/2023,0.25,Retail,https://www.lesechos.fr/industrie-services/conso-distribution/face-a-la-deprime-du-bricolage-manomano-reduit-ses-effectifs-dun-quart-1987873,Series F,705,France,10/18/2023 +Google,SF Bay Area,40.0,10/18/2023,,Consumer,https://www.cnbc.com/2023/10/18/google-cuts-dozens-of-jobs-in-news-division-.html,Post-IPO,26,United States,10/19/2023 +WeTransfer,"Amsterdam, Non-U.S.",35.0,10/18/2023,0.1,Other,https://fd.nl/tech-en-innovatie/1493394/wetransfer-schrapt-10-van-de-banen,Series A,64,Netherlands,10/26/2023 +Plume,Denver,24.0,10/18/2023,,Healthcare,https://techcrunch.com/2023/10/18/trans-healthcare-startup-plume-lays-off-dozens-of-workers/,Series B,38,United States,10/19/2023 +Belora Paris,"Gurugram, Non-U.S.",,10/18/2023,1.0,Retail,https://entrackr.com/2023/10/exclusive-surge-backed-belora-cosmetics-may-shut-down/,Seed,,India,12/4/2023 +Made Renovation,SF Bay Area,,10/18/2023,1.0,Construction,https://techcrunch.com/2023/10/18/made-renovation-which-intrigued-then-infuriated-its-customers-is-shutting-down/,Seed,9,United States,10/19/2023 +Volta Trucks,"Stockholm, Non-U.S.",,10/18/2023,1.0,Transportation,https://voltatrucks.com/press-and-media,Series C,391,Sweden,10/23/2023 +Expedia,Seattle,100.0,10/17/2023,,Travel,https://skift.com/2023/10/17/expedia-laid-off-around-100-employees-in-second-round-of-job-cuts/,Post-IPO,3300,United States,10/17/2023 +Waymo,SF Bay Area,,10/17/2023,,Transportation,https://sfstandard.com/2023/10/17/tech-layoffs-waymo-san-francisco-robotaxi/,Subsidiary,5500,United States,10/17/2023 +LinkedIn,SF Bay Area,660.0,10/16/2023,0.03,Recruiting,https://techcrunch.com/2023/10/16/linkedin-layoffs-2/,Acquired,154,United States,10/16/2023 +CityMall,"Gurugram, Non-U.S.",90.0,10/16/2023,,Retail,https://inc42.com/buzz/exclusive-norwest-backed-social-commerce-startup-citymall-fires-90-employees/,Series C,112,India,10/17/2023 +C2FO,Kansas City,80.0,10/16/2023,0.03,Finance,https://www.bizjournals.com/kansascity/news/2022/12/09/c2fo-layoff-recession-efficiency-profitability.html,Series H,537,United States,10/20/2023 +Kayak / OpenTable,Stamford,80.0,10/16/2023,,Travel,https://skift.com/blog/kayak-and-opentable-laid-off-80-employees/,Acquired,229,United States,10/17/2023 +Bandcamp,SF Bay Area,58.0,10/16/2023,0.5,Other,https://www.sfgate.com/tech/article/bandcamp-layoffs-oakland-songtradr-epic-18429463.php,Acquired,,United States,10/17/2023 +Stack Overflow,New York City,,10/16/2023,0.28,Recruiting,https://www.theverge.com/2023/10/16/23919004/stack-overflow-layoff-ai-profitability,Acquired,153,United States,10/16/2023 +PokerStars,"Leeds, Non-U.S.",,10/15/2023,,Consumer,https://sigma.world/news/flutters-restructuring-of-pokerstars-division-leads-to-job-losses/,Acquired,,United Kingdom,10/17/2023 +Adda247,"Gurugram, Non-U.S.",300.0,10/14/2023,,Education,https://entrackr.com/2023/10/exclusive-edtech-startup-adda247-fires-300-employees/,Series B,61,India,10/15/2023 +Flexport,SF Bay Area,,10/13/2023,0.2,Logistics,https://www.cnbc.com/2023/10/12/flexport-is-laying-off-20percent-of-its-workforce.html,Series E,2400,United States,10/12/2023 +Uno Health,New York City,,10/13/2023,,Healthcare,https://docs.google.com/spreadsheets/d/1uCA0BFMYjCFYeoC7ilv5FvA-oCPGHLPKJZ8xjql_K54/edit#gid=0,Unknown,,United States,10/17/2023 +Qualcomm,San Diego,1258.0,10/12/2023,0.02,Hardware,https://www.cnbc.com/2023/10/12/qualcomm-to-cut-roughly-1258-jobs-in-california.html,Post-IPO,,United States,10/13/2023 +Lending Club,SF Bay Area,172.0,10/12/2023,0.14,Finance,https://www.bloomberg.com/news/articles/2023-10-12/lendingclub-plans-to-cut-172-jobs-reports-preliminary-results?embedded-checkout=true,Post-IPO,392,United States,10/13/2023 +MariaDB,SF Bay Area,84.0,10/12/2023,0.28,Data,https://www.sec.gov/ix?doc=/Archives/edgar/data/0001929589/000155837023016381/mrdb-20231012x8k.htm,Post-IPO,272,United States,10/12/2023 +Deepgram,SF Bay Area,20.0,10/11/2023,0.2,AI,https://www.theinformation.com/articles/ai-startup-lays-off-workers-again-in-fresh-sign-of-sector-belt-tightening,Series B,86,United States,10/12/2023 +Acronis,"Zurich, Non-U.S.",,10/11/2023,,Security,https://www.acronis.com/en-us/blog/posts/putting-the-focus-on-accelerating-our-partners-growth/,Private Equity,658,Switzerland,10/12/2023 +Neon,"Sao Paulo, Non-U.S.",180.0,10/10/2023,,Finance,https://valorinveste.globo.com/mercados/renda-variavel/empresas/noticia/2023/10/10/banco-neon-promove-demissao-em-massa-e-corta-cerca-de-200-funcionarios.ghtml,Series D,727,Brazil,2/16/2024 +Stitch Fix,Dallas,558.0,10/9/2023,,Retail,https://www.retaildive.com/news/stitch-fix-layoffs-dallas-distribution-center-closures/695985/,Post-IPO,79,United States,10/15/2023 +Carbon Health,SF Bay Area,114.0,10/9/2023,0.05,Healthcare,https://www.beckershospitalreview.com/digital-health/carbon-health-lays-off-114-employees.html,Series D,522,United States,10/25/2023 +Blue Origin,Seattle,40.0,10/9/2023,,Aerospace,https://www.theinformation.com/briefings/blue-origin-lays-off-around-40-people,Unknown,167,United States,10/9/2023 +Braid,SF Bay Area,,10/9/2023,1.0,Finance,https://techcrunch.com/2023/10/09/consumer-payments-startup-braid-shuts-down-cites-struggles-with-leveraging-third-party-software/,Unknown,,United States,10/10/2023 +Product Hunt,,,10/9/2023,0.6,Consumer,https://techcrunch.com/2023/10/19/product-hunt-cleans-house-with-layoffs-impacting-60-of-staff/,Acquired,,United States,10/15/2023 +VTrips,Jacksonville,75.0,10/7/2023,0.09,Travel,https://skift.com/2023/10/07/a-trimmed-down-vtrips-laid-off-9-of-its-employees/,Private Equity,,United States,12/22/2023 +Juniper Networks,SF Bay Area,440.0,10/6/2023,0.04,Hardware,https://www.lightreading.com/finance/juniper-networks-to-layoff-440-employees-at-a-cost-of-59m,Post-IPO,39,United States,1/9/2024 +InvestCloud,Los Angeles,80.0,10/6/2023,0.05,Finance,https://citywire.com/ria/news/investcloud-lays-off-5-of-staff/a2427557,Private Equity,54,United States,10/6/2023 +Brave,SF Bay Area,,10/6/2023,0.09,Consumer,https://techcrunch.com/2023/10/06/brave-lays-off-9-of-its-workforce/,Series B,42,United States,10/7/2023 +Dash,New York City,,10/6/2023,1.0,Finance,https://weetracker.com/2023/10/06/dash-african-fintech-scandal/,Unknown,86,United States,10/8/2023 +Shift,SF Bay Area,,10/6/2023,1.0,Transportation,https://www.marketwatch.com/story/shift-technologies-files-for-bankruptcy-amid-wind-down-33602dbf,Post-IPO,504,United States,10/8/2023 +Yuga Labs,Miami,,10/6/2023,,Crypto,https://decrypt.co/200455/bored-ape-yacht-club-nft-creator-yuga-labs-confirms-layoffs,Unknown,450,United States,10/6/2023 +Enovix,SF Bay Area,185.0,10/5/2023,,Energy,https://www.theinformation.com/articles/the-electric-enovix-lays-off-185-engineers-and-shifts-most-of-its-operations-to-malaysia,Post-IPO,516,United States,10/6/2023 +Bizongo,"Mumbai, Non-U.S.",50.0,10/5/2023,,Retail,https://inc42.com/buzz/a-day-after-50-mn-fundraise-bizongo-lays-off-50-employees/,Series E,315,India,10/6/2023 +SchoolMint,SF Bay Area,29.0,10/5/2023,0.14,Education,https://www.businessinsider.com/schoolmint-layoffs-edtech-school-choice-slowdown-2023-10,Acquired,8,United States,10/6/2023 +SeekOut,Seattle,16.0,10/5/2023,0.07,Recruiting,https://www.claytoncountyregister.com/news2/seekout-lays-off-7-of-staff-in-restructuring-but-plans-to-grow-headcount-this-year/539529/,Series C,,United States,10/6/2023 +Arrival,"London, Non-U.S.",,10/5/2023,0.25,Transportation,https://techcrunch.com/2023/10/10/cash-strapped-ev-maker-arrival-lays-off-yet-more-workers/,Post-IPO,629,United Kingdom,10/11/2023 +Ledger,"Paris, Non-U.S.",,10/5/2023,0.12,Crypto,https://www.bloomberg.com/news/articles/2023-10-05/french-crypto-wallet-maker-ledger-lays-off-12-of-staff,Series C,577,France,10/6/2023 +Qualtrics,Salt Lake City,780.0,10/4/2023,0.14,Other,https://www.geekwire.com/2023/qualtrics-cuts-780-jobs-about-14-of-workforce-citing-complexity-from-rapid-hiring/,Acquired,400,United States,10/4/2023 +Hopper,"Montreal, Non-U.S.",250.0,10/4/2023,0.3,Travel,https://skift.com/2023/10/04/hopper-cuts-30-of-staff-in-bid-to-get-profitable/,Unknown,730,Canada,10/4/2023 +Bird,Los Angeles,,10/4/2023,,Transportation,https://techcrunch.com/2023/10/04/bird-lays-off-staff-after-spin-acquisition-to-reduce-redundancies/,Post-IPO,916,United States,10/4/2023 +Block,SF Bay Area,,10/4/2023,,Finance,https://www.afr.com/technology/afterpay-s-block-begins-layoffs-after-stock-crashes-20231004-p5e9pe,Post-IPO,150,United States,10/4/2023 +Meta,SF Bay Area,,10/4/2023,,Consumer,https://www.reuters.com/technology/meta-lay-off-employees-metaverse-silicon-unit-wednesday-2023-10-03/,Post-IPO,26000,United States,10/4/2023 +Dare,"London, Non-U.S.",,10/3/2023,,Energy,https://www.linkedin.com/posts/wearedare_activity-7114953772254011392-4EY6/,Unknown,,United Kingdom,10/8/2023 +Sendoso,SF Bay Area,,10/3/2023,,Marketing,https://www.businessinsider.com/softbank-backed-startup-sendoso-axed-headcount-fourth-time-16-months-2023-10,Series C,152,United States,10/4/2023 +Twitch,SF Bay Area,,10/3/2023,,Consumer,https://www.gamesindustry.biz/twitch-makes-another-round-of-layoffs,Acquired,35,United States,10/4/2023 +Chainalysis,New York City,150.0,10/2/2023,0.15,Crypto,https://www.forbes.com/sites/stevenehrlich/2023/10/02/chainalysis-idling-150-employees-as-chill-of-crypto-winter-persists/?sh=5e9464256bc8,Series F,536,United States,10/4/2023 +Synapse,SF Bay Area,86.0,10/2/2023,0.4,Finance,https://techcrunch.com/2023/10/06/a16z-backed-fintech-synapse-lays-off-40-of-its-staff/,Series B,50,United States,10/6/2023 +Chia Network,SF Bay Area,26.0,10/2/2023,0.37,Crypto,https://www.coindesk.com/policy/2023/10/02/chia-network-lays-off-third-of-its-staff-as-loss-of-banker-delayed-going-public/,Series D,70,United States,10/4/2023 +IronNet,Washington D.C.,,10/2/2023,1.0,Security,https://techcrunch.com/2023/10/02/ironnet-founded-by-former-nsa-director-shuts-down-and-lays-off-staff/,Post-IPO,428,United States,10/4/2023 +Sono Motors,"Munich, Non-U.S.",,10/2/2023,,Transportation,https://www.linkedin.com/feed/update/urn:li:activity:7114544303233740800/,Post-IPO,127,Germany,10/2/2023 +Cowbell,SF Bay Area,28.0,9/29/2023,0.12,Finance,https://cowbell.insure/blog/letter-from-the-ceo/,Series B,123,United States,10/2/2023 +N26,"Berlin, Non-U.S.",14.0,9/29/2023,,Finance,https://financefwd.com/de/n26-sparkurs/,Series E,1700,Germany,9/29/2023 +Andgo,"Saskatoon, Non-U.S.",9.0,9/29/2023,,HR,https://betakit.com/saskatoon-software-startups-vendasta-7shifts-andgo-systems-make-layoffs/,Series A,5,Canada,9/29/2023 +Vendasta,"Saskatoon, Non-U.S.",,9/29/2023,,Marketing,https://betakit.com/saskatoon-software-startups-vendasta-7shifts-andgo-systems-make-layoffs/,Series D,178,Canada,9/29/2023 +Epic Games,Raleigh,870.0,9/28/2023,0.16,Consumer,https://techcrunch.com/2023/09/28/fortnite-maker-epic-games-is-laying-off-16-of-its-workforce/,Unknown,6400,United States,9/28/2023 +Lululemon Studio,New York City,120.0,9/28/2023,,Fitness,https://www.businessinsider.com/lululemon-lays-off-workers-discontinues-mirror-amid-peloton-deal-2023-9,Acquired,75,United States,9/29/2023 +2U,Washington D.C.,,9/28/2023,,Education,https://2u.com/latest/organizational-changes-2u/,Post-IPO,426,United States,9/29/2023 +Fit Analytics,"Berlin, Non-U.S.",,9/28/2023,1.0,Retail,https://www.businessinsider.de/gruenderszene/technologie/nach-uebernahme-snap-kuendigt-allen-mitarbeitern-von-berliner-ki-startup/,Acquired,,,9/29/2023 +Snap,Los Angeles,170.0,9/27/2023,,Consumer,https://newsroom.snap.com/ar-enterprise-strategic-review,Post-IPO,4900,United States,9/28/2023 +Fi.Money,"Bengaluru, Non-U.S.",30.0,9/27/2023,0.1,Finance,https://entrackr.com/2023/09/neobank-fi-lays-off-10-of-workforce/,Series C,137,India,9/28/2023 +Dunzo,"Bengaluru, Non-U.S.",150.0,9/26/2023,0.3,Food,https://www.entrepreneur.com/en-in/news-and-trends/dunzo-announces-fresh-round-of-layoffs/459709,Unknown,458,India,9/27/2023 +Flexe,Seattle,131.0,9/26/2023,0.33,Logistics,https://www.geekwire.com/2023/seattle-warehousing-startup-flexe-lays-off-33-of-workforce-amid-freight-industry-slowdown/,Series D,263,United States,9/27/2023 +Talkdesk,SF Bay Area,,9/26/2023,,Support,https://techcrunch.com/2023/09/26/talkdesk-conducts-third-round-of-layoffs-in-less-than-14-months/,Series D,497,United States,9/27/2023 +Lucid Software,Salt Lake City,75.0,9/25/2023,0.07,Other,https://lucid.co/blog/a-message-to-lucid-employees,Series E,170,United States,9/25/2023 +Eat Just,SF Bay Area,40.0,9/22/2023,,Food,https://news.bloomberglaw.com/daily-labor-report/vegan-egg-maker-eat-just-cuts-jobs-after-raising-money-1,Unknown,465,United States,10/2/2023 +Appsmith,SF Bay Area,35.0,9/22/2023,0.25,,https://inc42.com/buzz/exclusive-insight-partners-backed-appsmith-lays-off-25-of-its-workforce/,Series B,51,United States,9/24/2023 +Roblox,New York City,30.0,9/22/2023,,Consumer,https://techcrunch.com/2023/09/21/roblox-cuts-30-on-talent-acquisition-team-as-hiring-slows/,Post-IPO,857,United States,9/22/2023 +Foodpanda,"Singapore, Non-U.S.",,9/22/2023,,Food,https://www.cnbc.com/2023/09/22/foodpanda-confirms-talks-to-sell-part-of-its-asia-business-layoffs.html,Acquired,749,Singapore,9/24/2023 +Recast,"Edinburgh, Non-U.S.",,9/22/2023,1.0,Media,https://www.linkedin.com/posts/recasttv_were-very-sad-to-share-the-news-that-despite-activity-7110960509750796288-hqzt/,Series A,14,United Kingdom,9/24/2023 +DealShare,"Bengaluru, Non-U.S.",130.0,9/21/2023,,Retail,https://yourstory.com/2023/09/dealshare-shuts-b2b-business-lays-off-employees,Series E,390,India,9/24/2023 +Merative,"Dublin, Non-U.S.",100.0,9/21/2023,,Healthcare,https://www.irishexaminer.com/business/companies/arid-41230633.html,Acquired,,Ireland,9/24/2023 +Robinhood,SF Bay Area,,9/21/2023,,Finance,https://www.businessinsider.com/robinhood-layoffs-reorganization-credit-cards-shrinking-user-base-insiders-say-2023-9,Post-IPO,5600,United States,9/24/2023 +Akudo,"Bengaluru, Non-U.S.",,9/20/2023,1.0,Finance,https://entrackr.com/2023/09/exclusive-y-combinator-backed-akudo-to-shut-down-ops/,Seed,4,India,12/4/2023 +Outreach,Seattle,,9/20/2023,0.12,Sales,https://www.geekwire.com/2023/more-layoffs-at-outreach-seattle-sales-software-startup-cuts-12-of-staff/,Series G,489,United States,9/22/2023 +Truss Works,SF Bay Area,,9/20/2023,,Real Estate,Internal memo,Unknown,,United States,9/25/2023 +Nowadays,SF Bay Area,,9/18/2023,1.0,Food,https://www.linkedin.com/posts/max-elder_hi-friends-with-a-heart-full-of-gratitude-activity-7107774956486230016-IKOz/,Seed,10,United States,10/2/2023 +Cisco,SF Bay Area,350.0,9/17/2023,,Infrastructure,https://www.marketwatch.com/story/cisco-to-cut-350-jobs-in-latest-round-of-layoffs-f9084451,Post-IPO,2,United States,9/20/2023 +Hooray Foods,SF Bay Area,,9/17/2023,1.0,Food,https://www.bizjournals.com/sanfrancisco/news/2023/09/18/plant-bacon-hooray-foods-alternative-protein.html,Seed,7,United States,9/21/2023 +Sage Therapeutics copy,Boston,290.0,9/15/2023,,Healthcare,https://www.bizjournals.com/boston/news/2023/09/15/sage-therapeutics-cambridge-layoffs.html,Post-IPO,438,United States,9/21/2023 +7shifts,"Saskatoon, Non-U.S.",30.0,9/15/2023,0.07,Food,https://www.linkedin.com/feed/update/urn:li:activity:7108084382132801536/,Series C,131,Canada,9/21/2023 +Velocity,"Bengaluru, Non-U.S.",,9/15/2023,0.14,Finance,https://inc42.com/buzz/exclusive-revenue-based-financing-platform-velocity-lays-off-around-14-workforce/,Series A,30,India,9/20/2023 +Airtable,SF Bay Area,237.0,9/14/2023,0.27,Product,https://www.forbes.com/sites/stevenbertoni/2023/09/14/unicorn-startup-airtable-lays-off-27-of-firm-shifts-focus-to-big-clients/?sh=171151534589,Series F,1400,United States,9/14/2023 +Project44,Chicago,116.0,9/14/2023,,Logistics,https://www.freightwaves.com/news/freighttech-industry-isnt-what-it-was-a-year-ago,Unknown,817,United States,9/20/2023 +VideoAmp,Los Angeles,40.0,9/14/2023,0.1,Marketing,https://www.axios.com/2023/09/14/videoamp-layoffs,Series F,456,United States,9/20/2023 +R3,New York City,,9/14/2023,0.2,Crypto,https://www.bloomberg.com/news/articles/2023-09-14/blockchain-startup-r3-trims-fifth-of-jobs-in-cost-cutting-drive#xj4y7vzkg,Series A,112,United States,9/14/2023 +Google,SF Bay Area,75.0,9/13/2023,,Consumer,https://www.eastbaytimes.com/2023/10/31/google-tech-job-cut-layoff-bay-area-economy-office-lease-alphabet/,Post-IPO,26,United States,9/13/2023 +Akili Labs,Boston,,9/13/2023,0.4,Healthcare,https://www.bizjournals.com/boston/news/2023/09/13/akili-interactive-layoffs-september-2023-otc.html,Post-IPO,301,United States,9/14/2023 +Evolve,Denver,175.0,9/12/2023,0.2,Travel,https://skift.com/2023/09/13/property-manager-evolve-lays-off-20-of-its-workforce/amp/,Series F,224,United States,9/14/2023 +Binance.US,SF Bay Area,100.0,9/12/2023,0.33,Crypto,https://www.bloomberg.com/news/articles/2023-09-12/binance-us-cuts-100-positions-as-crackdown-erodes-crypto-business#xj4y7vzkg,Subsidiary,,United States,9/13/2023 +Paper,"Montreal, Non-U.S.",87.0,9/12/2023,0.03,Education,https://paper.co/inside-paper/a-message-from-paper-founders-0,Series D,389,Canada,9/14/2023 +Homeday,"Berlin, Non-U.S.",40.0,9/12/2023,0.2,Real Estate,https://www.businessinsider.de/gruenderszene/business/mcmakler-rivale-homeday-verkauft-gruender-und-viele-mitarbeiter-weg/,Unknown,71,Germany,9/13/2023 +At-Bay,SF Bay Area,27.0,9/12/2023,0.09,Security,https://www.calcalistech.com/ctechnews/article/sypw6110a3,Unknown,296,United States,9/6/2023 +Eurora,"Tallinn, Non-U.S.",111.0,9/11/2023,,Other,https://www.aripaev.ee/uudised/2023/09/11/maksuvolga-jaanud-idufirma-eurora-koondab-ule-100-tootaja,Series A,42,Estonia,9/11/2023 +Chargebee,SF Bay Area,100.0,9/11/2023,0.1,Finance,https://inc42.com/buzz/tiger-global-backed-chargebee-fires-10-workforce-in-2nd-round-of-layoffs/,Series H,468,United States,9/11/2023 +Divvy Homes,SF Bay Area,94.0,9/11/2023,,Real Estate,https://techcrunch.com/2023/09/11/divvy-homes-goes-from-2b-valuation-to-third-layoff-in-a-year/,Series B,180,United States,9/9/2023 +Grabango,SF Bay Area,34.0,9/11/2023,0.4,Food,https://docs.google.com/spreadsheets/d/1WvO3p93hUJjOCJHn4Ig3tu-nbPfGpJfiEURsY5zBRWI/edit#gid=827597978,Unknown,94,United States,9/13/2023 +Bonterra ,Austin,,9/11/2023,,Other,https://campaignsandelections.com/industry-news/staff-shake-ups-at-two-big-democratic-tech-companies/,Unknown,,United States,9/21/2023 +Mollie,"Amsterdam, Non-U.S.",,9/11/2023,,Finance,https://nltimes.nl/2023/09/11/payment-service-mollie-announces-first-reorganization-years-unbridled-growth,Series C,928,Netherlands,9/11/2023 +Oyster,Charlotte,,9/11/2023,,HR,https://oysterhr.notion.site/A-message-from-Oyster-s-CEO-Tony-Jamous-4f56b1d14252420885edffe23b194857,Series C,224,United States,9/13/2023 +ChargePoint,SF Bay Area,,9/8/2023,0.1,Manufacturing,https://investorplace.com/2023/09/chargepoint-layoffs-2023-what-to-know-about-the-latest-chpt-job-cuts/,Unknown,1400,United States,9/8/2023 +Sensor Tower,SF Bay Area,,9/8/2023,,Marketing,https://techcrunch.com/2023/09/08/market-intelligence-firm-sensor-tower-conducts-layoffs-several-execs-out/,Private Equity,46,United States,9/9/2023 +Drift,Boston,100.0,9/7/2023,0.25,Marketing,https://www.bizjournals.com/boston/news/2023/09/07/drift-second-round-layoffs.html,Acquired,107,United States,9/9/2023 +Hijra,"Jakarta, Non-U.S.",,9/7/2023,,Finance,https://www.techinasia.com/indonesian-shariah-fintech-firm-hijra-lays-employees,Unknown,67,Indonesia,9/8/2023 +Roku,SF Bay Area,360.0,9/6/2023,0.1,Media,https://www.cnbc.com/2023/09/06/roku-to-lay-off-10percent-of-workforce-stock-jumps.html,Post-IPO,208,United States,9/6/2023 +ForeScout,"Tel Aviv, Non-U.S.",40.0,9/6/2023,,Security,https://www.calcalistech.com/ctechnews/article/sjdyqira3,Acquired,125,Israel,9/9/2023 +Better.com,New York City,,9/6/2023,,Real Estate,https://www.businessinsider.com/mortgage-startup-better-cut-jobs-after-spac-merger-stock-debut-2023-9,Unknown,905,United States,9/24/2023 +Blue Origin,Seattle,,9/6/2023,,Aerospace,https://www.geekwire.com/2023/rare-layoffs-blue-origin-hr/,Unknown,167,United States,9/8/2023 +iSpecimen,Boston,,9/6/2023,0.2,Healthcare,https://seekingalpha.com/news/4009713-ispecimen-to-lay-off-20-of-its-employees-as-it-seeks-profitability,Post-IPO,31,United States,9/9/2023 +MaxMilhas,"Belo Horizonte, Non-U.S.",82.0,9/5/2023,0.18,Travel,https://g1.globo.com/mg/minas-gerais/noticia/2023/09/05/maxmilhas-do-grupo-da-123-milhas-anuncia-corte-de-18percent-dos-funcionarios.ghtml,Unknown,,Brazil,9/6/2023 +Absci,Portland,30.0,9/5/2023,0.15,Healthcare,https://www.geekwire.com/2023/biotech-company-absci-lays-off-30-employees-about-15-of-staff/,Post-IPO,238,United States,9/7/2023 +Hodinkee,New York City,24.0,9/5/2023,0.2,Retail,"https://ww.fashionnetwork.com/news/Lvmh-backed-luxury-watch-site-hodinkee-cuts-a-fifth-of-jobs,1552691.html",Seed,40,United States,9/6/2023 +Talent.com,"Montreal, Non-U.S.",,9/5/2023,,Recruiting,https://aimgroup.com/2023/09/05/talent-com-staff-use-linkedin-to-announce-more-layoffs/,Series B,150,Canada,9/7/2023 +mPharma,"Accra, Non-U.S.",150.0,9/4/2023,,Healthcare,https://techcabal.com/2023/09/04/exclusive-mpharma-lays-off-150-employees-due-to-tightening-macroenomic-conditions/,Series D,90,Ghana,9/7/2023 +Xolo,"Tallinn, Non-U.S.",24.0,9/4/2023,,Finance,https://arileht.delfi.ee/artikkel/120229031/vabakutseliste-platvorm-xolo-koondab-tootajaid-eesmark-on-jouda-kasumisse,Series A,11,Estonia,9/4/2023 +Nexar,New York City,17.0,9/4/2023,0.14,Transportation,https://www.calcalistech.com/ctechnews/article/rktq3gqc3,Series D,149,United States,9/4/2023 +Khatabook,"Bengaluru, Non-U.S.",42.0,9/1/2023,,Finance,https://entrackr.com/2023/09/peak-xv-backed-khatabook-lays-off-over-40-employees/,Series C,187,India,9/4/2023 +Clearcover,Chicago,,9/1/2023,0.28,Finance,https://coverager.com/clearcover-makes-additional-cuts/,Series D,304,United States,9/1/2023 +Gated,SF Bay Area,,9/1/2023,1.0,Other,https://www.linkedin.com/posts/gated_hello-gated-community-weve-some-news-to-activity-7103355034842628096-MOYT/,Seed,3,United States,9/4/2023 +Lunchtime,"Brno, Non-U.S.",,9/1/2023,1.0,Food,https://inc42.com/buzz/foodtech-giant-zomato-shutters-czech-subsidiary-lunchtime/,Acquired,,Czech Republic,9/4/2023 +Pegasystems,Boston,240.0,8/31/2023,0.04,HR,https://www.bizjournals.com/boston/news/2023/08/31/pegasystems-layoffs-second-round.html,Post-IPO,,United States,9/1/2023 +Biofourmis,Boston,120.0,8/31/2023,,Healthcare,https://www.peoplematters.in/news/leadership/biofourmis-ceo-resigns-abruptly-after-layoffs-firm-begins-new-ceo-search-38874,Series D,464,United States,9/1/2023 +Malwarebytes,SF Bay Area,100.0,8/31/2023,,Security,https://techcrunch.com/2023/08/31/malwarebytes-layoffs-business-split/,Series B,80,United States,8/31/2023 +Expedia,Seattle,,8/31/2023,,Travel,https://www.geekwire.com/2023/internal-email-expedia-group-lays-off-some-tech-workers-in-latest-move-to-reshape-its-workforce/,Post-IPO,3300,United States,9/4/2023 +Productboard,SF Bay Area,,8/31/2023,0.1,Product,https://www.businessinsider.com/kleiner-perkins-sequoia-and-bessemer-backed-productboard-fourth-round-layoffs-2024-1,Series D,,United States,1/27/2024 +SkyKick,Seattle,140.0,8/30/2023,,Other,https://www.geekwire.com/2023/cloud-automation-startup-skykick-lays-off-181-employees-in-washington-state/,Unknown,198,United States,8/30/2023 +Omuni,"Bengaluru, Non-U.S.",60.0,8/30/2023,0.35,Retail,https://inc42.com/buzz/exclusive-shiprocket-owned-omuni-fires-nearly-35-workforce-ceo-cto-to-exit/,Acquired,10,India,8/30/2023 +Kenko Health,"Mumbai, Non-U.S.",50.0,8/30/2023,0.2,Healthcare,https://www.businessinsider.in/business/startups/news/healthcare-startup-kenko-health-lays-off-20-of-workforce-across-functions/articleshow/103201380.cms,Series A,14,India,9/1/2023 +Huma,"London, Non-U.S.",45.0,8/30/2023,0.1,Healthcare,https://sifted.eu/articles/uk-healthtech-huma-layoffs,Unknown,217,United Kingdom,8/30/2023 +Zeplin,SF Bay Area,37.0,8/30/2023,0.35,Product,https://sfstandard.com/2023/08/30/san-francisco-software-startup-lays-off-one-third-of-workforce/,Seed,1,United States,8/30/2023 +Kenko Health,"Mumbai, Non-U.S.",50.0,8/29/2023,0.2,Healthcare,https://entrackr.com/2023/08/exclusive-kenko-health-lays-off-20-of-workforce/,Unknown,14,India,8/29/2023 +123Milhas,"Belo Horizonte, Non-U.S.",,8/29/2023,,Travel,https://economia.uol.com.br/noticias/redacao/2023/08/28/123milhas-demissao-funcionarios.htm,Unknown,,Brazil,10/6/2023 +Zebra Technologies,Chicago,700.0,8/28/2023,0.07,Manufacturing,https://www.chicagobusiness.com/technology/zebra-technologies-cuts-700-jobs-or-7-percent-bar-code-maker-workforce,Post-IPO,2000,United States,8/28/2023 +CoinSwitch,"Bengaluru, Non-U.S.",44.0,8/28/2023,,Crypto,https://entrackr.com/2023/08/crypto-firm-coinswitch-kuber-lays-off-44-employees/,Series C,301,India,8/28/2023 +Clockwork,Dallas,,8/28/2023,1.0,Crypto,8/28/solana-based-automation-startup-clockwork-to-shut-down/,Seed,4,United States,8/28/2023 +SenseTime,"Hong Kong, Non-U.S.",,8/28/2023,,AI,https://technode.com/2023/08/28/chinese-ai-company-sensetime-initiates-new-round-of-layoffs-in-overhaul/,Post-IPO,2600,Hong Kong,8/28/2023 +HackerRank,SF Bay Area,53.0,8/27/2023,,Recruiting,https://telecom.economictimes.indiatimes.com/news/internet/hackerrank-lays-off-53-employees-amid-economic-uncertainty/103102308,Series D,103,United States,8/28/2023 +Cuemath,"Bengaluru, Non-U.S.",100.0,8/26/2023,,Education,https://inc42.com/buzz/edtech-startup-cuemath-fires-another-100-employees-to-cut-costs/,Unknown,121,India,8/27/2023 +Fortinet,SF Bay Area,,8/25/2023,,Security,https://www.crn.com/news/security/fortinet-makes-cuts-to-sales-channel-business-development-groups,Post-IPO,89,United States,8/27/2023 +Captiv8,SF Bay Area,8.0,8/24/2023,0.03,Marketing,https://www.prweek.com/article/1835107/influencer-marketing-platform-captiv8-lays-off-eight-employees-3-staff,Unknown,4,United States,8/25/2023 +Chingari,"Bengaluru, Non-U.S.",,8/24/2023,0.5,Media,https://inc42.com/buzz/exclusive-chingari-sacks-over-50-employees-in-second-round-of-layoffs/,Unknown,88,India,8/24/2023 +Atlas,Chicago,150.0,8/23/2023,0.3,HR,https://www.forbes.com/sites/angelicamarideoliveira/2023/08/24/hrtech-atlas-announces-layoffs-six-months-post-brazil-launch/?sh=31ea27cb6b7d,Series B,220,United States,8/24/2023 +Veriff,"Tallinn, Non-U.S.",101.0,8/23/2023,0.21,Security,https://digipro.geenius.ee/rubriik/uudis/veriff-koondab-taas-sel-korral-peab-lahkuma-viiendik-tootajaist/,Series C,192,Estonia,8/23/2023 +BlackLine,Los Angeles,95.0,8/23/2023,0.05,Finance,https://beststocks.com/blackline-announces-workforce-reduction-to-st/,Post-IPO,220,United States,8/24/2023 +Rivos,SF Bay Area,24.0,8/23/2023,0.06,Hardware,https://www.theinformation.com/articles/chip-startup-sued-by-apple-has-struggled-to-raise-capital,Unknown,,United States,11/10/2023 +Cellulant,"Nairobi, Non-U.S.",,8/23/2023,0.2,Finance,https://techeconomy.ng/cellulant-to-lay-off-20-of-its-workforce/,Series C,54,Kenya,8/24/2023 +JOIN,"Berlin, Non-U.S.",,8/23/2023,,Recruiting,https://docs.google.com/spreadsheets/d/1bsu6O2DCEkzM-4Ny8q6HmLZ2DGfjpZVYdxTOgg3z23M/edit?resourcekey#gid=2104038854,Unknown,,Germany,8/25/2023 +Getir,"London, Non-U.S.",2500.0,8/22/2023,0.11,Food,https://www.reuters.com/world/middle-east/turkeys-getir-cut-11-workers-global-restructuring-2023-08-22/,Series E,1800,United Kingdom,8/22/2023 +CoinDCX,"Mumbai, Non-U.S.",,8/22/2023,0.12,Crypto,https://www.moneycontrol.com/europe/?url=https://www.moneycontrol.com/news/business/crypto-exchange-coindcx-lays-off-12-of-workforce-11236611.html,Series D,247,India,8/23/2023 +Datagen,"Tel Aviv, Non-U.S.",,8/22/2023,,AI,https://www.calcalistech.com/ctechnews/article/h1f0hxft3,Series B,72,Israel,8/23/2023 +Hypefast,"Jakarta, Non-U.S.",,8/22/2023,0.3,Retail,https://www.techinasia.com/indonesian-brand-aggregator-hypefast-lays-30-staff,Series A,33,Indonesia,8/25/2023 +Tempo Automation,SF Bay Area,,8/22/2023,,Other,https://www.bizjournals.com/sanfrancisco/news/2023/08/22/tmpo-asia-io-layoffs-san-francisco-manufacturing.html,Post-IPO,154,United States,8/23/2023 +Recur,Miami,,8/21/2023,,Crypto,https://www.theblock.co/post/246477/recur-to-shut-down-less-than-two-years-after-raising-50-million-in-series-a,Series A,55,United States,8/23/2023 +Unite Us,New York City,,8/21/2023,,Healthcare,https://www.fiercehealthcare.com/health-tech/unite-us-lays-employees-amid-negative-ebitda-margins,Series C,196,United States,9/9/2023 +Twiga,"Nairobi, Non-U.S.",283.0,8/20/2023,0.33,Food,https://techcabal.com/2023/08/20/twiga-foods-lays-off-283-employees/,Series C,157,Kenya,8/22/2023 +Spartan Poker,"Kolkata, Non-U.S.",125.0,8/19/2023,0.4,Consumer,https://inc42.com/buzz/after-mpl-hike-spartan-poker-follows-suit-lays-off-40-of-workforce/,Unknown,,India,8/19/2023 +Times Internet ,"Gurugram, Non-U.S.",100.0,8/18/2023,0.05,Media,Times Internet ,Subsidiary,,India,8/19/2023 +Detectify,"Stockholm, Non-U.S.",30.0,8/18/2023,,Security,https://www.breakit.se/artikel/37377/sakrade-kapital-nu-far-annu-fler-ga-fran-detectify,Unknown,42,Sweden,10/23/2023 +Embrace,SF Bay Area,,8/18/2023,,Product,https://www.linkedin.com/posts/futoran_healthy-does-not-mean-infinite-while-embrace-activity-7097259048655355904-4JnJ/,Unknown,77,United States,9/1/2023 +Zylo,Indianapolis,,8/18/2023,0.1,Other,https://www.insideindianabusiness.com/articles/indy-tech-company-zylo-conducts-layoffs,Series C,72,United States,8/19/2023 +Illumina,San Diego,151.0,8/17/2023,,Healthcare,https://www.sandiegouniontribune.com/business/story/2023-08-17/illumina-lays-off-151-san-diego-workers,Post-IPO,28,United States,8/19/2023 +AppFolio,Santa Barbara,149.0,8/17/2023,0.09,Real Estate,https://www.pacbiztimes.com/2023/08/17/appfolio-lays-off-9-of-workforce-in-second-round-of-2023-cuts/,Post-IPO,30,United States,8/18/2023 +Intel,SF Bay Area,140.0,8/17/2023,,Hardware,https://www.tomshardware.com/news/intel-to-make-further-workforce-cuts-in-us-report,Post-IPO,12,United States,8/19/2023 +StreamElements,"Tel Aviv, Non-U.S.",60.0,8/17/2023,0.35,Media,https://www.calcalistech.com/ctechnews/article/s1xjtrs22,Series B,111,Israel,8/18/2023 +CircleCI,SF Bay Area,,8/17/2023,,Product,Internal memo,Series F,315,United States,8/18/2023 +FlexCar,Boston,20.0,8/16/2023,,Transportation,https://www.bizjournals.com/boston/news/2023/08/16/flexcar-layoffs-2023.html,Unknown,297,United States,8/18/2023 +Xendit,"Jakarta, Non-U.S.",,8/16/2023,,Finance,https://www.techinasia.com/xendit-conducts-layoffs-product-team-affected,Series D,534,Indonesia,2/2/2024 +Noice,"Helsinki, Non-U.S.",,8/15/2023,,Consumer,https://www.techinasia.com/noice-lays-off-restructuring,Seed,5,Finland,8/15/2023 +SecureWorks,Atlanta,300.0,8/14/2023,0.15,Security,https://techcrunch.com/2023/08/14/secureworks-second-round-layoffs-this-year/,Post-IPO,83,United States,8/14/2023 +Easee,"Sandnes, Non-U.S.",200.0,8/14/2023,0.57,Energy,https://www.dn.no/teknologi/easee/jonas-helmikstol/kjetil-nasje/easee-med-masseoppsigelser-grunder-og-toppsjef-jonas-helmikstol-gar-av/2-1-1500472,Unknown,,Norway,8/19/2023 +CoinDesk,New York City,,8/14/2023,,Crypto,https://www.theblock.co/post/244665/coindesk-lays-off-45-of-editorial-staff-as-it-eyes-deal-to-sell-company,Acquired,,United States,8/15/2023 +iQiyi Smart,"Beijing, Non-U.S.",,8/14/2023,,Other,https://www.caixinglobal.com/2023-08-14/iqiyis-vr-unit-fails-to-pay-staff-slashes-jobs-as-metaverse-hype-fades-102093155.html,Series C,,China,8/15/2023 +LingoAce,"Singapore, Non-U.S.",,8/11/2023,,Education,https://www.techinasia.com/entire-teams-overnight-lingoace-laid-hundreds-expansion-hurdles,Series C,180,Singapore,8/15/2023 +Shutterfly,Minneapolis,246.0,8/10/2023,,Manufacturing,https://www.cbsnews.com/minnesota/news/shutterfly-closing-shakopee-plant/,Post-IPO,50,United States,8/11/2023 +SHINE Technologies,Milwaukee,59.0,8/10/2023,,Other,https://www.nbc15.com/2023/08/10/janesville-based-shine-announces-layoffs-days-after-announcing-nuclear-fusion-breakthrough/,Series C,672,United States,8/11/2023 +Hike,"New Delhi, Non-U.S.",55.0,8/10/2023,,Consumer,https://economictimes.indiatimes.com/tech/startups/hike-lays-off-around-55-people-after-gst-hike-on-online-gaming/articleshow/102608819.cms?from=mdr,Unknown,261,India,8/11/2023 +NCC Group,"Manchester, Non-U.S.",,8/10/2023,,Security,https://techcrunch.com/2023/08/10/ncc-group-layoffs/,Post-IPO,,United Kingdom,8/17/2023 +Blend,SF Bay Area,150.0,8/9/2023,0.19,Finance,http://archive.fast-edgar.com/20230809/A7L2K22CZ22282Z2222G22ZZMTBIQQB2A252/,Post-IPO,665,United States,8/11/2023 +Niantic,Los Angeles,100.0,8/9/2023,,Other,https://www.bizjournals.com/losangeles/news/2023/08/09/niantic-100-layoffs-los-angeles.html,Series D,770,United States,8/11/2023 +Babylon Health,"London, Non-U.S.",94.0,8/9/2023,,Healthcare,https://www.fiercehealthcare.com/digital-health/babylon-closes-us-business-lays-employees-after-mindmaze-take-private-deal-collapses,Post-IPO,1200,United Kingdom,8/11/2023 +Dealtale,"Tel Aviv, Non-U.S.",70.0,8/9/2023,1.0,Sales,https://www.calcalistech.com/ctechnews/article/rkn8dlz32,Acquired,2,Israel,8/11/2023 +Bukalapak,"Jakarta, Non-U.S.",,8/9/2023,,Retail,https://www.techinasia.com/bukalapak-conducts-new-round-of-layoffs,Post-IPO,925,Indonesia,8/9/2023 +Podium,Lehi,,8/9/2023,,Support,Internal memo,Series D,419,United States,8/11/2023 +Quizy,"Gurugram, Non-U.S.",,8/9/2023,1.0,Consumer,https://www.timesnownews.com/business-economy/companies/gst-hike-impact-gaming-startup-quizy-shuts-down-what-lies-ahead-for-online-gaming-companies-article-102571971,Seed,,India,8/9/2023 +StyleSeat,SF Bay Area,,8/9/2023,0.17,Consumer,https://docs.google.com/spreadsheets/d/1q4eOXAZiboWrj3goaBeOKfGOKP3ONsVQkXxDH1nXZw0/edit#gid=0,Series C,40,United States,10/2/2023 +Thoughtworks,Chicago,579.0,8/8/2023,0.05,Other,https://www.chicagobusiness.com/employment/thoughtworks-cut-hundreds-jobs,Post-IPO,748,United States,10/17/2023 +Rapid7,Boston,470.0,8/8/2023,0.18,Security,https://www.bizjournals.com/boston/news/2023/08/08/rapid7-layoffs-q2-earnings.html,Post-IPO,89,United States,8/8/2023 +MPL,"Bengaluru, Non-U.S.",350.0,8/8/2023,,Consumer,https://www.moneycontrol.com/europe/?url=https://www.moneycontrol.com/news/business/mpl-to-lay-off-350-employees-after-gst-councils-new-28-tax-proposal-11126951.html,Unknown,375,India,8/8/2023 +Doximity,SF Bay Area,100.0,8/8/2023,0.1,Healthcare,https://www.fiercehealthcare.com/health-tech/doximity-lays-10-workforce-stock-sinks-company-downgrades-revenue-guidance,Post-IPO,82,United States,8/9/2023 +23andMe,SF Bay Area,71.0,8/8/2023,0.11,Healthcare,https://www.streetinsider.com/Corporate+News/23andMe+Holding+%28ME%29+Announces+11%25+Workforce+Cut/22014370.html,Post-IPO,1100,United States,8/8/2023 +Caliva,SF Bay Area,54.0,8/8/2023,,Retail,https://www.bizjournals.com/sanfrancisco/news/2023/08/08/gold-flora-tpco-caliva-jay-z-cannabis-layoff-sj.html,Series B,75,United States,8/9/2023 +Sendy,"Nairobi, Non-U.S.",,8/8/2023,1.0,Logistics,https://techcrunch.com/2023/08/08/kenyan-logistics-startup-sendy-shuts-down-embarks-on-asset-sale/,Series B,26,Kenya,8/8/2023 +Dell,Austin,,8/7/2023,,Hardware,https://www.crn.com/news/channel-news/dell-confirms-sales-layoffs-as-part-of-new-partner-led-storage-strategy,Post-IPO,,United States,8/8/2023 +Verse,"Barcelona, Non-U.S.",,8/7/2023,1.0,Finance,https://www.finextra.com/newsarticle/42741/block-shuts-european-p2p-payments-brand-verse,Acquired,38,Spain,8/29/2023 +Qomplx,Washington D.C.,60.0,8/4/2023,,AI,https://www.bizjournals.com/washington/news/2023/08/04/tysons-qomplx-layoffs-spac.html,Series A,107,United States,8/5/2023 +CodeClan,"Edinburgh, Non-U.S.",57.0,8/4/2023,1.0,Education,https://www.edinburghnews.scotsman.com/news/people/codeclan-crowdfunder-launched-to-help-students-after-tech-training-academy-goes-into-administration-4245811,Seed,,United Kingdom,8/8/2023 +Top Hat,"Toronto, Non-U.S.",42.0,8/4/2023,0.07,Education,https://betakit.com/canadian-startup-struggles-continue-as-silofit-closes-up-shop-top-hat-and-fable-cut-staff/,Series E,234,Canada,8/5/2023 +Astra,SF Bay Area,,8/4/2023,0.25,Aerospace,https://techcrunch.com/2023/08/04/astra-lays-off-25-of-workforce-reallocates-engineers-in-an-effort-to-fight-dwindling-cash-reserves/,Post-IPO,300,United States,8/5/2023 +Big Cabal Media,"Lagos, Non-U.S.",,8/4/2023,0.19,Media,https://www.benjamindada.com/big-cabal-media-lays-off-workforce/,Seed,3,Nigeria,8/5/2023 +Discord,SF Bay Area,37.0,8/3/2023,0.04,Consumer,https://www.theinformation.com/briefings/discord-lays-off-4-of-workforce,Series H,995,United States,8/4/2023 +Bardee,"Melbourne, Non-U.S.",30.0,8/3/2023,,Food,https://www.businessnewsaustralia.com/articles/bardee-lets-go-staff-to-make-its-food-waste-revolution-profitable.html,Seed,5,Australia,8/3/2023 +Aware,Columbus,,8/3/2023,,Security,https://www.bizjournals.com/columbus/inno/stories/news/2023/08/03/columbus-startup-aware-job-cut-pivot.html,Series C,88,United States,8/6/2023 +Ayoconnect,"Jakarta, Non-U.S.",,8/3/2023,0.1,Finance,https://www.dealstreetasia.com/stories/ayoconnect-cuts-staff-356209,Series B,43,Indonesia,8/5/2023 +Finastra,"Tel Aviv, Non-U.S.",,8/3/2023,,Finance,https://www.calcalistech.com/ctechnews/article/uaxzby5po,Unknown,,Israel,8/4/2023 +Spinny,"Gurugram, Non-U.S.",300.0,8/2/2023,0.05,Transportation,https://www.moneycontrol.com/europe/?url=https://www.moneycontrol.com/news/business/tiger-global-backed-spinny-fires-300-employees-ahead-of-business-rejig-11085751.html,Series E,513,India,8/4/2023 +Tekion,"Bengaluru, Non-U.S.",300.0,8/2/2023,0.1,Other,https://inc42.com/buzz/exclusive-tekion-lays-off-around-200-indian-employees/,Series D,435,India,8/3/2023 +BetterUp,SF Bay Area,100.0,8/2/2023,0.16,HR,https://www.thedailybeast.com/prince-harrys-silicon-valley-gig-betterup-chops-16-of-staff-amid-tumult,Series E,567,United States,8/4/2023 +Augury,New York City,70.0,8/2/2023,0.18,Manufacturing,https://www.calcalistech.com/ctechnews/article/ryoxde00j3,Series E,274,United States,8/3/2023 +Gem,SF Bay Area,70.0,8/2/2023,,Recruiting,https://www.linkedin.com/feed/update/urn:li:activity:7092626063834443776/,Series C,148,United States,8/3/2023 +Gupy,"Sao Paulo, Non-U.S.",58.0,8/2/2023,0.08,HR,https://startups.com.br/noticias/gupy-reorganiza-a-casa-e-faz-demissoes-humanizadas/,Series B,105,Brazil,8/3/2023 +Salesforce,"Dublin, Non-U.S.",50.0,8/2/2023,,Sales,https://www.bloomberg.com/news/articles/2023-08-02/salesforce-cuts-more-jobs-after-10-reduction-earlier-this-year?in_source=embedded-checkout-banner#xj4y7vzkg,Post-IPO,65,Ireland,8/4/2023 +FamPay,"Bengaluru, Non-U.S.",18.0,8/2/2023,,Finance,https://www.moneycontrol.com/europe/?url=https://www.moneycontrol.com/news/business/announcements/peak-xv-backed-fampay-undertakes-layoffs-cuts-18-jobs-11083941.html,Series A,42,India,8/3/2023 +Actyv.ai,"Bengaluru, Non-U.S.",,8/2/2023,0.6,Finance,https://entrackr.com/2023/08/exclusive-saas-startup-actyv-ai-lays-off-more-than-60-employees/,Seed,12,India,8/3/2023 +ConnectedH,"Gurugram, Non-U.S.",,8/2/2023,1.0,Healthcare,https://inc42.com/buzz/kalaari-backed-connectedh-shuts-shop-to-return-capital-to-investors/,Seed,2,India,8/3/2023 +DICE,"London, Non-U.S.",,8/2/2023,,Consumer,https://tech.eu/2023/08/02/dice-layoffs/,Series C,135,United Kingdom,8/4/2023 +HackerOne,SF Bay Area,,8/2/2023,0.12,Security,https://www.hackerone.com/ceo/company-update,Series E,159,United States,8/2/2023 +Silofit,"Montreal, Non-U.S.",,8/2/2023,1.0,Fitness,https://betakit.com/canadian-startup-struggles-continue-as-silofit-closes-up-shop-top-hat-and-fable-cut-staff/,Series A,19,Canada,8/5/2023 +TripAdvisor,Boston,,8/2/2023,,Travel,https://ir.tripadvisor.com/static-files/d6752890-85a0-4764-a90e-f6213480c7e1,Post-IPO,3,United States,8/3/2023 +Vesttoo,"Tel Aviv, Non-U.S.",150.0,8/1/2023,0.75,Finance,https://www.calcalistech.com/ctechnews/article/ryuwahiih,Series C,110,Israel,8/3/2023 +Planet,SF Bay Area,117.0,8/1/2023,0.1,Aerospace,https://www.cnbc.com/2023/08/01/planet-pl-lays-off-about-10percent-company-restructures.html,Post-IPO,574,United States,8/1/2023 +Paper,"Montreal, Non-U.S.",106.0,8/1/2023,0.04,Education,https://paper.co/inside-paper/a-message-from-paper-founders,Series D,389,Canada,8/1/2023 +Archipelago,SF Bay Area,40.0,8/1/2023,0.3,Real Estate,https://www.theinsurer.com/news/ai-driven-property-risk-insurtech-archipelago-analytics-cuts-30-of-workforce/,Series B,57,United States,8/1/2023 +Increff,"Bengaluru, Non-U.S.",,8/1/2023,0.2,Retail,https://inc42.com/buzz/exclusive-premji-invest-backed-increff-lays-off-20-workforce/,Series B,17,India,8/2/2023 +Indigo,Boston,,8/1/2023,,Other,https://www.bizjournals.com/boston/inno/stories/news/2023/08/01/indigo-ag-makes-second-round-of-layoffs-in-2023.html,Series F,1200,United States,8/1/2023 +inDrive,SF Bay Area,,8/1/2023,0.1,Transportation,https://www.forbes.ru/biznes/493840-servis-indrive-resil-sokratit-10-svoih-rabotnikov,Unknown,387,United States,8/1/2023 +Outreach ,Seattle,,8/1/2023,0.05,Sales,https://www.geekwire.com/2023/seattle-sales-software-startup-outreach-lays-off-employees-again-as-it-aims-for-profitability/,Series G,489,United States,8/1/2023 +Qoala,"Jakarta, Non-U.S.",80.0,7/31/2023,,Finance,https://www.techinasia.com/id-insurtech-qoala-confirms-laying-80-employee,Series B,89,Indonesia,8/5/2023 +Fable,"Toronto, Non-U.S.",13.0,7/31/2023,0.09,Other,https://betakit.com/canadian-startup-struggles-continue-as-silofit-closes-up-shop-top-hat-and-fable-cut-staff/,Series A,12,Canada,8/5/2023 +Nexar,New York City,12.0,7/31/2023,,Transportation,https://www.calcalistech.com/ctechnews/article/rktq3gqc3,Series D,149,United States,9/4/2023 +Cambricon,"Beijing, Non-U.S.",,7/31/2023,,Hardware,https://www.digitimes.com/news/a20230731PD208/ai-cambricon-china.html,Series B,200,China,8/1/2023 +Kape Technologies,"London, Non-U.S.",200.0,7/30/2023,0.3,Security,https://techreport.com/news/cybersecurity-firm-kape-technologies-lay-off-around-200-employees/,Post-IPO,188,United Kingdom,7/30/2023 +Eroad,"Auckland, Non-U.S.",200.0,7/28/2023,0.31,Transportation,https://businessdesk.co.nz/article/markets/eroad-investors-grill-management-on-buyout-offer,Unknown,46,New Zealand,8/1/2023 +Kape,"London, Non-U.S.",180.0,7/28/2023,,Security,https://www.pcmag.com/news/tough-times-for-vpns-expressvpn-parent-company-lays-off-30-of-staff,Post-IPO,188,United Kingdom,8/5/2023 +Homology,Boston,,7/28/2023,,Healthcare,https://www.bizjournals.com/boston/news/2023/07/28/homology-layoffs-july-2023.html,Post-IPO,187,United States,7/29/2023 +Milkbasket,"Gurugram, Non-U.S.",400.0,7/27/2023,0.67,Food,https://entrackr.com/2023/07/reliance-pulls-plug-on-milkbasket-brand-mass-layoffs-to-follow/,Acquired,39,India,7/29/2023 +Wish,SF Bay Area,255.0,7/27/2023,0.34,Retail,https://ir.wish.com/node/10081/html,Post-IPO,1600,United States,8/1/2023 +Point,SF Bay Area,61.0,7/27/2023,0.28,Real Estate,https://www.bizjournals.com/sanfrancisco/inno/stories/news/2023/09/05/finance-startup-slashes-28-percent-of-us-staff.html,Series C,149,United States,9/7/2023 +Akseleran,"Jakarta, Non-U.S.",60.0,7/27/2023,,Finance,https://www.techinasia.com/indonesias-akseleran-lays-60-employees-delaying-ipo,Series A,9,Indonesia,7/29/2023 +Verbit,New York City,60.0,7/27/2023,0.06,Data,https://www.calcalistech.com/ctechnews/article/b1butaacn,Series E,569,United States,7/27/2023 +Datree,SF Bay Area,,7/27/2023,1.0,Other,https://www.linkedin.com/feed/update/urn:li:activity:7090315185344716800/,Seed,11,United States,7/30/2023 +Degreed,SF Bay Area,,7/27/2023,,Education,https://www.linkedin.com/posts/davidblake_ive-been-back-at-degreed-for-a-year-i-am-activity-7090395014110875648-9Dcn/,Unknown,463,United States,7/27/2023 +Copia,"Nairobi, Non-U.S.",350.0,7/26/2023,0.25,Retail,https://techcabal.com/2023/07/26/copia-lays-off-350-employees/,Series C,103,Kenya,7/26/2023 +Figure,SF Bay Area,90.0,7/26/2023,0.2,Crypto,https://www.bloomberg.com/news/articles/2023-07-28/mike-cagney-s-figure-lays-off-20-of-staff-amid-ipo-plans#xj4y7vzkg,Unknown,1500,United States,7/29/2023 +Calendly,Atlanta,60.0,7/26/2023,0.1,Other,https://www.theinformation.com/briefings/calendly-cuts-roughly-10-of-staff,Series B,351,United States,7/27/2023 +Myntra,"Bengaluru, Non-U.S.",50.0,7/26/2023,,Retail,https://economictimes.indiatimes.com/tech/technology/myntra-plans-makeover-in-private-label-strategy-layoffs-likely-to-hit-50-employees/articleshow/102114887.cms,Acquired,516,India,7/26/2023 +Kleos Space,"Luxembourg, Raleigh",,7/26/2023,1.0,Aerospace,https://spacenews.com/geospatial-intelligence-startup-kleos-space-files-for-bankruptcy/,Post-IPO,17,Luxembourg,7/27/2023 +Ripl,Seattle,,7/26/2023,,Marketing,https://www.linkedin.com/posts/careydijulio_opentowork-talent-activity-7092986397040541696-YvWs/,Unknown,9,United States,4/10/2024 +Deep Instict,New York City,46.0,7/25/2023,0.15,Security,https://www.calcalistech.com/ctechnews/article/sj5p0va9n,Unknown,322,United States,7/26/2023 +Pluralsight,Salt Lake City,,7/25/2023,,Education,https://www.sltrib.com/news/business/2023/07/25/its-third-round-layoffs-utah-tech/,Acquired,192,United States,7/26/2023 +AppHarvest,Lexington,,7/24/2023,1.0,Food,https://marketrealist.com/why-did-this-farming-startup-app-harvest-declare-bankruptcy/,Post-IPO,692,United States,7/27/2023 +Arive,"Munich, Non-U.S.",,7/24/2023,,Retail,https://www.businessinsider.de/gruenderszene/business/lieferdienst-arive-betrieb-gestoppt-geldnot/,Unknown,37,Germany,7/26/2023 +Onfido,"London, Non-U.S.",,7/24/2023,,Finance,https://sifted.eu/articles/onfido-ceo-mike-tuchen-layoffs,Series D,182,United Kingdom,7/26/2023 +PathAI,Boston,87.0,7/21/2023,,Healthcare,https://www.bizjournals.com/boston/inno/stories/news/2023/07/21/pathai-layoffs-healthtech-company.html,Series C,255,United States,7/11/2023 +Bundle Africa,"Lagos, Non-U.S.",,7/21/2023,1.0,Crypto,https://technext24.com/2023/07/21/bundle-africa-ceases-operations/,Seed,1,Nigeria,7/22/2023 +Viaplay,"Stockholm, Non-U.S.",450.0,7/20/2023,0.25,Media,https://deadline.com/2023/07/viaplay-layoffs-strategic-review-pulls-out-of-uk-mulls-a-sale-1235442717/,Unknown,,Sweden,7/11/2023 +Stoa,Phoenix,80.0,7/20/2023,0.8,Real Estate,https://www.calcalistech.com/ctechnews/article/sjl3blvcn,Unknown,,United States,7/22/2023 +Dunzo,"Bengaluru, Non-U.S.",,7/20/2023,,Food,https://www.peoplematters.in/news/strategic-hr/dunzos-third-round-of-layoffs-announced-salary-deadline-missed-dues-pushed-to-september-38490,Unknown,382,India,7/20/2023 +MiQ,"London, Non-U.S.",,7/20/2023,,Marketing,https://www.businessinsider.com/adtech-layoffs-continued-into-summer-2023-7,Private Equity,,United Kingdom,7/21/2023 +Phunware,Austin,,7/20/2023,,Other,https://seekingalpha.com/news/3989259-software-developer-phunware-to-lay-off-one-third-of-its-workforce,Post-IPO,87,United States,7/22/2023 +Saarthi.ai,"Bengaluru, Non-U.S.",,7/20/2023,,Support,https://economictimes.indiatimes.com/tech/startups/saarthi-ai-fires-employees-in-batches-withholds-salaries-cites-investor-pressure-to-become-profitable/articleshow/101990247.cms,Unknown,,India,7/22/2023 +AgentSync,Denver,67.0,7/19/2023,0.24,Finance,Internal memo,Series B,111,United States,7/26/2023 +Inspirato,Denver,50.0,7/19/2023,0.06,Travel,https://skift.com/2023/07/20/inspirato-lays-off-6-of-workforce-second-round-of-cuts-this-year/,Post-IPO,179,United States,7/20/2023 +Tilia,SF Bay Area,28.0,7/19/2023,0.32,Finance,Internal memo,Unknown,32,United States,8/14/2023 +Blue Apron,New York City,,7/19/2023,0.2,Food,https://seekingalpha.com/news/3999870-blue-apron-discloses-that-it-cut-20-of-its-corporate-workforce-in-july,Post-IPO,422,United States,8/9/2023 +Microsoft,Seattle,1000.0,7/18/2023,,Other,https://www.businessinsider.com/microsoft-layoffs-more-than-1000-jobs-sales-customer-service-2023-7?IR=T,Post-IPO,1,United States,7/10/2023 +Cameo,Chicago,80.0,7/18/2023,,Consumer,https://www.theinformation.com/articles/cameo-cuts-staff-to-fewer-than-50-after-financial-stumble,Unknown,165,United States,7/18/2023 +Square Roots,New York City,,7/18/2023,,Food,https://www.businessinsider.com/kimbal-musk-startup-square-roots-layoffs-farm-closures-2023-7,Unknown,91,United States,7/22/2023 +Sarcos,Salt Lake City,75.0,7/17/2023,0.25,Aerospace,https://www.therobotreport.com/sarcos-plans-to-layoff-around-75-workers-as-part-of-optimization-plan/,Post-IPO,316,United States,7/19/2023 +Code42,Minneapolis,,7/17/2023,,Security,https://blocksandfiles.com/2023/07/17/data-loss-preventer-code42-loses-staff/,Unknown,137,United States,7/17/2023 +Ezoic,San Diego,,7/17/2023,0.28,Infrastructure,https://www.ezoic.com/ceo-dwayne-letter-to-employees/,Series A,39,United States,7/19/2023 +IBM,"Tel Aviv, Non-U.S.",,7/17/2023,,Hardware,https://www.calcalistech.com/ctechnews/article/ryacsbqqh,Post-IPO,,Israel,7/19/2023 +Lamudi Indonesia,"Jakarta, Non-U.S.",,7/17/2023,,Real Estate,https://www.dealstreetasia.com/stories/lamudi-indonesia-layoffs-353347,Acquired,56,Indonesia,7/23/2023 +Binance,Cayman Islands,1000.0,7/14/2023,,Crypto,https://www.wsj.com/articles/binance-lays-off-over-1-000-employees-d59ff6ad,Unknown,,Cayman Islands,7/14/2023 +PayScale,Seattle,14.0,7/14/2023,0.02,HR,https://www.bizjournals.com/seattle/news/2023/07/14/payscale-layoffs-seattle-office.html,Acquired,33,United States,7/15/2023 +Navi Technologies,"Bengaluru, Non-U.S.",200.0,7/13/2023,,Finance,https://economictimes.indiatimes.com/tech/startups/sachin-bansals-navi-technologies-lays-off-around-200-employees/articleshow/101713488.cms,Unknown,659,India,7/13/2023 +Skill Lync,"Chennai, Non-U.S.",200.0,7/13/2023,,Education,https://entrackr.com/2023/07/edtech-company-skill-lync-fires-over-200-employees/,Series A,17,India,7/13/2023 +Amazon,Seattle,80.0,7/13/2023,,Retail,https://news.yahoo.com/amazon-lays-off-80-workers-230451163.html?guccounter=1,Post-IPO,108,United States,7/14/2023 +AudioCodes,"Tel Aviv, Non-U.S.",80.0,7/13/2023,0.06,Other,https://www.calcalistech.com/ctechnews/article/bkrcqqaf3,Post-IPO,91,Israel,7/17/2023 +Tempo Automation,SF Bay Area,62.0,7/13/2023,,Other,https://investors.tempoautomation.com/static-files/f021231f-65a6-4ae2-8680-3bc48a51a028,Post-IPO,154,United States,7/17/2023 +Uber Freight,SF Bay Area,40.0,7/13/2023,,Logistics,https://www.freightwaves.com/news/uber-freight-lays-off-as-many-as-50-brokerage-employees,Subsidiary,2700,United States,7/14/2023 +Deepwatch,Tampa Bay,30.0,7/13/2023,0.07,Security,https://www.deepwatch.com/blog/a-message-from-deepwatchs-ceo/,Series C,256,United States,7/14/2023 +Centr,"Sydney, Non-U.S.",22.0,7/13/2023,,Fitness,https://www.news.com.au/finance/business/chris-hemsworths-fitness-app-centr-reportedly-sacks-australian-staff/news-story/8e6dacc01c9d4b4569401e997e303ca6,Unknown,,Australia,7/13/2023 +Factorial,"Barcelona, Non-U.S.",20.0,7/13/2023,,HR,https://www.businessinsider.es/factorial-despide-veintena-trabajadores-1274860,Series C,220,Spain,7/17/2023 +Peloton,New York City,11.0,7/13/2023,,Fitness,https://dol.ny.gov/system/files/documents/2023/07/warn-peloton-interactive-nyc-2023-0006-7-14-2023.pdf,Post-IPO,1900,United States,7/17/2023 +Bark,New York City,,7/13/2023,0.08,Retail,https://seekingalpha.com/news/3987629-bark-cuts-8-of-workforce-as-part-of-cost-reduction-initiative,Post-IPO,282,United States,7/26/2023 +Khoros,Austin,,7/13/2023,0.05,Sales,Internal memo,Private Equity,138,United States,7/19/2023 +Netlify,SF Bay Area,,7/13/2023,,Other,https://www.netlify.com/blog/ceo-announcement-to-the-netlify-team/,Series D,212,United States,7/14/2023 +SAS,Raleigh,,7/13/2023,,Data,https://www.newsobserver.com/news/business/article277322113.html,Unknown,,United States,7/15/2023 +Stitch Fix,Philadelphia,400.0,7/12/2023,,Retail,https://www.inquirer.com/jobs/labor/stitch-fix-layoffs-closure-bethlehem-lehigh-valley-warehouse-20230712.html,Post-IPO,79,United States,7/14/2023 +Dapper Labs,Vancouver,51.0,7/12/2023,,Crypto,https://twitter.com/roham/status/1679301700669296640,Unknown,,Canada,7/13/2023 +DeepVerge,"Dublin, Non-U.S.",50.0,7/12/2023,1.0,Healthcare,https://www.standard.co.uk/business/life-science-ai-firm-deepverge-lays-off-staff-tech-collapse-jobs-redundancy-skin-water-technology-b1093932.html,Post-IPO,20,Ireland,7/13/2023 +Freightos,Miami,50.0,7/12/2023,0.13,Logistics,https://sourcingjournal.com/topics/logistics/freightos-layoffs-13-percent-persistently-weak-freight-market-job-cuts-costs-445086/,Post-IPO,118,United States,7/13/2023 +Circle,Boston,,7/12/2023,,Crypto,https://www.axios.com/2023/07/12/circle-stablecoin-layoffs,Private Equity,1100,United States,7/13/2023 +CyberGRX,Denver,,7/12/2023,,Security,https://www.bizjournals.com/denver/news/2023/07/12/cybergrx-acquired-by-processunity-layoffs.html,Acquired,99,United States,7/13/2023 +Duck Creek Technologies,Boston,,7/12/2023,0.09,Finance,https://iireporter.com/duck-creek-reduces-workforce-by-nine-percent/,Acquired,357,United States,8/11/2023 +Expedia,Seattle,,7/12/2023,,Travel,https://www.phocuswire.com/expedia-group-lays-of-staff-us-and-abroad,Post-IPO,3300,United States,7/17/2023 +WayCool,"Chennai, Non-U.S.",300.0,7/11/2023,0.12,Food,https://timesofindia.indiatimes.com/business/india-business/with-focus-on-profitability-agritech-waycool-to-lay-off-300/articleshow/101652858.cms,Unknown,363,India,7/13/2023 +Matterport,SF Bay Area,170.0,7/11/2023,0.3,Data,https://investors.matterport.com/static-files/9d9ec717-3e67-410b-92cb-8cb27218fbe4,Post-IPO,409,United States,7/11/2023 +Everquote,Evansville,100.0,7/11/2023,,Finance,https://www.insurancejournal.com/news/national/2023/07/11/729444.htm,Post-IPO,53,United States,7/13/2023 +Sisense,New York City,100.0,7/11/2023,0.15,Data,https://www.calcalistech.com/ctechnews/article/hyqikock2,Series F,274,United States,7/11/2023 +Built Technologies,Nashville,,7/11/2023,,Construction,https://www.nashvillepost.com/business/technology/built-makes-second-round-of-layoffs-this-year/article_7e899552-2000-11ee-8965-47697ce53ccd.html,Unknown,313,United States,7/13/2023 +Butterfly Network copy,Boston,,7/11/2023,0.25,Healthcare,https://www.marketscreener.com/quote/stock/BUTTERFLY-NETWORK-INC-119073390/news/Butterfly-Network-Costs-Associated-with-Exit-Disposal-Form-8-K-44342052/,Post-IPO,530,United States,7/17/2023 +Dukaan,"Bengaluru, Non-U.S.",,7/11/2023,,Retail,https://timesofindia.indiatimes.com/gadgets-news/dukaan-cuts-90-customer-service-jobs-how-founder-suumit-shah-defended-layoffs-on-twitter/articleshow/101670439.cms,Series A,17,India,7/11/2023 +Jasper,"Montreal, Non-U.S.",,7/11/2023,,AI,https://www.linkedin.com/feed/update/urn:li:activity:7084564488154177536/,Series A,131,Canada,7/14/2023 +Shift,SF Bay Area,,7/11/2023,0.34,Transportation,https://seekingalpha.com/news/3986897-shift-to-terminate-34-of-workforce-end-investment-into-dealer-marketplace-business,Post-IPO,504,United States,7/13/2023 +Rad Power Bikes,Seattle,40.0,7/10/2023,,Transportation,https://www.theverge.com/2023/7/10/23785871/rad-power-bikes-uk-europe-shut-down-ebike,Series D,329,United States,8/1/2024 +FrontRow,"Bengaluru, Non-U.S.",,7/10/2023,1.0,Education,Read more at:,Series A,17,India,7/11/2023 +IntelyCare,Boston,,7/10/2023,,Healthcare,https://www.bizjournals.com/boston/inno/stories/news/2023/07/10/intelycare-reorganization-layoffs.html,Series C,171,United States,7/11/2023 +Latch,New York City,,7/10/2023,0.59,Security,https://www.marketscreener.com/quote/stock/LATCH-INC-117136898/news/Latch-Drives-Additional-Discipline-and-Efficiency-Setting-the-Stage-For-Accelerated-Future-Growth-44303832/,Post-IPO,342,United States,7/11/2023 +Motive,SF Bay Area,,7/10/2023,0.05,Transportation,Internal memo,Series F,567,United States,7/13/2023 +Medsaf,"Lagos, Non-U.S.",30.0,7/7/2023,1.0,Healthcare,https://techcabal.com/2023/07/07/medsaf-laid-off-full-time-employees/,Unknown,,Nigeria,7/15/2023 +Evernote,SF Bay Area,,7/7/2023,,Consumer,https://www.sfgate.com/tech/article/evernote-layoffs-moving-to-europe-18190083.php,Acquired,290,United States,7/8/2023 +PaulCamper,"Berlin, Non-U.S.",,7/7/2023,,Travel,https://docs.google.com/spreadsheets/d/1fj_4FdZsMfdH3hggkiZTY1moY7rTRhzfaEfkJmMBxyk/edit#gid=0,Acquired,12,Germany,8/4/2023 +Trellix,SF Bay Area,,7/7/2023,,Security,,Unknown,35,United States,7/11/2023 +Amdocs,St. Louis,2000.0,7/6/2023,0.06,Support,https://www.calcalistech.com/ctechnews/article/sjfzud4f3,Post-IPO,,United States,1/6/2023 +FNZ,"London, Non-U.S.",1000.0,7/6/2023,0.15,Finance,https://citywire.com/new-model-adviser/news/exclusive-fnz-to-make-1000-redundancies-globally/a2421080,Private Equity,1400,United Kingdom,7/7/2023 +Perfect Day,SF Bay Area,134.0,7/6/2023,0.15,Food,https://www.nosh.com/news/2023/perfect-day-lays-off-15-of-workforce-shutters-consumer-biz-coolhaus/,Series D,711,United States,7/13/2023 +Solidigm,Sacramento,98.0,7/6/2023,,Hardware,https://www.bizjournals.com/sacramento/inno/stories/news/2023/07/06/solidigm-layoffs-rancho-cordova-headquarters.html,Unknown,,United States,7/13/2023 +TytoCare,New York City,20.0,7/6/2023,0.1,Healthcare,https://www.calcalistech.com/ctechnews/article/byu1xnefn,Series D,156,United States,7/7/2023 +Circles.Life,"Singapore, Non-U.S.",,7/6/2023,,Marketing,https://www.campaignasia.com/article/circles-life-faces-more-layoffs-amid-allegations-of-toxic-workplace-culture-int/485236,Unknown,50,Singapore,7/7/2023 +ConnectRN,Boston,,7/6/2023,,Healthcare,https://www.bizjournals.com/boston/inno/stories/news/2023/07/06/connectrn-layoffs-tech-nursing.html,Unknown,160,United States,7/6/2023 +Crunchbase,SF Bay Area,,7/6/2023,,Sales,https://www.linkedin.com/posts/jager_crunchbase-affected-employees-activity-7083189330520784896-EAZT/,Series D,106,United States,7/8/2023 +DayTwo,SF Bay Area,,7/6/2023,,Healthcare,https://www.calcalistech.com/ctechnews/article/sy2rgx4yh,Series B,90,United States,7/7/2023 +Athennian,"Calgary, Non-U.S.",30.0,7/5/2023,,Legal,https://betakit.com/legaltech-scaleup-athennian-navigates-growing-pains-with-layoffs-leadership-changes/,Series B,47,Canada,8/17/2023 +Vista Group,"Auckland, Non-U.S.",,7/5/2023,0.06,Data,https://www.nzherald.co.nz/business/vista-group-the-latest-kiwi-tech-to-lay-off-staff/XEXAP52NNZCR3GO7EJKWUDSAHY/,Post-IPO,,New Zealand,7/6/2023 +Highsnobiety,"Berlin, Non-U.S.",24.0,7/3/2023,0.1,Media,https://www.businessoffashion.com/articles/news-analysis/highsnobiety-lays-off-10-percent-of-its-staff/,Acquired,8,Germany,7/5/2023 +Zip,"Sydney, Non-U.S.",300.0,7/2/2023,0.2,Finance,https://www.theaustralian.com.au/business/dataroom/zip-co-sacks-staff-as-buy-now-pay-later-sector-struggles/news-story/6ab956577a322e3f12e4146444e1cb64?amp&nk=842499914bf8dcecd67ffaacf7550303-1688513490,Post-IPO,896,Australia,7/5/2023 +Buzzer,New York City,,6/30/2023,1.0,Consumer,https://frontofficesports.com/buzzer-the-gen-z-sports-app-backed-by-44-million-shuts-down/,Series A,24,United States,7/1/2023 +Lunya,Los Angeles,,6/30/2023,1.0,Retail,https://www.modernretail.co/operations/dtc-sleepwear-startup-lunya-has-filed-for-chapter-11-bankruptcy/,Unknown,,United States,7/1/2023 +MediaMath,New York City,,6/30/2023,1.0,Marketing,https://www.adexchanger.com/online-advertising/mediamath-files-for-bankruptcy-after-acquisition-talks-fall-apart/,Private Equity,607,United States,7/1/2023 +Petal,New York City,,6/30/2023,0.2,Finance,https://finance.yahoo.com/news/exclusive-petal-card-fintech-backed-130000347.html,Series D,704,United States,12/4/2023 +Niantic,SF Bay Area,230.0,6/29/2023,,Other,https://www.cnbc.com/2023/06/29/pokemon-go-maker-niantic-lays-off-230-employees-cancels-games-.html,Series D,770,United States,6/29/2023 +Headspace,Los Angeles,181.0,6/29/2023,0.15,Healthcare,https://www.latimes.com/business/story/2023-06-29/headspace-meditation-app-lays-off-15-of-employees,Unknown,216,United States,6/30/2023 +Artsy,New York City,35.0,6/29/2023,0.15,Retail,https://www.artnews.com/art-news/news/artsy-lays-off-35-employees-across-divisions-1234672920/,Series D,100,United States,6/30/2023 +Candy Digital,New York City,30.0,6/29/2023,,Crypto,https://decrypt.co/146734/candy-digital-confirms-layoffs-reveals-merger-palm-nft-studio,Series A,138,United States,6/30/2023 +Xiaomi India,"Bengaluru, Non-U.S.",30.0,6/29/2023,,Other,https://economictimes.indiatimes.com/industry/cons-products/electronics/xiaomi-india-to-rejig-operations-bring-headcount-to-below-1000/articleshow/101347837.cms?from=mdr,Subsidiary,,India,6/30/2023 +Torii,"Ra'anana, Non-U.S.",28.0,6/29/2023,0.3,Other,https://www.calcalistech.com/ctechnews/article/hjqdc1i00h,Series B,65,Israel,7/1/2023 +Insider Intelligence,New York City,20.0,6/29/2023,,Media,https://www.theinformation.com/briefings/insider-intelligence-to-lay-off-20-outsource-to-philippines,Subsidiary,,United States,6/30/2023 +Merama,"Mexico City, Non-U.S.",,6/29/2023,0.1,Retail,https://www.reuters.com/technology/latam-unicorn-merama-cuts-nearly-10-staff-amid-strategy-refocus-2023-06-29/,Series B,445,Mexico,7/1/2023 +Qyuki,"Bengaluru, Non-U.S.",,6/29/2023,0.3,Other,https://www.exchange4media.com/announcements-news/vc-backed-start-up-qyuki-downsizes-shuts-some-offices-128299.html,Seed,19,India,7/5/2023 +Stripe,SF Bay Area,,6/29/2023,,Finance,https://www.theinformation.com/articles/stripe-lays-off-dozens-mostly-in-recruiting,Series I,8700,United States,6/30/2023 +Vowel,New York City,,6/29/2023,1.0,Other,https://twitter.com/berman66/status/1674552743858511873?s=46&t=gjICOYvLX7vrlS7ffAtQoA,Series A,18,United States,6/30/2023 +ClickUp,San Diego,90.0,6/28/2023,0.1,Other,https://techcrunch.com/2023/07/04/clickup-layoffs/,Series C,537,United States,7/4/2023 +Ludia,"Montreal, Non-U.S.",55.0,6/28/2023,,Consumer,https://mobilegamer.biz/up-to-55-staff-laid-off-at-jurassic-world-alive-maker-ludia/,Acquired,1,,6/30/2023 +Karat,Seattle,47.0,6/28/2023,,HR,https://www.geekwire.com/2023/technical-recruiting-startup-karat-lays-off-47-employees-for-the-second-time-this-year/,Unknown,169,United States,6/30/2023 +Plex,SF Bay Area,37.0,6/28/2023,0.2,Media,https://www.theverge.com/2023/6/28/23777418/plex-layoffs-20-percent-staff,Unknown,81,United States,6/28/2023 +Starburst,Boston,,6/28/2023,0.15,Data,Internal memo,Series D,414,United States,7/13/2023 +Zapier,SF Bay Area,,6/28/2023,0.1,Other,https://zapier.com/blog/changes-at-zapier/,Seed,1,United States,6/28/2023 +Selina,"London, Non-U.S.",350.0,6/27/2023,,Travel,https://www.calcalistech.com/ctechnews/article/hjprald00n,Post-IPO,612,United Kingdom,7/7/2023 +New Relic,SF Bay Area,255.0,6/27/2023,0.1,Infrastructure,https://www.oregonlive.com/silicon-forest/2023/06/new-relic-will-lay-off-another-255-in-latest-restructuring.html,Post-IPO,214,United States,6/27/2023 +Tibber,"Førde, Non-U.S.",50.0,6/27/2023,,Energy,https://www.shifter.no/nyheter/inntil-50-ma-ga-i-tibber/281838,Series C,181,Norway,6/27/2023 +ClearPay,"Manchester, Non-U.S.",,6/27/2023,,Finance,https://www.cityam.com/clearpay-jobs-at-risk-as-bnpl-firm-winds-down-eu-business/,Acquired,85,United Kingdom,7/6/2023 +Eyowo,"Lagos, Non-U.S.",,6/27/2023,1.0,Finance,https://technext24.com/2023/06/26/eyowo-to-shutdown-operations-tomorrow/,Unknown,,Nigeria,6/26/2023 +Honor,SF Bay Area,,6/27/2023,0.15,Healthcare,https://homehealthcarenews.com/2023/06/honor-lays-off-15-of-hq-staff-including-long-time-home-instead-employees/,Unknown,625,United States,1/31/2024 +Loopio,"Toronto, Non-U.S.",,6/27/2023,0.09,Sales,https://www.linkedin.com/feed/update/urn:li:activity:7079578026635636737/,Private Equity,263,Canada,6/28/2023 +Lordstown Motors,Detroit,,6/27/2023,1.0,Transportation,https://www.cnn.com/2023/06/27/business/lordstown-motors-bankruptcy-foxconn-lawsuit-intl-hnk/index.html,Post-IPO,1100,United States,6/30/2023 +Waze,SF Bay Area,,6/27/2023,,Transportation,https://www.cnbc.com/2023/06/27/google-cuts-jobs-at-waze-as-it-continues-to-merge-mapping-products.html,Acquired,67,United States,6/28/2023 +Payoneer,New York City,200.0,6/26/2023,0.1,Finance,https://www.calcalistech.com/ctechnews/article/sjctoolon,Post-IPO,,United States,6/27/2023 +Robinhood,SF Bay Area,150.0,6/26/2023,0.07,Finance,https://www.wsj.com/articles/robinhood-lays-off-about-7-of-its-full-time-employees-2111cb48,Post-IPO,5600,United States,6/26/2023 +Convoy,Seattle,30.0,6/26/2023,0.05,Logistics,https://www.geekwire.com/2023/trucking-marketplace-convoy-makes-more-layoffs-citing-customer-service-efficiency-gains/,Series E,1100,United States,6/27/2023 +Joonko,New York City,,6/25/2023,1.0,Recruiting,https://www.calcalistech.com/ctechnews/article/skf0iabdh,Series B,38,United States,6/27/2023 +IRL,SF Bay Area,,6/23/2023,1.0,Consumer,https://www.theinformation.com/articles/social-app-irl-which-raised-200-million-shuts-down-after-ceo-misconduct-probe,Series C,197,United States,6/25/2023 +Retool,SF Bay Area,,6/22/2023,0.09,Other,Internal memo,Series C,141,United States,6/22/2023 +Anaplan,SF Bay Area,300.0,6/21/2023,,Other,https://nypost.com/2023/06/23/software-giant-anaplan-begins-layoffs-after-thoma-bravos-10-4b-buyout-deal/,Acquired,300,United States,6/24/2023 +Uber,SF Bay Area,200.0,6/21/2023,,Transportation,https://www.nasdaq.com/articles/uber-to-lay-off-200-employees-in-recruitment-division,Post-IPO,25200,United States,6/22/2023 +Tackle.io,Boise,75.0,6/21/2023,,Infrastructure,https://tackle.io/blog/tackle-company-update/,Series C,148,United States,6/23/2023 +Ritual,"Toronto, Non-U.S.",38.0,6/21/2023,0.4,Food,https://www.theglobeandmail.com/business/article-food-ordering-service-ritual-lays-off-nearly-half-of-employees/,Series C,134,Canada,6/24/2023 +Friday Health Plans,Alamosa,,6/21/2023,,Healthcare,https://www.bizjournals.com/denver/news/2023/06/21/friday-health-plans-layoffs-colorado-insurance.html,Private Equity,306,United States,6/22/2023 +Illumina,San Diego,,6/21/2023,,Healthcare,https://www.sec.gov/Archives/edgar/data/1110803/000111080323000048/ilmn-20230621.htm,Post-IPO,28,United States,6/27/2023 +Mutiny,SF Bay Area,,6/21/2023,0.3,Marketing,https://www.theinformation.com/briefings/jasper-mutiny-ai-startups-cut-workers-as-chatbot-rivalry-grows,Series B,69,United States,7/14/2023 +Grab,"Singapore, Non-U.S.",1000.0,6/20/2023,0.11,Transportation,https://www.reuters.com/technology/singapores-grab-informs-staff-1000-layoffs-2023-06-20/,Post-IPO,16500,Singapore,6/20/2023 +OLX Group,"Amsterdam, Non-U.S.",800.0,6/20/2023,,Marketing,https://techcrunch.com/2023/06/20/olx-group-layoffs/,Acquired,,Netherlands,6/20/2023 +AvantStay,Los Angeles,37.0,6/20/2023,,Travel,https://skift.com/2023/06/20/property-manager-avantstay-lays-off-10-of-staff-third-round-of-job-cuts-in-a-year/,Private Equity,686,United States,12/22/2023 +Karakuki,"London, Non-U.S.",,6/20/2023,1.0,Food,https://www.therobotreport.com/food-robotics-startup-karakuri-shutting-down/,Unknown,13,United Kingdom,6/22/2023 +Chingari,"Bengaluru, Non-U.S.",48.0,6/19/2023,0.2,Media,https://inc42.com/buzz/exclusive-weeks-after-cofounders-exit-short-video-app-chingari-lays-off-20-workforce/,Unknown,88,India,6/20/2023 +Panther,Tampa Bay,,6/19/2023,1.0,HR,https://mattredler.substack.com/p/an-important-panther-update-and-our?sd=pf,Seed,2,United States,6/20/2023 +Fuzzy,SF Bay Area,,6/18/2023,1.0,Healthcare,https://www.coverager.com/san-francisco-startup-fuzzy-shuts-down-after-raising-80-million/,Series C,80,United States,6/18/2023 +Mojocare,"Bengaluru, Non-U.S.",170.0,6/17/2023,0.8,Healthcare,https://entrackr.com/2023/06/exclusive-mojocare-lays-off-around-170-employees-within-a-year-of-fundraise/,Series A,24,India,6/17/2023 +Nikola,Phoenix,270.0,6/16/2023,,Transportation,https://www.reuters.com/business/autos-transportation/electric-truck-maker-nikola-laying-off-270-employees-2023-06-16/,Post-IPO,3300,United States,6/17/2023 +Qualcomm,SF Bay Area,84.0,6/16/2023,,Hardware,https://www.bizjournals.com/sanjose/news/2023/06/16/qualcomm-laying-off-dozens-in-santa-clara.html,Post-IPO,,United States,7/19/2023 +Pilot,SF Bay Area,45.0,6/16/2023,0.13,Finance,Internal memo,Unknown,116,United States,7/1/2023 +Karshare,"London, Non-U.S.",,6/16/2023,1.0,Transportation,https://karshare.com/,Seed,4,United Kingdom,6/17/2023 +Zulily,Seattle,,6/16/2023,,Retail,https://www.geekwire.com/2023/more-layoffs-at-zulily-e-commerce-company-trims-headcount-after-private-equity-acquisition/,Acquired,194,United States,6/17/2023 +CareRev,Los Angeles,100.0,6/15/2023,0.33,Healthcare,https://www.theinformation.com/articles/carerev-plans-to-cut-roughly-a-third-of-staff,Series A,51,United States,6/16/2023 +TADA,"Seoul, Non-U.S.",45.0,6/15/2023,0.6,Transportation,https://techcrunch.com/2023/06/15/socars-ride-hailing-platform-tada-adds-to-growing-list-of-tech-layoffs/,Subsidiary,,South Korea,6/17/2023 +Binance.US,SF Bay Area,,6/15/2023,,Crypto,https://www.reuters.com/technology/crypto-giant-binances-us-affiliate-fires-staff-after-sec-charges-sources-2023-06-15/,Subsidiary,,United States,6/16/2023 +Cerner,Kansas City,,6/15/2023,,Healthcare,https://www.businessinsider.com/oracle-conducts-layoffs-cerner-health-unit-2023-6,Acquired,,United States,6/19/2023 +FrontRow,"Bengaluru, Non-U.S.",,6/15/2023,0.9,Education,https://inc42.com/buzz/lightspeed-backed-edtech-frontrow-acquisition-laying-off-90-employees/,Series A,17,India,6/16/2023 +Bitwise,SF Bay Area,900.0,6/14/2023,1.0,Crypto,https://www.bakersfield.com/news/bitwise-lays-off-entire-staff/article_57c2a40c-0b12-11ee-84ca-f7e6d77ee2e9.html,Series B,84,United States,6/16/2023 +Sonos,New York City,130.0,6/14/2023,0.07,Consumer,https://www.cnbc.com/2023/06/14/sonos-layoffs-company-cuts-7percent-or-about-130-employees.html,Post-IPO,455.2,United States,6/14/2023 +TrueCar,Los Angeles,102.0,6/14/2023,0.24,Transportation,https://techcrunch.com/2023/06/14/truecar-lays-off-102-employees-taps-new-ceo-amid-restructure/,Post-IPO,340,United States,6/15/2023 +Olo,New York City,81.0,6/14/2023,0.11,Food,https://www.restaurantbusinessonline.com/technology/olo-lays-81-people-part-reorganization,Post-IPO,184,United States,6/14/2023 +Mamaearth,"Gurugram, Non-U.S.",80.0,6/14/2023,,Retail,https://inc42.com/buzz/exclusive-ipo-bound-mamaearth-to-shut-momspressos-mymoney-brand-marketing-vertical/,Unknown,111,India,6/14/2023 +Synapse,SF Bay Area,,6/14/2023,0.18,Finance,https://medium.com/@sankaet/a-hard-decision-to-position-us-for-the-future-7f8a38f0fa69,Series B,50,United States,6/15/2023 +Western Digital,SF Bay Area,211.0,6/13/2023,,Hardware,https://www.bizjournals.com/sanjose/news/2023/06/13/western-digital-to-cut-more-silicon-valley-workers.html,Post-IPO,900,United States,10/20/2023 +JupiterOne,Raleigh,8.0,6/13/2023,,Security,https://www.bizjournals.com/triangle/news/2023/06/13/pendo-layoffs-raleigh-jupiterone-tech-job-cuts.html,Series C,119,United States,6/14/2023 +Zalando,"Berlin, Non-U.S.",,6/13/2023,,Retail,https://www.textilwirtschaft.de/business/news/abfindungsprogramm-zalando-neue-details-zum-stellenabbau-240656?crefresh=1,Post-IPO,468,Germany,7/5/2023 +Grubhub,SF Bay Area,400.0,6/12/2023,0.15,Food,https://www.cnbc.com/2023/06/12/grubhub-layoffs-400-employees-or-15percent-of-corporate-workforce.html,Acquired,284,United States,6/12/2023 +GoCardless,"London, Non-U.S.",150.0,6/12/2023,0.17,Finance,https://sifted.eu/articles/gocardless-lays-off-15-of-staff-news,Series G,529,United Kingdom,6/12/2023 +Pendo,Raleigh,100.0,6/12/2023,0.12,Product,https://www.bizjournals.com/triangle/news/2023/06/13/pendo-layoffs-raleigh-jupiterone-tech-job-cuts.html,Series F,469,United States,6/12/2023 +Chegg,SF Bay Area,80.0,6/12/2023,0.04,Education,https://www.bloomberg.com/news/articles/2023-06-12/chegg-slashes-4-of-workforce-following-shift-to-embrace-ai#xj4y7vzkg,Post-IPO,227,United States,6/14/2023 +dot.LA,Los Angeles,,6/12/2023,1.0,Media,https://www.lastartups.com/dot-la-hits-delete-lays-off-entire-staff-amidst-shift-to-newsletter-only/,Seed,4,United States,6/14/2023 +TaxBit,SF Bay Area,80.0,6/11/2023,0.4,Crypto,https://www.theinformation.com/briefings/crypto-tax-software-startup-cuts-nearly-40-of-staff,Unknown,253,United States,6/12/2023 +Tiki,"Singapore, Non-U.S.",,6/11/2023,1.0,Consumer,https://techcrunch.com/2023/06/11/tiki-india/,Unknown,,Singapore,6/14/2023 +Trybe,"Sao Paulo, Non-U.S.",128.0,6/9/2023,0.35,Education,https://www.estadao.com.br/link/inovacao/startup-trybe-demite-128-pessoas-em-nova-rodada-de-cortes-na-companhia/,Series B,40,Brazil,6/12/2023 +23andMe,SF Bay Area,75.0,6/9/2023,0.09,Healthcare,https://www.genomeweb.com/business-news/23andme-laying-9-percent-workforce-cut-operating-costs,Post-IPO,1100,United States,6/9/2023 +Expel,Washington D.C.,60.0,6/9/2023,0.1,Security,https://expel.com/blog/a-message-from-expels-co-founders/,Series E,288,United States,6/9/2023 +Branch,Columbus,186.0,6/8/2023,,Finance,https://coverager.com/layoffs-at-branch/,Series C,229,United States,6/9/2023 +Cityblock Health,New York City,155.0,6/8/2023,0.12,Healthcare,https://www.fiercehealthcare.com/providers/cityblock-restructures-operations-cuts-12-workforce-it-plots-plans-growth-profitability,Series D,891,United States,6/8/2023 +Highspot,Seattle,140.0,6/8/2023,0.15,Sales,https://www.geekwire.com/2023/sales-software-startup-highspot-lays-off-15-of-workforce-its-second-cut-this-year/,Series F,644,United States,6/9/2023 +Cohesity,SF Bay Area,,6/8/2023,,Data,https://blocksandfiles.com/2023/06/08/cohesity-layoffs-with-cmo-going/,Series E,805,United States,6/9/2023 +Freshworks,SF Bay Area,,6/8/2023,,Support,https://bwdisrupt.businessworld.in/article/SaaS-Startup-Freshworks-Conducts-Another-Round-Of-Layoff-Fires-114-Employees/08-06-2023-479793/,Post-IPO,484,United States,6/8/2023 +Opora,SF Bay Area,,6/8/2023,1.0,Security,https://www.calcalistech.com/ctechnews/article/r1dkh001wn,Seed,7,United States,6/9/2023 +Byju's,"Bengaluru, Non-U.S.",1000.0,6/7/2023,,Education,https://themorningcontext.com/internet/byjus-to-lay-off-1000-employees,Private Equity,5500,India,6/9/2023 +Nubank,"Sao Paulo, Non-U.S.",296.0,6/7/2023,,Finance,https://brazilian.report/liveblog/politics-insider/2023/06/07/nubank-layoffs-restructuring/,Post-IPO,4100,Brazil,6/8/2023 +Sumo Logic,SF Bay Area,79.0,6/7/2023,,Data,https://www.sfchronicle.com/tech/article/sumo-logic-tech-layoffs-18150619.php,Acquired,340,United States,6/10/2023 +Flatiron Health,New York City,39.0,6/7/2023,,Healthcare,https://www.beckershospitalreview.com/oncology/cancer-care-startup-to-lay-off-employees.html,Acquired,324,United States,6/24/2023 +Better.com,New York City,,6/7/2023,,Real Estate,https://www.inman.com/2023/06/08/better-com-lays-off-in-house-real-estate-agents-nationwide/,Unknown,905,United States,6/9/2023 +HashiCorp,SF Bay Area,,6/7/2023,0.08,Infrastructure,https://ir.hashicorp.com/news-releases/news-release-details/hashicorp-announces-first-quarter-financial-results-fiscal-0,Post-IPO,349,United States,6/7/2023 +Ursa Major,Denver,,6/7/2023,,Aerospace,https://techcrunch.com/2023/06/07/layoffs-hit-rocket-engine-maker-ursa-major/,Series D,233,United States,6/9/2023 +Coherent,SF Bay Area,196.0,6/6/2023,,Manufacturing,https://www.mercurynews.com/2023/06/06/tech-layoff-fremont-job-coherent-flex-unity-google-facebook-twitter/,Post-IPO,,United States,6/8/2023 +Edgio,Phoenix,134.0,6/6/2023,0.12,Infrastructure,https://investors.edg.io/static-files/829cb878-ba70-4965-bb63-3c4629781a41https://seekingalpha.com/news/3978762-edgio-to-cut-12-of-its-workforce-to-reduce-cost,Post-IPO,462,United States,6/9/2023 +Reddit,SF Bay Area,90.0,6/6/2023,0.05,Consumer,https://www.wsj.com/articles/reddit-is-cutting-about-5-of-its-workforce-and-slowing-hiring-amid-restructuring-63cfade9?mod=djemalertNEWS,Series F,1300,United States,6/6/2023 +Linktree,"Melbourne, Non-U.S.",60.0,6/6/2023,0.27,Consumer,https://www.startupdaily.net/topic/business/link-in-bio-startup-linktree-slashes-local-jobs-again-shedding-27-of-anz-workforce/,Unknown,165,Australia,6/6/2023 +Dragos,Baltimore,50.0,6/6/2023,0.09,Security,https://www.dragos.com/blog/industry-news/dragos-ceos-email-to-employees-on-layoff/,Series D,364,United States,6/6/2023 +Unity,SF Bay Area,50.0,6/6/2023,,Other,https://www.mercurynews.com/2023/06/06/tech-layoff-fremont-job-coherent-flex-unity-google-facebook-twitter/,Post-IPO,1300,United States,6/8/2023 +Mara,"Nairobi, Non-U.S.",6.0,6/6/2023,,Crypto,https://techcabal.com/2023/06/06/web3-startup-mara-fires-its-marketing-department-as-it-shifts-focus-from-acquiring-new-users/,Seed,23,Kenya,6/8/2023 +Bunnii,New York City,,6/6/2023,1.0,Healthcare,https://www.axios.com/pro/health-tech-deals/2023/06/06/fertility-startup-bunnii-shuts-down-fails-secure-funding,Unknown,,United States,6/6/2023 +Spotify,"Stockholm, Non-U.S.",200.0,6/5/2023,0.02,Media,https://www.cnbc.com/2023/06/05/spotify-layoffs-200-employees-or-about-2percent-of-its-workforce-cut.html,Post-IPO,2100,Sweden,6/5/2023 +Azibo,Reno,,6/5/2023,,Finance,https://www.linkedin.com/posts/vikas-a-gupta_azibo-layoffs-opt-in-list-for-recruiting-activity-7071624586735321088-fN2x/,Series A,19,United States,6/6/2023 +Flyhomes,Seattle,,6/5/2023,,Real Estate,https://www.geekwire.com/2023/seattle-startup-flyhomes-lays-off-employees-for-third-time-amid-real-estate-headwinds/,Series C,310,United States,6/5/2023 +Meati Foods,Denver,,6/3/2023,0.05,Food,https://agfundernews.com/fungi-fueled-startup-meati-foods-lays-off-5-of-workforce-but-remains-as-bullish-as-ever-about-its-prospects,Series C,274,United States,6/5/2023 +ZoomInfo,"Vancouver, Non-U.S.",120.0,6/2/2023,0.03,Sales,https://www.bizjournals.com/portland/inno/stories/news/2023/06/02/zoominfo-layoffs.html,Post-IPO,7,Canada,6/2/2023 +Staffbase,"Chemnitz, Non-U.S.",90.0,6/2/2023,,Other,https://www.businessinsider.de/gruenderszene/technologie/entlassungswelle-trifft-chemnitzer-software-unicorn-staffbase/?tpcc=offsite_gs_linkedin-facebook&fbclid=IwAR11HXLrgoy2GqefJu9xkrAtdqlHzdyBFXw1sYqgFmUJoacmBtcZSXNxmDw,Series E,307,Germany,6/4/2023 +Zume,SF Bay Area,,6/2/2023,1.0,Food,https://www.bloomberg.com/news/articles/2023-06-03/fallen-pizza-startup-zume-shuts-down-after-raising-millions#xj4y7vzkg,Unknown,423,United States,6/4/2023 +Haven Technologies,New York City,280.0,6/1/2023,0.7,Finance,https://coverager.com/haven-technologies-shrinks-workforce/,Subsidiary,,United States,6/2/2023 +Mural,SF Bay Area,170.0,6/1/2023,,Product,Internal memo,Series C,192,United States,6/6/2023 +Glamyo Health,"New Delhi, Non-U.S.",160.0,6/1/2023,,Healthcare,https://inc42.com/buzz/glamyo-health-stares-at-potential-shut-down-lays-off-160-employees/,Series B,9,India,6/2/2023 +Outbrain,New York City,90.0,6/1/2023,0.1,Marketing,https://www.calcalistech.com/ctechnews/article/syxin3hl3,Post-IPO,394,United States,6/2/2023 +CloudTrucks,SF Bay Area,,6/1/2023,,Logistics,https://finance.yahoo.com/news/vc-backed-cloudtrucks-blames-tough-184252236.html,Series B,141,United States,6/2/2023 +CoachHub,"Berlin, Non-U.S.",,6/1/2023,0.1,HR,https://www.businessinsider.de/gruenderszene/business/coachhub-berliner-startup-entlasst-zehn-prozent-der-mitarbeiter/,Series C,332,Germany,6/4/2023 +Fractal Software,New York City,,6/1/2023,,Other,https://www.businessinsider.com/fractal-layoffs-venture-studio-stop-create-startups-2023-5,Unknown,,United States,6/4/2023 +SentinelOne,SF Bay Area,,6/1/2023,0.05,Security,https://s28.q4cdn.com/399982429/files/doc_earnings/2024/q1/generic/Shareholder-Letter-Q1-FY24-FINAL-SentinelOne.pdf,Post-IPO,696,United States,6/2/2023 +SmartAsset,New York City,,6/1/2023,0.19,Finance,Internal memo,Series D,161,United States,6/2/2023 +Zendesk,SF Bay Area,320.0,5/31/2023,0.08,Support,https://www.zendesk.com/newsroom/articles/zendesk-workforce-reduction/,Acquired,85,United States,6/1/2023 +ZipRecruiter,Los Angeles,270.0,5/31/2023,0.2,Recruiting,https://www.sec.gov/ix?doc=/Archives/edgar/data/1617553/000161755323000028/zip-20230531.htm,Post-IPO,769,United States,5/31/2023 +Vendr,Boston,100.0,5/31/2023,0.25,Other,https://www.theinformation.com/briefings/software-cost-management-startup-vendr-lays-off-25,Series B,216,United States,5/31/2023 +McMakler,"Berlin, Non-U.S.",60.0,5/31/2023,,Real Estate,https://www.businessinsider.de/gruenderszene/business/wieder-entlassungen-bei-immobilien-startup-mcmakler/,Unknown,214,Germany,6/2/2023 +Mux,SF Bay Area,40.0,5/31/2023,0.3,Infrastructure,Internal memo,Series D,173,United States,6/2/2023 +Away,New York City,22.0,5/31/2023,0.08,Retail,https://pitchbook.com/news/articles/away-direct-to-consumer-layoffs-venture-capital,Series D,181,United States,8/15/2023 +Taxfix,"Berlin, Non-U.S.",120.0,5/30/2023,0.2,Finance,https://techcrunch.com/2023/05/30/taxfix-layoffs/,Series D,330,Germany,5/31/2023 +Mensa Brands,"Bengaluru, Non-U.S.",30.0,5/30/2023,,Retail,https://inc42.com/buzz/layoffs-continue-mensa-brands-fires-employees-from-recently-acquired-india-lifestyle-network/,Unknown,254,India,5/31/2023 +Coupa,SF Bay Area,,5/30/2023,,Finance,https://www.pymnts.com/spend-management/2023/coupa-software-cutting-jobs-as-part-of-company-reset-strategy/,Acquired,219,United States,6/1/2023 +Nansen,"Singapore, Non-U.S.",,5/30/2023,,Crypto,https://twitter.com/ASvanevik/status/1663565124970610688,Series B,88,Singapore,5/31/2023 +PacketFabric,Los Angeles,,5/30/2023,,Infrastructure,https://www.linkedin.com/posts/packetfabric_with-the-growth-of-any-organization-comes-activity-7069360909927788544-XuBz/,Unknown,109,United States,5/31/2023 +Evolve,Denver,164.0,5/29/2023,0.14,Travel,https://skift.com/blog/evolve-lays-off-14-percent-of-its-staff/,Series F,224,United States,9/14/2023 +Project44,Chicago,130.0,5/26/2023,0.1,Logistics,https://www.freightwaves.com/news/project44-cuts-workforce-warns-of-changing-freighttech-investor-sentiment,Unknown,817,United States,5/27/2023 +DHI Group,New York City,53.0,5/26/2023,0.1,Recruiting,https://aimgroup.com/2023/05/26/dhi-group-to-cut-workforce-by-10/,Post-IPO,,United States,6/6/2023 +BenevolentAI,"London, Non-U.S.",180.0,5/25/2023,,Healthcare,https://endpts.com/benevolentai-lays-off-around-180-staffers-cuts-pipeline-programs-in-reorg/,Private Equity,292,United Kingdom,5/26/2023 +Airmeet,"Bengaluru, Non-U.S.",75.0,5/25/2023,0.3,Marketing,https://inc42.com/buzz/exclusive-prosus-backed-airmeet-lays-off-30-of-its-workforce/,Series B,50,India,5/26/2023 +Circus Kitchens,"Hamburg, Non-U.S.",35.0,5/25/2023,,Food,https://www.businessinsider.de/gruenderszene/food/massenentlassung-beim-lieferdienst-startup-circus-kitchens/,Seed,12,Germany,5/26/2023 +Jellysmack,"Paris, Non-U.S.",13.0,5/25/2023,,Media,https://www.businessinsider.com/creator-economy-startup-jellysmack-laid-off-us-france-staff-layoffs-2023-5,Series C,22,France,1/20/2024 +Kabam,SF Bay Area,,5/25/2023,0.12,Consumer,https://www.pocketgamer.biz/news/81603/kabam-to-lay-off-12-of-workforce/,Acquired,244,United States,5/26/2023 +Guild,Denver,172.0,5/24/2023,0.12,Education,https://www.bizjournals.com/denver/news/2023/05/25/guild-layoffs.html,Series F,643,United States,5/26/2023 +WillowTree,Charlottesville,120.0,5/24/2023,0.11,Marketing,https://www.nbc29.com/2023/05/24/23-charlottesville-area-employees-laid-off-willowtree/,Acquired,,United States,5/24/2023 +Flink,"Berlin, Non-U.S.",100.0,5/24/2023,0.16,Food,https://www.businessinsider.de/gruenderszene/food/uebernahme-durch-getir-vom-tisch-flink-findet-neues-investorengeld-bewertung-sinkt-massiv/,Series B,1000,Germany,5/24/2023 +Western Digital,"Kfar Saba, Non-U.S.",60.0,5/24/2023,0.07,Hardware,https://www.calcalistech.com/ctechnews/article/sk4mliohh,Post-IPO,900,Israel,6/2/2023 +Alibaba Cloud,"Hangzhou, Non-U.S.",,5/24/2023,0.07,Data,https://www.cnbc.com/2023/05/23/alibaba-to-cut-7percent-of-workforce-in-its-cloud-unit-as-it-pursues-ipo-.html,Subsidiary,,China,5/24/2023 +Brainly,"Krakow, Non-U.S.",,5/24/2023,0.3,Education,https://www.linkedin.com/posts/brainly-com_announcement-activity-7067026338280300545-Nn9j/,Series D,148,Poland,5/24/2023 +Reliance JioMart,"Mumbai, Non-U.S.",1000.0,5/23/2023,,Food,https://economictimes.indiatimes.com/tech/technology/reliances-wholesale-format-fires-1000-a-bigger-layoff-round-likely/articleshow/100428603.cms,Subsidiary,,India,5/23/2023 +Qualcomm,"Haifa, Non-U.S.",30.0,5/23/2023,,Hardware,https://www.calcalistech.com/ctechnews/article/hkfdle9s3,Post-IPO,,Israel,6/2/2023 +SoundCloud,"Berlin, Non-U.S.",,5/23/2023,0.08,Consumer,https://www.billboard.com/pro/soundcloud-layoffs-job-cuts-further-investment-profit/,Unknown,542,Germany,5/24/2023 +Tractable,"London, Non-U.S.",,5/23/2023,,Finance,https://www.businessinsider.com/ai-startup-tractable-lays-off-staff-despite-the-gold-rush-2023-5,Series D,119,United Kingdom,5/25/2023 +AppFolio,Santa Barbara,62.0,5/22/2023,,Real Estate,https://www.pacbiztimes.com/2023/05/22/appfolio-lays-off-62-people/,Post-IPO,30,United States,5/24/2023 +Daylight,Los Angeles,,5/22/2023,1.0,Finance,https://techcrunch.com/2023/05/22/daylight-the-lgbtq-neobank-calls-it-quits/,Series A,20,United States,10/26/2023 +FemTech Health,Houston,,5/22/2023,1.0,Healthcare,https://www.axios.com/pro/health-tech-deals/2023/05/22/femtec-health-shuts-down,Unknown,,United States,5/22/2023 +Paperless Parts,Boston,,5/22/2023,,Manufacturing,https://www.bizjournals.com/boston/inno/stories/news/2023/05/22/paperless-parts-layoffs.html,Series B,30,United States,5/24/2023 +Nuance Communications,Boston,,5/20/2023,,Healthcare,https://www.bostonglobe.com/2023/05/20/business/layoffs-hit-nuance-after-microsoft-acquisition/,Acquired,,United States,5/22/2023 +Moss,"Berlin, Non-U.S.",30.0,5/19/2023,,Finance,https://financefwd.com/de/moss-mitarbeiter-entlassungen-2/,Series B,150,Germany,5/24/2023 +Pie Insurance,Washington D.C.,63.0,5/18/2023,0.14,Finance,https://media.pieinsurance.com/press-releases/a-message-from-pies-ceo/,Series D,621,United States,5/18/2023 +Clearbit,SF Bay Area,,5/18/2023,,Sales,https://clearbit.com/blog/an-update-from-clearbits-returning-ceo-matt-sornson,Series A,17,United States,5/18/2023 +dbt Labs,Philadelphia,,5/18/2023,0.15,Data,https://www.getdbt.com/blog/dbt-labs-update-a-message-from-ceo-tristan-handy/,Series D,414,United States,5/18/2023 +L1ght,"Tel Aviv, Non-U.S.",,5/18/2023,1.0,Other,https://www.calcalistech.com/ctechnews/article/skenly7sn,Seed,15,Israel,5/19/2023 +Nextbite,Denver,,5/18/2023,,Food,https://www.restaurantdive.com/news/nextbite-lays-off-employees-may-shut-down/650688/,Series C,150,United States,5/20/2023 +TuSimple,San Diego,,5/18/2023,0.3,Transportation,https://techcrunch.com/2023/05/18/tusimple-to-lay-off-30-of-u-s-workforce-keep-china-business/,Post-IPO,648,United States,5/18/2023 +Stash,New York City,40.0,5/17/2023,0.1,Finance,https://www.axios.com/pro/fintech-deals/2023/05/17/stash-lays-off-10-percent-reorganization,Unknown,480,United States,5/19/2023 +Formstack,Indianapolis,,5/17/2023,0.4,Other,https://www.linkedin.com/feed/update/urn:li:activity:7064618034325327872/,Private Equity,425,United States,5/17/2023 +Cerner,Kansas City,3000.0,5/16/2023,0.11,Healthcare,https://www.businessinsider.com/oracle-halted-raises-layoffs-after-cerner-deal-2023-5,Acquired,,United States,5/17/2023 +Zepz,"London, Non-U.S.",420.0,5/16/2023,0.26,Finance,https://www.cnbc.com/2023/05/16/fintech-unicorn-zepz-owner-of-worldremit-lays-off-26percent-of-staff.html,Series E,700,United Kingdom,5/16/2023 +Lemonade,New York City,45.0,5/16/2023,0.03,Finance,https://www.calcalistech.com/ctechnews/article/s18wcz11r2,Post-IPO,481,United States,5/16/2023 +DroneUp,Norfolk,,5/16/2023,,Logistics,https://www.cnbc.com/2023/05/16/walmart-backed-drone-delivery-startup-droneup-is-cutting-jobs-.html,Unknown,7,United States,5/16/2023 +Quanto,"Sao Paulo, Non-U.S.",,5/16/2023,0.85,Finance,https://www.linkedin.com/posts/quantofinance_carta-aberta-sobre-a-reestrutura%C3%A7%C3%A3o-das-opera%C3%A7%C3%B5es-activity-7064317169307721729-kdec/,Series A,20,Brazil,5/18/2023 +Cana,SF Bay Area,,5/13/2023,1.0,Food,https://thespoon.tech/cana-the-startup-building-a-make-any-drink-beverage-printer-shuts-down/,Unknown,30,United States,5/14/2023 +Nuro,SF Bay Area,340.0,5/12/2023,0.3,Transportation,https://techcrunch.com/2023/05/12/autonomous-delivery-startup-nuro-to-lay-off-30-of-workforce/,Series D,2100,United States,5/11/2023 +Telenav,"Cluj-Napoca, Non-U.S.",172.0,5/12/2023,,Transportation,https://www.romania-insider.com/telenav-closes-cluj-office-may-2023,Post-IPO,30,Romania,5/12/2023 +Happay,"Bengaluru, Non-U.S.",160.0,5/12/2023,0.35,Finance,https://inc42.com/buzz/exclusive-cred-owned-happay-trims-35-workforce/,Acquired,21,India,5/15/2023 +Slickdeals,Las Vegas,79.0,5/12/2023,0.33,Retail,Company exec,Unknown,,United States,5/15/2023 +Toothsi,"Mumbai, Non-U.S.",20.0,5/12/2023,,Healthcare,https://www.moneycontrol.com/news/business/startup/dental-tech-startup-toothsi-lays-off-20-30-employees-amid-funding-crunch-10574111.html,Series C,87,India,5/14/2023 +Everlaw,SF Bay Area,,5/12/2023,0.1,Legal,https://www.law360.com/pulse/legal-tech/articles/1607469/e-discovery-co-everlaw-conducts-10-staff-reduction,Series D,298,United States,5/13/2023 +Tessera,New York City,,5/12/2023,1.0,Crypto,https://www.coindesk.com/web3/2023/05/12/paradigm-backed-nft-ownership-platform-tessera-is-shutting-down/,Series A,43,United States,5/15/2023 +Cornershop,"Santiago, Non-U.S.",250.0,5/11/2023,0.11,Food,https://www.bloomberg.com/news/articles/2023-05-11/uber-owned-online-grocer-cornershop-eliminates-11-of-staff#xj4y7vzkg?leadSource=uverify%20wall,Acquired,31,Chile,5/12/2023 +Varo,SF Bay Area,97.0,5/11/2023,,Finance,https://www.varomoney.com/press/05112023-message-from-colin/,Series E,992,United States,5/17/2023 +CS Disco,Austin,,5/11/2023,0.08,Legal,https://www.law360.com/pulse/legal-tech/articles/1606941/legal-tech-co-disco-cuts-staff-8-in-2nd-round-of-layoffs,Post-IPO,233,United States,5/12/2023 +Microsoft,Seattle,158.0,5/10/2023,,Other,https://www.geekwire.com/2023/microsoft-cutting-more-jobs-in-seattle-region-beyond-global-layoffs-announced-in-january/,Post-IPO,1,United States,5/11/2023 +Redbubble,"Melbourne, Non-U.S.",70.0,5/10/2023,0.23,Retail,https://www.afr.com/technology/redbubble-axes-75-roles-in-a-new-cost-cutting-round-20230510-p5d762,Post-IPO,55,Australia,5/10/2023 +Similarweb,New York City,60.0,5/10/2023,0.06,Other,https://www.calcalistech.com/ctechnews/article/sya4wmt4h,Post-IPO,235,United States,5/11/2023 +Stack Overflow,New York City,58.0,5/10/2023,0.1,Recruiting,https://stackoverflow.blog/2023/05/10/a-message-from-prashanth-chandrasekar-ceo-stack-overflow/,Acquired,153,United States,5/11/2023 +Akamai,Boston,290.0,5/9/2023,0.03,Security,https://www.bizjournals.com/boston/news/2023/05/09/akamai-cuts-global-workforce-2023.html,Post-IPO,35,United States,5/10/2023 +Sonatype,Baltimore,100.0,5/9/2023,0.14,Security,https://www.theregister.com/2023/05/10/sonatype_job_cuts/,Acquired,154,United States,5/11/2023 +AudioCodes,"Tel Aviv, Non-U.S.",80.0,5/9/2023,0.06,Other,https://www.calcalistech.com/ctechnews/article/hjnggpd43,Post-IPO,91,Israel,5/9/2023 +Buzzer,New York City,,5/9/2023,,Media,https://sports.yahoo.com/buzzer-shut-down-app-license-130000688.html,Unknown,32,United States,5/9/2023 +Marqeta,SF Bay Area,,5/9/2023,0.15,Finance,https://www.fool.com/earnings/call-transcripts/2023/05/09/marqeta-mq-q1-2023-earnings-call-transcript/,Post-IPO,530,United States,5/10/2023 +LinkedIn,SF Bay Area,716.0,5/8/2023,0.04,Recruiting,https://www.reuters.com/technology/linkedin-cut-716-jobs-phase-out-china-local-jobs-app-2023-05-09/,Acquired,154,United States,5/9/2023 +Cuemath,"Bengaluru, Non-U.S.",100.0,5/8/2023,,Education,https://entrackr.com/2023/05/cuemath-lays-off-around-100-employees/,Unknown,121,India,5/8/2023 +Momentis Surgical,"Tel Aviv, Non-U.S.",70.0,5/8/2023,0.6,Healthcare,https://www.calcalistech.com/ctechnews/article/bk11kl2i43,Series D,,Israel,5/13/2023 +Glean AI,New York City,5.0,5/8/2023,,Finance,Company exec,Seed,11,United States,5/16/2023 +Everledger,"Brisbane, Non-U.S.",,5/8/2023,1.0,Crypto,https://www.afr.com/technology/government-and-tencent-backed-aussie-blockchain-firm-collapses-20230503-p5d58l,Unknown,27,Australia,5/15/2023 +Twist Bioscience,SF Bay Area,270.0,5/5/2023,0.25,Healthcare,https://www.biospace.com/article/releases/twist-bioscience-reports-fiscal-second-quarter-2023-financial-results/,Post-IPO,503,United States,5/5/2023 +Meesho,"Bengaluru, Non-U.S.",251.0,5/5/2023,0.15,Retail,https://www.moneycontrol.com/news/business/meesho-to-fire-251-employees-says-it-made-judgement-errors-in-over-hiring-ahead-of-the-curve-10531531.html,Series F,1100,India,5/5/2023 +Teachmint,"Bengaluru, Non-U.S.",70.0,5/5/2023,,Education,https://inc42.com/buzz/exclusive-teachmint-lays-off-over-70-employees-in-2nd-round-of-layoffs/,Series B,118,India,5/5/2023 +Eventus,Austin,,5/5/2023,0.33,Finance,https://www.thetradenews.com/eventus-cuts-staff-numbers-amid-challenging-funding-environment/,Series B,45,United States,5/8/2023 +Shopify,"Ottawa, Non-U.S.",2300.0,5/4/2023,0.2,Retail,https://www.cbc.ca/news/business/shopify-layoffs-1.6831842,Post-IPO,122,Canada,5/4/2023 +Sabre,Dallas,1100.0,5/4/2023,0.15,Travel,https://skift.com/2023/05/04/sabre-is-cutting-15-percent-of-its-workforce-roughly-1100-jobs/,Post-IPO,1700,United States,5/5/2023 +Scribe Media,Austin,90.0,5/4/2023,1.0,Marketing,https://www.bizjournals.com/austin/inno/stories/news/2023/05/30/scribe-media-shuts-down-and-lays-off-90-employees.html,Unknown,,United States,5/31/2023 +Autograph,Los Angeles,30.0,5/4/2023,0.33,Crypto,https://www.businessinsider.com/tom-bradys-nft-startup-autograph-layoffs-crypto-2023-5?IR=T,Series B,205,United States,5/5/2023 +Earnix,"Tel Aviv, Non-U.S.",30.0,5/4/2023,0.1,Finance,https://www.calcalistech.com/ctechnews/article/hymylgzvh,Unknown,100,Israel,5/4/2023 +Karma,"Tel Aviv, Non-U.S.",20.0,5/4/2023,0.28,Retail,https://www.calcalistech.com/ctechnews/article/bj11xzuw43,Series A,34,Israel,5/5/2023 +Glassbox,"London, Non-U.S.",,5/4/2023,0.14,Data,https://www.calcalistech.com/ctechnews/article/s1zmauznn,Series C,70,United Kingdom,5/5/2023 +Unity,SF Bay Area,600.0,5/3/2023,0.08,Other,https://www.wsj.com/articles/unity-conducts-its-third-and-largest-round-of-layoffs-in-a-year-48fdafe1,Post-IPO,1300,United States,5/3/2023 +Upwork,SF Bay Area,137.0,5/3/2023,0.15,Other,https://www.upwork.com/press/releases/a-message-from-our-ceo,Post-IPO,168,United States,5/3/2023 +Cars24,"Jakarta, Non-U.S.",100.0,5/3/2023,,Transportation,https://inc42.com/buzz/cars24-shuts-shop-in-indonesia-saudi-arabia-to-focus-on-india-ops/?utm_source=ActiveCampaign&utm_medium=email&utm_content=Profit++Karo++On+Paytm+s+Mind%21+%7C+Two+Bengaluru+Unicorns+Cut+Jobs+%7C+Tim+Cook+s+%E2%9D%A4%EF%B8%8F+For+India&utm_campaign=Morning+Newsletter+-+New+Template+06+May&vgo_ee=vZ%2BZfbikRuPiTdEJPl5%2BEYyCJFrocn5no%2Bm25FjbMJUy9Zuq7w%3D%3D%3AAqF8bsXWMtjx1ZHWtxqmJxDrH43MqNRa,Series G,1300,Indonesia,5/7/2023 +Brightcove,Boston,70.0,5/3/2023,0.1,Marketing,https://www.bizjournals.com/boston/news/2023/05/03/brightcove-cuts-across-organization.html,Post-IPO,145,United States,5/4/2023 +Healthy.io,"Tel Aviv, Non-U.S.",70.0,5/3/2023,0.33,Healthcare,https://www.calcalistech.com/ctechnews/article/b11800cknh,Series D,185,Israel,5/3/2023 +Zymergen,SF Bay Area,27.0,5/3/2023,,Other,https://www.biospace.com/article/biospace-layoff-tracker-2023-athenex-shutters-facility-cuts-staff/,Acquired,974,United States,5/5/2023 +TheSkimm,New York City,22.0,5/3/2023,0.13,Media,https://www.businessinsider.com/newsletter-publisher-theskimm-laid-off-13-percent-second-round-2023-2023-5,Series C,28,United States,5/8/2023 +Brightline,SF Bay Area,,5/3/2023,0.2,Healthcare,https://www.beckershospitalreview.com/digital-health/digital-health-startup-brightline-lays-off-20-of-staff-again.html,Series C,212,United States,5/3/2023 +Bishop Fox,Phoenix,50.0,5/2/2023,0.13,Security,https://techcrunch.com/2023/05/03/bishop-fox-lays-off-employees-days-after-throwing-conference-party/,Series B,146,United States,5/3/2023 +Zoomo,"Sydney, Non-U.S.",27.0,5/2/2023,0.08,Transportation,https://www.businessnewsaustralia.com/articles/sydney-e-bike-provider-zoomo-cuts-8-per-cent-of-its-workforce.html,Series B,105,Australia,5/2/2023 +Vallai,"Paris, Non-U.S.",,5/2/2023,1.0,Data,https://www.linkedin.com/feed/update/urn:li:activity:7059041318760501250/,Seed,,France,5/4/2023 +SAS,Raleigh,250.0,5/1/2023,,Data,https://wraltechwire.com/2023/05/01/sas-to-close-some-international-offices-making-selective-hires-in-prepping-for-stock-offering/,Unknown,,United States,7/5/2023 +Lev,New York City,34.0,5/1/2023,,Real Estate,https://therealdeal.com/new-york/2023/05/01/cre-finance-platform-lev-lays-off-more-staff/,Series B,114,United States,5/1/2023 +PharmEasy,"Mumbai, Non-U.S.",,5/1/2023,,Healthcare,https://www.dealstreetasia.com/stories/pharmeasy-layoffs-341548,Unknown,1600,India,5/2/2023 +Vah Vah!,"Bengaluru, Non-U.S.",150.0,4/30/2023,,Education,https://inc42.com/features/how-former-zynga-india-head-silently-shut-his-startup-after-slashing-150-jobs/,Seed,2,India,7/19/2023 +Cogito,"New Delhi, Non-U.S.",177.0,4/29/2023,,Data,https://inc42.com/buzz/protests-erupt-data-startup-cogito-fires-177-indian-employees/,Unknown,,India,5/1/2023 +Cue Health,San Diego,326.0,4/28/2023,0.3,Healthcare,https://www.sec.gov/Archives/edgar/data/1628945/000162894523000085/hlth-20230428.htm,Post-IPO,899,United States,5/1/2023 +N26,"Berlin, Non-U.S.",71.0,4/28/2023,0.04,Finance,https://www.businessinsider.de/gruenderszene/fintech/folgen-der-krise-n26-entlaesst-mitarbeiter/,Series E,1700,Germany,4/28/2023 +Embark Vet,Boston,28.0,4/28/2023,,Healthcare,https://docs.google.com/spreadsheets/d/12HLkzExDs4cXgF8FGl8M6D3Zilpr4iWMJHVGfGy4szk/edit#gid=113211201,Series B,94,United States,5/10/2023 +Poparazzi,Los Angeles,,4/28/2023,1.0,Consumer,https://techcrunch.com/2023/05/01/once-hot-photo-sharing-social-app-poparazzi-is-shutting-down/,Series A,15,United States,5/3/2023 +Providoor,"Melbourne, Non-U.S.",,4/28/2023,1.0,Food,https://www.afr.com/technology/celebrity-chef-s-tech-firm-providoor-collapses-20230428-p5d430,Unknown,,Australia,4/29/2023 +Dropbox,SF Bay Area,500.0,4/27/2023,0.16,Other,https://blog.dropbox.com/topics/company/a-message-from-drew,Post-IPO,1700,United States,4/27/2023 +Alteryx,Los Angeles,320.0,4/27/2023,0.11,Data,https://siliconangle.com/2023/04/27/alteryx-delivers-mixed-earnings-results-plans-cut-11-staff/,Post-IPO,613,United States,4/28/2023 +Vroom,New York City,120.0,4/27/2023,0.11,Transportation,https://www.hrkatha.com/news/layoff/vroom-to-let-go-11-workforce/,Post-IPO,1300,United States,4/28/2023 +Greenhouse,New York City,100.0,4/27/2023,0.12,Recruiting,https://www.greenhouse.com/blog/navigating-market-uncertainty,Private Equity,110,United States,4/27/2023 +Rebellion Defense,Washington D.C.,90.0,4/27/2023,,Data,https://blog.rebelliondefense.com/a-difficult-decision-for-rebellion-5fe0fbc927e4,Series B,150,United States,4/29/2023 +Poppulo,Denver,85.0,4/27/2023,,HR,https://www.rte.ie/news/business/2023/0427/1379567-poppulo-to-lay-off-21-staff-in-ireland-to-cut-costs/,Acquired,30,United States,4/29/2023 +Megaport,"Brisbane, Non-U.S.",50.0,4/27/2023,0.16,Infrastructure,https://cdn-api.markitdigital.com/apiman-gateway/ASX/asx-research/1.0/file/2924-02659300-2A1446019?access_token=83ff96335c2d45a094df02a206a39ff4,Post-IPO,98,Australia,4/29/2023 +Airtasker,"Sydney, Non-U.S.",45.0,4/27/2023,0.2,Retail,https://www.businessnewsaustralia.com/articles/airtasker-makes-20pc-of-employees-redundant.html,Series C,26,Australia,4/28/2023 +Chief,New York City,43.0,4/27/2023,0.14,Other,https://techcrunch.com/2023/04/27/chief-a-professional-network-for-women-leaders-cuts-staff-amid-restructuring-effort/,Series B,140,United States,4/27/2023 +Tickertape,"Bengaluru, Non-U.S.",29.0,4/27/2023,0.29,Finance,https://entrackr.com/2023/04/smallcase-backed-tickertape-layoff-30-workforce/,Seed,5,India,4/28/2023 +Clubhouse,SF Bay Area,,4/27/2023,0.5,Consumer,https://blog.clubhouse.com/april-27-2023/,Series C,110,United States,4/27/2023 +Oddle,"Singapore, Non-U.S.",,4/27/2023,0.25,Food,https://www.techinasia.com/fb-startup-oddle-cuts-25-staff-profitability-push,Series B,9,Singapore,4/29/2023 +Rad Power Bikes,Seattle,,4/27/2023,,Transportation,https://www.bicycleretailer.com/industry-news/2023/04/27/rad-power-bikes-has-more-layoffs,Series D,329,United States,8/1/2024 +Extramarks,"Noida, Non-U.S.",300.0,4/26/2023,,Education,https://inc42.com/buzz/exclusive-reliance-backed-edtech-startup-extramarks-fires-over-300-employees-to-shut-b2c-biz/,Unknown,,India,4/26/2023 +Teampay,New York City,30.0,4/26/2023,0.33,Finance,https://www.axios.com/pro/fintech-deals/2023/04/26/corporate-card-teampay-layoffs-30-percent,Series B,79,United States,4/28/2023 +RenoRun,"Montreal, Non-U.S.",,4/26/2023,1.0,Construction,https://betakit.com/renorun-shuts-down-operations-as-it-pursues-sale-of-assets/,Series B,163,Canada,5/2/2023 +Skill Lync,"Chennai, Non-U.S.",400.0,4/25/2023,,Education,https://inc42.com/buzz/exclusive-iron-pillar-backed-edtech-startup-skill-lync-fires-over-400-employees/,Series A,17,India,4/25/2023 +Rapid,SF Bay Area,115.0,4/25/2023,0.5,Finance,https://techcrunch.com/2023/04/25/rapidapi-valued-at-1-billion-last-year-cuts-staff-by-50/,Series D,272,United States,4/25/2023 +Rapid,SF Bay Area,70.0,4/25/2023,0.3,Finance,https://techcrunch.com/2023/05/05/rapidapi-headcount-down-82-from-fresh-layoffs-less-than-two-weeks-after-cutting-50-of-staff/,Series D,272,United States,5/5/2023 +Flink,"Berlin, Non-U.S.",8000.0,4/24/2023,0.4,Food,https://www.manager-magazin.de/unternehmen/tech/flink-lieferdienst-hat-still-und-leise-8000-jobs-abgeschafft-a-caa29cb9-82b5-4d1e-83ca-a29efaccd25d,Series B,1000,Germany,4/25/2023 +Red Hat,Raleigh,760.0,4/24/2023,0.04,Other,https://abc11.com/jobs-red-hat-careers-layoffs-raleigh-nc/13180340/,Acquired,,United States,4/24/2023 +BigPanda,SF Bay Area,40.0,4/24/2023,0.13,Infrastructure,https://www.calcalistech.com/ctechnews/article/hjmakgn73,Series E,337,United States,4/25/2023 +Lyft,SF Bay Area,1072.0,4/21/2023,0.26,Transportation,https://www.cnbc.com/2023/04/27/lyft-layoffs-company-to-cut-1072-employees-or-26percent-of-its-workforce.html,Post-IPO,4900,United States,4/21/2023 +Benchling,SF Bay Area,74.0,4/21/2023,0.09,Other,https://www.reuters.com/technology/life-sciences-software-startup-benchling-lays-off-9-workforce-2023-04-21/,Series F,411,United States,4/22/2023 +Pluralsight,Salt Lake City,,4/21/2023,,Education,https://www.sltrib.com/news/2023/04/21/utah-tech-company-pluralsight-lays/,Acquired,192,United States,4/23/2023 +BuzzFeed,New York City,180.0,4/20/2023,0.15,Media,https://variety.com/2023/digital/news/buzzfeed-news-shutting-down-layoffs-1235589751/,Post-IPO,696,United States,4/20/2023 +Koo,"Bengaluru, Non-U.S.",78.0,4/20/2023,0.3,Consumer,https://economictimes.indiatimes.com/tech/startups/twitters-rival-koo-fires-30-staff-on-funding-crunch/articleshow/99632488.cms,Series B,50,India,4/20/2023 +Open,"Bengaluru, Non-U.S.",47.0,4/20/2023,,Finance,https://entrackr.com/2023/04/exclusive-neobank-open-lays-off-around-50-employees/,Series D,190,India,4/20/2023 +Gloat,New York City,35.0,4/20/2023,0.12,HR,https://www.calcalistech.com/ctechnews/article/ry8dgb1x3,Series D,192,United States,4/21/2023 +Insider,New York City,,4/20/2023,0.1,Media,https://www.thedailybeast.com/insider-to-lay-off-10-percent-of-staffers-company-says,Unknown,,United States,4/20/2023 +Iress,"Melbourne, Non-U.S.",,4/20/2023,0.1,Finance,https://www.moneymanagement.com.au/news/people-products/iress-announces-management-restructure-and-job-cuts,Unknown,,Australia,9/24/2023 +Lenovo,Raleigh,,4/20/2023,,Hardware,https://www.channelweb.co.uk/news/4112502/lenovo-layoffs-confirmed-response-pc-downturn-report,Post-IPO,850,United States,4/20/2023 +F5,Seattle,623.0,4/19/2023,0.09,Security,https://www.reuters.com/technology/software-firm-f5-layoff-9-staff-trims-fiscal-revenue-guidance-2023-04-19/,Post-IPO,,United States,4/20/2023 +WalkMe,SF Bay Area,112.0,4/19/2023,0.1,Other,https://www.calcalistech.com/ctechnews/article/byc3z4pgn,Post-IPO,307,United States,4/19/2023 +Opendoor,SF Bay Area,560.0,4/18/2023,0.22,Real Estate,https://www.inman.com/2023/04/18/opendoor-lays-off-22-of-its-workforce-in-latest-round-of-cuts/,Post-IPO,1900,United States,4/18/2023 +Noon,"Riyadh, Non-U.S.",340.0,4/18/2023,0.1,Retail,https://www.bloomberg.com/news/articles/2023-04-18/amazon-s-middle-east-rival-noon-cuts-10-of-jobs-to-pare-costs?leadSource=uverify%20wall,Unknown,,Saudi Arabia,4/19/2023 +Culture Amp,"Melbourne, Non-U.S.",90.0,4/18/2023,0.09,HR,https://www.startupdaily.net/topic/business/hr-unicorn-culture-amp-is-the-latest-tech-company-to-shed-jobs-cutting-90-roles/,Series F,257,Australia,4/19/2023 +TRM Labs,SF Bay Area,16.0,4/18/2023,0.09,Crypto,https://blockworks.co/news/crypto-hiring-custodian-copper,Series B,149,United States,5/5/2023 +CoLab,"Sydney, Non-U.S.",,4/18/2023,1.0,Food,https://7news.com.au/lifestyle/food/australian-food-delivery-service-colab-announces-it-will-close-its-doors--c-10319763,Seed,3,Australia,4/20/2023 +Ten Square Games,"Wrocław, Non-U.S.",120.0,4/17/2023,0.25,Consumer,https://economictimes.indiatimes.com/tech/technology/ten-square-games-to-lay-off-25-of-staff-suspend-two-major-projects/articleshow/99558794.cms,Seed,,Poland,4/18/2023 +Clearcover,Chicago,81.0,4/17/2023,0.15,Finance,https://coverager.com/layoffs-at-clearcover/,Series D,304,United States,4/25/2023 +Paper,"Montreal, Non-U.S.",81.0,4/17/2023,0.03,Education,https://paper.co/inside-paper/a-message-from-papers-ceo-and-founder-philip-cutler,Series D,389,Canada,5/17/2023 +Ynsect,"Paris, Non-U.S.",17.0,4/17/2023,0.25,Food,https://pitchbook.com/news/articles/agtech-ynsect-funding-layoffs,Series D,579,France,4/18/2023 +FamPay,"Bengaluru, Non-U.S.",,4/17/2023,,Finance,https://entrackr.com/2023/04/exclusive-fampay-lays-off-staff-sees-top-level-exits/,Series A,42,India,4/17/2023 +Kumu,"Manila, Non-U.S.",,4/17/2023,,Media,https://www.techinasia.com/kumus-struggle-layoffs-departures-slash-workforce,Series C,94,Philippines,4/18/2023 +Utopia Music,"Zug, Non-U.S.",,4/17/2023,0.15,Other,https://www.billboard.com/pro/utopia-music-layoffs-gloal-job-cuts-ceo-memo/,Series B,,Switzerland,7/23/2023 +Quadream,"Tel Aviv, Non-U.S.",,4/16/2023,1.0,Security,https://www.calcalistech.com/ctechnews/article/hy78kiym2,Unknown,,Israel,4/17/2023 +Drip Capital,SF Bay Area,75.0,4/14/2023,0.2,Finance,https://inc42.com/buzz/exclusive-trade-financing-startup-drip-capital-lays-off-20-employees/,Series C,85,United States,4/15/2023 +Community Gaming,New York City,17.0,4/14/2023,0.17,Crypto,https://decrypt.co/136786/web3-startup-community-gaming-confirms-layoffs-amid-esports-downturn,Series A,18,United States,4/17/2023 +Calibrate,New York City,,4/14/2023,0.18,Healthcare,https://news.bloomberglaw.com/daily-labor-report/weight-loss-telehealth-startup-calibrate-health-cuts-18-of-jobs,Series B,127,United States,4/15/2023 +OpenClassrooms,"Paris, Non-U.S.",,4/14/2023,0.25,Education,https://www.usine-digitale.fr/article/openclassrooms-reduit-ses-effectifs-d-un-quart.N2121446,Series C,150,France,2/8/2024 +Sayurbox,"Jakarta, Non-U.S.",,4/14/2023,,Food,https://www.cnbcindonesia.com/tech/20230414134641-37-429990/sayurbox-phk-massal-karyawan-jelang-lebaran,Series C,139,Indonesia,5/26/2023 +Snyk,Boston,128.0,4/13/2023,,Security,https://snyk.io/blog/snyk-evolution-april-13/,Series F,849,United States,4/14/2023 +Astronomer,Cincinnati,100.0,4/13/2023,0.4,Data,Internal memo,Series C,282,United States,4/15/2023 +Bluepad,"Bengaluru, Non-U.S.",,4/13/2023,1.0,Media,https://inc42.com/buzz/vernacular-content-platform-bluepad-shuts-down/,Seed,,India,4/14/2023 +Heygo,"London, Non-U.S.",,4/13/2023,1.0,Travel,https://skift.com/2023/04/13/why-travel-tech-startup-heygo-closed-a-year-after-raising-20-million/,Series A,20,United Kingdom,4/14/2023 +Lazerpay,"Lagos, Non-U.S.",,4/13/2023,1.0,Crypto,https://techpoint.africa/2023/04/13/lazerpay-shuts-down/,Unknown,,Nigeria,4/14/2023 +Mediafly,Chicago,,4/13/2023,,Sales,https://www.linkedin.com/feed/update/urn:li:activity:7052332154709540864/,Private Equity,59,United States,4/14/2023 +Viasat,San Diego,300.0,4/12/2023,0.04,Other,https://www.sandiegouniontribune.com/business/story/2023-04-12/viasat-trims-global-workforce,Post-IPO,366,United States,4/25/2023 +Science 37,Los Angeles,140.0,4/12/2023,,Healthcare,https://www.bizjournals.com/triangle/news/2023/04/12/science-37-cutting-140-jobs-us-europe-asia-growth.html,Post-IPO,347,United States,5/5/2023 +Medtronic,SF Bay Area,59.0,4/12/2023,,Healthcare,https://www.massdevice.com/medtronic-layoffs-california/,Post-IPO,5900,United States,4/14/2023 +Milkrun,"Sydney, Non-U.S.",400.0,4/11/2023,1.0,Food,https://www.forbes.com.au/news/investing/milkrun-collapses-as-400-staff-made-redundant/,Series A,86,Australia,4/11/2023 +Redfin,Seattle,201.0,4/11/2023,0.04,Real Estate,https://www.geekwire.com/2023/redfin-lays-off-201-employees-as-housing-market-continues-to-retrench/,Post-IPO,320,United States,4/14/2023 +Permutive,"London, Non-U.S.",80.0,4/11/2023,0.4,Marketing,https://www.businessinsider.com/permutive-announces-second-round-of-layoffs-2023-4?IR=T,Series C,105,United Kingdom,4/14/2023 +Examedi,"Santiago, Non-U.S.",45.0,4/11/2023,0.25,Healthcare,https://contxto.com/en/startups-es/this-week-in-startups-softbank-shakeups-krans-funding-round-and-layoffs-at-examedi/,Unknown,19,Chile,4/17/2023 +Acxiom,Little Rock,,4/11/2023,,Marketing,https://www.thecabin.net/news/acxiom-reduces-workforce-following-assessment/article_82704fbb-6267-5072-a057-b8f026aabe7a.html,Post-IPO,,United States,4/12/2023 +Euler Motors,"New Delhi, Non-U.S.",,4/11/2023,0.1,Transportation,https://entrackr.com/2023/04/ev-firm-euler-motors-lays-off-10-of-workforce-citing-restructuring/,Series C,92,India,4/11/2023 +Reforge,SF Bay Area,,4/11/2023,,Education,https://www.linkedin.com/posts/bbalfour_today-i-made-the-difficult-decision-to-part-activity-7051721504803229697-4wf_/,Series B,81,United States,4/12/2023 +Flock Freight,San Diego,45.0,4/10/2023,0.08,Logistics,https://www.freightwaves.com/news/flock-freight-under-fire-insiders-recount-toxic-work-culture-leadership-failures,Series D,399,United States,5/18/2023 +Nori,Seattle,10.0,4/10/2023,0.37,Energy,https://www.geekwire.com/2023/carbon-removal-startup-nori-lays-off-10-employees-citing-market-concerns/,Unknown,13,United States,5/31/2023 +Simpl,"Bengaluru, Non-U.S.",150.0,4/9/2023,0.25,Finance,https://entrackr.com/2023/04/exclusive-bnpl-startup-simpl-layoffs-over-150-employees/,Series B,71,India,4/19/2023 +Practo,"Bengaluru, Non-U.S.",41.0,4/8/2023,,Healthcare,https://inc42.com/buzz/practo-fires-41-employees-over-performance-issues/?utm_source=ActiveCampaign&utm_medium=email&utm_content=Insurance-Dekho+s+LIC+Playbook+%7C+Layoffs+At+Practo%2C+ZestMoney+%7C+Online+Betting+Ads+Under+Govt+s+Radar&utm_campaign=Morning+Newsletter+-+New+Template+8+April&vgo_ee=PV2n3HwtkpF6%2FSWkTE%2BLbU2PnrHTL7zklbRFWZn49c8%2FivNE%2BQ%3D%3D%3AjFxYJjNMz0p5NucAgOKx1lsiGYMyZigG,Series D,222,India,4/9/2023 +Pear Therapeutics,Boston,170.0,4/7/2023,0.92,Healthcare,https://www.statnews.com/2023/04/07/pear-therapeutics-bankruptcy-stock-sale/,Post-IPO,409,United States,4/8/2023 +Workit Health,Ann Arbor,100.0,4/7/2023,,Healthcare,https://bhbusiness.com/2023/04/07/virtual-sud-provider-workit-lays-off-100-employees-in-anticipation-of-dea-crackdown/,Series C,138,United States,4/9/2023 +ZestMoney,"Bengaluru, Non-U.S.",100.0,4/7/2023,0.2,Finance,https://www.moneycontrol.com/news/business/announcements/zestmoney-weighs-layoffs-as-deal-with-phonepe-falls-through-10342251.html,Series C,120,India,4/1/2023 +Absolute Software,"Vancouver, Non-U.S.",40.0,4/6/2023,0.05,Security,https://www.absolute.com/company/press-releases/2023/absolute-software-announces-workforce-restructuring/,Post-IPO,,Canada,4/6/2023 +Avocargo,"Berlin, Non-U.S.",16.0,4/6/2023,1.0,Transportation,https://www.businessinsider.de/gruenderszene/automotive-mobility/lastenrad-startup-avocargo-stellt-betrieb-ein/,Seed,,Germany,4/8/2023 +Dunzo,"Bengaluru, Non-U.S.",300.0,4/5/2023,0.3,Food,https://economictimes.indiatimes.com/tech/newsletters/morning-dispatch/scoop-dunzo-secures-75m-via-convertible-notes-fires-30-staff-tim-cook-may-visit-india-as-apple-opens-first-company-owned-store/articleshow/99281436.cms,Unknown,382,India,4/6/2023 +Amplitude,SF Bay Area,99.0,4/5/2023,0.13,Data,https://amplitude.com/blog/team-update,Post-IPO,311,United States,4/5/2023 +Talent.com,"Montreal, Non-U.S.",86.0,4/5/2023,0.18,Recruiting,https://aimgroup.com/2023/04/05/talent-com-cuts-25-of-staff-source-says/,Series B,150,Canada,9/7/2023 +1K Kirana,"Gurugram, Non-U.S.",600.0,4/4/2023,0.4,Retail,https://www.moneycontrol.com/news/business/startup/info-edge-ventures-backed-1k-kirana-lays-off-40-workforce-to-restructure-business-10359421.html,Series B,,India,4/4/2023 +Foundation Medicine,Boston,135.0,4/4/2023,,Healthcare,https://www.foundationmedicine.com/blog/a-strong-foundation-for-the-future,Acquired,96,United States,4/9/2023 +Finder,"Sydney, Non-U.S.",40.0,4/4/2023,,Retail,https://www.smh.com.au/technology/finder-cuts-staff-for-the-second-time-in-three-months-20230404-p5cxwr.html,Unknown,30,Australia,4/11/2023 +Boost,New York City,15.0,4/4/2023,0.2,Finance,https://boostinsurance.com/blog/a-message-from-boost-ceo-alex-maffeo/,Series B,37,United States,4/5/2023 +Cin7,"Auckland, Non-U.S.",,4/4/2023,,Retail,https://www.nzherald.co.nz/business/post-pandemic-hangover-auckland-based-e-tail-specialist-cin7-culls-staff/3ZF4L4NA2RCSZCO3LHPKOZBNYQ/,Private Equity,,New Zealand,4/5/2023 +Hyland Software,Cleveland,1000.0,4/3/2023,0.2,Other,https://www.cleveland.com/news/2023/04/westlake-based-hyland-software-will-layoff-1000-employees-20-of-workforce.html?outputType=amp,Acquired,,United States,4/4/2023 +View,SF Bay Area,170.0,4/3/2023,0.23,Other,https://therealdeal.com/national/2023/04/03/view-cuts-23-of-staff-seeks-funds-to-survive-2023/,Post-IPO,2300,United States,4/5/2023 +Guideline,SF Bay Area,48.0,4/3/2023,0.11,Finance,https://layoffstracker.com/guideline-to-lay-off-48-employees-11-workforce/,Series E,339,United States,4/14/2023 +Textio,Seattle,15.0,4/3/2023,0.12,Recruiting,https://www.geekwire.com/2020/textio-lays-off-30-amid-covid-19-seattle-startup-hopes-ai-writing-tech-will-aid-job-seekers/,Unknown,42,United States,4/4/2023 +Apple,SF Bay Area,,4/3/2023,,Retail,https://www.bloomberg.com/news/articles/2023-04-03/apple-to-make-small-number-of-job-cuts-in-some-corporate-retail-teams#xj4y7vzkg,Post-IPO,6200,United States,4/5/2023 +Checkout.com,"London, Non-U.S.",,4/3/2023,,Finance,https://sifted.eu/articles/checkout-com-executives-quit-layoffs-2023,Series D,1800,United Kingdom,5/24/2023 +Domestika,"Madrid, Non-U.S.",89.0,3/31/2023,0.45,Education,https://www.lavanguardia.com/economia/20230331/8869692/domestika-prepara-ere-despedir-89-personas-espana.html,Series D,130,Spain,4/1/2023 +Airbyte,SF Bay Area,,3/31/2023,,Data,Internal memo,Series B,181,United States,4/12/2023 +Hulu,"Beijing, Non-U.S.",200.0,3/30/2023,,Media,https://en.pingwest.com/w/11542,Acquired,683,China,3/31/2023 +Roku,SF Bay Area,200.0,3/30/2023,0.06,Media,https://www.reuters.com/technology/streaming-device-maker-roku-cut-200-jobs-second-round-layoffs-2023-03-30/,Post-IPO,208,United States,3/30/2023 +LendingTree,Charlotte,150.0,3/30/2023,0.13,Finance,https://www.wsoctv.com/news/local/lendingtree-cutting-workforce-by-13-latest-layoff-round/264JH3PRKNE4TH3HUR5WA7T6XU/,Post-IPO,,United States,4/1/2023 +FanClash,"Gurugram, Non-U.S.",100.0,3/30/2023,0.75,Consumer,https://inc42.com/buzz/exclusive-sequoia-backed-fanclash-fires-75-workforce-within-a-year-of-raising-40-mn/,Series B,50,India,3/31/2023 +Loop,Austin,19.0,3/30/2023,0.25,Finance,https://coverager.com/loop-conducts-another-round-of-layoffs/,Series A,24,United States,4/3/2023 +Crossbeam,Philadelphia,17.0,3/30/2023,0.15,Sales,https://technical.ly/startups/crossbeam-layoffs-2023/ ,Series C,116,United States,6/1/2023 +Spotify,"Stockholm, Non-U.S.",15.0,3/30/2023,,Media,https://www.bloomberg.com/news/newsletters/2023-03-30/tensions-flare-inside-npr-after-staff-layoffs-and-town-halls,Post-IPO,2100,Sweden,4/1/2023 +AnswerLab,SF Bay Area,,3/30/2023,0.17,Marketing,https://www.linkedin.com/feed/update/urn:li:activity:7047309428986953729/,Unknown,,United States,3/31/2023 +Endowus,"Singapore, Non-U.S.",,3/30/2023,,Finance,https://www.techinasia.com/endowus-cuts-10-staff-market-downturn,Unknown,44,Singapore,8/7/2023 +GoodWorker,"Singapore, Non-U.S.",,3/30/2023,0.9,Recruiting,https://www.dealstreetasia.com/stories/goodworker-lays-off-staff-336649,Acquired,,Singapore,5/2/2023 +Kyndryl,New York City,,3/30/2023,,Infrastructure,https://www.channelfutures.com/business-models/kyndryl-confirms-layoffs-as-no-1-cost-is-always-flesh-and-bone,Post-IPO,,United States,4/1/2023 +Nowports,"Monterrey, Non-U.S.",,3/30/2023,0.15,Logistics,https://www.montevideo.com.uy/Noticias/Unicornio-Nowports-realizo-algunos-despidos-pero-dice-que-su-nivel-economico-es-fuerte--uc849751,Series C,,Mexico,5/10/2023 +Unacademy,"Bengaluru, Non-U.S.",,3/30/2023,0.12,Education,https://inc42.com/buzz/unacademy-fires-380-employees-fourth-round-layoffs-12-months/,Series H,838,India,3/30/2023 +CoverMyMeds,Columbus,800.0,3/29/2023,,Healthcare,https://www.dispatch.com/story/business/information-technology/2023/03/29/covermymeds-latest-columbus-tech-firm-to-lay-off-hundreds/70059386007/,Acquired,5,United States,3/29/2023 +Electronic Arts,SF Bay Area,780.0,3/29/2023,0.06,Consumer,https://www.wsj.com/articles/electronic-arts-says-it-is-laying-off-6-of-workforce-d9c2b7e1?mod=djemalertNEWS,Post-IPO,2,United States,3/29/2023 +Seagate,SF Bay Area,480.0,3/29/2023,,Hardware,https://in.investing.com/news/seagate-unveils-further-round-of-layoffs-citing-economic-uncertainty-3578578,Post-IPO,,United States,4/1/2023 +Drizly,Boston,100.0,3/29/2023,,Retail,https://www.brewbound.com/news/drizly-employees-affected-by-layoff-tidal-wave/,Acquired,119,United States,3/31/2023 +iCAD,Nashua,23.0,3/29/2023,0.28,Healthcare,https://www.medtechdive.com/news/iCAD-AI-layoffs-new-ceo/646300/,Post-IPO,59,United States,4/8/2023 +Anyline,"Vienna, Non-U.S.",,3/29/2023,0.25,Other,https://brutkasten.com/artikel/anyline-jobabbau,Series B,37,Austria,3/31/2023 +OnePipe,"Lagos, Non-U.S.",,3/29/2023,,Finance,https://disrupt-africa.com/2023/03/29/nigerian-fintech-startup-onepipe-secures-4-8m-credit-facility-lays-off-staff/,Seed,9,Nigeria,3/31/2023 +Shift,SF Bay Area,,3/29/2023,0.3,Transportation,https://techcrunch.com/2023/03/29/online-used-car-marketplace-shift-cuts-workforce-30-following-carlotz-merger/,Post-IPO,504,United States,3/29/2023 +Lucid Motors,SF Bay Area,1300.0,3/28/2023,0.18,Transportation,https://techcrunch.com/2023/03/28/lucid-to-lay-off-1300-employees-in-restructuring/,Post-IPO,8300,United States,3/29/2023 +Blue Nile,Seattle,119.0,3/28/2023,,Retail,https://www.retaildive.com/news/blue-nile-to-lay-off-119-workers-close-seattle-fulfillment-center/646172/,Acquired,62,United States,3/29/2023 +AEye,SF Bay Area,46.0,3/28/2023,0.33,Transportation,https://investors.aeye.ai/node/8921/html,Post-IPO,314,United States,3/29/2023 +Rackspace,San Antonio,275.0,3/27/2023,,Data,https://www.bizjournals.com/sanantonio/news/2023/03/27/rackspace-reducing-workforce.html,Acquired,17,United States,3/28/2023 +Better Therapeutics,SF Bay Area,,3/27/2023,0.35,Healthcare,https://www.mobihealthnews.com/news/prescription-digital-therapeutics-company-better-therapeutics-announces-layoffs,Post-IPO,143,United States,4/1/2023 +Aspiration,Los Angeles,170.0,3/24/2023,,Finance,"https://ccwd.hecc.oregon.gov/Layoff/uploads/LOT8534/WARN%208534%20Aspirations,%20OR%20-%20Govt%20Official%20WARN%20letter.pdf",Unknown,250,United States,3/29/2023 +The Meet Group,New Hope,,3/24/2023,,Consumer,https://technical.ly/startups/the-meet-group-geoff-cook-layoffs-parship-reorganization/,Acquired,,United States,3/29/2023 +Cimpress,"Paris, Non-U.S.",500.0,3/23/2023,,Retail,https://www.marketwatch.com/story/cimpress-plans-to-cut-about-500-jobs-768d3efc,Post-IPO,300,France,4/11/2023 +Veeam,Columbus,200.0,3/23/2023,,Data,https://blocksandfiles.com/2023/03/23/200-people-get-laid-off-by-veeam/,Acquired,500,United States,3/24/2023 +Glovo,"Barcelona, Non-U.S.",140.0,3/23/2023,,Food,https://www.eldiario.es/economia/glovo-acuerda-ere-oficinas-despedir-140-trabajadores_1_10061101.html,Acquired,1200,Spain,2/5/2024 +TakeOff,"Kyiv, Non-U.S.",50.0,3/23/2023,,Retail,https://dou.ua/lenta/news/takeoff-layoff/?,Unknown,146,Ukraine,3/26/2023 +Slite,"Paris, Non-U.S.",10.0,3/23/2023,0.25,Other,https://www.linkedin.com/posts/christophepasquier_we-always-pride-ourselves-to-grow-healthily-activity-7044698064845971456-s_EB/,Series A,15,France,3/24/2023 +Indeed,Austin,2200.0,3/22/2023,0.15,HR,https://www.indeed.com/press/releases/a-message-from-our-ceo-chris-hyams,Acquired,5,United States,3/22/2023 +Logitech,"Geneva, Non-U.S.",300.0,3/22/2023,,Hardware,https://www.bloomberg.com/news/articles/2023-03-22/logitech-cuts-300-jobs-on-post-covid-slump-in-computer-gadgets?srnd=technology-vp#xj4y7vzkg,Post-IPO,,Switzerland,3/23/2023 +Glassdoor,SF Bay Area,140.0,3/22/2023,0.15,HR,https://www.glassdoor.com/about-us/a-message-from-glassdoor-ceo-christian-sutherland-wong/,Acquired,204,United States,3/22/2023 +Wejo,"Chester, Non-U.S.",40.0,3/22/2023,0.16,Transportation,https://wejo.gcs-web.com/node/7461/html,Post-IPO,376,United Kingdom,3/24/2023 +Copper,"London, Non-U.S.",,3/22/2023,0.15,Crypto,https://www.coindesk.com/business/2023/03/22/copper-to-make-up-to-15-of-staff-redundant-focus-on-custody-settlement/,Series C,281,United Kingdom,7/5/2023 +Rewind,"Ottawa, Non-U.S.",,3/22/2023,,Data,https://rewind.com/blog/a-difficult-update-at-rewind/,Series B,80,Canada,3/22/2023 +Roofstock,SF Bay Area,,3/22/2023,0.27,Real Estate,https://techcrunch.com/2023/03/22/roofstock-valued-at-1-9b-last-year-cuts-27-of-staff-in-second-round-of-layoffs/,Series E,365,United States,3/23/2023 +Just Eat,"London, Non-U.S.",1700.0,3/21/2023,,Food,https://www.yahoo.com/entertainment/just-eat-lay-off-1-124953457.html,Acquired,,United Kingdom,3/21/2023 +Marvell,SF Bay Area,320.0,3/21/2023,0.04,Hardware,https://www.bloomberg.com/news/articles/2023-03-21/marvell-to-cut-4-of-workforce-in-response-to-chip-slowdown?leadSource=uverify%20wall,Post-IPO,,United States,3/21/2023 +Workhuman,"Dublin, Non-U.S.",130.0,3/21/2023,0.1,HR,https://www.independent.ie/business/technology/irish-tech-unicorn-workhuman-to-lay-off-10pc-of-staff-42397380.html,Unknown,131,Ireland,3/21/2023 +FreshBooks,"Toronto, Non-U.S.",80.0,3/21/2023,0.1,Finance,https://betakit.com/freshbooks-lays-off-10-percent-of-staff/,Unknown,331,Canada,3/21/2023 +Xing,"Hamburg, Non-U.S.",68.0,3/21/2023,,HR,https://www.mopo.de/hamburg/wegen-neuer-ausrichtung-hamburgs-job-netzwerk-xing-entlaesst-68-mitarbeiter/,Series A,,Germany,3/21/2023 +Mr Yum,"Melbourne, Non-U.S.",40.0,3/21/2023,,Food,https://www.linkedin.com/feed/update/urn:li:activity:7043914147142520832/,Series A,101,Australia,3/21/2023 +Smallcase,"Bengaluru, Non-U.S.",15.0,3/21/2023,0.04,Finance,https://www.businesstoday.in/entrepreneurship/news/story/startup-layoffs-sequoia-backed-smallcase-lays-off-4-employees-374171-2023-03-20,Series C,62,India,3/21/2023 +Expedia,Seattle,,3/21/2023,,Travel,https://www.geekwire.com/2023/expedia-group-lays-off-workers-as-part-of-strategic-actions/,Post-IPO,3300,United States,3/22/2023 +GAMURS Group,"Sydney, Non-U.S.",,3/21/2023,,Consumer,https://esportsinsider.com/2023/03/layoffs-gamurs-group,Series A,17,Australia,3/23/2023 +Grin,Sacramento,,3/21/2023,,Marketing,https://www.businessinsider.com/influencer-marketing-platform-grin-lays-off-staffers-2023-3,Series B,145,United States,3/24/2023 +Laybuy,"Auckland, Non-U.S.",,3/21/2023,0.1,Finance,https://www.nbr.co.nz/investment/laybuy-begins-further-restructure-affecting-10-of-staff/,Post-IPO,130,New Zealand,3/21/2023 +Amazon,Seattle,9000.0,3/20/2023,,Retail,https://www.cnbc.com/2023/03/20/amazon-layoffs-company-to-cut-off-9000-more-workers.html,Post-IPO,108,United States,3/20/2023 +Huuuge Games,"Warsaw, Non-U.S.",,3/20/2023,0.1,Consumer,"https://biznes.pap.pl/espi/pl/reports/view/2,530635",Series C,57,Poland,3/21/2023 +Livspace,"Bengaluru, Non-U.S.",100.0,3/17/2023,0.02,Retail,https://inc42.com/buzz/exclusive-home-decor-unicorn-livspace-lays-off-100-employees/,Series F,431,India,3/20/2023 +Symend,"Calgary, Non-U.S.",50.0,3/17/2023,0.25,Other,https://betakit.com/symend-reduces-team-by-25-percent-in-restructuring-four-months-after-54-million-round/,Series C,148,Canada,3/23/2023 +Candor Technology,Atlanta,,3/17/2023,,Real Estate,https://www.housingwire.com/articles/mortgage-ai-firm-candor-conducts-layoffs/,Unknown,23,United States,3/17/2023 +Freshworks,SF Bay Area,114.0,3/16/2023,0.02,Support,https://www.moneycontrol.com/news/business/freshworks-undertakes-another-round-of-layoffs-10259901.html,Post-IPO,484,United States,3/16/2023 +Coherent,SF Bay Area,108.0,3/16/2023,,Manufacturing,https://www.siliconvalley.com/2023/03/16/coherent-fremont-job-cut-tech-layoff-google-facebook-twitter-economy/,Post-IPO,,United States,3/17/2023 +Runtastic,"Linz, Non-U.S.",70.0,3/16/2023,0.28,Fitness,"https://www.nachrichten.at/wirtschaft/runtastic-streicht-70-von-250-stellen-in-oesterreich;art15,3804088a",Acquired,,Austria,3/16/2023 +Course Hero,SF Bay Area,42.0,3/16/2023,0.15,Education,https://techcrunch.com/2023/03/16/course-hero-edtech-unicorn-last-valued-at-3-6-billion-conducts-layoffs/,Series C,477,United States,3/16/2023 +Leafly,Seattle,40.0,3/16/2023,0.21,Retail,https://www.geekwire.com/2023/leafly-reportedly-lays-off-employees-for-second-time-in-a-year/,Post-IPO,71,United States,3/17/2023 +Bonusly,Boulder,,3/16/2023,,HR,https://www.bizjournals.com/denver/news/2023/03/16/boulder-software-startup-bonusly-layoffs.html,Series B,31,United States,3/17/2023 +Klaviyo,Boston,140.0,3/15/2023,,Marketing,https://techcrunch.com/2023/03/15/klaviyo-conducts-company-wide-layoffs/,Unknown,778,United States,3/16/2023 +Dukaan,"Bengaluru, Non-U.S.",56.0,3/15/2023,0.3,Retail,https://inc42.com/buzz/exclusive-lightspeed-backed-dukaan-lays-off-30-workforce/,Series A,17,India,3/16/2023 +Boxed,New York City,32.0,3/15/2023,0.25,Retail,https://www.crainsnewyork.com/technology/e-commerce-firm-boxedcom-shed-25-staff-it-looks-buyer,Post-IPO,365,United States,3/17/2023 +Nubank,"Sao Paulo, Non-U.S.",30.0,3/15/2023,,Finance,https://brazilian.report/liveblog/politics-insider/2023/06/07/nubank-layoffs-restructuring/,Post-IPO,4100,Brazil,6/8/2023 +TradeWindow,"Auckland, Non-U.S.",25.0,3/15/2023,0.3,Finance,https://www.nbr.co.nz/investment/tradewindow-to-cut-a-third-of-workforce/,Series B,24,New Zealand,3/15/2023 +Hometap,Boston,,3/15/2023,,Real Estate,https://www.bizjournals.com/boston/news/2023/03/15/hometap-cuts-jobs-in-sales-and-operations.html,Unknown,172,United States,3/18/2023 +Meta,SF Bay Area,10000.0,3/14/2023,,Consumer,https://about.fb.com/news/2023/03/mark-zuckerberg-meta-year-of-efficiency/,Post-IPO,26000,United States,3/14/2023 +Fetch,Madison,100.0,3/14/2023,0.1,Retail,https://www.theinformation.com/articles/softbank-backed-fetch-rewards-cuts-staff-amid-shopping-slowdown?rc=yjxoek,Series E,581,United States,3/14/2023 +Anchorage Digital,SF Bay Area,75.0,3/14/2023,0.2,Crypto,https://www.theinformation.com/briefings/crypto-bank-anchorage-digital-lays-off-20-of-staff,Series D,487,United States,3/15/2023 +Avidbots,"Kitchener, Non-U.S.",50.0,3/14/2023,0.14,Hardware,https://www.therecord.com/business/2023/03/14/very-difficult-decision-kitchener-robotics-firm-avidbots-confirms-layoffs.html,Series C,106,Canada,3/17/2023 +Samsung,SF Bay Area,30.0,3/14/2023,,Hardware,https://www.zeebiz.com/companies/news-samsung-layoffs-2023-south-korean-giant-cuts-3-jobs-at-us-chip-subsidiary-225788,Post-IPO,,United States,3/15/2023 +Kaleidoscope,Minneapolis,15.0,3/14/2023,0.3,Finance,https://www.bizjournals.com/twincities/inno/stories/news/2023/03/14/minneapolis-fintech-startup-layoff-kaleidoscope.html,Series A,16,United States,3/17/2023 +GoTo Group,"Jakarta, Non-U.S.",600.0,3/10/2023,,Transportation,https://www.reuters.com/technology/indonesia-tech-firm-goto-announces-layoffs-impacts-around-600-roles-statement-2023-03-10/,Post-IPO,1300,Indonesia,3/10/2023 +Cookpad,"Tokyo, Non-U.S.",80.0,3/10/2023,,Consumer,https://www.nikkei.com/article/DGXZQOUC109F70Q3A310C2000000/,Unknown,,Japan,3/15/2023 +Xero,"Wellington, Non-U.S.",800.0,3/9/2023,0.15,Finance,https://www.stuff.co.nz/business/300826021/xero-plans-to-cut-up-to-800-jobs,Post-IPO,681,New Zealand,3/9/2023 +Shopee,"Jakarta, Non-U.S.",200.0,3/9/2023,,Food,https://www.techinasia.com/shopee-conducts-new-layoffs-in-indonesia,Unknown,,Indonesia,3/10/2023 +Gopuff,Philadelphia,100.0,3/9/2023,0.02,Food,https://www.bloomberg.com/news/articles/2023-03-09/gopuff-fires-2-of-workforce-in-latest-round-of-job-cuts#xj4y7vzkg,Series H,3400,United States,3/10/2023 +Wave Financial,"Toronto, Non-U.S.",50.0,3/9/2023,,Finance,https://thelogic.co/briefing/fintech-wave-financial-lays-off-50-employees/,Acquired,79,Canada,3/10/2023 +Morning Brew,New York City,40.0,3/9/2023,,Media,https://www.axios.com/2023/03/09/morning-brew-lays-off-40-people,Acquired,,United States,3/9/2023 +Bonusly,Boulder,,3/9/2023,,HR,https://www.linkedin.com/posts/victoriayang_community-opentowork-people-activity-7039726482155352064-sIoK/,Series B,31,United States,3/10/2023 +Neoleukin Therapeutics,Seattle,,3/9/2023,0.7,Healthcare,https://www.geekwire.com/2023/shares-of-neoleukin-therapeutics-spike-after-announcing-layoffs-and-potential-sale-or-merger/,Post-IPO,157,United States,3/13/2023 +Toucan,Los Angeles,,3/9/2023,1.0,Education,https://www.linkedin.com/posts/taylornieman_some-news-coming-out-of-the-toucan-nest-today-activity-7039679436387995648-uFyA/,Series A,,United States,3/10/2023 +Wattpad,"Toronto, Non-U.S.",42.0,3/8/2023,0.15,Media,https://betakit.com/wattpad-lays-off-15-percent-of-workforce/,Acquired,117,Canada,3/9/2023 +Appcues,Boston,,3/8/2023,0.15,Data,https://www.bizjournals.com/boston/news/2023/03/08/appcues-lays-off-nearly-15-of-workforce.html,Series B,52,United States,3/11/2023 +Pristyn Care,"Gurugram, Non-U.S.",300.0,3/7/2023,0.15,Healthcare,https://yourstory.com/2023/03/sequoia-backed-pristyn-care-lays-off-300-employees-shuts-medical-tourism-vertical,Series E,177,India,3/7/2023 +Zwift,Los Angeles,80.0,3/7/2023,0.15,Fitness,https://www.dcrainmaker.com/2023/03/zwift-layoffs-announces-reducing-workforce.html,Series C,619,United States,3/8/2023 +Catch,New York City,,3/7/2023,1.0,Finance,https://catch.co/thank-you/,Series A,18,United States,3/7/2023 +RDX Works,"London, Non-U.S.",,3/7/2023,0.25,Crypto,https://telegra.ph/RDX-Works-Company-Update-Mar-2023-03-07,Unknown,6,United Kingdom,3/23/2023 +Take-Two Interactive,New York City,,3/7/2023,,Consumer,https://www.gamespot.com/articles/gta-parent-company-confirms-layoffs-primarily-impacting-non-development-positions/1100-6512117/,Post-IPO,2700,United States,3/8/2023 +Zulily,Seattle,,3/7/2023,,Retail,https://www.geekwire.com/2023/zulily-lays-off-employees-for-the-second-time-in-a-year-amid-revenue-declines/,Acquired,194,United States,3/10/2023 +Atlassian,"Sydney, Non-U.S.",500.0,3/6/2023,0.05,Other,https://www.cnbc.com/2023/03/06/atlassian-cuts-5percent-of-headcount-as-it-focuses-on-high-priority-areas.html,Post-IPO,210,Australia,3/7/2023 +SiriusXM,New York City,475.0,3/6/2023,0.08,Media,https://variety.com/2023/digital/news/siriusxm-layoffs-465-employees-1235543907/,Post-IPO,525,United States,3/7/2023 +Alerzo,"Ibadan, Non-U.S.",400.0,3/6/2023,,Retail,https://techcabal.com/2023/03/06/alerzo-lays-off-900/,Series B,16,Nigeria,3/7/2023 +UKG,Miami,265.0,3/6/2023,,HR,https://www.bizjournals.com/boston/news/2023/03/09/ukg-cuts-over-260-positions-worldwide.html,Unknown,,United States,3/8/2023 +UpGrad,"Mumbai, Non-U.S.",120.0,3/6/2023,,Education,https://www.financialexpress.com/industry/upgrad-lays-off-30-workforce-at-subsidiary/3000299/lite/,Unknown,631,India,3/7/2023 +HomeLane,"Bengaluru, Non-U.S.",30.0,3/6/2023,,Retail,https://www.thehindubusinessline.com/companies/homelane-lays-off-30-40-employees-in-product-tech-roles/article66587127.ece,Series E,116,India,4/8/2023 +Ankorstore,"Paris, Non-U.S.",,3/6/2023,,Retail,https://www.businessinsider.com/ankorstore-tiger-global-backed-startup-set-to-slash-roles-sources-say-2023-3,Series C,365,France,3/8/2023 +No Fluff Jobs,"Gydnia, Non-U.S.",13.0,3/4/2023,,HR,https://www.wirtualnemedia.pl/artykul/zwolnienia-no-fluff-jobs-praca-oferty,Acquired,,Poland,4/3/2023 +Loft,"Sao Paulo, Non-U.S.",340.0,3/3/2023,0.15,Real Estate,https://startups.com.br/demissoes/loft/,Unknown,788,Brazil,3/3/2023 +Embark Trucks,SF Bay Area,230.0,3/3/2023,0.7,Transportation,https://techcrunch.com/2023/03/03/embark-trucks-lays-off-workers-explores-liquidation-of-self-driving-truck-assets/,Post-IPO,317,United States,3/3/2023 +Lendi,"Sydney, Non-U.S.",100.0,3/3/2023,,Real Estate,https://www.theaustralian.com.au/business/financial-services/cbabacked-lendi-cuts-jobs-amid-slowing-home-loan-market/news-story/2c3af53306e8f7142076c19a9b2914bb?amp&nk=0a6e5860a1d2cd2b0ebc810544084b9b-1677884919,Unknown,59,Australia,3/3/2023 +UserTesting,SF Bay Area,63.0,3/3/2023,,Marketing,https://www.bizjournals.com/sanfrancisco/news/2023/03/03/usertesting-userzoom-thoma-bravo-layoffs-sunstone.html,Acquired,152,United States,3/4/2023 +Airbnb,SF Bay Area,30.0,3/3/2023,,Travel,https://www.bloomberg.com/news/articles/2023-03-03/airbnb-layoffs-hit-recruiting-staff-even-as-it-selectively-hires,Post-IPO,6400,United States,3/4/2023 +Accolade,Seattle,,3/3/2023,,Healthcare,https://www.bizjournals.com/seattle/news/2023/03/03/accolade-layoffs-reducing-office-footprint-seattle.html,Post-IPO,458,United States,3/7/2023 +Indigo,Boston,,3/3/2023,,Other,https://www.bizjournals.com/boston/news/2023/03/03/indigo-ag-layoffs-2023.html,Series F,1200,United States,3/4/2023 +Zscaler,SF Bay Area,177.0,3/2/2023,0.03,Security,https://www.crn.com/news/security/zscaler-discloses-layoffs-for-3-percent-of-employees,Post-IPO,148,United States,3/3/2023 +MasterClass,SF Bay Area,79.0,3/2/2023,,Education,https://www.bizjournals.com/sanfrancisco/news/2023/03/02/masterclass-yanka-layoffs-education-tech-celebs.html,Series E,461,United States,3/4/2023 +Ambev Tech,"Blumenau, Non-U.S.",50.0,3/2/2023,,Food,https://omunicipioblumenau.com.br/economia-em-pauta-ambev-tech-de-blumenau-demite-50-funcionarios-e-interrompe-abertura-de-vagas/,Acquired,,Brazil,3/4/2023 +Fittr,"Pune, Non-U.S.",30.0,3/2/2023,0.11,Fitness,https://inc42.com/buzz/exclusive-fittr-lays-off-11-of-workforce-after-losses-pile-up/,Series A,13,India,3/3/2023 +CNET,SF Bay Area,12.0,3/2/2023,0.1,Media,https://www.theverge.com/2023/3/2/23622231/cnet-layoffs-ai-articles-seo-red-ventures,Acquired,20,United States,3/4/2023 +Comparis,"Zurich, Non-U.S.",,3/2/2023,0.1,Finance,https://www.nzz.ch/finanzen/massenentlassung-bei-comparis-das-vergleichsportal-sieht-sich-als-opfer-der-finanzmarktaufsicht-ld.1728686?reduced=true,Unknown,,Switzerland,3/8/2023 +Flipkart,"Bengaluru, Non-U.S.",,3/2/2023,,Retail,https://economictimes.indiatimes.com/prime/technology-and-startups/inside-flipkarts-downsizing-drive-layoffs-meagre-pay-hikes-more-pips/primearticleshow/98342831.cms,Acquired,12900,India,3/7/2023 +Kandela,Los Angeles,,3/2/2023,1.0,Consumer,https://therealdeal.com/la/2023/03/02/moving-concierge-startup-kandela-declares-bankruptcy/,Acquired,,United States,3/5/2023 +Orchard,New York City,,3/2/2023,,Real Estate,https://www.linkedin.com/posts/orchardhomes_today-we-announced-the-sad-news-that-we-are-activity-7037112016125231106--GHj/,Series D,472,United States,3/19/2023 +Truckstop.com,Boise,,3/2/2023,,Logistics,https://www.freightwaves.com/news/size-of-layoffs-at-truckstop-com-unknown,Acquired,,United States,3/4/2023 +Thoughtworks,Chicago,500.0,3/1/2023,0.04,Other,https://techcrunch.com/2023/03/01/thoughtworks-layoffs-economic-slowdown/,Post-IPO,748,United States,3/2/2023 +iFood,"Sao Paulo, Non-U.S.",355.0,3/1/2023,0.06,Food,https://economia.uol.com.br/noticias/redacao/2023/03/01/ifood-demissao-funcionarios.htm,Subsidiary,2100,Brazil,3/2/2023 +Color Health,SF Bay Area,300.0,3/1/2023,,Healthcare,https://www.beckershospitalreview.com/digital-health/color-health-lays-off-300-employees-amid-shift-away-from-covid-19-testing.html,Series E,482,United States,3/3/2023 +Waymo,SF Bay Area,209.0,3/1/2023,0.08,Transportation,https://www.theinformation.com/articles/alphabets-robotaxi-unit-waymo-says-it-laid-off-8,Subsidiary,5500,United States,3/2/2023 +PayFit,"Paris, Non-U.S.",200.0,3/1/2023,0.2,HR,https://www.lesechos.fr/start-up/next40-vivatech/payfit-se-separe-de-20-de-ses-effectifs-1910932,Series E,495,France,3/2/2023 +Yellow.ai,SF Bay Area,200.0,3/1/2023,,Support,https://inc42.com/buzz/conversational-ai-startup-yellow-ai-fires-200-employees/,Series C,102,United States,3/2/2023 +Sonder,SF Bay Area,100.0,3/1/2023,0.14,Travel,https://www.sec.gov/ix?doc=/Archives/edgar/data/0001819395/000181939523000010/son-20230301.htm,Post-IPO,839,United States,3/2/2023 +Protego Trust Bank,Seattle,,3/1/2023,0.5,Crypto,https://www.coindesk.com/business/2023/03/01/crypto-bank-charter-firm-protego-trust-lays-off-most-of-its-workforce-source/,Series A,70,United States,3/3/2023 +Electronic Arts,Baton Rouge,200.0,2/28/2023,,Consumer,https://kotaku.com/ea-apex-legends-bugs-layoffs-respawn-zoom-1850168472,Post-IPO,2,United States,3/2/2023 +Eventbrite,SF Bay Area,80.0,2/28/2023,0.08,Consumer,https://www.reuters.com/markets/us/ticketing-service-provider-eventbrite-lay-off-8-workforce-2023-02-28/,Post-IPO,557,United States,3/1/2023 +Ezoic,San Diego,10.0,2/28/2023,,Infrastructure,https://www.businessinsider.com/an-adtech-employee-stole-a-9m-payment-sent-by-google-and-used-it-to-buy-gold-2023-4,Series A,39,United States,7/21/2023 +DUX Education,"Bengaluru, Non-U.S.",,2/28/2023,1.0,Education,https://inc42.com/buzz/edtech-startup-dux-education-to-cease-operations-by-april-2023/,Unknown,,India,3/3/2023 +MeridianLink,Los Angeles,,2/28/2023,0.09,Finance,https://www.marketscreener.com/quote/stock/MERIDIANLINK-INC-125185257/news/MeridianLink-A-Message-from-MeridianLink-CEO-Nicolaas-Vlok-43111536/,Post-IPO,485,United States,3/1/2023 +Sono Motors,"Munich, Non-U.S.",300.0,2/27/2023,,Transportation,https://twitter.com/sonomotors/status/1630246207137419264,Post-IPO,126,Germany,2/28/2023 +Cerebral,SF Bay Area,285.0,2/27/2023,0.15,Healthcare,https://www.businessinsider.com/cerebral-cuts-15-percent-staff-285-employees-layoffs-february-2023-2,Series C,462,United States,2/27/2023 +Amount,Chicago,130.0,2/27/2023,0.25,Finance,https://www.chicagobusiness.com/finance-banking/fintech-amount-cuts-about-quarter-its-staff,Unknown,283,United States,3/3/2023 +Palantir,Denver,75.0,2/27/2023,0.02,Data,https://www.cnbc.com/2023/02/27/palantir-layoffs-75-employees-2percent-of-workforce.html,Post-IPO,3000,United States,2/27/2023 +Outreach,Seattle,70.0,2/27/2023,0.07,Sales,https://www.geekwire.com/2023/sales-startup-outreach-to-lay-off-70-employees-7-of-workforce-and-slow-office-expansion/,Series G,489,United States,2/28/2023 +Stytch,SF Bay Area,19.0,2/27/2023,0.25,Security,https://www.bizjournals.com/sanfrancisco/inno/stories/news/2023/02/27/s-f-startup-stytch-lays-off-25-of-staff.html,Series B,126,United States,3/1/2023 +BitSight,"Tel Aviv, Non-U.S.",40.0,2/26/2023,,Security,https://www.calcalistech.com/ctechnews/article/r1zxrmkri,Unknown,401,Israel,2/27/2023 +Twitter,SF Bay Area,200.0,2/25/2023,0.1,Consumer,https://www.nytimes.com/2023/02/26/technology/twitter-layoffs.html,Post-IPO,12900,United States,2/26/2023 +Ericsson,"Stockholm, Non-U.S.",8500.0,2/24/2023,0.08,Other,https://www.reuters.com/business/media-telecom/ericsson-lay-off-8500-employees-memo-2023-02-24/,Post-IPO,663,Sweden,2/24/2023 +SAP Labs,"Bengaluru, Non-U.S.",300.0,2/24/2023,,Other,https://economictimes.indiatimes.com/tech/technology/sap-labs-lays-off-300-staffers-in-india/articleshow/98189199.cms,Subsidiary,1300,India,2/24/2023 +Velodyne Lidar,SF Bay Area,220.0,2/24/2023,,Transportation,https://www.mercurynews.com/2023/02/24/tech-biotech-job-cut-san-jose-san-mateo-pleasanton-layoff-covid/,Acquired,575,United States,2/24/2023 +Medallia,SF Bay Area,59.0,2/24/2023,,Support,https://www.mercurynews.com/2023/02/24/tech-biotech-job-cut-san-jose-san-mateo-pleasanton-layoff-covid/,Acquired,325,United States,2/24/2023 +Eat Just,SF Bay Area,40.0,2/24/2023,,Food,https://www.bloomberg.com/news/articles/2023-02-24/eat-just-to-cut-about-18-of-staff-in-plant-based-egg-division#xj4y7vzkg,Unknown,465,United States,2/27/2023 +Lucira Health,SF Bay Area,26.0,2/24/2023,,Healthcare,https://www.mercurynews.com/2023/02/24/tech-biotech-job-cut-san-jose-san-mateo-pleasanton-layoff-covid/,Post-IPO,132,United States,2/24/2023 +Stax,Orlando,24.0,2/24/2023,,Finance,https://www.bizjournals.com/orlando/inno/stories/news/2023/02/24/florida-2023-tech-jobs-layoffs-stax-technology.html,Series D,263,United States,2/26/2023 +EQRx,Boston,,2/24/2023,0.18,Healthcare,https://www.biopharmadive.com/news/eqrx-biotech-layoffs-jobs-restructuring/643507/,Post-IPO,1900,United States,5/5/2023 +Poshmark,SF Bay Area,,2/24/2023,0.02,Retail,https://techcrunch.com/2023/02/24/poshmark-lays-off-employees-just-two-months-after-being-acquired-by-naver/amp/,Acquired,153,United States,2/24/2023 +Merative,Ann Arbor,200.0,2/23/2023,0.1,Healthcare,https://www.theregister.com/2023/02/23/merative_job_cuts_ibm_watson/,Acquired,,United States,2/26/2023 +OneFootball,"Berlin, Non-U.S.",150.0,2/23/2023,0.32,Marketing,https://www.businessinsider.de/gruenderszene/business/massenentlassung-onefootball/,Series D,442,Germany,2/24/2023 +The Iconic,"Sydney, Non-U.S.",69.0,2/23/2023,0.06,Retail,https://insideretail.com.au/business/the-iconic-culls-69-roles-as-it-morphs-from-marketplace-to-platform-202302,Unknown,,Australia,2/24/2023 +EVgo,Los Angeles,40.0,2/23/2023,,Transportation,https://www.businesswire.com/news/home/20230223005797/en/EVgo-Inc.-Aligns-Organization-Around-Growing-Its-Charging-Network,Post-IPO,400,United States,2/24/2023 +StrongDM,SF Bay Area,40.0,2/23/2023,,Infrastructure,https://www.strongdm.com/blog/strongdm-company-update-letter-from-ceo-to-staff,Series B,76,United States,2/23/2023 +Dapper Labs,"Vancouver, Non-U.S.",,2/23/2023,0.2,Crypto,https://www.theblock.co/post/214755/dapper-labs-said-to-lay-off-20-more-of-its-full-time-employees,Series D,607,Canada,2/23/2023 +Messari,New York City,,2/23/2023,0.15,Crypto,https://www.coindesk.com/business/2023/02/23/crypto-analytics-firm-messari-cuts-15-workforce-as-part-of-restructuring/,Series B,61,United States,2/23/2023 +Vibrent Health,Washington D.C.,,2/23/2023,0.13,Healthcare,https://www.bizjournals.com/washington/news/2023/02/23/fairfax-vibrent-health-tech-data-startup-layoffs.html,Unknown,,United States,2/26/2023 +Synamedia,"London, Non-U.S.",200.0,2/22/2023,0.12,Media,https://www.calcalistech.com/ctechnews/article/hk2uvdqcs,Unknown,,United Kingdom,2/27/2023 +TaskUs,San Antonio,186.0,2/22/2023,,Support,https://www.expressnews.com/business/article/taskus-layoff-186-employees-san-antonio-17798813.php,Post-IPO,279,United States,2/23/2023 +Arch Oncology,St. Louis,,2/22/2023,,Healthcare,https://www.bizjournals.com/stlouis/inno/stories/news/2023/02/22/arch-oncology-layoffs-leaves-cortex-office.html,Series C,155,United States,2/23/2023 +Immutable,"Sydney, Non-U.S.",,2/22/2023,0.11,Crypto,https://www.smh.com.au/technology/australia-s-biggest-crypto-gaming-start-up-slashes-staff-20230222-p5cmii.html,Series C,279,Australia,2/22/2023 +Jounce Therapeutics,Boston,,2/22/2023,0.57,Healthcare,https://www.globenewswire.com/news-release/2023/02/22/2613789/0/en/Jounce-Therapeutics-Announces-Restructuring.html,Acquired,194,United States,2/26/2023 +Locomation,Pittsburgh,,2/22/2023,1.0,Transportation,https://www.bizjournals.com/pittsburgh/news/2023/02/22/locomation-shutting-down-operations-out-of-fund.html,Seed,57,United States,2/23/2023 +Green Labs,"Seoul, Non-U.S.",350.0,2/21/2023,0.7,Food,https://techcrunch.com/2023/03/30/green-labs-secures-38-4m-in-debt-financing-about-a-month-after-conducting-layoff/,Series C,214,South Korea,2/21/2023 +Polygon,"Bengaluru, Non-U.S.",100.0,2/21/2023,0.2,Crypto,https://inc42.com/buzz/polygon-lays-off-20-of-its-workforce-as-part-of-consolidation-process/,Unknown,451,India,2/21/2023 +Crunchyroll,"Tokyo, Non-U.S.",85.0,2/21/2023,,Media,https://www.animenewsnetwork.com/news/2023-02-21/crunchyroll-lays-off-approximately-85-employees-globally/.195161,Unknown,26,Japan,2/22/2023 +Ethos Life,SF Bay Area,50.0,2/21/2023,,Finance,https://www.coverager.com/ethos-conducts-another-round-of-layoffs/,Series D,406,United States,2/24/2023 +Basis Technologies,Chicago,40.0,2/21/2023,0.04,Marketing,https://www.mediapost.com/publications/article/382752/basis-technologies-lays-off-employees-as-it-restru.html,Series B,52,United States,6/20/2023 +Bolt,"Lagos, Non-U.S.",17.0,2/21/2023,,Transportation,https://techpoint.africa/2023/02/21/bolt-lays-off-17-of-its-70-workers-in-nigeria/,Series F,,Nigeria,2/22/2023 +Criteo,"Paris, Non-U.S.",,2/21/2023,,Marketing,https://digiday.com/media-buying/criteo-adds-to-the-ongoing-wave-of-ad-tech-layoffs/,Post-IPO,61,France,2/21/2023 +PeerStreet,Los Angeles,,2/21/2023,,Real Estate,https://www.bizjournals.com/triangle/inno/stories/news/2023/02/21/more-tech-layoffs-hit-north-carolina.html,Series C,121,United States,2/22/2023 +Zalando,"Berlin, Non-U.S.",,2/21/2023,,Retail,https://www.reuters.com/business/retail-consumer/online-fashion-retailer-zalando-cutting-hundreds-jobs-2023-02-21/,Post-IPO,467,Germany,2/21/2023 +MyGate,"Bengaluru, Non-U.S.",200.0,2/20/2023,0.3,Other,https://inc42.com/buzz/bengaluru-based-mygate-lays-off-30-workforce-amid-funding-winter/,Series B,79,India,2/20/2023 +Fireblocks,New York City,30.0,2/20/2023,0.05,Crypto,https://www.calcalistech.com/ctechnews/article/rksbjrxro,Series E,1000,United States,2/22/2023 +Kinde,"Sydney, Non-U.S.",8.0,2/20/2023,0.28,Other,https://www.news.com.au/finance/work/at-work/sydney-technology-company-kinde-lays-off-285-of-staff-as-focus-moves-to-product-team/news-story/618e97ecfe4b7e088a6ff39a70a78bcb,Seed,10,Australia,2/20/2023 +Fipola,"Chennai, Non-U.S.",,2/20/2023,1.0,Food,https://www.medianews4u.com/meat-d2c-fipola-shuts-ops-liquidation-process-on-to-clear-dues-by-april-2023/,Series A,9,India,2/21/2023 +HP,"Tel Aviv, Non-U.S.",100.0,2/19/2023,,Hardware,https://www.themarker.com/technation/2023-02-19/ty-article/.premium/00000186-692c-d22b-ad9e-7f6e08aa0000,Post-IPO,4200,Israel,2/20/2023 +Micron,Boise,2400.0,2/17/2023,0.05,Hardware,https://www.ktvb.com/article/money/business/micron-workforce-reduction-15-percent-worldwide-computer-memory-semiconductors-technology/277-d45fa4ac-e85f-4594-8ced-af9f4dc8911a,Post-IPO,50,United States,4/1/2023 +Tencent,"Shenzen, Non-U.S.",300.0,2/17/2023,,Consumer,https://brandequity.economictimes.indiatimes.com/news/digital/tencent-says-is-making-personnel-adjustments-after-report-of-layoffs/97998975,Post-IPO,12600,China,2/17/2023 +Evernote,SF Bay Area,129.0,2/17/2023,,Consumer,https://techcrunch.com/2023/02/27/bending-spoons-lays-off-129-evernote-staffers/,Acquired,290,United States,2/27/2023 +Chipper Cash,SF Bay Area,100.0,2/17/2023,0.33,Finance,https://techweez.com/2023/02/18/chipper-cash-fires-a-third-of-its-workforce/,Series C,302,United States,2/20/2023 +Digimarc,Portland,,2/17/2023,,Other,https://www.oregonlive.com/silicon-forest/2023/02/oregon-tech-company-digimarc-will-lay-off-17-of-its-workforce.html,Post-IPO,105,United States,2/24/2023 +Reserve,SF Bay Area,,2/17/2023,,Crypto,https://www.linkedin.com/posts/constanza-ag%C3%BCero-ingravidi_job-board-reserves-talent-activity-7030942387006750720-abHD/,Unknown,,United States,3/3/2023 +DocuSign,SF Bay Area,680.0,2/16/2023,0.1,Sales,https://www.cnbc.com/2023/02/16/docusign-layoffs-company-to-cut-10percent-of-workforce.html,Post-IPO,536,United States,2/16/2023 +Pico Interactive,SF Bay Area,400.0,2/16/2023,0.2,Other,https://pandaily.com/pico-starts-small-scale-layoffs-new-products-to-be-unveiled-in-april/,Acquired,62,United States,2/16/2023 +The RealReal,SF Bay Area,230.0,2/16/2023,0.07,Retail,https://www.theinformation.com/briefings/the-realreal-to-cut-7-of-headcount-close-some-stores-and-offices,Post-IPO,356,United States,2/16/2023 +Smartsheet,Seattle,85.0,2/16/2023,0.03,Other,https://www.bizjournals.com/seattle/news/2023/02/16/smartsheet-lays-off-85-employees-globally.html,Post-IPO,152,United States,2/17/2023 +Convoy,Atlanta,,2/16/2023,,Logistics,https://techcrunch.com/2023/02/16/trucking-app-convoy-layoffs-restructuring/,Series E,1100,United States,2/16/2023 +Wix,"Tel Aviv, Non-U.S.",370.0,2/15/2023,0.06,Marketing,https://www.calcalistech.com/ctechnews/article/s1lsqn5as,Post-IPO,58,Israel,2/15/2023 +ServiceTitan,Los Angeles,221.0,2/15/2023,0.08,Sales,https://www.theinformation.com/briefings/servicetitan-cuts-8-percent-of-workforce,Series G,1100,United States,2/16/2023 +Neon,"Sao Paulo, Non-U.S.",210.0,2/15/2023,0.09,Finance,https://www.seudinheiro.com/2023/empresas/unicornio-neon-banco-digital-demissao-em-massa-lils/,Series D,720,Brazil,2/15/2023 +Jellysmack,"Paris, Non-U.S.",208.0,2/15/2023,,Media,https://www.theinformation.com/articles/jellysmack-aims-to-cut-200-french-workers,Series C,22,France,2/16/2023 +DigitalOcean,New York City,200.0,2/15/2023,0.11,Infrastructure,https://www.theregister.com/2023/02/15/digitalocean_layoffs/,Post-IPO,491,United States,2/15/2023 +Sprinklr,New York City,100.0,2/15/2023,0.04,Support,https://techcrunch.com/2023/02/15/sprinklr-layoffs-2023/,Post-IPO,429,United States,2/15/2023 +Betterment,New York City,28.0,2/15/2023,,Finance,https://www.businessinsider.com/betterment-layoffs-digital-wealth-management-firm-cuts-costs-2023-2,Series F,435,United States,2/16/2023 +Divvy Homes,SF Bay Area,,2/15/2023,,Real Estate,https://www.inman.com/2023/02/15/divvy-homes-employees-say-there-has-been-another-round-of-layoffs/,Series B,180,United States,2/16/2023 +Milkrun,"Sydney, Non-U.S.",,2/15/2023,0.2,Food,https://www.smh.com.au/technology/milkrun-slashes-workforce-closes-delivery-hubs-in-cash-crunch-20230215-p5ckny.html,Series A,86,Australia,2/15/2023 +Observe.AI,SF Bay Area,,2/15/2023,,Support,https://www.channelfutures.com/business-models/observe-ai-layoffs-could-impact-partners-ability-to-sell,Series C,214,United States,2/16/2023 +Religion of Sports,Los Angeles,,2/15/2023,,Media,https://www.nytimes.com/2023/02/15/arts/podcast-industry-spotify.html,Series B,63,United States,2/26/2023 +SurveyMonkey,SF Bay Area,,2/15/2023,0.14,Marketing,https://d18rn0p25nwr6d.cloudfront.net/CIK-0001739936/b9e6bc4a-1447-4316-be95-a69aca1214cb.pdf,Post-IPO,1100,United States,2/17/2023 +Tackle,Boise,,2/15/2023,0.15,Other,https://tackle.io/resources/company-news/tackle-update-from-ceo-john-jahnke/,Series C,148,United States,2/15/2023 +Vicarious Surgical,Boston,,2/15/2023,0.14,Healthcare,https://www.medtechdive.com/news/RBOT-Vicarious-Baxter-BAX-layoffs/642848/,Post-IPO,185,United States,2/16/2023 +Blackbaud,Charleston,500.0,2/14/2023,0.14,Other,https://www.postandcourier.com/business/sc-tech-employer-blackbaud-has-cut-about-500-jobs-since-last-year/article_ef9dd60a-ac9b-11ed-8c4a-bbbeb9f0cda5.html,Post-IPO,,United States,2/15/2023 +CommerceHub,Albany,371.0,2/14/2023,0.31,Retail,https://www.bizjournals.com/albany/news/2023/02/14/commercehub-channeladvisor-tech-layoffs.html,Acquired,,United States,2/15/2023 +Dropp,"Berlin, Non-U.S.",60.0,2/14/2023,1.0,Retail,https://www.businessinsider.de/gruenderszene/business/dropp-insolvenz-betrieb-eingestellt-arive/,Unknown,2,Germany,4/9/2023 +HackerEarth,SF Bay Area,,2/14/2023,0.08,HR,https://inc42.com/buzz/prime-venture-backed-hackerearth-trims-workforce-introduces-pay-cut-globally/,Series B,11,United States,2/14/2023 +PhableCare,"Bengaluru, Non-U.S.",,2/14/2023,0.7000000000000001,Healthcare,https://inc42.com/buzz/exclusive-hundreds-of-layoffs-delayed-salaries-is-kalaari-backed-phablecare-the-latest-startup-to-bite-the-dust/,Series B,40,India,2/15/2023 +Udemy,SF Bay Area,,2/14/2023,0.1,Education,https://about.udemy.com/udemy-news/a-message-from-gregg-coccari-ceo-of-udemy/,Post-IPO,311,United States,2/15/2023 +Twilio,SF Bay Area,1500.0,2/13/2023,0.17,Other,https://www.cnbc.com/2023/02/13/twilio-layoffs-1500-employees-17percent-of-workforce.html,Post-IPO,614,United States,2/13/2023 +Electric,New York City,141.0,2/13/2023,0.25,Other,https://www.electric.ai/blog/open-letter-feb-2023,Series D,212,United States,2/14/2023 +EMX Digital,New York City,100.0,2/13/2023,1.0,Marketing,https://www.businessinsider.com/big-village-bankruptcy-emx-digital-employees-furious-about-layoffs-severance-2023-2,Unknown,,United States,2/24/2023 +PetLove,"Sao Paulo, Non-U.S.",94.0,2/13/2023,,Retail,https://oglobo.globo.com/blogs/capital/post/2023/02/petlove-demite-quase-cem-funcionarios.ghtml,Series C,225,Brazil,2/15/2023 +iRobot,Boston,85.0,2/13/2023,0.07,Consumer,https://www.cnbc.com/2023/02/13/irobot-layoffs-7percent-of-workforce-at-roomba-maker-let-go.html,Acquired,30,United States,2/14/2023 +Collective Health,SF Bay Area,54.0,2/13/2023,,Healthcare,https://www.linkedin.com/feed/update/urn:li:activity:7031422708764581888/,Series F,719,United States,2/15/2023 +Magic Eden,SF Bay Area,22.0,2/13/2023,,Crypto,https://decrypt.co/121253/layoffs-hit-solana-nft-marketplace-magic-eden-sheds-22-employees,Series B,170,United States,2/14/2023 +Casavo,"Milan, Non-U.S.",,2/13/2023,0.3,Real Estate,https://casavo.com/blog/a-difficult-decision-to-strengthen-casavos-foundations-for-the-future/,Unknown,708,Italy,2/13/2023 +Foodpanda,"Singapore, Non-U.S.",,2/13/2023,,Food,https://www.techinasia.com/foodpanda-layoff-feb23,Acquired,749,Singapore,2/14/2023 +Getir,"London, Non-U.S.",,2/13/2023,,Food,https://sifted.eu/articles/getir-layoff-uk-staff-gorillas-merger-news/,Series E,1800,United Kingdom,2/14/2023 +LinkedIn,SF Bay Area,,2/13/2023,,Recruiting,https://www.theinformation.com/articles/microsofts-linkedin-lays-off-staff-amid-hiring-slowdown,Acquired,154,United States,2/13/2023 +Moladin,"Jakarta, Non-U.S.",360.0,2/12/2023,0.11,Transportation,https://aimgroup.com/2023/02/12/used-car-marketplace-moladin-lays-off-360/,Series B,138,Indonesia,2/13/2023 +TripleLift,New York City,100.0,2/10/2023,0.2,Marketing,https://www.adexchanger.com/online-advertising/triplelift-announces-layoffs-the-latest-in-a-miserable-trend/,Acquired,16,United States,2/13/2023 +Titan Medical,"Toronto, Non-U.S.",48.0,2/10/2023,0.72,Healthcare,https://www.fiercebiotech.com/medtech/titan-medical-lays-70-staff-search-buyer-comes-short,Post-IPO,278,Canada,3/10/2023 +TikTok India,"Mumbai, Non-U.S.",40.0,2/10/2023,,Consumer,https://www.livemint.com/technology/tech-news/tiktok-sacks-entire-india-staff-report-11676001745604.html,Acquired,9400,India,2/10/2023 +Syft Technologies,"Auckland, Non-U.S.",30.0,2/10/2023,0.2,Manufacturing,https://www.stuff.co.nz/business/better-business/131199817/christchurch-tech-company-syft-to-shed-20-of-its-workforce,Private Equity,,New Zealand,4/22/2023 +Open Co,"Sao Paulo, Non-U.S.",,2/10/2023,,Finance,https://docs.google.com/spreadsheets/d/1DBlNWL0LlbZf7vDoxy-c1IpBfK9-poS25x3JB7c8ip0/edit#gid=0,Series D,140,Brazil,2/15/2023 +Rigetti Computing,SF Bay Area,,2/10/2023,0.28,Hardware,https://www.marketwatch.com/story/rigetti-computing-to-slash-28-of-jobs-59be433b,Post-IPO,298,United States,2/10/2023 +Wonderschool,SF Bay Area,,2/10/2023,,Education,https://docs.google.com/spreadsheets/d/1mbU0_yDWVexaz-zjeE5i6sDwx8NqWZd2Ru4ZdQxxYxQ/edit#gid=0,Series A,24,United States,3/10/2023 +Yahoo,SF Bay Area,1600.0,2/9/2023,0.2,Consumer,https://www.axios.com/2023/02/09/yahoo-layoffs-2023-tech-media-companies,Acquired,6,United States,2/9/2023 +Misfits Market,Philadelphia,649.0,2/9/2023,0.33,Food,https://www.bizjournals.com/philadelphia/inno/stories/news/2023/02/09/misfits-market-layoffs-delanco-philadelphia.html,Series C,526,United States,2/16/2023 +Deliveroo,"London, Non-U.S.",350.0,2/9/2023,0.09,Food,https://news.sky.com/story/deliveroo-to-cut-hundreds-of-jobs-globally-and-uk-to-be-worst-hit-12806890,Post-IPO,1700,United Kingdom,2/9/2023 +Olive AI,Columbus,215.0,2/9/2023,0.35000000000000003,Healthcare,https://www.axios.com/pro/health-tech-deals/2023/02/09/olive-ai-lays-off-third-company,Series H,856,United States,2/10/2023 +Oportun,SF Bay Area,155.0,2/9/2023,0.1,Finance,https://seekingalpha.com/news/3934558-oportun-financial-to-lay-off-10-of-headcount-reports-q4-prelim-results,Post-IPO,566,United States,3/2/2023 +GitLab,SF Bay Area,130.0,2/9/2023,0.07,Product,https://www.cnbc.com/2023/02/09/gitlab-layoffs-company-to-cut-7percent-of-staff-or-about-130-employees.html,Post-IPO,413,United States,2/9/2023 +Bark,New York City,126.0,2/9/2023,0.12,Retail,https://investors.bark.co/news/news-details/2023/BARK-Reports-Third-Quarter-Fiscal-Year-2023-Results/default.aspx,Post-IPO,,United States,2/10/2023 +REE Automotive,"Tel Aviv, Non-U.S.",100.0,2/9/2023,0.5,Transportation,https://www.calcalistech.com/ctechnews/article/6gilogwwn,Post-IPO,317,Israel,12/8/2025 +Veriff,"Tallinn, Non-U.S.",66.0,2/9/2023,0.12,Security,https://digipro.geenius.ee/rubriik/uudis/veriff-koondab-66-tootajat-kotkas-meie-kasvuplaan-oli-oluliselt-ambitsioonikam/,Series C,192,Estonia,2/9/2023 +REE Automotive,"Tel Aviv, Non-U.S.",31.0,2/9/2023,0.11,Transportation,https://www.calcalistech.com/ctechnews/article/s16tkompi,Post-IPO,317,Israel,2/11/2023 +GitHub,SF Bay Area,,2/9/2023,0.1,Product,https://fortune.com/2023/02/09/github-is-laying-off-10-of-staff-and-cutting-down-office-space/,Acquired,350,United States,2/9/2023 +Quillt,St. Louis,,2/9/2023,,Media,https://www.bizjournals.com/stlouis/inno/stories/news/2023/02/09/quillt-layoffs-digital-publishing.html,Unknown,,United States,2/10/2023 +WeTrade,"Bengaluru, Non-U.S.",,2/9/2023,1.0,Crypto,https://inc42.com/buzz/bengaluru-based-crypto-startup-wetrade-shuts-operations-amidst-hostile-ambience/,Unknown,,India,2/9/2023 +GoDaddy,Phoenix,530.0,2/8/2023,0.08,Marketing,https://techstartups.com/2023/02/08/godaddy-to-lay-off-8-of-its-workforce-or-about-530-employees-amid-global-economic-slowdown/,Post-IPO,800,United States,2/8/2023 +Affirm,SF Bay Area,500.0,2/8/2023,0.19,Finance,https://www.wsj.com/articles/affirm-cuts-500-employees-19-of-its-workforce-11675897002,Post-IPO,1500,United States,2/8/2023 +Gusto,SF Bay Area,126.0,2/8/2023,0.05,HR,https://gusto.com/company-news/josh-reeves-message-to-all-gusto,Series E,746,United States,2/8/2023 +Gong,SF Bay Area,80.0,2/8/2023,0.07,Sales,https://www.calcalistech.com/ctechnews/article/hjyj6811as,Series E,583,United States,2/8/2023 +Beam Benefits,Columbus,31.0,2/8/2023,0.08,Healthcare,https://www.bizjournals.com/columbus/inno/stories/news/2023/02/16/beam-benefits-job-cuts.html,Series E,168,United States,2/17/2023 +Equitybee,SF Bay Area,24.0,2/8/2023,0.25,Finance,https://www.calcalistech.com/ctechnews/article/h1jkvzwpo,Series B,85,United States,2/9/2023 +Baraja,"Sydney, Non-U.S.",,2/8/2023,0.75,Transportation,https://www.news.com.au/finance/business/technology/australian-driverless-car-startup-baraja-worth-300m-sacks-75-per-cent-of-staff/news-story/c7c36ac5afded8f5171e8cc0ec5a71af,Unknown,63,Australia,2/8/2023 +Koho,"Toronto, Non-U.S.",,2/8/2023,0.14,Finance,https://betakit.com/koho-lays-off-14-percent-of-staff/,Series D,278,Canada,2/8/2023 +Medly,New York City,,2/8/2023,1.0,Healthcare,https://www.businessinsider.com/medly-is-shutting-down-after-pharmacy-startup-declared-bankruptcy-2023-2,Series C,100,United States,2/11/2023 +Nearmap,"Sydney, Non-U.S.",,2/8/2023,0.2,Construction,https://www.afr.com/technology/c-suite-coup-mass-layoffs-at-nearmap-as-us-owner-wields-axe-20230207-p5cil4,Acquired,15,Australia,2/8/2023 +Zoom,SF Bay Area,1300.0,2/7/2023,0.15,Other,https://www.cnbc.com/2023/02/07/zoom-to-lay-off-1300-employees-or-about-15percent-of-its-workforce.html,Post-IPO,276,United States,2/7/2023 +eBay,SF Bay Area,500.0,2/7/2023,0.04,Retail,https://www.reuters.com/technology/ebay-lay-off-500-employees-2023-02-07/,Post-IPO,1200,United States,2/7/2023 +SecureWorks,Atlanta,212.0,2/7/2023,0.09,Security,https://www.marketwatch.com/story/secureworks-to-cut-9-of-its-workforce-as-layoffs-could-affect-more-than-200-employees-01675779796,Post-IPO,83,United States,2/7/2023 +Salesloft,Atlanta,100.0,2/7/2023,0.1,Sales,https://www.bizjournals.com/atlanta/news/2023/02/07/salesloft-lays-off-workers.amp.html,Acquired,245,United States,2/8/2023 +Openpay,"Melbourne, Non-U.S.",83.0,2/7/2023,1.0,Finance,https://www.9news.com.au/finance/openpay-buy-now-pay-later-collapses-asx-listed-company/1fd1c0d8-4215-4e64-a9ed-9381e0d3f1a5,Post-IPO,299,Australia,2/7/2023 +LearnUpon,"Dublin, Non-U.S.",27.0,2/7/2023,0.09,Education,https://www.independent.ie/business/technology/learnupon-to-let-27-go-as-tech-layoffs-continue-42331418.html,Private Equity,56,Ireland,2/8/2023 +Sana Benefits,Austin,,2/7/2023,0.19,HR,https://www.sanabenefits.com/blog/a-letter-from-ceo-and-co-founder-will-young-to-sana-employees/,Series B,106,United States,2/8/2023 +Dell,Austin,6650.0,2/6/2023,0.05,Hardware,https://www.bloomberg.com/news/articles/2023-02-06/dell-dell-lays-off-about-6-650-employees-in-latest-tech-cuts#xj4y7vzkg,Post-IPO,,United States,2/6/2023 +Loggi,"Sao Paulo, Non-U.S.",300.0,2/6/2023,0.07,Logistics,https://www.infomoney.com.br/negocios/pela-segunda-vez-loggi-reduz-equipe-com-demissoes-em-massa/,Series F,507,Brazil,2/7/2023 +Catch.com.au,"Melbourne, Non-U.S.",100.0,2/6/2023,,Retail,https://www.channelnews.com.au/wesfarmers-axes-100-catch-employees/,Acquired,80,Australia,2/14/2023 +VinFast US,Los Angeles,80.0,2/6/2023,,Transportation,https://www.bloomberg.com/news/articles/2023-02-07/vinfast-cuts-about-80-jobs-in-north-america-including-us-cfo#xj4y7vzkg,Subsidiary,,United States,2/8/2023 +Drift,Boston,59.0,2/6/2023,,Marketing,https://www.bizjournals.com/boston/news/2023/02/06/drift-layoffs-2023-economic-conditions.html,Acquired,107,United States,2/7/2023 +Pocket Aces,"Mumbai, Non-U.S.",50.0,2/6/2023,0.25,Media,https://economictimes.indiatimes.com/tech/startups/pocket-aces-lays-off-over-20-of-its-workforce/articleshow/97626118.cms,Unknown,19,India,2/6/2023 +Clari,SF Bay Area,20.0,2/6/2023,,Sales,https://www.businessinsider.com/tech-layoffs-workato-clari-unicorn-startups-headcount-reduction-job-cuts-2023-2,Series F,496,United States,2/7/2023 +C6 Bank,"Sao Paulo, Non-U.S.",,2/6/2023,,Finance,https://www1.folha.uol.com.br/mercado/2023/02/c6-bank-demite-funcionarios-e-prepara-reestruturacao.shtml,Unknown,2300,Brazil,2/8/2023 +Daraz,"Singapore, Non-U.S.",,2/6/2023,0.11,Retail,https://propakistani.pk/2023/02/06/daraz-to-layoff-11-workforce-due-to-extremely-difficult-market-conditions/,Unknown,,Singapore,2/6/2023 +TenureX,"Tel Aviv, Non-U.S.",,2/6/2023,,Finance,https://www.calcalistech.com/ctechnews/article/b1bsh963o,Seed,6,Israel,2/7/2023 +Kyruus,Boston,70.0,2/5/2023,,Healthcare,https://www.fiercehealthcare.com/health-tech/workforce-tracker-thirty-madison-latest-digital-health-startup-cut-staff,Unknown,183,United States,2/7/2023 +Lightico,"Tel Aviv, Non-U.S.",20.0,2/5/2023,0.25,Finance,https://www.calcalistech.com/ctechnews/article/bydwq4phj,Series B,42,Israel,2/7/2023 +Eightfold AI,SF Bay Area,90.0,2/3/2023,0.15,HR,https://www.nytimes.com/2023/03/13/business/ai-hiring-jobs.html,Series E,396,United States,3/24/2023 +FarEye,"New Delhi, Non-U.S.",90.0,2/3/2023,,Logistics,https://inc42.com/buzz/exclusive-microsoft-backed-fareye-fires-90-employees-in-second-round-of-layoffs-within-8-months/,Series E,150,India,2/3/2023 +Protocol Labs,SF Bay Area,89.0,2/3/2023,0.2,Crypto,https://www.forbes.com/sites/michaeldelcastillo/2023/02/03/andreessen-horowitz-backed-protocol-labs-fires-21-of-staff-after-raising-record-257-million/?sh=24ba1897b400&utm_campaign=socialflowForbesMainLI&utm_source=ForbesMainLinkedIn&utm_medium=social,Unknown,10,United States,2/4/2023 +Built Technologies copy,Nashville,,2/3/2023,0.08,Construction,https://www.nashvillepost.com/business/people/built-lays-off-8-percent-of-workforce/article_55b98a54-a401-11ed-b6b2-532a991e1821.html,Unknown,313,United States,7/13/2023 +Finder,"Sydney, Non-U.S.",,2/3/2023,0.15,Retail,https://www.news.com.au/finance/work/at-work/finder-staff-shocked-by-abrupt-job-cuts-as-15-of-the-business-is-restructured/news-story/6907cf73ddddceb30018521871c89d3c,Unknown,30,Australia,2/6/2023 +Byju's,"Bengaluru, Non-U.S.",1500.0,2/2/2023,,Education,https://www.livemint.com/companies/start-ups/edtech-firm-byju-s-lays-off-nearly-1-500-employees-11675343777644.html,Private Equity,5500,India,2/2/2023 +Okta,SF Bay Area,300.0,2/2/2023,0.05,Security,https://www.bloomberg.com/news/articles/2023-02-02/okta-to-lay-off-300-employees-citing-overhiring-execution-challenges,Post-IPO,1200,United States,2/2/2023 +Autodesk,SF Bay Area,250.0,2/2/2023,0.02,Other,https://www.bloomberg.com/news/articles/2023-02-03/autodesk-layoffs-hit-250-jobs-joining-tech-industry-peers,Post-IPO,,United States,2/3/2023 +Mindstrong,SF Bay Area,127.0,2/2/2023,,Healthcare,https://www.bizjournals.com/sanjose/news/2023/02/02/mental-health-startup-closing-menlo-park-hq.html,Series C,160,United States,2/3/2023 +NCC Group,"Manchester, Non-U.S.",125.0,2/2/2023,0.07,Security,https://www.businesstimes.com.sg/companies-markets/british-cybersecurity-firm-ncc-group-cut-workforce-7,Post-IPO,,United Kingdom,2/3/2023 +Miro,SF Bay Area,119.0,2/2/2023,0.07,Other,https://miro.com/blog/a-message-from-our-ceo/,Series C,476,United States,2/2/2023 +Getir,New York City,100.0,2/2/2023,,Food,https://www.businessinsider.com/getir-layoffs-100-us-gorillas-deal-store-closures-possible-2023-2,Series E,1800,United States,2/5/2023 +Highspot,Seattle,100.0,2/2/2023,0.1,Sales,https://www.geekwire.com/2023/sales-software-company-highspot-lays-off-100-employees/,Series F,644,United States,2/3/2023 +Bittrex,Seattle,80.0,2/2/2023,,Crypto,https://www.coindesk.com/business/2023/02/02/crypto-exchange-bittrex-laying-off-83-people/,Unknown,,United States,2/3/2023 +Snowplow,"London, Non-U.S.",40.0,2/2/2023,,Data,https://www.linkedin.com/posts/alexdean_today-we-announced-that-we-will-be-saying-activity-7027029986091900928-YHHh/,Series B,55,United Kingdom,2/3/2023 +Articulate,New York City,38.0,2/2/2023,,Education,https://www.linkedin.com/posts/lucysuros_today-im-imploring-my-network-to-be-on-activity-7026985200467263489-X0T8/,Series A,1500,United States,2/3/2023 +Desktop Metal,Boston,,2/2/2023,,Other,https://www.bizjournals.com/boston/news/2023/02/02/desktop-metal-to-cut-workers-again.html,Post-IPO,811,United States,2/3/2023 +Getaround,SF Bay Area,,2/2/2023,0.1,Transportation,https://techcrunch.com/2023/02/02/car-sharing-spac-getaround-lays-off-10-of-staff/,Post-IPO,948,United States,2/3/2023 +NCSoft,"Seoul, Non-U.S.",,2/2/2023,0.2,Consumer,https://venturebeat.com/games/ncsoft-west-lays-off-20-of-its-staff-and-ceo-departs/,Post-IPO,240,South Korea,2/3/2023 +Sharesies,"Wellington, Non-U.S.",,2/2/2023,,Finance,https://www.stuff.co.nz/business/131135624/sharesies-plans-to-cut-jobs-as-recession-looms,Series C,60,New Zealand,3/11/2023 +Talkdesk,SF Bay Area,,2/2/2023,,Support,https://www.uctoday.com/unified-communications/tech-redundancies-hit-talkdesk/,Series D,497,United States,2/6/2023 +Splunk,SF Bay Area,325.0,2/1/2023,0.04,Data,https://www.marketwatch.com/story/splunk-to-lay-off-4-of-its-staff-in-latest-sign-of-software-cutbacks-11675260328,Post-IPO,2400,United States,2/1/2023 +Pinterest,SF Bay Area,150.0,2/1/2023,,Consumer,https://www.bloomberg.com/news/articles/2023-02-02/pinterest-cuts-about-150-jobs-joining-flurry-of-tech-layoffs,Post-IPO,1500,United States,2/2/2023 +DraftKings,Boston,140.0,2/1/2023,0.04,Consumer,https://www.cnbc.com/2023/02/01/draftkings-cuts-140-jobs.html,Post-IPO,719,United States,2/1/2023 +Cyren,Washington D.C.,121.0,2/1/2023,,Security,https://ir.cyren.com/websites/cyren/English/5015/press-release.html?airportNewsID=631c3a77-555f-4a78-be5b-ec30c5cdaaac,Post-IPO,161,United States,2/2/2023 +Workato,SF Bay Area,90.0,2/1/2023,0.1,Other,https://www.businessinsider.com/tech-layoffs-workato-clari-unicorn-startups-headcount-reduction-job-cuts-2023-2,Series E,415,United States,2/7/2023 +VerticalScope,"Toronto, Non-U.S.",60.0,2/1/2023,0.22,Media,https://www.theglobeandmail.com/business/article-verticalscope-cuts-22-per-cent-of-staff-in-latest-canadian-tech/,Post-IPO,,Canada,2/1/2023 +Wheel,Austin,56.0,2/1/2023,0.28,Healthcare,https://www.beckershospitalreview.com/telehealth/telehealth-company-wheel-lays-off-28-of-workforce.html,Series C,215,United States,2/2/2023 +Chainalysis,New York City,44.0,2/1/2023,0.05,Crypto,https://www.forbes.com/sites/stevenehrlich/2023/02/01/chainalysis-to-lay-off-48-of-staff-as-crypto-winter-bites-into-private-sector-demand/?sh=471d22826f23,Series F,536,United States,2/2/2023 +Appgate,Miami,34.0,2/1/2023,0.08,Security,https://seekingalpha.com/filing/7197018,Post-IPO,,United States,2/26/2023 +Exterro,Portland,24.0,2/1/2023,0.03,Legal,https://www.oregonlive.com/silicon-forest/2023/01/oregon-software-company-exterro-lays-off-two-dozen-employees-after-buying-zapproved.html,Private Equity,100,United States,2/2/2023 +TheSkimm,New York City,17.0,2/1/2023,0.1,Media,https://www.businessinsider.com/theskimm-layoffs-nearly-10-percent-staff-media-industry-cuts-economy-2023-2,Series C,28,United States,2/3/2023 +Ada,"Toronto, Non-U.S.",,2/1/2023,,Support,https://betakit.com/ada-latest-canadian-unicorn-to-make-additional-staff-cuts/,Series C,190,Canada,2/3/2023 +Bustle Digital Group,New York City,,2/1/2023,0.08,Media,https://variety.com/2023/digital/news/gawker-shutting-down-1235509262/,Series E,80,United States,2/3/2023 +Frequency Therapeutics,Boston,,2/1/2023,0.5,Healthcare,https://www.bizjournals.com/boston/news/2023/02/13/frequency-therapeutics-layoffs-2023.html,Post-IPO,76,United States,2/14/2023 +MariaDB,"Helsinki, Non-U.S.",,2/1/2023,0.08,Data,https://d18rn0p25nwr6d.cloudfront.net/CIK-0001929589/ec0bacf5-b734-418a-abde-4fe0b21d43d8.pdf,Post-IPO,245,Finland,2/7/2023 +Match Group,New York City,,2/1/2023,0.08,Consumer,https://www.bloomberg.com/news/articles/2023-02-01/match-will-reduce-global-workforce-by-8-as-sales-miss-estimates?leadSource=uverify%20wall,Post-IPO,,United States,2/2/2023 +Omnipresent,"London, Non-U.S.",,2/1/2023,,HR,https://www.linkedin.com/feed/update/urn:li:activity:7026583774519799808/,Series B,137,United Kingdom,2/3/2023 +Picnic,Seattle,,2/1/2023,,Food,https://www.geekwire.com/2023/picnic-a-food-automation-startup-that-sells-a-pizza-making-robot-lays-off-employees/,Unknown,52,United States,2/22/2023 +Rivian,Detroit,,2/1/2023,0.06,Transportation,https://www.reuters.com/business/autos-transportation/ev-maker-rivian-cut-6-jobs-amid-price-war-internal-memo-2023-02-01/,Post-IPO,10700,United States,2/1/2023 +PayPal,SF Bay Area,2000.0,1/31/2023,0.07,Finance,https://www.cnbc.com/2023/01/31/paypal-to-lay-off-2000-employees-in-coming-weeks-about-7percent-of-workforce.html,Post-IPO,216,United States,1/31/2023 +NetApp,SF Bay Area,960.0,1/31/2023,0.08,Data,https://www.theregister.com/2023/01/31/netapp_layoffs_8_percent/,Post-IPO,,United States,1/31/2023 +Workday,SF Bay Area,525.0,1/31/2023,0.03,HR,https://www.cnbc.com/2023/01/31/workday-lays-off-employees-but-will-grow-head-count.html,Post-IPO,230,United States,1/31/2023 +HubSpot,Boston,500.0,1/31/2023,0.07,Marketing,https://www.marketwatch.com/story/hubspot-to-lay-off-about-500-employees-consolidate-workspace-leases-01675175630,Post-IPO,100,United States,1/31/2023 +Upstart,SF Bay Area,365.0,1/31/2023,0.2,Finance,https://www.marketwatch.com/story/upstart-to-lay-off-365-employees-20-of-staff-271675176017,Post-IPO,144,United States,1/31/2023 +Software AG,"Frankfurt, Non-U.S.",200.0,1/31/2023,0.04,Data,https://investors.softwareag.com/content/dam/investorrelation/pdfs/english/financial-results/2022/q4/20230131_sow_en_press_release_q4_2022.pdf.sagdownload.inline.1675184544569.pdf,Post-IPO,344,Germany,2/4/2023 +Wish,SF Bay Area,150.0,1/31/2023,0.17,Retail,https://ir.wish.com/node/9361/html,Post-IPO,1600,United States,2/1/2023 +Wefox,"Berlin, Non-U.S.",100.0,1/31/2023,,Finance,https://versicherungsmonitor.de/2023/01/31/wefox-streicht-stellen/,Series D,1300,Germany,2/1/2023 +Tilting Point,New York City,60.0,1/31/2023,0.14,Consumer,https://mobilegamer.biz/layoffs-at-tilting-point-as-it-restructures-and-switches-strategy/,Unknown,235,United States,2/1/2023 +Gokada,"Lagos, Non-U.S.",54.0,1/31/2023,,Transportation,https://techcabal.com/2023/02/02/gokada-layoffs-affects-54/,Unknown,12,Nigeria,2/2/2023 +Nubank,"Sao Paulo, Non-U.S.",40.0,1/31/2023,,Finance,https://valorinveste.globo.com/mercados/renda-variavel/empresas/noticia/2023/01/31/nubank-demite-40-pessoas-e-fecha-rea-de-assessoria-de-investimentos.ghtml,Post-IPO,4100,Brazil,6/8/2023 +AU10TIX,"Tel Aviv, Non-U.S.",19.0,1/31/2023,0.09,Security,https://www.calcalistech.com/ctechnews/article/sy6ynzb2o,Unknown,80,Israel,2/7/2023 +National Instruments,Austin,,1/31/2023,0.04,Hardware,https://www.cmlviz.com/stocks/NATI/news/b/2023/01/31/national-instruments-corp-expected-to-reduce-ni-s-worldwide-headcount-by-approximately-4-during-2023,Post-IPO,,United States,2/4/2023 +OpenText,"Waterloo, Non-U.S.",,1/31/2023,0.08,Data,https://www.crn.com/news/security/layoffs-ahead-as-opentext-closes-5-8b-micro-focus-buy,Post-IPO,1100,Canada,2/1/2023 +Philips,"Amsterdam, Non-U.S.",6000.0,1/30/2023,0.13,Healthcare,https://www.reuters.com/markets/europe/philips-scraps-6000-jobs-drive-improve-profitability-2023-01-30/,Post-IPO,,Netherlands,1/30/2023 +OLX Group,"Amsterdam, Non-U.S.",1500.0,1/30/2023,0.15,Marketing,https://www.financialexpress.com/industry/prosus-operated-olx-to-fire-at-least-1500-employees-globally/2964475/,Acquired,,Netherlands,1/30/2023 +Arrival,"London, Non-U.S.",800.0,1/30/2023,0.5,Transportation,https://techcrunch.com/2023/01/30/ev-company-arrival-to-cut-workforce-by-50-in-third-restructuring-effort/,Post-IPO,629,United Kingdom,1/31/2023 +Groupon,Chicago,500.0,1/30/2023,,Retail,https://www.chicagobusiness.com/technology/groupon-lay-another-500-workers,Post-IPO,1400,United States,1/31/2023 +Intel,SF Bay Area,343.0,1/30/2023,,Hardware,https://www.sfgate.com/tech/article/intel-plans-layoffs-california-campus-17752669.php,Post-IPO,12,United States,1/31/2023 +Glovo,"Barcelona, Non-U.S.",250.0,1/30/2023,0.06,Food,https://sifted.eu/articles/glovo-lays-offs-news/,Acquired,1200,Spain,1/30/2023 +Delivery Hero,"Berlin, Non-U.S.",156.0,1/30/2023,0.04,Food,https://newsingermany.com/delivery-hero-lays-off-four-percent-of-employees-at-headquarters/,Post-IPO,9900,Germany,1/31/2023 +Impossible Foods copy,SF Bay Area,140.0,1/30/2023,0.2,Food,https://www.bloomberg.com/news/articles/2023-01-30/impossible-foods-plans-to-lay-off-about-20-of-employees,Series H,1900,United States,1/31/2023 +Chrono24,"Karlsruhe, Non-U.S.",65.0,1/30/2023,0.13,Retail,https://www.bloomberg.com/news/articles/2023-01-30/rolex-reseller-chrono24-cuts-jobs-as-pre-owned-watch-prices-fall,Series C,205,Germany,1/31/2023 +BM Technologies,Philadelphia,,1/30/2023,0.25,Finance,https://ir.bmtxinc.com/news/news-details/2023/BM-Technologies-Inc.-Announces-Profit-Enhancement-Plan-and-Changes-to-Management-and-Directors/default.aspx,Post-IPO,,United States,2/1/2023 +Olist,"Curitiba, Non-U.S.",,1/30/2023,,Retail,https://www.estadao.com.br/link/inovacao/unicornio-olist-faz-2-rodada-de-demissoes-em-massa-e-aponta-mercado-arido-em-2023/,Series E,322,Brazil,1/31/2023 +Oyster,Charlotte,,1/30/2023,,HR,https://www.linkedin.com/posts/teljamou_oyster-talent-list-activity-7026112666393829376-KB_N/,Series C,224,United States,2/1/2023 +Prime Trust,Las Vegas,,1/30/2023,0.33,Crypto,https://www.coindesk.com/business/2023/01/30/crypto-services-company-prime-trust-lays-off-one-third-of-staff/,Series B,176,United States,2/1/2023 +Quantum SI,New Haven,,1/30/2023,0.12,Healthcare,https://www.genomeweb.com/proteomics-protein-research/quantum-si-laying-12-percent-workforce#.Y9wOl-zMK8A,Post-IPO,425,United States,2/3/2023 +SoFi,SF Bay Area,,1/30/2023,,Finance,https://www.americanbanker.com/news/sofis-bank-charter-drives-positive-outlook-though-layoffs-hit-tech-unit,Post-IPO,3000,United States,1/31/2023 +Hoxhunt,"Helsinki, Non-U.S.",,1/29/2023,,Security,https://www.hs.fi/visio/art-2000009351910.html,Series B,43,Finland,2/1/2023 +Me Poupe,"Sao Paulo, Non-U.S.",60.0,1/28/2023,0.5,Finance,https://portaldobitcoin.uol.com.br/os-bastidores-da-demissao-em-massa-da-me-poupe-de-nathalia-arcuri-quer-sair-das-redes-sociais/,Unknown,,Brazil,1/29/2023 +CoinTracker,SF Bay Area,19.0,1/28/2023,,Crypto,https://www.cointracker.io/blog/ceo-jon-lerners-message-to-cointracker-employees,Series A,101,United States,1/28/2023 +SSense,"Montreal, Non-U.S.",138.0,1/27/2023,0.07,Retail,https://betakit.com/as-big-tech-makes-mass-layoffs-recent-canadian-startup-reductions-might-cut-deeper/,Series A,,Canada,1/28/2023 +DealShare,"Bengaluru, Non-U.S.",100.0,1/27/2023,0.06,Retail,https://www.moneycontrol.com/news/business/startup/tiger-global-backed-dealshare-lays-off-6-of-staff-9949751.html,Series E,390,India,1/27/2023 +Ruggable,Los Angeles,100.0,1/27/2023,,Retail,https://www.modernretail.co/operations/direct-to-consumer-brand-ruggable-lays-off-100-employees/,Seed,,United States,2/1/2023 +Synopsys,SF Bay Area,100.0,1/27/2023,,Other,https://www.eastbaytimes.com/2023/01/27/synopsys-mountain-view-sunnyvale-job-layoff-tech-facebook-google/,Post-IPO,,United States,1/28/2023 +Heycar,"Berlin, Non-U.S.",73.0,1/27/2023,,Transportation,https://www.autohaus.de/nachrichten/autohersteller/umstrukturierung-heycar-trennt-sich-von-ueber-70-mitarbeitern-3316468,Unknown,,Germany,1/31/2023 +Matrixport,"Singapore, Non-U.S.",29.0,1/27/2023,0.1,Crypto,https://www.coindesk.com/business/2023/01/27/jihan-wus-matrixport-cuts-10-of-staff/,Series C,100,Singapore,1/27/2023 +Shakepay,"Montreal, Non-U.S.",21.0,1/27/2023,0.25,Crypto,https://betakit.com/as-big-tech-makes-mass-layoffs-recent-canadian-startup-reductions-might-cut-deeper/,Series A,45,Canada,1/28/2023 +#Paid,"Toronto, Non-U.S.",19.0,1/27/2023,0.17,Marketing,https://betakit.com/as-big-tech-makes-mass-layoffs-recent-canadian-startup-reductions-might-cut-deeper/,Series B,21,Canada,1/28/2023 +Decent,SF Bay Area,,1/27/2023,,Healthcare,https://www.decent.com/post/what-just-happened-at-decent,Series A,18,United States,1/28/2023 +Feedzai,"Coimbra, Non-U.S.",,1/27/2023,,Finance,https://www.finextra.com/newsarticle/41685/exclusive-feedzai-cuts-workforce-amid-restructuring---sources,Unknown,273,Portugal,1/28/2023 +Nate,New York City,,1/27/2023,,Retail,https://www.theinformation.com/articles/coatue-backed-ai-shopping-startup-nate-has-slashed-most-staff-and-disabled-key-features-of-its-app,Series A,47,United States,1/29/2023 +Soundwide,"Berlin, Non-U.S.",,1/27/2023,0.08,Other,https://cdm.link/2023/01/soundwide-layoffs/,,,Germany,5/1/2023 +SAP,"Walldorf, Non-U.S.",3000.0,1/26/2023,0.03,Other,https://www.cnbc.com/2023/01/26/sap-to-cut-3000-roles-explore-sale-of-qualtrics-stake.html,Post-IPO,1300,Germany,1/26/2023 +Confluent,SF Bay Area,221.0,1/26/2023,0.08,Data,https://investors.confluent.io/node/8216/html,Post-IPO,455,United States,1/26/2023 +Glisser,"London, Non-U.S.",25.0,1/26/2023,1.0,Travel,https://www.linkedin.com/posts/mikepiddock_glisser-people-open-to-work-public-version-activity-7024682358524010497-5wiM/,Unknown,1,United Kingdom,12/22/2023 +DriveWealth,Jersey City,,1/26/2023,0.2,Finance,https://techcrunch.com/2023/02/06/even-well-funded-fintech-companies-are-laying-off-workers/,Series D,550,United States,2/1/2023 +Mode Global,"London, Non-U.S.",,1/26/2023,1.0,Finance,https://ir.q4europe.com/solutions/ModePlc/4070/newsArticle.aspx?storyid=15676173,Post-IPO,,United Kingdom,1/30/2023 +Plus One Robotics,San Antonio,,1/26/2023,0.1,Other,https://www.linkedin.com/feed/update/urn:li:activity:7024472621111001088/,Series B,43,United States,1/27/2023 +Quora,SF Bay Area,,1/26/2023,,Consumer,https://quorablog.quora.com/Company-update?ch=10&oid=97805843&share=1139ae3a&srid=XzV2&target_type=post,Series D,226,United States,1/27/2023 +IBM,New York City,3900.0,1/25/2023,0.02,Hardware,https://www.bloomberg.com/news/articles/2023-01-25/ibm-to-cut-about-3-900-workers-still-hiring-in-higher-growth-areas,Post-IPO,,United States,1/25/2023 +Lam Research,SF Bay Area,1300.0,1/25/2023,0.07,Hardware,https://www.bloomberg.com/news/articles/2023-01-25/lam-research-to-cut-7-of-workforce-after-forecast-disappoints?leadSource=uverify%20wall,Post-IPO,,United States,2/1/2023 +Shutterfly,SF Bay Area,360.0,1/25/2023,,Retail,https://thedeadpixelssociety.com/shutterfly-layoffs-impact-360/,Acquired,50,United States,1/26/2023 +Luno,"London, Non-U.S.",330.0,1/25/2023,0.35000000000000003,Crypto,https://www.cnbc.com/2023/01/25/dcg-owned-crypto-exchange-luno-axes-35percent-of-staff.html,Acquired,13,United Kingdom,1/25/2023 +Clear Capital,Reno,250.0,1/25/2023,0.25,Real Estate,https://www.rgj.com/story/news/money/business/2023/01/25/more-layoffs-at-reno-based-clear-capital-amid-seismic-housing-shift/69842319007/,Unknown,,United States,1/26/2023 +Guardant Health,SF Bay Area,130.0,1/25/2023,0.07,Healthcare,https://www.genomeweb.com/business-news/guardant-health-lays-7-percent-workforce#.Y9HcqOzMK8A,Post-IPO,550,United States,1/26/2023 +SirionLabs,Seattle,130.0,1/25/2023,0.15,Legal,https://inc42.com/buzz/exclusive-days-after-raising-25-mn-funding-tiger-backed-sirionlabs-lays-off-around-150-employees/,Series D,171,United States,1/26/2023 +Tier Mobility,"Berlin, Non-U.S.",80.0,1/25/2023,0.07,Transportation,https://techcrunch.com/2023/01/25/tier-mobility-and-spin-lay-off-100-more-employees/,Series D,646,Germany,1/26/2023 +CareRev,Los Angeles,,1/25/2023,,Healthcare,https://www.carerev.com/blog/a-note-from-the-ceo-refocusing-on-our-technology-to-deliver-on-our-mission,Series A,51,United States,2/1/2023 +Finastra,"Tel Aviv, Non-U.S.",,1/25/2023,,Finance,https://www.calcalistech.com/ctechnews/article/s1sh8e13i,Unknown,,Israel,2/7/2023 +Noom,New York City,,1/25/2023,,Fitness,https://www.mobihealthnews.com/news/weight-loss-startup-noom-confirms-more-layoffs,Series F,657,United States,1/26/2023 +PagSeguro,"Sao Paulo, Non-U.S.",,1/25/2023,0.07,Finance,https://news.fintechnexus.com/pagseguro-and-will-bank-part-of-layoff-wave-in-latam/,Post-IPO,,Brazil,2/7/2023 +Prosus,"Amsterdam, Non-U.S.",,1/25/2023,0.3,Other,https://www.bloomberg.com/news/articles/2023-01-25/prosus-to-cut-30-of-corporate-staff-in-latest-tech-layoffs?leadSource=uverify%20wall,Unknown,,Netherlands,1/25/2023 +Vacasa,Portland,1300.0,1/24/2023,0.17,Travel,https://www.oregonlive.com/business/2023/01/vacasa-will-lay-off-1300-we-need-to-reduce-our-costs.html,Post-IPO,834,United States,1/25/2023 +Innovaccer,SF Bay Area,245.0,1/24/2023,0.15,Healthcare,https://digitalhealth.modernhealthcare.com/digital-health/digital-health-unicorn-innovaccer-lays-15-its-employees,Series E,379,United States,1/24/2023 +Bolt,SF Bay Area,50.0,1/24/2023,0.1,Finance,https://www.theinformation.com/articles/bolt-ceo-cuts-staff-a-third-time-as-revenue-lags,Series E,1300,United States,1/25/2023 +PartnerStack,"Toronto, Non-U.S.",40.0,1/24/2023,0.2,Sales,https://betakit.com/as-big-tech-makes-mass-layoffs-recent-canadian-startup-reductions-might-cut-deeper/,Series B,36,Canada,1/24/2023 +Gitpod,"Kiel, Non-U.S.",21.0,1/24/2023,0.28,Product,https://www.gitpod.io/blog/building-for-the-long-run,Series A,41,Germany,1/25/2023 +OFFOR Health,Columbus,16.0,1/24/2023,,Healthcare,https://www.linkedin.com/feed/update/urn:li:activity:7024365334803451904/,Series A,14,United States,1/28/2023 +Venngage,"Toronto, Non-U.S.",11.0,1/24/2023,0.2,Marketing,https://betakit.com/as-big-tech-makes-mass-layoffs-recent-canadian-startup-reductions-might-cut-deeper/,Unknown,,Canada,1/25/2023 +CoachHub,"Berlin, Non-U.S.",,1/24/2023,0.1,HR,https://www.linkedin.com/posts/niebelschuetz_today-we-announced-the-toughest-decision-activity-7023678997448290304-oDEB/,Series C,332,Germany,1/24/2023 +Corvus Insurance,Boston,,1/24/2023,0.14,Finance,https://www.bizjournals.com/boston/inno/stories/news/2023/01/25/corvus-layoffs-us-europe.html,Series C,160,United States,1/25/2023 +Icon,Austin,,1/24/2023,,Construction,https://www.bizjournals.com/austin/inno/stories/news/2023/01/24/icon-3d-printing-homes-austin-layoffs-tech.html,Series B,451,United States,1/25/2023 +PagerDuty,SF Bay Area,,1/24/2023,0.07,Product,https://www.marketwatch.com/story/pagerduty-to-lay-off-7-of-staff-revenue-officer-to-exit-271674568511,Post-IPO,173,United States,1/24/2023 +Scoro,"London, Non-U.S.",,1/24/2023,0.09,HR,https://digipro.geenius.ee/rubriik/uudis/scoro-koondas-eestis-usas-ja-uhendkuningriigis-9-protsenti-tootajatest/,Series B,23,United Kingdom,1/24/2023 +Spotify,"Stockholm, Non-U.S.",600.0,1/23/2023,0.06,Media,https://www.reuters.com/technology/spotify-trim-6-workforce-2023-01-23/,Post-IPO,2100,Sweden,1/23/2023 +Uber Freight,SF Bay Area,150.0,1/23/2023,0.03,Logistics,https://www.freightwaves.com/news/uber-freight-cutting-about-150-jobs-all-in-brokerage-operations,Subsidiary,2700,United States,1/24/2023 +Inmobi,"Bengaluru, Non-U.S.",50.0,1/23/2023,,Marketing,https://www.business-standard.com/article/companies/softbank-backed-inmobi-fires-50-70-employees-on-performance-basis-123012200465_1.html,Unknown,320,India,1/23/2023 +Innovid,New York City,40.0,1/23/2023,0.1,Marketing,https://www.marketwatch.com/amp/story/innovid-will-cut-10-of-jobs-01674512868,Post-IPO,295,United States,1/24/2023 +Booktopia,"Sydney, Non-U.S.",30.0,1/23/2023,,Retail,https://cdn-api.markitdigital.com/apiman-gateway/ASX/asx-research/1.0/file/2924-02623152-2A1426574?access_token=83ff96335c2d45a094df02a206a39ff4,Series A,23,Australia,1/23/2023 +Ermetic,SF Bay Area,30.0,1/23/2023,0.17,Security,https://www.calcalistech.com/ctechnews/article/h1abeu2io,Series B,97,United States,1/25/2023 +Namogoo,"Tel Aviv, Non-U.S.",20.0,1/23/2023,0.15,Marketing,https://www.calcalistech.com/ctechnews/article/skhuvq2ii,Series C,69,Israel,1/24/2023 +Camp K12,"Gurugram, Non-U.S.",,1/23/2023,0.7000000000000001,Education,https://themorningcontext.com/internet/camp-k12-lays-off-70-of-staff-refuses-to-pay-dues,Series A,16,India,1/23/2023 +Gemini,New York City,,1/23/2023,0.1,Crypto,https://www.theinformation.com/articles/gemini-is-laying-off-10-of-staff-marking-latest-blow-for-winklevoss-crypto-startup,Unknown,423,United States,1/23/2023 +Yext,New York City,,1/23/2023,0.08,Marketing,https://www.marketwatch.com/story/yext-to-lay-off-8-of-staff-01674510853,Post-IPO,117,United States,1/23/2023 +BUX,"Amsterdam, Non-U.S.",,1/22/2023,,Finance,https://nltimes.nl/2023/01/22/investment-app-bux-cuts-workforce-reduce-costs,Series C,115,Netherlands,1/23/2023 +Google,SF Bay Area,12000.0,1/20/2023,0.06,Consumer,https://www.nytimes.com/2023/01/20/business/google-alphabet-layoffs.html,Post-IPO,26,United States,1/20/2023 +Wayfair,Boston,1750.0,1/20/2023,0.1,Retail,https://www.wsj.com/articles/wayfair-is-preparing-to-lay-off-more-than-1-000-workers-11674161122,Post-IPO,1700,United States,1/20/2023 +Swiggy,"Bengaluru, Non-U.S.",380.0,1/20/2023,0.06,Food,https://economictimes.indiatimes.com/tech/startups/swiggy-to-layoff-380-employees-ceo-majety-tells-staff/articleshow/97164568.cms,Unknown,3600,India,1/20/2023 +MediBuddy,"Bengaluru, Non-U.S.",200.0,1/20/2023,0.08,Healthcare,https://inc42.com/buzz/exclusive-lightrock-india-backed-medibuddy-lays-oaff-around-200-employees/,Acquired,192,India,1/21/2023 +Vox Media,Washington D.C.,130.0,1/20/2023,0.07,Media,https://variety.com/2023/digital/news/vox-media-layoffs-130-employees-job-cuts-1235496467/,Series F,307,United States,1/21/2023 +BitTorrent,SF Bay Area,92.0,1/20/2023,,Infrastructure,https://www.bizjournals.com/sanfrancisco/news/2023/01/20/p2p-bittorrent-rainberry-tech-layoffs-torrent.html,Acquired,,United States,2/7/2023 +Karat,Seattle,47.0,1/20/2023,,HR,https://www.geekwire.com/2023/seattle-technical-interviewing-startup-karat-cuts-47-employees-citing-need-to-invest-in-growth/,Unknown,169,United States,1/21/2023 +Enjoei,"Sao Paulo, Non-U.S.",31.0,1/20/2023,0.1,Retail,"https://www.terra.com.br/economia/dinheiro-em-dia/meu-negocio/depois-do-ipo-e-da-queda-enjoei-faz-a-sua-demissao-em-massa,e1d6c15174934d1010733071113dff43zabh1zv5.html",Unknown,14,Brazil,1/23/2023 +Edifecs,Seattle,30.0,1/20/2023,,Healthcare,https://www.geekwire.com/2023/edifecs-lays-off-30-employees-in-the-u-s/,Unknown,1,United States,1/21/2023 +Citrine Informatics,SF Bay Area,22.0,1/20/2023,0.27,Data,https://www.linkedin.com/posts/gregorymulholland_this-week-was-a-hard-one-for-our-team-at-activity-7022310417347596288-0cd3/,Series C,64,United States,1/21/2023 +Avalara,Seattle,,1/20/2023,,Finance,https://www.geekwire.com/2023/tax-software-giant-avalara-reportedly-lays-off-workers/,Acquired,341,United States,1/21/2023 +Cyteir Therapeutics,Boston,,1/20/2023,0.7000000000000001,Healthcare,https://www.fiercebiotech.com/biotech/cyteir-lays-70-workforce-after-further-narrowing-cancer-drug-goals,Series C,156,United States,1/21/2023 +Morning Consult,Washington D.C.,,1/20/2023,,Data,https://www.bizjournals.com/washington/news/2023/01/20/morning-consult-layoffs.html,Series B,91,United States,1/24/2023 +TikTok,Los Angeles,,1/20/2023,,Consumer,https://www.businessinsider.com/tiktok-layoffs-talent-acquisition-recruiting-human-resources-2023-1,Acquired,,United States,1/24/2023 +Zappos,Las Vegas,,1/20/2023,,Retail,https://www.reviewjournal.com/business/zappos-implements-another-round-of-layoffs-2715896/,Acquired,62,United States,1/21/2023 +Capital One,Washington D.C.,1100.0,1/19/2023,,Finance,https://www.reuters.com/technology/capital-one-scraps-1100-tech-positions-source-2023-01-19/,Post-IPO,,United States,1/20/2023 +Proterra,SF Bay Area,300.0,1/19/2023,,Transportation,https://news.yahoo.com/proterra-cut-jobs-merge-electric-232932585.html,Post-IPO,1200,United States,3/7/2023 +WeWork ,New York City,300.0,1/19/2023,,Real Estate,https://investors.wework.com/news-and-events/press-releases/financial-releases-details/2023/WeWork-Announces-Date-of-Fourth-Quarter-and-Full-Year-2022-Results-Conference-Call/default.aspx,Post-IPO,22200,United States,1/19/2023 +Hubilo,SF Bay Area,115.0,1/19/2023,0.35000000000000003,Other,https://inc42.com/buzz/hubilo-fires-35-of-its-workforce-in-second-round-of-layoffs-within-6-months/,Series B,153,United States,1/20/2023 +Saks.com,New York City,100.0,1/19/2023,0.05,Retail,https://wwd.com/business-news/retail/saks-com-triggering-layoffs-1235484907/,Unknown,965,United States,1/21/2023 +CS Disco,Austin,62.0,1/19/2023,0.09,Legal,https://d18rn0p25nwr6d.cloudfront.net/CIK-0001625641/f8a9ad04-6c29-4631-b07d-b08d849fbcfa.pdf,Post-IPO,233,United States,1/21/2023 +Riot Games,Los Angeles,46.0,1/19/2023,,Consumer,https://www.eurogamer.net/riot-games-reportedly-making-layoffs,Acquired,21,United States,1/20/2023 +Hydrow,Boston,30.0,1/19/2023,,Fitness,https://www.bostonglobe.com/2023/01/20/business/more-rough-waters-rowing-startup-hydrow/,Series D,269,United States,1/21/2023 +Earth Rides,Nashville,,1/19/2023,1.0,Transportation,https://fox17.com/news/local/google-apple-news-nashville-middle-tennessee-earth-rides-ride-share-company-randomly-shuts-down-employees-without-paychecks,Unknown,2,United States,1/29/2023 +Fandom,SF Bay Area,,1/19/2023,,Media,https://variety.com/2023/digital/news/fandom-layoffs-giant-bomb-gamespot-metacritic-tv-guide-1235495258/,Series E,145,United States,1/20/2023 +IAM Robotics,Pittsburgh,,1/19/2023,,Hardware,https://www.linkedin.com/feed/update/urn:li:activity:7021996164593909760/,Unknown,21,United States,1/21/2023 +Icertis,Seattle,,1/19/2023,,Legal,https://www.bizjournals.com/seattle/news/2023/01/19/icertis-layoffs-bellevue-unicorn-contract-software.html,Unknown,521,United States,1/20/2023 +Magnite,Los Angeles,,1/19/2023,0.06,Marketing,https://seekingalpha.com/news/3926164-magnite-slashes-jobs-by-6-globally-sec-filing,Post-IPO,400,United States,1/20/2023 +Mudafy,"Mexico City, Non-U.S.",,1/19/2023,0.7000000000000001,Real Estate,https://www.cronista.com/infotechnology/actualidad/vuelven-los-despidos-masivos-la-empresa-mudafy-echo-al-90-de-sus-empleados/,Series A,13,Mexico,1/20/2023 +Personalis,SF Bay Area,,1/19/2023,0.3,Healthcare,https://www.genomeweb.com/business-news/personalis-lay-30-percent-workforce#.Y8nuFezMK8A,Post-IPO,225,United States,1/20/2023 +Prisma,SF Bay Area,,1/19/2023,0.28,Data,https://www.prisma.io/blog/restructure-announcement-1a9ek279du8j,Series B,56,United States,1/21/2023 +Spaceship,"Sydney, Non-U.S.",,1/19/2023,,Finance,https://www.financialstandard.com.au/news/spaceship-reduces-headcount-reorganises-executive-team-179798117,Series A,41,Australia,1/24/2023 +Wallbox,"Barcelona, Non-U.S.",,1/19/2023,0.15,Energy,https://investorplace.com/2023/01/wallbox-layoffs-2023-what-to-know-about-the-latest-wbx-job-cuts/,Post-IPO,167,Spain,1/20/2023 +Microsoft,Seattle,10000.0,1/18/2023,0.05,Other,https://www.usatoday.com/story/money/2023/01/18/microsoft-layoffs-10000-employees-stock/11074235002/,Post-IPO,1,United States,1/18/2023 +Sophos,"Oxford, Non-U.S.",450.0,1/18/2023,0.1,Security,https://techcrunch.com/2023/01/18/sophos-global-layoffs/,Acquired,125,United Kingdom,1/18/2023 +Teladoc Health,New York City,300.0,1/18/2023,0.06,Healthcare,https://digitalhealth.modernhealthcare.com/finance/teladoc-health-layoffs-staff-cut-jason-gorevic,Post-IPO,172,United States,1/18/2023 +Vroom,New York City,275.0,1/18/2023,0.2,Transportation,https://seekingalpha.com/news/3925618-vroom-slashes-workforce-by-20,Post-IPO,1300,United States,1/20/2023 +8x8,SF Bay Area,155.0,1/18/2023,0.07,Support,https://www.channelfutures.com/business-models/8x8-to-reduce-7-of-workforce-significantly-impacting-channel-staff,Post-IPO,253,United States,1/18/2023 +Pagaya,"Tel Aviv, Non-U.S.",140.0,1/18/2023,0.2,Finance,https://www.calcalistech.com/ctechnews/article/rjdsyoboo,Post-IPO,571,Israel,1/18/2023 +Benevity,"Calgary, Non-U.S.",137.0,1/18/2023,0.14,Other,https://benevity.com/message-kelly-schmitt,Unknown,69,Canada,1/18/2023 +Inspirato,Denver,109.0,1/18/2023,0.12,Travel,https://sports.yahoo.com/inspirato-announces-plan-streamline-operations-233000003.html,Post-IPO,179,United States,1/20/2023 +Jumpcloud,Boulder,100.0,1/18/2023,0.12,Security,https://jumpcloud.com/blog/jumpcloud-restructuring,Series F,416,United States,1/18/2023 +nCino,Wilmington,100.0,1/18/2023,0.07,Finance,https://portcitydaily.com/local-news/2023/01/18/ncino-lays-off-7-of-workforce-cites-challenges-in-global-economy/,Post-IPO,1100,United States,1/19/2023 +Starry,Boston,100.0,1/18/2023,0.24,Other,https://seekingalpha.com/news/3925492-starry-group-announces-24-job-cuts,Post-IPO,260,United States,1/18/2023 +Hootsuite,"Vancouver, Non-U.S.",70.0,1/18/2023,0.07,Marketing,https://www.theglobeandmail.com/business/article-hootsuite-replaces-ceo-announces-layoffs/,Series C,300,Canada,1/18/2023 +Clue,"Berlin, Non-U.S.",31.0,1/18/2023,0.31,Healthcare,https://www.businessinsider.de/gruenderszene/business/fruchtbarkeits-startup-clue-entlaesst-viertel-der-belegschaft-a/,Unknown,47,Germany,1/18/2023 +Addepar,SF Bay Area,20.0,1/18/2023,0.03,Finance,https://fortune.com/2023/01/17/addepar-a-wealth-management-startup-launched-by-the-co-founder-of-palantir-is-the-latest-fintech-to-cut-jobs/,Series F,491,United States,1/18/2023 +80 Acres Farms,Cincinnati,,1/18/2023,0.1,Food,https://www.bizjournals.com/cincinnati/inno/stories/news/2023/01/18/80-acres-cuts-jobs-tech-industry-job-loses.html,Unknown,275,United States,1/19/2023 +Aiven,"Helsinki, Non-U.S.",,1/18/2023,0.2,Infrastructure,https://aiven.io/blog/a-message-from-our-ceo-oskari-saarenmaa,Series D,420,Finland,1/18/2023 +Bally's Interactive,Providence,,1/18/2023,0.15,Consumer,https://www.legalsportsreport.com/98714/filing-ballys-cutting-up-to-15-of-interactive-employees/,Post-IPO,946,United States,1/21/2023 +Betterfly,"Santiago, Non-U.S.",,1/18/2023,0.3,Healthcare,https://www.eleconomista.com.mx/sectorfinanciero/Betterfly-despide-al-30-de-sus-colaboradores-por-cambio-de-de-foco-y-crisis-economica-20230118-0056.html,Series C,204,Chile,1/20/2023 +Cazoo,"London, Non-U.S.",,1/18/2023,,Transportation,https://sifted.eu/articles/cazoo-alex-chesterman-ceo-exit/,Post-IPO,2000,United Kingdom,1/19/2023 +Coda,SF Bay Area,,1/18/2023,,Other,Internal memo,Series D,240,United States,2/16/2023 +Cypress.io,Atlanta,,1/18/2023,,Product,https://www.linkedin.com/feed/update/urn:li:activity:7021582263465189376/,Series B,54,United States,1/20/2023 +Lucid Diagnostics,New York City,,1/18/2023,0.2,Healthcare,https://www.genomeweb.com/business-news/lucid-diagnostics-lays-20-percent-workforce-business-reprioritization#.Y9HdouzMK8A,Post-IPO,,United States,1/26/2023 +Mavenir,Dallas,,1/18/2023,,Infrastructure,https://www.fiercewireless.com/wireless/mavenir-executes-some-layoffs-related-rcs-disappointment,Acquired,854,United States,1/21/2023 +Redbubble,"Melbourne, Non-U.S.",,1/18/2023,0.14,Retail,https://www.afr.com/companies/retail/redbubble-makes-14pc-of-staff-redundant-20230118-p5cdeh,Post-IPO,55,Australia,1/18/2023 +Lightspeed Commerce,"Montreal, Non-U.S.",300.0,1/17/2023,0.1,Retail,https://www.prnewswire.com/news-releases/lightspeed-commerce-streamlines-operations-with-a-continued-focus-on-profitable-growth-301723292.html,Post-IPO,1200,Canada,1/17/2023 +Unity,SF Bay Area,284.0,1/17/2023,0.03,Other,https://www.wsj.com/articles/unity-software-lays-off-more-workers-as-tech-job-cuts-grow-11673974721,Post-IPO,1300,United States,1/17/2023 +Britishvolt,"London, Non-U.S.",206.0,1/17/2023,1.0,Transportation,https://www.nytimes.com/2023/01/17/business/uk-britishvolt-battery-maker-bankruptcy.html,Unknown,2400,United Kingdom,1/18/2023 +Clutch,"Toronto, Non-U.S.",150.0,1/17/2023,,Transportation,https://www.theglobeandmail.com/business/article-lightspeed-commerce-job-cuts/,Unknown,253,Canada,1/18/2023 +Exotel,"Bengaluru, Non-U.S.",142.0,1/17/2023,0.15,Support,https://inc42.com/buzz/exclusive-saas-startup-exotel-lays-off-142-employees-amid-biz-restructuring/,Series D,87,India,1/18/2023 +Unico,"Sao Paulo, Non-U.S.",110.0,1/17/2023,0.1,Other,https://startups.com.br/noticias/unicornio-unico-demite-cerca-de-110-pessoas-105-da-forca/,Series D,336,Brazil,1/18/2023 +Tul,"Bogota, Non-U.S.",100.0,1/17/2023,,Construction,https://www.valoraanalitik.com/2023/01/17/plataforma-tul-anuncia-recorte-de-personal-y-revisa-estrategia-en-colombia-y-mexico/,Series B,218,Colombia,1/19/2023 +American Robotics,Boston,50.0,1/17/2023,0.65,Other,https://www.bostonglobe.com/2023/01/17/business/new-year-brings-new-tech-layoffs/,Acquired,92,United States,1/20/2023 +Luxury Presence,Los Angeles,44.0,1/17/2023,,Real Estate,https://www.inman.com/2023/01/17/website-builder-luxury-presence-lays-off-44-employees/,Series B,31,United States,1/18/2023 +RingCentral,SF Bay Area,30.0,1/17/2023,,Other,https://www.channelfutures.com/business-models/ringcentral-tidying-up-the-books-with-new-layoffs-8x8-acquisition-looming,Post-IPO,44,United States,1/18/2023 +Avaya,Durham,,1/17/2023,,Other,https://www.bizjournals.com/triad/news/2023/01/17/more-avaya-layoffs-as-bankruptcy-speculation-grows.html,Post-IPO,700,United States,8/1/2023 +Fishbrain,"Stockholm, Non-U.S.",,1/17/2023,,Consumer,https://www.breakit.se/artikel/35639/sparpaket-pa-fishbrain-nu-far-var-femte-sluta,Unknown,59,Sweden,1/21/2023 +GoMechanic,"Gurugram, Non-U.S.",,1/17/2023,0.7000000000000001,Transportation,https://inc42.com/buzz/gomechanic-sacks-70-staff-investor-sequoia-launches-forensic-audit/,Series C,54,India,1/18/2023 +LiveVox,SF Bay Area,,1/17/2023,0.16,Support,https://www.marketscreener.com/quote/stock/LIVEVOX-HOLDINGS-INC-124007856/news/LiveVox-Costs-Associated-with-Exit-Disposal-Form-8-K-42747855/,Post-IPO,12,United States,1/21/2023 +Oracle,SF Bay Area,,1/17/2023,,Other,https://www.businessinsider.com/leaked-oracle-emails-exec-leaving-layoffs-advertising-reorg-2023-1?IR=T,Post-IPO,,United States,1/27/2023 +Rappi,"Buenos Aires, Non-U.S.",,1/17/2023,,Food,https://www.bloomberglinea.com/2023/01/17/cambios-en-rappi-argentina-nuevas-ciudades-ascenso-y-reorganizacion-en-el-pais/,Unknown,2300,Argentina,1/20/2023 +RateGenius,Austin,,1/17/2023,,Finance,https://www.bizjournals.com/austin/inno/stories/news/2023/01/17/rategenius-lays-off-100-plus.html,Acquired,2,United States,1/18/2023 +XP,"Sao Paulo, Non-U.S.",,1/17/2023,,Finance,https://braziljournal.com/xp-cortes-podem-chegar-a-10-da-empresa/,Post-IPO,,Brazil,1/27/2023 +PagBank,"Sao Paulo, Non-U.S.",500.0,1/16/2023,0.07,Finance,"https://www.terra.com.br/amp/economia/dinheiro-em-dia/meu-negocio/pagbank-faz-sua-onda-de-layoffs-e-demite-7-do-quadro,718b40b34ae12981e16f3f1a17a25359dzxawknq.html",Post-IPO,,Brazil,1/17/2023 +ShareChat,"Bengaluru, Non-U.S.",500.0,1/16/2023,0.2,Consumer,https://inc42.com/buzz/sharechat-moj-parent-fires-500-employees/,Series H,1700,India,1/16/2023 +Gramophone,"Indore, Non-U.S.",75.0,1/16/2023,,Food,https://economictimes.indiatimes.com/tech/newsletters/morning-dispatch/layoffs-spread-to-dunzo-sharechat-rebel-foods-and-agri-tech-firms/articleshow/97016331.cms?from=mdr,Series B,17,India,1/16/2023 +ClearCo,"Toronto, Non-U.S.",50.0,1/16/2023,0.3,Finance,https://betakit.com/michele-romanow-clearco-ceo-layoffs/,Series C,698,Canada,1/16/2023 +Dunzo,"Bengaluru, Non-U.S.",,1/16/2023,0.03,Food,https://yourstory.com/2023/01/grocery-delivery-startup-dunzo-laid-off-3-of-its-workforce,Unknown,382,India,1/16/2023 +Ignition,"Sydney, Non-U.S.",,1/16/2023,0.1,Finance,https://www.linkedin.com/posts/activity-7020865045949534208-BYRD/,Series C,74,Australia,1/17/2023 +Rebel Foods,"Mumbai, Non-U.S.",,1/16/2023,0.02,Food,https://yourstory.com/2023/01/cloud-kitchen-startup-rebel-foods-layoff-employees-workforce,Unknown,548,India,1/16/2023 +Captain Fresh ,"Bengaluru, Non-U.S.",120.0,1/15/2023,,Food,https://economictimes.indiatimes.com/tech/newsletters/morning-dispatch/layoffs-spread-to-dunzo-sharechat-rebel-foods-and-agri-tech-firms/articleshow/97016331.cms?from=mdr,Series C,126,India,1/16/2023 +Snappy,New York City,100.0,1/15/2023,0.3,Marketing,https://www.calcalistech.com/ctechnews/article/byyrkbzso,Series C,104,United States,1/19/2023 +BharatAgri,"Mumbai, Non-U.S.",40.0,1/15/2023,0.43,Food,https://economictimes.indiatimes.com/tech/newsletters/morning-dispatch/layoffs-spread-to-dunzo-sharechat-rebel-foods-and-agri-tech-firms/articleshow/97016331.cms?from=mdr,Series A,21,India,1/16/2023 +DeHaat,"Patna, Non-U.S.",,1/15/2023,0.05,Food,https://economictimes.indiatimes.com/tech/newsletters/morning-dispatch/layoffs-spread-to-dunzo-sharechat-rebel-foods-and-agri-tech-firms/articleshow/97016331.cms?from=mdr,Series E,254,India,1/16/2023 +Black Shark,"Shenzen, Non-U.S.",900.0,1/13/2023,,Hardware,https://www.scmp.com/tech/tech-trends/article/3206586/china-gaming-phone-maker-black-shark-lays-hundreds-workers-and-fails-pay-full-severance-according,Unknown,,China,1/23/2023 +Ola,"Bengaluru, Non-U.S.",200.0,1/13/2023,,Transportation,https://www.businesstoday.in/latest/corporate/story/ola-fires-200-people-in-fresh-round-of-layoffs-360051-2023-01-13,Series J,5000,India,1/13/2023 +Bonterra ,Austin,140.0,1/13/2023,0.1,Other,https://www.thenonprofittimes.com/npt_articles/bonterra-lays-off-10-of-staff/,Unknown,,United States,1/17/2023 +Vial,SF Bay Area,40.0,1/13/2023,,Healthcare,https://www.businessinsider.com/healthtech-startup-vial-layoffs-general-catalyst-2023-1,Series B,101,United States,1/14/2023 +Arch Oncology,Brisbane,,1/13/2023,1.0,Healthcare,https://endpts.com/scoop-roche-backed-startup-gives-up-on-cd47-as-ceo-most-employees-leave/,Series C,155,United States,1/14/2023 +Carvana,Phoenix,,1/13/2023,,Transportation,https://www.wsj.com/articles/carvana-cuts-workers-amid-slowing-sales-and-debt-squeeze-11673568956,Post-IPO,1600,United States,1/14/2023 +CoSchedule,Bismarck,,1/13/2023,,Marketing,https://www.inforum.com/business/dubbed-the-fastest-growing-startup-in-north-dakota-coschedule-in-fargo-lays-off-staff,Unknown,2,United States,1/14/2023 +GoCanvas,Washington D.C.,,1/13/2023,,Other,https://www.linkedin.com/posts/viyas_folks-this-week-gocanvas-had-to-let-go-of-activity-7019738503152291840-GaBp/,Acquired,21,United States,1/18/2023 +Jellyfish,Boston,,1/13/2023,0.09,Product,https://www.bizjournals.com/boston/inno/stories/news/2023/01/13/jellyfish-cuts-9-of-workforce.html,Series C,114,United States,1/14/2023 +Lending Club,SF Bay Area,225.0,1/12/2023,0.14,Finance,https://www.bloomberg.com/news/articles/2023-01-12/lendingclub-to-cut-14-of-workers-take-charges-of-5-7-million,Post-IPO,392,United States,1/12/2023 +SmartNews,"Tokyo, Non-U.S.",120.0,1/12/2023,0.4,Media,https://techcrunch.com/2023/01/12/news-aggregator-smartnews-lays-off-40-of-non-japan-staff-with-further-reductions-planned-in-japan/,Series F,410,Japan,1/13/2023 +Skit.ai,"Bengaluru, Non-U.S.",115.0,1/12/2023,,Support,https://inc42.com/buzz/exclusive-westbridge-capital-backed-saas-startup-skit-ai-lays-off-115-employees/,Series B,28,India,1/14/2023 +Pier,"Sao Paulo, Non-U.S.",111.0,1/12/2023,0.39,Finance,https://startups.com.br/noticias/insurtech-pier-demite-cerca-de-39-da-forca-de-trabalho/,Series B,42,Brazil,1/12/2023 +Blockchain.com,"London, Non-U.S.",110.0,1/12/2023,0.28,Crypto,https://www.coindesk.com/business/2023/01/12/crypto-brokerage-blockchaincom-lays-off-28-of-workforce-as-industrys-cruel-winter-continues/,Series D,490,United Kingdom,1/12/2023 +Lattice,SF Bay Area,105.0,1/12/2023,0.15,HR,https://lattice.com/blog/ceo-jack-altmans-email-to-lattice-employees,Series F,328,United States,1/12/2023 +Greenlight,Atlanta,104.0,1/12/2023,0.21,Finance,https://techcrunch.com/2023/01/12/greenlight-fintech-layoff/,Series D,556,United States,1/12/2023 +Cashfree Payments,Bengaluru,100.0,1/12/2023,,Finance,https://economictimes.indiatimes.com/tech/startups/online-payments-firm-cashfree-lays-off-150-employees-to-cut-costs/articleshow/96938789.cms,Series B,41,India,1/12/2023 +Mapbox,Washington D.C.,64.0,1/12/2023,,Data,https://twitter.com/MapboxUnion/status/1616127786514796547,Unknown,334,United States,1/20/2023 +Definitive Healthcare,Boston,55.0,1/12/2023,0.06,Healthcare,https://www.cmlviz.com/stocks/DH/news/b/2023/01/12/definitive-healthcare-to-cut-current-workforce-by-about-55-people,Post-IPO,,United States,1/13/2023 +Akili Labs,Boston,46.0,1/12/2023,0.3,Healthcare,https://bhbusiness.com/2023/01/12/digital-therapeutics-startup-akili-plans-to-lay-off-30-of-staff/,Post-IPO,301,United States,1/14/2023 +Career Karma,SF Bay Area,22.0,1/12/2023,,Education,https://techcrunch.com/2023/01/12/career-karma-conducts-another-round-of-layoffs-extends-runway-to-five-years/,Series B,51,United States,1/12/2023 +Crypto.com,"Singapore, Non-U.S.",,1/12/2023,0.2,Crypto,https://www.coindesk.com/business/2023/01/13/cryptocom-cuts-workforce-by-nearly-20/,Unknown,,Singapore,1/13/2023 +Life360,SF Bay Area,,1/12/2023,0.14,Consumer,https://investors.life360.com/DownloadFile.axd?file=/Report/ComNews/20230113/02620821.pdf,Post-IPO,158,United States,1/13/2023 +Rock Content,Miami,,1/12/2023,0.15,Marketing,"https://www.terra.com.br/economia/dinheiro-em-dia/meu-negocio/rock-content-comeca-o-ano-com-ajuste-interno-e-demite-15,f8bac592266affb0ec1f95b13e77706fpeo1jjq5.html",Series B,34,United States,1/12/2023 +Flexport,SF Bay Area,640.0,1/11/2023,0.2,Logistics,https://www.cnbc.com/2023/01/11/flexport-to-lay-off-20percent-of-its-global-workforce.html,Series E,2400,United States,1/11/2023 +Qualtrics,Salt Lake City,270.0,1/11/2023,0.05,Other,https://www.marketwatch.com/story/qualtrics-to-shave-about-270-jobs-or-less-than-5-of-workforce-2023-01-11,Post-IPO,400,United States,1/12/2023 +Verily,SF Bay Area,250.0,1/11/2023,0.15,Healthcare,https://www.theinformation.com/articles/alphabets-verily-lays-off-staff,Subsidiary,3500,United States,1/11/2023 +Tipalti,SF Bay Area,123.0,1/11/2023,0.11,Finance,https://www.calcalistech.com/ctechnews/article/bjj82m39i,Series F,565,United States,1/12/2023 +Jumio,SF Bay Area,100.0,1/11/2023,0.06,Security,https://www.biometricupdate.com/202301/jumio-downsizes-as-identity-verification-providers-respond-to-economic-climate,Private Equity,205,United States,1/12/2023 +CoinDCX,Mumbai,80.0,1/11/2023,,Crypto,https://www.moneycontrol.com/news/business/startup/coindcx-starts-restructuring-business-units-lays-off-employees-9848661.html,Series D,244,India,1/12/2023 +HashiCorp,SF Bay Area,69.0,1/11/2023,,Security,https://www.linkedin.com/news/story/former-citrix-employees-react-to-cuts-6133826/,Post-IPO,349,United States,1/12/2023 +Embark Vet,Boston,41.0,1/11/2023,,Healthcare,https://www.linkedin.com/feed/update/urn:li:activity:7018765914254778368/,Series B,94,United States,1/12/2023 +Intrinsic,SF Bay Area,40.0,1/11/2023,0.2,Other,https://www.theinformation.com/articles/alphabet-job-cuts-widen-to-robotics-subsidiary,Acquired,,United States,1/12/2023 +Citizen,New York City,33.0,1/11/2023,,Consumer,https://techcrunch.com/2023/01/12/crime-reporting-app-citizen-lays-off-33-employees/,Series C,133,United States,1/12/2023 +Carta,SF Bay Area,,1/11/2023,0.1,HR,https://techcrunch.com/2023/01/11/carta-lays-off-10-as-cto-lawsuit-looms/,Series G,1100,United States,1/11/2023 +Limeade,Seattle,,1/11/2023,0.15,HR,https://www.geekwire.com/2023/employee-experience-company-limeade-laying-off-15-of-workforce-cfo-to-resign/,Series C,33,United States,1/12/2023 +Oyster,Charlotte,,1/11/2023,,HR,https://oysterhr.notion.site/oysterhr/A-letter-from-Oyster-s-CEO-Tony-Jamous-43b7218897904211bf1486e314056d4e,Series C,224,United States,1/11/2023 +Paddle,"London, Non-U.S.",,1/11/2023,0.08,Finance,https://www.linkedin.com/feed/update/urn:li:activity:7018888417195237376/,Series D,293,United Kingdom,1/12/2023 +Coinbase,SF Bay Area,950.0,1/10/2023,0.2,Crypto,https://www.cnbc.com/2023/01/10/coinbase-to-slash-20percent-of-workforce-in-second-major-round-of-job-cuts.html,Post-IPO,549,United States,1/10/2023 +Informatica,SF Bay Area,450.0,1/10/2023,0.07,Data,https://www.channelfutures.com/business-models/informatica-layoffs-to-slash-7-of-workforce-cfo-stepping-down,Post-IPO,,United States,1/10/2023 +Blend,SF Bay Area,340.0,1/10/2023,0.28,Finance,https://www.inman.com/2023/01/10/blend-cuts-nearly-30-of-workforce-in-blistering-4th-round-of-layoffs/,Post-IPO,665,United States,1/10/2023 +Till Payments,"Sydney, Non-U.S.",120.0,1/10/2023,,Finance,https://www.afr.com/technology/till-payments-makes-120-staff-redundant-shakes-up-board-20230110-p5cbj3,Series C,95,Australia,1/11/2023 +ConsenSys,New York City,100.0,1/10/2023,0.11,Crypto,https://www.coindesk.com/business/2023/01/10/ethereum-software-firm-consensys-to-cut-upwards-of-100-staff-as-crypto-bear-market-takes-another-casualty/,Series D,726,United States,1/10/2023 +ForeScout,"Tel Aviv, Non-U.S.",100.0,1/10/2023,0.1,Security,https://www.calcalistech.com/ctechnews/article/hkyo39k9o,Acquired,125,Israel,1/10/2023 +Thinkific,"Vancouver, Non-U.S.",76.0,1/10/2023,0.19,Education,https://betakit.com/thinkific-makes-more-layoffs-as-part-of-push-towards-profitability/,Post-IPO,22,Canada,1/10/2023 +LEAD,"Mumbai, Non-U.S.",60.0,1/10/2023,,Education,https://inc42.com/buzz/exclusive-edtech-unicorn-lead-lays-off-60-employees-from-product-tech-teams/,Series E,190,India,1/11/2023 +Parler,Nashville,60.0,1/10/2023,0.75,Consumer,https://www.theverge.com/2023/1/10/23549198/parler-parlement-technologies-layoffs-gettr-george-farmer-candace-owens,Series B,36,United States,1/11/2023 +GoBolt,"Toronto, Non-U.S.",55.0,1/10/2023,0.05,Logistics,https://betakit.com/gobolt-lays-off-five-percent-of-staff-shortly-after-75-million-raise-citing-worsening-consumer-demand/,Series C,178,Canada,1/11/2023 +Relevel,"Bengaluru, Non-U.S.",40.0,1/10/2023,0.2,HR,https://inc42.com/buzz/unacademy-owned-relevel-to-layoff-40-employees-as-focus-shifts-to-test-product-business/,Unknown,,India,1/12/2023 +StreamElements,"Tel Aviv, Non-U.S.",40.0,1/10/2023,0.2,Media,https://www.calcalistech.com/ctechnews/article/hjvdymj5o,Series B,111,Israel,1/11/2023 +Cart.com,Austin,25.0,1/10/2023,0.04,Retail,https://www.theinformation.com/briefings/cart-com-cuts-more-corporate-staff,Unknown,383,United States,11/16/2023 +100 Thieves,Los Angeles,,1/10/2023,,Retail,https://www.dexerto.com/esports/100-thieves-hit-with-another-round-of-layoffs-as-org-drops-multiple-key-staff-2029435/,Series C,120,United States,1/12/2023 +Beamery,"London, Non-U.S.",,1/10/2023,0.12,HR,https://tech.eu/2023/01/11/beamery-layoffs,Series D,223,United Kingdom,1/11/2023 +Cart.com,Austin,,1/10/2023,,Retail,https://www.bizjournals.com/austin/inno/stories/news/2023/01/10/layoffs-at-cartcom.html?utm_source=st&utm_medium=en&utm_campaign=inno&ana=e_n&utm_content=au,Unknown,383,United States,1/11/2023 +Citrix,Miami,,1/10/2023,0.15,Infrastructure,https://techcrunch.com/2023/01/11/company-created-by-citrix-tibco-merger-confirms-it-has-laid-off-15-of-staff/,Acquired,20,United States,1/11/2023 +Esper,Seattle,,1/10/2023,0.21,Other,https://www.geekwire.com/2023/esper-lays-off-21-of-workforce-due-to-unpredictable-business-environment-in-2023/,Series A,10,United States,1/12/2023 +WHOOP,Boston,,1/10/2023,0.04,Fitness,https://www.businessinsider.com/whoop-layoffs-wearables-startup-enterprise-sales-unit-2023-1?IR=T,Series F,404,United States,1/12/2023 +Fate Therapeutics,San Diego,315.0,1/9/2023,0.5700000000000001,Healthcare,"https://www.sandiegouniontribune.com/business/story/2023-01-09/san-diegos-fate-therapeutics-lays-off-315-employees-more-than-half-of-its-workforce#:~:text=Fate%20Therapeutics%2C%20a%20San%20Diego,collaboration%20agreement%20with%20Janssen%20Biotech",Post-IPO,1200,United States,1/13/2023 +Century Therapeutics,Philadelphia,,1/9/2023,,Healthcare,https://www.bizjournals.com/philadelphia/news/2023/01/09/century-therapeutics-jobs-cell-therapy-cancer.amp.html,Post-IPO,560,United States,1/20/2023 +Editas Medicine,Boston,,1/9/2023,0.2,Healthcare,https://endpts.com/editas-edits-pipeline-lays-off-20-and-says-bye-to-cso-to-kick-off-jpm23/,Post-IPO,656,United States,1/20/2023 +Scale AI,SF Bay Area,,1/9/2023,0.2,Data,https://scale.com/blog/company-update,Series E,602,United States,1/9/2023 +Minute Media,"London, Non-U.S.",50.0,1/8/2023,0.1,Media,https://www.calcalistech.com/ctechnews/article/bjoxf00d5i,Series I,160,United Kingdom,1/9/2023 +WalkMe,SF Bay Area,43.0,1/8/2023,0.03,Other,https://www.calcalistech.com/ctechnews/article/bkzauhoqo,Post-IPO,307,United States,1/9/2023 +Integrate,Phoenix,,1/7/2023,,Marketing,https://www.linkedin.com/posts/jeremybloom11_last-week-we-restructured-our-global-team-activity-7018226191639740416-sFUv/,Acquired,80,United States,3/21/2023 +Huobi,"Beijing, Non-U.S.",275.0,1/6/2023,0.2,Crypto,https://www.reuters.com/technology/crypto-exchange-huobi-lay-off-20-staff-justin-sun-2023-01-06/,Unknown,2,China,1/6/2023 +Carbon Health,SF Bay Area,200.0,1/6/2023,,Healthcare,https://twitter.com/erenbali/status/1611488895866408960,Series D,522,United States,1/7/2023 +Bounce,"Bengaluru, Non-U.S.",40.0,1/6/2023,0.05,Transportation,https://www.moneycontrol.com/news/business/announcements/sequoia-backed-bounce-lays-off-5-of-staff-to-cut-costs-9822961.html,Series D,214,India,1/9/2023 +Aware,Columbus,,1/6/2023,,Security,https://www.bizjournals.com/columbus/inno/stories/news/2023/01/06/cybersecurity-startup-aware-job-cuts.html?utm_source=st&utm_medium=en&utm_campaign=EX&utm_content=co&ana=e_co_EX&j=30175273&senddate=2023-01-06,Series C,88,United States,1/6/2023 +CareerArc,Los Angeles,,1/6/2023,,HR,https://www.linkedin.com/posts/careerarc_today-was-a-tough-day-some-very-smart-talented-activity-7017267218212155392-gNaV/,Private Equity,30,United States,1/9/2023 +CreateMe,SF Bay Area,,1/6/2023,,Manufacturing,https://www.bizjournals.com/sanfrancisco/news/2023/01/06/layoffs-createme-clothing-manufacturing-newark-sf.html,Unknown,,United States,1/9/2023 +Lantern,Grand Rapids,,1/6/2023,1.0,Retail,https://www.linkedin.com/posts/meredith-mahoney_yesterday-we-announced-that-were-winding-activity-7016805236086341632-UwEq/,Seed,40,United States,1/12/2023 +Mojo Vision,SF Bay Area,,1/6/2023,0.75,Hardware,https://techcrunch.com/2023/01/06/mojo-vision-puts-contact-lens-production-on-hold-as-it-lays-off-75-of-staff/,Series B,204,United States,1/6/2023 +SuperRare,Wilmington,,1/6/2023,0.3,Crypto,https://techcrunch.com/2023/01/06/nft-marketplace-superrare-cuts-30-of-staff/,Series A,9,United States,1/6/2023 +Cue,San Diego,388.0,1/5/2023,,Healthcare,https://www.360dx.com/business-news/cue-health-lay-388-people-cost-reduction-plan#.Y7iqquzMK8A,Post-IPO,999,United States,1/6/2023 +SoundHound,SF Bay Area,200.0,1/5/2023,0.5,Other,https://gizmodo.com/soundhound-lays-off-half-employees-pitiful-severance-1849987534,Post-IPO,326,United States,1/5/2023 +Socure,Reno,104.0,1/5/2023,0.19,Finance,https://www.biometricupdate.com/202301/socure-slashes-workforce,Series E,646,United States,1/6/2023 +Genesis,New York City,60.0,1/5/2023,0.3,Crypto,https://www.cnbc.com/2023/01/05/crypto-lender-genesis-trading-lays-off-30percent-of-workforce.html,Series A,,United States,1/5/2023 +Moglix,Singapore,40.0,1/5/2023,0.02,Retail,https://inc42.com/buzz/b2b-ecommerce-unicorn-moglix-layoff-spree-fires-40-employees/,Series F,472,Singapore,1/6/2023 +Twitter,SF Bay Area,40.0,1/5/2023,,Consumer,https://www.theinformation.com/articles/musk-lays-off-twitter-engineers-working-on-advertising-as-ad-revenue-shrinks,Post-IPO,12900,United States,1/6/2023 +Everlane,SF Bay Area,30.0,1/5/2023,0.17,Retail,https://www.theinformation.com/articles/everlane-slashes-17-of-corporate-employees,Unknown,176,United States,1/6/2023 +Pecan AI,"Tel Aviv, Non-U.S.",30.0,1/5/2023,0.25,Data,https://www.calcalistech.com/ctechnews/article/hkrgrqvqo,Series C,116,Israel,1/9/2023 +Personetics,New York City,30.0,1/5/2023,0.08,Support,https://www.calcalistech.com/ctechnews/article/sjlizvvcs,Private Equity,178,United States,1/6/2023 +Twine Solutions ,"Tel Aviv, Non-U.S.",30.0,1/5/2023,0.33,Hardware,https://www.calcalistech.com/ctechnews/article/bkniefe5o,Unknown,50,Israel,1/9/2023 +UpScalio,Gurugram,25.0,1/5/2023,0.15,Retail,https://www.techinasia.com/indiabased-rollup-firm-upscalio-lays-15-staff,Series B,62,India,1/6/2023 +Attentive,New York City,,1/5/2023,0.15,Marketing,https://www.modernretail.co/operations/layoffs-hit-the-e-commerce-space-attentive-lays-off-15-of-staff/,Series E,863,United States,1/6/2023 +Compass,New York City,,1/5/2023,,Real Estate,https://www.bloomberg.com/news/articles/2023-01-05/compass-is-eliminating-more-jobs-as-us-housing-market-slows?sref=NpFHg3Ue,Post-IPO,1600,United States,1/5/2023 +Megaport,"Brisbane, Non-U.S.",,1/5/2023,,Infrastructure,https://www.afr.com/technology/megaport-lays-off-35-staff-losses-narrow-20220809-p5b8bz,Post-IPO,98,Australia,1/6/2023 +Stitch Fix,SF Bay Area,,1/5/2023,0.2,Retail,https://www.cnbc.com/2023/01/05/stitchfix-ceo-steps-down-20percent-of-salaried-workforce-to-be-cut.html,Post-IPO,79,United States,1/5/2023 +TCR2,Boston,,1/5/2023,0.4,Healthcare,https://www.cmlviz.com/stocks/TCRR/news/b/2023/01/05/tcr2-therapeutics-to-be-streamlined-with-about-40-reduction-in-workforce,Post-IPO,173,United States,1/6/2023 +Amazon,Seattle,8000.0,1/4/2023,0.02,Retail,https://www.wsj.com/articles/amazon-to-lay-off-over-17-000-workers-more-than-first-planned-11672874304,Post-IPO,108,United States,1/5/2023 +Salesforce,SF Bay Area,8000.0,1/4/2023,0.1,Sales,https://www.nytimes.com/2023/01/04/business/salesforce-layoffs.html,Post-IPO,65,United States,1/4/2023 +Astronomer,Cincinnati,76.0,1/4/2023,0.2,Data,https://www.astronomer.io/blog/astronomer-update/,Series C,282,United States,1/6/2023 +Kaltura,New York City,75.0,1/4/2023,0.11,Media,https://en.globes.co.il/en/article-kaltura-announces-second-round-of-layoffs-1001434620,Post-IPO,166,United States,1/6/2023 +Augury,New York City,20.0,1/4/2023,0.05,Manufacturing,https://www.calcalistech.com/ctechnews/article/skiu0xx9j,Series E,274,United States,1/9/2023 +Butterfly Network,Boston,,1/4/2023,0.25,Healthcare,https://www.marketscreener.com/quote/stock/BUTTERFLY-NETWORK-INC-119073390/news/BUTTERFLY-NETWORK-INC-Costs-Associated-with-Exit-or-Disposal-Activities-form-8-K-42714240/,Post-IPO,530,United States,1/18/2023 +Vimeo,New York City,,1/4/2023,0.11,Consumer,https://vimeo.com/blog/post/a-message-from-vimeos-ceo-jan-2023/,Post-IPO,450,United States,1/4/2023 +Wyre,SF Bay Area,,1/4/2023,1.0,Crypto,https://blockworks.co/news/from-1-5-billion-to-0-crypto-payments-platform-wyre-shuts-down,Unknown,29,United States,1/6/2023 +Pegasystems,Boston,245.0,1/3/2023,0.04,HR,https://www.bizjournals.com/boston/news/2023/01/03/pegasystems-to-cut-4-of-its-workforce.html,Post-IPO,,United States,1/4/2023 +Uniphore,SF Bay Area,76.0,1/3/2023,0.1,Support,https://startup.outlookindia.com/unicorns/exclusive-uniphore-technologies-lays-off-10-of-global-workforce-news-7039,Series E,620,United States,1/6/2023 +Harappa,"New Delhi, Non-U.S.",60.0,1/3/2023,0.3,Education,https://www.businesstoday.in/latest/corporate/story/exclusive-upgrad-owned-edtech-start-up-harappa-lays-off-30-of-its-workforce-358723-2023-01-03,Acquired,,India,1/4/2023 +Bytedance,"Shanghai, Non-U.S.",,1/3/2023,0.1,Consumer,https://pandaily.com/bytedance-initiates-layoffs-for-10-of-staff/,Unknown,9400,China,1/4/2023 +Amdocs,St. Louis,700.0,1/2/2023,0.03,Support,https://www.calcalistech.com/ctechnews/article/bj4shoeco,Post-IPO,,United States,7/7/2023 +Micron,Boise,4800.0,1/1/2023,0.1,Hardware,https://www.forbes.com/sites/qai/2023/01/01/tech-layoffs-micron-to-lay-off-10-of-staff-due-to-low-demand-for-chips/?sh=5d303fd41472,Post-IPO,50,United States,4/1/2023 +Graphcore,"Beijing, Non-U.S.",,1/1/2023,,Hardware,https://www.bloomberg.com/news/articles/2023-11-22/nvidia-rival-graphcore-pulls-out-of-china-citing-export-rules#xj4y7vzkg,Series E,682,China,11/23/2023 +Ezoic,San Diego,35.0,12/31/2022,,Infrastructure,https://www.businessinsider.com/an-adtech-employee-stole-a-9m-payment-sent-by-google-and-used-it-to-buy-gold-2023-4,Series A,39,United States,7/21/2023 +Gousto,"London, Non-U.S.",,12/31/2022,0.14,Food,https://news.sky.com/story/gousto-slashes-jobs-and-curbs-hiring-plans-as-it-delivers-falling-valuation-12818741,Unknown,675,United Kingdom,3/14/2023 +Mara,"Nairobi, Non-U.S.",,12/31/2022,,Crypto,https://techcabal.com/2023/06/06/web3-startup-mara-fires-its-marketing-department-as-it-shifts-focus-from-acquiring-new-users/,Seed,23,Kenya,6/8/2023 +Bilibili,"Shanghai, Non-U.S.",,12/27/2022,0.3,Media,https://technode.com/2022/12/27/bilibili-reportedly-cuts-30-of-staff-across-operations-gaming-and-streaming-units/,Post-IPO,3700,China,12/30/2022 +Octopus Network,"Beau Vallon, Non-U.S.",,12/27/2022,0.4,Crypto,https://heraldsheets.com/cold-crypto-winter-forces-octopus-network-to-lay-off-40-besides-20-pay-cuts-for-retained-workforce/,Series A,8,Seychelles,12/30/2022 +PayU,"Amsterdam, Non-U.S.",150.0,12/26/2022,0.06,Finance,https://www.livemint.com/companies/news/payu-layoffs-6-of-its-workforce-150-employees-lose-jobs-report-11672035519752.html,Acquired,,Netherlands,12/26/2022 +Element,"London, Non-U.S.",,12/25/2022,0.15,Other,https://news.ycombinator.com/item?id=34129623,Series B,96,United Kingdom,3/1/2023 +Willow,"Sydney, Non-U.S.",99.0,12/23/2022,0.22,Real Estate,https://www.afr.com/technology/nicholas-moore-chaired-proptech-willow-fires-99-workers-to-curb-costs-20221222-p5c8am,Unknown,,Australia,1/9/2023 +Back Market,"Paris, Non-U.S.",93.0,12/23/2022,0.13,Retail,https://sifted.eu/articles/startup-tech-company-layoffs/,Series E,1000,France,12/27/2022 +Zoopla,"London, Non-U.S.",50.0,12/23/2022,,Real Estate,https://www.linkedin.com/posts/zoopla_its-with-a-heavy-heart-that-we-will-be-saying-activity-7010935780743258113-PG98/,Series C,25,United Kingdom,12/30/2022 +Qualcomm,San Diego,153.0,12/22/2022,,Hardware,https://www.sandiegouniontribune.com/business/story/2022-12-22/qualcomm-trims-local-workforce-by-153-jobs-as-smartphone-demand-remains-sluggish,Post-IPO,,United States,1/4/2023 +TuSimple,San Diego,350.0,12/21/2022,0.25,Transportation,https://techcrunch.com/2022/12/21/self-driving-truck-company-tusimple-to-lay-off-25-of-workforce/,Post-IPO,648,United States,12/18/2022 +Lendis,"Berlin, Non-U.S.",,12/21/2022,0.5,Other,https://www.linkedin.com/posts/s-papadopoulos_today-we-have-to-share-sad-news-we-made-activity-7009106413499080704-u1gl/,Series A,90,Germany,12/21/2022 +Chope,"Singapore, Non-U.S.",65.0,12/20/2022,0.24,Food,https://www.techinasia.com/alipaybacked-chope-lays-65-employees,Series E,50,Singapore,12/28/2022 +Briza,"Toronto, Non-U.S.",26.0,12/20/2022,0.4,Finance,https://betakit.com/ceo-of-briza-steps-down-as-insurtech-startup-cuts-close-to-half-of-its-staff/,Series A,10,Canada,12/20/2022 +StreetBees,"London, Non-U.S.",,12/20/2022,,Data,https://www.linkedin.com/feed/update/urn:li:activity:7010621808135573504/,Unknown,63,United Kingdom,1/21/2023 +Zhihu,"Beijing, Non-U.S.",,12/20/2022,0.1,Consumer,https://pandaily.com/chinese-qa-platform-zhihu-begins-layoffs/,Series F,892,China,12/21/2022 +Homebot,Denver,18.0,12/19/2022,0.13,Real Estate,https://homebot.ai/blog/a-letter-to-homebotters,Acquired,4,United States,1/20/2023 +Health IQ,SF Bay Area,,12/19/2022,,Healthcare,https://www.coverager.com/layoffs-at-health-iq/,Series D,136,United States,12/24/2022 +Xiaomi,"Beijing, Non-U.S.",,12/19/2022,,Consumer,https://technode.com/2022/12/19/chinese-phone-maker-xiaomi-begins-large-scale-layoffs-report/,Post-IPO,7400,China,12/19/2022 +YourGrocer,"Melbourne, Non-U.S.",,12/19/2022,1.0,Food,https://www.startupdaily.net/topic/business/melbourne-delivery-service-yourgrocer-is-the-latest-startup-to-go-under/,Unknown,2,Australia,12/27/2022 +Tomorrow,"Hamburg, Non-U.S.",30.0,12/16/2022,0.25,Finance,https://www.businessinsider.de/gruenderszene/fintech/tomorrow-kundigt-viertel-seines-teams/,Unknown,29,Germany,12/18/2022 +Revelate,"Montreal, Non-U.S.",24.0,12/16/2022,0.3,Data,https://betakit.com/layoffs-persist-at-canadian-tech-companies-amid-bleak-outlook-for-2023/,Series A,26,Canada,12/19/2022 + E Inc.,"Toronto, Non-U.S.",,12/16/2022,,Transportation,https://betakit.com/layoffs-persist-at-canadian-tech-companies-amid-bleak-outlook-for-2023/,Post-IPO,,Canada,12/19/2022 +Autograph,Los Angeles,,12/16/2022,,Crypto,https://www.businessinsider.com/tom-brady-nft-company-autograph-layoffs-sam-bankman-fried-2022-12,Series B,205,United States,12/19/2022 +FreshBooks,"Toronto, Non-U.S.",,12/16/2022,,Finance,https://betakit.com/layoffs-persist-at-canadian-tech-companies-amid-bleak-outlook-for-2023/,Unknown,331,Canada,3/21/2023 +Improbable,"London, Non-U.S.",,12/16/2022,0.1,Other,https://news.sky.com/story/softbank-backed-metaverse-creator-improbable-lays-off-staff-12769306,Unknown,704,United Kingdom,12/18/2022 +Modern Treasury,SF Bay Area,,12/16/2022,0.18,Finance,Internal memo,Series C,183,United States,12/21/2022 +Reach,"Calgary, Non-U.S.",,12/16/2022,0.12,Retail,https://betakit.com/layoffs-persist-at-canadian-tech-companies-amid-bleak-outlook-for-2023/,Series A,30,Canada,12/19/2022 +SonderMind,Denver,,12/16/2022,0.15,Healthcare,https://www.bizjournals.com/denver/news/2022/12/16/sondermind-layoffs.html,Series C,183,United States,12/18/2022 +BigCommerce,Austin,180.0,12/15/2022,0.13,Retail,https://www.marketwatch.com/story/bigcommerce-to-lay-off-13-of-workforce-271671103074,Post-IPO,224,United States,12/15/2022 +Freshworks,SF Bay Area,90.0,12/15/2022,0.02,Support,https://inc42.com/buzz/facing-macroeconomic-headwinds-freshworks-trims-nearly-2-workforce/,Post-IPO,484,United States,12/15/2022 +LeafLink,New York City,80.0,12/15/2022,0.31,Other,https://mjbizdaily.com/cannabis-wholesale-platform-leaflink-lays-off-80-workers/,Series C,379,United States,2/1/2023 +Workmotion,"Berlin, Non-U.S.",60.0,12/15/2022,0.2,HR,https://www.startbase.com/news/workmotion-entlaesst-20-prozent-seiner-belegschaft/,Series B,76,Germany,1/4/2023 +Apollo,SF Bay Area,,12/15/2022,0.15,Product,https://www.apollographql.com/blog/announcement/ceo-geoff-schmidts-message-to-apollo-employees/,Series D,183,United States,12/15/2022 +JD.ID,"Jakarta, Non-U.S.",200.0,12/14/2022,0.3,Retail,https://jakartaglobe.id/business/jdid-layoffs-reflect-struggles-in-indonesian-startup-industry,Post-IPO,5100,Indonesia,12/15/2022 +GoStudent,"Vienna, Non-U.S.",100.0,12/14/2022,,Education,https://www.businessinsider.com/gostudent-3-billion-edtech-startup-begins-fresh-round-of-layoffs-2022-12,Series D,686,Austria,12/15/2022 +Quanergy Systems,SF Bay Area,72.0,12/14/2022,,Transportation,https://www.bizjournals.com/sanjose/news/2022/12/14/quanergy-to-cut-72-jobs-in-sunnyvale.html,Post-IPO,175,United States,12/15/2022 +Headspace,Los Angeles,50.0,12/14/2022,0.04,Healthcare,https://www.bloomberg.com/news/articles/2022-12-14/meditation-app-headspace-cuts-50-workers-or-4-of-staff,Unknown,215,United States,12/15/2022 +ChowNow,Los Angeles,40.0,12/14/2022,0.1,Food,https://www.restaurantbusinessonline.com/amp/technology/chownow-cuts-more-jobs-delivery-demand-levels-out,Series C,64,United States,12/15/2022 +Landing,Birmingham,,12/14/2022,,Real Estate,https://www.al.com/business/2022/12/birmingham-tech-firm-landing-has-second-round-of-layoffs.html,Series C,347,United States,12/15/2022 +Thumbtack,SF Bay Area,160.0,12/13/2022,0.14,Consumer,Internal memo,Series I,698,United States,12/13/2022 +Edgio,Phoenix,95.0,12/13/2022,0.1,Infrastructure,https://www.marketscreener.com/amp/quote/stock/EDGIO-INC-52799/news/EDGIO-INC-Costs-Associated-with-Exit-or-Disposal-Activities-Change-in-Directors-or-Principal-Of-42549605/,Post-IPO,462,United States,12/15/2022 +Komodo Health,SF Bay Area,78.0,12/13/2022,0.09,Healthcare,https://techcrunch.com/2022/12/13/komodo-health-once-tipped-for-a-looming-ipo-has-cut-staff-as-cfo-departs/,Series E,514,United States,12/13/2022 +Viant,Los Angeles,46.0,12/13/2022,0.13,Marketing,https://www.businessinsider.com/viant-lay-off-13-percent-of-workforce-2022-12,Post-IPO,,United States,12/21/2022 +TaxBit,Salt Lake City,,12/13/2022,,Crypto,https://www.axios.com/local/salt-lake-city/2022/12/15/utah-tech-layoffs-silicon-slopes-losing-workers,Series B,235,United States,12/18/2022 +Pluralsight,Salt Lake City,400.0,12/12/2022,0.2,Education,https://www.pluralsight.com/newsroom/press-releases/ceo-aaron-skonnard-email-to-pluralsight,Acquired,192,United States,12/12/2022 +Freshly,Phoenix,329.0,12/12/2022,,Food,https://mouthbysouthwest.com/2022/12/12/phoenix-born-freshly-is-laying-off-329-local-workers-in-strategy-shift/,Acquired,107,United States,12/14/2022 +Balto,St. Louis,35.0,12/12/2022,,Sales,https://www.bizjournals.com/stlouis/inno/stories/news/2022/12/12/balto-software-layoffs.html,Series B,51,United States,12/13/2022 +Caribou,Washington D.C.,,12/12/2022,,Finance,https://coverager.com/layoffs-at-caribou/,Series C,189,United States,1/12/2023 +Outschool,SF Bay Area,43.0,12/10/2022,0.25,Education,https://techcrunch.com/2022/12/10/some-of-edtech-boldest-are-struggling/,Series D,240,United States,12/13/2022 +Xentral,"Munich, Non-U.S.",20.0,12/10/2022,0.1,Product,https://www.businessinsider.de/gruenderszene/business/xentral-entlassungen/,Series B,94,Germany,12/13/2022 +Autobooks,Detroit,,12/10/2022,,Finance,https://www.crainsdetroit.com/technology/fintech-startup-autobooks-lays-workers,Series C,97,United States,12/11/2022 +Convene,New York City,,12/10/2022,,Real Estate,https://www.linkedin.com/posts/ryan-simonetti-5873887_like-many-companies-weve-had-to-reassess-activity-7007097001259507712-ZpTF/,Unknown,281,United States,12/13/2022 +PharmEasy,"Mumbai, Non-U.S.",,12/10/2022,,Healthcare,https://inc42.com/buzz/pharmeasy-lays-off-more-employees-amid-funding-crunch/,Unknown,1600,India,12/11/2022 +Playtika,"Tel Aviv, Non-U.S.",600.0,12/9/2022,0.15,Consumer,https://en.globes.co.il/en/article-playtika-to-lay-off-600-1001432312,Post-IPO,,Israel,12/11/2022 +Bol.com,"Utrecht, Non-U.S.",300.0,12/9/2022,0.1,Retail,https://ecommercenews.eu/bol-com-lays-off-10-of-staff/,Acquired,,Netherlands,2/5/2024 +Share Now,"Berlin, Non-U.S.",150.0,12/9/2022,0.36,Transportation,https://www.businessinsider.de/gruenderszene/automotive-mobility/carsharing-sharenow-entlassungen-a/,Acquired,,Germany,12/13/2022 +Alice,"Sao Paulo, Non-U.S.",113.0,12/9/2022,0.16,Healthcare,https://startups.com.br/demissoes/alice-faz-nova-onda-de-demissoes-e-dispensa-113-pessoas/,Series C,174,Brazil,12/11/2022 +Primer,"London, Non-U.S.",85.0,12/9/2022,0.33,Finance,https://techcrunch.com/2022/12/09/primer-the-uk-e-commerce-tech-startup-has-laid-off-one-third-of-its-staff/,Series B,73,United Kingdom,12/9/2022 +OneFootball,"Berlin, Non-U.S.",62.0,12/9/2022,0.115,Marketing,https://company.onefootball.com/news/an-update-from-onefootball-founder-and-ceo-lucas-von-cranach/,Series D,442,Germany,12/21/2022 +C2FO,Kansas City,20.0,12/9/2022,0.02,Finance,https://www.bizjournals.com/kansascity/news/2023/10/16/c2fo-layoffs-marketing-sales-revenue-growth-ipo.html,Series H,537,United States,12/11/2022 +Brodmann17,"Tel Aviv, Non-U.S.",,12/9/2022,1.0,Other,https://techcrunch.com/2022/12/09/computer-vision-technology-startup-brodmann17-has-shut-down/,Series A,25,Israel,12/11/2022 +Digital Surge,"Brisbane, Non-U.S.",,12/9/2022,1.0,Crypto,https://www.9news.com.au/technology/australian-cryptocurrency-exchange-digital-surge-collapses-into-administration/ebbeb40c-6310-4250-b123-600bc6755cc5,Unknown,,Australia,12/11/2022 +N-able Technologies,Raleigh,,12/9/2022,,Other,,Post-IPO,225,United States,12/9/2022 +ZenLedger,Seattle,,12/9/2022,0.1,Crypto,https://blockworks.co/news/another-crypto-tax-software-startup-is-laying-off-staffers,Series B,25,United States,12/11/2022 +Airtable,SF Bay Area,254.0,12/8/2022,0.2,Product,https://techcrunch.com/2022/12/08/airtable-layoffs/,Series F,1400,United States,12/8/2022 +Swiggy,"Bengaluru, Non-U.S.",250.0,12/8/2022,0.03,Food,https://inc42.com/buzz/swiggy-fire-250-employees-further-layoffs-store/,Unknown,3600,India,12/9/2022 +Glints,"Singapore, Non-U.S.",198.0,12/8/2022,0.18,HR,https://www.techinasia.com/singaporebased-glints-lays-18-employees,Series D,82,Singapore,12/9/2022 +Buser,"Sao Paulo, Non-U.S.",160.0,12/8/2022,0.3,Transportation,https://startups.com.br/demissoes/buser-demite-30-para-se-adaptar-a-nova-realidade-do-mercado/,Series C,138,Brazil,12/11/2022 +BlackLine,Los Angeles,95.0,12/8/2022,0.05,Finance,https://seekingalpha.com/news/3915452-blackline-to-cut-jobs-by-5-globally-sec-filing,Private Equity,220,United States,12/11/2022 +Chrono24,"Karlsruhe, Non-U.S.",80.0,12/8/2022,,Retail,https://www.tag24.de/chemnitz/lokales/fuer-luxusuhren-haendler-in-chemnitz-rabenstein-laeuft-die-zeit-ab-2684514,Series C,205,Germany,1/15/2023 +Otonomo,"Tel Aviv, Non-U.S.",80.0,12/8/2022,0.5,Transportation,https://www.calcalistech.com/ctechnews/article/bjbvjqyoi,Post-IPO,231,Israel,12/11/2022 +TechTarget,Boston,60.0,12/8/2022,0.05,Marketing,https://www.marketwatch.com/story/techtarget-focuses-on-restructuring-plan-cutting-60-positions-271670628385,Post-IPO,115,United States,12/11/2022 +Inscripta,Boulder,43.0,12/8/2022,,Healthcare,https://www.genomeweb.com/business-news/inscripta-lays-dozens-closes-colorado-headquarters-san-diego-office#.Y5JvGOzMK8A,Series E,459,United States,12/9/2022 +CyCognito,SF Bay Area,30.0,12/8/2022,0.15,Security,https://www.calcalistech.com/ctechnews/article/h1suse100s,Series C,153,United States,12/9/2022 +Armis,SF Bay Area,25.0,12/8/2022,0.04,Security,https://www.calcalistech.com/ctechnews/article/by6mtcjuo,Private Equity,537,United States,12/11/2022 +Bakkt,Atlanta,,12/8/2022,0.15,Crypto,https://bakkt.com/newsroom/a-note-from-gavin-michael-to-bakkt-employees-bakkt,Post-IPO,932,United States,12/11/2022 +Blue Apron,New York City,,12/8/2022,0.1,Food,https://investors.blueapron.com/press-releases/2022/12-08-2022-140712547,Post-IPO,352,United States,12/8/2022 +FireHydrant,New York City,,12/8/2022,,Infrastructure,https://www.linkedin.com/posts/bobby-tables_today-weve-made-major-changes-at-firehydrant-activity-7006723101807763456-dU8s/,Series B,32,United States,12/11/2022 +Lenovo,Raleigh,,12/8/2022,,Hardware,https://wraltechwire.com/2022/12/09/blindsided-lenovo-confirms-layoffs-but-denies-report-of-10-cuts/,Post-IPO,850,United States,12/30/2022 +Nerdy,St. Louis,,12/8/2022,0.17,Education,https://www.bizjournals.com/stlouis/news/2022/12/08/online-tutoring-firm-nerdy-slashes.html,Post-IPO,150,United States,12/11/2022 +Vanta,SF Bay Area,,12/8/2022,0.14,Security,LinkedIn,Series B,203,United States,12/11/2022 +Vedantu,"Bengaluru, Non-U.S.",385.0,12/7/2022,,Education,https://economictimes.indiatimes.com/tech/startups/edtech-firm-vedantu-cuts-385-jobs-in-fourth-round-of-layoffs-this-year/articleshow/96060595.cms,Series E,292,India,12/7/2022 +Loft,"Sao Paulo, Non-U.S.",312.0,12/7/2022,0.12,Real Estate,https://www.bloomberglinea.com/english/brazilian-unicorn-loft-sheds-12-of-staff-in-third-wave-of-layoffs-this-year/,Unknown,788,Brazil,12/8/2022 +Plaid,SF Bay Area,260.0,12/7/2022,0.2,Finance,https://techcrunch.com/2022/12/07/plaid-layoff-fintech/,Series D,734,United States,12/7/2022 +Motive,SF Bay Area,237.0,12/7/2022,0.06,Transportation,https://gomotive.com/blog/shoaib-makanis-message-to-employees/,Series F,567,United States,12/8/2022 +Recur Forever,Miami,235.0,12/7/2022,,Crypto,https://www.classaction.org/news/recur-forever-laid-off-workers-without-proper-notice-class-action-says,Series A,55,United States,1/20/2023 +Relativity,Chicago,150.0,12/7/2022,0.1,Legal,https://www.chicagobusiness.com/technology/software-firm-relativity-cuts-10-staff,Private Equity,125,United States,12/8/2022 +Voi,"Stockholm, Non-U.S.",130.0,12/7/2022,0.13,Transportation,https://www.breakit.se/artikel/35283/voi-tvingas-drar-ner-igen-vi-ar-mycket-ledsna,Series D,515,Sweden,12/8/2022 +Integral Ad Science,New York City,120.0,12/7/2022,0.13,Marketing,https://investors.integralads.com/node/7871/html,Acquired,116,United States,12/8/2022 +Houzz,SF Bay Area,95.0,12/7/2022,0.08,Consumer,https://en.globes.co.il/en/article-houzz-lays-off-100-in-us-and-israel-1001433310,Series E,613,United States,12/21/2022 +Grover,"Berlin, Non-U.S.",40.0,12/7/2022,0.1,Retail,https://www.businessinsider.de/gruenderszene/business/entlassungen-bei-berliner-neu-unicorn-grover/?fbclid=IwAR3o2sB8MmcX3_y8HaAeRqIUU2T8YNYokRDZz5Nxkr0BjzhYRs84fR2hrW8,Unknown,2300,Germany,12/7/2022 +Lev,New York City,30.0,12/7/2022,0.3,Real Estate,https://therealdeal.com/2022/12/07/cre-finance-platform-lev-lays-off-chunk-of-staff/,Series B,114,United States,12/11/2022 +Lithic,New York City,27.0,12/7/2022,0.18,Finance,https://www.axios.com/pro/fintech-deals/2022/12/07/fintech-lithic-lays-off-27,Series C,115,United States,12/9/2022 +CircleCI,SF Bay Area,,12/7/2022,0.17,Product,https://circleci.com/blog/ceo-jim-rose-email-to-circleci-employees/,Series F,315,United States,12/7/2022 +Detectify,"Stockholm, Non-U.S.",,12/7/2022,,Security,https://www.breakit.se/artikel/34958/anstallda-far-ga-fran-detectify-tog-nyligen-in-108-miljoner,Unknown,42,Sweden,10/23/2023 +Sayurbox,"Jakarta, Non-U.S.",,12/7/2022,0.05,Food,https://www.techinasia.com/sayurbox-lays-off-2022,Series C,139,Indonesia,12/9/2022 +Zywave,Milwaukee,,12/7/2022,,Finance,https://www.bizjournals.com/milwaukee/news/2022/12/07/zywave-layoffs-growth-slows.html,Acquired,,United States,12/9/2022 +Doma,SF Bay Area,515.0,12/6/2022,0.4,Finance,https://investor.doma.com/node/8161/html,Post-IPO,679,United States,12/7/2022 +Intel,SF Bay Area,201.0,12/6/2022,,Hardware,https://www.crn.com/news/computing/intel-begins-layoffs-in-california-voluntary-unpaid-leave-program,Post-IPO,12,United States,12/30/2022 +BuzzFeed,New York City,180.0,12/6/2022,0.12,Media,https://variety.com/2022/digital/news/buzzfeed-layoffs-12-percent-employees-1235451552/,Post-IPO,696,United States,12/6/2022 +Weedmaps,Los Angeles,175.0,12/6/2022,0.25,Other,https://www.businessinsider.com/weedmaps-cannabis-company-layoffs-cutting-workforce-2022-12,Acquired,,United States,12/7/2022 +Adobe,SF Bay Area,100.0,12/6/2022,,Marketing,https://www.bloomberg.com/news/articles/2022-12-06/adobe-cuts-100-jobs-concentrated-in-sales-as-tech-tightens-belt,Post-IPO,2,United States,12/7/2022 +Chipper Cash,SF Bay Area,50.0,12/6/2022,0.125,Finance,https://techcrunch.com/2022/12/06/african-fintech-unicorn-chipper-cash-lays-off-about-12-5-of-staff/,Series C,302,United States,12/7/2022 +Stash,New York City,32.0,12/6/2022,0.08,Finance,https://lp.stash.com/news/saying-goodbye-to-some-of-our-colleagues-and-looking-towards-the-future/,Unknown,480,United States,12/7/2022 +Perimeter 81,"Tel Aviv, Non-U.S.",20.0,12/6/2022,0.08,Security,https://www.calcalistech.com/ctechnews/article/hjgmdpnws,Series C,165,Israel,12/7/2022 +Koinly,"London, Non-U.S.",16.0,12/6/2022,0.14,Crypto,https://blockworks.co/news/crypto-tax-startup-koinly-cuts-staffers-just-in-time-for-tax-season,Unknown,,United Kingdom,12/7/2022 +Bridgit,"Waterloo, Non-U.S.",13.0,12/6/2022,0.13,Construction,https://www.therecord.com/news/waterloo-region/2022/12/06/some-startups-scaling-back-as-investment-shrinks.html,Series B,36,Canada,12/19/2022 +Filevine,Salt Lake City,,12/6/2022,,Legal,https://www.axios.com/local/salt-lake-city/2022/12/15/utah-tech-layoffs-silicon-slopes-losing-workers,Series D,226,United States,12/18/2022 +Moove,"Lagos, Non-U.S.",,12/6/2022,,Transportation,https://techpoint.africa/2022/12/06/moove-layoffs,Unknown,630,Nigeria,12/21/2022 +Nextiva,Phoenix,,12/6/2022,0.17,Other,https://www.channelfutures.com/business-models/nextiva-layoffs-impact-17-of-workforce-including-partner-development-leader-hilary-gadda,Private Equity,200,United States,12/7/2022 +OneStudyTeam,Boston,,12/6/2022,0.25,Healthcare,https://www.mobihealthnews.com/news/onestudyteam-lays-about-quarter-its-workforce,Series D,479,United States,12/7/2022 +Zuora,SF Bay Area,,12/6/2022,0.11,Finance,https://www.morningstar.com/news/marketwatch/20221206496/zuora-beats-on-earnings-but-misses-on-outlook-while-announcing-layoffs,Post-IPO,647,United States,12/7/2022 +Swyftx,"Brisbane, Non-U.S.",90.0,12/5/2022,0.4,Crypto,https://www.smh.com.au/business/companies/worst-case-scenario-local-crypto-exchange-swyftx-lays-off-40-percent-of-staff-20221205-p5c3mu.html,Unknown,,Australia,12/5/2022 +Aqua Security,Boston,65.0,12/5/2022,0.1,Security,https://www.calcalistech.com/ctechnews/article/s1uxohjvs,Series E,265,United States,12/6/2022 +DataRails,"Tel Aviv, Non-U.S.",30.0,12/5/2022,0.18,Finance,https://www.calcalistech.com/ctechnews/article/s1ka1tjvj,Series B,103,Israel,12/6/2022 +Elemy,SF Bay Area,,12/5/2022,,Healthcare,https://bhbusiness.com/2022/12/05/elemy-lays-off-staff-as-it-winds-down-direct-care-for-platform-business/,Series B,323,United States,12/6/2022 +Route,Lehi,,12/5/2022,,Retail,https://www.sltrib.com/news/2022/12/06/2-more-utah-tech-companies-each/,Unknown,481,United States,12/7/2022 +Thinkific,"Vancouver, Non-U.S.",,12/5/2022,,Education,https://techcouver.com/2022/12/05/rebound-thinkific-labs-layoffs/,Post-IPO,22,Canada,12/19/2022 +OYO,"Gurugram, Non-U.S.",600.0,12/3/2022,,Travel,https://www.livemint.com/companies/news/oyo-to-layoff-600-execs-across-technology-teams-hire-250-for-sales-11670056711013.html,Series F,4000,India,12/4/2022 +HealthifyMe,Bengaluru,150.0,12/3/2022,,Fitness,https://inc42.com/buzz/fitness-healthtech-startup-healthifyme-lays-off-150-employees/,Series C,100,India,12/4/2022 +Bybit,"Singapore, Non-U.S.",,12/3/2022,0.3,Crypto,https://cointelegraph.com/news/bybit-announces-second-round-of-layoffs-in-2022-to-survive-bear-market,Unknown,,Singapore,12/4/2022 +Cognyte,"Tel Aviv, Non-U.S.",100.0,12/2/2022,0.05,Security,https://www.globes.co.il/news/article.aspx?did=1001431603,Unknown,,Israel,12/4/2022 +ShareChat,"Bengaluru, Non-U.S.",100.0,12/2/2022,,Consumer,https://www.india.com/business/sharechat-layoff-to-effect-over-100-employees-winds-down-fantasy-sport-app-jeet11-sahrechat-sacks-workforce-latest-news-5777356/,Unknown,1700,India,12/3/2022 +Polly,Burlington,47.0,12/2/2022,0.15,Finance,https://vtdigger.org/2022/12/02/williston-based-insurance-tech-startup-polly-lays-off-47-employees/,Series C,184,United States,12/4/2022 +Homebound,SF Bay Area,,12/2/2022,,Real Estate,Internal memo,Unknown,128,United States,12/3/2022 +Lora DiCarlo,Bend,,12/2/2022,1.0,Consumer,https://techcrunch.com/2022/12/02/looks-like-sextech-startup-lora-dicarlo-is-done-for/,Unknown,9,United States,12/4/2022 +Carousell,"Singapore, Non-U.S.",110.0,12/1/2022,0.1,Retail,https://www.straitstimes.com/singapore/jobs/carousell-cuts-110-jobs-to-rein-in-costs,Private Equity,372,Singapore,12/3/2022 +Bizzabo,New York City,100.0,12/1/2022,0.37,Marketing,https://www.calcalistech.com/ctechnews/article/h1ajz9idj,Series E,194,United States,12/3/2022 +BloomTech,SF Bay Area,88.0,12/1/2022,0.5,Education,https://techcrunch.com/2022/12/01/bloomtech-previously-lambda-school-cuts-half-of-staff/,Unknown,,United States,12/1/2022 +Netlify,SF Bay Area,48.0,12/1/2022,0.16,Product,Internal memo,Series D,212,United States,12/8/2022 +Springbig,Miami,37.0,12/1/2022,0.23,Sales,https://mjbizdaily.com/marijuana-software-firm-springbig-laying-off-nearly-25-percent-of-workforce/,Post-IPO,32,United States,12/19/2022 +Podium,Lehi,,12/1/2022,0.12,Support,https://www.businessinsider.com/podium-layoffs-customer-management-startup-2022-12,Series D,419,United States,12/1/2022 +SQZ Biotech,Boston,,12/1/2022,0.6,Healthcare,https://www.fiercebiotech.com/biotech/sqz-ceo-exits-biotech-axes-60-staff-synlogic-succumbs-layoff-pressure,Post-IPO,229,United States,12/11/2022 +Strava,SF Bay Area,,12/1/2022,0.14,Fitness,https://www.bicycleretailer.com/industry-news/2022/12/05/layoffs-affect-about-15-staff-strava#.Y5Jcu-zMK8A,Series F,151,United States,12/4/2022 +Synlogic,Boston,,12/1/2022,0.25,Healthcare,https://www.fiercebiotech.com/biotech/sqz-ceo-exits-biotech-axes-60-staff-synlogic-succumbs-layoff-pressure,Post-IPO,321,United States,12/11/2022 +Yapily,"London, Non-U.S.",,12/1/2022,,Finance,https://www.linkedin.com/posts/yapily_a-message-from-our-founder-and-ceo-ensuring-activity-7004119711693066240-ZeUT/,Series A,69,United Kingdom,12/3/2022 +DoorDash,SF Bay Area,1250.0,11/30/2022,0.06,Food,https://www.reuters.com/business/retail-consumer/doordash-cuts-1250-jobs-an-effort-rein-expenses-2022-11-30/,Post-IPO,2500,United States,11/30/2022 +Kraken,SF Bay Area,1100.0,11/30/2022,0.3,Crypto,https://blog.kraken.com/post/16442/business-update/,Unknown,134,United States,11/30/2022 +Happy Money,Los Angeles,158.0,11/30/2022,0.34,Finance,Internal memo,Series D,191,United States,12/1/2022 +Ula,"Jakarta, Non-U.S.",134.0,11/30/2022,0.23,Retail,https://dailysocial.id/post/ula-layoff-2022,Series B,140,Indonesia,12/1/2022 +Wonder,New York City,130.0,11/30/2022,0.07,Food,https://www.theinformation.com/articles/marc-lores-kitchen-on-wheels-startup-cuts-staff-dials-back-delivery-ambitions,Series B,850,United States,12/1/2022 +StudySmarter,"Berlin, Non-U.S.",70.0,11/30/2022,,Education,https://www.startbase.de/news/studysmarter-entlaesst-etwa-70-mitarbeitende/,Series A,64,Germany,1/12/2023 +Grin,Sacramento,60.0,11/30/2022,0.13,Marketing,https://www.theinformation.com/briefings/influencer-marketing-startup-grin-lays-off-60-employees,Series B,145,United States,12/3/2022 +Ualá,"Buenos Aires, Non-U.S.",53.0,11/30/2022,0.03,Finance,https://www.perfil.com/noticias/economia/empresa-uala-despidio-medio-centenar-trabajadores.phtml,Series D,544,Argentina,12/1/2022 +Teachmint,"Bengaluru, Non-U.S.",45.0,11/30/2022,0.05,Education,https://inc42.com/buzz/edtech-startup-teachmint-lays-off-45-employees/,Series B,118,India,12/1/2022 +Etermax,"Buenos Aires, Non-U.S.",40.0,11/30/2022,,Other,https://www.clarin.com/economia/despidos-reestructuracion-tecnologicas-empresas-achican-pasar-2023_0_uxSUuShZhQ.html,Unknown,,Argentina,12/1/2022 +Thread,"London, Non-U.S.",30.0,11/30/2022,0.5,Retail,https://www.drapersonline.com/news/ms-acquires-thread-intellectual-property,Acquired,40,United Kingdom,12/11/2022 +Nexar,New York City,25.0,11/30/2022,,Transportation,https://www.calcalistech.com/ctechnews/article/rktq3gqc3,Series D,149,United States,9/4/2023 +Elastic,SF Bay Area,,11/30/2022,0.13,Data,https://www.elastic.co/blog/ceo-ash-kulkarni-email-to-elastic-employees,Post-IPO,162,United States,12/1/2022 +Motional,Boston,,11/30/2022,,Transportation,https://techcrunch.com/2022/12/01/hyundai-aptiv-backed-av-startup-motional-cuts-workforce/,Unknown,,United States,12/3/2022 +Pinterest,SF Bay Area,,11/30/2022,,Consumer,https://www.theinformation.com/briefings/pinterest-cuts-recruiting-team-slows-hiring,Post-IPO,1500,United States,12/1/2022 +Sana,Seattle,,11/30/2022,0.15,Healthcare,https://www.fiercebiotech.com/biotech/sana-lays-15-trims-pipeline-keep-funding-flowing-shelf-car-ts,Series A,700,United States,1/6/2023 +Venafi,Salt Lake City,,11/30/2022,,Security,https://www.axios.com/local/salt-lake-city/2022/12/15/utah-tech-layoffs-silicon-slopes-losing-workers,Acquired,167,United States,12/18/2022 +Bitso,"Mexico City, Non-U.S.",100.0,11/29/2022,,Crypto,https://portaldobitcoin.uol.com.br/corretora-de-criptomoedas-bitso-faz-segunda-rodada-de-demissoes-no-brasil-e-no-mexico/,Series C,378,Mexico,11/30/2022 +Lyst,"London, Non-U.S.",50.0,11/29/2022,0.25,Retail,https://techcrunch.com/2022/11/29/lyst-the-uk-fashion-marketplace-is-laying-off-25-of-staff/,Unknown,144,United Kingdom,11/30/2022 +CoinJar,"Melbourne, Non-U.S.",10.0,11/29/2022,0.2,Crypto,https://www.theaustralian.com.au/business/technology/melbourne-crypto-startup-coinjar-axes-20pc-of-workforce/news-story/485648b4b36a538ff7c00287adb57d5a,Unknown,1,Australia,11/30/2022 +Bitfront,SF Bay Area,,11/29/2022,1.0,Crypto,https://www.reuters.com/technology/crypto-exchange-bitfront-shuts-down-2022-11-29/,Unknown,,United States,11/30/2022 +Codexis,SF Bay Area,,11/29/2022,0.18,Healthcare,https://www.codexis.com/investors/news-events/press-releases/detail/342/codexis-provides-update-on-prioritized-corporate-strategy,Post-IPO,162,United States,11/30/2022 +Firework,SF Bay Area,,11/29/2022,0.1,Retail,https://www.theinformation.com/articles/live-shopping-startup-firework-lays-off-10-of-staff,Series B,269,United States,12/1/2022 +Lazerpay,"Lagos, Non-U.S.",,11/29/2022,,Crypto,https://techpoint.africa/2022/11/29/lazerpay-starts-layoff,Unknown,,Nigeria,11/30/2022 +MessageBird,"Amsterdam, Non-U.S.",,11/29/2022,0.31,Other,https://tech.eu/2022/11/29/messagebird-lay-offs-close-to-a-third-of-the/,Series C,1100,Netherlands,11/30/2022 +Plerk,"Guadalajara, Non-U.S.",,11/29/2022,0.4,Finance,https://www.linkedin.com/posts/mikemedina20_hoy-es-uno-de-los-momentos-m%C3%A1s-complicados-activity-7003406809403170817-N_Hf/,Series A,13,Mexico,11/30/2022 +Proton.ai,Boston,,11/29/2022,,Sales,https://docs.google.com/spreadsheets/d/15EHi8nTiILQk6xztU5LSIcuUm-XhRQm52U-GNvPGrWg/edit#gid=0,Series A,20,United States,12/3/2022 +Infarm,"Berlin, Non-U.S.",500.0,11/28/2022,0.5,Other,https://www.infarm.com/news/note-from-infarm-s-founders-strategy-shift-and-profitability-at-infarm,Series D,604,Germany,11/29/2022 +Wildlife Studios,"Sao Paulo, Non-U.S.",300.0,11/28/2022,0.2,Consumer,https://mobilegamer.biz/massive-layoffs-at-wildlife-as-it-drops-all-non-mobile-game-projects/,Unknown,260,Brazil,11/29/2022 +Hirect,"Bengaluru, Non-U.S.",200.0,11/28/2022,0.4,Recruiting,https://www.livemint.com/companies/start-ups/startup-direct-hiring-platform-hirect-fires40ofworkforce-11669662447280.html,Series A,,India,11/29/2022 +ApplyBoard,"Waterloo, Non-U.S.",90.0,11/28/2022,0.06,Education,https://www.therecord.com/news/waterloo-region/2022/11/28/applyboard-lays-off-six-per-cent-of-its-workforce.html,Series D,483,Canada,11/30/2022 +Ajaib,"Jakarta, Non-U.S.",67.0,11/28/2022,0.08,Finance,https://www.techinasia.com/indonesian-investment-platform-ajaib-lays-8-headcount,Unknown,245,Indonesia,11/30/2022 +Candy Digital,New York City,33.0,11/28/2022,0.33,Crypto,https://decrypt.co/115811/gary-vee-sports-nft-candy-digital-mass-layoffs,Series A,100,United States,11/29/2022 +ResearchGate,"Berlin, Non-U.S.",25.0,11/28/2022,0.1,Other,https://www.linkedin.com/posts/ijad-madisch-4428229_today-we-are-reducing-the-size-of-the-researchgate-activity-7002973716632502273-7jum/,Series D,87,Germany,11/28/2022 +BlockFi,New York City,,11/28/2022,1.0,Crypto,https://decrypt.co/115744/crypto-lender-blockfi-files-bankruptcy-ftx-contagion-claims-another,Series E,1000,United States,11/30/2022 +FutureLearn,"London, Non-U.S.",,11/28/2022,,Education,https://www.classcentral.com/report/futurelearn-layoffs/,Unknown,50,United Kingdom,11/30/2022 +Inspectify,Seattle,,11/28/2022,,Real Estate,https://www.bizjournals.com/seattle/news/2022/11/28/inspectify-layoffs-seattle-real-estate-tech.html,Series A,11,United States,11/30/2022 +Ledn,"Toronto, Non-U.S.",,11/28/2022,,Crypto,https://www.theblock.co/post/190436/crypto-lender-ledn-lays-off-chief-commercial-officer-in-latest-industry-job-cuts,Series B,103,Canada,12/19/2022 +NCX,SF Bay Area,,11/28/2022,0.4,Energy,https://ncx.com/learning-hub/an-update-from-ncx-co-founders-zack-parisa-and-max-nova/,Series B,78,United States,12/1/2022 +Spora Health,SF Bay Area,,11/28/2022,1.0,Healthcare,https://www.businessinsider.com/spora-health-startup-closed-laid-off-workers-2023-10,Seed,4,United States,10/31/2023 +Change Invest,"Amsterdam, Non-U.S.",,11/27/2022,0.24,Finance,https://arileht.delfi.ee/artikkel/120105494/jarjekordne-eesti-idufirma-koondab-veerandi-oma-tootajatest,Unknown,22,Netherlands,1/23/2023 +Zilch,"London, Non-U.S.",,11/26/2022,,Finance,https://www.standard.co.uk/business/london-fintech-unicorn-zilch-poised-to-begin-wave-of-layoffs-as-downturn-hits-buy-now-pay-later-sector-b1042587.html,Unknown,389,United Kingdom,11/29/2022 +VerSe Innovation,"Bengaluru, Non-U.S.",150.0,11/25/2022,0.05,Media,https://techcrunch.com/2022/11/28/verse-innovation-layoff-salary-cut/,Series J,1700,India,11/28/2022 +Carwow,"London, Non-U.S.",70.0,11/25/2022,0.2,Transportation,https://www.ft.com/content/19150de3-bbd4-42b3-acbd-52b228dc1bf1,Unknown,157,United Kingdom,11/29/2022 +Vendease,"Lagos, Non-U.S.",27.0,11/25/2022,0.09,Food,https://techcabal.com/2022/11/25/nigerian-food-procurement-platform-vendease-lays-off-9-of-its-workforce/,Series A,43,Nigeria,11/30/2022 +Lemon,"Buenos Aires, Non-U.S.",100.0,11/24/2022,0.38,Crypto,https://www.forbesargentina.com/innovacion/lemon-despide-tercio-sus-empleados-anuncia-nuevo-foco-compania-sea-mas-sostenible-n25358,Series A,17,Argentina,11/25/2022 +Quidax,"Lagos, Non-U.S.",20.0,11/24/2022,0.2,Crypto,https://techcabal.com/2022/11/24/nigerian-crypto-exchange-quidax-lays-off-20-of-its-workforce/,Unknown,3,Nigeria,11/26/2022 +Menulog,"Sydney, Non-U.S.",,11/24/2022,,Food,https://www.smh.com.au/technology/difficult-decision-menulog-cuts-jobs-in-australia-20221124-p5c111.html,Acquired,,Australia,11/28/2022 +Utopia Music,"Zug, Non-U.S.",,11/24/2022,,Media,https://www.musicbusinessworldwide.com/utopia-music-makes-layoffs-as-it-downsizes-global-team/,Series B,,Switzerland,11/25/2022 +Assure,Salt Lake City,,11/23/2022,1.0,Finance,https://www.axios.com/2022/11/23/assure-shutdown-fintech-startup-investing,Seed,2,United States,11/25/2022 +GoodGood,"Toronto, Non-U.S.",,11/23/2022,1.0,Retail,https://betakit.com/one-year-after-raising-6-5-million-goodgood-shuts-down-claiming-it-cant-find-more-money/,Seed,6,Canada,11/25/2022 +Muni Tienda,"Bogota, Non-U.S.",,11/23/2022,1.0,Other,https://www.bloomberglinea.com/2022/11/24/startup-colombiana-cierra-ante-la-imposibilidad-de-levantar-mas-capital/,Series A,20,Colombia,3/10/2023 +SWVL,"Cairo, Non-U.S.",,11/23/2022,0.5,Transportation,https://techcrunch.com/2022/11/28/swvl-reduces-its-headcount-by-50-six-months-after-axing-400-staff/,Post-IPO,264,Egypt,11/25/2022 +Western Digital,SF Bay Area,251.0,11/22/2022,,Hardware,https://www.bizjournals.com/sanjose/news/2022/11/22/western-digital-latest-valley-company-with-layoffs.html,Post-IPO,900,United States,2/13/2023 +SIRCLO,"Jakarta, Non-U.S.",160.0,11/22/2022,0.08,Retail,https://dailysocial.id/post/sirclo-layoff-2022,Series B,92,Indonesia,11/22/2022 +Movidesk,"Blumenau, Non-U.S.",118.0,11/22/2022,,Support,https://startups.com.br/noticias/zenvia-faz-limpa-na-movidesk-e-demite-118-funcionarios/,Acquired,11,Brazil,5/24/2023 +Trax,"Singapore, Non-U.S.",80.0,11/22/2022,0.08,Retail,https://www.themarker.com/technation/2022-11-22/ty-article/.premium/00000184-9f73-d710-a7c6-df731af70000,Series E,1000,Singapore,11/22/2022 +Flash Coffee,"Singapore, Non-U.S.",,11/22/2022,,Food,https://www.businesstimes.com.sg/startups-tech/startups/rocket-internet-backed-flash-coffee-lays-staff-across-markets,Series B,57,Singapore,11/25/2022 +Natera,SF Bay Area,,11/22/2022,,Healthcare,https://www.bizjournals.com/sanjose/news/2022/11/22/peninsula-biotechs-cutting-dozens-of-jobs.html,Post-IPO,809,United States,11/29/2022 +Rapyd,"Tel Aviv, Non-U.S.",,11/22/2022,,Finance,https://en.globes.co.il/en/article-israeli-fintech-co-rapyd-to-lay-off-dozens-1001430704,Unknown,770,Israel,11/30/2022 +Reynen Court,"Amsterdam, Non-U.S.",,11/22/2022,,Legal,https://www.lawnext.com/2022/11/reynen-court-app-store-of-legal-reduces-staff-tells-vendors-they-could-see-service-delays.html,Unknown,23,Netherlands,7/26/2023 +Jumia,"Lagos, Non-U.S.",900.0,11/21/2022,0.2,Retail,https://techcrunch.com/2023/02/16/jumia-laid-off-20-of-staff-in-q4-2022-amid-work-to-reduce-losses-by-half-this-year/,Post-IPO,1200,Nigeria,12/21/2022 +Kitopi,"Dubai, Non-U.S.",93.0,11/21/2022,0.1,Food,https://www.arabianbusiness.com/jobs/dubai-unicorn-kitopi-sacks-93-head-office-staff-as-tech-industry-slumps,Series C,804,UAE,11/23/2022 +Devo,Boston,,11/21/2022,0.15,Security,https://tekdeeps.com/the-unicorn-devo-lays-off-15-of-its-global-team/,Series F,481,United States,12/13/2022 +GloriFi,Dallas,,11/21/2022,1.0,Finance,https://www.wsj.com/articles/anti-woke-bank-glorifi-to-shut-down-11669051554,Unknown,,United States,11/25/2022 +Zomato,"Gurugram, Non-U.S.",100.0,11/19/2022,0.04,Food,https://www.businesstoday.in/latest/economy/story/after-byjus-now-zomato-fires-employees-about-100-jobs-impacted-so-far-report-353435-2022-11-19,Series J,914,India,11/20/2022 +Carvana,Phoenix,1500.0,11/18/2022,0.08,Transportation,https://www.wsj.com/articles/carvana-plans-to-lay-off-1-500-employees-cites-economic-concerns-11668793114,Post-IPO,1600,United States,11/18/2022 +Nuro,SF Bay Area,300.0,11/18/2022,0.2,Transportation,https://techcrunch.com/2022/11/18/autonomous-delivery-startup-nuro-lays-off-20-of-workforce/,Series D,2100,United States,11/18/2022 +Synthego,SF Bay Area,105.0,11/18/2022,0.2,Healthcare,https://www.fiercebiotech.com/biotech/fierce-biotech-layoff-tracker-2022,Series E,459,United States,11/29/2022 +Splyt,"London, Non-U.S.",57.0,11/18/2022,,Transportation,https://www.linkedin.com/posts/philipp-mintchin-27b0b943_since-the-beginning-of-the-pandemic-in-2020-activity-7000407838200147968-vFMO/,Series B,34,United Kingdom,1/18/2023 +Capitolis,New York City,,11/18/2022,0.25,Finance,https://www.risk.net/derivatives/7955234/capitolis-cuts-workforce-by-25-as-bear-market-bites,Series D,281,United States,12/15/2022 +Kavak,"Sao Paulo, Non-U.S.",,11/18/2022,,Transportation,https://businessinsider.mx/kavak-despidos-compra-autos-crisis_negocios/,Series E,1600,Brazil,11/20/2022 +Metaplex,Chicago,,11/18/2022,,Crypto,https://ambcrypto.com/solana-nft-protocol-metaplex-announces-layoffs-after-ftxs-collapse/,Unknown,,United States,11/20/2022 +Ruangguru,"Jakarta, Non-U.S.",,11/18/2022,,Education,https://www.techinasia.com/ruangguru-lays-hundreds-employees,Unknown,205,Indonesia,11/21/2022 +StoryBlocks,Washington D.C.,,11/18/2022,0.25,Media,https://www.linkedin.com/feed/update/urn:li:activity:6999412858606256129/,Acquired,18,United States,11/19/2022 +Unchained Capital,Austin,,11/18/2022,0.15,Crypto,https://unchained.com/blog/update-from-our-ceo/,Series A,33,United States,1/24/2023 +Roku,SF Bay Area,200.0,11/17/2022,0.07,Media,https://variety.com/2022/digital/news/roku-layoffs-200-employees-1235435468/amp/,Post-IPO,208,United States,11/17/2022 +Orchard,New York City,180.0,11/17/2022,,Real Estate,https://www.inman.com/2022/11/17/orchard-lays-off-180-workers-amid-historic-housing-disruption/,Series D,472,United States,11/18/2022 +Homepoint,Phoenix,113.0,11/17/2022,,Real Estate,https://www.bizjournals.com/phoenix/news/2022/11/17/homepoint-laying-off-az-employees-interest-rates.html,Post-IPO,,United States,11/19/2022 +Juni,"Gothenburg, Non-U.S.",72.0,11/17/2022,0.33,Finance,https://www.finextra.com/newsarticle/41340/juni-joins-fintech-bloodbath-lays-off-a-third-of-staff,Unknown,281,Sweden,11/19/2022 +Chili Piper,New York City,58.0,11/17/2022,,Sales,https://www.linkedin.com/feed/update/urn:li:activity:6999112600667983872/,Series B,54,United States,11/17/2022 +Capitolis,New York City,37.0,11/17/2022,0.25,Finance,https://www.themarker.com/technation/2022-11-17/ty-article/.premium/00000184-8592-d309-afe7-a597c17f0000,Series D,281,United States,11/18/2022 +TealBook,"Toronto, Non-U.S.",34.0,11/17/2022,0.19,Other,https://www-theglobeandmail-com.cdn.ampproject.org/c/s/www.theglobeandmail.com/amp/business/article-symend-tealbook-latest-canadian-tech-startups-to-cut-staff-amid-market/,Series B,73,Canada,11/17/2022 +Koho,"Toronto, Non-U.S.",15.0,11/17/2022,0.04,Finance,https://betakit.com/canadian-tech-layoffs-continue-as-tough-year-comes-to-a-close/,Series D,278,Canada,11/20/2022 +&Open,"Dublin, Non-U.S.",9.0,11/17/2022,0.09,Marketing,https://www.irishtimes.com/technology/2022/11/17/gifting-platform-open-to-cut-nine-roles-from-global-workforce/,Series A,35,Ireland,12/1/2022 +Kandji,San Diego,,11/17/2022,0.17,Other,Internal memo,Series C,188,United States,11/19/2022 +Morning Brew,New York City,,11/17/2022,0.14,Media,https://twitter.com/maxwelltani/status/1593236660627861504,Acquired,,United States,11/19/2022 +Symend,"Calgary, Non-U.S.",,11/17/2022,0.13,Other,https://www-theglobeandmail-com.cdn.ampproject.org/c/s/www.theglobeandmail.com/amp/business/article-symend-tealbook-latest-canadian-tech-startups-to-cut-staff-amid-market/,Series C,148,Canada,11/17/2022 +Amazon,Seattle,10000.0,11/16/2022,0.03,Retail,https://www.nytimes.com/2022/11/14/technology/amazon-layoffs.html,Post-IPO,108,United States,11/16/2022 +Cisco,SF Bay Area,4100.0,11/16/2022,0.05,Infrastructure,https://www.bizjournals.com/sanjose/news/2022/11/16/cisco-announces-600m-restructuring-layoffs.html,Post-IPO,2,United States,11/17/2022 +Twiga,"Nairobi, Non-U.S.",211.0,11/16/2022,0.21,Food,https://techcrunch.com/2022/11/16/kenyas-twiga-dismisses-in-house-sales-team-affecting-21-of-it-employees/,Series C,157,Kenya,11/30/2022 +Wayflyer,"Dublin, Non-U.S.",200.0,11/16/2022,0.4,Marketing,https://sifted.eu/articles/wayflyer-layoffs-global-2022/,Unknown,889,Ireland,11/17/2022 +Similarweb,New York City,120.0,11/16/2022,0.1,Other,https://en.globes.co.il/en/article-similarweb-cuts-10-of-workforce-1001430060,Post-IPO,235,United States,11/17/2022 +Salsify,Boston,90.0,11/16/2022,0.11,Retail,https://www.bizjournals.com/boston/inno/stories/news/2022/11/16/salsify-layoffs-2022.html,Series F,452,United States,11/17/2022 +Lokalise,Dover,76.0,11/16/2022,0.23,Other,https://lokalise.com/blog/changes-at-lokalise/,Series B,56,United States,11/17/2022 +Yotpo,New York City,70.0,11/16/2022,0.09,Marketing,https://www.calcalistech.com/ctechnews/article/hy00chefus,Unknown,436,United States,11/17/2022 +Pear Therapeutics,Boston,59.0,11/16/2022,0.22,Healthcare,https://www.fiercebiotech.com/medtech/pear-therapeutics-trims-workforce-another-22,Post-IPO,409,United States,12/11/2022 +D2L,"Waterloo, Non-U.S.",,11/16/2022,0.05,Education,https://www.d2l.com/newsroom/a-note-from-d2l-leadership/,Post-IPO,168,Canada,11/17/2022 +Dance,"Berlin, Non-U.S.",,11/16/2022,0.16,Transportation,https://www.linkedin.com/feed/update/activity:6998722842930356225/,Unknown,63,Germany,11/17/2022 +Homeward,Austin,,11/16/2022,0.25,Real Estate,https://www.linkedin.com/feed/update/urn:li:activity:6998764085748101121/,Unknown,501,United States,11/19/2022 +Hopin,"London, Non-U.S.",,11/16/2022,0.17,Other,https://www.exhibitionworld.co.uk/hopin-announces-new-layoffs-and-a-transformation-with-new-product-launches,Series D,1000,United Kingdom,11/17/2022 +Infogrid,"London, Non-U.S.",,11/16/2022,,Other,https://www.infogrid.io/blog/a-letter-from-infogrids-ceo-will,Series A,15,United Kingdom,12/3/2022 +Kite,SF Bay Area,,11/16/2022,1.0,Product,https://www.kite.com/blog/product/kite-is-saying-farewell/,Series A,21,United States,11/25/2022 +UiPath,New York City,241.0,11/15/2022,0.06,Data,https://www.marketwatch.com/story/uipath-stock-rockets-after-company-announces-further-layoffs-suggests-revenue-could-beat-2022-11-15,Post-IPO,2000,United States,11/17/2022 +Asana,SF Bay Area,180.0,11/15/2022,0.09,Other,https://www.linkedin.com/posts/anneraimondi_earlier-today-we-shared-the-incredibly-difficult-activity-6998297745270718465-a_MV/,Post-IPO,453,United States,11/15/2022 +OwnBackup,New York City,170.0,11/15/2022,0.17,Security,https://www.calcalistech.com/ctechnews/article/h12tcmbuj,Series E,507,United States,11/17/2022 +Deliveroo Australia,"Melbourne, Victoria",120.0,11/15/2022,1.0,Food,https://www.abc.net.au/news/2022-11-16/deliveroo-enters-voluntary-administration/101661932,Post-IPO,1700,Australia,11/17/2022 +Productboard,SF Bay Area,100.0,11/15/2022,0.2,Product,https://cc.cz/cesky-startup-productboard-propousti-100-lidi-je-to-nejtezsi-rozhodnuti-kariery-rika-hubert-palan/,Series D,,United States,11/17/2022 +Properly,"Toronto, Non-U.S.",71.0,11/15/2022,,Real Estate,https://inside.properly.ca/important-changes-to-the-properly-team-3c2d04191dd6,Series B,154,Canada,11/17/2022 +Protocol,SF Bay Area,60.0,11/15/2022,1.0,Media,https://www.cnn.com/2022/11/15/media/protocol/index.html,Acquired,,United States,11/15/2022 +Jimdo,"Hamburg, Non-U.S.",50.0,11/15/2022,0.16,Other,https://www.businessinsider.de/gruenderszene/business/entlassungswelle-jimdo-november/,Unknown,28,Germany,11/17/2022 +The Zebra,Austin,50.0,11/15/2022,,Finance,https://coverager.com/the-zebra-goes-through-another-round-of-layoffs/,Series D,256,United States,11/17/2022 +Viber,"Luxembourg, Non-U.S.",45.0,11/15/2022,0.08,Consumer,https://www.calcalistech.com/ctechnews/article/hyy6fhwlo,Acquired,,Luxembourg,11/17/2022 +CaptivateIQ,SF Bay Area,31.0,11/15/2022,0.1,Sales,Internal memo,Series C,164,United States,11/17/2022 +Apollo Insurance,"Vancouver, Non-U.S.",,11/15/2022,0.25,Finance,https://www.insurancebusinessmag.com/ca/news/breaking-news/apollo-insurance-makes-layoffs-427596.aspx,Series B,11,Canada,11/20/2022 +Nirvana Money,Miami,,11/15/2022,1.0,Finance,https://twitter.com/_Liso_/status/1592561040898019328,Unknown,,United States,11/16/2022 +Oatly,"Malmö, Non-U.S.",,11/15/2022,,Food,https://www.cnn.com/2022/11/15/business-food/oatly-q3-2022-results/index.html,Post-IPO,441,Sweden,11/17/2022 +OfferUp,Seattle,,11/15/2022,0.19,Retail,https://www.geekwire.com/2022/more-tech-layoffs-hit-seattle-region-as-mobile-marketplace-offerup-cuts-19-of-workforce/,Unknown,381,United States,11/17/2022 +Outside,Boulder,,11/15/2022,0.12,Media,https://www.crunchbase.com/organization/pocket-outdoor-media,Series B,174,United States,11/17/2022 +Rubicon Technologies,Lexington,,11/15/2022,0.11,Other,https://www.sec.gov/Archives/edgar/data/1862068/000182912622019365/rubicontech_8k.htm,Post-IPO,382,United States,11/19/2022 +Tencent,"Shenzen, Non-U.S.",,11/15/2022,,Consumer,https://www.reuters.com/technology/chinas-tencent-starts-new-round-layoffs-sources-2022-11-15/,Post-IPO,12600,China,11/17/2022 +Typeform,"Barcelona, Non-U.S.",,11/15/2022,,Marketing,Internal memo,Series C,187,Spain,11/17/2022 +Whispir,"Melbourne, Non-U.S.",,11/15/2022,0.3,Other,https://www.afr.com/technology/whispir-cuts-30pc-of-staff-shares-surge-40pc-20221115-p5byfw,Post-IPO,68,Australia,11/17/2022 +Illumina,San Diego,500.0,11/14/2022,0.05,Healthcare,https://www.genomeweb.com/business-news/illumina-lays-approximately-500-employees-response-economic-climate#.Y4FAPOzMJjM,Post-IPO,28,United States,11/17/2022 +Sema4,Stamford,500.0,11/14/2022,,Healthcare,https://www.marketwatch.com/story/sema4-to-cut-500-jobs-in-exit-from-reproductive-women-s-health-testing-smfr-271668433348?mod=markets,Post-IPO,791,United States,11/14/2022 +iFit,Logan,300.0,11/14/2022,0.2,Fitness,https://www.sltrib.com/news/2022/11/14/hundreds-utah-jobs-cut-logans/,Private Equity,200,United States,11/17/2022 +Ribbon,New York City,170.0,11/14/2022,0.85,Real Estate,https://www.businessinsider.com/ribbon-more-layoffs-proptech-startup-economic-uncertainty-2022-11,Series C,405,United States,11/22/2022 +Pipedrive,"Tallinn, Non-U.S.",143.0,11/14/2022,0.15,Sales,https://digipro.geenius.ee/rubriik/uudis/tehnoloogiasektori-koondamislaine-joudis-ka-eestisse-pipedrive-laseb-lahti-143-tootajat/,Private Equity,90,Estonia,11/15/2022 +Intercom,SF Bay Area,124.0,11/14/2022,0.13,Support,https://www.siliconrepublic.com/business/intercom-job-cuts-ireland-global,Series D,240,United States,11/14/2022 +Science 37 ,Los Angeles,90.0,11/14/2022,,Healthcare,https://www.bizjournals.com/triangle/news/2022/11/14/science-37-layoffs-biotech-clinical-headwinds.html,Post-IPO,347,United States,11/14/2022 +Pear Therapeutics,Boston,59.0,11/14/2022,0.22,Healthcare,https://peartherapeutics.com/pear-therapeutics-reports-third-quarter-2022-results/,Post-IPO,409,United States,11/17/2022 +Cardlytics,Atlanta,51.0,11/14/2022,,Marketing,https://www.marketscreener.com/quote/stock/CARDLYTICS-INC-40680969/news/Cardlytics-to-Terminate-51-Employees-Appoints-John-Balen-Chairman-Shares-up-After-Hours-42312731/,Post-IPO,212,United States,11/15/2022 +Cloudinary,SF Bay Area,40.0,11/14/2022,0.08,Media,"https://www.calcalistech.com/ctechnews/article/h1sioa1li#:~:text=Israeli%20unicorn%20Cloudinary%2C%20which%20has,total%20of%20around%2040%20employees.",Unknown,100,United States,11/17/2022 +Nestcoin,"Lagos, Non-U.S.",30.0,11/14/2022,,Crypto,https://techcrunch.com/2022/11/14/african-web3-startup-nestcoin-declares-it-held-its-assests-in-ftx-lays-off-employees/,Seed,6,Nigeria,11/20/2022 +Gokada,"Lagos, Non-U.S.",20.0,11/14/2022,,Transportation,https://techcabal.com/2023/02/02/gokada-layoffs-affects-54/,Unknown,12,Nigeria,2/2/2023 +Shopee,"Jakarta, Non-U.S.",,11/14/2022,,Food,https://www.straitstimes.com/business/sea-e-commerce-arm-shopee-cuts-jobs-in-third-round-of-layoffs-this-year-including-in-s-pore,Unknown,,Indonesia,11/15/2022 +Tricida,SF Bay Area,,11/14/2022,0.5700000000000001,Healthcare,https://seekingalpha.com/pr/19020683-tricida-announces-third-quarter-2022-financial-results,Post-IPO,624,United States,1/19/2023 +Veev,SF Bay Area,100.0,11/11/2022,0.3,Real Estate,https://www.calcalistech.com/ctechnews/article/hjkataiss,Series D,597,United States,11/12/2022 +Forto,"Berlin, Non-U.S.",60.0,11/11/2022,0.08,Logistics,https://www.deutsche-startups.de/2022/11/11/forto-delivery-hero-stuffle-burnout-hr-startups/,Series D,593,Germany,1/4/2023 +Chipax,"Santiago, Non-U.S.",,11/11/2022,,Finance,https://www.linkedin.com/posts/chipax_talento-disponible-chipax-activity-7003341302985551872-45cE/,Seed,2,Chile,12/14/2022 +Juniper,Atlanta,,11/11/2022,,Marketing,https://www.linkedin.com/posts/bill-furlong-0895451_juniper-announced-layoffs-today-impacting-activity-6997051846091554816-XniX/,Acquired,,United States,11/17/2022 +Offerpad,Phoenix,,11/11/2022,0.07,Real Estate,https://www.bizjournals.com/phoenix/news/2022/11/11/offerpad-zillow-opendoor-redfin-arizona-layoffs.html,Post-IPO,355,United States,11/17/2022 +GoTo Group,"Jakarta, Non-U.S.",1300.0,11/10/2022,0.12,Transportation,https://www.reuters.com/technology/indonesias-goto-cuts-1300-workers-or-12-total-employees-2022-11-18/,Post-IPO,1300,Indonesia,11/11/2022 +Juul,SF Bay Area,400.0,11/10/2022,0.3,Consumer,https://www.cnbc.com/2022/11/10/juul-strikes-financing-deal-plans-to-cut-jobs-to-dodge-bankruptcy.html,Unknown,1500,United States,11/10/2022 +Blend,SF Bay Area,100.0,11/10/2022,0.06,Finance,https://www.housingwire.com/articles/blend-reports-133-98-million-loss-in-q3-layoffs-of-100-positions/,Post-IPO,665,United States,12/9/2022 +InfluxData,SF Bay Area,65.0,11/10/2022,0.27,Data,Internal memo,Series D,119,United States,11/12/2022 +Coinbase,SF Bay Area,60.0,11/10/2022,,Crypto,https://www.theinformation.com/articles/coinbase-is-cutting-more-jobs,Post-IPO,549,United States,11/10/2022 +SoundHound,SF Bay Area,45.0,11/10/2022,0.1,Other,https://techcrunch.com/2022/11/10/soundhound-layoffs/,Post-IPO,326,United States,11/10/2022 +Wistia,Boston,40.0,11/10/2022,,Marketing,https://www.linkedin.com/feed/update/urn:li:activity:6996584795774328832/,Unknown,18,United States,11/11/2022 +Ocavu,Lehi,20.0,11/10/2022,0.48,Crypto,https://www.sltrib.com/news/2022/11/10/company-partnering-with-byu-nft/,Series A,11,United States,11/12/2022 +Avast,Phoenix,,11/10/2022,0.25,Security,https://cijeurope.com/en/gen-digital-to-lay-off-about-a-quarter-of-its-staff-in-czechia/post.html,Unknown,,United States,11/17/2022 +Reforge,SF Bay Area,,11/10/2022,,Education,https://www.linkedin.com/posts/bbalfour_today-i-made-the-difficult-decision-to-activity-6996635113606316033-aQuf/,Series B,81,United States,11/12/2022 +SendCloud,"Eindhoven, Non-U.S.",,11/10/2022,0.1,Logistics,https://www.linkedin.com/posts/robvandenheuvel92_the-past-weeks-have-been-hard-on-our-team-activity-6996417331459457026-QXWF/,Series C,200,Netherlands,11/10/2022 +Voly,"Sydney, Non-U.S.",,11/10/2022,,Food,https://www.news.com.au/finance/business/retail/australian-grocery-delivery-startup-cuts-more-staff-after-18m-fundraise/news-story/694e7bdd0241e76b43a36a75e58a2287,Seed,13,Australia,11/17/2022 +Wavely,SF Bay Area,,11/10/2022,1.0,HR,https://www.wavely.com/talentresources/wavely-shutting-down,Unknown,,United States,11/11/2022 +ZenBusiness,Austin,,11/10/2022,,Other,https://www.bizjournals.com/austin/inno/stories/news/2022/11/10/layoffs-at-zenbusiness.html,Series C,277,United States,11/11/2022 +Meta,SF Bay Area,11000.0,11/9/2022,0.13,Consumer,https://www.cnbc.com/2022/11/09/meta-to-lay-off-more-than-11000-thousand-employees.html,Post-IPO,26000,United States,11/9/2022 +Redfin,Seattle,862.0,11/9/2022,0.13,Real Estate,https://www.businessinsider.com/redfin-layoffs-home-flipping-business-redfinnow-shut-down-2022-11,Post-IPO,320,United States,11/9/2022 +Flyhomes,Seattle,300.0,11/9/2022,0.4,Real Estate,https://www.geekwire.com/2022/flyhomes-does-another-round-of-layoffs-as-housing-market-hurts-real-estate-tech-companies/,Series C,310,United States,11/10/2022 +AvantStay,Los Angeles,144.0,11/9/2022,0.22,Travel,https://shorttermrentalz.com/news/avantstay-workforce-redundancies-round/,Private Equity,686,United States,11/11/2022 +Root Insurance,Columbus,137.0,11/9/2022,0.2,Finance,https://www.dispatch.com/story/business/employment/2022/11/09/columbus-company-root-to-cut-20-of-its-workforce/69635184007/,Post-IPO,527,United States,11/10/2022 +Liftoff,SF Bay Area,130.0,11/9/2022,0.15,Marketing,Internal memo,Acquired,6,United States,11/17/2022 +Cameo,Chicago,80.0,11/9/2022,,Consumer,https://www.theinformation.com/briefings/cameo-lays-off-staff-for-second-time-this-year,Unknown,165,United States,11/9/2022 +Plum,"Bengaluru, Non-U.S.",36.0,11/9/2022,0.1,Healthcare,https://www.moneycontrol.com/news/business/announcements/tiger-global-backed-plum-insurance-lays-off-36-employees-9478371.html,Series A,20,India,11/11/2022 +Kabam,SF Bay Area,35.0,11/9/2022,0.07,Consumer,https://techcrunch.com/2022/11/09/kabam-layoffs/,Acquired,244,United States,11/9/2022 +HighRadius,"Bengaluru, Non-U.S.",25.0,11/9/2022,,Finance,https://www.newindianexpress.com/business/2022/nov/17/indian-employees-of-us-based-software-firm-highradius-furious-and-upset-over-manner-they-were-sacked-2519198.html,Series C,475,India,12/7/2022 +Namogoo,"Tel Aviv, Non-U.S.",25.0,11/9/2022,0.15,Marketing,https://www.calcalistech.com/ctechnews/article/hjjawkyri,Series C,69,Israel,1/24/2023 +Amobee,SF Bay Area,,11/9/2022,,Marketing,https://www.linkedin.com/feed/update/urn:li:activity:6996113373260054528/,Acquired,72,United States,11/13/2022 +CloudFactory,"Nairobi, Non-U.S.",,11/9/2022,0.12,Data,https://time.com/6234014/tech-layoffs-twitter-amazon-global-workers/,Private Equity,78,Kenya,11/20/2022 +Coursera,SF Bay Area,,11/9/2022,,Education,https://blog.coursera.org/changes-to-the-coursera-team/,Post-IPO,458,United States,11/10/2022 +Faze Medicines,Boston,,11/9/2022,1.0,Healthcare,https://www.bizjournals.com/boston/news/2022/11/09/faze-medicines-shutdown-third-rock-ventures.html,Series B,81,United States,11/12/2022 +RingCentral,SF Bay Area,,11/9/2022,0.1,Other,https://www.barrons.com/articles/ringcentral-cuts-staff-earnings-51668030815,Post-IPO,44,United States,11/10/2022 +Spotify,"Stockholm, Non-U.S.",,11/9/2022,,Media,https://www.digitalmusicnews.com/2022/11/09/spotify-layoffs-november-2022/,Post-IPO,2100,Sweden,11/10/2022 +EverBridge,Boston,200.0,11/8/2022,,Other,https://www.bizjournals.com/boston/news/2022/11/08/everbridge-to-lay-off-200-workers.html,Post-IPO,476,United States,1/19/2023 +Repertoire Immune Medicines,Boston,65.0,11/8/2022,0.5,Healthcare,https://www.bizjournals.com/boston/news/2022/11/07/repertoire-immune-medicines-layoffs-2022-biotech.html,Series B,257,United States,11/9/2022 +Astra,SF Bay Area,,11/8/2022,0.16,Aerospace,https://www.linkedin.com/posts/chrisckemp_today-we-made-the-difficult-decision-to-activity-6995868932138033153-knfZ/,Post-IPO,300,United States,11/9/2022 +Beat,"Athens, Non-U.S.",,11/8/2022,,Transportation,https://www.linkedin.com/posts/thebeatapp_hello-from-beat-we-would-like-to-share-activity-6995832143574622208--0fX/,Series B,6,Greece,11/11/2022 +NanoString,Seattle,,11/8/2022,0.1,Healthcare,https://www.genomeweb.com/business-news/nanostring-technologies-delivers-underwhelming-q3-lays-10-percent-workforce#.Y3MWTuzMK58,Post-IPO,731,United States,11/17/2022 +SADA,Los Angeles,,11/8/2022,0.11,Other,https://www.linkedin.com/posts/safoian_today-we-say-goodbye-to-11-of-our-sada-activity-6995835385201213440-MTMJ/,Acquired,,United States,11/9/2022 +Salesforce,SF Bay Area,1000.0,11/7/2022,0.01,Sales,https://www.cnbc.com/2022/11/08/salesforce-cut-hundreds-of-employees-on-monday.html,Post-IPO,65,United States,11/9/2022 +Unacademy,"Bengaluru, Non-U.S.",350.0,11/7/2022,0.1,Education,https://economictimes.indiatimes.com/tech/startups/unacademy-cuts-another-350-jobs-in-second-round-of-layoffs/articleshow/95361443.cms,Series H,838,India,11/7/2022 +Zendesk,SF Bay Area,350.0,11/7/2022,0.05,Support,https://twitter.com/GergelyOrosz/status/1589676662593302528,Acquired,85,United States,11/7/2022 +Dock,"Sao Paulo, Non-U.S.",190.0,11/7/2022,0.12,Finance,https://www.infomoney.com.br/negocios/exclusivo-startup-dock-nao-passa-ilesa-e-faz-demissao-em-massa/,Private Equity,280,Brazil,11/8/2022 +Code42,Minneapolis,,11/7/2022,0.15,Security,https://www.startribune.com/minneapolis-tech-firm-code42-lays-off-15-of-workforce/600222811/,Unknown,137,United States,11/8/2022 +Domino Data Lab,SF Bay Area,,11/7/2022,0.25,Data,https://docs.google.com/spreadsheets/d/1YKzaAkolJv-rem3UidjYFKk6VW1FyITeTAJrc8z0_Xc/edit#gid=0,Series F,223,United States,11/8/2022 +Varonis,New York City,110.0,11/6/2022,0.05,Security,https://www.calcalistech.com/ctechnews/article/hjfkkmrbo,Post-IPO,30,United States,11/6/2022 +Brainly,"Krakow, Non-U.S.",25.0,11/6/2022,,Education,https://www.newindianexpress.com/lifestyle/tech/2022/nov/06/poland-based-ed-tech-platform-brainly-fires-nearly-all-staff-in-india-2515584.html,Series D,148,Poland,11/7/2022 +Practically,"Hyderabad, Non-U.S.",,11/6/2022,,Education,https://www.moneycontrol.com/news/business/startup/k-12-edtech-firm-practically-lays-off-staffers-holds-salaries-citing-funds-crunch-9457711.html,Unknown,14,India,11/6/2022 +Twitter,SF Bay Area,3700.0,11/4/2022,0.5,Consumer,https://www.nytimes.com/2022/11/04/technology/elon-musk-twitter-layoffs.html,Post-IPO,12900,United States,11/4/2022 +Udaan,"Bengaluru, Non-U.S.",350.0,11/4/2022,,Retail,https://inc42.com/buzz/udaan-fires-350-employees-in-second-wave-of-layoffs-this-year/,Unknown,1500,India,11/5/2022 +Planetly,"Berlin, Non-U.S.",200.0,11/4/2022,1.0,Other,https://www.axios.com/pro/climate-deals/2022/11/04/planetly-shuts-down-layoffs-carbon-accounting,Acquired,5,Germany,11/5/2022 +KoinWorks,"Jakarta, Non-U.S.",70.0,11/4/2022,0.08,Finance,https://www.techinasia.com/koinworks-layoff-2022,Unknown,180,Indonesia,11/27/2022 +Exodus,Nebraska City,59.0,11/4/2022,0.22,Crypto,https://www.exodus.com/news/exodus-restructure/,Unknown,60,United States,11/12/2022 +Benitago Group,New York City,,11/4/2022,0.14,Retail,https://techcrunch.com/2022/11/04/benitago-group-lay-off-employees/,Series A,380,United States,11/5/2022 +Mythical Games,Los Angeles,,11/4/2022,0.1,Crypto,https://www.bloomberg.com/news/articles/2022-11-04/blockchain-game-studio-mythical-games-cuts-10-of-staff,Series C,260,United States,11/6/2022 +Stripe,SF Bay Area,1000.0,11/3/2022,0.14,Finance,https://www.bloomberg.com/news/articles/2022-11-03/stripe-cutting-headcount-by-14-as-it-readies-for-leaner-times,Series H,2300,United States,11/3/2022 +Lyft,SF Bay Area,700.0,11/3/2022,0.13,Transportation,https://www.wsj.com/articles/lyft-plans-to-lay-off-hundreds-of-staffers-11667490092,Post-IPO,4900,United States,11/3/2022 +LendingTree,Charlotte,200.0,11/3/2022,,Finance,https://investors.lendingtree.com/static-files/b06a0e39-53f1-480a-867f-230222a6a84c,Post-IPO,,United States,1/23/2023 +Pleo,"Copenhagen, Non-U.S.",150.0,11/3/2022,0.15,Finance,https://www.finextra.com/newsarticle/41262/danish-fintech-pleo-cuts-workforce-by-15,Series C,428,Denmark,11/3/2022 +Delivery Hero,"Berlin, Non-U.S.",100.0,11/3/2022,,Food,https://mobile.twitter.com/GergelyOrosz/status/1588220445039497222,Post-IPO,8300,Germany,11/5/2022 +Shippo,SF Bay Area,60.0,11/3/2022,0.2,Logistics,https://www.linkedin.com/posts/laurabehrenswu_today-we-made-the-difficult-decision-to-exit-activity-6994028038543851520-M9iZ/,Series E,154,United States,11/4/2022 +Affirm,SF Bay Area,,11/3/2022,0.01,Finance,https://www.theinformation.com/briefings/e-commerce-layoff-tally-mounts-with-faire-affirm-cuts,Post-IPO,1500,United States,11/4/2022 +CloudKitchens,Los Angeles,,11/3/2022,,Real Estate,https://www.businessinsider.com/travis-kalanick-cloudkitchens-startup-is-cutting-jobs-2022-11,Unknown,1300,United States,11/4/2022 +LiveRamp,SF Bay Area,,11/3/2022,0.1,Marketing,https://www.marketscreener.com/quote/stock/LIVERAMP-HOLDINGS-INC-54039111/news/LIVERAMP-HOLDINGS-INC-Costs-Associated-with-Exit-or-Disposal-Activities-form-8-K-42212180/,Post-IPO,16,United States,11/5/2022 +Provi,Chicago,,11/3/2022,,Food,https://www.chicagobusiness.com/technology/alcohol-ordering-startup-provi-sets-layoffs,Series C,150,United States,11/5/2022 +Rubius,Boston,,11/3/2022,0.8200000000000001,Healthcare,https://www.fiercebiotech.com/biotech/more-biotechs-hit-wall-rubius-lays-82-and-tricida-seeks-out-sale,Post-IPO,445,United States,11/17/2022 +Snapdocs,SF Bay Area,,11/3/2022,0.15,Real Estate,Internal memo,Series D,253,United States,11/5/2022 +Studio,SF Bay Area,,11/3/2022,,Education,https://www.linkedin.com/feed/update/urn:li:activity:6993982210890485760/,Series B,50,United States,11/5/2022 +Opendoor,SF Bay Area,550.0,11/2/2022,0.18,Real Estate,https://www.bloomberg.com/news/articles/2022-11-02/opendoor-lays-off-18-of-workers-in-wave-of-housing-cutbacks,Post-IPO,1900,United States,11/2/2022 +Chime,SF Bay Area,156.0,11/2/2022,0.12,Finance,https://www.theinformation.com/articles/chime-slashes-12-of-staff-marking-latest-casualty-in-fintech-meltdown,Series G,2300,United States,11/2/2022 +Chargebee,SF Bay Area,142.0,11/2/2022,0.1,Finance,https://techcrunch.com/2022/11/02/tiger-global-chargebee-layoffs/,Series H,468,United States,11/3/2022 +Dapper Labs,"Vancouver, Non-U.S.",134.0,11/2/2022,0.22,Crypto,https://betakit.com/dapper-labs-lays-off-22-percent-of-staff/,Series D,607,Canada,11/3/2022 +Checkmarx,"Tel Aviv, Non-U.S.",100.0,11/2/2022,0.1,Security,https://www.calcalistech.com/ctechnews/article/hjailhyri,Series C,92,Israel,11/2/2022 +Smava,"Berlin, Non-U.S.",100.0,11/2/2022,0.15,Finance,https://www.businessinsider.de/gruenderszene/fintech/smava-entlassungen-oktober/,Unknown,188,Germany,11/3/2022 +Iron Ox,SF Bay Area,50.0,11/2/2022,0.5,Food,https://techcrunch.com/2022/11/03/iron-ox-lays-off-50-amounting-to-nearly-half-its-staff/,Series C,103,United States,11/3/2022 +Digital Currency Gruop,Stamford,10.0,11/2/2022,0.13,Crypto,https://www.coindesk.com/business/2022/11/02/digital-currency-group-promotes-mark-murphy-to-president-cuts-nearly-13-staff-report/,Unknown,,United States,11/3/2022 +BitMEX,Non-U.S.,,11/2/2022,0.3,Crypto,https://www.theblock.co/post/181814/crypto-exchange-bitmex-cuts-part-of-workforce-following-ceo-departure-exclusive,Seed,,Seychelles,11/3/2022 +Signicat,Trondheim,,11/2/2022,,Security,https://www.signicat.com/press-releases/signicat-to-realize-cost-synergies,Acquired,8,Norway,11/7/2022 +Argo AI,SF Bay Area,259.0,11/1/2022,,Transportation,https://www.bizjournals.com/sanjose/news/2023/01/03/argo-ai-lays-off-259-palo-alto-employes.html,Unknown,3600,United States,1/5/2023 +Booking.com,Grand Rapids,226.0,11/1/2022,,Travel,https://www.crainsdetroit.com/west-michigan/bookingcom-close-grand-rapids-area-facility-lay-226,Acquired,,United States,11/3/2022 +Oracle,SF Bay Area,200.0,11/1/2022,,Other,https://www.businessinsider.com/oracle-cloud-infrastructure-layoffs-200-employees-2022-11?IR=T,Post-IPO,,United States,11/17/2022 +Upstart,SF Bay Area,140.0,11/1/2022,0.07,Finance,https://techcrunch.com/2022/11/01/upstart-layoffs/,Post-IPO,144,United States,11/1/2022 +Gem,SF Bay Area,100.0,11/1/2022,0.33,Recruiting,https://www.theinformation.com/briefings/recruiting-startup-gem-cuts-a-third-of-workforce,Series C,148,United States,11/1/2022 +Oda,"Oslo, Non-U.S.",70.0,11/1/2022,0.18,Food,https://www.dn.no/handel/oda/oda-kutter-70-arsverk-ma-ha-ny-milliardinnsproytning/2-1-1344693?zephr_sso_ott=mwDa9x,Unknown,377,Sweden,11/1/2022 +Oda,"Oslo, Non-U.S.",70.0,11/1/2022,0.18,Food,https://shifter.no/nyheter/oda-sparker-70-og-henter-15-milliarder-kroner/262587,Unknown,477,Norway,11/11/2022 +Oda,"Oslo, Non-U.S.",70.0,11/1/2022,0.06,Food,https://norway.postsen.com/local/62256/Oda-lays-off-employees-to-collect-billions-of-dollars-%E2%80%93-E24.html,Unknown,479,Norway,11/30/2022 +Hootsuite,"Vancouver, Non-U.S.",50.0,11/1/2022,0.05,Marketing,Internal memo,Series C,300,Canada,11/1/2022 +Drop,"Toronto, Non-U.S.",24.0,11/1/2022,,Marketing,Internal memo,Series B,56,Canada,11/3/2022 +Tapps Games,"Sao Paulo, Non-U.S.",10.0,11/1/2022,,Consumer,https://dropsdejogos.uai.com.br/noticias/indie/tapps-games-demissoes/,Unknown,,Brazil,1/21/2023 +Brightline,SF Bay Area,,11/1/2022,0.2,Healthcare,https://bhbusiness.com/2022/11/01/virtual-pediatric-behavioral-health-startup-brightline-cuts-20-of-its-staff/,Series C,212,United States,11/1/2022 +Help Scout,Boston,,11/1/2022,,Support,https://www.linkedin.com/feed/update/urn:li:activity:6992877901922590720/,Series B,28,United States,11/12/2022 +Kry,"Stockholm, Non-U.S.",300.0,10/31/2022,0.1,Healthcare,https://www.dn.se/ekonomi/kry-sager-upp-runt-300-anstallda/,Series D,568,Sweden,11/1/2022 +Notarize,Boston,60.0,10/31/2022,,Legal,https://www.bizjournals.com/boston/news/2022/10/31/notarize-another-round-layoffs-this-year.html,Series D,213,United States,11/1/2022 +EquityZen,New York City,30.0,10/31/2022,0.27,Finance,https://www.axios.com/2022/10/31/scoop-layoffs-hit-startup-stock-marketplace-equityzen,Series B,11,United States,11/1/2022 +Equitybee,SF Bay Area,25.0,10/31/2022,0.2,Finance,https://www.calcalistech.com/ctechnews/article/hkrqontns,Series B,85,United States,10/31/2022 +Dukaan,"Bengaluru, Non-U.S.",23.0,10/31/2022,,Retail,https://www.vccircle.com/saasplatform-dukaan-lays-off-23-employees,Series A,17,India,10/31/2022 +Doubtnut,"Gurugram, Non-U.S.",,10/31/2022,0.3,Education,https://entrackr.com/2023/04/exclusive-doubtnut-slashes-costs-by-80-raises-2-5-mn-in-internal-round/,Series B,49,India,4/14/2023 +Amazon,Seattle,150.0,10/28/2022,,Retail,https://www.geekwire.com/2022/amazon-makes-staff-cuts-at-amp-the-app-it-launched-this-year-to-reimagine-radio/,Post-IPO,108,United States,1/11/2023 +Fifth Season,Pittsburgh,100.0,10/28/2022,1.0,Food,https://www.bizjournals.com/pittsburgh/news/2022/10/29/vertical-farming-startup-fifth-season-shuts-down.html,Series B,35,United States,10/30/2022 +Advata,Seattle,32.0,10/28/2022,0.21,Healthcare,https://www.geekwire.com/2022/seattle-area-health-data-analytics-company-advata-lays-off-employees/,,,United States,10/31/2022 +Springlane,"Düsseldorf, Non-U.S.",,10/28/2022,0.35000000000000003,Food,https://www.linkedin.com/posts/marius-till-fritzsche-4535214_90-30-40-das-ist-unser-wachstum-der-activity-6991732141092970496-owuK/,Series C,11,Germany,10/28/2022 +RenoRun,"Montreal, Non-U.S.",210.0,10/27/2022,0.43,Construction,https://www.theglobeandmail.com/business/article-renorun-canadian-tech-layoffs/,Series B,163,Canada,10/28/2022 +Recharge,Los Angeles,84.0,10/27/2022,0.17,Finance,https://rechargepayments.com/blog/a-message-from-oisin/,Series B,277,United States,10/28/2022 +Lattice,SF Bay Area,13.0,10/27/2022,,HR,Internal memo,Series F,328,United States,11/3/2022 +GoNuts,"Mumbai, Non-U.S.",,10/27/2022,1.0,Media,https://inc42.com/buzz/celebrity-engagement-startup-gonuts-shut-operations/,Seed,,India,10/30/2022 +Spreetail,Austin,,10/27/2022,,Retail,https://www.wearespreetail.com/blog/a-message-from-global-ceo-brett-thome,,,United States,10/28/2022 +Seagate,SF Bay Area,3000.0,10/26/2022,0.08,Hardware,https://www.cnbc.com/2022/10/26/seagate-will-cut-3000-employees-in-latest-sign-of-major-pc-and-cloud-slowdown.html,Post-IPO,,United States,4/1/2023 +MindBody,San Luis Obispo,400.0,10/26/2022,0.15,Fitness,https://www.sanluisobispo.com/news/business/article267890657.html,Post-IPO,114,United States,10/26/2022 +Zillow,Seattle,300.0,10/26/2022,0.05,Real Estate,https://techcrunch.com/2022/10/26/zillow-layoff-300-employees/,Post-IPO,97,United States,10/26/2022 +Cybereason,Boston,200.0,10/26/2022,0.17,Security,https://www.calcalistech.com/ctechnews/article/sjspj00uvs,Series F,750,United States,10/26/2022 +Argo AI,Pittsburgh,173.0,10/26/2022,,Transportation,https://www.autonews.com/mobility-report/argo-ai-lay-173-startup-folds,Unknown,3600,United States,10/26/2022 +GoFundMe,SF Bay Area,94.0,10/26/2022,0.12,Finance,https://www.gofundme.com/c/announcement,Series A,,United States,10/26/2022 +Carbon,SF Bay Area,,10/26/2022,,Hardware,https://3dprint.com/295233/layoffs-continue-with-3d-printing-double-unicorn-carbon/,Series E,683,United States,1/4/2023 +Fundbox,SF Bay Area,150.0,10/25/2022,0.42,Finance,https://www.calcalistech.com/ctechnews/article/sypou4svi,Series D,553,United States,10/25/2022 +Embroker,SF Bay Area,30.0,10/25/2022,0.12,Finance,https://www.theinsurer.com/news/insurtech-embroker-lays-off-12-of-global-workforce/25922.article,Series C,142,United States,10/26/2022 +Vee,"Tel Aviv, Non-U.S.",17.0,10/25/2022,0.5,HR,https://www.calcalistech.com/ctechnews/article/hju1ylrnj,Seed,15,Israel,10/25/2022 +Callisto Media,SF Bay Area,,10/25/2022,0.35000000000000003,Media,https://www.publishersweekly.com/pw/by-topic/industry-news/publisher-news/article/90722-after-massive-july-layoff-callisto-media-cuts-staff-further.html,Series D,,United States,10/26/2022 +Convoy,Seattle,,10/25/2022,,Logistics,https://www.geekwire.com/2022/convoy-lays-off-more-employees-as-part-of-reorganization-at-seattle-trucking-startup/,Series E,1100,United States,10/25/2022 +Philips,"Amsterdam, Non-U.S.",4000.0,10/24/2022,0.05,Healthcare,https://www.reuters.com/business/philips-cut-4000-jobs-after-medical-equipment-recall-2022-10-24/,Post-IPO,,Netherlands,1/21/2023 +Cerebral,SF Bay Area,400.0,10/24/2022,0.2,Healthcare,https://techcrunch.com/2022/10/24/telehealth-unicorn-cerebral-lays-off-20-of-staff-for-operational-efficiencies/,Series C,462,United States,10/24/2022 +Snyk,Boston,198.0,10/24/2022,0.14,Security,https://en.globes.co.il/en/article-cybersecurity-co-snyk-laying-off-14-of-workforce-1001427487,Series F,849,United States,10/24/2022 +McMakler,"Berlin, Non-U.S.",100.0,10/24/2022,,Real Estate,https://www.businessinsider.de/gruenderszene/business/mcmakler-neue-massenentlassungen-oktober-2022/,Unknown,214,Germany,10/25/2022 +Unico,"Sao Paulo, Non-U.S.",50.0,10/24/2022,0.04,Other,https://startups.com.br/noticias/unico-demite-na-area-de-vendas-e-reforca-equipe-de-tecnologia/,Series D,336,Brazil,1/18/2023 +OrCam,"Jerusalem, Non-U.S.",62.0,10/23/2022,0.16,Healthcare,https://www.calcalistech.com/ctechnews/article/ry5v11kgvo,Unknown,86,Israel,10/24/2022 +Antidote Health,"Tel Aviv, Non-U.S.",23.0,10/23/2022,0.38,Healthcare,https://www.calcalistech.com/ctechnews/article/s1xwokmvi,Unknown,36,Israel,10/24/2022 +Khoros,Austin,120.0,10/21/2022,0.1,Sales,https://www.bizjournals.com/austin/inno/stories/news/2022/10/21/report-layoffs-at-khoros.html,Private Equity,138,United States,10/22/2022 +F5,Seattle,100.0,10/21/2022,0.01,Security,https://www.geekwire.com/2022/f5-cutting-fewer-than-100-jobs-due-to-current-macroeconomic-environment/,Post-IPO,,United States,11/17/2022 +Elinvar,"Berlin, Non-U.S.",43.0,10/21/2022,0.33,Finance,https://financefwd.com/de/elinvar-entlassungen-funding/,Unknown,30,Germany,10/24/2022 +Synapsica,"New Delhi, Non-U.S.",30.0,10/21/2022,0.3,Healthcare,https://yourstory.com/2022/10/healthtech-startup-synapsica-layoffs-30-people-workforce/amp,Series A,4,India,10/22/2022 +Volta,SF Bay Area,,10/21/2022,0.54,Transportation,https://investors.voltacharging.com/news/news-details/2022/Volta-Provides-Update-on-Business-Realignment/default.aspx,Post-IPO,575,United States,10/22/2022 +Hotmart,"Belo Horizonte, Non-U.S.",227.0,10/20/2022,0.12,Marketing,https://www.bloomberglinea.com/english/brazils-tcv-backed-hotmart-cuts-12-of-staff-amid-drop-in-operational-efficiency/,Series C,127,Brazil,10/22/2022 +Zeus Living,SF Bay Area,64.0,10/20/2022,0.46,Real Estate,https://www.bizjournals.com/sanfrancisco/news/2022/10/20/zeus-living-egomotion-layoffs-flexliving-startup.html,Series C,151,United States,10/21/2022 +Loom,SF Bay Area,23.0,10/20/2022,0.11,Product,https://www.sfgate.com/bayarea/article/sf-based-loom-video-tech-unicorn-layoffs-17522993.php,Series C,203,United States,10/20/2022 +Sales Boomerang,Baltimore,20.0,10/20/2022,,Sales,https://www.housingwire.com/articles/layoffs-hit-sales-boomerang-mortgage-coach/,Private Equity,5,United States,11/1/2022 +Arrival,"London, Non-U.S.",,10/20/2022,,Transportation,https://www.ft.com/content/5278ba4a-49c0-4e99-bed1-68adfa658c62,Post-IPO,629,United Kingdom,10/22/2022 +Roofstock,SF Bay Area,,10/20/2022,0.2,Real Estate,https://www.sfgate.com/realestate/article/Controversial-Bay-Area-real-estate-unicorn-17525874.php,Series E,365,United States,10/22/2022 +Starry,Boston,,10/20/2022,0.5,Other,https://investors.starry.com/news/news-details/2022/Starry-Announces-Strong-Third-Quarter-2022-Operational-Results-Takes-Cost-Cutting-Measures-to-Conserve-Capital-as-It-Explores-Strategic-Options/default.aspx,Post-IPO,260,United States,10/20/2022 +Gopuff,Philadelphia,250.0,10/19/2022,,Food,https://www.bloomberg.com/news/articles/2022-10-19/gopuff-fires-hundreds-more-staff-in-third-round-of-layoffs,Series H,3400,United States,10/20/2022 +AtoB,SF Bay Area,32.0,10/19/2022,0.3,Finance,https://www.sfgate.com/bayarea/article/atob-lays-off-30-staff-17518327.php,Series B,177,United States,10/19/2022 +InfoSum,"London, Non-U.S.",20.0,10/19/2022,0.12,Security,https://www.businessinsider.com/infosum-lays-off-approximately-20-staff-amid-economic-uncertainty-2022-10,Series B,88,United Kingdom,11/10/2022 +Clever Real Estate,St. Louis,,10/19/2022,,Real Estate,https://www.bizjournals.com/stlouis/inno/stories/news/2022/10/19/clever-real-estate-layoffs-housing-market-slowdown.html,Series B,13,United States,10/20/2022 +Collibra,"Brussels, Non-U.S.",,10/19/2022,,Data,Internal memo,Series G,596,Belgium,11/3/2022 +Side,SF Bay Area,,10/19/2022,,Real Estate,https://therealdeal.com/la/2022/10/19/white-label-brokerage-side-confirms-new-round-of-layoffs/,Unknown,313,United States,11/7/2022 +Faire,SF Bay Area,84.0,10/18/2022,0.07,Retail,https://www.theinformation.com/briefings/e-commerce-layoff-tally-mounts-with-faire-affirm-cuts,Series G,1700,United States,11/4/2022 +Leafly,Seattle,56.0,10/18/2022,0.21,Retail,https://investor.leafly.com/news/news-details/2022/Leafly-Announces-Cost-Reductions-to-Strengthen-Financial-Profile/default.aspx,Post-IPO,71,United States,10/19/2022 +Ada Health,"Berlin, Non-U.S.",50.0,10/17/2022,,Healthcare,Internal memo,Series B,189,Germany,10/26/2022 +Tiendanube,Buenos Aires,50.0,10/17/2022,0.05,Marketing,https://tekiosmag.com/2022/10/17/unicornio-tiendanube-reduce-sus-operaciones-y-despide-al-5-de-su-plantilla/,Unknown,,Argentina,11/6/2022 +Microsoft,Seattle,,10/17/2022,,Other,https://www.cnbc.com/2022/10/18/microsoft-confirms-job-cuts-after-calling-for-growth-to-slow.html,Post-IPO,1,United States,11/15/2022 +Nuri,"Berlin, Non-U.S.",,10/17/2022,1.0,Crypto,https://www.crunchbase.com/organization/bitwala,Series B,42,Germany,10/19/2022 +Flipboard,SF Bay Area,24.0,10/16/2022,0.21,Media,https://www.axios.com/2022/10/17/flipboard-layoffs-21-percent-staff,Unknown,235,United States,10/20/2022 +Huawei,"Shenzen, Non-U.S.",,10/16/2022,,Hardware,https://www.thehindubusinessline.com/companies/huaweis-cut-down-on-employees-becomes-boon-for-competitors/article66018089.ece,Unknown,,China,2/6/2023 +Clear Capital,Reno,378.0,10/14/2022,0.27,Real Estate,https://techcrunch.com/2022/10/14/clear-capital-lays-off-27-of-its-global-staff/,Unknown,,United States,10/15/2022 +Beyond Meat,Los Angeles,200.0,10/14/2022,0.19,Food,https://www.cnbc.com/2022/10/14/beyond-meat-to-cut-19percent-of-its-workforce-as-sales-stock-struggle.html,Post-IPO,122,United States,10/14/2022 +Beyond Meat,Los Angeles,200.0,10/14/2022,0.19,Food,https://www.fooddive.com/news/beyond-meat-layoffs-cut-revenue-outlook/634141/,Post-IPO,122,United States,11/7/2023 +Flux Systems,"London, Non-U.S.",,10/14/2022,1.0,Finance,https://www.finextra.com/newsarticle/41132/flux-shuts-down-digital-receipts-network/payments,Unknown,9,United Kingdom,10/15/2022 +Qin1,"Noida, Non-U.S.",,10/14/2022,1.0,Education,https://inc42.com/buzz/exclusive-mayhem-in-edtech-sector-continues-coding-startup-qin1-shuts-down/,Seed,,India,10/15/2022 +Salesforce,SF Bay Area,90.0,10/13/2022,,Sales,https://www.protocol.com/bulletins/salesforce-layoffs-hiring-freeze,Post-IPO,65,United States,10/14/2022 +Playdots,New York City,65.0,10/13/2022,1.0,Consumer,https://www.theverge.com/2022/10/13/23403055/take-two-playdots-shut-down-close-two-dots-garden-tails,Acquired,10,United States,11/5/2022 +ExtraHop,Seattle,,10/13/2022,,Security,https://www.bizjournals.com/seattle/inno/stories/news/2022/10/13/extrahop-layoffs-2022-growing-sales.html,Series C,61,United States,10/15/2022 +Byju's,"Bengaluru, Non-U.S.",2500.0,10/12/2022,0.05,Education,https://techcrunch.com/2022/10/12/indian-edtech-giant-byjus-cuts-2500-jobs/,Private Equity,5500,India,10/12/2022 +6sense,SF Bay Area,150.0,10/12/2022,0.1,Sales,https://www.moneycontrol.com/news/business/startup/ai-platform-6sense-lays-off-150-employees-globally-including-several-from-india-9327791.html,Series E,426,United States,10/14/2022 +Sinch,"Stockholm, Non-U.S.",150.0,10/12/2022,,Other,https://uk.finance.yahoo.com/news/sinch-provides-further-details-cost-050000622.html?guccounter=1&guce_referrer=aHR0cHM6Ly93d3cuZ29vZ2xlLmNvbS8&guce_referrer_sig=AQAAADRwGUBG5kbOJSYKYLt0IB4O8FbUDo9ttkFRgcUELO6Gf8q-smbnt44fBnI2cQFSmYc-4WiXRXdWx6qJdy54DTsJ-irN2alA4VstuV5lfL5PxPrE0vqlEnbbUVGbcRKu_XA3zO7BBQ2GLIT4onEZtoyXzlECwxiIa5kcgNBN3ih4,Post-IPO,1500,Sweden,2/1/2023 +FrontRow,"Bengaluru, Non-U.S.",130.0,10/12/2022,0.75,Education,https://entrackr.com/2022/10/exclusive-frontrow-lays-off-75-of-workforce/,Series A,17,India,10/13/2022 +Noom,New York City,500.0,10/11/2022,0.1,Healthcare,https://techcrunch.com/2022/10/11/noom-tech-layoffs-diet-app/,Series F,657,United States,10/12/2022 +MX,Lehi,200.0,10/11/2022,,Finance,https://www.sltrib.com/news/2022/10/19/lehi-tech-company-mx-has-laid/,Series C,450,United States,10/12/2022 +Brex,SF Bay Area,136.0,10/11/2022,0.11,Finance,https://techcrunch.com/2022/10/11/fintech-brex-layoffs-restructuring/,Series D,1500,United States,10/11/2022 +Pacaso,SF Bay Area,100.0,10/11/2022,0.3,Real Estate,https://therealdeal.com/2022/10/13/pacaso-lays-off-100-workers-over-worries-of-a-pending-recession/,Series C,217,United States,10/13/2022 +Sketch,"The Hague, Non-U.S.",80.0,10/11/2022,,Other,https://www.linkedin.com/posts/sketchbv_its-with-heavy-hearts-that-we-share-some-activity-6985543891869429760-s8Az/,Series A,20,Netherlands,10/11/2022 +Udacity,SF Bay Area,55.0,10/11/2022,0.13,Education,https://www.udacity.com/blog/2022/10/a-note-from-sebastian.html,Unknown,235,United States,10/11/2022 +Linkfire,"Copenhagen, Non-U.S.",35.0,10/11/2022,0.35000000000000003,Marketing,https://view.news.eu.nasdaq.com/view?id=bc7bad5005a84b17bcf95ce24675c058c&lang=en,Seed,2,Denmark,10/26/2022 +Emitwise,"London, Non-U.S.",,10/11/2022,,Energy,https://www.businessinsider.com/london-based-carbon-accounting-startup-emitwise-cuts-jobs-2022-10,Series A,16,United Kingdom,10/13/2022 +GSR,"Hong Kong, Non-U.S.",,10/11/2022,,Crypto,https://www.coindesk.com/business/2022/10/11/market-maker-gsr-cuts-staff-amid-crypto-winter/,Unknown,,Hong Kong,10/12/2022 +VanHack,"Vancouver, Non-U.S.",,10/11/2022,,HR,https://www.linkedin.com/posts/ilyabrotzky_today-was-a-really-tough-day-at-vanhack-activity-6985704824071753730-zpcX/,Seed,,Canada,10/14/2022 +HelloFresh,SF Bay Area,611.0,10/10/2022,,Food,https://www.businessinsider.com/meal-kit-maker-hellofresh-to-lay-off-600-closes-california-facility-2022-10,Post-IPO,367,United States,10/16/2022 +SurveyMonkey,SF Bay Area,180.0,10/10/2022,0.11,Marketing,https://www.sec.gov/ix?doc=/Archives/edgar/data/1739936/000095017022019536/mntv-20221010.htm,Post-IPO,1100,United States,10/13/2022 +Pavilion Data,SF Bay Area,96.0,10/10/2022,0.96,Infrastructure,https://blocksandfiles.com/2022/10/10/pavilion-data-crashes-last-nvme-over-fabrics-array-startup-has-died/,Series D,103,United States,10/25/2022 +Redesign Health,New York City,67.0,10/10/2022,0.2,Healthcare,https://www.fastcompany.com/90794350/scoop-redesign-health-lays-off-67-employees-a-month-after-raising-65-million,Series C,315,United States,10/10/2022 +Nyriad,Austin,,10/10/2022,0.33,Infrastructure,https://blocksandfiles.com/2022/10/13/another-one-is-biting-dust-as-nyriad-undergoes-major-layoffs/,Unknown,58,United States,10/25/2022 +Collage.com,Detroit,,10/9/2022,1.0,Retail,https://thedeadpixelssociety.com/collage-com-shuts-down/,Acquired,,United States,4/3/2023 +BioMarin,SF Bay Area,120.0,10/7/2022,0.04,Healthcare,https://www.fiercebiotech.com/biotech/biomarin-lays-120-employees-save-50m-year-us-hit-hardest,Post-IPO,585,United States,11/19/2022 +Rev.com,Austin,85.0,10/7/2022,,Data,https://www.statesman.com/story/business/technology/2022/10/11/austin-based-rev-com-will-lay-off-85-to-cut-costs/69553800007/,Series D,30,United States,10/12/2022 +Crypto.com,"Singapore, Non-U.S.",2000.0,10/6/2022,0.3,Crypto,https://www.techinasia.com/cryptocom-lays-2000-employees-dials-marketing-efforts,Unknown,156,Singapore,10/7/2022 +Peloton,New York City,500.0,10/6/2022,0.12,Fitness,https://www.wsj.com/articles/peloton-to-cut-another-500-jobs-in-last-bid-for-turnaround-11665011471,Post-IPO,1900,United States,10/6/2022 +Landing,Birmingham,110.0,10/6/2022,,Real Estate,https://www.al.com/news/birmingham/2022/10/landing-laying-off-70-jobs-in-birmingham-but-still-committed-to-growing-in-alabama.html,Series C,347,United States,10/7/2022 +Turnitin,SF Bay Area,51.0,10/6/2022,0.05,Education,Internal memo,Acquired,,United States,10/8/2022 +Impossible Foods,SF Bay Area,50.0,10/6/2022,0.06,Food,https://www.sfgate.com/local/article/impossible-foods-more-layoffs-17494557.php,Series H,1900,United States,10/7/2022 +Atome,"Singapore, Non-U.S.",,10/6/2022,,Finance,https://www.techinasia.com/atome-cuts-staff-indonesias-bnpl-p2p-divisions,Unknown,645,Singapore,11/27/2022 +First AML,"Auckland, Non-U.S.",,10/6/2022,,Finance,https://www.stuff.co.nz/business/130086557/bloodbath-awardwinning-tech-startup-firstaml-makes-sudden-restructure-announcement,Series B,29,New Zealand,10/7/2022 +Foresight Insurance,SF Bay Area,,10/6/2022,0.4,Finance,https://news.ambest.com/newscontent.aspx?refnum=244982&altsrc=176,Series B,58,United States,12/1/2022 +Spotify,"Stockholm, Non-U.S.",,10/6/2022,,Media,https://techcrunch.com/2022/10/06/spotify-cancels-11-original-podcasts-lays-off-under-5-of-staff/,Post-IPO,2100,Sweden,10/7/2022 +Built In,Chicago,50.0,10/5/2022,0.25,Recruiting,https://www.chicagobusiness.com/technology/built-lays-quarter-its-staff,Series C,29,United States,10/5/2022 +TwinStrand,Seattle,,10/5/2022,0.5,Healthcare,https://www.genomeweb.com/business-news/twinstrand-biosciences-lays-nearly-50-percent-workforce#.Yz-KSOzMK8A,Series B,73,United States,10/7/2022 +8x8,SF Bay Area,200.0,10/4/2022,0.09,Support,https://www.channelfutures.com/business-models/8x8-lays-off-workers-cites-operational-efficiency,Post-IPO,253,United States,1/18/2023 +Zoomo,"Sydney, Non-U.S.",65.0,10/4/2022,0.16,Transportation,https://www.ridezoomo.com/blog/building-a-more-resilient-business-for-2023,Series B,105,Australia,10/5/2022 +Homie,Salt Lake City,40.0,10/4/2022,0.13,Real Estate,https://therealdeal.com/2022/10/05/homie-ceo-departs-as-startup-lays-off-more-employees/,Series B,35,United States,10/6/2022 +Fivetran,SF Bay Area,,10/4/2022,0.05,Data,Internal memo,Series D,,United States,10/5/2022 +Xendit,"Jakarta, Non-U.S.",,10/4/2022,0.05,Finance,https://www.techinasia.com/xendit-lay-off-indonesia-philippines,Series D,534,Indonesia,10/5/2022 +ActiveCampaign,Chicago,,10/3/2022,0.15,Marketing,LinkedIn,Series C,360,United States,10/7/2022 +Tempo,SF Bay Area,,10/3/2022,,Fitness,Internal memo,Series C,298,United States,10/8/2022 +WazirX,"Mumbai, Non-U.S.",60.0,10/2/2022,0.4,Crypto,https://economictimes.indiatimes.com/tech/technology/indian-crypto-exchange-wazirx-fires-40-of-staff-report/articleshow/94603700.cms,Acquired,,India,10/2/2022 +Spin,SF Bay Area,78.0,9/30/2022,0.1,Transportation,https://techcrunch.com/2022/10/03/tier-mobility-owned-spin-lays-off-about-10-of-workforce-exits-two-markets/,Acquired,8,United States,10/3/2022 +Carsome,"Kuala Lumpur, Non-U.S.",,9/30/2022,0.1,Transportation,https://www.techinasia.com/carsome-lay-10-staff-execs-forgo-salaries,Series E,607,Malaysia,9/30/2022 +Pastel,SF Bay Area,,9/30/2022,1.0,Food,https://purplelist.discoverpastel.com/pausing-service-future-plans/,Unknown,,United States,10/8/2022 +Truepill,SF Bay Area,,9/30/2022,,Healthcare,https://techcrunch.com/2022/09/29/truepill-a-digital-health-unicorn-conducts-fourth-round-of-layoffs-in-2022/,Series D,255,United States,9/30/2022 +Westwing,"Munich, Non-U.S.",125.0,9/29/2022,,Retail,Internal memo,Post-IPO,237,Germany,10/4/2022 +Mux,SF Bay Area,40.0,9/29/2022,0.2,Infrastructure,Internal memo,Series D,173,United States,10/2/2022 +Solarisbank,"Berlin, Non-U.S.",,9/29/2022,0.1,Finance,https://www.businessinsider.de/gruenderszene/fintech/solarisbank-entlassungen-a/,Unknown,385,Germany,9/30/2022 +Zenjob,"Berlin, Non-U.S.",,9/29/2022,,HR,https://www.linkedin.com/posts/zenjob_to-our-network-we-want-to-actively-support-activity-6981580028253773824-JBZM/,Series D,107,Germany,9/30/2022 +DocuSign,SF Bay Area,671.0,9/28/2022,0.09,Sales,https://www.sfgate.com/news/article/san-francisco-tech-company-docusign-layoffs-17473918.php,Post-IPO,536,United States,9/28/2022 +Front,SF Bay Area,,9/28/2022,,Support,Internal memo,Series D,203,United States,11/12/2022 +Volta,SF Bay Area,,9/28/2022,0.1,Transportation,https://investors.voltacharging.com/news/news-details/2022/Volta-Realigns-Organization-to-Reduce-Costs-and-Drive-Strategic-Priorities/default.aspx,Post-IPO,575,United States,10/3/2022 +Divvy Homes,SF Bay Area,40.0,9/27/2022,0.12,Real Estate,https://www.theinformation.com/articles/andreessen-backed-divvy-homes-lays-off-12-of-staff-as-rates-rise,Series B,180,United States,9/28/2022 +Graphcore,"Bristol, Non-U.S.",,9/27/2022,,Data,https://www.eenewseurope.com/en/ai-unicorn-graphcore-set-to-cut-jobs/,Unknown,692,United Kingdom,11/23/2022 +Instacart,SF Bay Area,,9/24/2022,,Food,https://www.theinformation.com/articles/instacart-cuts-staff-curbs-hiring-in-run-up-to-ipo,Unknown,2900,United States,9/26/2022 +Konfio,"Mexico City, Non-U.S.",180.0,9/23/2022,,Finance,https://expansion.mx/economia/2022/09/23/konfio-unicornio-mexicano-prepara-un-despido-masivo,Series E,706,Mexico,11/10/2022 +Moss,"Berlin, Non-U.S.",70.0,9/23/2022,0.15,Finance,https://financefwd.com/de/moss-entlassungen/,Series B,150,Germany,9/24/2022 +Foxtrot,Chicago,26.0,9/23/2022,0.035,Food,https://www.chicagobusiness.com/retail/foxtrot-lays-26-employees,Series C,166,United States,9/24/2022 +Truiloo,"Vancouver, Non-U.S.",24.0,9/23/2022,0.05,Security,https://betakit.com/trulioo-to-cut-up-to-10-percent-of-staff-exit-small-business-market/,Series D,474,Canada,9/19/2022 +Pesto,SF Bay Area,,9/23/2022,1.0,Other,https://pesto.app/blog/discontinuing-pesto,Seed,6,United States,9/24/2022 +NYDIG,New York City,110.0,9/22/2022,0.33,Crypto,https://www.wsj.com/articles/crypto-broker-nydig-lays-off-one-third-of-staff-in-effort-to-narrow-focus-11665707545,Private Equity,1400,United States,10/14/2022 +Klarna,"Stockholm, Non-U.S.",100.0,9/22/2022,,Finance,https://sifted.eu/articles/klarna-second-round-layoffs/,Unknown,3700,Sweden,9/22/2022 +Made.com,"London, Non-U.S.",,9/22/2022,0.35000000000000003,Retail,https://www.investing.com/news/stock-market-news/madecom-to-cut-jobs-explore-sale-as-economic-headwinds-weigh-on-performance-2897615,Series D,136,United Kingdom,9/24/2022 +Kitty Hawk,SF Bay Area,100.0,9/21/2022,1.0,Aerospace,https://www.sfgate.com/bayarea/article/Silicon-Valley-startup-lays-off-100-employees-17484239.php,Unknown,1,United States,9/22/2022 +Candidate Labs,SF Bay Area,,9/21/2022,,HR,Internal memo,Seed,5,United States,10/4/2022 +Compass,New York City,271.0,9/20/2022,,Real Estate,https://www.geekwire.com/2022/real-estate-giant-compass-lays-off-84-workers-in-washington-state-as-it-targets-tech-team-for-cuts/,Post-IPO,1600,United States,9/21/2022 +Curative,Los Angeles,109.0,9/20/2022,,Healthcare,https://digitalhealth.modernhealthcare.com/finance/startup-curative-health-lays-109,Seed,8,United States,9/21/2022 +Ada,"Toronto, Non-U.S.",78.0,9/20/2022,0.16,Support,https://www.linkedin.com/posts/mikemurchison_company-message-from-mike-ugcPost-6978042513135710209-CcNB/,Series C,190,Canada,9/21/2022 +99,"Sao Paulo, Non-U.S.",75.0,9/20/2022,0.02,Transportation,"https://www.terra.com.br/economia/dinheiro-em-dia/meu-negocio/na-onda-dos-layoffs-99-demite-mais-de-75-colaboradores,d2c6d7e70027cb925695c2e6a25956d16jo4jtuj.html",Acquired,244,Brazil,9/21/2022 +Ouster,SF Bay Area,,9/20/2022,0.1,Transportation,https://www.businesswire.com/news/home/20220920005531/en/Ouster-Streamlines-Cost-Structure-to-Bolster-Path-to-Profitability,Post-IPO,282,United States,9/24/2022 +Zappos,Las Vegas,,9/20/2022,0.04,Retail,https://www.reviewjournal.com/business/zappos-trimming-staff-laying-off-portion-of-workforce-2643722/,Acquired,62,United States,9/24/2022 +Ola,"Bengaluru, Non-U.S.",200.0,9/19/2022,,Transportation,https://inc42.com/buzz/ola-lays-off-200-software-engineers-amidst-massive-restructuring-plan/,Series J,5000,India,9/19/2022 +Vesalius Therapeutics,Boston,29.0,9/19/2022,0.43,Healthcare,https://www.bizjournals.com/boston/news/2022/09/19/flagship-pioneering-vesalius-therapeutics-layoffs.html,Series B,75,United States,9/21/2022 +VideoAmp,Los Angeles,,9/19/2022,0.02,Marketing,https://videoamp.com/press/fagan-tapped-to-take-expanded-role/,Series F,456,United States,9/21/2022 +Shopee,"Jakarta, Non-U.S.",,9/18/2022,,Food,https://www.techinasia.com/shopee-lays-hundreds-employees,Unknown,,Indonesia,9/19/2022 +Clear,"Bengaluru, Non-U.S.",190.0,9/16/2022,0.2,Finance,https://inc42.com/buzz/stripe-sequoia-backed-clear-lays-off-around-190-employees/,Series C,140,India,9/17/2022 +TrueLayer,"London, Non-U.S.",40.0,9/16/2022,0.1,Finance,https://www.altfi.com/article/9837_exclusive-truelayer-announces-job-cuts-of-up-to-10-of-staff,Series E,271,United Kingdom,9/16/2022 +LivePerson,New York City,193.0,9/15/2022,0.11,Support,Internal memo,Post-IPO,42,United States,9/16/2022 +Acast,"Stockholm, Non-U.S.",70.0,9/15/2022,0.15,Media,https://www.bloomberg.com/news/newsletters/2022-09-15/swedish-podcast-company-acast-lays-off-15-of-its-staff,Post-IPO,126,Sweden,9/15/2022 +WorkRamp,SF Bay Area,35.0,9/15/2022,0.2,HR,Internal memo,Series C,67,United States,9/21/2022 +DayTwo,SF Bay Area,,9/15/2022,,Healthcare,https://www.calcalistech.com/ctechnews/article/by000gal11o,Series B,90,United States,9/16/2022 +NextRoll,SF Bay Area,,9/15/2022,0.07,Marketing,Internal memo,Unknown,108,United States,9/21/2022 +Twilio,SF Bay Area,800.0,9/14/2022,0.11,Other,https://techcrunch.com/2022/09/14/twilio-lays-off-11-of-its-staff-as-it-aims-for-profitability-in-2023/,Post-IPO,614,United States,9/14/2022 +Pitch,"Berlin, Non-U.S.",59.0,9/14/2022,0.3,Marketing,https://www.linkedin.com/feed/update/urn:li:activity:6975741747565932544/,Series B,137,Germany,9/14/2022 +Infarm,"Berlin, Non-U.S.",50.0,9/14/2022,0.05,Other,https://www.businessinsider.de/gruenderszene/news/news-ticker-2022-09-infarm/,Series D,604,Germany,9/15/2022 +Netflix,SF Bay Area,30.0,9/14/2022,,Media,https://deadline.com/2022/09/netflix-animation-layoff-30-staffers-overhaul-continues-1235118700/,Post-IPO,121900,United States,9/16/2022 +Bitrise,"Budapest, Non-U.S.",,9/14/2022,0.14,Infrastructure,https://www.linkedin.com/posts/bitrise_a-message-from-bitrise-co-founder-and-ceo-activity-6975843544213204992-l5n9/,Series C,83,Hungary,9/15/2022 +Rubius,Boston,160.0,9/13/2022,0.75,Healthcare,https://www.fiercebiotech.com/biotech/rubius-makes-hard-pivot-after-reviewing-clinical-data-dumping-lead-assets-and-laying-75,Post-IPO,445,United States,11/17/2022 +Checkout.com,"London, Non-U.S.",100.0,9/13/2022,0.05,Finance,https://www.bloomberg.com/news/articles/2022-09-13/checkout-com-will-eliminate-about-5-of-employees-in-latest-cuts,Series D,1800,United Kingdom,9/14/2022 +Taboola,New York City,100.0,9/13/2022,0.06,Marketing,https://www.calcalistech.com/ctechnews/article/hybe11icxs,Post-IPO,445,United States,9/13/2022 +Patreon,SF Bay Area,80.0,9/13/2022,0.17,Media,https://www.theinformation.com/briefings/patreon-lays-off-17-of-staff,Series F,413,United States,9/13/2022 +FullStory,Atlanta,,9/13/2022,0.12,Marketing,https://www.bizjournals.com/atlanta/inno/stories/news/2022/09/12/another-atlanta-unicorn-makes-layoffs.html,Unknown,197,United States,9/9/2022 +Propzy,"Ho Chi Minh City, Non-U.S.",,9/13/2022,1.0,Real Estate,https://www.dealstreetasia.com/stories/vietnams-proptech-startup-propzy-shuts-down-operations-307594,Series A,33,Vietnam,9/15/2022 +Quicko,"Sao Paulo, Non-U.S.",60.0,9/12/2022,,Transportation,https://startups.com.br/noticias/apos-fechar-portas-no-brasil-maas-global-pivota-e-mira-parceiros-locais-diz-ceo/,Acquired,28,Brazil,9/13/2022 +Mode Analytics,SF Bay Area,25.0,9/12/2022,,Data,https://coda.io/@mykola-bilokonsky/mode-layoffs,Series D,81,United States,9/22/2022 +Compete,Tel Aviv,11.0,9/12/2022,0.28,HR,https://www.calcalistech.com/ctechnews/article/rkzqei2gi,Series A,17,Israel,9/13/2022 +Karbon,SF Bay Area,,9/12/2022,0.23,Other,https://www.linkedin.com/posts/stuartwmcleod_changes-to-the-karbon-team-activity-6975257833852342272-Hlbd/,Series B,91,United States,9/15/2022 +Rent the Runway,New York City,,9/12/2022,0.24,Retail,https://www.wsj.com/articles/rent-the-runway-to-reduce-workforce-as-more-customers-pause-their-subscriptions-11663025034,Post-IPO,526,United States,9/13/2022 +Sama,SF Bay Area,,9/12/2022,,Data,https://www.sama.com/blog/sama-organizational-changes/,Series B,84,United States,11/8/2022 +SkipTheDishes,"Winnipeg, Non-U.S.",350.0,9/9/2022,,Food,https://winnipeg.ctvnews.ca/skip-the-dishes-lays-off-winnipeg-workers-1.6063503,Acquired,6,Canada,9/11/2022 +Brighte,"Sydney, Non-U.S.",58.0,9/9/2022,,Energy,https://brighte.com.au/media/accelerating-brightes-pathway-to-profitability,Series C,145,Australia,10/7/2022 +Patreon,SF Bay Area,5.0,9/9/2022,,Media,https://techcrunch.com/2022/09/09/patreon-security-layoffs/,Series F,413,United States,9/9/2022 +Amber Group,"Hong Kong, Non-U.S.",,9/9/2022,0.1,Crypto,https://www.yahoo.com/now/crypto-trading-firm-amber-cut-193232181.html,Series B,328,Hong Kong,9/11/2022 +Capiter,"Cairo, Non-U.S.",,9/9/2022,,Finance,https://techcrunch.com/2022/09/09/founders-of-well-funded-egyptian-b2b-startup-capiter-fired-following-fraud-allegations/,Series A,33,Egypt,9/13/2022 +CommonBond,New York City,,9/9/2022,1.0,Finance,https://www.linkedin.com/posts/daveklein_after-a-10-year-incredible-journey-it-is-activity-6974095155473657857-mf5b/,Series D,125,United States,9/11/2022 +DreamBox Learning,Seattle,,9/9/2022,,Education,https://www.geekwire.com/2022/dreambox-learning-hit-by-layoffs-but-promises-strategy-to-take-on-troubling-trends-in-education/,Acquired,175,United States,9/9/2022 +Flowhub,Denver,,9/9/2022,0.15,Retail,https://www.businessinsider.com/scoop-cannabis-tech-startup-flowhub-cuts-about-15-of-employees-2022-9,Unknown,45,United States,9/10/2022 +Lido Learning,"Mumbai, Non-U.S.",,9/9/2022,1.0,Education,https://www.livemint.com/companies/news/edtech-firm-lido-learning-files-for-bankruptcy-11662631060105.html,Series C,20,India,9/10/2022 +GoStudent,"Vienna, Non-U.S.",200.0,9/8/2022,,Education,https://brutkasten.com/gostudent-unicorn-baut-200-stellen-ab/,Series D,686,Austria,9/9/2022 +Pomelo Fashion,"Bangkok, Non-U.S.",55.0,9/8/2022,0.08,Retail,https://www.bloomberg.com/news/articles/2022-09-08/fashion-e-commerce-startup-pomelo-cuts-jobs-after-market-slows,Unknown,120,Thailand,9/10/2022 +Genome Medical,SF Bay Area,23.0,9/8/2022,,Healthcare,https://www.bizjournals.com/sanfrancisco/news/2022/09/08/genetic-testing-genome-medical-invitae-job-cuts.html,Series C,120,United States,9/9/2022 +BigBear.ai,Baltimore,,9/8/2022,0.07,Data,https://www.bizjournals.com/baltimore/news/2022/09/08/columbia-bigbear-ai-layoff-staff-cash-flow-issues.html,Post-IPO,200,United States,9/9/2022 +Realtor.com,SF Bay Area,,9/8/2022,,Real Estate,https://www.inman.com/2022/09/08/realtor-com-makes-layoffs-in-preparation-for-market-downturn/,Acquired,,United States,9/10/2022 +Simple Feast,"Copenhagen, Non-U.S.",150.0,9/7/2022,1.0,Food,https://nyheder.tv2.dk/samfund/2022-09-07-firma-bag-plantebaserede-maltidskasser-er-gaet-konkurs,Unknown,173,Denmark,9/13/2022 +Foodpanda,"Singapore, Non-U.S.",60.0,9/7/2022,,Food,https://www.straitstimes.com/singapore/food-delivery-firm-foodpanda-lays-off-staff-in-singapore-retrenchment-reportedly-affects-about-60,Acquired,749,Singapore,9/5/2022 +Uber,"Vilnius, Non-U.S.",60.0,9/7/2022,,Transportation,https://www.linkedin.com/posts/gergelyorosz_uber-lithuania-softwareengineering-activity-6973669838502187009-aK1z/,Post-IPO,24700,Lithuania,9/9/2022 +Rupeek,"Bengaluru, Non-U.S.",50.0,9/7/2022,,Finance,https://inc42.com/buzz/exclusive-after-laying-off-180-employees-rupeek-lays-off-50-more-employees/,Unknown,172,India,9/8/2022 +Intercom,SF Bay Area,49.0,9/7/2022,0.05,Support,https://www.businesspost.ie/tech/irish-tech-unicorn-intercom-to-cut-49-jobs-across-hr-marketing/,Series D,240,United States,9/8/2022 +Pendo,Raleigh,45.0,9/7/2022,0.05,Product,https://www.axios.com/local/raleigh/2022/09/09/raleigh-startup-pendo-layoffs,Series F,469,United States,9/10/2022 +Demandbase,SF Bay Area,27.0,9/7/2022,0.03,Sales,Internal memo,Series H,143,United States,9/9/2022 +Firebolt,"Tel Aviv, Non-U.S.",,9/7/2022,,Data,https://www.calcalistech.com/ctechnews/article/symoqnigj,Series C,264,Israel,9/8/2022 +Medly,New York City,,9/7/2022,0.5,Healthcare,https://www.crainsnewyork.com/health-care/pharmacy-startup-medly-slash-nearly-half-its-workforce,Series C,100,United States,9/8/2022 +Xsight Labs,"Tel Aviv, Non-U.S.",,9/7/2022,,Other,https://www.calcalistech.com/ctechnews/article/ryhv0mixj,Series D,100,Israel,9/8/2022 +Brave Care,Portland,40.0,9/6/2022,0.33,Healthcare,https://www.oregonlive.com/business/2022/09/portland-pediatrics-startup-brave-care-lays-off-a-third-of-staff-citing-covid-and-market-turmoil.html,Series B,42,United States,9/8/2022 +Lawgeex,"Tel Aviv, Non-U.S.",30.0,9/6/2022,0.33,Legal,https://www.tech12.co.il/index-career/Article-daa4d2195231381027.htm?sCh=cf25c425b37bc710&pId=18758941771,Series C,41,Israel,9/6/2022 +Juniper Square,SF Bay Area,,9/6/2022,0.14,Real Estate,https://therealdeal.com/national/2022/09/06/proptech-firm-juniper-square-lays-off-14-of-staff/,Series C,108,United States,9/6/2022 +Medium,SF Bay Area,,9/6/2022,0.25,Media,https://www.linkedin.com/posts/lanewton22_recently-we-unfortunately-laid-off-about-activity-6973081729787961344-QTB-/,Unknown,163,United States,9/8/2022 +Kuda,"Lagos, Non-U.S.",23.0,9/2/2022,0.05,Finance,https://techcrunch.com/2022/09/02/nigerian-digital-bank-kuda-is-the-latest-african-startup-to-lay-off-employees/,Series B,91,Nigeria,9/5/2022 +Alerzo,"Ibadan, Non-U.S.",,9/2/2022,,Retail,https://www.notadeepdive.com/p/inside-a-brutal-week-of-layoffs-at,Series B,16,Nigeria,3/7/2023 +Sea,"Singapore, Non-U.S.",,9/2/2022,,Consumer,https://www.peoplematters.in/news/technology/singapores-sea-cuts-jobs-in-gaming-arm-in-second-round-of-layoffs-35132,Post-IPO,8600,Singapore,9/2/2022 +2TM,"Sao Paulo, Non-U.S.",100.0,9/1/2022,0.15,Crypto,https://finance.yahoo.com/news/second-round-layoffs-brazilian-crypto-212310521.html,Unknown,250,Brazil,9/2/2022 +Innovaccer,SF Bay Area,90.0,9/1/2022,0.08,Healthcare,https://inc42.com/buzz/exclusive-tiger-global-backed-healthtech-unicorn-innovaccer-lays-off-120-employees/,Series E,379,United States,9/1/2022 +Shopify,"Ottawa, Non-U.S.",70.0,9/1/2022,,Retail,https://www.theinformation.com/briefings/shopify-makes-a-fresh-round-of-layoffs,Post-IPO,122,Canada,9/1/2022 +Urban Sports Club,"Berlin, Non-U.S.",55.0,9/1/2022,0.15,Fitness,https://www.businessinsider.de/gruenderszene/business/urban-sports-club-entlaesst-55-mitarbeiter-das-sind-die-gruende-und-was-betroffene-sagen/,Unknown,95,Germany,9/1/2022 +Hedvig,"Stockholm, Non-U.S.",12.0,9/1/2022,,Finance,https://www.mynewsdesk.com/se/hedvig-ab/news/hedvig-minskar-personalstyrkan-foer-att-naa-loensamhet-snabbare-12-heltidstjaenster-beroers-453177,Series B,67,Sweden,9/1/2022 +Snap,Los Angeles,1280.0,8/31/2022,0.2,Consumer,https://www.theverge.com/2022/8/30/23329301/snap-layoffs-20-percent-employees-snapchat,Post-IPO,4900,United States,8/30/2022 +GoodRx,Los Angeles,140.0,8/31/2022,0.16,Healthcare,https://seekingalpha.com/news/3879125-goodrx-laying-off-140-employees-16-of-workforce,Post-IPO,910,United States,9/1/2022 +Smava,"Berlin, Non-U.S.",100.0,8/31/2022,0.1,Finance,https://finanz-szene.de/fintech/smava-vergleichsportal-entlassungen/,Unknown,188,Germany,9/1/2022 +Hippo Insurance,SF Bay Area,70.0,8/31/2022,0.1,Finance,https://www.globes.co.il/news/article.aspx?did=1001423046,Post-IPO,1300,United States,8/31/2022 +Clari,SF Bay Area,45.0,8/31/2022,,Sales,Internal memo,Series F,496,United States,9/2/2022 +Koo,"Bengaluru, Non-U.S.",40.0,8/31/2022,,Consumer,https://inc42.com/buzz/tiger-global-backed-koo-lays-off-40-employees-to-cut-costs/,Series B,44,India,9/1/2022 +TCR2,Boston,30.0,8/31/2022,0.2,Healthcare,https://www.fiercebiotech.com/biotech/scoop-tcr2-therapeutics-just-laid-40-its-staff-its-second-round-cuts-less-six-months,Post-IPO,173,United States,1/20/2023 +Apartment List,SF Bay Area,29.0,8/31/2022,0.1,Real Estate,https://www.linkedin.com/posts/matthew-w-woods_for-those-that-know-apartment-list-well-activity-6970856703277903874-MGoW/,Series D,169,United States,9/1/2022 +Artnight,"Berlin, Non-U.S.",26.0,8/31/2022,0.36,Retail,https://www.businessinsider.de/gruenderszene/business/artnight-entlassungen/,Unknown,,Germany,9/1/2022 +Snagajob,Richmond,,8/31/2022,,HR,https://richmondbizsense.com/2022/08/31/snagajob-lays-off-dozens-in-richmond/,Unknown,221,United States,9/15/2022 +The Wing,New York City,,8/31/2022,1.0,Real Estate,https://www.theinformation.com/briefings/the-wing-a-controversial-co-working-startup-shuts-down,Series C,117,United States,8/31/2022 +Viamo,"Accra, Non-U.S.",,8/31/2022,,Other,https://techcabal.com/2022/08/31/viamo-lays-off-employees/,Unknown,,Ghana,12/21/2022 +Electric,New York City,81.0,8/30/2022,,Other,https://www.electric.ai/blog/an-open-letter-from-the-ceo,Series D,212,United States,9/30/2022 +Immersive Labs,"Bristol, Non-U.S.",38.0,8/30/2022,0.1,Security,https://www.uktech.news/cybersecurity/immersive-labs-jobs-cuts-20220830,Series C,123,United Kingdom,9/1/2022 +Nate,New York City,30.0,8/30/2022,,Retail,https://www.theinformation.com/briefings/shopping-app-nate-making-fresh-round-of-job-cuts,Series A,47,United States,8/30/2022 +Meesho,"Bengaluru, Non-U.S.",300.0,8/29/2022,,Retail,https://www.indiatimes.com/worth/news/300-meesho-employees-laid-off-578318.html,Series F,1100,India,8/29/2022 +54gene,Washington D.C.,95.0,8/29/2022,0.3,Healthcare,https://techcrunch.com/2022/08/29/african-genomics-startup-54gene-lays-off-95-as-covid-testing-business-struggles/,Series B,44,United States,8/30/2022 +Fungible,SF Bay Area,,8/29/2022,,Crypto,https://blocksandfiles.com/2022/08/29/fungible-lets-rip-with-a-rif/,Series C,310,United States,8/30/2022 +Skillz,SF Bay Area,,8/29/2022,,Consumer,https://seekingalpha.com/news/3876880-skillz-launches-headcount-reduction-plan-bruckheimer-leaves-board,Post-IPO,287,United States,8/29/2022 +Otonomo,"Tel Aviv, Non-U.S.",,8/28/2022,,Transportation,https://www.calcalistech.com/ctechnews/article/b12ifyk1j,Post-IPO,231,Israel,10/26/2022 +Zymergen,SF Bay Area,80.0,8/26/2022,,Other,https://www.biospace.com/article/zymergen-cuts-80-more-jobs-parts-ways-with-co-founder/,Acquired,974,United States,8/26/2022 +Okta,SF Bay Area,24.0,8/26/2022,,Security,https://www.unleash.ai/economy/okta-lays-off-us-sourcing-team/,Post-IPO,1200,United States,8/26/2022 +Argyle,New York City,20.0,8/26/2022,0.07,Finance,https://techcrunch.com/2022/08/26/fintech-argyle-has-layoffs/,Series B,78,United States,8/26/2022 +Better.com,New York City,,8/26/2022,,Real Estate,https://techcrunch.com/2022/08/25/better-com-layoffs-digital-mortgage/,Unknown,905,United States,8/30/2022 +FreshDirect,Philadelphia,40.0,8/25/2022,,Food,https://www.bizjournals.com/philadelphia/news/2022/08/25/freshdirect-exiting-philadelphia-market-layoffs.html,Acquired,280,United States,8/26/2022 +Loja Integrada,"Sao Paulo, Non-U.S.",25.0,8/25/2022,0.1,Retail,https://startups.com.br/noticias/loja-integrada-da-vtex-demite-10-do-quadro-mas-segue-contratando/,Acquired,,Brazil,8/26/2022 +Impact.com,Los Angeles,,8/25/2022,0.1,Marketing,https://impact.com/news/a-message-from-our-ceo-david-a-yovanno-co-founder-per-pettersen/,Private Equity,361,United States,8/25/2022 +ShipBob,Chicago,,8/25/2022,0.07,Logistics,https://www.businessinsider.com/shipbob-lays-off-7-of-staff-ecommerce-bust-2022-8,Series E,330,United States,8/26/2022 +Reali,SF Bay Area,140.0,8/24/2022,1.0,Real Estate,https://www.calcalistech.com/ctechnews/article/r1w11v1eyj,Series B,117,United States,8/24/2022 +Loop,Washington D.C.,15.0,8/24/2022,0.2,Finance,https://www.coverager.com/layoffs-at-loop/,Series A,24,United States,8/25/2022 +Pix,SF Bay Area,,8/24/2022,,Food,https://www.sfchronicle.com/food/wine/article/Napa-wine-tech-17393476.php,Unknown,,United States,8/24/2022 +Tier Mobility,"Berlin, Non-U.S.",180.0,8/23/2022,0.16,Transportation,https://techcrunch.com/2022/08/23/tier-mobility-lays-off-180-people-amid-poor-funding-climate/,Series D,646,Germany,8/23/2022 +Packable,New York City,138.0,8/23/2022,0.2,Retail,"https://www.cnbc.com/2022/08/23/amazon-seller-packable-lays-off-employees-begins-liquidating.html#:~:text=Investing%20Club-,Top%20Amazon%20seller%20Packable%20begins%20liquidating%20and,cuts%20after%20failed%20SPAC%20attempt&text=Packable%2C%20the%20parent%20company%20of,to%20documents%20viewed%20by%20CNBC.",Unknown,472,United States,8/24/2022 +Q4,"Toronto, Non-U.S.",50.0,8/23/2022,0.08,Other,https://www.theglobeandmail.com/business/article-q4-inc-layoffs-canada/,Series C,91,Canada,8/24/2022 +Skedulo,SF Bay Area,31.0,8/23/2022,0.08,HR,Internal memo,Series C,114,United States,8/29/2022 +Plato,SF Bay Area,29.0,8/23/2022,0.5,HR,Company exec,Seed,3,United States,8/26/2022 +DataRobot,Boston,,8/23/2022,0.26,Data,https://www.theinformation.com/briefings/datarobot-lays-off-26-as-business-challenges-mount,Series G,1000,United States,8/23/2022 +Kogan,"Melbourne, Non-U.S.",,8/23/2022,,Retail,https://www.smartcompany.com.au/industries/retail/kogan-financial-report-losses-e-commerce-online-shopping/,Post-IPO,,Australia,8/25/2022 +Skillshare,New York City,,8/23/2022,,Education,Internal memo,Unknown,136,United States,8/31/2022 +Mr. Yum,"Melbourne, Non-U.S.",,8/22/2022,0.17,Food,https://www.linkedin.com/feed/update/urn:li:activity:6967423162909130752/,Series A,73,Australia,8/23/2022 +ShopX,"Bengaluru, Non-U.S.",,8/22/2022,1.0,Retail,https://entrackr.com/2022/08/exclusive-nandan-nilekani-backed-shopx-shuts-shop/,Unknown,56,India,8/24/2022 +NSO,"Tel Aviv, Non-U.S.",100.0,8/21/2022,0.14,Security,https://www.calcalistech.com/ctechnews/article/hjb0095yyi,Seed,1,Israel,8/22/2022 +Tufin,Boston,55.0,8/21/2022,0.1,Security,https://en.globes.co.il/en/article-israeli-cybersecurity-co-tufin-lays-off-55-1001421995,Acquired,21,United States,8/22/2022 +Amperity,Seattle,13.0,8/20/2022,0.03,Marketing,https://www.geekwire.com/2022/seattle-customer-intelligence-startup-amperity-lays-off-recruiting-staff/,Series D,187,United States,8/22/2022 +Wayfair,Boston,870.0,8/19/2022,0.05,Retail,https://www.bostonglobe.com/2022/08/19/business/wayfair-cuts-870-jobs-including-400-boston-it-reacts-decline-sales/,Post-IPO,1700,United States,8/19/2022 +Stripe,SF Bay Area,50.0,8/19/2022,,Finance,https://techcrunch.com/2022/08/19/stripe-layoffs-taxjar-tech/,Series H,2300,United States,8/19/2022 +Hodlnaut,"Singapore, Non-U.S.",40.0,8/19/2022,0.8,Crypto,https://www.coindesk.com/business/2022/08/19/crypto-lender-hodlnaut-faces-singapore-police-actions-and-staggering-job-cuts/,Unknown,,Singapore,8/20/2022 +New Relic,SF Bay Area,110.0,8/18/2022,0.05,Infrastructure,https://www.marketwatch.com/story/new-relic-commits-to-restructuring-plan-including-layoffs-271660823014,Post-IPO,214,United States,8/18/2022 +Wheel,Austin,35.0,8/18/2022,0.17,Healthcare,https://www.businessinsider.com/wheel-laid-off-17-percent-35-employees-digital-health-layoffs-2022-8,Series C,215,United States,9/1/2022 +Petal,New York City,,8/18/2022,0.1,Finance,https://techcrunch.com/2023/05/10/petal-raises-35m-spins-off-data-unit-to-bring-credit-scores-into-the-21st-century/,Series D,704,United States,8/22/2022 +Thirty Madison,New York City,,8/18/2022,0.1,Healthcare,Internal memo,Series C,209,United States,8/18/2022 +Vendasta,"Saskatoon, Non-U.S.",,8/18/2022,0.05,Marketing,https://saskatoon.ctvnews.ca/vendasta-announces-layoffs-after-best-workplace-recognition-1.6033046,Series D,178,Canada,8/20/2022 +Malwarebytes,SF Bay Area,125.0,8/17/2022,0.14,Security,https://techcrunch.com/2022/08/17/malwareybytes-layoffs/,Series B,80,United States,8/17/2022 +Fluke,"Sao Paulo, Non-U.S.",83.0,8/17/2022,0.8200000000000001,Other,https://startups.com.br/noticias/exclusivo-fluke-demite-mais-de-80-e-e-comprada/,Seed,,Brazil,8/26/2022 +Swyftx,"Brisbane, Non-U.S.",74.0,8/17/2022,0.21,Crypto,https://swyftx.com/au/media/press-releases/changes-to-the-team-2022/,Unknown,,Australia,8/18/2022 +Tempo Automation,SF Bay Area,54.0,8/17/2022,,Other,https://www.bizjournals.com/sanfrancisco/news/2022/08/17/tempo-automation-sf-layoffs-merger-spac.html,Series C,74,United States,8/17/2022 +Genesis,New York City,52.0,8/17/2022,0.2,Crypto,https://www.reuters.com/technology/crypto-broker-genesis-taps-insider-interim-chief-cuts-jobs-by-20-2022-08-17/,Series A,,United States,8/17/2022 +Warren,"Porto Alegre, Non-U.S.",50.0,8/17/2022,,Finance,"https://www.terra.com.br/economia/dinheiro-em-dia/meu-negocio/exclusivo-warren-entra-na-tendencia-dos-layoffs-e-faz-demissao-em-massa,5f362a0a19e6049dce7d13b912b0da76rfn0l7ku.html",Series C,104,Brazil,8/18/2022 +AlayaCare,Montreal,80.0,8/16/2022,0.14,Healthcare,https://betakit.com/alayacare-lays-off-14-percent-of-employees-slows-ma-plans/,Series D,293,Canada,8/17/2022 +Pliops,"Tel Aviv, Non-U.S.",12.0,8/16/2022,0.09,Data,https://www.calcalistech.com/ctechnews/article/hkch00dya5,Series D,205,Israel,8/18/2022 +Woven,Indianapolis,5.0,8/16/2022,0.15,HR,Internal memo,Series A,11,United States,8/17/2022 +Crypto.com,"Singapore, Non-U.S.",,8/16/2022,,Crypto,https://decrypt.co/107509/second-layoff-round-at-crypto-com-worse-than-june-cuts-sources,Unknown,156,Singapore,8/16/2022 +Edmodo,SF Bay Area,,8/16/2022,1.0,Education,https://www.edsurge.com/news/2022-08-16-popular-k-12-tool-edmodo-shuts-down,Acquired,77,United States,8/16/2022 +Snapdocs,SF Bay Area,,8/16/2022,0.1,Real Estate,Internal memo,Series D,253,United States,11/5/2022 +Updater,New York City,,8/16/2022,,Other,https://updater.com/updater-life/changes-to-team-2022,Unknown,467,United States,8/17/2022 +Sema4,Stamford,250.0,8/15/2022,0.13,Healthcare,https://ir.sema4.com/news-releases/news-release-details/sema4-announces-continued-restructuring-business-highlights-and,Post-IPO,791,United States,8/16/2022 +Blend,SF Bay Area,220.0,8/15/2022,0.12,Finance,https://www.housingwire.com/articles/blend-takes-a-478m-loss-cuts-25-of-its-workforce/,Post-IPO,665,United States,8/16/2022 +ContraFect,New York City,16.0,8/15/2022,0.37,Healthcare,https://www.benzinga.com/general/biotech/22/08/28497436/contrafect-cuts-workforce-after-trial-setback,Post-IPO,380,United States,8/16/2022 +ThredUp,Chicago,,8/15/2022,0.15,Retail,https://www.retaildive.com/news/thredup-lays-off-15-of-its-corporate-workforce-as-q2-losses-widen/629766/,Post-IPO,305,United States,8/16/2022 +Anywell,"Tel Aviv, Non-U.S.",11.0,8/14/2022,,Real Estate,https://www.calcalistech.com/ctechnews/article/rkndvd8a5,Series A,15,Israel,8/14/2022 +Almanac,SF Bay Area,,8/13/2022,,Other,https://www.linkedin.com/posts/fabien-loup-b60431147_people-of-almanac-needing-a-job-after-layoff-activity-6964159197059899392-mSen/,Series A,45,United States,8/17/2022 +Peloton,New York City,784.0,8/12/2022,0.13,Fitness,https://www.cnbc.com/2022/08/12/peloton-shares-jump-as-company-announces-price-hikes-for-some-products.html,Post-IPO,1900,United States,8/12/2022 +Core Scientific,Austin,,8/12/2022,0.1,Crypto,https://blockworks.co/crypto-miner-core-scientific-downsizing-after-840m-impairment-charge/,Post-IPO,169,United States,8/12/2022 +Orbit,SF Bay Area,,8/12/2022,,Other,https://www.linkedin.com/feed/update/urn:li:activity:6963966153341681664/,Series A,20,United States,8/17/2022 +Truepill,SF Bay Area,175.0,8/11/2022,0.33,Healthcare,https://techcrunch.com/2022/08/11/digital-health-unicorn-truepill-conducts-third-round-of-layoffs-in-2022/,Series D,255,United States,8/12/2022 +Calm,SF Bay Area,90.0,8/11/2022,0.2,Healthcare,https://www.wsj.com/articles/meditation-app-calm-lays-off-20-of-staff-11660261492?mod=hp_lista_pos1,Series C,218,United States,8/12/2022 +FourKites,Chicago,60.0,8/11/2022,0.08,Logistics,https://techcrunch.com/2022/08/26/supply-chain-startup-fourkites-which-recently-laid-off-workers-raises-30m/,Series D,201,United States,8/26/2022 +Marketforce,"Nairobi, Non-U.S.",54.0,8/11/2022,0.09,Retail,https://techcrunch.com/2022/08/11/kenyan-b2b-e-commerce-platform-marketforce-cut-about-9-of-staff-in-reorganization-strategy/,Series A,42,Kenya,8/11/2022 +Betterfly,"Santiago, Non-U.S.",30.0,8/11/2022,,Healthcare,https://startups.com.br/noticias/mais-um-unicornio-demitindo-betterfly-faz-reestruturacao-no-brasil/,Series C,204,Chile,8/12/2022 +Expert360,"Sydney, Non-U.S.",7.0,8/11/2022,,Recruiting,https://www.watoday.com.au/technology/startups-staff-to-go-kombucha-and-yoga-can-stay-20220811-p5b8zs.html,Series C,26,Australia,8/15/2022 +Guidewire,SF Bay Area,,8/11/2022,0.02,Finance,Internal memo,Post-IPO,24,United States,8/12/2022 +Trybe,"Sao Paulo, Non-U.S.",47.0,8/10/2022,0.1,Education,https://startups.com.br/noticias/edtech-trybe-enxuga-operacoes-e-corta-10-do-time/,Series B,40,Brazil,8/24/2022 +Permutive,"London, Non-U.S.",30.0,8/10/2022,0.12,Marketing,https://www.businessinsider.com/permutive-lays-off-12-of-staffers-amid-economic-downturn-2022-8,Series C,105,United Kingdom,8/10/2022 +Homeward,Austin,,8/10/2022,0.2,Real Estate,https://www.realtrends.com/articles/homeward-lays-off-20-of-workforce/,Series B,160,United States,8/10/2022 +Pollen,"London, Non-U.S.",,8/10/2022,1.0,Marketing,https://sifted.eu/articles/pollen-administration-restructuring/,Series C,238,United Kingdom,8/10/2022 +Vedanta Biosciences,Boston,,8/10/2022,0.2,Healthcare,https://www.fiercebiotech.com/biotech/vedanta-ceo-blames-challenging-environment-biotech-laying-20-staff,Series D,301,United States,8/17/2022 +GoHealth,Chicago,800.0,8/9/2022,0.2,Healthcare,https://www.chicagobusiness.com/technology/gohealth-lays-800-workers-online-health-insurance-seller-cuts-back,Post-IPO,75,United States,8/11/2022 +Hootsuite,"Vancouver, Non-U.S.",400.0,8/9/2022,0.3,Marketing,https://betakit.com/hootsuite-restructuring-laying-off-30-percent-of-employees/,Series C,300,Canada,8/9/2022 +Nutanix,SF Bay Area,270.0,8/9/2022,0.04,Infrastructure,https://www.marketscreener.com/quote/stock/NUTANIX-INC-31497437/news/NUTANIX-INC-Costs-Associated-with-Exit-or-Disposal-Activities-form-8-K-41257917/,Post-IPO,1100,United States,8/9/2022 +Quanterix,Boston,130.0,8/9/2022,0.25,Healthcare,https://www.genomeweb.com/business-news/quanterix-slashing-workforce-25-percent-it-refocuses-commercial-efforts#.Y3J8V-zMK8B,Post-IPO,533,United States,11/17/2022 +Wix,"Tel Aviv, Non-U.S.",100.0,8/9/2022,,Marketing,https://www.calcalistech.com/ctechnews/article/b1icqik0c,Post-IPO,58,Israel,8/9/2022 +MadeiraMadeira,"Curitiba, Non-U.S.",60.0,8/9/2022,0.03,Retail,https://www.estadao.com.br/link/inovacao/unicornio-madeiramadeira-demite-60-pessoas-em-busca-de-ganho-de-eficiencia/,Series E,338,Brazil,8/9/2022 +Melio,New York City,60.0,8/9/2022,,Finance,https://www.calcalistech.com/ctechnews/article/b1kyowlaq,Series D,504,United States,8/9/2022 +Linktree,"Melbourne, Non-U.S.",50.0,8/9/2022,0.17,Consumer,https://www.smartcompany.com.au/industries/information-technology/linktree-sacks-employees-tech/,Unknown,165,Australia,8/9/2022 +Shogun,SF Bay Area,48.0,8/9/2022,0.3,Retail,Internal memo,Series C,114,United States,8/10/2022 +Absci,"Vancouver, Non-U.S.",40.0,8/9/2022,,Healthcare,https://www.absci.com/message-from-ceo-08-09-2022/,Post-IPO,237,Canada,8/10/2022 +Dooly,"Vancouver, Non-U.S.",12.0,8/9/2022,,Sales,https://www.linkedin.com/feed/update/urn:li:activity:6962892415028387840/,Series B,102,Canada,8/10/2022 +Berkeley Lights,SF Bay Area,,8/9/2022,0.12,Healthcare,https://investors.berkeleylights.com/news/news-details/2022/Berkeley-Lights-Reports-Second-Quarter-2022-Financial-Results/default.aspx,Post-IPO,272,United States,8/9/2022 +DailyPay,New York City,,8/9/2022,0.15,Finance,Internal memo,Unknown,814,United States,8/10/2022 +Haus,SF Bay Area,,8/9/2022,1.0,Food,https://techcrunch.com/2022/08/08/haus-a-vc-backed-apertif-startup-is-up-for-sale-after-series-a-falls-through/,Seed,7,United States,8/10/2022 +Kaltura,New York City,,8/9/2022,0.1,Media,https://en.globes.co.il/en/article-kaltura-laying-off-10-of-workforce-1001420938,Post-IPO,166,United States,8/9/2022 +Shift,SF Bay Area,,8/9/2022,,Transportation,https://www.globenewswire.com/news-release/2022/08/09/2495362/0/en/Shift-Announces-Merger-with-CarLotz-a-New-Business-Plan-that-Enables-the-Company-to-Achieve-Profitability-in-2024-Appointment-of-new-CEO-also-Releases-Q2-Results.html,Post-IPO,504,United States,8/9/2022 +Sweetgreen,Los Angeles,,8/9/2022,,Food,https://www.cnbc.com/2022/08/09/sweetgreen-stock-plummets-after-salad-chain-cuts-forecast-announces-layoffs.html,Post-IPO,478,United States,8/9/2022 +Groupon,Chicago,500.0,8/8/2022,0.15,Retail,https://techcrunch.com/2022/08/08/groupon-cuts-over-500-staff-as-the-downturn-takes-its-tolll/,Post-IPO,1400,United States,8/8/2022 +Loggi,"Sao Paulo, Non-U.S.",500.0,8/8/2022,0.15,Logistics,https://startups.com.br/noticias/na-onda-dos-layoffs-loggi-demite-cerca-de-15-da-sua-forca-de-trabalho/,Series F,507,Brazil,8/9/2022 +Vroom,New York City,337.0,8/8/2022,,Transportation,https://www.autonews.com/dealers/vroom-earnings-q2-net-loss-1151-million-used-car-retailer-cuts-jobs,Post-IPO,1300,United States,8/9/2022 +Warby Parker,New York City,63.0,8/8/2022,,Consumer,https://www.businessinsider.com/warby-parker-lays-off-63-corporate-employees-internal-memo-2022-8,Post-IPO,535,United States,8/9/2022 +Labelbox,SF Bay Area,36.0,8/8/2022,,Data,Internal memo,Series D,188,United States,8/11/2022 +Perion,"Tel Aviv, Non-U.S.",20.0,8/8/2022,0.05,Marketing,https://en.globes.co.il/en/article-perion-network-lays-off-20-transfers-us-activities-to-israel-1001420801,Post-IPO,76,Israel,8/8/2022 +Daily Harvest,New York City,,8/8/2022,0.15,Food,https://fortune.com/2022/08/08/daily-harvest-layoffs-lentil-crumbles-recall/,Series D,120,United States,8/10/2022 +DataRobot,Boston,,8/8/2022,,Data,https://www.bostonglobe.com/2022/08/08/business/amid-struggles-datarobot-cutting-more-staff/,Series G,1000,United States,8/11/2022 +iRobot,Boston,140.0,8/5/2022,0.1,Consumer,https://www.geekwire.com/2022/amazon-to-acquire-roomba-maker-irobot-for-1-7-billion/,Acquired,30,United States,8/5/2022 +Mejuri,"Toronto, Non-U.S.",50.0,8/5/2022,0.1,Retail,https://betakit.com/d2c-startups-not-immune-to-downturn-as-article-mejuri-make-staff-cuts/,Series B,28,Canada,8/8/2022 +Uberflip,"Toronto, Non-U.S.",31.0,8/5/2022,0.17,Marketing,https://betakit.com/uberflip-ceo-attributes-company-layoffs-to-unsteady-economy/,Series A,42,Canada,8/5/2022 +Slync,Dallas,,8/5/2022,,Logistics,https://www.businessinsider.com/slync-layoffs-ceo-fired-kirchner-supply-chain-tech-goldman-2022-8,Series B,76,United States,8/23/2022 +Talkdesk,SF Bay Area,,8/5/2022,,Support,https://eco.sapo.pt/2022/08/05/onda-de-despedimentos-nas-tech-chega-a-unicornio-talkdesk/,Series D,497,United States,8/5/2022 +Doma,SF Bay Area,250.0,8/4/2022,0.13,Finance,https://www.inman.com/2022/08/19/doma-announces-more-layoffs-as-cumulative-losses-top-300m/amp/,Post-IPO,679,United States,8/5/2022 +Article,"Vancouver, Non-U.S.",216.0,8/4/2022,0.17,Retail,https://dailyhive.com/vancouver/vancouver-article-layoffs,Series B,,Canada,8/4/2022 +Jam City,Los Angeles,200.0,8/4/2022,0.17,Consumer,https://venturebeat.com/2022/08/04/jam-city-lays-off-hundreds-of-staff-as-part-of-restructuring/,Unknown,652,United States,8/4/2022 +10X Genomics,SF Bay Area,100.0,8/4/2022,0.08,Healthcare,https://www.genomeweb.com/business-news/10x-genomics-lays-approximately-100-employees#.YuxWk-zMKqV,Post-IPO,242,United States,8/4/2022 +LEAD,"Mumbai, Non-U.S.",80.0,8/4/2022,0.04,Education,https://www.moneycontrol.com/news/business/startup/school-edtech-unicorn-lead-lets-go-of-about-100-employees-8954821.html,Series E,166,India,8/4/2022 +Zendesk,SF Bay Area,80.0,8/4/2022,,Support,Internal memo,Acquired,85,United States,8/5/2022 +On Deck,SF Bay Area,73.0,8/4/2022,0.33,Education,https://techcrunch.com/2022/08/04/on-deck-lays-off-a-third-of-staff-after-cutting-a-quarter-just-months-prior/,Series A,20,United States,8/4/2022 +RenoRun,"Montreal, Non-U.S.",70.0,8/4/2022,0.12,Construction,https://betakit.com/renorun-lays-off-12-percent-of-staff-pauses-geographic-expansion-amid-uncertainty-surrounding-consumer-spending/,Series B,163,Canada,8/17/2022 +RingCentral,SF Bay Area,50.0,8/4/2022,,Support,https://www.bizjournals.com/sanfrancisco/news/2022/08/04/ringcentral-lays-off-50-at-belmont-headquarters.html,Post-IPO,44,United States,8/4/2022 +Medly,New York City,,8/4/2022,0.16,Healthcare,https://www.linkedin.com/posts/sarkiskalashian_medly-impacted-employees-open-to-work-activity-6962465333982961664-LVTX/,Series C,100,United States,8/9/2022 +Nomad,"Sao Paulo, Non-U.S.",,8/4/2022,0.2,Finance,https://finsiders.com.br/2022/08/04/nomad-corta-20-da-equipe-quase-tres-meses-apos-aporte/,Series B,290,Brazil,8/10/2022 +StubHub,SF Bay Area,,8/4/2022,,Consumer,https://www.sfgate.com/bayarea/article/stubhub-closing-san-francisco-office-lay-offs-17351845.php,Acquired,59,United States,8/4/2022 +Weedmaps,Los Angeles,,8/4/2022,0.1,Other,https://www.businessinsider.com/weedmaps-lays-off-employees-as-marijuana-sales-fall-recession-fears2022-8,Acquired,,United States,8/16/2022 +Zenius,"Jakarta, Non-U.S.",,8/4/2022,0.3,Education,https://www.linkedin.com/feed/update/urn:li:share:6960928095172276224/,Series B,20,Indonesia,8/4/2022 +Healthcare.com,Miami,149.0,8/3/2022,,Healthcare,https://www.bizjournals.com/southflorida/inno/stories/news/2022/08/03/healthcare-inc-cuts-149-jobs-miami.html,Series C,244,United States,8/4/2022 +Unbounce,"Vancouver, Non-U.S.",47.0,8/3/2022,0.2,Marketing,https://betakit.com/unbounce-lays-off-20-percent-of-staff-as-part-of-larger-company-restructuring/,Series A,39,Canada,8/3/2022 +Beyond Meat,Los Angeles,40.0,8/3/2022,0.04,Food,https://www.bloomberg.com/news/articles/2022-08-03/beyond-meat-eliminates-about-40-positions-in-cost-cutting-move,Post-IPO,122,United States,8/4/2022 +The Org,"New Delhi, New York City",13.0,8/3/2022,,HR,https://www.linkedin.com/posts/theorg_this-week-the-org-laid-off-13-of-our-ny-based-activity-6960585154205515776-7Qf_/,Series B,39,United States,8/4/2022 +CarDekho,"Gurugram, Non-U.S.",,8/3/2022,,Transportation,https://www.thehindubusinessline.com/companies/start-up-layoffs-cardekho-vedantu-fire-employees-as-funding-crunch-continues/article65721345.ece,Series E,497,India,8/4/2022 +Puppet,Portland,,8/3/2022,0.15,Infrastructure,Internal memo,Acquired,189,United States,8/8/2022 +SoundCloud,"Berlin, Non-U.S.",,8/3/2022,0.2,Consumer,https://www.billboard.com/pro/soundcloud-layoffs-20-percent-workforce-global/,Unknown,542,Germany,8/3/2022 +Talkwalker,"Luxembourg, Non-U.S.",,8/3/2022,0.15,Marketing,https://www.siliconluxembourg.lu/lokdeep-singh-we-want-to-be-almost-obsessive-about-the-customers-needs/,Private Equity,9,Luxembourg,8/4/2022 +Robinhood,SF Bay Area,713.0,8/2/2022,0.23,Finance,https://techcrunch.com/2022/08/02/robinhood-23-layoff-vlad-tenev-responsibility-hiring/,Post-IPO,5600,United States,8/2/2022 +Latch,New York City,115.0,8/2/2022,0.37,Security,https://www.globenewswire.com/news-release/2022/08/02/2490797/0/en/Latch-announces-further-changes-to-improve-operating-efficiency.html,Post-IPO,342,United States,8/4/2022 +Vedantu,"Bengaluru, Non-U.S.",100.0,8/2/2022,,Education,https://inc42.com/buzz/exclusive-edtech-unicorn-vedantu-lays-off-another-100-employees/,Series E,292,India,8/3/2022 +Seegrid,Pittsburgh,90.0,8/2/2022,,Logistics,https://www.therobotreport.com/sources-amr-maker-seegrid-hit-with-layoffs/,Unknown,107,United States,8/4/2022 +Nylas,SF Bay Area,80.0,8/2/2022,0.25,Product,https://www.nylas.com/blog/a-message-from-nylas-co-founder-ceo-gleb-polyakov/,Series C,175,United States,8/2/2022 +Outreach,Seattle,60.0,8/2/2022,0.05,Sales,https://www.linkedin.com/posts/medinism_throughout-outreachs-journey-as-a-start-up-activity-6960299213226225664-PNsG/,Series G,489,United States,8/2/2022 +Sendy,"Nairobi, Non-U.S.",54.0,8/2/2022,0.2,Logistics,https://techcrunch.com/2022/10/05/sendy-conducts-second-round-of-layoffs-20-of-its-remaining-staff-affected/,Series B,26,Kenya,10/5/2022 +The Predictive Index,Boston,40.0,8/2/2022,,HR,https://www.linkedin.com/feed/update/urn:li:activity:6961029042426757120/,Acquired,71,United States,8/8/2022 +Sendy,"Nairobi, Non-U.S.",30.0,8/2/2022,0.1,Logistics,https://techcabal.com/2022/08/02/kenyan-logistics-startup-sendy-lays-off-10-of-its-staff/,Series B,26,Kenya,8/2/2022 +Stedi,Boulder,23.0,8/2/2022,0.3,Product,https://twitter.com/GergelyOrosz/status/1554707921984016387,Series B,75,United States,8/4/2022 +Glossier,New York City,19.0,8/2/2022,0.08,Retail,https://www.modernretail.co/startups/glossier-lays-off-about-two-dozen-employees-as-it-ramps-up-hiring-in-wholesale-and-retail/amp/,Series E,266,United States,8/3/2022 +Butterfly Network,New Haven,,8/2/2022,0.1,Healthcare,Internal memo,Post-IPO,530,United States,8/4/2022 +FuboTV,New York City,,8/2/2022,,Media,https://www.businessinsider.com/fubotv-conducts-layoffs-in-us-2022-8,Post-IPO,151,United States,8/4/2022 +Hash,"Sao Paulo, Non-U.S.",58.0,8/1/2022,0.5,Finance,https://oglobo.globo.com/blogs/capital/post/2022/08/startup-de-maquininha-demite-mais-de-metade-da-equipe-e-avalia-fechar-as-portas.ghtml,Series C,58,Brazil,8/3/2022 +Classkick,Chicago,,8/1/2022,,Education,https://docs.google.com/spreadsheets/d/1u-P5qzyNRdzGVN88c_YztvgggQU1iRDfXyPTk5RRpoI/edit,Seed,1,United States,8/10/2022 +DeHaat,"Gurugram, Non-U.S.",,8/1/2022,,Food,https://www.moneycontrol.com/news/business/startup/layoffs-at-agritech-startup-dehaat-less-than-a-year-after-large-fundraise-8929391.html,Series D,194,India,8/2/2022 +OnlyFans,"London, Non-U.S.",,8/1/2022,,Media,https://www.businessinsider.com/onlyfans-lays-off-employees-amid-move-to-reshape-certain-teams-2022-7,Unknown,,United Kingdom,8/4/2022 +Oracle,SF Bay Area,,8/1/2022,,Other,https://www.bloomberg.com/news/articles/2022-08-01/oracle-cuts-workers-in-us-customer-analytics-division?sref=Oeyjq8by#xj4y7vzkg,Post-IPO,,United States,11/17/2022 +Perceptive Automata,Boston,,8/1/2022,1.0,Transportation,https://www.therobotreport.com/perceptive-automata-shuts-down-after-funding-dries-up/,Series A,20,United States,8/4/2022 +Whereby,"Oslo, Non-U.S.",,8/1/2022,,Other,https://www.linkedin.com/feed/update/urn:li:activity:6959902351079952384/,Series A,10,Norway,8/2/2022 +Metigy,"Sydney, Non-U.S.",75.0,7/31/2022,1.0,Marketing,https://www.linkedin.com/posts/myrabeal_talent-tech-recruitment-activity-6959703840858259456-V8Tv/,Series B,18,Australia,8/2/2022 +Vee,"Tel Aviv, Non-U.S.",16.0,7/31/2022,0.32,HR,https://www.calcalistech.com/ctechnews/article/syarhxntq,Seed,15,Israel,8/2/2022 +Gatherly,Atlanta,,7/31/2022,0.5,Marketing,Company exec,,,United States,8/2/2022 +Ola,"Bengaluru, Non-U.S.",1000.0,7/29/2022,,Transportation,https://economictimes.indiatimes.com/tech/startups/ola-to-fire-about-1000-employees-across-verticals-even-as-focus-shifts-to-electric-mobility/articleshow/93194411.cms,Series J,5000,India,7/29/2022 +Clearco,"Toronto, Non-U.S.",125.0,7/29/2022,0.25,Finance,https://betakit.com/clearco-cuts-a-quarter-of-staff-amid-significant-headwinds/,Series C,681,Canada,7/29/2022 +Imperfect Foods,SF Bay Area,50.0,7/29/2022,,Food,https://www.bizjournals.com/sanfrancisco/news/2022/07/29/imperfect-foods-bayview-sf-hq-warehouse-layoffs.html,Series D,229,United States,7/30/2022 +Shelf Engine,Seattle,43.0,7/29/2022,,Food,https://www.geekwire.com/2022/seattle-startup-shelf-engine-lays-off-43-employees-due-to-challenging-economic-conditions/,Series B,58,United States,7/30/2022 +Quantcast,SF Bay Area,40.0,7/29/2022,0.06,Marketing,https://digiday.com/media/ad-tech-firm-quantcast-cuts-6-in-headcount-as-economic-storm-clouds-gather/,Series C,65,United States,8/2/2022 +Sherpa,"Toronto, Non-U.S.",22.0,7/29/2022,,Travel,https://www.linkedin.com/posts/maxtremaine_it-has-been-an-amazing-year-for-sherpa-activity-6962384880487866368-v491/,Unknown,11,Canada,7/30/2022 +CoinFLEX,"Victoria, Non-U.S.",,7/29/2022,,Crypto,https://coinflex.com/blog/coinflex-update-july-29-2022/,Unknown,11,Seychelles,7/29/2022 +MissFresh,"Beijing, Non-U.S.",,7/29/2022,,Food,https://technode.com/2022/07/29/chinese-online-grocer-missfresh-halts-core-business-and-begins-massive-layoff/,Post-IPO,1700,China,7/29/2022 +Yabonza,"Sydney, Non-U.S.",,7/29/2022,1.0,Real Estate,https://www.smartcompany.com.au/industries/property/yabonza-liquidiation-tech-sector/,Unknown,6,Australia,8/24/2022 +Ribbon,New York City,136.0,7/28/2022,,Real Estate,https://www.inman.com/2022/07/28/ribbon-slashes-one-third-of-workforce-to-adjust-to-new-reality/,Series C,405,United States,7/29/2022 +Career Karma,SF Bay Area,60.0,7/28/2022,0.33,Education,https://techcrunch.com/2022/07/28/career-karma-conducts-layoffs-as-tech-jobs-face-a-massive-stress-test/,Series B,51,United States,7/29/2022 +Metromile,SF Bay Area,60.0,7/28/2022,0.2,Finance,https://techcrunch.com/2022/07/29/lemonade-closes-on-acquisition-of-insurtech-metromile-promptly-lays-off-about-20-of-its-staff/,Acquired,510,United States,7/29/2022 +Laybuy,Auckland,45.0,7/28/2022,,Finance,https://www.stuff.co.nz/business/300648897/laybuy-to-cut-45-jobs-as-it-searches-for-profit,Post-IPO,130,New Zealand,7/29/2022 +Allbirds,SF Bay Area,23.0,7/28/2022,,Retail,Internal memo,Post-IPO,202,United States,7/30/2022 +TextNow,"Waterloo, Non-U.S.",22.0,7/28/2022,,Consumer,Internal memo,Seed,1,Canada,8/4/2022 +2U,Washington D.C.,,7/28/2022,0.2,Education,https://www.insidehighered.com/news/2022/08/01/online-program-enabler-2u-resets-its-pricing-model,Post-IPO,426,United States,7/30/2022 +Bikayi,"Bengaluru, Non-U.S.",,7/28/2022,,Retail,https://inc42.com/features/bikayi-in-disarray-startup-hit-by-fraud-allegations-seller-exodus/,Series A,12,India,7/29/2022 +Brainbase,Los Angeles,,7/28/2022,,Sales,https://medium.com/brainbase/update-on-brainbase-2022-645d46123393,Series A,12,United States,11/17/2022 +Change.org,SF Bay Area,,7/28/2022,0.19,Other,https://change-org.medium.com/restructuring-change-org-for-the-future-1c83c1c5b704,Series D,72,United States,7/29/2022 +Tapas Media,SF Bay Area,,7/28/2022,,Media,,Acquired,17,United States,8/2/2022 +Turntide,SF Bay Area,,7/28/2022,0.2,Energy,https://www.bizjournals.com/sanjose/news/2022/07/28/sunnyvale-based-turntide-cuts-more-than-100-jobs.html,Unknown,491,United States,7/29/2022 +Rivian,Detroit,840.0,7/27/2022,0.06,Transportation,https://www.cnn.com/2022/07/27/business/rivian-layoffs/index.html,Post-IPO,10700,United States,7/28/2022 +Vox Media,Washington D.C.,39.0,7/27/2022,0.02,Media,https://www.axios.com/2022/07/27/vox-media-layoffs-economic-uncertainty,Series F,307,United States,7/29/2022 +Coinsquare,"Toronto, Non-U.S.",30.0,7/27/2022,0.24,Crypto,https://betakit.com/coinsquare-lays-off-24-percent-of-staff-amid-turbulent-crypto-market-shifted-focus-to-regulation/,Unknown,98,Canada,7/30/2022 +Skai,"Tel Aviv, Non-U.S.",30.0,7/27/2022,0.04,Marketing,https://www.calcalistech.com/ctechnews/article/ry0jnia39?prof=5211.Ctech-5214.ctech.Startups,Series E,60,Israel,7/28/2022 +Shopify,"Ottawa, Non-U.S.",1000.0,7/26/2022,0.1,Retail,https://www.wsj.com/articles/shopify-to-lay-off-10-of-workers-in-broad-shake-up-11658839047,Post-IPO,122,Canada,7/26/2022 +McMakler,"Berlin, Non-U.S.",90.0,7/26/2022,,Real Estate,https://www.businessinsider.de/gruenderszene/business/mcmakler-massenentlassung-nach-firmenfeier/,Unknown,214,Germany,7/26/2022 +Fiverr,"Tel Aviv, Non-U.S.",60.0,7/26/2022,0.08,Other,https://en.globes.co.il/en/article-fiverr-lays-off-60-including-30-employees-in-israel-1001419413,Post-IPO,111,Israel,7/26/2022 +InDebted,"Sydney, Non-U.S.",40.0,7/26/2022,0.17,Finance,https://www.news.com.au/finance/business/technology/startup-sacks-40-employees-amid-200-million-valuation/news-story/891f316c53bb38c7f12d519b26f07ee5,Series B,41,Australia,7/26/2022 +Outbrain,New York City,38.0,7/26/2022,0.03,Marketing,https://en.globes.co.il/en/article-fiverr-lays-off-60-including-30-employees-in-israel-1001419413,Post-IPO,394,United States,7/26/2022 +Dover,SF Bay Area,23.0,7/26/2022,0.3,Recruiting,https://blog.dover.io/changes-to-our-team/,Series A,22,United States,7/26/2022 +Immutable,"Sydney, Non-U.S.",20.0,7/26/2022,0.06,Crypto,https://www.cnet.com/tech/gaming/crypto-star-immutable-creator-of-nft-game-gods-unchained-lays-off-over-20-staff/,Series C,279,Australia,7/28/2022 +Zymergen,SF Bay Area,80.0,7/25/2022,,Other,https://www.bizjournals.com/sanfrancisco/news/2022/07/25/zymergen-ginkgo-bioworks-zyme-dna-merger-job-cuts.html,Acquired,974,United States,8/26/2022 +Pear Therapeutics ,Boston,25.0,7/25/2022,0.09,Healthcare,https://www.massdevice.com/pear-therapeutics-announces-layoffs/,Post-IPO,409,United States,7/26/2022 + Included Health,SF Bay Area,,7/25/2022,0.06,Healthcare,https://www.fiercehealthcare.com/digital-health/digital-health-company-included-health-cuts-workforce-part-restructuring-move,Series E,272,United States,7/26/2022 +Soluto,"Tel Aviv, Non-U.S.",120.0,7/24/2022,1.0,Support,https://www.calcalistech.com/ctechnews/article/s1xemk935,Acquired,18,Israel,7/25/2022 +Eucalyptus,"Sydney, Non-U.S.",50.0,7/22/2022,0.2,Healthcare,https://www.news.com.au/finance/business/other-industries/australian-healthcare-startup-fires-20-per-cent-of-staff/news-story/c582a96f5cc55a99962c2c79aa7033a9,Series C,69,Australia,7/28/2022 +Workstream,SF Bay Area,45.0,7/22/2022,,HR,LinkedIn,Series B,58,United States,8/3/2022 +Quanto,"Sao Paulo, Non-U.S.",28.0,7/22/2022,0.22,Finance,https://www.seudinheiro.com/2022/empresas/onda-de-demissoes-quanto-startup-facily-involves-lils/,Series A,15,Brazil,7/25/2022 +Clarify Health,SF Bay Area,15.0,7/22/2022,0.05,Healthcare,https://twitter.com/erinbrodwin/status/1550495194805518337,Series D,328,United States,7/22/2022 +Arete,Miami,,7/22/2022,,Security,https://www.crn.com/news/security/arete-ir-is-the-latest-cybersecurity-company-to-lay-off-staff,Unknown,,United States,7/22/2022 +Boosted Commerce,Los Angeles,,7/22/2022,0.05,Retail,https://www.businessinsider.com/amazon-aggregator-boosted-commerce-layoffs-2022-7,Series B,137,United States,7/26/2022 +Owlet,Lehi,,7/22/2022,,Healthcare,https://www.linkedin.com/feed/update/urn:li:activity:6957832944329580544/,Post-IPO,178,United States,8/3/2022 +People.ai,SF Bay Area,,7/22/2022,,Sales,LinkedIn,Series D,200,United States,7/26/2022 +Wizeline,SF Bay Area,,7/22/2022,,Product,Internal memo,Acquired,62,United States,7/22/2022 +Blockchain.com,"London, Non-U.S.",150.0,7/21/2022,0.25,Crypto,https://www.coindesk.com/business/2022/07/21/blockchaincom-cuts-25-workforce-amid-crypto-bear-market/,Series D,490,United Kingdom,7/21/2022 +Callisto Media,SF Bay Area,140.0,7/21/2022,0.35000000000000003,Media,https://www.publishersweekly.com/pw/by-topic/industry-news/publisher-news/article/89897-callisto-media-promising-to-act-swiftly-and-decisively-lays-off-35-of-workforce.html,Series D,,United States,7/21/2022 +AppGate,Miami,130.0,7/21/2022,0.22,Security,https://m.marketscreener.com/quote/stock/APPGATE-INC-128303647/news/APPGATE-INC-Costs-Associated-with-Exit-or-Disposal-Activities-form-8-K-41078857/,Post-IPO,,United States,7/28/2022 +WHOOP,Boston,95.0,7/21/2022,0.15,Fitness,https://frontofficesports.com/fitness-company-whoop-slashes-workforce-by-15/,Series F,404,United States,7/22/2022 +Rad Power Bikes,Seattle,63.0,7/21/2022,0.1,Transportation,https://www.geekwire.com/2022/rad-power-bikes-cuts-about-10-of-staff-citing-economic-uncertainty-and-rising-operating-costs/,Series D,329,United States,7/21/2022 +Lunchbox,New York City,60.0,7/21/2022,0.33,Food,https://www.businessinsider.com/lunchbox-lays-off-employees-as-food-tech-startups-face-downturn-2022-7,Series B,72,United States,7/22/2022 +RealSelf,Seattle,11.0,7/21/2022,0.05,Healthcare,https://www.geekwire.com/2022/cosmetic-treatment-review-platform-realself-lays-off-11-employees/,Series B,42,United States,7/21/2022 +98point6,Seattle,,7/21/2022,0.1,Healthcare,https://www.geekwire.com/2022/health-care-startup-98point6-lays-off-10-of-workforce-but-says-its-still-in-growth-mode/,Series E,247,United States,7/22/2022 +Catalyst,New York City,,7/21/2022,,Support,Internal memo,Series B,45,United States,8/4/2022 +InVision,New York City,,7/21/2022,0.5,Product,https://www.linkedin.com/posts/clarkvalberg_yesterday-was-a-very-difficult-day-for-the-activity-6955950170509320192-KCWJ/,Series F,356,United States,7/21/2022 +Mural,SF Bay Area,,7/21/2022,,Product,Internal memo,Series C,192,United States,7/22/2022 +Smarsh,Portland,,7/21/2022,,Other,https://www.oregonlive.com/silicon-forest/2022/07/smarsh-big-portland-tech-company-is-cutting-jobs.html,Private Equity,,United States,7/30/2022 +Just Eat Takeaway,"Amsterdam, Non-U.S.",390.0,7/20/2022,,Food,https://www.reuters.com/business/retail-consumer/just-eat-takeaway-cut-staff-france-spokesperson-says-2022-07-20/,Post-IPO,2800,Netherlands,7/20/2022 +Flyhomes,Seattle,200.0,7/20/2022,0.2,Real Estate,https://www.geekwire.com/2022/seattle-real-estate-startup-flyhomes-cuts-20-of-staff-citing-uncertain-economic-conditions/,Series C,310,United States,7/20/2022 +Varo,SF Bay Area,75.0,7/20/2022,,Finance,https://www.axios.com/pro/fintech-deals/2022/07/20/varo-bank-lays-off-75,Series E,992,United States,7/20/2022 +BlueStacks,SF Bay Area,60.0,7/20/2022,,Other,https://inc42.com/buzz/exclusive-a16z-backed-bluestacks-lays-off-60-indian-employees/,Series C,48,United States,7/20/2022 +Lyft,SF Bay Area,60.0,7/20/2022,0.02,Transportation,https://www.wsj.com/articles/lyft-lays-off-about-60-employees-folds-its-car-rentals-for-riders-11658340622,Post-IPO,4900,United States,7/20/2022 +Introhive,"Ferdericton, Non-U.S.",57.0,7/20/2022,0.16,Sales,https://entrevestor.com/home/entry/introhive-lays-off-staff-braces-for-recession,Series C,125,Canada,7/22/2022 +Zencity,"Tel Aviv, Non-U.S.",30.0,7/20/2022,0.2,Other,https://www.calcalistech.com/ctechnews/article/bysqkusnc,Unknown,51,Israel,7/20/2022 +Splice,New York City,23.0,7/20/2022,,Media,https://www.washingtonpost.com/business/2022/08/02/job-openings-labor-market-jolts/,Series D,159,United States,8/5/2022 +Forma.ai,"Toronto, Non-U.S.",15.0,7/20/2022,0.09,Sales,Internal memo,Series B,58,Canada,7/26/2022 +Arc,SF Bay Area,13.0,7/20/2022,,HR,https://www.linkedin.com/posts/weitingliu_today-i-shared-the-hard-news-about-the-difficult-activity-6955435904693878784-hl3J/,Seed,1,United States,7/21/2022 +Invitae,SF Bay Area,1000.0,7/19/2022,,Healthcare,https://www.genomeweb.com/business-news/invitae-lay-over-1000-workers-amid-restructuring-leadership-transition#.YtbajOzMK8D,Post-IPO,2000,United States,7/19/2022 +Olive,Columbus,450.0,7/19/2022,0.31,Healthcare,https://oliveai.com/important-changes-to-our-business,Series H,856,United States,7/19/2022 +M1,Chicago,38.0,7/19/2022,,Finance,Internal memo,Series E,323,United States,7/30/2022 +SellerX,"Berlin, Non-U.S.",28.0,7/19/2022,,Retail,https://sifted.eu/articles/layoffs-amazon-aggregators-downturn/,Unknown,766,Germany,7/21/2022 +Stint,"London, Non-U.S.",28.0,7/19/2022,0.2,HR,https://sifted.eu/articles/startup-tech-company-layoffs/,Unknown,,United Kingdom,7/25/2022 +Capsule,New York City,,7/19/2022,0.13,Healthcare,Internal memo,Series D,570,United States,7/20/2022 +PACT Pharma,SF Bay Area,94.0,7/18/2022,,Healthcare,https://www.fiercebiotech.com/biotech/personalized-cancer-therapy-biotech-pact-pharma-lets-go-nearly-100-staffers,Series C,200,United States,7/20/2022 +Gemini,New York City,68.0,7/18/2022,0.07,Crypto,https://techcrunch.com/2022/07/18/crypto-exchange-gemini-executes-second-round-of-layoffs-less-than-two-months-after-axing-10-of-staff/,Unknown,423,United States,7/18/2022 +Lusha,New York City,30.0,7/18/2022,0.1,Marketing,https://www.calcalistech.com/ctechnews/article/rjqkrgx3q,Series B,245,United States,7/18/2022 +Elemy,SF Bay Area,,7/18/2022,,Healthcare,https://bhbusiness.com/2022/07/18/several-large-autism-service-providers-in-the-u-s-are-undergoing-a-wave-of-layoffs-and-closures/,Series B,323,United States,7/20/2022 +Freshly,New York City,,7/18/2022,0.25,Food,https://www.crainsnewyork.com/small-business/meal-delivery-firm-freshly-lays-25-percent-nyc-workforce,Acquired,107,United States,7/28/2022 +Hydrow,Boston,,7/18/2022,0.35000000000000003,Fitness,https://www.bostonglobe.com/2022/07/21/business/rough-waters-tech-rowing-startup-hydrow-lays-off-35-percent-staff/,Series D,269,United States,7/20/2022 +TikTok,Los Angeles,,7/18/2022,,Consumer,https://www.wired.com/story/tiktok-layoffs-company-wide-restructuring/,Acquired,,United States,7/19/2022 +Vimeo,New York City,,7/18/2022,0.06,Consumer,https://www.businessinsider.com/vimeo-conducts-layoffs-job-cuts-2022-7,Post-IPO,450,United States,7/18/2022 +Bright Money,"Bengaluru, Non-U.S.",100.0,7/15/2022,0.5,Finance,https://www.outlookindia.com/business/sequoia-backed-bright-money-is-latest-start-up-to-hand-out-pink-slips-news-211290?,Series A,31,India,7/22/2022 +Project44,Chicago,63.0,7/15/2022,0.05,Logistics,https://www.freightwaves.com/news/project44-cuts-5-of-global-workforce-plans-for-engineering-first-focus,Unknown,817,United States,7/15/2022 +Heroes,"London, Non-U.S.",24.0,7/15/2022,0.2,Retail,https://www.businessinsider.com/amazon-rollup-heroes-quietly-laid-off-staff-2022-7,Unknown,265,United Kingdom,7/15/2022 +Aspire,SF Bay Area,23.0,7/15/2022,,Marketing,https://www.businessinsider.com/influencer-marketing-firm-aspire-lays-off-staffers-creator-economy-2022-7,Series A,27,United States,7/15/2022 +StyleSeat,SF Bay Area,,7/15/2022,0.17,Consumer,https://docs.google.com/spreadsheets/d/13RoAEMURt-b7z31Pep9DbfDFpIUnxK5jnFhexL59_SQ/edit#gid=0,Series C,40,United States,8/9/2022 +Zego,"London, Non-U.S.",85.0,7/14/2022,0.17,Finance,https://coverager.com/layoffs-at-zego/,Series C,202,United Kingdom,7/14/2022 +The Mom Project,Chicago,54.0,7/14/2022,0.15,HR,https://www.linkedin.com/posts/the-mom-project_today-we-shared-the-difficult-news-with-activity-6953445024575475712-VHen/,Series C,115,United States,7/15/2022 +Unstoppable Domains,SF Bay Area,42.0,7/14/2022,0.25,Crypto,https://twitter.com/matthewegould/status/1547699609480286208,Series B,7,United States,7/26/2022 +Kiavi,SF Bay Area,39.0,7/14/2022,0.07,Real Estate,https://www.housingwire.com/articles/fix-and-flip-lender-kiavi-lays-off-7-of-employees/,Series E,240,United States,7/22/2022 +Alto Pharmacy,SF Bay Area,,7/14/2022,,Healthcare,https://www.linkedin.com/news/story/alto-gets-amazon-exec-lays-off-staff-4833793/,Series E,560,United States,7/18/2022 +Cosuno,"Berlin, Non-U.S.",,7/14/2022,,Construction,Company exec,Series B,45,Germany,7/16/2022 +OpenSea,New York City,,7/14/2022,0.2,Crypto,https://twitter.com/dfinzer/status/1547648521607659522?s=20&t=DZC6VC-Ee3Eb3BnfHytydA,Series C,427,United States,7/14/2022 +Wave,"Dakar, Non-U.S.",300.0,7/13/2022,0.15,Finance,https://techcrunch.com/2022/07/13/wave-a-stripe-backed-african-fintech-valued-at-1-7-billion-cut-15-of-its-staff-in-june/,Series A,292,Senegal,7/13/2022 +Tonal,SF Bay Area,262.0,7/13/2022,0.35000000000000003,Fitness,https://www.cnbc.com/2022/07/13/peloton-rival-tonal-cuts-jobs-ahead-of-possible-recession-ipo.html,Series E,450,United States,7/13/2022 +Fabric,New York City,120.0,7/13/2022,0.4,Logistics,https://techcrunch.com/2022/07/13/fabric-lays-off-40-of-staff-as-it-shifts-strategy-from-service-to-platform/,Series C,336,United States,7/13/2022 +Bryter,"Berlin, Non-U.S.",100.0,7/13/2022,0.3,Product,https://twitter.com/pierre_vannier/status/1547311744837685249,Series B,89,Germany,7/14/2022 +ChowNow,Los Angeles,100.0,7/13/2022,0.2,Food,https://techcrunch.com/2022/07/13/signaling-tough-times-ahead-chownow-lays-off-employees/,Series C,64,United States,7/13/2022 +Involves,"Florianópolis, Non-U.S.",70.0,7/13/2022,0.18,Retail,https://www.baguete.com.br/noticias/13/07/2022/involves-demite-18,Unknown,23,Brazil,7/20/2022 +100 Thieves,Los Angeles,12.0,7/13/2022,,Consumer,https://www.dexerto.com/esports/100-thieves-layoffs-social-content-teams-1870915/,Series C,120,United States,7/18/2022 +Nuro,SF Bay Area,7.0,7/13/2022,,Transportation,https://www.therobotreport.com/nuro-lays-off-employees-in-texas-california-and-arizona/,Series D,2100,United States,7/16/2022 +Arrival,"London, Non-U.S.",,7/13/2022,0.3,Transportation,https://techcrunch.com/2022/07/13/arrival-to-slash-costs-cut-up-to-30-of-workforce-to-meet-on-ev-van-production-target/,Post-IPO,629,United Kingdom,7/14/2022 +CircleUp,SF Bay Area,,7/13/2022,,Finance,https://docs.google.com/spreadsheets/d/1ZfABpORnbm4dPfT-45YtOIJ1SonNkXUWXLPXdeCc5bg/edit#gid=0,Series C,53,United States,7/26/2022 +Papa,Miami,,7/13/2022,0.15,Other,https://www.linkedin.com/posts/andrew-parker-30904417_today-was-a-tough-day-for-papa-in-light-activity-6953092571120201728-HFiM/,Series D,241,United States,7/13/2022 +Gopuff,Philadelphia,1500.0,7/12/2022,0.1,Food,https://www.bloomberg.com/news/articles/2022-07-12/gopuff-is-cutting-10-jobs-in-us-closing-warehouses-to-preserve-cash,Series H,3400,United States,7/12/2022 +Fraazo,"Mumbai, Non-U.S.",150.0,7/12/2022,,Food,https://inc42.com/buzz/exclusive-fraazo-lays-off-150-employees-shuts-50-dark-stores/,Series B,63,India,7/13/2022 +Babylon,"London, Non-U.S.",100.0,7/12/2022,,Healthcare,https://www.bloomberg.com/news/articles/2022-07-12/uk-health-app-babylon-plans-job-cuts-in-bid-to-slash-costs#xj4y7vzkg,Post-IPO,1100,United Kingdom,7/25/2022 +Hubilo,SF Bay Area,45.0,7/12/2022,0.12,Marketing,https://inc42.com/buzz/hubilo-lays-off-12-workforce-as-physical-events-resume/,Series B,153,United States,7/13/2022 +Airlift,"Lahore, Non-U.S.",,7/12/2022,1.0,Logistics,https://techcrunch.com/2022/07/12/airlift-shutdown/,Series B,109,Pakistan,7/13/2022 +Microsoft,Seattle,,7/12/2022,,Other,https://www.cnbc.com/2022/07/12/microsoft-cuts-small-percentage-of-employees-as-new-fiscal-year-begins.html,Post-IPO,1,United States,11/15/2022 +Spring,SF Bay Area,,7/12/2022,,Retail,https://www.businessinsider.com/merch-company-spring-has-laid-off-staff-creator-economy-2022-7,Unknown,61,United States,7/13/2022 +Hopin,"London, Non-U.S.",242.0,7/11/2022,0.29,Other,https://www.businessinsider.com/live-events-unicorn-startup-hopin-is-laying-off-tk-staff-2022-7?op=1&scrolla=5eb6d68b7fedc32c19ef33b4,Series D,1000,United Kingdom,7/11/2022 +Alice,"Sao Paulo, Non-U.S.",63.0,7/11/2022,,Healthcare,https://forbes.com.br/carreira/2022/07/healthtech-alice-demite-63-funcionarios/,Series C,174,Brazil,7/13/2022 +SundaySky,New York City,24.0,7/11/2022,0.13,Marketing,https://en.globes.co.il/en/article-clearhaven-partners-buys-israeli-co-sundaysky-1001417731,Series D,74,United States,7/11/2022 +Apeel Sciences,Santa Barbara,,7/11/2022,,Food,https://www.pacbiztimes.com/2022/07/11/goletas-apeel-lays-off-undisclosed-number-of-employees/,Series E,640,United States,7/14/2022 +Forward,SF Bay Area,,7/11/2022,0.05,Healthcare,https://www.fiercehealthcare.com/health-tech/primary-care-startup-forward-cut-5-workforce-amid-extremely-tough-market-conditions,Series D,225,United States,7/12/2022 +Ignite,SF Bay Area,,7/11/2022,0.5,Crypto,https://www.coindesk.com/business/2022/07/01/cosmos-builder-ignite-cuts-headcount-by-more-than-50-ex-employees-say/,Series A,9,United States,7/13/2022 +Nextbite,Denver,,7/9/2022,,Food,https://www.businessinsider.com/softbank-backed-virtual-brand-startup-nextbite-lays-off-staff-2022-7,Series C,150,United States,7/11/2022 +PuduTech,"Shenzen, Non-U.S.",1500.0,7/8/2022,,Other,https://www.therobotreport.com/reports-major-layoffs-at-pudu-robotics/,Series C,184,China,8/4/2022 +Butler Hospitality,New York City,1000.0,7/8/2022,1.0,Food,https://techcrunch.com/2022/07/08/butler-shows-hundreds-of-employees-the-door-after-raising-50m-for-room-service-delivery/,Series B,50,United States,7/8/2022 +Calibrate,New York City,156.0,7/8/2022,0.24,Healthcare,https://news.bloomberglaw.com/capital-markets/health-startup-calibrate-cuts-24-of-workforce-in-restructuring,Series B,127,United States,7/18/2022 +NextRoll,SF Bay Area,,7/8/2022,0.03,Marketing,https://www.businessinsider.com/nextroll-lays-off-sales-and-recruitment-staffers-2022-7,Unknown,108,United States,7/8/2022 +Argo AI,Pittsburgh,150.0,7/7/2022,0.05,Transportation,https://techcrunch.com/2022/07/07/ford-vw-backed-argo-ai-lays-off-150-workers-slows-hiring/,Unknown,3600,United States,7/8/2022 +Next Insurance,SF Bay Area,150.0,7/7/2022,0.17,Finance,https://www.calcalistech.com/ctechnews/article/byybineic,Series E,881,United States,7/7/2022 +Adwerx,Durham,40.0,7/7/2022,,Marketing,https://www.inman.com/2022/07/08/adwerx-lays-off-40-employees-as-company-slows-new-initiatives/,Unknown,20,United States,7/8/2022 +Emotive,Los Angeles,30.0,7/7/2022,0.18,Marketing,https://dot.la/emotive-layoffs-2657628462.html,Series B,78,United States,7/8/2022 +Cedar,New York City,,7/7/2022,0.24,Healthcare,https://www.businessinsider.com/cedar-layoffs-workers-jobs-cut-healthcare-market-downturn-2022-7,Series D,351,United States,7/7/2022 +Twitter,SF Bay Area,,7/7/2022,,Consumer,https://www.wsj.com/articles/twitter-lays-off-third-of-talent-team-11657227105,Post-IPO,5700,United States,7/7/2022 +Remote,SF Bay Area,100.0,7/6/2022,0.09,HR,https://www.publico.pt/2022/07/06/economia/noticia/crise-chega-tecnologicas-portugal-remote-despede-9-2012650,Series C,496,United States,7/6/2022 +Shopify,"Ottawa, Non-U.S.",50.0,7/6/2022,,Retail,https://www.theglobeandmail.com/business/article-shopify-compensation-hiring-plans/,Post-IPO,122,Canada,7/6/2022 +Anodot,"Tel Aviv, Non-U.S.",35.0,7/6/2022,0.27,Data,https://www.calcalistech.com/ctechnews/article/sypfe11ms5,Series C,64,Israel,7/6/2022 +SQream,New York City,30.0,7/6/2022,0.18,Data,https://www.calcalistech.com/ctechnews/article/hyvmtrmo9,Series B,77,United States,7/6/2022 +Anodot,"Tel Aviv, Non-U.S.",15.0,7/6/2022,0.2,Data,https://www.calcalistech.com/ctechnews/article/sjy5hbre3,Series C,64,Israel,5/8/2023 +Motif Foodworks,Boston,,7/6/2022,,Food,https://www.foodnavigator-usa.com/Article/2022/07/06/Layoffs-at-Motif-FoodWorks-We-re-pivoting-our-focus-to-key-priorities-that-we-know-will-return-maximum-ROI#,Series B,344,United States,7/15/2022 +Loft,"Sao Paulo, Non-U.S.",384.0,7/5/2022,0.12,Real Estate,https://startups.com.br/noticias/loft-faz-segunda-rodada-de-demissoes-e-corta-mais-380/,Unknown,788,Brazil,7/5/2022 +Bizzabo,New York City,120.0,7/5/2022,0.3,Marketing,https://www.calcalistech.com/ctechnews/article/hysobwfi5,Series E,194,United States,7/6/2022 +eToro,"Tel Aviv, Non-U.S.",100.0,7/5/2022,0.06,Finance,https://www.calcalistech.com/ctechnews/article/ryoxm611sc,Unknown,322,Israel,7/5/2022 +Verbit,New York City,80.0,7/5/2022,0.1,Data,https://www.calcalistech.com/ctechnews/article/bj4k0azi5,Series E,569,United States,7/5/2022 +Outschool,SF Bay Area,31.0,7/5/2022,0.18,Education,https://techcrunch.com/2022/07/05/outschool-which-raised-a-series-b-c-and-d-in-12-months-lays-off-18-of-workforce/,Series D,240,United States,7/5/2022 +Bullish,"Hong Kong, Non-U.S.",30.0,7/5/2022,0.08,Crypto,https://www.theblock.co/post/155859/bullish-com-cuts-jobs-crypto-exchange,Unknown,300,Hong Kong,7/15/2022 +Transmit Security,Boston,27.0,7/5/2022,0.07,Security,https://www.themarker.com/technation/2022-07-05/ty-article/.premium/00000181-cd88-dd1b-a7d1-efffaa730000,Series A,583,United States,7/6/2022 +Thimble,New York City,20.0,7/5/2022,0.33,Finance,https://coverager.com/layoffs-at-thimble/,Series A,28,United States,7/6/2022 +Syte,"Tel Aviv, Non-U.S.",13.0,7/5/2022,0.08,Retail,https://www.themarker.com/technation/2022-07-04/ty-article/.premium/00000181-ca01-d0be-a5e9-ff132aa30000,Series C,71,Israel,7/5/2022 +Lightricks,"Jerusalem, Non-U.S.",80.0,7/4/2022,0.12,Consumer,https://en.globes.co.il/en/article-app-developer-lightricks-lays-off-70-in-israel-1001417020,Series D,335,Israel,7/4/2022 +Chessable,"London, Non-U.S.",29.0,7/4/2022,,Consumer,https://dotesports.com/chess/news/chessbase-lays-off-29-employees-citing-new-economic-reality,Acquired,,United Kingdom,7/13/2022 +Sendle,"Sydney, Non-U.S.",27.0,7/4/2022,0.12,Logistics,https://www.afr.com/technology/australia-post-disruptor-sendle-airtasker-lead-in-tech-jobs-losses-20220701-p5aydb,Series C,69,Australia,7/4/2022 +Lendis,"Berlin, Non-U.S.",18.0,7/4/2022,0.15,Other,https://www.businessinsider.de/gruenderszene/news/news-ticker-lendis-2022-07/,Series A,90,Germany,7/7/2022 +Airtasker,"Sydney, Non-U.S.",,7/4/2022,,Consumer,https://www.afr.com/technology/australia-post-disruptor-sendle-airtasker-lead-in-tech-jobs-losses-20220701-p5aydb,Series C,26,Australia,7/4/2022 +Gorillas,"Berlin, Non-U.S.",540.0,7/3/2022,,Food,https://www.retailfood.it/index.php/2022/07/03/gorillas-flop-lascia-litalia/,Series C,1300,Germany,7/6/2022 +Celsius,New York City,150.0,7/3/2022,0.25,Crypto,https://www.calcalistech.com/ctechnews/article/syvuxha99,Series B,864,United States,7/4/2022 +LetsGetChecked,New York City,,7/2/2022,,Healthcare,https://www.businesspost.ie/tech/tech-unicorn-letsgetchecked-lays-off-staff-including-dublin-workers/,Series D,263,United States,7/4/2022 +Perx Health,"Sydney, Non-U.S.",,7/2/2022,,Healthcare,https://www.smh.com.au/business/entrepreneurship/everybody-thought-they-were-the-exception-start-ups-optimism-hits-hard-reality-20220630-p5axzk.html,Seed,2,Australia,7/4/2022 +Zepto,"Brisbane, Non-U.S.",,7/2/2022,0.1,Finance,https://www.smh.com.au/business/entrepreneurship/everybody-thought-they-were-the-exception-start-ups-optimism-hits-hard-reality-20220630-p5axzk.html,Series A,25,Australia,7/4/2022 +WanderJaunt,SF Bay Area,85.0,7/1/2022,1.0,Travel,https://shorttermrentalz.com/news/wanderjaunt-ceases-operations/#.Yr7oNfKExPA.twitter,Series B,26,United States,7/2/2022 +Canoo,Los Angeles,58.0,7/1/2022,0.06,Transportation,https://www.businessinsider.com/canoo-layoffs-production-goals-electric-vehicle-startup-2022-6,Post-IPO,300,United States,7/1/2022 +Bamboo Health,Louisville,52.0,7/1/2022,,Healthcare,Internal memo,Unknown,,United States,7/21/2022 +Teleport,SF Bay Area,15.0,7/1/2022,0.06,Infrastructure,https://goteleport.com/blog/managing-downturn/,Series C,169,United States,7/2/2022 +Remesh,New York City,,7/1/2022,,Support,Internal memo,Series A,38,United States,7/6/2022 +Enjoy,SF Bay Area,400.0,6/30/2022,0.18,Retail,https://news.crunchbase.com/public/bankruptcy-enjoy-apple-ron-johnson/,Post-IPO,310,United States,6/30/2022 +Crejo.Fun,"Bengaluru, Non-U.S.",170.0,6/30/2022,1.0,Education,https://inc42.com/buzz/exclusive-matrix-backed-edtech-startup-crejo-fun-shuts-down/,Seed,3,India,7/1/2022 +Stash Financial,New York City,40.0,6/30/2022,0.08,Finance,https://www.forbes.com/sites/jeffkauflin/2022/07/28/in-fintech-2022-is-becoming-the-year-of-layoffs/?sh=70ae2b0d20f3,Unknown,480,United States,10/26/2022 +Nate,New York City,30.0,6/30/2022,0.2,Retail,https://www.theinformation.com/articles/coatue-backed-shopping-startup-that-exaggerated-tech-capabilities-to-potential-investors-lays-off-20-of-staff,Series A,47,United States,6/30/2022 +Snyk,Boston,30.0,6/30/2022,,Security,https://snyk.io/blog/announcing-organizational-updates-to-better-serve-our-customers/,Series F,849,United States,7/1/2022 +Stream,Boulder,20.0,6/30/2022,0.12,Product,https://twitter.com/gergelyorosz/status/1542559097878466561?s=21&t=j_BKvp6OmyhkImXKMIPJIA,Series B,58,United States,7/1/2022 +Finleap Connect,"Hamburg, Non-U.S.",14.0,6/30/2022,0.1,Finance,https://paymentandbanking.com/open-banking-anbieter-finleap-connect-vollzieht-wechsel-an-der-management-spitze/,Series A,22,Germany,7/1/2022 +Abra,SF Bay Area,12.0,6/30/2022,0.05,Crypto,https://www.theblock.co/post/155209/abra-becomes-latest-crypto-firm-to-cut-jobs,Series C,106,United States,7/1/2022 +Gavelytics,Los Angeles,,6/30/2022,1.0,Legal,https://www.lawnext.com/2022/06/litigation-analytics-company-gavelytics-is-shutting-down-tomorrow.html,Seed,5,United States,7/6/2022 +Secfi,SF Bay Area,,6/30/2022,,Finance,Internal memo,Series A,7,United States,8/4/2022 +Sundae,SF Bay Area,,6/30/2022,0.15,Real Estate,https://www.realtrends.com/articles/sundae-lays-off-15-of-employees/,Series C,135,United States,6/30/2022 +Toppr,"Mumbai, Non-U.S.",350.0,6/29/2022,,Education,https://inc42.com/buzz/after-whitehat-jr-byjus-owned-toppr-lays-off-350-employees/,Acquired,112,India,6/30/2022 +Unity,SF Bay Area,200.0,6/29/2022,0.04,Other,https://kotaku.com/sources-unity-laying-off-hundreds-of-staffers-1849125482,Post-IPO,1300,United States,6/30/2022 +Niantic,SF Bay Area,85.0,6/29/2022,0.08,Consumer,https://www.bloomberg.com/news/articles/2022-06-29/pokemon-go-creator-niantic-cancels-four-projects-cuts-jobs#xj4y7vzkg,Series D,770,United States,6/29/2022 +AvantStay,Los Angeles,80.0,6/29/2022,,Travel,https://skift.com/blog/avantstay-fires-a-significant-chunk-of-its-employee-roster/,Unknown,811,United States,6/30/2022 +Qumulo,Seattle,80.0,6/29/2022,0.19,Data,https://www.geekwire.com/2022/seattle-startup-qumulo-lays-off-80-employees-ceo-cites-economic-conditions-and-reaching-profitability/,Series E,347,United States,6/30/2022 +Clutch,"Toronto, Non-U.S.",76.0,6/29/2022,0.22,Transportation,https://betakit.com/clutch-cuts-staff-to-extend-runway-citing-market-conditions/,Series B,153,Canada,6/30/2022 +Parallel Wireless,Nashua,60.0,6/29/2022,,Infrastructure,https://www.calcalist.co.il/calcalistech/article/skbud0tc9,Unknown,8,United States,6/30/2022 +Oye Rickshaw,"New Delhi, Non-U.S.",40.0,6/29/2022,0.2,Transportation,https://inc42.com/buzz/exclusive-matrix-partners-backed-oye-rickshaw-lays-off-40-employees/,Unknown,13,India,7/1/2022 +Rows,"Berlin, Non-U.S.",18.0,6/29/2022,0.3,Other,https://eco.sapo.pt/2022/08/05/onda-de-despedimentos-nas-tech-chega-a-unicornio-talkdesk/,Series B,25,Germany,8/5/2022 +Baton,SF Bay Area,16.0,6/29/2022,0.25,Transportation,https://www.freightwaves.com/news/digital-drop-freight-platform-baton-lays-off-25-of-workforce,Series A,13,United States,6/30/2022 +Substack,SF Bay Area,13.0,6/29/2022,0.14,Media,https://www.nytimes.com/2022/06/29/business/media/substack-layoffs.html,Series B,82,United States,6/29/2022 +CommentSold,Huntsville,,6/29/2022,,Retail,Internal memo,Unknown,,United States,7/6/2022 +Degreed,SF Bay Area,,6/29/2022,0.15,Education,https://www.linkedin.com/posts/degreed_a-note-from-degreed-ceo-david-blake-transparency-activity-6947962317351395328-Xzw7/,Series D,411,United States,6/29/2022 +HomeLight,SF Bay Area,,6/29/2022,0.19,Real Estate,https://www.linkedin.com/feed/update/urn:li:activity:6947954503673409536/,Series D,743,United States,6/30/2022 +Modsy,SF Bay Area,,6/29/2022,,Retail,https://techcrunch.com/2022/06/29/modsy-shuts-down-design-services-cutting-roles-and-disrupting-orders/,Series C,72,United States,7/1/2022 +Volt Bank,"Sydney, Non-U.S.",,6/29/2022,1.0,Finance,https://www.smh.com.au/business/banking-and-finance/neobank-volt-to-shut-down-return-deposits-to-customers-after-funding-struggles-20220629-p5axl1.html,Series E,90,Australia,6/30/2022 +Huobi,"Beijing, Non-U.S.",300.0,6/28/2022,0.3,Crypto,https://www.coindesk.com/business/2022/06/28/huobi-global-could-cut-over-30-workforce-as-china-crackdown-leads-to-fall-in-revenue/,Unknown,2,China,6/29/2022 +WhiteHat Jr,"Mumbai, Non-U.S.",300.0,6/28/2022,,Education,https://techcrunch.com/2022/06/28/byjus-unit-whitehat-jr-cuts-300-jobs/,Acquired,11,India,6/29/2022 +StockX,Detroit,120.0,6/28/2022,0.08,Retail,https://www.theinformation.com/briefings/stockx-cuts-8-of-its-staff,Series E,690,United States,6/29/2022 +Sidecar Health,Los Angeles,110.0,6/28/2022,0.4,Healthcare,Internal memo,Series C,163,United States,7/18/2022 +StockX,Detroit,80.0,6/28/2022,,Retail,https://www.complex.com/sneakers/stockx-layoffs-november-2022,Series E,690,United States,11/3/2022 +Vezeeta,"Dubai, Non-U.S.",50.0,6/28/2022,0.1,Healthcare,https://techcrunch.com/2022/06/28/egyptian-healthtech-startup-vezeeta-cuts-10-of-500-person-staff/?tpcc=tcplustwitter,Series D,71,United Arab Emirates,6/29/2022 +Bright Machines,SF Bay Area,30.0,6/28/2022,0.08,Data,https://www.calcalist.co.il/calcalistech/article/rkkjpsuc5,Unknown,250,Israel,6/29/2022 +HealthMatch,"Sydney, Non-U.S.",18.0,6/28/2022,0.5,Healthcare,https://www.smh.com.au/business/entrepreneurship/i-m-heartbroken-wave-of-layoffs-begins-as-start-ups-fight-for-survival-20220628-p5ax6a.html,Series B,20,Australia,6/29/2022 +Booktopia,"Sydney, Non-U.S.",,6/28/2022,,Retail,https://www.smh.com.au/business/entrepreneurship/i-m-heartbroken-wave-of-layoffs-begins-as-start-ups-fight-for-survival-20220628-p5ax6a.html,Series A,23,Australia,6/29/2022 +Nova Benefits,"Bengaluru, Non-U.S.",,6/28/2022,0.3,Healthcare,https://entrackr.com/2022/06/exclusive-nova-benefits-lays-off-30-of-its-workforce/,Series B,41,India,6/30/2022 +Una Brands,"Singapore, Non-U.S.",,6/28/2022,0.1,Retail,https://www.smh.com.au/business/entrepreneurship/i-m-heartbroken-wave-of-layoffs-begins-as-start-ups-fight-for-survival-20220628-p5ax6a.html,Series A,55,Singapore,6/29/2022 +AppLovin,SF Bay Area,300.0,6/27/2022,0.12,Marketing,https://www.bizjournals.com/sanjose/news/2022/06/29/applovin-lays-off-300-workers-report.html,Post-IPO,1600,United States,6/28/2022 +UiPath,New York City,210.0,6/27/2022,0.05,Data,https://www.cnbc.com/2022/06/27/uipath-to-cut-5percent-of-its-workforce-as-part-of-restructuring-plan.html,Post-IPO,2000,United States,6/27/2022 +Udaan,"Bengaluru, Non-U.S.",180.0,6/27/2022,0.04,Retail,https://inc42.com/buzz/exclusive-b2b-ecommerce-unicorn-udaan-lays-off-180-employees/,Unknown,1500,India,6/28/2022 +Cue,San Diego,170.0,6/27/2022,,Healthcare,https://www.genomeweb.com/business-news/cue-health-lay-170-people#.YrpDa-zML9t,Post-IPO,999,United States,6/27/2022 +Banxa,"Melbourne, Non-U.S.",70.0,6/27/2022,0.3,Crypto,https://decrypt.co/103891/australian-crypto-firm-banxa-cut-staff-30-citing-another-crypto-winter,Post-IPO,13,Australia,6/28/2022 +SafeGraph,SF Bay Area,27.0,6/27/2022,0.25,Data,https://www.safegraph.com/blog/setting-up-safegraph-for-a-prosperous-future,Series B,61,United States,6/28/2022 +Amount,Chicago,,6/27/2022,0.18,Finance,https://techcrunch.com/2022/06/27/fintech-amount-which-was-valued-at-1b-last-year-lays-off-18-of-staff/,Unknown,283,United States,6/27/2022 +Postscript,SF Bay Area,43.0,6/26/2022,,Marketing,https://twitter.com/ringmybeller/status/1541154423065427972,Series C,106,United States,6/25/2022 +Bitpanda,"Vienna, Non-U.S.",270.0,6/24/2022,0.27,Crypto,https://brutkasten.com/bitpanda-kuendigungen/,Series C,546,Austria,6/24/2022 +Sunday,Atlanta,90.0,6/24/2022,0.23,Finance,https://www.lesechos.fr/start-up/ecosysteme/la-fintech-sunday-coupe-dans-ses-effectifs-1415671,Series A,124,United States,6/28/2022 +Bestow,Dallas,41.0,6/24/2022,0.14,Finance,https://coverager.com/layoffs-at-bestow/,Series C,137,United States,6/27/2022 +Ethos Life,SF Bay Area,40.0,6/24/2022,0.12,Finance,https://www.coverager.com/ethos-lays-off-40-employees/,Series D,406,United States,6/26/2022 +Feather,New York City,,6/24/2022,,Retail,Internal memo,Unknown,76,United States,6/25/2022 +Give Legacy,Boston,,6/24/2022,,Healthcare,https://www.bizjournals.com/boston/news/2022/06/24/male-fertility-startup-legacy-layoffs.html,Series B,45,United States,7/20/2022 +Netflix,SF Bay Area,300.0,6/23/2022,0.03,Media,https://www.cnbc.com/2022/06/23/netflix-lays-off-300-more-employees-as-revenue-growth-continues-to-slow.html,Post-IPO,121900,United States,6/23/2022 +Aura,Boston,70.0,6/23/2022,0.09,Security,https://www.bankinfosecurity.com/aura-lays-off-70-staff-after-raising-350m-over-past-year-a-19448,Series F,500,United States,6/25/2022 +Pipl,Spokane,22.0,6/23/2022,0.13,Security,https://en.globes.co.il/en/article-fake-profile-finder-pipl-firing-22-hiring-50-1001416113,Unknown,19,United States,6/23/2022 +Vouch,SF Bay Area,15.0,6/23/2022,0.07,Finance,Internal memo,Series C,159,United States,6/23/2022 +Voyage SMS,Los Angeles,8.0,6/23/2022,0.13,Marketing,https://dot.la/voyage-fires-staffers-downturn-continues-2657548730.html,Unknown,10,United States,6/30/2022 +Esper,Seattle,,6/23/2022,0.12,Other,https://www.geekwire.com/2022/seattle-startup-esper-cuts-12-of-staff-citing-current-economic-climate-as-tech-layoffs-continue/,Series A,10,United States,6/23/2022 +Kune,"Nairobi, Non-U.S.",,6/23/2022,1.0,Food,https://www.linkedin.com/posts/robinreecht_sad-day-kune-food-closed-down-today-since-activity-6945419207807221760-p9K6/,Seed,1,Kenya,6/23/2022 +Mark43,New York City,,6/23/2022,,Other,https://www.linkedin.com/news/story/police-tech-startup-cuts-staff-5904746/,Series E,229,United States,6/23/2022 +Orchard,New York City,,6/23/2022,0.1,Real Estate,https://www.linkedin.com/posts/orchardhomes_it-is-with-a-lot-of-sadness-that-we-share-activity-6945830698826027008-_3y5/,Series D,472,United States,6/23/2022 +Ro,New York City,,6/23/2022,0.18,Healthcare,https://techcrunch.com/2022/06/23/ro-cuts-18-of-staff-despite-narrowing-focus-raising-additional-capital/,Unknown,1000,United States,6/23/2022 +StreamElements,"Tel Aviv, Non-U.S.",,6/23/2022,0.2,Media,https://esportsinsider.com/2022/06/streamelements-restructures-20-percent-workforce/,Series B,111,Israel,6/24/2022 +MasterClass,SF Bay Area,120.0,6/22/2022,0.2,Education,https://techcrunch.com/2022/06/22/masterclass-cuts-20-of-600-person-staff-to-get-to-self-sustainability-faster/,Series E,461,United States,6/23/2022 +IronNet,Washington D.C.,90.0,6/22/2022,0.35000000000000003,Security,https://www.crn.com/news/security/ironnet-lays-off-35-percent-of-staff-raises-going-concern-red-flag,Post-IPO,410,United States,9/17/2022 +Bungalow,SF Bay Area,70.0,6/22/2022,,Real Estate,Internal memo,Series C,171,United States,6/23/2022 +IronNet,Washington D.C.,55.0,6/22/2022,0.17,Security,https://ir.ironnet.com/financials/all-sec-filings##document-520-0001193125-22-180852-1,Post-IPO,410,United States,6/25/2022 +Sprinklr,New York City,50.0,6/22/2022,,Support,https://www.businessinsider.com/sprinklr-layoff-marketing-department-martech-2022-7,Post-IPO,429,United States,6/26/2022 +Superpedestrian,Boston,35.0,6/22/2022,0.07,Transportation,https://techcrunch.com/2022/06/22/superpedestrian-voi-among-the-latest-micromobility-layoffs/,Series C,261,United States,6/23/2022 +Voi,"Stockholm, Non-U.S.",35.0,6/22/2022,0.1,Transportation,https://www.voiscooters.com/blog/increased-focus-on-profitability/,Series D,515,Sweden,6/23/2022 +Balto,St. Louis,30.0,6/22/2022,,Sales,https://www.bizjournals.com/stlouis/inno/stories/news/2022/06/22/software-startup-balto-lays-off-about-30-employees.html,Series B,51,United States,6/23/2022 +Ritual,"Toronto, Non-U.S.",23.0,6/22/2022,0.16,Food,https://www.linkedin.com/feed/update/urn:li:activity:6945414597742903297/,Series C,134,Canada,6/23/2022 +Mindgeek,"Luxembourg, Non-U.S.",,6/22/2022,,Media,https://variety.com/2022/digital/news/pornhub-layoffs-nonconsensual-sex-videos-1235300666/,Unknown,,Luxembourg,6/26/2022 +Voly,"Sydney, Non-U.S.",,6/22/2022,0.5,Food,https://www.smh.com.au/business/entrepreneurship/grocery-delivery-startup-voly-slashes-operations-as-tech-sector-slumps-20220620-p5av60.html,Seed,13,Australia,6/23/2022 +Ebanx,"Curitiba, Non-U.S.",340.0,6/21/2022,0.2,Finance,https://www.reuters.com/technology/brazils-ebanx-lays-off-20-employees-cuts-sweep-tech-sector-2022-06-21/,Series B,460,Brazil,6/22/2022 +TaskUs,Los Angeles,52.0,6/21/2022,0.0,Support,Internal memo,Post-IPO,279,United States,6/22/2022 +Community,Los Angeles,40.0,6/21/2022,0.3,Marketing,https://www.businessinsider.com/creator-celeb-text-messaging-platform-community-has-layoffs-2022-6,Unknown,40,United States,6/22/2022 +Sourcegraph,SF Bay Area,24.0,6/21/2022,0.08,Product,https://newsletter.pragmaticengineer.com/p/the-scoop-15,Series D,248,United States,6/23/2022 +Frubana,"Bogota, Non-U.S.",,6/21/2022,0.03,Food,https://www.bloomberglinea.com/english/ebanx-frubana-layoff-staff-as-latam-startups-feel-market-backdrop/,Series C,202,Colombia,6/22/2022 +SuperLearn,"Bengaluru, Non-U.S.",,6/21/2022,1.0,Education,https://inc42.com/buzz/another-edtech-startup-bites-the-dust-bengaluru-based-superlearn-shuts-shop/,Seed,,India,6/22/2022 +Tray.io,SF Bay Area,,6/21/2022,0.1,Data,Internal memo,Series C,109,United States,6/22/2022 +Bybit,"Singapore, Non-U.S.",600.0,6/20/2022,0.3,Crypto,https://techcrunch.com/2022/06/20/bybit-crypto-exchange-joins-the-the-list-of-companies-cutting-staff/,Unknown,,Singapore,6/22/2022 +SummerBio,SF Bay Area,101.0,6/20/2022,1.0,Healthcare,https://www.bizjournals.com/sanfrancisco/inno/stories/news/2022/06/20/covid-testing-startup-summerbio-is-cutting-jobs.html,Unknown,7,United States,6/22/2022 +Trax,"Singapore, Non-U.S.",100.0,6/20/2022,0.12,Retail,https://en.globes.co.il/en/article-retail-analytics-co-trax-laying-off-over-100-1001415644,Series E,1000,Singapore,6/21/2022 +Aqgromalin,"Chennai, Non-U.S.",80.0,6/20/2022,0.3,Food,https://inc42.com/buzz/exclusive-sequoia-backed-aqgromalin-lays-off-30-workforce/,Unknown,12,India,6/21/2022 +Bonsai,"Toronto, Non-U.S.",30.0,6/20/2022,0.55,Retail,https://betakit.com/torontos-bonsai-lays-off-staff-for-second-time-in-two-months/,Series A,27,Canada,6/21/2022 +Brighte,"Sydney, Non-U.S.",30.0,6/20/2022,0.15,Energy,https://www.startupdaily.net/topic/fintech/renewables-fintech-brighte-powers-down-shedding-15-of-its-team/,Series C,145,Australia,6/21/2022 +Buzzer,New York City,,6/20/2022,0.2,Media,https://www.sportico.com/business/tech/2022/buzzer-layoffs-20-million-funding-1234679187/,Unknown,32,United States,6/22/2022 +Bybit,"Singapore, Non-U.S.",,6/20/2022,,Crypto,https://twitter.com/WuBlockchain/status/1538807715861962752,Unknown,,Singapore,12/4/2022 +CityMall,"Gurugram, Non-U.S.",191.0,6/19/2022,0.3,Retail,https://techcrunch.com/2022/06/19/indias-citymall-cuts-191-jobs-following-75-million-fundraise-in-late-march/,Series C,112,India,6/19/2022 +BitOasis,"Dubai, Non-U.S.",9.0,6/19/2022,0.05,Crypto,https://www.reuters.com/markets/rates-bonds/middle-east-focused-crypto-firm-bitoasis-cuts-jobs-amid-sector-turmoil-2022-06-19/,Series B,30,United Arab Emirates,6/21/2022 +Unacademy,"Bengaluru, Non-U.S.",150.0,6/18/2022,0.03,Education,https://www.moneycontrol.com/news/business/startup/softbank-backed-unacademy-lays-off-another-150-employees-8703281.html,Series H,838,India,6/19/2022 +Bytedance,"Shanghai, Non-U.S.",150.0,6/17/2022,,Consumer,https://www.bloomberg.com/news/articles/2022-06-17/bytedance-disbands-shanghai-games-studio-in-expansion-setback#xj4y7vzkg,Unknown,9400,China,6/17/2022 +Socure,Reno,69.0,6/17/2022,0.13,Finance,https://www.forbes.com/sites/jeffkauflin/2022/06/17/high-flying-unicorn-socure-lays-off-13-of-staff-as-troubles-in-fintech-spread/?sh=527a320b606c,Series E,646,United States,6/18/2022 +Finite State,Columbus,16.0,6/17/2022,0.2,Security,https://www.bizjournals.com/columbus/inno/stories/news/2022/06/17/startup-finite-state-layoffs.html,Series B,49,United States,6/18/2022 +JOKR,New York City,50.0,6/16/2022,0.05,Food,https://techcrunch.com/2022/06/16/jokr-grocery-delivery-leaving-us-latin-america/,Series B,430,United States,6/19/2022 +Zumper,SF Bay Area,45.0,6/16/2022,0.15,Real Estate,https://therealdeal.com/2022/06/16/zumper-slashes-15-of-staff/,Series D,178,United States,6/16/2022 +PharmEasy,"Mumbai, Non-U.S.",40.0,6/16/2022,,Healthcare,https://inc42.com/buzz/ipo-bound-pharmeasy-lays-off-40-employees-from-docon/,Unknown,1600,India,6/17/2022 +Circulo Health,Columbus,,6/16/2022,0.5,Healthcare,https://www.axios.com/pro/health-tech-deals/2022/06/16/circulo-health-layoffs,Series A,50,United States,6/17/2022 +Swappie,"Helsinki, Non-U.S.",250.0,6/15/2022,0.17,Retail,https://swappie.com/fi/blogi/viesti-swappien-toimitusjohtajalta/,Series C,169,Finland,6/15/2022 +Wealthsimple,"Toronto, Non-U.S.",159.0,6/15/2022,0.13,Finance,https://www.piquenewsmagazine.com/national-business/wealthsimple-to-layoff-13-of-staff-amid-market-volatility-5481248,Unknown,900,Canada,6/15/2022 +Weee!,SF Bay Area,150.0,6/15/2022,0.1,Food,https://www.businessinsider.com/softbank-backed-grocer-weee-laid-off-10-percent-of-its-staff-amid-a-slowdown-in-online-grocery-2022-6,Series E,863,United States,6/19/2022 +Notarize,Boston,110.0,6/15/2022,0.25,Legal,https://www.bizjournals.com/boston/news/2022/06/15/notarize-cuts-25-of-staff-in-latest-tech-layoff.html,Series D,213,United States,6/16/2022 +Elementor,"Tel Aviv, Non-U.S.",60.0,6/15/2022,0.15,Media,https://en.globes.co.il/en/article-elementor-begins-laying-off-15-of-workforce-1001415176,Unknown,65,Israel,6/15/2022 +Tonkean,SF Bay Area,23.0,6/15/2022,0.23,Other,https://www.themarker.com/technation/ty-article/.premium/00000181-6871-dedd-ab9f-e9ff49480000,Series B,83,United States,6/15/2022 +Airtame,"Copenhagen, Non-U.S.",15.0,6/15/2022,,Consumer,Internal memo,Unknown,7,Denmark,6/16/2022 +OpenWeb,"Tel Aviv, Non-U.S.",14.0,6/15/2022,0.05,Media,https://en.globes.co.il/en/article-openweb-announces-streamlining-plan-including-layoffs-1001415224,Series E,223,Israel,6/15/2022 +Swyft,"Toronto, Non-U.S.",10.0,6/15/2022,0.3,Logistics,https://www.theglobeandmail.com/business/technology/article-shopify-backed-ecommerce-delivery-startup-swyft-latest-canadian-tech/,Series A,20,Canada,6/15/2022 +Crehana,"Lima, Non-U.S.",,6/15/2022,,Education,https://www.bloomberglinea.com/2022/06/15/crehana-confirma-que-hizo-despidos-pero-desliga-la-decision-a-crisis-de-startups/,Series B,93,Peru,6/22/2022 +JetClosing,Seattle,,6/15/2022,1.0,Real Estate,https://www.geekwire.com/2022/seattle-startup-jetclosing-which-launched-in-2016-to-digitize-home-closing-process-is-shutting-down/,Series B,44,United States,8/2/2022 +Coinbase,SF Bay Area,1100.0,6/14/2022,0.18,Crypto,https://www.cnbc.com/2022/06/14/coinbase-lays-off-18percent-as-execs-prepare-for-recession-crypto-winter.html,Post-IPO,549,United States,6/14/2022 +Redfin,Seattle,470.0,6/14/2022,0.08,Real Estate,https://www.streetinsider.com/dr/news.php?id=20212223&gfv=1,Post-IPO,319,United States,6/14/2022 +Compass,New York City,450.0,6/14/2022,0.1,Real Estate,https://www.bloomberg.com/news/articles/2022-06-14/compass-to-cut-about-10-of-workforce-amid-us-housing-slowdown#xj4y7vzkg,Post-IPO,1600,United States,6/14/2022 +Sami,"Sao Paulo, Non-U.S.",75.0,6/14/2022,0.15,Healthcare,https://braziljournal.com/sami-demite-15-para-conter-queima-de-caixa/,Unknown,36,Brazil,6/14/2022 +Breathe,"New Delhi, Non-U.S.",50.0,6/14/2022,0.33,Healthcare,https://inc42.com/buzz/accel-backed-breathe-well-being-lays-off-50-employees/,Series A,6,India,6/16/2022 +Hunty,"Bogota, Non-U.S.",30.0,6/14/2022,,HR,https://www.bloomberglinea.com/english/colombian-startups-addi-hunty-confirm-layoffs-as-merqueo-exits-mexico,Seed,6,Colombia,6/15/2022 +TIFIN,Boulder,24.0,6/14/2022,0.1,Crypto,https://www.axios.com/pro/fintech-deals/2022/06/14/coinbases-layoffs-hiring-freeze,Series D,204,United States,6/15/2022 +Addi,"Bogota, Non-U.S.",,6/14/2022,,Finance,https://www.bloomberglinea.com/english/colombian-startups-addi-hunty-confirm-layoffs-as-merqueo-exits-mexico,Series C,376,Colombia,6/15/2022 +Shopee,"Singapore, Non-U.S.",,6/14/2022,,Food,https://asia.nikkei.com/Spotlight/DealStreetAsia/Sea-s-e-commerce-arm-Shopee-to-cut-staff-across-Southeast-Asia,Unknown,,Singapore,6/14/2022 +BlockFi,New York City,250.0,6/13/2022,0.2,Crypto,https://blockfi.com/a-message-from-our-founders,Series E,1000,United States,6/13/2022 +Wave Sports and Entertainment,Los Angeles,56.0,6/13/2022,0.33,Media,https://dot.la/wave-sports-entertainment-layoffs-2657504206.html,Series B,65,United States,6/16/2022 +Studio,SF Bay Area,33.0,6/13/2022,0.4,Education,Internal memo,Series B,50,United States,6/14/2022 +Automox,Boulder,,6/13/2022,,Infrastructure,https://www.linkedin.com/posts/automox_today-due-to-the-broader-economic-climate-activity-6942147336605233152-S-xy/,Series C,152,United States,6/14/2022 +Desktop Metal,Boston,,6/13/2022,0.12,Other,https://www.marketwatch.com/amp/story/desktop-metal-to-lay-off-about-12-of-workforce-271655121739,Post-IPO,811,United States,6/13/2022 +Crypto.com,"Singapore, Non-U.S.",260.0,6/10/2022,0.05,Crypto,https://blockworks.co/crypto-com-cutting-5-of-workforce-amid-digital-asset-downturn/,Unknown,156,Singapore,6/11/2022 +FarEye,"New Delhi, Non-U.S.",250.0,6/10/2022,0.3,Logistics,https://inc42.com/buzz/exclusive-dragoneer-backed-fareye-lays-off-250-employees/,Series E,150,India,6/10/2022 +Berlin Brands Group,"Berlin, Non-U.S.",100.0,6/10/2022,0.1,Retail,https://www.startbase.com/news/berlin-brands-group-entlaesst-fast-100-mitarbeiter/,Unknown,1000,Germany,6/21/2022 +Sanar,"Sao Paulo, Non-U.S.",60.0,6/10/2022,0.2,Healthcare,"https://www.terra.com.br/noticias/tecnologia/inovacao/startup-de-medicina-sanar-demite-60-e-pega-funcionarios-de-surpresa,313ce3bfb0f7ebdf601130784b3e8f5fjpp13hkv.html",Unknown,11,Brazil,6/11/2022 +Freetrade,"London, Non-U.S.",45.0,6/10/2022,0.15,Finance,https://www.altfi.com/article/9362_exclusive-freetrade-announces-job-cuts-of-up-to-15-of-staff,Unknown,133,United Kingdom,6/10/2022 +Albert,Los Angeles,20.0,6/10/2022,0.08,Finance,https://dot.la/albert-fintech-layoffs-2657493613.html50,Series C,175,United States,6/11/2022 +Keepe,Seattle,,6/10/2022,,Real Estate,https://www.geekwire.com/2022/home-repair-service-keepe-lays-off-staff-as-economic-uncertainty-spooks-startups/,Unknown,6,United States,6/11/2022 +Liongard,Houston,,6/10/2022,,Infrastructure,https://www.crn.com/news/channel-programs/liongard-lays-off-employees-the-most-difficult-decision-,Series B,22,United States,6/11/2022 +Ziroom,"Beijing, Non-U.S.",,6/10/2022,0.2,Real Estate,https://pandaily.com/ziroom-lays-off-20-of-hq-staff-property-count-falls-by-nearly-150k/,Unknown,2100,China,6/11/2022 +OneTrust,Atlanta,950.0,6/9/2022,0.25,Security,https://www.onetrust.com/blog/onetrust-organizational-update/,Series C,926,United States,6/10/2022 +Stitch Fix,SF Bay Area,330.0,6/9/2022,0.15,Retail,https://www.cnbc.com/2022/06/09/stitch-fix-is-laying-off-15percent-of-its-salaried-employees-internal-memo-says.html,Post-IPO,79,United States,6/9/2022 +Daniel Wellington,"Stockholm, Non-U.S.",200.0,6/9/2022,0.15,Retail,https://www.breakit.se/artikel/33347/stora-nedskarningar-pa-daniel-wellington-200-personer-sags-upp,Unknown,,Sweden,7/25/2022 +Convoy,Seattle,90.0,6/9/2022,0.07,Logistics,https://www.geekwire.com/2022/convoy-which-just-raised-260m-lays-off-7-of-workforce-in-latest-tech-startup-cuts/,Series E,1100,United States,6/10/2022 +Hologram,Chicago,80.0,6/9/2022,0.4,Infrastructure,LinkedIn,Series B,82,United States,6/9/2022 +Boozt,"Malmo, Non-U.S.",70.0,6/9/2022,0.05,Retail,https://www.breakit.se/artikel/33353/sparpaket-pa-boozt-efter-vinstsmallen-sager-upp-personal,Post-IPO,56,Sweden,7/25/2022 +The Grommet,Boston,40.0,6/9/2022,1.0,Retail,https://www.bizjournals.com/boston/news/2022/06/09/the-grommet-layoffs-employees.html,Acquired,5,United States,6/10/2022 +Stashaway,"Singapore, Non-U.S.",31.0,6/9/2022,0.14,Finance,https://www.techinasia.com/stashaway-lays-off-staff,Series D,61,Singapore,6/9/2022 +Preply,Boston,26.0,6/9/2022,0.05,Education,Internal memo,Series C,100,United States,6/10/2022 +Jellysmack,New York City,,6/9/2022,0.08,Media,https://www.businessinsider.com/jellysmack-laid-off-employees-economic-slowdown-email-ceo-to-employees-2022-6,Series C,22,United States,6/10/2022 +Starship,SF Bay Area,,6/9/2022,0.11,Transportation,https://www.starship.xyz/press_releases/starship-technologies-announces-internal-changes/,Series B,197,United States,6/14/2022 +Trade Republic,"Berlin, Non-U.S.",,6/9/2022,,Finance,https://financefwd.com/de/entlassungen-bei-trade-republic/,Series C,1200,Germany,6/9/2022 +Sonder,SF Bay Area,250.0,6/8/2022,0.21,Travel,Internal memo,Post-IPO,839,United States,6/9/2022 +Kavak,"Sao Paulo, Non-U.S.",150.0,6/8/2022,,Transportation,"https://www.terra.com.br/amp/noticias/tecnologia/inovacao/startup-kavak-demite-150-no-rio-e-em-sao-paulo,5cd47d831e523a86ead7e9b2cb92b9dcg9xp78y3.html",Series E,1600,Brazil,6/9/2022 +Truepill,SF Bay Area,150.0,6/8/2022,0.15,Healthcare,https://medium.com/truepill-insights/a-message-from-truepill-ceo-sid-viswanathan-9973660e2d8,Series D,255,United States,6/10/2022 +iPrice Group,Kuala Lumpur,50.0,6/8/2022,0.2,Retail,https://www.techinasia.com/malaysias-iprice-group-sacks-20-employees,Unknown,26,Malaysia,6/30/2022 +Memmo,"Stockholm, Non-U.S.",,6/8/2022,0.4,Consumer,https://www.breakit.se/artikel/33321/stort-sparpaket-pa-memmo-man-maste-se-annorlunda-ut,Unknown,24,Sweden,6/11/2022 +Cazoo,"London, Non-U.S.",750.0,6/7/2022,0.15,Transportation,https://news.sky.com/story/car-retailer-cazoo-to-cut-750-jobs-after-inflation-hit-12629350,Post-IPO,2000,United Kingdom,6/7/2022 +Cazoo,"London, Non-U.S.",750.0,6/7/2022,0.15,Transportation,https://sifted.eu/articles/cazoo-layoffs-european-union/,Post-IPO,2000,United Kingdom,9/9/2022 +Rupeek,"Bengaluru, Non-U.S.",180.0,6/7/2022,0.15,Finance,https://www.moneycontrol.com/news/business/startup/gold-loan-platform-rupeek-lays-off-over-180-of-its-employees-8653571.html,Unknown,172,India,6/7/2022 +Lummo,"Jakarta, Non-U.S.",150.0,6/7/2022,,Marketing,https://www.moneycontrol.com/news/business/startup/jeff-bezos-sequoia-capital-backed-saas-startup-lummo-lays-off-50-60-employees-from-its-bengaluru-office-8663251.html,Series C,149,Indonesia,6/10/2022 +Bird,Los Angeles,138.0,6/7/2022,0.23,Transportation,Internal memo,Post-IPO,783,United States,6/7/2022 +ID.me,Washington D.C.,130.0,6/7/2022,,Security,https://www.businessinsider.com/idme-identity-verification-irs-unemployment-facial-recognition-staff-layoffs-economy-2022-6,Unknown,275,United States,6/8/2022 +KiwiCo,SF Bay Area,40.0,6/7/2022,,Retail,Internal memo,Unknown,11,United States,6/17/2022 +Bond,SF Bay Area,,6/7/2022,,Finance,Internal memo,Series A,42,United States,6/10/2022 +CyberCube,SF Bay Area,,6/7/2022,,Finance,Internal memo,Series B,35,United States,6/19/2022 +Propzy,"Ho Chi Minh City, Non-U.S.",,6/7/2022,0.5,Real Estate,https://www.techinasia.com/vietnamese-proptech-startup-propzy-restructure-laying-50-staff,Series A,33,Vietnam,9/15/2022 +Clearco,"Toronto, Non-U.S.",60.0,6/6/2022,,Finance,https://techcrunch.com/2022/08/30/clearco-cuts-international-staff-as-it-retracts-presence-announces-new-partner/,Series C,681,Canada,8/30/2022 +Dutchie,Bend,50.0,6/6/2022,0.07,Other,https://www.geekwire.com/2022/dutchie-lays-off-7-of-workforce-citing-dramatic-market-shift-in-latest-cannabis-tech-company-cuts/,Series D,603,United States,6/7/2022 +Clearco,"Dublin, Non-U.S.",,6/6/2022,,Finance,https://betakit.com/clearco-expands-to-germany-while-cutting-staff-in-ireland/,Series C,681,Ireland,8/5/2022 +Deep Instinct,New York City,,6/6/2022,0.1,Security,https://news.crunchbase.com/job-market/cybersecurity-tech-layoffs-deep-instinct/,Series D,259,United States,6/9/2022 +Sendoso,SF Bay Area,,6/6/2022,0.14,Marketing,https://www.businessinsider.com/layoffs-at-softbank-backed-gifting-startup-sendoso-2022-6,Series C,152,United States,6/6/2022 +Eruditus,"Mumbai, Non-U.S.",40.0,6/4/2022,,Education,https://inc42.com/buzz/softbank-backed-edtech-unicorn-eruditus-trims-workforce-lays-off-40-employees/,Series E,1200,India,6/6/2022 +Afterverse,"Brasilia, Non-U.S.",60.0,6/3/2022,0.2,Consumer,https://neofeed.com.br/blog/home/o-jogo-virou-afterverse-empresa-de-games-da-movile-corta-ate-60-funcionarios/,Unknown,,Brazil,1/21/2023 +Superhuman,SF Bay Area,23.0,6/3/2022,0.22,Consumer,https://www.businessinsider.com/superhuman-email-startup-lays-off-22-percent-staff-2022-6,Series C,108,United States,6/3/2022 +Food52,New York City,21.0,6/3/2022,0.15,Food,https://www.adweek.com/media/food52-lays-off-15-of-its-staff-in-a-second-round-of-cuts/,Acquired,176,United States,6/7/2022 +5B Solar,"Sydney, Non-U.S.",,6/3/2022,0.25,Energy,https://www.news.com.au/finance/business/manufacturing/aussie-startup-5b-solar-sacks-25-per-cent-of-staff/news-story/55133297ccce5f1b7d1edf38f117a631,Series A,12,Australia,6/3/2022 +Clubhouse,SF Bay Area,,6/3/2022,,Consumer,https://www.bloomberg.com/news/articles/2022-06-03/audio-app-clubhouse-lays-off-staff-as-strategy-shifts#xj4y7vzkg,Series C,110,United States,6/4/2022 +Tesla,Austin,,6/3/2022,0.1,Transportation,https://www.cnbc.com/2022/06/03/heres-the-email-elon-musk-sent-all-tesla-employees-10percent-job-cuts.html,Post-IPO,20200,United States,11/10/2022 +Carbon Health,SF Bay Area,250.0,6/2/2022,0.08,Healthcare,https://www.forbes.com/sites/katiejennings/2022/06/02/healthtech-unicorn-carbon-health-lays-off-250-employees/,Series D,522,United States,6/2/2022 +Favo,"Sao Paulo, Non-U.S.",170.0,6/2/2022,,Food,https://exame.com/negocios/de-malas-prontas-startup-favo-deixa-o-brasil-e-demite-170-funcionarios/,Series A,31,Brazil,6/2/2022 +PolicyGenius,New York City,170.0,6/2/2022,0.25,Finance,https://techcrunch.com/2022/06/02/insurtech-policygenius-cuts-25-of-staff-less-than-3-months-after-raising-125m/,Series E,286,United States,6/2/2022 +Yojak,"Gurugram, Non-U.S.",140.0,6/2/2022,0.5,Construction,https://inc42.com/buzz/info-edge-backed-yojak-lays-off-around-140-employees/,Seed,3,India,6/5/2022 +Envato,"Melbourne, Non-U.S.",100.0,6/2/2022,,Marketing,https://www.smartcompany.com.au/technology/envato-redundancy-business-restructuring/,Unknown,,Australia,6/2/2022 +Gemini,New York City,100.0,6/2/2022,0.1,Crypto,https://www.bloomberg.com/news/articles/2022-06-02/winklevoss-twins-gemini-slashes-staff-10-on-crypto-slump,Unknown,423,United States,6/2/2022 +Stord,Atlanta,59.0,6/2/2022,0.08,Logistics,https://www.businessinsider.com/stord-layoffs-supply-chain-tech-startup-after-raising-120-million-2022-6,Series D,325,United States,6/3/2022 +Gather,SF Bay Area,30.0,6/2/2022,0.33,Consumer,https://www.forbes.com/sites/kenrickcai/2022/07/08/gather-town-layoffs-virtual-office-startup-june-2022/?sh=2ca5ac9d4748,Series B,76,United States,6/16/2022 +Shef,SF Bay Area,29.0,6/2/2022,,Food,Internal memo,Series A,28,United States,6/3/2022 +IRL,SF Bay Area,25.0,6/2/2022,0.25,Consumer,https://techcrunch.com/2022/06/02/irl-layoffs-abraham-shafi-social-media/,Series C,197,United States,6/2/2022 +Esme Learning,Boston,,6/2/2022,,Education,https://esmelearning.com/blogs/news/esmes-new-horizon,Unknown,37,United States,6/2/2022 +Kaodim,"Selangor, Non-U.S.",,6/2/2022,1.0,Consumer,"https://www.thestar.com.my/tech/tech-news/2022/06/02/malaysian-startup-kaodim-to-shut-down-on-july-1-cites-rising-costs-among-challenges#:~:text=Kaodim%20has%20announced%20that%20its,operational%20from%20July%201%2C%202022",Series B,17,Malaysia,6/11/2022 +Rain,"Manama, Non-U.S.",,6/2/2022,,Finance,https://www.bloomberg.com/news/articles/2022-06-02/coinbase-backed-rain-cuts-jobs-amid-cryptocurrency-selloff?srnd=technology-vp#xj4y7vzkg,Series B,202,Bahrain,6/4/2022 +TomTom,"Amsterdam, Non-U.S.",500.0,6/1/2022,0.1,Transportation,https://www.businessinsider.com/tomtom-gps-navigation-tech-layoffs-employees-maps-unit-2022-6,Post-IPO,,Netherlands,1/24/2023 +Cybereason,Boston,100.0,6/1/2022,0.06,Security,https://www.calcalistech.com/ctechnews/article/s1zg60v005,Series F,750,United States,6/1/2022 +Udayy,"Gurugram, Non-U.S.",100.0,6/1/2022,1.0,Education,https://www.moneycontrol.com/news/business/startup/info-edge-backed-edtech-startup-udayy-shuts-down-lays-off-all-employees-8621551.html,Seed,2,India,6/1/2022 +2TM,"Sao Paulo, Non-U.S.",90.0,6/1/2022,0.12,Crypto,"https://www.terra.com.br/noticias/tecnologia/2tm-dono-do-mercado-bitcoin-demite-90-funcionarios,9ce67613ba7b79292f03bc2027ceb77e9uw5hy0w.html",Unknown,250,Brazil,6/2/2022 +Curve,"London, Non-U.S.",65.0,6/1/2022,0.1,Finance,https://www.altfi.com/article/9332_exclusive-curve-joins-klarna-in-mass-jobs-cut,Series C,182,United Kingdom,6/2/2022 +Loom,SF Bay Area,34.0,6/1/2022,0.14,Product,https://techcrunch.com/2022/06/01/a16z-backed-loom-video-layoffs/,Series C,203,United States,6/1/2022 +Skillshare,New York City,31.0,6/1/2022,,Education,Internal memo,Unknown,136,United States,6/9/2022 +Impala,"London, Non-U.S.",30.0,6/1/2022,0.35000000000000003,Travel,https://newsletter.pragmaticengineer.com/p/the-scoop-13,Series B,32,United Kingdom,6/10/2022 +Eaze,SF Bay Area,25.0,6/1/2022,,Consumer,https://www.businessinsider.com/cannabis-tech-startup-eaze-laid-off-employees-2022-6,Series D,202,United States,6/2/2022 +Side,SF Bay Area,,6/1/2022,0.1,Real Estate,https://www.inman.com/2022/06/01/side-lays-off-10-of-workforce-1-year-after-unicorn-valuation/,Unknown,313,United States,6/1/2022 +Truck It In,"Karachi, Non-U.S.",,6/1/2022,0.3,Logistics,https://techx.pk/truck-it-in-follows-the-airlift-and-swvl-path-laying-off-around-30-of-its-workforce/,Seed,17,Pakistan,6/1/2022 +Playtika,"Tel Aviv, Non-U.S.",250.0,5/31/2022,0.06,Consumer,https://en.globes.co.il/en/article-israeli-mobile-games-co-playtika-to-lay-off-250-1001413811,Post-IPO,,Israel,5/31/2022 +Replicated,Los Angeles,50.0,5/31/2022,,Infrastructure,https://www.replicated.com/blog/a-message-from-replicateds-ceo/,Series C,85,United States,6/1/2022 +Tomo,Stamford,44.0,5/31/2022,0.33,Finance,https://www.businessinsider.com/purchase-mortgage-company-tomo-lays-off-staff-housing-market-slows-2022-5,Series A,110,United States,6/1/2022 +Getta,"Tel Aviv, Non-U.S.",30.0,5/31/2022,,Transportation,https://www.themarker.com/technation/2022-05-31/ty-article/.premium/00000181-18d2-d57f-afc1-b8d762210000,Series A,49,Israel,6/1/2022 +BookClub,Salt Lake City,12.0,5/31/2022,0.25,Education,Internal memo,Series A,26,United States,6/6/2022 +Cerebral,SF Bay Area,,5/31/2022,,Healthcare,https://www.bloomberg.com/news/articles/2022-05-31/cerebral-announces-layoffs-amid-script-cutbacks-legal-probe#xj4y7vzkg,Series C,462,United States,6/3/2022 +SWVL,"Dubai, Non-U.S.",400.0,5/30/2022,0.32,Transportation,https://techcrunch.com/2022/05/30/swvl-plans-to-lay-off-32-of-its-team-two-months-after-going-public/,Post-IPO,132,United Arab Emirates,5/31/2022 +Mobile Premier League,"Bengaluru, Non-U.S.",100.0,5/30/2022,0.1,Consumer,https://www.moneycontrol.com/news/business/startup/exclusive-mobile-premier-league-to-lay-off-100-employees-exit-indonesia-market-8603881.html,Series E,375,India,5/31/2022 +SumUp,"Sao Paulo, Non-U.S.",100.0,5/30/2022,0.03,Finance,https://financefwd.com/de/sumup-entlassungen-brasilien/,Unknown,50,Brazil,5/31/2022 +Tempus Ex,SF Bay Area,,5/30/2022,,Data,Internal memo,Unknown,36,United States,6/16/2022 +FrontRow,"Bengaluru, Non-U.S.",145.0,5/27/2022,0.3,Education,https://inc42.com/buzz/exclusive-lightspeed-backed-frontrow-lays-off-145-employees-cut-cost/,Series A,17,India,5/31/2022 +Daloopa,"New Delhi, Non-U.S.",40.0,5/27/2022,,Data,https://www.moneycontrol.com/news/business/daloopa-lays-off-40-employees-noida-8620121.html,Series A,23,India,6/2/2022 +Uncapped,"London, Non-U.S.",29.0,5/27/2022,0.26,Finance,https://sifted.eu/articles/startup-tech-company-layoffs/,Unknown,118,United Kingdom,5/28/2022 +Akerna,Denver,,5/27/2022,,Logistics,https://news.yahoo.com/akerna-announces-corporate-restructuring-213000829.html,Unknown,46,United States,6/11/2022 +Terminus,Atlanta,,5/27/2022,,Marketing,https://www.bizjournals.com/atlanta/inno/stories/news/2022/05/27/terminus-atlanta-startup-layoffs.html,Series C,120,United States,5/28/2022 +Terminus,Atlanta,,5/27/2022,,Marketing,https://www.bizjournals.com/atlanta/inno/stories/news/2022/05/27/terminus-atlanta-startup-layoffs.html,Unknown,192,United States,2/19/2023 +VTEX,"Sao Paulo, Non-U.S.",200.0,5/26/2022,0.13,Retail,https://www.bloomberglinea.com.br/2022/05/26/inverno-chegou-unicornios-vtex-e-bitso-fazem-demissao-em-massa/,Post-IPO,365,Brazil,5/27/2022 +Bitso,"Mexico City, Non-U.S.",80.0,5/26/2022,0.11,Crypto,https://www.coindesk.com/business/2022/05/26/top-latin-american-crypto-exchange-bitso-lays-off-80-employees/,Series C,378,Mexico,5/27/2022 +Foodpanda,"Bucharest, Non-U.S.",80.0,5/26/2022,,Food,https://sifted.eu/articles/glovo-foodpanda-layoffs/,Acquired,749,Romania,5/28/2022 +Dazn,"London, Non-U.S.",50.0,5/26/2022,0.02,Consumer,https://deadline.com/2022/05/dazn-50-roles-redundant-london-1235033389/,Unknown,,United Kingdom,6/11/2022 +Lacework,SF Bay Area,300.0,5/25/2022,0.2,Security,https://twitter.com/GergelyOrosz/status/1529575067117658112,Series D,1900,United States,5/25/2022 +Bolt,SF Bay Area,240.0,5/25/2022,0.27,Finance,https://www.forbes.com/sites/kenrickcai/2022/05/25/checkout-startup-bolt-lays-off-more-than-200-people-or-at-least-25-of-its-staff/?sh=1789cd092201,Series E,1300,United States,5/25/2022 +PeerStreet,Los Angeles,75.0,5/25/2022,,Finance,Internal memo,Series C,121,United States,5/28/2022 +Kontist,"Berlin, Non-U.S.",50.0,5/25/2022,0.25,Finance,https://financefwd.com/de/kontist-entlassungen/,Series B,53,Germany,5/25/2022 +Nuri,"Berlin, Non-U.S.",45.0,5/25/2022,0.2,Finance,https://www.handelsblatt.com/finanzen/banken-versicherungen/banken/fintech-berliner-neobank-nuri-streicht-jede-fuenfte-stelle/28373716.html,Series B,42,Germany,5/25/2022 +Coterie Insurance,Cincinnati,30.0,5/25/2022,0.2,Finance,https://www.bizjournals.com/cincinnati/inno/stories/news/2022/05/27/cincinnati-tech-startup-coterie-cuts-downs.html,Series B,70,United States,5/27/2022 +Airlift,"Lahore, Non-U.S.",,5/25/2022,0.31,Logistics,https://profit.pakistantoday.com.pk/2022/05/25/airlift-closes-down-operations-in-south-africa-smaller-cities-in-pakistan-amidst-global-downturn/,Series B,109,Pakistan,5/25/2022 +Getir,"Istanbul, Non-U.S.",,5/25/2022,0.14,Food,https://techcrunch.com/2022/05/25/getir-the-12b-instant-delivery-startup-plans-to-axe-14-of-staff-globally-and-cut-aggressive-expansion-plans/,Series E,1800,Turkey,5/25/2022 +Zapp,"London, Non-U.S.",,5/25/2022,0.1,Food,https://sifted.eu/articles/zapp-layoffs-staff/,,300,United Kingdom,5/27/2022 +Gorillas,"Berlin, Non-U.S.",300.0,5/24/2022,0.5,Food,https://www.theverge.com/2022/5/24/23139272/gorillas-on-demand-grocery-delivery-app-lays-off-employees-hq,Series C,1300,Germany,5/24/2022 +Zenius,"Jakarta, Non-U.S.",200.0,5/24/2022,,Education,https://www.cnnindonesia.com/ekonomi/20220524142448-92-800561/zenius-phk-lebih-dari-200-karyawan,Series B,20,Indonesia,5/25/2022 +The Zebra,Austin,40.0,5/24/2022,,Finance,https://coverager.com/layoffs-at-the-zebra/,Series D,256,United States,5/25/2022 +Klarna,"Stockholm, Non-U.S.",700.0,5/23/2022,0.1,Finance,https://www.di.se/digital/sparpaket-pa-klarna-sparkar-10-procent-av-alla-anstallda/,Unknown,3700,Sweden,5/23/2022 +PayPal,SF Bay Area,83.0,5/23/2022,,Finance,https://www.bizjournals.com/sanjose/news/2022/05/23/paypal-lays-off-83-workers-from-san-jose-hq.html,Post-IPO,216,United States,5/26/2022 +Buenbit,"Buenos Aires, Non-U.S.",80.0,5/23/2022,0.45,Crypto,https://www.coindesk.com/business/2022/05/24/argentinian-crypto-exchange-buenbit-cuts-45-of-staff-due-to-tech-industry-downturn/,Series A,11,Argentina,5/25/2022 +BeyondMinds,"Tel Aviv, Non-U.S.",65.0,5/23/2022,1.0,Data,https://en.globes.co.il/en/article-beyondminds-shuts-down-lays-off-65-1001412743,Series A,16,Israel,5/23/2022 +ClickUp,San Diego,60.0,5/23/2022,0.07,Other,https://www.protocol.com/bulletins/clickup-layoff-productivity-app,Series C,537,United States,5/25/2022 +Airtime,New York City,30.0,5/23/2022,0.2,Consumer,Internal memo,Series B,33,United States,8/17/2022 +Olist,"Curitiba, Non-U.S.",,5/23/2022,,Retail,"https://www.terra.com.br/noticias/tecnologia/inovacao/unicornio-olist-faz-demissoes-mas-rechaca-crise-na-companhia,255c294ee9e32047e1720aa6397f08e8pvf4joya.html",Series E,322,Brazil,5/25/2022 +MFine,"Bengaluru, Non-U.S.",600.0,5/21/2022,0.75,Healthcare,https://inc42.com/buzz/exclusive-healthtech-startup-mfine-fires-600-employees/,Series C,97,India,5/22/2022 +Latch,New York City,130.0,5/20/2022,0.28,Security,https://www.globenewswire.com/news-release/2022/05/20/2447915/0/en/Latch-resets-cost-structure.html,Post-IPO,342,United States,5/21/2022 +Outside,Boulder,87.0,5/20/2022,0.15,Media,https://www.adweek.com/media/outside-inc-lays-off-15-of-staff-as-it-transitions-to-digital/,Series B,174,United States,5/22/2022 +Skillz,SF Bay Area,70.0,5/20/2022,0.1,Consumer,https://techcrunch.com/2022/05/20/startup-tech-layoff-may-week-3/,Post-IPO,287,United States,5/21/2022 +Cars24,"Gurugram, Non-U.S.",600.0,5/19/2022,0.06,Transportation,https://entrackr.com/2022/05/softbank-backed-cars24-lays-off-600-employees/,Series G,1300,India,5/19/2022 +Vedantu,"Bengaluru, Non-U.S.",424.0,5/18/2022,0.07,Education,https://economictimes.indiatimes.com/tech/startups/vedantu-says-it-is-laying-off-another-424-employees/articleshow/91636698.cms,Series E,292,India,5/18/2022 +Netflix,SF Bay Area,150.0,5/17/2022,0.01,Media,https://www.cnbc.com/2022/05/17/netflix-lays-off-150-employees-as-the-streaming-service-contends-with-big-subscriber-losses.html,Post-IPO,121900,United States,5/17/2022 +Kry,"Stockholm, Non-U.S.",100.0,5/17/2022,0.1,Healthcare,https://www.di.se/digital/sparpaket-pa-kry-varslar-100-personer/,Series D,568,Sweden,5/17/2022 +Picsart,Miami,90.0,5/17/2022,0.08,Consumer,https://www.theinformation.com/articles/picsart-a-photo-editing-startup-for-creators-cuts-8-of-workforce,Series C,195,United States,5/17/2022 +Zak,"Sao Paulo, Non-U.S.",100.0,5/16/2022,0.4,Food,https://www.baguete.com.br/noticias/16/05/2022/zak-demite-40-da-equipe,Series A,29,Brazil,5/17/2022 +Zulily,Seattle,,5/16/2022,,Retail,https://www.geekwire.com/2022/online-retailer-zulily-lays-off-corporate-workers-as-parent-qurate-aims-to-cut-expenses/,Acquired,194,United States,5/17/2022 +AliExpress Russia,"Moscow, Non-U.S.",400.0,5/14/2022,0.4,Retail,https://asia.nikkei.com/Politics/Ukraine-war/Alibaba-s-Russian-venture-slashes-40-of-staff-amid-Ukraine-war,Acquired,60,Russia,5/14/2022 +Thirty Madison,New York City,24.0,5/14/2022,,Healthcare,https://usanewsweb.com/hybrid-clinic-thirty-madison-lays-off-24-folks-after-nurx-merger/,Acquired,209,United States,5/16/2022 +CommonBond,New York City,22.0,5/13/2022,,Finance,https://www.linkedin.com/feed/update/urn:li:activity:6930967047673708544/,Series D,130,United States,5/25/2022 +Subspace,Los Angeles,,5/13/2022,1.0,Infrastructure,https://www.linkedin.com/posts/subspace-com_we-regret-to-announce-that-effective-may-activity-6930952295824207873-2z25/,Series B,,United States,5/17/2022 +Zwift,Los Angeles,150.0,5/12/2022,,Fitness,https://www.dcrainmaker.com/2022/05/zwift-cancels-smart-bike-hardware-plans-announces-significant-layoffs.html,Series C,619,United States,5/12/2022 +Section4,New York City,32.0,5/12/2022,,Education,https://techcrunch.com/2022/05/12/professor-scott-galloways-edtech-startup-section-4-lay-offs/,Series A,37,United States,5/12/2022 +Tripwire,Portland,,5/12/2022,,Security,https://www.oregonlive.com/silicon-forest/2022/05/tripwires-new-owner-lays-off-dozens-3-months-after-buying-portland-tech-company.html,Acquired,29,United States,5/12/2022 +DataRobot,Boston,70.0,5/11/2022,0.07,Data,https://www.theinformation.com/briefings/ai-startup-datarobot-lays-off-7-in-cost-cutting-move,Series G,1000,United States,5/11/2022 +Carvana,Phoenix,2500.0,5/10/2022,0.12,Transportation,https://techcrunch.com/2022/05/10/carvana-to-cut-2500-staff-as-it-struggles-with-overcapacity/,Post-IPO,1600,United States,5/10/2022 +Doma,SF Bay Area,310.0,5/10/2022,0.15,Finance,https://www.housingwire.com/articles/doma-lays-off-15-of-work-force-as-q1-revenue-declines/,Post-IPO,679,United States,5/12/2022 +Pollen,"London, Non-U.S.",200.0,5/10/2022,0.33,Travel,https://newsletter.pragmaticengineer.com/p/the-scoop-11?s=w,Series C,238,United Kingdom,5/20/2022 +Latch,New York City,30.0,5/10/2022,0.06,Security,https://techcrunch.com/2022/05/13/startup-tech-layoff-and-hiring-freeze-in-may/,Post-IPO,342,United States,5/12/2022 +Meero,"Paris, Non-U.S.",350.0,5/9/2022,0.5,Other,https://www.challenges.fr/entreprise/la-licorne-meero-le-uber-de-la-photo-a-licencie-pres-de-50-de-ses-effectifs_812527,Series C,293,France,3/4/2023 +Vroom,New York City,270.0,5/9/2022,0.14,Transportation,https://www.marketwatch.com/amp/story/vroom-names-shortt-as-ceo-amid-business-realignment-shares-up-after-hours-271652132516,Post-IPO,1300,United States,5/10/2022 +Reef,Miami,750.0,5/6/2022,0.05,Transportation,https://www.restaurantbusinessonline.com/technology/reef-lay-5-workforce,Unknown,1500,United States,5/6/2022 +divvyDOSE,Davenport,62.0,5/6/2022,,Healthcare,https://qctimes.com/business/local/online-pharmacy-that-said-it-would-add-200-300-jobs-lays-off-62-davenport-workers/article_15603279-2b4e-5f43-b452-123c5fd3f7a9.html,Acquired,,United States,5/14/2022 +Vedantu,"Bengaluru, Non-U.S.",200.0,5/5/2022,0.03,Education,https://economictimes.indiatimes.com/tech/startups/edtech-unicorn-vedantu-lays-off-200-employees/articleshow/91346831.cms,Series E,292,India,5/7/2022 +Progrexion,Salt Lake City,100.0,5/5/2022,,Finance,https://news.crunchbase.com/job-market/progrexion-lays-off-workers/,Acquired,202,United States,4/19/2023 +Mural,SF Bay Area,90.0,5/5/2022,0.1,Product,LinkedIn,Series C,192,United States,5/6/2022 +On Deck,SF Bay Area,72.0,5/5/2022,0.25,Education,https://techcrunch.com/2022/05/05/on-deck-lay-off-accelerator/,Series A,20,United States,5/5/2022 +SEND,"Sydney, Non-U.S.",300.0,5/4/2022,1.0,Food,https://www.smartcompany.com.au/finance/delivery-startup-send-collapses/,Seed,3,Australia,5/9/2022 +Colossus,Boston,97.0,5/4/2022,,Energy,Company exec,Series A,41,United States,5/12/2022 +Cameo,Chicago,87.0,5/4/2022,0.25,Consumer,https://www.theinformation.com/articles/cameo-a-celebrity-shoutout-app-lays-off-25-of-workforce,Unknown,165,United States,5/4/2022 +Mainstreet,SF Bay Area,45.0,5/4/2022,0.3,Finance,https://www.businessinsider.com/mainstreet-lays-off-third-of-employees-market-conditions-2022-5,Series A,64,United States,5/5/2022 +Ideoclick,Seattle,40.0,5/4/2022,,Retail,https://www.bizjournals.com/seattle/news/2022/05/04/ideoclick-discloses-40-layoffs.html,Series A,7,United States,5/9/2022 +Vise,New York City,25.0,5/4/2022,,Finance,https://citywireusa.com/registered-investment-advisor/news/vise-lays-off-sales-staff-as-part-of-strategy-shift/a2386682,Series C,128,United States,5/4/2022 +Bizpay,"Sydney, Non-U.S.",,5/4/2022,0.3,Finance,https://www.news.com.au/finance/business/banking/sydney-buy-now-pay-later-provider-bizpay-cuts-30-per-cent-of-workforce/news-story/ec35b092a89e653666e8c46bf537c6ab,Unknown,45,Australia,5/12/2022 +Thrasio,Boston,,5/2/2022,,Retail,https://techcrunch.com/2022/05/02/amazon-aggregator-thrasio-begins-layoffs-names-new-ceo/,Unknown,3400,United States,5/2/2022 +Avo,"Tel Aviv, Non-U.S.",500.0,5/1/2022,0.67,Food,https://en.globes.co.il/en/article-israeli-grocery-delivery-co-avo-lays-off-500-1001410720,Series B,45,Israel,5/2/2022 +Noom,New York City,495.0,4/29/2022,,Healthcare,https://www.engadget.com/noom-reported-layoffs-101346556.html,Series F,657,United States,5/2/2022 +Domestika,SF Bay Area,150.0,4/28/2022,0.19,Education,https://www.epe.es/es/economia/20220428/domestika-tecnologica-despidos-ere-encubierto-13576187,Series D,130,United States,7/25/2022 +Netflix,SF Bay Area,25.0,4/28/2022,,Media,https://www.thewrap.com/netflix-layoffs-tudum-site-marketing-department/,Post-IPO,121900,United States,5/12/2022 +Wahoo Fitness,Atlanta,50.0,4/27/2022,,Fitness,https://road.cc/content/news/wahoo-buys-rgt-cyclingand-lays-50-staff-292273,Unknown,,United States,6/19/2022 +Robinhood,SF Bay Area,340.0,4/26/2022,0.09,Finance,https://www.cnbc.com/2022/04/26/robinhood-cutting-about-9percent-of-full-time-employees.html,Post-IPO,5600,United States,4/26/2022 +Bonsai,"Toronto, Non-U.S.",29.0,4/26/2022,0.34,Retail,https://betakit.com/bonsai-lays-off-a-third-of-employees-shortly-after-21-million-series-a-citing-shift-to-growth-strategy/,Series A,27,Canada,6/21/2022 +Sigfox,"Toulouse, Non-U.S.",64.0,4/25/2022,,Other,https://www.lightreading.com/iot/sigfox-takeover-saddles-unabiz-with-heavy-baggage/d/d-id/777022,Acquired,277,France,2/23/2023 +Clyde,New York City,22.0,4/25/2022,,Marketing,https://docs.google.com/spreadsheets/d/1jWyr1oko2FKvofXRRIgCu3tTKlNdnqXj7Qyr1oy-OAE/edit,Series B,58,United States,5/11/2022 +Xiaohongshu,"Shanghai, Non-U.S.",180.0,4/21/2022,0.09,Consumer,https://www.reuters.com/technology/chinas-xiaohongshu-kicks-off-staff-layoffs-source-2022-04-21/,Series E,917,China,4/23/2022 +Facily,"Sao Paulo, Non-U.S.",260.0,4/20/2022,0.3,Retail,https://startups.com.br/noticias/brazilian-e-commerce-firm-facily-slashes-workforce-by-30/,Series D,502,Brazil,4/27/2022 +Lemonade,New York City,52.0,4/20/2022,,Finance,https://coverager.com/layoffs-at-lemonade/,Post-IPO,481,United States,5/28/2022 +Blend,SF Bay Area,200.0,4/19/2022,0.1,Finance,https://www.housingwire.com/articles/blend-lays-off-200-workers-as-mortgage-industry-sputters/,Post-IPO,665,United States,4/20/2022 +QuintoAndar,"Sao Paulo, Non-U.S.",160.0,4/19/2022,0.04,Real Estate,https://aimgroup.com/2022/04/19/quintoandar-lays-off-4-its-workforce/,Series E,755,Brazil,4/24/2022 +Loft,"Sao Paulo, Non-U.S.",159.0,4/19/2022,,Real Estate,https://thegoaspotlight.com/2022/04/19/loft-lays-off-159-employees-to-reorganize-credit-area/,Unknown,788,Brazil,4/24/2022 +Better.com,New York City,,4/19/2022,,Real Estate,https://techcrunch.com/2022/04/19/better-com-conducts-third-round-of-layoffs-in-five-months/,Unknown,905,United States,4/19/2022 +Automox,Boulder,,4/18/2022,0.11,Infrastructure,https://www.linkedin.com/posts/automox_this-morning-we-shared-the-difficult-news-activity-6920062206382329856-qUd1/,Series C,152,United States,5/9/2022 +Humble,SF Bay Area,10.0,4/15/2022,,Media,https://www.gamedeveloper.com/business/humble-lays-off-employees-in-ecommerce-restructuring,Acquired,4,United States,6/14/2022 +Halcyon Health,New York City,,4/15/2022,1.0,Healthcare,https://www.axios.com/pro/health-tech-deals/2022/04/15/halcyon-health-shutters-amid-pandemic-troubles,Unknown,2,United States,4/15/2022 +Ahead,SF Bay Area,44.0,4/14/2022,1.0,Healthcare,https://www.bloomberg.com/news/articles/2022-04-14/online-adhd-medication-startup-ahead-is-shutting-down?sref=yLCixKPR,Unknown,9,United States,4/15/2022 +Truepill,SF Bay Area,,4/14/2022,,Healthcare,https://docs.google.com/spreadsheets/d/1csdEakKxSWWMfL5ZG_XqZL0oRBDPlKjBI1Hahe903P8/,Series D,255,United States,5/11/2022 +Rad Power Bikes,Seattle,100.0,4/12/2022,0.14,Transportation,https://www.geekwire.com/2022/rad-power-bikes-lays-off-100-employees-about-14-of-staff-after-raising-304m-last-year/,Series D,329,United States,5/5/2022 +Meesho,"Bengaluru, Non-U.S.",150.0,4/11/2022,,Retail,https://inc42.com/buzz/meesho-layoffs-150-employees-fired-by-softbank-backed-unicorn/,Series F,1100,India,4/15/2022 +Food52,New York City,20.0,4/8/2022,0.1,Food,https://www.businessinsider.com/food52-layoffs-employees-shocked-chernin-group-investment-2022-4,Acquired,176,United States,5/7/2022 +Unacademy,"Bengaluru, Non-U.S.",1000.0,4/7/2022,0.17,Education,https://economictimes.indiatimes.com/tech/startups/unacademy-lays-off-around-1000-employees-as-edtech-major-begins-a-massive-cost-cutting-exercise/articleshow/90703708.cms,Series H,838,India,4/7/2022 +Goodfood,"Calgary, Non-U.S.",70.0,4/7/2022,,Food,https://thelogic.co/news/exclusive/meal-kit-pioneer-goodfood-goes-through-another-round-of-staff-cuts-amid-struggles-with-supply-chain-inflation/,Post-IPO,16,Canada,8/11/2022 +Workrise,Austin,450.0,4/5/2022,,Energy,https://techcrunch.com/2022/04/05/workrise-cuts-staff-verticals-after-being-valued-at-2-9b-last-year/,Series E,752,United States,3/25/2022 +Fast,SF Bay Area,,4/5/2022,1.0,Finance,https://www.theinformation.com/articles/fast-the-troubled-fintech-startup-is-shutting-down,Series B,124,United States,4/5/2022 +BitMEX,Non-U.S.,75.0,4/4/2022,0.25,Crypto,https://www.theblockcrypto.com/post/140412/bitmex-lays-off-75-employees-after-bank-acquisition-collapses,Seed,,Seychelles,4/5/2022 +Legible,"Vancouver, Non-U.S.",23.0,4/4/2022,0.38,Media,https://betakit.com/in-effort-to-cut-costs-cse-listed-legible-lays-off-over-a-third-of-its-employees/,Post-IPO,3,Canada,4/15/2022 +Lightico,"Tel Aviv, Non-U.S.",20.0,3/31/2022,,Finance,https://www.calcalistech.com/ctechnews/article/bydwq4phj,Series B,42,Israel,2/7/2023 +Sea,"Bengaluru, Non-U.S.",350.0,3/30/2022,,Retail,https://www.techinasia.com/shopee-indias-over-300-staff-lurch-checks-out-country,Post-IPO,8600,India,3/30/2022 +Rasa,"Berlin, Non-U.S.",59.0,3/30/2022,0.4,Data,https://www.businessinsider.de/gruenderszene/business/exklusiv-massenentlassungen-rasa-andreessen-horowitz-ki/,Series B,40,Germany,3/30/2022 +Gopuff,Philadelphia,450.0,3/29/2022,0.03,Food,https://www.theinformation.com/articles/gopuff-plans-hundreds-of-layoffs-to-cut-40-million-in-costs,Series H,3400,United States,3/30/2022 +Thinkific,"Vancouver, Non-U.S.",100.0,3/29/2022,0.2,Education,https://betakit.com/following-2021-losses-thinkific-to-lay-off-100-employees/,Post-IPO,22,Canada,3/30/2022 +Furlenco,"Bengaluru, Non-U.S.",180.0,3/26/2022,,Retail,https://inc42.com/buzz/exclusive-furlenco-lays-off-180-employees-in-push-for-automation/,Series D,228,India,3/28/2022 +Grove Collaborative,SF Bay Area,,3/19/2022,0.17,Retail,https://www.retaildive.com/news/grove-collaborative-is-on-the-cusp-of-going-public-heres-what-the-company/621069/,Series E,474,United States,3/30/2022 +Storytel,"Stockholm, Non-U.S.",100.0,3/17/2022,0.1,Media,https://www.svt.se/kultur/storytel-pausar-planen-om-varldsherravalde-pa-ljudboksmarknaden,Post-IPO,275,Sweden,5/17/2022 +Curology,SF Bay Area,150.0,3/16/2022,,Healthcare,https://www.bizjournals.com/sanfrancisco/news/2022/03/16/curology-skincare-sf-layoffs-funding-dtc.html,Series D,19,United States,3/18/2022 +Trell,"Bengaluru, Non-U.S.",300.0,3/15/2022,0.5,Retail,https://www.businesstoday.in/entrepreneurship/news/story/amidst-face-off-between-investors-co-founders-trell-may-lay-off-300-employees-326399-2022-03-17,Series B,62,India,5/7/2022 +Knock,New York City,115.0,3/15/2022,0.46,Real Estate,https://www.bloomberg.com/news/articles/2022-03-15/startup-knock-scraps-plans-to-go-public-lays-off-half-its-staff,Unknown,654,United States,3/17/2022 +Talis Biomedical,SF Bay Area,,3/15/2022,0.25,Healthcare,https://www.fool.com/earnings/call-transcripts/2022/03/15/talis-biomedical-corporation-tlis-q4-2021-earnings/,Post-IPO,8,United States,6/17/2022 +Sezzle,Minneapolis,,3/10/2022,0.2,Finance,https://www.protocol.com/fintech/sezzle-zip-layoffs,Post-IPO,301,United States,3/11/2022 +Better.com,New York City,3000.0,3/8/2022,0.33,Real Estate,https://www.nytimes.com/2022/03/08/business/better-mortgage-lender-layoffs.html,Unknown,905,United States,3/9/2022 +Adaptive Biotechnologies,Seattle,100.0,3/8/2022,0.12,Healthcare,https://www.geekwire.com/2022/adaptive-biotechnologies-lays-off-about-100-people-12-of-headcount-to-streamline-our-workforce/,Post-IPO,406,United States,5/29/2022 +Hyperscience,New York City,100.0,3/3/2022,0.25,Data,https://www.theinformation.com/articles/automation-firm-hyperscience-slashes-staff-loses-ceo-as-startups-face-growing-pressure,Series E,289,United States,3/4/2022 +WeDoctor,Non-U.S.,500.0,3/2/2022,,Healthcare,https://www.bloomberg.com/news/articles/2022-03-03/wedoctor-is-said-to-cut-workforce-after-delay-in-going-public,Series F,1400,China,3/5/2022 +Wish,SF Bay Area,190.0,3/1/2022,0.15,Retail,https://www.marketwatch.com/story/wish-stock-dives-as-holiday-sales-miss-layoffs-planned-11646170199,Post-IPO,1600,United States,5/14/2022 +iFit,Logan,,2/25/2022,,Fitness,https://www.sltrib.com/news/business/2022/02/25/utahs-ifit-sweats-through/,Private Equity,200,United States,11/22/2022 +OKCredit,"New Delhi, Non-U.S.",30.0,2/24/2022,,Finance,https://inc42.com/buzz/tiger-global-backed-okcredit-lays-off-around-40-employees/,Series B,85,India,2/26/2022 +Lido,"Mumbai, Non-U.S.",150.0,2/21/2022,,Education,https://inc42.com/buzz/edtech-startup-lido-lays-off-over-150-employees-just-5-months-after-raising-10-mn/,Series A,24,India,2/22/2022 +Virgin Hyperloop,Los Angeles,111.0,2/21/2022,0.5,Transportation,https://www.ft.com/content/d87f77bd-0a0a-4512-b983-197f184f5352,Unknown,368,United States,2/22/2022 +Trustly,"Stockholm, Non-U.S.",120.0,2/17/2022,,Finance,https://igamingbusiness.com/trustly-to-lay-off-120-as-it-increases-account-to-account-focus/,Acquired,28,Sweden,5/17/2022 +Liv Up,"Sao Paulo, Non-U.S.",100.0,2/16/2022,0.15,Food,https://startups.com.br/noticias/liv-up-faz-reestruturacao-e-corta-15-do-quadro/,Series D,118,Brazil,4/27/2022 +Homie,Salt Lake City,119.0,2/14/2022,0.29,Real Estate,https://www.deseret.com/utah/2022/2/14/22933350/utah-real-esate-homie-cuts-staff-amid-roiled-real-estate-market-record-home-prices-low-inventory,Series B,35,United States,2/11/2022 +Hopin,"London, Non-U.S.",138.0,2/10/2022,0.12,Other,https://techcrunch.com/2022/02/10/virtual-events-platform-hopin-cuts-12-of-staff-citing-goal-of-sustainable-growth/,Series D,1000,United Kingdom,2/11/2022 +Daily Harvest,New York City,60.0,2/10/2022,0.2,Food,https://www.bloomberg.com/news/articles/2023-02-10/meal-startup-daily-harvest-layoffs-target-more-than-20-of-staff#xj4y7vzkg,Series D,120,United States,2/10/2023 +Peloton,New York City,2800.0,2/8/2022,0.2,Fitness,https://techcrunch.com/2022/02/08/peloton-ceo-steps-down-as-the-company-cuts-2800-jobs/,Post-IPO,1900,United States,2/8/2022 +Defined.ai,Seattle,,2/7/2022,,Data,https://www.bizjournals.com/seattle/inno/stories/news/2022/02/07/defined-ai-layoffs-missed-growth-targets.html,Series B,78,United States,7/7/2022 +Rhino,New York City,57.0,2/3/2022,0.2,Real Estate,https://therealdeal.com/2022/02/03/proptech-startup-rhino-lays-off-over-20-of-its-staff/,Unknown,133,United States,2/4/2022 +Gopuff,Philadelphia,100.0,1/26/2022,,Food,https://www.businessinsider.com/gopuff-eliminates-about-100-jobs-control-costs-before-potential-ipo-2022-1,Series H,3400,United States,2/4/2022 +Glossier,New York City,80.0,1/26/2022,0.33,Consumer,https://techcrunch.com/2022/01/26/glossier-just-laid-off-one-third-of-its-corporate-employees-mostly-in-tech/,Series E,266,United States,1/26/2022 +Root Insurance,Columbus,330.0,1/20/2022,,Finance,https://coverager.com/root-lays-off-a-significant-number-of-employees/,Post-IPO,527,United States,1/23/2022 +Protonn,"Bengaluru, Non-U.S.",,1/20/2022,1.0,Other,https://economictimes.indiatimes.com/tech/startups/protonn-shuts-its-business-returns-9-million-to-investors/articleshow/89007094.cms,Seed,9,India,12/4/2023 +Spin,SF Bay Area,,1/8/2022,0.25,Transportation,https://www.engadget.com/ford-e-scooter-company-spin-leaving-markets-laying-off-staff-154545440.html,Acquired,8,United States,1/9/2022 +Delivery Hero,"Berlin, Non-U.S.",300.0,12/22/2021,,Food,https://www.businessinsider.de/gruenderszene/food/nach-foodpanda-aus-delivery-hero-kuendigt-300-mitarbeitern-b/,Post-IPO,8300,Germany,12/30/2021 +iFit,Logan,,12/8/2021,,Fitness,https://www.hjnews.com/news/business/ifit-lays-off-undisclosed-number-of-employees-before-holidays/article_71b755a5-cfcf-5503-8a88-601cdea04ffc.html,Private Equity,200,United States,11/22/2022 +Better.com,New York City,900.0,12/1/2021,0.09,Real Estate,https://techcrunch.com/2021/12/01/better-com-lays-off-9-of-its-staff/,Unknown,905,United States,12/1/2021 +BitTitan,Seattle,70.0,11/18/2021,0.27,Data,https://www.seattletimes.com/business/seventy-set-for-layoffs-at-bellevue-startup-bittitan/,Acquired,46,United States,11/20/2021 +Zillow,Seattle,2000.0,11/2/2021,0.25,Real Estate,https://www.geekwire.com/2021/zillow-shutter-home-buying-business-lay-off-2k-employees-big-real-estate-bet-falters/,Post-IPO,97,United States,11/2/2021 +InVision,New York City,22.0,10/5/2021,,Product,Internal memo,Unknown,356,United States,5/7/2022 +Ozy Media,SF Bay Area,,10/1/2021,1.0,Media,https://www.nytimes.com/2021/10/01/business/media/ozy-media-carlos-watson.html,Series C,70,United States,10/1/2021 +Zymergen,SF Bay Area,120.0,9/23/2021,,Other,https://www.bizjournals.com/sanfrancisco/news/2021/09/23/zymergen-job-cuts-synthetic-biology-hyaline.html,Post-IPO,974,United States,9/25/2021 +Imperfect Foods,SF Bay Area,,9/22/2021,,Food,https://www.businessinsider.com/imperfect-foods-employees-executives-flee-the-grocery-startup-2021-9,Series D,229,United States,6/14/2022 +Genius,New York City,,9/15/2021,,Consumer,https://www.bloomberg.com/news/articles/2021-09-16/former-startup-darling-genius-sells-assets-for-80-million,Acquired,78,United States,9/16/2021 +Treehouse,Portland,41.0,9/14/2021,0.9,Education,https://www.oregonlive.com/silicon-forest/2021/09/online-coding-school-treehouse-formerly-based-in-portland-lays-off-most-of-its-staff.html,Series B,12,United States,10/27/2021 +Casper,New York City,,9/14/2021,,Retail,https://techcrunch.com/2021/09/14/casper-cuts-its-cmo-cto-and-coo-amid-further-layoffs/,Post-IPO,339,United States,9/15/2021 +Tanium,Seattle,30.0,8/30/2021,,Security,https://www.businessinsider.com/tanium-layoffs-senior-product-marketing-2021-8,Unknown,1000,United States,6/7/2022 +Flockjay,SF Bay Area,37.0,8/24/2021,0.5,Education,https://techcrunch.com/2021/08/24/flockjay-cuts-at-least-half-of-its-workforce-as-it-pivots-away-from-bootcamps-into-b2b-saas/,Series A,14,United States,8/24/2021 +Bytedance,"Shanghai, Non-U.S.",1800.0,8/5/2021,,Consumer,https://www.reuters.com/world/china/bytedance-lay-off-staff-close-businesses-over-china-tutoring-clampdown-sources-2021-08-05/,Unknown,9400,China,8/5/2021 +Pagarbook,"Bengaluru, Non-U.S.",80.0,7/26/2021,,HR,https://inc42.com/buzz/sequoia-backed-pagarbook-lays-off-around-80-employees/,Series A,17,India,7/29/2021 +Katerra,SF Bay Area,2434.0,6/1/2021,1.0,Construction,https://therealdeal.com/2021/06/01/troubled-construction-startup-katerra-will-shut-down-report/,Unknown,1600,United States,6/1/2021 +SumUp,"London, Non-U.S.",,5/5/2021,,Finance,https://financefwd.com/de/entlassungen-bei-sumup/,Unknown,53,United Kingdom,5/6/2021 +Lambda School,SF Bay Area,65.0,4/29/2021,,Education,https://techcrunch.com/2021/04/29/lambda-school-lays-off-65-employees-amid-restructuring/,Series C,122,United States,4/30/2021 +Madefire,SF Bay Area,,4/29/2021,1.0,Media,https://techcrunch.com/2021/04/29/madefire-shuts-down/,Series B,16,United States,4/30/2021 +Patreon,SF Bay Area,36.0,4/26/2021,,Media,https://www.youtube.com/watch?v=MV-3GgU6rlo,Series D,165,United States,4/29/2021 +New Relic,SF Bay Area,160.0,4/6/2021,0.07,Infrastructure,https://siliconangle.com/2021/04/06/new-relic-let-go-7-employees-amid-business-model-refocus/,Post-IPO,214.5,United States,4/7/2021 +Medium,SF Bay Area,,3/24/2021,,Media,https://ev.medium.com/medium-editorial-team-update-8679bcb9fe81,Series C,132,United States,3/27/2021 +HuffPo,New York City,47.0,3/9/2021,,Media,https://www.huffpost.com/entry/huffpost-buzzfeed-layoffs_n_60479ba2c5b6af8f98beb89d,Acquired,37,United States,3/9/2021 +Subspace,Los Angeles,,3/3/2021,,Infrastructure,LinkedIn,Series B,,United States,3/4/2021 +Clumio,SF Bay Area,,3/1/2021,,Data,https://blocksandfiles.com/2021/03/01/cloud-concentrating-clumio-lays-off-more-staff/,Series C,186,United States,3/4/2021 +DJI,SF Bay Area,,2/24/2021,,Consumer,https://dronelife.com/2021/02/24/dji-layoffs-in-palo-alto-office-will-remain-open/,Unknown,105,United States,2/25/2021 +Ninjacart,"Bengaluru, Non-U.S.",200.0,2/23/2021,,Food,https://inc42.com/buzz/ninjacart-employee-layoffs/,Unknown,194,India,2/23/2021 +Bounce,"Bengaluru, Non-U.S.",200.0,2/22/2021,0.4,Transportation,https://economictimes.indiatimes.com/tech/startups/bounce-goes-for-second-round-of-layoffs-as-demand-for-mobility-lags/articleshow/81144047.cms,Series D,214.2,India,2/22/2021 +ThredUp,Chicago,243.0,2/9/2021,,Retail,https://www.chicagotribune.com/business/ct-biz-thredup-vernon-hills-layoffs-20210209-m7a47qe53vf2neztz26ouko23i-story.html,Series F,305,United States,2/9/2021 +Indigo,Boston,80.0,2/9/2021,,Other,https://www.bizjournals.com/boston/news/2021/02/09/indigo-layoffs-across-multiple-locations.html,Series F,1200,United States,2/11/2021 +Limelight,New York City,13.0,2/4/2021,1.0,Recruiting,Company exec,Unknown,,United States,2/5/2021 +Quandoo,"Berlin, Non-U.S.",87.0,2/3/2021,0.2,Food,https://www.berliner-zeitung.de/en/berlin-reservation-platform-quandoo-slashes-jobs-li.137352,Acquired,39,Germany,2/18/2021 +Hubba,"Toronto, Non-U.S.",45.0,2/1/2021,1.0,Retail,https://betakit.com/hubba-to-shut-down/,Series B,61,Canada,2/3/2021 +Bytedance,"Mumbai, Non-U.S.",1800.0,1/27/2021,,Consumer,https://entrackr.com/2021/01/bytedance-set-to-wrap-up-indian-ops-and-lay-off-over-1800-employees/,Unknown,7400,India,1/28/2021 +Privitar,"London, Non-U.S.",20.0,1/27/2021,,Data,https://www.bizjournals.com/boston/inno/stories/news/2021/01/27/layoffs-at-privitar-coronavirus-boston.html,Series C,150,United Kingdom,1/28/2021 +Shutterfly,SF Bay Area,800.0,1/25/2021,,Retail,https://thedeadpixelssociety.com/lifetouch-shutterfly-staff-reductions-near-800/,Acquired,50,United States,1/26/2023 +Postmates,SF Bay Area,180.0,1/23/2021,0.15,Food,https://www.nytimes.com/2021/01/23/technology/uber-postmates-layoffs.html,Acquired,763,United States,1/25/2021 +Instacart,SF Bay Area,1877.0,1/21/2021,,Food,https://www.bloomberg.com/news/articles/2021-01-21/instacart-to-cut-1-900-jobs-including-its-only-union-positions,Unknown,2400,United States,1/21/2021 +Pocketmath,Singapore,21.0,1/20/2021,1.0,Marketing,https://www.businessinsider.com/mobile-advertising-company-pocketmath-shut-down-facing-lawsuits-2021-1,Unknown,20,Singapore,1/21/2021 +Dropbox,SF Bay Area,315.0,1/13/2021,0.15,Other,https://www.cnbc.com/2021/01/13/dropbox-to-cut-11percent-of-its-global-workforce.html,Post-IPO,1700,United States,1/13/2021 +Aura Financial,SF Bay Area,,1/11/2021,1.0,Finance,https://www.linkedin.com/pulse/farewell-aura-your-mission-endures-james-gutierrez/,Unknown,584,United States,1/28/2021 +Simple,Portland,,1/7/2021,1.0,Finance,https://www.oregonlive.com/silicon-forest/2021/01/simple-portland-online-banker-is-shutting-down.html,Acquired,15,United States,1/8/2021 +WhiteHat Jr,"Mumbai, Non-U.S.",1800.0,1/6/2021,,Education,https://inc42.com/buzz/whitehat-jr-employees-transition-opportunity-byjus/,Acquired,11,India,1/11/2021 +Pulse Secure,SF Bay Area,78.0,12/23/2020,,Security,https://www.bizjournals.com/sanjose/news/2020/12/23/pulse-secure-layoffs.html,Acquired,,United States,12/28/2020 +Breather,"Montreal, Non-U.S.",120.0,12/16/2020,0.8,Real Estate,https://www.theglobeandmail.com/business/article-breather-hopes-for-second-wind-as-montreal-flexible-workspace-provider/,Series D,131,Canada,12/17/2020 +Actifio,Boston,54.0,12/16/2020,,Data,https://www.bizjournals.com/boston/news/2020/12/16/actifio-layoffs-google.html,Acquired,352,United States,12/17/2020 +OYO,"Gurugram, Non-U.S.",600.0,12/8/2020,,Travel,https://www.forbesindia.com/news/business/startup/exclusive-oyo-lays-off-another-600-800-employees-as-it-moves-to-a-revenue-sharing-model-6202571.html,Series F,3200,India,12/9/2020 +Zinier,SF Bay Area,,11/25/2020,,HR,LinkedIn,Series C,120,United States,12/1/2020 +Aya,"Toronto, Non-U.S.",5.0,11/19/2020,0.25,Finance,https://betakit.com/fintech-and-healthtech-startup-aya-comes-out-of-stealth-with-3-2-million-cad-in-seed-financing/,Seed,3,Canada,11/19/2020 +Domio,New York City,,11/18/2020,0.5,Real Estate,https://therealdeal.com/national/2020/11/18/short-term-rental-operator-domio-shuts-down/,Series B,116,United States,11/19/2020 +Bridge Connector,Nashville,154.0,11/17/2020,1.0,Healthcare,https://www.nashvillepost.com/business/health-care/article/21144528/bridge-connector-closing-down,Series B,45,United States,11/19/2020 +Tidepool,SF Bay Area,18.0,11/17/2020,0.4,Healthcare,https://www.linkedin.com/posts/tidepoolorg_activity-6734927153630183424-s-x0/,Unknown,,United States,1/9/2021 +Igenous,Seattle,,11/17/2020,,Data,https://blocksandfiles.com/2020/11/17/igneous-layoffs/,Series C,67,United States,11/19/2020 +Scoop,SF Bay Area,,11/17/2020,,Transportation,https://layoffs.fyi/2020/12/02/scoop-conducts-second-layoff-in-2020/,Series C,95,United States,12/2/2020 +Worksmith,Austin,30.0,11/9/2020,0.5,Retail,https://www.bizjournals.com/austin/inno/stories/profiles/2020/11/09/pandemic-forced-worksmith-to-innovate.html,Unknown,3.8,United States,11/12/2020 +Rubica,Seattle,,11/5/2020,1.0,Security,https://www.geekwire.com/2020/seattle-cybersecurity-startup-rubica-shuts-running-cash/,Series A,14,United States,12/23/2020 +Bossa Nova,SF Bay Area,,11/2/2020,0.5,Retail,https://www.cnbc.com/2020/11/02/walmart-ends-contract-with-robotics-company-bossa-nova-report-says.html,Unknown,101.6,United States,11/5/2020 +LivePerson,New York City,30.0,11/1/2020,,Support,https://en.globes.co.il/en/article-liveperson-to-lay-off-30-in-israel-1001347824#,Post-IPO,42,United States,1/21/2023 +Remedy,Austin,82.0,10/29/2020,,Healthcare,https://www.bizjournals.com/austin/news/2020/10/29/health-tech-startup-remedy-lays-off-82-employees.html,Series A,12.5,United States,11/3/2020 +Knotel,New York City,20.0,10/29/2020,0.08,Real Estate,https://www.businessinsider.com/knotel-layoffs-job-cuts-coworking-fundraise-amol-sarva-office-demand-2020-10,Series C,560,United States,11/3/2020 +Cheetah,SF Bay Area,,10/25/2020,,Food,https://layoffs.fyi/2020/11/04/cheetah-conducts-layoff-cites-challenges-facing-the-restaurant-industry/,Series B,67,United States,11/4/2020 +CodeCombat,SF Bay Area,8.0,10/23/2020,,Education,https://layoffs.fyi/2020/10/23/codecombat-launches-alumni-talent-directory-following-layoff/,Series A,8,United States,10/23/2020 +Quibi,Los Angeles,,10/21/2020,1.0,Media,https://layoffs.fyi/2020/11/03/quibi-layoff-list-surfaces-after-company-shuts-down/,Private Equity,1800,United States,10/22/2020 +Zomato,"Jakarta, Non-U.S.",,10/20/2020,,Food,https://dailysocial.id/post/zomato-to-disband-indonesia-local-operation,Series J,914,Indonesia,10/22/2020 +GetYourGuide,"Berlin, Non-U.S.",90.0,10/14/2020,0.17,Travel,https://www.reuters.com/article/tech-getyourguide/german-travel-startup-getyourguide-lets-go-of-a-sixth-of-staff-idUSL8N2H544X,Series E,656,Germany,10/16/2020 +OLX India,"New Delhi, Non-U.S.",250.0,10/10/2020,,Marketing,https://inc42.com/buzz/olx-india-lays-off-250-employees-set-to-renew-focus-on-2-verticals/,Acquired,28,India,10/12/2020 +Chef,Seattle,,10/8/2020,,Infrastructure,https://www.geekwire.com/2020/progress-makes-layoffs-chef-220m-acquisition-says-remains-committed-roadmap/,Acquired,105,United States,10/16/2020 +Alto Pharmacy,SF Bay Area,47.0,9/29/2020,0.06,Healthcare,https://layoffs.fyi/2020/10/07/alto-pharmacy-lays-off-47-employees/,Series D,356,United States,10/7/2020 +TheWrap,Los Angeles,,9/29/2020,,Media,https://nypost.com/2020/09/29/ex-hollywood-reporter-billboard-exec-lynne-segall-lands-at-the-wrap/,Series B,3.5,United States,9/30/2020 +HumanForest,"London, Non-U.S.",,9/25/2020,,Transportation,https://techcrunch.com/2020/09/25/humanforest-suspends-london-e-bike-sharing-service-cuts-jobs-after-customer-accident/,Private Equity,1.54,United Kingdom,9/28/2020 +WeWork ,"Shenzen, Non-U.S.",,9/23/2020,,Real Estate,https://techcrunch.com/2020/09/23/wework-sells-majority-stake-in-chinese-entity-seeks-localization/,Series H,19500,China,9/28/2020 +Air,New York City,,9/16/2020,0.16,Marketing,https://air.inc/blog/series-a,Series A,18,United States,9/21/2020 +NS8,Las Vegas,240.0,9/11/2020,0.9500000000000001,Data,https://twitter.com/VitalVegas/status/1304355796008853506,Series A,157.9,United States,9/11/2020 +Bleacher Report,"London, Non-U.S.",20.0,9/11/2020,,Media,https://awfulannouncing.com/br/more-layoffs-in-works-at-bleacher-report.html,Acquired,40.5,United Kingdom,9/12/2020 +HubHaus,SF Bay Area,,9/11/2020,1.0,Real Estate,https://www.theinformation.com/articles/co-living-startup-hubhaus-plans-to-shut-down,Series A,13.4,United States,9/12/2020 +Waze,SF Bay Area,30.0,9/9/2020,0.054000000000000006,Transportation,https://www.theverge.com/2020/9/9/21428907/waze-layoff-pandemic-google-navigation-driving,Acquired,67,United States,9/10/2020 +Ouster,SF Bay Area,,9/8/2020,0.1,Transportation,https://techcrunch.com/2020/09/08/lidar-startup-ouster-raises-42m-in-push-to-grow-sales-diversify-products/,Series B,132,United States,9/9/2020 +Swing Education,SF Bay Area,,9/5/2020,,Education,https://www.sfchronicle.com/business/article/Bay-Area-startups-connect-families-teachers-for-15544289.php,Series B,22.8,United States,9/8/2020 +Akerna,Denver,,9/2/2020,,Logistics,https://mjbizdaily.com/cannabis-tech-platform-akernas-ample-organics-acquisition-spurs-layoffs-leadership-changes/,Post-IPO,,United States,9/4/2020 +Awok,"Dubai, Non-U.S.",,9/2/2020,1.0,Retail,https://www.menabytes.com/awok-shuts-down/,Series A,30,United Arab Emirates,9/2/2020 +Big Fish Games,Seattle,250.0,9/1/2020,,Media,https://venturebeat.com/2020/09/01/big-fish-games-cuts-250-jobs-and-streamlines-mobile-game-operations/,Acquired,95.2,United States,9/2/2020 +GoBear,"Singapore, Non-U.S.",22.0,9/1/2020,0.11,Finance,https://layoffs.fyi/2020/09/13/gobear-launches-talent-directory-after-laying-off-22-employees/,Unknown,97,Singapore,9/2/2020 +MakeMyTrip,"New Delhi, Non-U.S.",350.0,8/31/2020,0.1,Travel,https://yourstory.com/2020/08/makemytrip-restructuring-layoffs-deep-kalra,Post-IPO,548,India,9/2/2020 +Salesforce,SF Bay Area,1000.0,8/26/2020,0.018500000000000003,Sales,https://www.bloomberg.com/news/articles/2020-08-26/salesforce-cuts-1-000-jobs-after-banner-quarter-stock-surge,Post-IPO,65.4,United States,8/26/2020 +kununu,Boston,,8/26/2020,,Recruiting,https://www.linkedin.com/posts/dan-sirk-a220902_after-4-years-at-kununu-continuously-improving-activity-6699389550428512256-X2X4/,Acquired,,United States,9/2/2020 +Superloop,"Brisbane, Non-U.S.",30.0,8/24/2020,,Infrastructure,https://www.arnnet.com.au/article/682373/superloop-reduces-losses-30-workers-laid-off-amid-covid-19/,Post-IPO,36,Australia,6/26/2022 +Spaces,Los Angeles,,8/24/2020,,Media,https://www.protocol.com/apple-vr-ar-spaces-acquisition,Acquired,9.5,United States,8/26/2020 +StreamSets,SF Bay Area,,8/20/2020,,Data,https://www.fastcompany.com/90540630/my-startup-made-difficult-layoffs-heres-how-i-kept-morale-up-and-our-culture-intact,Series C,76.2,United States,8/24/2020 +Docly,"London, Non-U.S.",8.0,8/19/2020,0.8,Healthcare,https://sifted.eu/articles/docly-slash-in-uk/,Seed,15.5,United Kingdom,8/20/2020 +Mapify,"Berlin, Non-U.S.",,8/19/2020,,Travel,https://www.linkedin.com/posts/patrickhaede_yesterday-we-communicated-the-sad-news-that-activity-6702202576349208576-3_BQ/,Seed,1.3,Germany,8/25/2020 +Lumina Networks,SF Bay Area,,8/18/2020,1.0,Infrastructure,https://www.luminanetworks.com/newsroom/lumina-networks-to-wind-down/,Series A,10,United States,8/20/2020 +DJI,"Shenzen, Non-U.S.",,8/17/2020,,Consumer,https://www.reuters.com/article/us-china-tech-dji-focus/chinese-dronemaker-dji-makes-sweeping-cuts-in-long-march-reforms-idUSKCN25D0HF,Unknown,105,China,8/18/2020 +Shopify,"Ottawa, Non-U.S.",30.0,8/14/2020,,Retail,https://betakit.com/shopify-cuts-office-staff-amid-remote-work-shift/,Post-IPO,122.3,Canada,8/14/2020 +InVision,New York City,,8/14/2020,,Product,LinkedIn,Series F,350.2,United States,8/19/2020 +HopSkipDrive,Los Angeles,,8/12/2020,,Transportation,https://dot.la/hopskipdrive-the-ridesharing-app-for-kids-announces-layoffs-2646963481.html,Unknown,45,United States,8/13/2020 +Mozilla,SF Bay Area,250.0,8/11/2020,0.25,Consumer,https://layoffs.fyi/2020/08/12/mozilla-lays-off-250-employees-launches-talent-directory/,Unknown,2.3,United States,8/11/2020 +Eatsy,"Singapore, Non-U.S.",20.0,8/8/2020,1.0,Food,https://www.businesstimes.com.sg/garage/food-ordering-startup-eatsy-shutters-operations-0,Seed,0.9755,Singapore,8/10/2020 +Glossier,New York City,150.0,8/7/2020,0.38,Retail,https://www.glossier.com/blog/retail-update-covid19,Series D,186.4,United States,8/19/2020 +The Appraisal Lane,"Montevideo, Non-U.S.",,8/7/2020,,Transportation,https://layoffs.fyi/2020/08/11/the-appraisal-lane-shuts-down-uruguay-operation-releases-talent-directory/,Seed,1.8,Uruguay,8/11/2020 +Thriver,"Toronto, Non-U.S.",75.0,8/6/2020,0.5,Food,https://betakit.com/platterz-raises-43-8-million-cad-series-b-rebrands-to-thriver-as-company-pivots-post-pandemic/,Series B,53,Canada,8/7/2020 +Vesta,Atlanta,56.0,8/5/2020,,Sales,https://www.americaninno.com/atlanta/roundups/the-atlanta-tech-layoffs-that-happened-this-summer/,Unknown,20,United States,8/6/2020 +Booking.com,"Amsterdam, Non-U.S.",4375.0,7/30/2020,0.25,Travel,https://skift.com/2020/08/04/booking-com-restructuring-will-pare-its-workforce-by-up-to-25-percent/,Acquired,,Netherlands,8/4/2020 +Buy.com / Rakuten,SF Bay Area,87.0,7/30/2020,1.0,Retail,https://techcrunch.com/2020/07/30/rakuten-is-shuttering-the-online-shop-formerly-known-as-buy-com/,Acquired,42.4,United States,7/31/2020 +tZero,New York City,,7/30/2020,,Finance,https://www.businesswire.com/news/home/20200729005299/en/tZERO-CEO-Saum-Noursalehi-Update-Company-Progress,Acquired,472,United States,7/30/2020 +Pared,SF Bay Area,,7/29/2020,,Food,https://layoffs.fyi/list/pared/,Unknown,13,United States,7/31/2020 +Procore,Los Angeles,180.0,7/28/2020,0.09,Construction,https://www.bloomberg.com/news/articles/2020-07-28/software-startup-procore-said-to-cut-180-jobs-ahead-of-ipo,Unknown,649,United States,7/28/2020 +Swiggy,"Bengaluru, Non-U.S.",350.0,7/27/2020,0.05,Food,https://www.livemint.com/companies/news/350-swiggy-employees-lose-their-jobs-in-round-2-of-layoffs-11595951553823.html,Series I,1600,India,7/28/2020 +Zeitgold,"Berlin, Non-U.S.",75.0,7/27/2020,0.72,Finance,https://layoffs.fyi/2020/08/04/bookkeeping-startup-zeitgold-lays-off-75-employees-and-pivots-to-tax-prep-software/,Series B,60.18,Germany,8/3/2020 +Perkbox,"London, Non-U.S.",,7/27/2020,,HR,https://layoffs.fyi/2020/07/27/hr-tech-startup-perkbox-launches-talent-directory-following-layoff/,Unknown,29.7,United Kingdom,7/27/2020 +Checkr,SF Bay Area,64.0,7/23/2020,0.12,HR,https://layoffs.fyi/2020/07/28/checkr-lays-off-64-employees/,Series D,309,United States,7/24/2020 +Sorabel,"Jakarta, Non-U.S.",,7/23/2020,1.0,Retail,https://e27.co/indonesian-e-commerce-platform-sorabel-to-shut-down-by-end-of-july-20200723/,Series B,27,Indonesia,7/24/2020 +LinkedIn,SF Bay Area,960.0,7/21/2020,0.06,Recruiting,https://layoffs.fyi/2020/08/04/linkedin-launches-official-talent-directory-after-laying-off-960-employees/,Acquired,154,United States,7/21/2020 +Lighter Capital,Seattle,22.0,7/20/2020,0.49,Finance,https://www.geekwire.com/2020/seattle-based-alternative-vc-firm-lighter-capital-lays-off-employees/,Series B,15,United States,7/20/2020 +Curefit,"Bengaluru, Non-U.S.",120.0,7/17/2020,,Fitness,https://tech.economictimes.indiatimes.com/news/internet/curefit-cuts-jobs-furloughs-600-staff-in-second-round-of-layoffs-as-business-suffers-amid-lockdown/77013891,Series D,404.6,India,7/17/2020 +Snaptravel,"Toronto, Non-U.S.",,7/16/2020,,Travel,https://www.fastcompany.com/90528345/how-this-travel-startup-became-profitable-during-the-pandemic,Series A,22.4,Canada,7/17/2020 +Optimizely,SF Bay Area,60.0,7/15/2020,0.15,Marketing,https://techcrunch.com/2020/07/15/benchmark-backed-optimizely-confirms-it-has-laid-off-15-percent-of-staff/,Series D,251.2,United States,7/16/2020 +Skyscanner,"Edinburgh, Non-U.S.",300.0,7/14/2020,0.2,Travel,https://layoffs.fyi/2020/08/12/skyscanner-launches-talent-directory-after-laying-off-300-employees/,Acquired,197.2,United Kingdom,7/14/2020 +Vox Media,Washington D.C.,,7/14/2020,,Media,https://www.cnbc.com/2020/07/14/vox-media-preparing-round-of-layoffs-due-to-coronavirus-business-impact.html,Series F,307.6,United States,7/15/2020 +Yelp,SF Bay Area,63.0,7/13/2020,,Consumer,https://www.cnbc.com/2020/07/13/yelp-will-bring-back-most-of-its-1100-furloughed-employees-next-month.html,Post-IPO,56,United States,7/13/2020 +Bizongo,"Mumbai, Non-U.S.",140.0,7/10/2020,,Logistics,https://www.startupnews.fyi/post/bizongo-lays-off-140-employees-to-cut-costs,Series C,70,India,7/13/2020 +Zilingo,"Singapore, Non-U.S.",100.0,7/9/2020,0.12,Retail,https://zilingotrade.com/en-th/blog/BLGCOMPANYANNOUNCEMENT,Series D,307,Singapore,7/9/2020 +PaySense,"Mumbai, Non-U.S.",40.0,7/9/2020,,Finance,https://tech.economictimes.indiatimes.com/news/startups/naspers-owned-payu-lays-off-staff-at-credit-lending-unit-paysense/76872229,Acquired,25.6,India,7/10/2020 +Funding Circle,SF Bay Area,85.0,7/8/2020,,Finance,https://www.altfi.com/article/6790_funding-circle-joins-bounce-back-loan-scheme-as-it-cuts-us-headcount-by-85,Post-IPO,746,United States,7/9/2020 +OnDeck,New York City,,7/8/2020,,Finance,https://debanked.com/2020/07/layoffs-at-ondeck/,Post-IPO,1200,United States,7/13/2020 +The Wing,New York City,56.0,7/1/2020,,Real Estate,https://commercialobserver.com/2020/07/the-wing-lays-off-another-56-employees/,Series C,117,United States,7/9/2020 +Sharethrough,SF Bay Area,18.0,7/1/2020,,Marketing,https://blog.sharethrough.com/post/adapting-to-covid-19-evolving-to-a-unified-revenue-team-at-sharethrough,Series D,38,United States,7/2/2020 +Kongregate,SF Bay Area,12.0,7/1/2020,,Media,https://www.forbes.com/sites/lizlanier/2020/07/01/kongregate-shift-in-focus-brings-layoffs-closes-portal-to-new-games/#148558087323,Series C,19,United States,7/3/2020 +Havenly,Denver,5.0,7/1/2020,,Consumer,https://businessden.com/2020/07/01/havenly-begins-to-rehire-after-pandemic-cuts-wont-reopen-retail-locations/,Series C,57.8,United States,7/2/2020 +G2,Chicago,17.0,6/30/2020,0.05,Marketing,https://www.americaninno.com/chicago/inno-news-chicago/layoffs-at-g2-as-the-tech-company-cuts-costs-during-covid/,Series C,100.8,United States,7/1/2020 +Hired,SF Bay Area,,6/30/2020,,Recruiting,https://www.bizjournals.com/sanfrancisco/news/2020/07/08/ppp-loan-startups-laid-off-employees-bay-area-sf.html,Series D,132,United States,7/9/2020 +Katerra,SF Bay Area,400.0,6/29/2020,0.07,Construction,https://www.theinformation.com/articles/softbank-backed-katerra-lays-off-more-than-400-employees,Series E,1300,United States,6/30/2020 +Bounce,"Bengaluru, Non-U.S.",130.0,6/29/2020,0.22,Transportation,https://inc42.com/buzz/bounce-lays-off-130-employees-as-covid-19-impact-hits-mobility-startup/,Series D,214.2,India,6/30/2020 +Argo AI,"Munich, Non-U.S.",100.0,6/29/2020,,Transportation,https://www.theinformation.com/briefings/58401b,Unknown,3600,Germany,6/29/2020 +Bossa Nova,SF Bay Area,61.0,6/29/2020,,Retail,https://www.post-gazette.com/business/tech-news/2020/06/29/Bossa-Nova-Robotics-autonomous-robots-layoffs-furloughs-terminations/stories/202006290098,Unknown,101.6,United States,6/30/2020 +New Relic,Portland,20.0,6/29/2020,,Infrastructure,https://www.bizjournals.com/portland/news/2020/06/29/layoffs-at-new-relic-as-company-combines-2-enginee.html,Post-IPO,214.5,United States,6/30/2020 +Engine eCommerce,Fayetteville,,6/28/2020,1.0,Retail,https://talkbusiness.net/2020/06/after-raising-millions-fayetteville-startup-headed-by-john-james-goes-dark/,Unknown,4,United States,7/9/2020 +Byton,SF Bay Area,,6/27/2020,,Transportation,https://www.chinatechnews.com/2020/06/27/26636-byton-us-office-to-cut-staff-by-end-of-june,Series C,1200,United States,6/29/2020 +Sprinklr,New York City,,6/25/2020,,Support,https://layoffs.fyi/2020/06/26/official-sprinklr-layoff-list-surfaces/,Series F,228,United States,6/26/2020 +GoDaddy,Austin,451.0,6/24/2020,0.06,Marketing,https://domainnamewire.com/2020/06/24/godaddy-plans-layoffs-and-is-closing-austin-offices/,Post-IPO,,United States,6/25/2020 +Sonos,New York City,174.0,6/24/2020,0.12,Consumer,https://www.cnbc.com/2020/06/24/sonos-says-its-cutting-12percent-of-global-employees-because-of-covid-19.html,Post-IPO,455.2,United States,6/25/2020 +OYO,Dallas,,6/24/2020,,Travel,https://skift.com/2020/06/25/oyo-will-lay-off-most-of-its-furloughed-u-s-employees/,Series F,3200,United States,7/9/2020 +Gojek,"Jakarta, Non-U.S.",430.0,6/23/2020,0.09,Transportation,https://layoffs.fyi/2020/08/06/gojek-creates-talent-directory-following-430-person-layoff/,Series F,4800,Indonesia,6/23/2020 +ScaleFactor,Austin,90.0,6/23/2020,0.9,Finance,https://www.forbes.com/sites/davidjeans/2020/06/23/scalefactor-fintech-startup-shuts-down-bessemer-coatue-canaan/#2bef45cf4901,Series C,103,United States,6/23/2020 +Dark,SF Bay Area,6.0,6/23/2020,1.0,Product,https://layoffs.fyi/2020/06/29/programming-service-dark-releases-layoff-list/,Seed,3,United States,6/29/2020 +Intuit,SF Bay Area,715.0,6/22/2020,0.07,Finance,https://intuitblog.com/news-social/a-message-from-intuit-ceo-sasan-goodarzi-to-intuit-employees/,Post-IPO,18,United States,6/22/2020 +WeWork,"London, Non-U.S.",200.0,6/19/2020,,Real Estate,https://www.wired.co.uk/article/wework-redundancies-uk-restructure,Series H,19500,United Kingdom,6/27/2020 +Atlas Obscura ,New York City,15.0,6/18/2020,,Media,https://www.poynter.org/?locally=atlas-obscura-laid-off-15-including-five-in-editorial-the-company-confirmed-to-poynter,Series B,32,United States,6/23/2020 +Navi,"Bengaluru, Non-U.S.",40.0,6/17/2020,0.25,Finance,https://inc42.com/buzz/sachin-bansals-navi-general-insurance-lays-off-40-employees/,Private Equity,582,India,6/20/2020 +PaisaBazaar,"Gurugram, Non-U.S.",1500.0,6/16/2020,0.5,Finance,https://thetechportal.com/2020/06/16/policybazaar-paisabazaar-lay-offs/,Series G,496,India,6/16/2020 +Grab,"Singapore, Non-U.S.",360.0,6/16/2020,0.05,Transportation,https://layoffs.fyi/2020/06/24/official-grab-layoff-list-released-following-360-person-layoff/,Series I,9900,Singapore,6/16/2020 +Splunk,SF Bay Area,70.0,6/16/2020,0.01,Data,https://www.bloomberg.com/news/articles/2020-06-17/splunk-joins-tech-s-belt-tightening-with-plan-to-shed-staff,Post-IPO,40,United States,6/18/2020 +Redox,Madison,44.0,6/16/2020,0.25,Healthcare,https://theredoxpodcast.podbean.com/e/22-layoffs/,Series C,50,United States,6/23/2020 +Conga,Denver,,6/15/2020,0.11,Data,https://layoffs.fyi/2020/06/23/conga-lays-off-11-following-merger-with-apptus/,Acquired,117,United States,6/23/2020 +Stockwell AI,SF Bay Area,,6/15/2020,1.0,Retail,https://layoffs.fyi/2020/06/18/stockwell-ai-is-shutting-down-on-july-1/,Series B,10,United States,6/16/2020 +Uber,"Amsterdam, Non-U.S.",225.0,6/12/2020,0.25,Transportation,https://www.dutchnews.nl/news/2020/06/uber-cuts-amsterdam-workforce-by-15-some-200-jobs-to-go/,Post-IPO,24700,Netherlands,6/27/2020 +SynapseFI,SF Bay Area,63.0,6/12/2020,0.48,Finance,https://www.forbes.com/sites/jeffkauflin/2020/06/15/fintech-startup-synapse-lays-off-nearly-50-of-full-time-staff/#6a6f57b0300e,Series B,50,United States,6/13/2020 +ScaleFocus,"Sofia, Non-U.S.",120.0,6/11/2020,0.1,Infrastructure,https://seenews.com/news/bulgarias-scalefocus-lays-off-10-of-workforce-report-702279,Unknown,,Bulgaria,6/11/2020 +Branch,New York City,3.0,6/11/2020,0.27,Retail,https://techcrunch.com/2020/06/11/covid-19-nearly-killed-this-office-furniture-startup-turning-to-home-offices-may-save-it/,Seed,2,United States,6/11/2020 +Her Campus Media,Boston,10.0,6/10/2020,0.18,Media,https://www.weny.com/story/42228087/college-life-will-never-be-the-same-this-media-company-is-documenting-the-change,Unknown,,United States,6/10/2020 +Integrate.ai,"Toronto, Non-U.S.",26.0,6/9/2020,,Support,https://integrate.ai/blog/integrateai-restructuring-in-response-to-new-market-realities,Unknown,39.6,Canada,6/30/2020 +The Athletic,SF Bay Area,46.0,6/5/2020,0.08,Media,https://www.axios.com/the-athletic-layoffs-pay-cuts-fa15a80d-47b7-46a5-a08f-3e7eba558f30.html,Series D,139,United States,6/5/2020 +Ethos Life,SF Bay Area,18.0,6/5/2020,0.14,Finance,https://coverager.com/layoffs-at-ethos/,Series C,106,United States,6/6/2020 +Lastline,SF Bay Area,50.0,6/4/2020,0.4,Security,https://techcrunch.com/2020/06/04/vmware-lastline-staff-cuts/,Series C,52,United States,6/4/2020 +Builder,Los Angeles,39.0,6/4/2020,0.14,Product,https://www.businessinsider.com/engineerai-builderai-layoffs-14-percent-staff-2020-6,Series A,29,United States,6/4/2020 +Outdoorsy,SF Bay Area,,6/4/2020,,Transportation,https://techcrunch.com/2020/06/04/as-americans-look-to-escape-this-peer-to-peer-rv-rental-startup-is-happy-to-accommodate-them/,Series C,75,United States,6/4/2020 +Monzo,"London, Non-U.S.",120.0,6/3/2020,0.08,Finance,https://layoffs.fyi/2020/07/21/monzo-launches-layoff-list-amid-multiple-rounds-of-layoffs/,Series F,324,United Kingdom,6/3/2020 +Kitty Hawk,SF Bay Area,70.0,6/3/2020,,Aerospace,https://techcrunch.com/2020/06/03/kitty-hawk-ends-flyer-program-shifts-focus-to-once-secret-autonomous-aircraft/,Unknown,1,United States,6/3/2020 +SpotHero,Chicago,40.0,6/3/2020,0.21,Transportation,https://www.americaninno.com/chicago/inno-news-chicago/spothero-cuts-40-employees-in-second-round-of-pandemic-related-layoffs/,Series D,117,United States,6/3/2020 +Credit Sesame,SF Bay Area,22.0,6/3/2020,0.14,Finance,https://www.businessinsider.com/credit-sesame-layoffs-credit-business-trouble-2020-6,Series F,120,United States,6/4/2020 +Circ,"Berlin, Non-U.S.",100.0,6/2/2020,,Transportation,https://techcrunch.com/2020/06/02/bird-shuts-down-circ-operations-in-middle-east-scraps-as-many-as-10000-scooters/,Acquired,55,Germany,6/3/2020 +Rivian,Detroit,40.0,6/2/2020,0.02,Transportation,https://www.theverge.com/2020/6/2/21278019/rivian-layoffs-new-chief-operating-officer-harley-davidson,Private Equity,3100,United States,6/3/2020 +Fundbox,SF Bay Area,14.0,6/2/2020,0.15,Finance,https://www.geektime.com/following-layoffs-management-pay-cuts-fundbox-raises-another-20-million/,Series C,453,United States,6/2/2020 +Descartes Labs,Santa Fe,12.0,6/2/2020,0.16,Data,https://www.santafenewmexican.com/news/local_news/descartes-labs-seeks-750-000-state-loan-to-make-lease-payments/article_b0f7eeaa-a4e6-11ea-8b9a-f34e580504e1.html,Series B,58,United States,6/3/2020 +MakerBot,New York City,12.0,6/2/2020,,Consumer,Internal memo,Acquired,10,United States,6/2/2020 +Stitch Fix,SF Bay Area,1400.0,6/1/2020,0.18,Retail,https://www.cnbc.com/2020/06/01/stitch-fix-is-laying-off-1400-in-california-18percent-of-workforce.html,Post-IPO,79,United States,6/2/2020 +MakeMyTrip,"Gurugram, Non-U.S.",350.0,6/1/2020,0.1,Travel,https://www.livemint.com/companies/news/covid-19-lockdown-makemytrip-to-lay-off-10-of-its-workforce-as-revenues-hit-11591008074698.html,Post-IPO,548,India,6/3/2020 +CrowdStreet,Portland,24.0,6/1/2020,0.22,Real Estate,https://www.oregonlive.com/silicon-forest/2020/06/crowdstreet-portland-real-estate-funding-startup-lays-off-a-fifth-of-its-staff.html,Series C,24,United States,6/2/2020 +Brex,SF Bay Area,62.0,5/29/2020,0.15,Finance,https://layoffs.fyi/2020/06/01/brex-laid-off-62-employees-to-prioritize-building-over-growing/,Series C,732,United States,5/29/2020 +Loftium,Seattle,32.0,5/29/2020,0.6,Real Estate,https://www.seattletimes.com/business/real-estate/seattle-based-airbnb-rental-startup-loftium-misses-its-own-rent-payments-slashes-staff-as-coronavirus-undercuts-business/,Series A,17,United States,5/29/2020 +BookMyShow,"Mumbai, Non-U.S.",270.0,5/28/2020,0.18,Consumer,https://www.cnbctv18.com/business/270-bookmyshow-employees-either-laid-off-or-furloughed-18-of-total-workforce-impacted-worldwide-6022801.htm,Unknown,224,India,5/28/2020 +TrueCar,Los Angeles,219.0,5/28/2020,0.3,Transportation,https://labusinessjournal.com/news/2020/jun/01/truecar-lays-30-staff/,Post-IPO,340,United States,5/29/2020 +StubHub,SF Bay Area,200.0,5/28/2020,,Consumer,https://layoffs.fyi/2020/06/22/stubhub-shifts-200-of-its-furloughed-employees-into-permanent-layoffs-2/,Acquired,19,United States,6/18/2020 +Culture Amp,"Melbourne, Non-U.S.",36.0,5/28/2020,0.08,HR,https://www.smh.com.au/business/small-business/tech-unicorn-culture-amp-lays-off-staff-as-growth-halves-20200528-p54x9d.html,Series E,157,Australia,5/28/2020 +The Sill,New York City,20.0,5/28/2020,0.25,Retail,https://www.inc.com/emily-canal/the-sill-houseplants-sales-flourish-coronavirus-pandemic.html,Series A,7,United States,5/29/2020 +Instructure,Salt Lake City,150.0,5/27/2020,0.12,Education,https://philonedtech.com/instructure-restructure-significant-layoffs-hitting-canvas-side-of-the-business/,Acquired,89,United States,5/27/2020 +Ebanx,"Curitiba, Non-U.S.",62.0,5/27/2020,0.08,Finance,https://exame.com/pme/comeca-uma-era-mais-pe-no-chao-para-as-startups-diz-fundador-do-ebanx/,Unknown,30,Brazil,6/1/2020 +Uber,Bengaluru,600.0,5/26/2020,0.23,Transportation,https://www.reuters.com/article/us-india-uber-layoffs/uber-cuts-600-jobs-in-india-as-lockdown-hits-business-idUSKBN2320S3,Post-IPO,24700,India,5/26/2020 +Bluprint,Denver,137.0,5/26/2020,1.0,Education,https://businessden.com/2020/05/27/nbcuniversal-shutting-down-bluprint-formerly-known-as-craftsy/,Acquired,108,United States,5/27/2020 +Acorns,Portland,50.0,5/26/2020,,Finance,https://techcrunch.com/2020/05/29/amid-unprecedented-growth-on-its-platform-acorns-cuts-roles-and-shuts-down-an-office/,Unknown,207,United States,5/30/2020 +CarDekho,"Gurugram, Non-U.S.",200.0,5/25/2020,,Transportation,https://entrackr.com/2020/05/exclusive-cardekho-lays-off-200-employees-goes-for-pay-cuts/,Series D,247,India,5/26/2020 +Teamwork,"Cork, Non-U.S.",21.0,5/22/2020,,Other,https://www.thecurrency.news/articles/17754/not-the-time-for-venture-capital-teamwork-rules-out-raising-vc-money-as-tech-valuations-fall,Unknown,,Ireland,5/24/2020 +Cvent,Washington D.C.,400.0,5/21/2020,0.1,Marketing,https://www.eventmanagerblog.com/cvent-layoffs,Acquired,146,United States,5/22/2020 +PickYourTrail,"Chennai, Non-U.S.",70.0,5/21/2020,0.35000000000000003,Travel,https://www.cnbctv18.com/travel/pickyourtrail-realigns-business-will-enter-domestic-travel-market-5968711.htm,Series A,3,India,9/14/2020 +Glitch,New York City,18.0,5/21/2020,0.36,Product,https://www.theverge.com/2020/5/22/21268007/glitch-layoffs-substantial-number-coding-platform-union,Series A,30,United States,5/22/2020 +Kapten / Free Now,"Paris, Non-U.S.",,5/21/2020,,Transportation,https://layoffs.fyi/2020/07/22/french-ride-hailing-startup-kapten-releases-layoff-list/,Acquired,100,France,5/28/2020 +Ola,"Bengaluru, Non-U.S.",1400.0,5/20/2020,0.35000000000000003,Transportation,https://techcrunch.com/2020/05/20/indian-ride-hailing-firm-ola-cuts-1400-jobs/,Series J,3800,India,5/20/2020 +Samsara,SF Bay Area,300.0,5/20/2020,0.18,Logistics,https://layoffs.fyi/2020/05/21/samsara-lays-off-300-employees-launches-public-alumni-directory/,Series F,530,United States,5/20/2020 +Stay Alfred,Spokane,221.0,5/20/2020,1.0,Travel,https://www.spokanejournal.com/local-news/stay-alfred-closes-its-doors-permanently/,Series B,62,United States,5/21/2020 +SoFi,SF Bay Area,112.0,5/20/2020,0.07,Finance,https://www.businessinsider.com/sofi-cut-7-percent-staff-quarterely-performance-reviews-2020-5,Private Equity,2500,United States,5/20/2020 +ShareChat,"Bengaluru, Non-U.S.",101.0,5/20/2020,0.25,Marketing,https://economictimes.indiatimes.com/small-biz/startups/newsbuzz/sharechat-lays-off-101-employees-as-advertising-market-tanks/articleshow/75838995.cms,Series D,222,India,5/20/2020 +Intercom,SF Bay Area,39.0,5/20/2020,0.06,Support,https://layoffs.fyi/2020/07/09/intercom-creates-official-layoff-list-after-laying-off-39/,Series D,240,United States,5/20/2020 +Livspace,"Bengaluru, Non-U.S.",450.0,5/19/2020,0.15,Retail,https://tech.economictimes.indiatimes.com/news/startups/livspace-lays-off-450-employees-as-lockdown-hurts-operations/75823519,Series D,157,India,5/19/2020 +Pollen,"London, Non-U.S.",69.0,5/19/2020,0.31,Travel,https://techcrunch.com/2020/05/19/pollen-layoffs-and-furloughs/,Series B,88,United Kingdom,5/19/2020 +Dotscience,"London, Non-U.S.",10.0,5/19/2020,1.0,Product,https://layoffs.fyi/2020/05/22/devops-startup-dotscience-shuts-down/,Unknown,,United Kingdom,5/20/2020 +Divvy,Salt Lake City,,5/19/2020,,Finance,LinkedIn,Series C,252,United States,5/19/2020 +Uber,SF Bay Area,3000.0,5/18/2020,0.13,Transportation,https://layoffs.fyi/2020/05/18/uber-lays-off-3000-more-employees-on-top-of-the-3700-laid-off-earlier-this-month/,Post-IPO,24700,United States,5/18/2020 +Agoda,"Singapore, Non-U.S.",1500.0,5/18/2020,0.25,Travel,https://layoffs.fyi/2020/05/24/agoda-laid-off-1500-employees-launches-public-alumni-directory/,Acquired,,Singapore,5/19/2020 +Swiggy,"Bengaluru, Non-U.S.",1100.0,5/18/2020,0.14,Food,https://www.nytimes.com/reuters/2020/05/18/technology/18reuters-india-swiggy-layoffs.html,Series I,1600,India,5/18/2020 +WeWork,"New Delhi, Non-U.S.",100.0,5/18/2020,0.2,Real Estate,https://www.newindianexpress.com/business/2020/may/18/tough-step-needed-for-sustainable-structure-wework-india-lays-off-20-per-cent-staff-amid-covid-19-2144959.html,Series H,19500,India,5/19/2020 +Rubrik,SF Bay Area,57.0,5/18/2020,,Infrastructure,https://www.bizjournals.com/sanfrancisco/news/2020/04/16/exclusive-a-comprehensive-guide-to-locallayoffs.html,Series E,553,United States,6/25/2020 +Intapp,SF Bay Area,45.0,5/18/2020,0.05,Legal,https://news.bloomberglaw.com/us-law-week/intapp-cuts-5-of-workforce-due-to-coronavirus-crisis,Private Equity,,United States,5/19/2020 +Checkmarx,"Tel Aviv, Non-U.S.",,5/18/2020,,Security,"https://www.calcalistech.com/ctech/articles/0,7340,L-3824253,00.html",Acquired,92,Israel,5/23/2020 +Datera,SF Bay Area,,5/18/2020,0.1,Infrastructure,https://blocksandfiles.com/2020/05/18/datera-funding-round-layoffs/,Series C,63,United States,5/18/2020 +Magicbricks,"Noida, Non-U.S.",250.0,5/17/2020,,Real Estate,https://www.livemint.com/companies/start-ups/job-losses-mount-in-small-startups-unicorns-11589738073416.html,Unknown,300,India,5/19/2020 +Zomato,"Gurugram, Non-U.S.",520.0,5/15/2020,0.13,Food,https://layoffs.fyi/2020/06/18/zomato-layoff-list-continues-trend-of-company-launched-talent-directories/,Series J,914,India,5/15/2020 +Lendingkart,"Ahmedabad, Non-U.S.",500.0,5/15/2020,0.5,Finance,https://officechai.com/news/lendingkart-lays-off-500-employees-50-workforce-sources/,Unknown,200,India,5/15/2020 +Lattice,SF Bay Area,16.0,5/15/2020,0.1,HR,LinkedIn,Series C,49,United States,5/29/2020 +Masse,New York City,,5/15/2020,1.0,Retail,https://shopmasse.com/home/index.html,Seed,3,United States,5/20/2020 +Cruise,SF Bay Area,150.0,5/14/2020,0.08,Transportation,https://www.theverge.com/2020/5/14/21259001/cruise-gm-layoff-self-driving-unit-recruiting-product-design,Acquired,5300,United States,5/14/2020 +Quartz,New York City,80.0,5/14/2020,0.4,Media,https://www.nytimes.com/2020/05/14/business/media/quartz-to-lay-off-80-employees.html,Acquired,,United States,5/14/2020 +Integral Ad Science,New York City,70.0,5/14/2020,0.1,Marketing,https://www.wsj.com/articles/ad-verification-firm-integral-ad-science-laying-off-nearly-10-of-workforce-11589481652,Acquired,116,United States,5/14/2020 +Ridecell,SF Bay Area,35.0,5/14/2020,0.15,Transportation,https://layoffs.fyi/2020/05/19/sf-based-ridecell-laid-off-35-employees-half-of-whom-are-engineers/,Series B,73,United States,5/19/2020 +Veem,SF Bay Area,30.0,5/14/2020,,Finance,https://www.economist.com/business/2020/05/16/silicon-valley-in-the-pandemic,Unknown,69,United States,5/15/2020 +Sift,SF Bay Area,,5/14/2020,,Security,LinkedIn,Series D,106,United States,5/29/2020 +TicketSwap,"Amsterdam, Non-U.S.",,5/14/2020,0.3,Consumer,https://www.iq-mag.net/2020/05/ticketswap-lays-off-30-staff/,Unknown,8,Netherlands,7/13/2023 +Workfront,Salt Lake City,,5/14/2020,,Marketing,LinkedIn,Series C,375,United States,5/14/2020 +Deliv,SF Bay Area,669.0,5/13/2020,1.0,Retail,https://www.mercurynews.com/2020/05/15/ccalifornia-unemployment-layoff-rock-delivery-startup-ymca-uber-ross-ui-edd-tech-job-economy/,Series C,80,United States,5/7/2020 +Mercos,"Joinville, Non-U.S.",51.0,5/13/2020,0.4,Sales,https://www.linkedin.com/pulse/decis%C3%A3o-mais-dif%C3%ADcil-dos-%C3%BAltimos-10-anos-tiago-brandes/,Unknown,2,Brazil,5/13/2020 +Kickstarter,New York City,25.0,5/13/2020,0.18,Finance,https://www.theverge.com/2020/5/13/21257585/kickstarter-layoffs-employees-union-negotiations-severance,Unknown,10,United States,5/13/2020 +Intersect,"Toronto, Non-U.S.",19.0,5/13/2020,0.11,Product,https://betakit.com/intersect-ceo-departs-company-following-recent-layoffs/,Acquired,,Canada,5/13/2020 +Mode Analytics,SF Bay Area,17.0,5/13/2020,,Data,https://www.linkedin.com/posts/dereksteer_today-we-made-the-difficult-decision-to-part-activity-6666425220007628800-Nneq/,Series C,46,United States,5/13/2020 +BetterCloud,New York City,,5/13/2020,,Security,LinkedIn,Series E,111,United States,5/14/2020 +WeFit,"Hanoi, Non-U.S.",,5/13/2020,1.0,Fitness,https://beamstart.com/content/127302/Vietnamese_startup_WeFit_files_for_bankruptcy,Seed,1,Vietnam,5/14/2020 +Zymergen ,SF Bay Area,,5/13/2020,0.1,Other,LinkedIn,Series C,574,United States,5/29/2020 +Stone,"Sao Paulo, Non-U.S.",1300.0,5/12/2020,0.2,Finance,https://www.reuters.com/article/us-stoneco-layoff/brazilian-card-processor-stoneco-lays-off-20-of-workforce-1300-employees-idUSKBN22O31N,Post-IPO,,Brazil,5/13/2020 +Zeus Living,SF Bay Area,73.0,5/12/2020,0.5,Real Estate,https://www.businessinsider.com/zeus-living-cuts-50-of-staff-after-raising-a-downround-2020-5,Series B,79,United States,5/12/2020 +Mixpanel,SF Bay Area,65.0,5/12/2020,0.19,Data,https://www.bizjournals.com/sanfrancisco/news/2020/05/12/sf-analytics-company-yc-graduate-cuts-65-obs.html?iana=hpmvp_sfbt_news_headline,Series B,77,United States,5/13/2020 +Hireology,Chicago,36.0,5/12/2020,0.17,Recruiting,https://www.americaninno.com/chicago/inno-news-chicago/hireology-lays-off-17-of-its-staff/,Series D,52,United States,5/13/2020 +Top Hat,"Toronto, Non-U.S.",16.0,5/12/2020,0.03,Education,https://betakit.com/top-hat-restructures-makes-staff-reductions-as-covid-19-affects-higher-education/,Series D,104,Canada,5/12/2020 +Datto,Norwalk,,5/12/2020,,Infrastructure,https://www.channele2e.com/business/talent/data-protection-staff-cuts/,Acquired,100,United States,5/13/2020 +Petal,New York City,,5/12/2020,,Finance,https://layoffs.fyi/2020/05/18/credit-card-startup-petal-conducts-layoff/,Series B,47,United States,5/15/2020 +Revolut,"London, Non-U.S.",60.0,5/11/2020,0.03,Finance,https://www.fnlondon.com/articles/digital-bank-revolut-just-cut-about-60-workers-as-covid-19-crisis-bites-20200511,Series D,837,United Kingdom,5/20/2020 +Cadre,New York City,28.0,5/11/2020,0.25,Real Estate,https://layoffs.fyi/2020/05/19/real-estate-investing-startup-cadre-laid-off-28-employees/,Series C,133,United States,5/11/2020 +N26,New York City,9.0,5/8/2020,0.01,Finance,https://financefwd.com/de/n26-usa-kuendigungen/,Series D,782,United States,5/12/2020 +Jump,New York City,500.0,5/7/2020,1.0,Transportation,https://www.nytimes.com/2020/05/07/technology/the-results-are-in-for-the-sharing-economy-they-are-ugly.html,Acquired,11,United States,5/8/2020 +Glassdoor,SF Bay Area,300.0,5/7/2020,0.3,Recruiting,https://www.businessinsider.com/glassdoor-lays-off-300-30-staff-due-to-covid-19-2020-5,Acquired,204,United States,5/7/2020 +Numbrs,"Zurich, Non-U.S.",62.0,5/7/2020,0.5,Finance,https://financefwd.com/de/finanzierungsrunde-geplatzt-numbrs/,Series B,78,Switzerland,5/8/2020 +Flywire,Boston,60.0,5/7/2020,0.12,Finance,https://www.americaninno.com/boston/inno-news-boston/fintech-startup-flywire-downsizes-12-percent-of-workforce/,Series E,263,United States,5/7/2020 +SalesLoft,Atlanta,55.0,5/7/2020,,Sales,https://www.protocol.com/salesloft-shot-money-from-guns-layoffs-coronavirus,Series D,145,United States,5/8/2020 +Tally,SF Bay Area,28.0,5/7/2020,0.23,Finance,https://layoffs.fyi/2020/05/13/credit-card-automation-startup-tally-laid-off-28-employees/,Series C,92,United States,5/11/2020 +Airy Rooms,"Jakarta, Non-U.S.",,5/7/2020,1.0,Travel,https://www.thejakartapost.com/news/2020/05/08/hotel-start-up-airy-closes-permanently-due-to-pandemic.html,Unknown,,Indonesia,6/4/2020 +Uber,SF Bay Area,3700.0,5/6/2020,0.14,Transportation,https://layoffs.fyi/2020/05/12/uber-laid-off-3700-employees-with-more-expected/,Post-IPO,24700,United States,5/6/2020 +Validity,Boston,130.0,5/6/2020,0.33,Data,https://www.americaninno.com/boston/inno-news-boston/customer-data-quality-startup-validity-lays-off-130/,Private Equity,,United States,5/7/2020 +Flatiron School,New York City,100.0,5/6/2020,,Education,https://www.businessinsider.com/weworks-flatiron-school-lays-off-workers-2020-5,Acquired,15,United States,5/7/2020 +Rubicon Project,Los Angeles,50.0,5/6/2020,0.08,Marketing,https://www.adexchanger.com/platforms/post-merger-rubicon-project-cuts-8-of-staff/,Post-IPO,60,United States,5/7/2020 +Segment,SF Bay Area,50.0,5/6/2020,0.1,Data,https://www.businessinsider.com/segment-10-percent-layoffs-downturn-2020-5,Series D,283,United States,5/7/2020 +OPay,"Lagos, Non-U.S.",,5/6/2020,0.7000000000000001,Finance,https://weetracker.com/2020/05/06/opay-has-fired-staff-and-lost-top-executives/,Series B,170,Nigeria,5/15/2020 +ThoughtSpot,SF Bay Area,,5/6/2020,,Data,https://www.businessinsider.com/tech-companies-covid19-layoffs-furloughs-benefits-2020-5,Series E,743,United States,5/8/2020 +Airbnb,SF Bay Area,1900.0,5/5/2020,0.25,Travel,https://layoffs.fyi/2020/05/07/airbnb-laid-off-1900-employees/,Private Equity,5400,United States,5/5/2020 +Juul,SF Bay Area,900.0,5/5/2020,0.3,Consumer,https://layoffs.fyi/2020/06/03/juul-layoff-list-emerges-1550-employees-have-been-cut-in-the-past-year/,Unknown,1500,United States,5/6/2020 +Andela,New York City,135.0,5/5/2020,0.1,Recruiting,https://layoffs.fyi/2020/07/08/andela-layoff-list-emerges/,Series D,181,United States,5/6/2020 +Stack Overflow,New York City,40.0,5/5/2020,0.15,Recruiting,https://www.businessinsider.com/stack-overflow-reduces-workforce-furloughs-layoffs-2020-5,Series D,68,United States,5/7/2020 +Pipedrive,"Tallinn, Non-U.S.",31.0,5/5/2020,,Sales,https://news.err.ee/1086024/pipedrive-laying-off-14-employees-in-tallinn-tartu-offices,Series C,90,Estonia,5/7/2020 +Workable,Boston,25.0,5/5/2020,0.1,Recruiting,https://www.insider.gr/epiheiriseis/tehnologia/136195/se-mazikes-apolyseis-prohora-i-workable,Series C,84,United States,5/6/2020 +Cloudera,SF Bay Area,,5/5/2020,,Infrastructure,https://www.bizjournals.com/sanjose/news/2020/05/06/cloudera-layoffs-cldr.html,Post-IPO,1000,United States,5/7/2020 +Handshake,SF Bay Area,,5/5/2020,,Recruiting,LinkedIn,Series C,74,United States,5/10/2020 +League,"Toronto, Non-U.S.",,5/5/2020,,Healthcare,https://www.linkedin.com/posts/mserbinis_like-so-many-other-businesses-around-the-activity-6663604606347550722-9KUA,Unknown,76,Canada,5/7/2020 +Curefit,"Bengaluru, Non-U.S.",800.0,5/4/2020,0.16,Fitness,https://www.reuters.com/article/us-curefit-jobs/fitness-group-cure-fit-lays-off-employees-mulls-all-digital-move-sources-idUSKBN22G1WI,Series D,404,India,5/4/2020 +Careem,"Dubai, Non-U.S.",536.0,5/4/2020,0.31,Transportation,https://www.thenational.ae/business/economy/dubai-s-careem-cuts-536-jobs-as-lockdowns-hit-ride-hailing-across-middle-east-1.1014784,Acquired,771,United Arab Emirates,5/4/2020 +Oriente,"Hong Kong, Non-U.S.",400.0,5/4/2020,0.2,Finance,https://www.dealstreetasia.com/stories/oriente-lay-off-workforce-187008/,Series B,175,Hong Kong,5/5/2020 +Veriff,"Tallinn, Non-U.S.",63.0,5/4/2020,0.21,Security,https://news.err.ee/1085714/estonian-id-verification-company-veriff-to-lay-off-63-staff,Series A,7,Estonia,5/5/2020 +Element AI,"Montreal, Non-U.S.",62.0,5/4/2020,0.15,Other,https://www.theglobeandmail.com/business/article-element-ai-cuts-staff-adds-senior-executives-as-it-attempts-to-live/,Series B,257,Canada,5/6/2020 +Deputy,"Sydney, Non-U.S.",60.0,5/4/2020,0.3,HR,https://www.afr.com/young-rich/young-rich-lister-shifts-gears-to-survive-20200403-p54gty,Series B,106,Australia,5/18/2020 +Loopio,"Toronto, Non-U.S.",11.0,5/4/2020,0.08,Sales,https://betakit.com/loopio-lays-off-11-staff-as-it-sees-increased-scrutiny-from-buyers-during-pandemic/,Series A,11,Canada,5/7/2020 +Castlight Health,SF Bay Area,,5/4/2020,0.13,Healthcare,LinkedIn,Post-IPO,184,United States,5/10/2020 +Trivago,"Dusseldorf, Non-U.S.",,5/4/2020,,Travel,https://skift.com/2020/05/04/trivago-looks-to-reorganize-with-significant-job-cuts/,Acquired,55,Germany,5/7/2020 +Trax,"Tel Aviv, Non-U.S.",120.0,5/3/2020,0.1,Retail,"https://www.calcalistech.com/ctech/articles/0,7340,L-3815332,00.html",Series D,386,Israel,5/17/2020 +LiveTiles,New York City,50.0,5/3/2020,,Other,https://medium.com/@ErikRalston/livetiles-time-to-say-goodbye-d86bfb28a93,Post-IPO,46,United States,5/9/2020 +OYO,"London, Non-U.S.",150.0,5/1/2020,,Travel,https://www.yahoo.com/lifestyle/coronavirus-covid-19-oyo-hotels-uk-redundancies-exclusive-155109993.html,Series F,2400,United Kingdom,5/4/2020 +Namely,New York City,110.0,5/1/2020,0.4,HR,https://layoffs.fyi/2020/05/11/namely-laid-off-160-employees-citing-challenges-faced-by-its-smb-customers/,Series E,217,United States,5/2/2020 +Culture Trip,"London, Non-U.S.",95.0,5/1/2020,0.32,Media,https://www.businessinsider.com/culture-trip-layoffs-2020-5?,Series B,102,United Kingdom,5/1/2020 +Sandbox VR,SF Bay Area,80.0,5/1/2020,0.8,Consumer,https://layoffs.fyi/2020/05/08/sandbox-vr-laid-off-its-engineering-team/,Series A,82,United States,5/1/2020 +Virtudent,Boston,70.0,5/1/2020,,Healthcare,https://www.americaninno.com/boston/inno-news-boston/teledentisty-startup-virtudent-downsizes-amid-coronavirus-crisis/,Series A,10,United States,5/1/2020 +Monese,"Lisbon, Non-U.S.",35.0,5/1/2020,,Finance,https://www.altfi.com/article/6531_exclusive-monese-looking-to-close-lisbon-and-berlin-offices-with-layoffs-across-the-company,Unknown,80,Portugal,6/1/2020 +TheSkimm,New York City,26.0,5/1/2020,0.2,Media,https://www.wsj.com/articles/theskimm-cuts-20-of-staff-amid-coronavirus-pandemic-11588362569,Series C,28,United States,5/2/2020 +Automatic,SF Bay Area,,5/1/2020,1.0,Transportation,https://techcrunch.com/2020/05/01/smart-driving-assistant-automatic-is-shutting-down/,Acquired,24,United States,5/1/2020 +Flynote,"Bengaluru, Non-U.S.",,5/1/2020,,Travel,https://www.livemint.com/companies/start-ups/covid-19-impact-sequoia-backed-travel-startup-flynote-lays-off-employees-11588308775639.html,Seed,1,India,5/7/2020 +Bullhorn,Boston,100.0,4/30/2020,,Sales,https://layoffs.fyi/2020/05/05/bullhorn-laid-off-100-employees/,Acquired,32,United States,5/2/2020 +Care.com,Boston,81.0,4/30/2020,,Consumer,https://www.bloomberg.com/news/articles/2020-04-30/iac-to-cut-81-care-com-employees-in-restructuring-after-deal,Acquired,156,United States,5/1/2020 +AirMap,Los Angeles,,4/30/2020,,Aerospace,https://layoffs.fyi/2020/05/26/drone-startup-airmap-conducts-layoff/,Unknown,75,United States,5/2/2020 +Cohesity,SF Bay Area,,4/30/2020,,Data,https://www.bizjournals.com/sanjose/news/2020/05/01/cohesity-job-cuts.html,Series E,660,United States,5/1/2020 +Fandom,SF Bay Area,,4/30/2020,0.14,Media,https://community.fandom.com/wiki/User_blog:Perkinsmt/Fandom_Staffing_Update,Series E,145,United States,5/1/2020 +PicoBrew,Seattle,,4/30/2020,1.0,Food,https://thespoon.tech/rest-in-peace-picobrew/,Series A,15,United States,5/1/2020 +Lyft,SF Bay Area,982.0,4/29/2020,0.17,Transportation,https://layoffs.fyi/2020/04/30/lyft-laid-off-982-employees/,Post-IPO,4900,United States,4/29/2020 +WeWork,SF Bay Area,300.0,4/29/2020,,Real Estate,https://news.crunchbase.com/news/wework-lays-off-staff-as-part-of-a-realignment/,Series H,2250,United States,4/28/2020 +Kayak / OpenTable,Stamford,160.0,4/29/2020,0.08,Travel,https://skift.com/2020/04/29/kayak-and-opentable-layoffs-and-furloughs-impact-400-employees/,Acquired,229,United States,4/30/2020 +Kitopi,New York City,124.0,4/29/2020,,Food,https://commercialobserver.com/2020/04/ghost-kitchen-kitopi-cuts-124-new-york-city-employees/,Series B,89,United States,4/29/2020 +Lime,SF Bay Area,80.0,4/29/2020,0.13,Transportation,https://layoffs.fyi/2020/05/04/lime-laid-off-80-employees/,Series D,765,United States,4/29/2020 +Transfix,New York City,24.0,4/29/2020,0.1,Logistics,https://www.freightwaves.com/news/breaking-transfix-lays-off-10-of-its-staff,Series D,128,United States,4/29/2020 +Yoco,"Cape Town, Non-U.S.",,4/29/2020,,Finance,https://disrupt-africa.com/2020/04/sa-fintech-startup-yoco-to-retrench-staff-as-covid-19-impacts-revenues/,Series B,23,South Africa,5/15/2020 +TripAdvisor,Boston,900.0,4/28/2020,0.25,Travel,https://layoffs.fyi/2020/04/30/tripadvisor-laid-off-900-employees/,Post-IPO,3,United States,4/28/2020 +Renmoney,"Lagos, Non-U.S.",391.0,4/28/2020,0.5,Finance,https://techcabal.com/2020/04/28/tech-startups-recession/,Unknown,,Nigeria,5/15/2020 +Deliveroo,"London, Non-U.S.",367.0,4/28/2020,0.15,Food,https://layoffs.fyi/2020/06/24/deliveroo-layoff-list-showcases-over-100-of-its-global-employees/,Series G,1500,United Kingdom,4/28/2020 +App Annie,SF Bay Area,80.0,4/28/2020,0.18,Data,https://www.gamesindustry.biz/articles/2020-04-28-app-annie-lays-off-a-small-fraction-of-its-workforce,Unknown,156,United States,4/28/2020 +OpenX,Los Angeles,35.0,4/28/2020,0.15,Marketing,https://www.adexchanger.com/platforms/openx-cuts-staff-hours-and-executive-pay-in-response-to-reduced-marketer-spend/,Unknown,70,United States,4/29/2020 +PayJoy,SF Bay Area,27.0,4/28/2020,0.25,Finance,https://layoffs.fyi/2020/05/27/exclusive-fintech-startup-payjoy-laid-off-23-employees/,Series B,71,United States,5/27/2020 +Shipsi,Los Angeles,20.0,4/28/2020,0.5,Retail,https://dot.la/shipsi-los-angeles-layoffs-2645859647.html,Seed,2,United States,4/28/2020 +Desktop Metal,Boston,,4/28/2020,,Other,https://www.americaninno.com/boston/inno-news-boston/desktop-metal-lays-off-staff-amid-coronavirus-disruption/,Series E,436,United States,4/29/2020 +Migo,SF Bay Area,,4/28/2020,0.25,Finance,https://www.migo.money/migos-response-to-covid-19/,Series B,37,United States,5/29/2020 +Automation Anywhere,SF Bay Area,260.0,4/27/2020,0.1,Other,https://siliconangle.com/2020/04/27/automation-anywhere-lays-off-tenth-workforce-due-covid-19/,Series B,840,United States,4/27/2020 +JetClosing,Seattle,20.0,4/27/2020,0.2,Real Estate,https://www.nytimes.com/2020/04/27/technology/startups-sba-loans-backlash.html,Series A,24,United States,4/28/2020 +Qwick,Phoenix,,4/27/2020,0.7000000000000001,Recruiting,https://www.nytimes.com/2020/04/27/technology/startups-sba-loans-backlash.html,Seed,4,United States,4/28/2020 +OYO,"Sao Paulo, Non-U.S.",500.0,4/25/2020,,Travel,https://headtopics.com/br/oyo-demite-centenas-no-brasil-contaazul-enxuga-um-terco-do-time-link-estad-o-12623044,Series F,2400,Brazil,5/11/2020 +Stoqo,"Jakarta, Non-U.S.",250.0,4/25/2020,1.0,Food,https://www.bloomberg.com/news/articles/2020-04-29/indonesian-startup-stoqo-becomes-latest-casualty-of-the-virus,Series A,,Indonesia,4/26/2020 +Submittable,Missoula,30.0,4/25/2020,0.2,Other,https://layoffs.fyi/2020/05/15/submittable-laid-off-30-employees-as-university-clients-shut-down-operations/,Series B,17,United States,5/14/2020 +Divergent 3D,Los Angeles,57.0,4/24/2020,0.36,Transportation,https://techcrunch.com/2020/04/24/manufacturing-startup-divergent-3d-reduces-staff-by-one-third/,Series B,88,United States,4/24/2020 +Ada Support,"Toronto, Non-U.S.",36.0,4/24/2020,0.23,Support,https://betakit.com/ada-support-lays-off-23-percent-of-staff-amid-uncertainty-caused-by-pandemic/,Series B,60,Canada,4/24/2020 +UPshow,Chicago,19.0,4/24/2020,0.3,Marketing,https://www.chicagobusiness.com/john-pletz-technology/what-covid-19-means-chicagos-tech-sector,Series A,7,United States,4/25/2020 +Lighter Capital,Seattle,18.0,4/24/2020,0.22,Finance,https://www.geekwire.com/2020/seattle-investment-company-lighter-capital-trims-staff-preserve-runway/,Series B,15,United States,4/27/2020 +Horizn Studios,"Berlin, Non-U.S.",15.0,4/24/2020,0.25,Travel,https://www.deutsche-startups.de/2020/04/24/horizn-studios-sanierung/,Series B,30,Germany,4/27/2020 +Welkin Health,SF Bay Area,10.0,4/24/2020,0.33,Healthcare,https://nypost.com/2020/09/13/welkin-health-startup-cut-staff-three-days-before-ppp-loan/,Series B,29,United States,9/16/2020 +Jiobit,Chicago,6.0,4/24/2020,0.21,Consumer,https://www.chicagobusiness.com/john-pletz-technology/what-covid-19-means-chicagos-tech-sector,Unknown,12,United States,4/25/2020 +TutorMundi,"Sao Paulo, Non-U.S.",4.0,4/24/2020,1.0,Education,Company executive,Series A,2,Brazil,5/3/2020 +Cheddar,New York City,,4/24/2020,,Media,https://www.thewrap.com/cheddar-permanently-shuts-down-los-angeles-studio-amid-mass-layoffs/,Acquired,54,United States,4/30/2020 +GoCardless,"London, Non-U.S.",,4/24/2020,,Finance,https://medium.com/@hirokitakeuchi/managing-our-costs-through-covid-19-6fe4e0a12e2d,Series E,122,United Kingdom,4/28/2020 +StockX,Detroit,100.0,4/23/2020,0.12,Retail,https://www.inputmag.com/style/stockx-layoffs-12-percent-staff-cutting-costs-profit,Series C,160,United States,4/24/2020 +Zenefits,SF Bay Area,87.0,4/23/2020,0.15,HR,https://www.businessinsider.com/coronavirus-hr-startup-zenefits-lays-off-15-percent-staff-2020-4,Series C,583,United States,4/24/2020 +Sisense,New York City,80.0,4/23/2020,0.09,Data,"https://www.calcalistech.com/ctech/articles/0,7340,L-3810192,00.html?path=5211.Ctech-5220.ctech.News",Series F,274,United States,4/23/2020 +Oscar Health,New York City,70.0,4/23/2020,0.05,Healthcare,https://www.bloomberg.com/news/articles/2020-04-24/white-house-linked-oscar-health-laying-off-5-of-staff,Unknown,1300,United States,4/24/2020 +Simon Data,New York City,6.0,4/23/2020,,Marketing,Internal memo,Series C,68,United States,5/15/2020 +Convoy,Seattle,,4/23/2020,0.01,Logistics,https://www.geekwire.com/2020/convoy-leans-technology-seattle-digital-freight-startup-navigates-volatile-trucking-industry/,Series D,665,United States,4/30/2020 +PowerReviews,Chicago,,4/23/2020,,Retail,LinkedIn,Acquired,78,United States,4/27/2020 +Singular,SF Bay Area,,4/23/2020,,Marketing,"https://www.calcalistech.com/ctech/articles/0,7340,L-3810192,00.html?path=5211.Ctech-5220.ctech.News",Series B,50,United States,4/23/2020 +Magic Leap,Miami,1000.0,4/22/2020,0.5,Consumer,https://layoffs.fyi/2020/04/27/magic-leap-laid-off-1000-employees/,Series E,2600,United States,4/22/2020 +When I Work,Minneapolis,55.0,4/22/2020,0.35000000000000003,HR,https://www.americaninno.com/minne/inno-news-minne/after-long-period-of-growth-when-i-work-cuts-35-of-minneapolis-staff/,Series B,24,United States,4/23/2020 +Ike,SF Bay Area,10.0,4/22/2020,0.14,Transportation,https://www.theinformation.com/briefings/59d773,Series A,52,United States,4/22/2020 +Airy Rooms,"Jakarta, Non-U.S.",,4/22/2020,0.7000000000000001,Travel,https://www.techinasia.com/airy-cease-operations,Unknown,,Indonesia,5/10/2020 +Clearbit,SF Bay Area,,4/22/2020,,Data,https://layoffs.fyi/2020/04/28/clearbit-conducted-a-layoff/,Series A,17,United States,4/25/2020 +ExtraHop,Seattle,,4/22/2020,,Security,https://www.geekwire.com/2020/tech-startup-layoffs-seattle-based-security-company-extrahop-cuts-staff/,Series C,61,United States,4/23/2020 +Nearmap,"Sydney, Non-U.S.",,4/22/2020,0.1,Construction,https://www.fnarena.com/index.php/2020/04/22/nearmap-prepares-for-weak-conditions/,Post-IPO,15,Australia,5/10/2020 +Swiggy,"Bengaluru, Non-U.S.",800.0,4/21/2020,,Food,https://entrackr.com/2020/04/exclusive-swiggy-to-lay-off-cloud-kitchen-staff-shuts-down-kitchens/,Series I,1600,India,4/22/2020 +Paytm,"New Delhi, Non-U.S.",500.0,4/21/2020,,Finance,https://hrnxt.com/news/paytm-to-lay-off-about-500-employees-after-a-performance-review/17875/2020/04/21/,Unknown,2200,India,4/22/2020 +Lending Club,SF Bay Area,460.0,4/21/2020,0.3,Finance,https://www.cnbc.com/2020/04/21/lendingclub-cuts-30percent-of-workforce-as-covid-19-dampens-demand-for-loans.html,Post-IPO,392,United States,4/21/2020 +Houzz,SF Bay Area,155.0,4/21/2020,0.1,Consumer,https://techcrunch.com/2020/04/21/houzz-lays-off-155-employees-cuts-executive-salaries/,Series E,613,United States,4/21/2020 +Casper,New York City,78.0,4/21/2020,0.21,Retail,https://www.fastcompany.com/90494129/breaking-casper-lays-off-78-corporate-employees-winds-down-europe-business,Post-IPO,339,United States,4/21/2020 +RealSelf,Seattle,40.0,4/21/2020,0.13,Healthcare,https://www.geekwire.com/2020/cosmetic-treatment-review-startup-realself-cuts-staff-elective-medical-procedures-put-hold/,Series B,42,United States,4/22/2020 +Freshbooks,"Toronto, Non-U.S.",38.0,4/21/2020,0.09,Finance,https://betakit.com/freshbooks-reduces-headcount-by-9-ceo-says-company-remains-in-growth-mode-despite-covid-19/,Series B,75,Canada,4/22/2020 +Patreon,SF Bay Area,30.0,4/21/2020,0.13,Media,https://techcrunch.com/2020/04/21/patreon-lays-off-13-of-workforce/,Series D,165,United States,4/21/2020 +Lambda School,SF Bay Area,19.0,4/21/2020,,Education,https://techcrunch.com/2020/04/22/lambda-school-cuts-staff-and-exec-pay-amid-market-uncertainty/,Series B,48,United States,4/22/2020 +Politico / Protocol,Washington D.C.,13.0,4/21/2020,,Media,https://www.niemanlab.org/2020/04/protocol-11-weeks-into-life-is-already-laying-off-a-big-chunk-of-its-staff/,Unknown,,United States,4/22/2020 +Bringg,"Tel Aviv, Non-U.S.",10.0,4/21/2020,0.1,Logistics,"https://www.calcalistech.com/ctech/articles/0,7340,L-3809651,00.html",Series D,84,Israel,4/23/2020 +Klook,"Hong Kong, Non-U.S.",300.0,4/20/2020,0.15,Travel,https://layoffs.fyi/2020/08/09/asian-travel-startup-klook-releases-talent-directory/,Series D,521,Hong Kong,5/6/2020 +ConsenSys,New York City,91.0,4/20/2020,0.14,Crypto,https://www.coindesk.com/new-layoffs-hit-ethereum-incubator-consensys,Unknown,10,United States,4/21/2020 +GumGum,Los Angeles,90.0,4/20/2020,0.25,Marketing,https://www.businessinsider.com/gumgum-lays-off-25-of-employees-citing-the-coronavirus-impact-2020-4,Series D,58,United States,4/24/2020 +Kueski,"Guadalajara, Non-U.S.",90.0,4/20/2020,0.3,Finance,https://elceo.com/tecnologia/fintech-de-prestamos-en-linea-sufriran-estragos-por-el-covid-19/,Series B,38,Mexico,4/21/2020 +Movidesk,"Blumenau, Non-U.S.",33.0,4/20/2020,0.25,Support,https://scinova.com.br/demissoes-a-conta-da-covid-19-bate-as-portas-de-empresas-de-tecnologia-em-santa-catarina/,Seed,1,Brazil,4/27/2020 +Zum,SF Bay Area,28.0,4/20/2020,,Transportation,https://layoffs.fyi/2020/04/23/kid-friendly-ride-service-zum-conducts-layoff/,Series C,71,United States,4/23/2020 +Komodo Health,SF Bay Area,23.0,4/20/2020,0.09,Healthcare,https://www.businessinsider.com/forward-primary-care-startup-layoffs-amid-coronavirus-pandemic-2020-4,Series C,50,United States,4/21/2020 +Forward,SF Bay Area,10.0,4/20/2020,0.03,Healthcare,https://www.businessinsider.com/forward-primary-care-startup-layoffs-amid-coronavirus-pandemic-2020-4,Series C,100,United States,4/21/2020 +Hipcamp,SF Bay Area,,4/20/2020,0.6,Travel,https://techcrunch.com/2020/08/27/after-early-covid-layoffs-hipcamp-is-buying-competition-hiring/,Series B,40.5,United States,8/27/2020 +Motif Investing,SF Bay Area,,4/18/2020,1.0,Finance,https://www.thinkadvisor.com/2020/04/18/investing-platform-motif-to-shut-down/,Series E,126,United States,5/3/2020 +BlackBuck,"Bengaluru, Non-U.S.",200.0,4/17/2020,,Logistics,https://www.cnbctv18.com/startup/coronavirus-effect-blackbuck-to-lay-off-over-200-employees-ecom-express-puts-hiring-on-hold-5704301.htm,Series D,293,India,4/19/2020 +ContaAzul,"Joinville, Non-U.S.",140.0,4/17/2020,0.35000000000000003,Education,https://www.contxto.com/en/brazil/startups-brazil-confirm-layoffs-covid-cause/,Series D,37,Brazil,4/27/2020 +Greenhouse,New York City,120.0,4/17/2020,0.28,Recruiting,https://layoffs.fyi/2020/04/20/greenhouse-lays-off-120-employees/,Series D,110,United States,4/17/2020 +QuintoAndar,"Sao Paulo, Non-U.S.",88.0,4/17/2020,0.08,Real Estate,https://labs.ebanx.com/en/notes/brazilian-home-rentals-unicorn-quintoandar-lays-off-8-of-employees/,Series D,335,Brazil,4/18/2020 +Loft,"Sao Paulo, Non-U.S.",47.0,4/17/2020,0.1,Real Estate,"https://link.estadao.com.br/noticias/inovacao,quinto-andar-demite-cerca-de-8-do-time-por-conta-do-coronavirus,70003274741",Series C,263,Brazil,4/18/2020 +Zilingo,"Singapore, Non-U.S.",44.0,4/17/2020,0.05,Retail,https://www.bloomberg.com/news/articles/2020-04-20/singapore-s-zilingo-cuts-jobs-after-putting-global-push-on-hold,Series D,307,Singapore,4/19/2020 +Labster,"Copenhagen, Non-U.S.",40.0,4/17/2020,,Education,LinkedIn,Series B,34,Denmark,4/27/2020 +Sweetgreen,Los Angeles,35.0,4/17/2020,0.1,Food,https://dot.la/sweetgreen-layoffs-2645746821.html,Series I,478,United States,4/17/2020 +People.ai,SF Bay Area,30.0,4/17/2020,0.18,Marketing,https://techcrunch.com/2020/04/17/sales-startup-people-ai-lays-off-18-of-staff-raises-debt-round-amid-covid-19-uncertainty/,Series C,100,United States,4/17/2020 +Tor,Boston,13.0,4/17/2020,0.37,Security,https://blog.torproject.org/covid19-impact-tor,Unknown,1,United States,4/18/2020 +BitGo,SF Bay Area,,4/17/2020,0.12,Crypto,https://www.theblockcrypto.com/post/62276/crypto-bitgo-layoffs-reorganization,Series B,69,United States,4/30/2020 +Dispatch,Boston,,4/17/2020,0.38,Other,https://www.americaninno.com/boston/inno-news-boston/boston-startup-dispatch-announces-layoffs-amid-coronavirus-disruption/,Series A,18,United States,4/19/2020 +Food52,New York City,,4/17/2020,,Food,LinkedIn,Acquired,96,United States,4/27/2020 +Influitive,"Toronto, Non-U.S.",,4/17/2020,,Marketing,LinkedIn,Unknown,59,Canada,4/27/2020 +CarGurus,Boston,130.0,4/16/2020,0.13,Transportation,https://layoffs.fyi/2020/05/04/cargurus-laid-off-130-employees/,Post-IPO,1,United States,4/16/2020 +Funding Societies,"Singapore, Non-U.S.",65.0,4/16/2020,0.18,Finance,https://www.techinasia.com/raising-40m-funding-societies-streamlines-business-pandemic,Series B,42,Singapore,4/19/2020 +CleverTap,"Mumbai, Non-U.S.",60.0,4/16/2020,0.2,Marketing,https://inc42.com/buzz/startupsvscovid19-indian-startup-layoffs-pay-cut-tracker/,Series C,76,India,4/21/2020 +CrowdRiff,"Toronto, Non-U.S.",,4/16/2020,,Marketing,LinkedIn,Series A,11,Canada,4/27/2020 +FullStory,Atlanta,,4/16/2020,,Marketing,LinkedIn,Series C,59,United States,4/27/2020 +Grailed,New York City,,4/16/2020,,Retail,https://layoffs.fyi/2020/04/24/mens-clothing-marketplace-grailed-conducted-a-layoff/,Series A,16,United States,4/23/2020 +LumenAd,Missoula,,4/16/2020,,Marketing,https://layoffs.fyi/list/lumenad/,Unknown,,United States,5/3/2020 +Purse,SF Bay Area,,4/16/2020,1.0,Crypto,https://www.coindesk.com/bitcoin-startup-purse-to-shut-down-after-6-year-run,Seed,1,United States,4/16/2020 +SquadVoice,Columbus,,4/16/2020,,Real Estate,https://layoffs.fyi/list/squadvoice/,Series A,2,United States,5/3/2020 +Opendoor,SF Bay Area,600.0,4/15/2020,0.35000000000000003,Real Estate,https://layoffs.fyi/2020/04/16/opendoor-lays-off-600-people-amid-declining-real-estate-activity/,Series E,1500,United States,4/15/2020 +GoPro,SF Bay Area,200.0,4/15/2020,0.2,Consumer,https://techcrunch.com/2020/04/16/gopro-lays-off-200-employees-representing-20-of-the-company/,Post-IPO,288,United States,4/15/2020 +Shop101,"Mumbai, Non-U.S.",200.0,4/15/2020,0.4,Retail,https://inc42.com/buzz/exclusive-shop101-lays-off-200-employees-remaining-to-get-pay-cuts/,Series C,19,India,4/21/2020 +Zume,SF Bay Area,200.0,4/15/2020,0.67,Food,https://www.businessinsider.com/zume-employee-layoffs-softbank-robotics-startup-zoom-2020-4,Unknown,423,United States,4/15/2020 +Carta,SF Bay Area,161.0,4/15/2020,0.16,Finance,https://layoffs.fyi/2020/04/22/carta-laid-off-161-employees-citing-customer-slowdown/,Series E,447,United States,4/15/2020 +Akulaku,"Jakarta, Non-U.S.",100.0,4/15/2020,,Finance,https://www.techinasia.com/indonesia-online-lenders-tighten-credit-cut-jobs,Series D,160,Indonesia,4/20/2020 +Parsable,SF Bay Area,40.0,4/15/2020,0.25,HR,Company executive,Series C,72,United States,4/28/2020 +Kodiak Robotics,SF Bay Area,15.0,4/15/2020,0.2,Transportation,https://www.freightwaves.com/news/kodiak-robotics-lays-of-20-of-its-staff,Series A,40,United States,4/16/2020 +Tulip Retail,"Toronto, Non-U.S.",14.0,4/15/2020,,Retail,https://www.linkedin.com/posts/aliasaria_today-tulip-made-the-difficult-decision-to-activity-6656277826045571072-PEPm,Series B,51,Canada,4/16/2020 +Trove Recommerce,SF Bay Area,13.0,4/15/2020,,Retail,https://layoffs.fyi/2020/04/22/trove-recommerce-laid-off-13-employees/,Series C,34,United States,4/22/2020 +Dude Solutions,Raleigh,,4/15/2020,0.2,Other,https://www.linkedin.com/pulse/some-great-people-impacted-c19-ed-roshitsh/?trackingId=0DmzbwQ3O78ObTV3BiRT9w%3D%3D,Acquired,100,United States,4/16/2020 +SweetEscape,"Jakarta, Non-U.S.",,4/15/2020,0.3,Consumer,https://dealstreetasia.com/stories/sweetescape-layoffs-184295/,Series A,7,Indonesia,4/20/2020 +View,SF Bay Area,,4/15/2020,,Energy,https://techcrunch.com/2020/04/15/view-the-dynamic-glass-company-that-raised-1-1-billion-from-softbank-in-2018-is-laying-people-off/,Series H,1800,United States,4/16/2020 +The RealReal,SF Bay Area,235.0,4/14/2020,0.1,Retail,https://techcrunch.com/2020/04/14/the-real-real-layoffs-furloughs/,Post-IPO,358,United States,4/15/2020 +TouchBistro,"Toronto, Non-U.S.",131.0,4/14/2020,0.23,Food,https://betakit.com/touchbistro-furloughs-131-employees-as-restaurants-hit-hard-by-covid-19-pandemic/,Series E,224,Canada,4/14/2020 +Envoy,SF Bay Area,58.0,4/14/2020,0.3,HR,https://www.forbes.com/sites/alexandrawilson1/2020/04/15/smart-office-startup-envoy-furloughs-and-lays-off-30-of-employees-cuts-salaries-of-others/#e0729a7b94cf,Series B,59,United States,4/15/2020 +VSCO,SF Bay Area,45.0,4/14/2020,0.35000000000000003,Consumer,https://layoffs.fyi/2020/04/15/vsco-lays-off-45-employees-30/,Series B,90,United States,4/14/2020 +Skillz,SF Bay Area,21.0,4/14/2020,,Consumer,https://fortune.com/2020/04/14/coronavirus-layoffs-startup-jobs-tech-industry-covid-19-jobs/,Series D,132,United States,4/24/2020 +DataStax,SF Bay Area,15.0,4/14/2020,,Data,https://www.businessinsider.com/967-million-datastax-april-layoffs-third-cuts-under-ceo-kapoor-2020-4,Series E,190,United States,4/15/2020 +Xerpa,"Sao Paulo, Non-U.S.",10.0,4/14/2020,,HR,https://www.linkedin.com/posts/nreise_ex-xerpas-incr%C3%ADveis-e-dispon%C3%ADveis-covid-activity-6655927070826221568-kunx/,Unknown,5,Brazil,4/14/2020 +Aura Financial,SF Bay Area,,4/14/2020,,Finance,LinkedIn,Unknown,584,United States,5/10/2020 +RedDoorz,"Singapore, Non-U.S.",,4/14/2020,,Travel,https://www.thejakartapost.com/news/2020/04/13/budget-cuts-furloughs-inevitable-for-start-ups-to-survive-pandemic-investors.html,Series C,134,Singapore,4/28/2020 +Groupon,Chicago,2800.0,4/13/2020,0.44,Retail,https://layoffs.fyi/2020/04/17/groupon-laid-off-or-furloughed-2800-employees/,Post-IPO,1400,United States,4/13/2020 +Zoox,SF Bay Area,100.0,4/13/2020,0.1,Transportation,https://www.theinformation.com/briefings/b836b8,Series B,955,United States,4/14/2020 +Neon,"Sao Paulo, Non-U.S.",70.0,4/13/2020,0.1,Finance,"https://link.estadao.com.br/noticias/inovacao,neon-demite-funcionarios-e-eventbrite-fecha-operacoes-no-brasil,70003269607",Series B,120,Brazil,4/14/2020 +EasyPost,SF Bay Area,50.0,4/13/2020,0.25,Logistics,LinkedIn,Series A,12,United States,4/14/2020 +Clearbanc,"Toronto, Non-U.S.",17.0,4/13/2020,0.08,Finance,https://techcrunch.com/2020/04/13/clearbanc-cuts-number-of-staff-to-navigate-long-term-economic-impact-of-covid-19/,Series B,119,Canada,4/13/2020 +Meow Wolf,Santa Fe,201.0,4/10/2020,,Media,https://www.sfreporter.com/news/2020/04/10/meow-wolf-cuts-significant-portion-of-staff/,Unknown,185,United States,4/12/2020 +Frontdesk,Milwaukee,35.0,4/10/2020,0.16,Travel,https://www.linkedin.com/posts/jessedepinto_today-was-one-of-the-hardest-days-weve-experienced-activity-6654491888835448832-rAdg/,Unknown,3,United States,4/11/2020 +BeeTech,"Sao Paulo, Non-U.S.",30.0,4/10/2020,,Finance,https://valorinveste.globo.com/mercados/brasil-e-politica/noticia/2020/04/10/demisses-em-startups-j-somam-quase-mil-pessoas-no-brasil.ghtml,Series B,14,Brazil,4/29/2020 +Built In,Chicago,28.0,4/10/2020,,Recruiting,https://www.americaninno.com/chicago/roundups-chicago/chicago-layoffs-local-tech-companies-that-have-cut-staff-due-to-coronavirus/,Series C,29,United States,5/14/2020 +NuoDB,Boston,20.0,4/10/2020,0.29,Data,https://www.americaninno.com/boston/inno-news-boston/cambridge-database-startup-nuodb-lays-off-nearly-one-third-of-its-staff/,Unknown,85,United States,4/11/2020 +Rhumbix,SF Bay Area,16.0,4/10/2020,0.27,Construction,Company executive,Series B,35,United States,4/13/2020 +Atsu,Seattle,6.0,4/10/2020,1.0,Infrastructure,Company executive,Unknown,1,United States,4/17/2020 +Geekwire,Seattle,5.0,4/10/2020,0.31,Media,https://www.geekwire.com/2020/geekwire-reduces-staff-due-economic-impact-covid-19-pandemic/,Unknown,,United States,4/12/2020 +FloQast,Los Angeles,,4/10/2020,,Finance,LinkedIn,Series C,119,United States,4/27/2020 +Yelp,SF Bay Area,1000.0,4/9/2020,0.17,Consumer,https://layoffs.fyi/2020/04/14/yelp-laid-off-1000-employees-and-furloughed-another-1100/,Post-IPO,56,United States,4/9/2020 +Monzo,Las Vegas,165.0,4/9/2020,,Finance,https://techcrunch.com/2020/04/09/monzo-to-shutter-las-vegas/,Series F,324,United States,4/9/2020 +OneTrust,Atlanta,150.0,4/9/2020,0.1,Legal,https://www.americaninno.com/atlanta/atlanta-startups/atlanta-privacy-unicorn-onetrust-announces-layoffs/,Series B,410,United States,4/10/2020 +Omie,"Sao Paulo, Non-U.S.",136.0,4/9/2020,0.31,Finance,"https://link.estadao.com.br/noticias/inovacao,onda-de-demissoes-em-startups-atinge-getninjas-creditas-e-omie,70003263878",Series B,26,Brazil,4/9/2020 +Domo,Salt Lake City,90.0,4/9/2020,0.1,Data,https://www.ksl.com/article/46740514/domo-forced-to-lay-off-10-of-workforce-due-to-economic-impact-caused-by-covid-19,Post-IPO,689,United States,4/11/2020 +Matterport,SF Bay Area,90.0,4/9/2020,0.34,Data,https://layoffs.fyi/2020/04/24/matterport-laid-off-90-employees/,Series D,114,United States,4/14/2020 +Clinc,Ann Arbor,40.0,4/9/2020,0.32,Support,https://www.mlive.com/news/ann-arbor/2020/04/ann-arbor-ai-startup-clinc-lays-off-32-of-its-workers.html,Series B,59,United States,4/2/2020 +Mejuri,"Toronto, Non-U.S.",36.0,4/9/2020,0.15,Retail,https://betakit.com/mejuri-lays-off-15-percent-of-staff-as-its-forced-to-close-all-retail-stores-due-to-pandemic/,Series B,28,Canada,4/10/2020 +Code42,Minneapolis,25.0,4/9/2020,0.05,Data,https://www.bizjournals.com/twincities/inno/stories/news/2020/04/09/cuts-at-code42-cybersecurity-company-eliminates-25.html,Series B,137.5,United States,9/8/2020 +Lighthouse Labs,"Toronto, Non-U.S.",14.0,4/9/2020,0.07,Education,https://betakit.com/as-lighthouse-labs-faces-staff-cuts-extends-coding-scholarships-to-covid-19-jobless/,Unknown,,Canada,4/10/2020 +LoopMe,"London, Non-U.S.",8.0,4/9/2020,0.04,Marketing,https://www.adweek.com/programmatic/multiple-ad-tech-companies-suffer-layoffs-as-unemployment-spikes/,Unknown,32,United Kingdom,4/10/2020 +CipherTrace,SF Bay Area,,4/9/2020,,Crypto,https://www.theblockcrypto.com/daily/61411/blockchain-analytics-chainalysis-elliptic-ciphertrace-coronavirus,Unknown,18,United States,4/30/2020 +Elliptic,"London, Non-U.S.",,4/9/2020,0.3,Crypto,https://www.theblockcrypto.com/daily/61411/blockchain-analytics-chainalysis-elliptic-ciphertrace-coronavirus,Series B,40,United Kingdom,4/30/2020 +Zest AI,Los Angeles,,4/9/2020,,Finance,LinkedIn,Unknown,217,United States,4/12/2020 +Eventbrite,SF Bay Area,500.0,4/8/2020,0.45,Consumer,https://layoffs.fyi/2020/04/13/eventbrite-laid-off-500-employees/,Post-IPO,332,United States,4/8/2020 +Meesho,"Bengaluru, Non-U.S.",200.0,4/8/2020,0.28,Retail,https://entrackr.com/2020/04/exclusive-meesho-lays-off-over-200-employees-due-to-covid-19/,Series D,215,India,4/10/2020 +Scoop,SF Bay Area,92.0,4/8/2020,0.33,Transportation,https://layoffs.fyi/2020/04/10/scoop-announces-layoff/,Series C,95,United States,4/9/2020 +Unison,SF Bay Area,89.0,4/8/2020,0.45,Finance,https://www.bizjournals.com/sanfrancisco/news/2020/04/03/exclusive-s-f-proptech-raises-doubts-about-its.html,Series B,40,United States,4/4/2020 +Lever,SF Bay Area,86.0,4/8/2020,0.4,Recruiting,https://layoffs.fyi/2020/04/13/lever-laid-off-109-employees/,Series C,72,United States,4/9/2020 +Unbabel,"Lisbon, Non-U.S.",80.0,4/8/2020,0.35000000000000003,Support,https://www.time24.news/i/2020/04/unbabel-will-lay-off-35-of-employees-there-are-more-than-80-people-observer.html,Series C,91,Portugal,4/9/2020 +Button,New York City,48.0,4/8/2020,0.35000000000000003,Marketing,LinkedIn,Series C,64,United States,4/10/2020 +Eden / Managed By Q,New York City,40.0,4/8/2020,0.4,Real Estate,https://layoffs.fyi/2020/04/08/remainder-of-managed-by-q-team-furloughed-or-laid-off-by-eden/,Series B,40,United States,4/8/2020 +Quantcast,SF Bay Area,30.0,4/8/2020,0.05,Marketing,https://www.adexchanger.com/platforms/quantcast-lays-off-5-and-cuts-salaries-due-to-economic-impact-of-the-coronavirus/,Series C,65,United States,4/8/2020 +BVAccel,San Diego,25.0,4/8/2020,0.25,Marketing,https://www.businessinsider.com/bvaccel-cuts-employees-due-to-coronavirus-impact-on-dtc-brands-2020-4,Unknown,,United States,4/12/2020 +VideoAmp,Los Angeles,21.0,4/8/2020,0.1,Marketing,https://www.businessinsider.com/videoamp-cuts-staff-and-2020-revenue-projections-due-to-coronavirus-2020-4,Series C,106,United States,4/10/2020 +Kenoby,"Sao Paulo, Non-U.S.",18.0,4/8/2020,0.16,Recruiting,"https://link.estadao.com.br/noticias/inovacao,onda-de-demissoes-em-startups-atinge-getninjas-creditas-e-omie,70003263878",Unknown,23,Brazil,4/12/2020 +Connected,"Toronto, Non-U.S.",17.0,4/8/2020,0.1,Product,https://layoffs.fyi/2020/04/13/connected-laid-off-17-employees/,Unknown,,Canada,4/11/2020 +GetNinjas,"Sao Paulo, Non-U.S.",11.0,4/8/2020,0.1,Consumer,"https://link.estadao.com.br/noticias/inovacao,onda-de-demissoes-em-startups-atinge-getninjas-creditas-e-omie,70003263878",Series B,16,Brazil,4/12/2020 +Spyce,Boston,4.0,4/8/2020,0.12,Food,https://www.americaninno.com/boston/inno-news-boston/robotic-kitchen-spyce-lays-off-staff-amid-coronavirus-crisis/,Series A,26,United States,4/8/2020 +Creditas,"Sao Paulo, Non-U.S.",,4/8/2020,0.06,Finance,"https://link.estadao.com.br/noticias/inovacao,onda-de-demissoes-em-startups-atinge-getninjas-creditas-e-omie,70003263878",Series D,314,Brazil,4/12/2020 +Lytics,Portland,,4/8/2020,,Marketing,Internal memo,Series C,58,United States,6/2/2020 +RedDoorz,"Singapore, Non-U.S.",,4/8/2020,0.1,Travel,https://www.techinasia.com/airy-cease-operations,Series C,134,Singapore,5/10/2020 +Slice Labs,New York City,,4/8/2020,,Finance,LinkedIn,Series A,35,United States,4/12/2020 +TechAdvance,"Lagos, Non-U.S.",,4/8/2020,,Finance,https://twitter.com/pyjama_ceo/status/1247881029349543941,Unknown,1,Nigeria,5/15/2020 +Zola,New York City,,4/8/2020,0.2,Retail,https://www.fastcompany.com/90488160/as-covid-19-kills-wedding-plans-zola-cuts-salaries-and-lays-off-20-of-staff,Series D,140,United States,4/8/2020 +Toast,Boston,1300.0,4/7/2020,0.5,Food,https://layoffs.fyi/2020/04/10/toast-cuts-1300-employees/,Series F,902,United States,4/7/2020 +ezCater,Boston,400.0,4/7/2020,0.44,Food,https://www.axios.com/ezcater-corporate-catering-unicorn-lays-off-hundreds-084d76ff-45fc-4011-8121-e938924e3819.html,Series D,319,United States,4/7/2020 +Sage Therapeutics,Boston,340.0,4/7/2020,0.53,Healthcare, https://www.biopharmadive.com/news/sage-restructuring-layoffs-340-employees/575641/,Post-IPO,438,United States,4/8/2020 +Redfin,Seattle,236.0,4/7/2020,0.07,Real Estate,https://www.geekwire.com/2020/redfin-lays-off-7-staff-furloughs-hundreds-agents-due-covid-19-impact-housing-demand/,Post-IPO,319,United States,4/7/2020 +Branch Metrics,SF Bay Area,100.0,4/7/2020,0.2,Marketing,https://news.crunchbase.com/news/branch-metrics-lays-off-20-percent-of-employees/,Series E,367,United States,4/9/2020 +Newfront Insurance,SF Bay Area,94.0,4/7/2020,,Finance,https://layoffs.fyi/2020/06/15/newfront-insurance-layoff-list-released/,Unknown,,United States,4/8/2020 +Ibotta,Denver,87.0,4/7/2020,0.15,Retail,https://businessden.com/2020/04/14/rebate-app-ibotta-cuts-15-percent-of-staff/,Series D,85,United States,4/12/2020 +Virta Health,SF Bay Area,65.0,4/7/2020,,Healthcare,https://www.statnews.com/2020/04/07/coronavirus-related-layoffs-hit-health-tech-startups/,Series C,175,United States,4/7/2020 +Away,New York City,60.0,4/7/2020,0.1,Retail,https://techcrunch.com/2020/04/07/away-the-high-flying-travel-brand-startup-just-furloughed-half-its-employees-and-laid-off-10/,Series D,181,United States,4/7/2020 +MediaMath,New York City,53.0,4/7/2020,0.08,Marketing,https://www.adexchanger.com/platforms/mediamath-cuts-8-of-staff-citing-coronavirus/,Private Equity,607,United States,4/8/2020 +Group Nine Media,New York City,50.0,4/7/2020,0.07,Media,https://www.axios.com/group-nine-media-layoffs-76644172-c473-42aa-b9a3-3a7e60b1baed.html,Unknown,190,United States,4/7/2020 +Payfactors,Boston,46.0,4/7/2020,,HR,LinkedIn,Unknown,,United States,4/9/2020 +Nav,Salt Lake City,30.0,4/7/2020,,Finance,https://layoffs.fyi/2020/04/20/nav-laid-off-30-employees/,Series C,99,United States,4/19/2020 +AskNicely,Portland,,4/7/2020,,Support,LinkedIn,Series A,15,United States,4/9/2020 +RainFocus,Salt Lake City,,4/7/2020,,Marketing,LinkedIn,Private Equity,41,United States,4/9/2020 +Metromile,SF Bay Area,100.0,4/6/2020,0.33,Finance,https://layoffs.fyi/2020/04/08/metromile-laid-off-100-employees/,Series E,293,United States,4/7/2020 +Rock Content,"Belo Horizonte, Non-U.S.",100.0,4/6/2020,0.2,Marketing,"https://link.estadao.com.br/noticias/inovacao,startups-brasileiras-fazem-demissoes-por-conta-do-coronavirus,70003262126",Series A,0.7,Brazil,4/6/2020 +BounceX,New York City,77.0,4/6/2020,0.2,Marketing,https://www.adweek.com/programmatic/multiple-ad-tech-companies-suffer-layoffs-as-unemployment-spikes/,Series B,75,United States,4/6/2020 +C6 Bank,"Sao Paulo, Non-U.S.",60.0,4/6/2020,0.06,Finance,"https://link.estadao.com.br/noticias/inovacao,startups-brasileiras-fazem-demissoes-por-conta-do-coronavirus,70003262126",Unknown,,Brazil,4/6/2020 +Wordstream,Boston,26.0,4/6/2020,0.1,Marketing,https://www.linkedin.com/posts/hkogan_earlier-this-week-our-executive-team-made-activity-6654464027185475585-tEV3,Acquired,28,United States,4/9/2020 +Cogito,Boston,24.0,4/6/2020,0.14,Support,https://www.americaninno.com/boston/inno-news-boston/more-coronavirus-layoffs-emotional-ai-startup-cogito-makes-cuts/,Series C,92,United States,4/6/2020 +BusBud,"Montreal, Non-U.S.",23.0,4/6/2020,0.32,Transportation,https://www.journaldemontreal.com/2020/04/06/busbud-licencie-le-tiers-de-ses-employes,Series B,21,Canada,4/28/2020 +Borrowell,"Toronto, Non-U.S.",15.0,4/6/2020,0.2,Finance,https://betakit.com/borrowell-lays-off-20-percent-of-staff-citing-financial-institutions-pulling-back-amid-covid-19/,Series B,72,Canada,4/6/2020 +PerkSpot,Chicago,10.0,4/6/2020,0.1,HR,https://www.americaninno.com/chicago/inno-news-chicago/layoffs-at-hr-tech-company-perkspot-amid-covid-19/,Private Equity,50,United States,4/10/2020 +Bitfarms,"Quebec, Non-U.S.",,4/6/2020,,Crypto,https://coingeek.com/job-losses-loom-at-bitfarms-due-to-coronavirus/,Post-IPO,25,Canada,4/8/2020 +Hopper,Boston,,4/6/2020,,Travel,https://www.americaninno.com/boston/inno-news-boston/travel-booking-app-hopper-announces-layoffs-amid-coronavirus-crisis/,Series D,183,United States,4/6/2020 +Mapbox,Washington D.C.,,4/6/2020,,Data,LinkedIn,Series C,227,United States,5/10/2020 +Astra,SF Bay Area,40.0,4/5/2020,0.25,Aerospace,https://www.cnbc.com/2020/04/05/rocket-startup-astra-trims-staff-to-survive-pandemic-until-next-year.html,Unknown,100,United States,4/5/2020 +Iflix,"Kuala Lumpur, Non-U.S.",50.0,4/4/2020,0.12,Consumer,https://technode.global/2020/04/07/iflix-job-cuts-coronavirus/,Unknown,348,Malaysia,6/11/2020 +Gympass,"Sao Paulo, Non-U.S.",467.0,4/3/2020,0.33,Fitness,https://forbes.com.br/negocios/2020/04/exclusivo-gympass-desliga-um-terco-dos-colaboradores/,Series D,300,Brazil,4/5/2020 +Sojern,SF Bay Area,300.0,4/3/2020,0.5,Marketing,https://www.adweek.com/programmatic/sojern-lays-off-50-of-staff-as-coronavirus-cuts-through-the-travel-industry/,Series D,162,United States,4/3/2020 +MaxMilhas,"Belo Horizonte, Non-U.S.",167.0,4/3/2020,0.42,Travel,https://revistapegn.globo.com/Startups/noticia/2020/04/por-novo-coronavirus-startups-gympass-e-maxmilhas-cortam-equipes.html,Unknown,,Brazil,4/6/2020 +Minted,SF Bay Area,147.0,4/3/2020,0.37,Retail,https://www.theinformation.com/briefings/d4f745,Series E,297,United States,4/5/2020 +Velodyne Lidar,SF Bay Area,140.0,4/3/2020,,Transportation,https://www.bloomberg.com/news/articles/2020-04-04/silicon-valley-startup-firings-over-virus-face-early-court-test,Unknown,225,United States,4/5/2020 +Zoox,SF Bay Area,120.0,4/3/2020,,Transportation,https://www.theverge.com/2020/4/6/21210000/zoox-layoff-coronavirus-self-driving-car-safety-drivers,Series B,955,United States,4/7/2020 +Traveloka,"Jakarta, Non-U.S.",100.0,4/3/2020,0.1,Travel,https://asia.nikkei.com/Business/Startups/Coronavirus-drives-Indonesia-s-Traveloka-to-lay-off-staff,Unknown,,Indonesia,4/7/2020 +Arrive Logistics,Austin,75.0,4/3/2020,0.07,Logistics,https://www.freightwaves.com/news/citing-coronavirus-arrive-logistics-cuts-10-of-workforce,Series B,35,United States,4/5/2020 +Salsify,Boston,60.0,4/3/2020,0.13,Retail,https://www.americaninno.com/boston/inno-news-boston/salsify-lays-off-60-cuts-executive-pay-amid-coronavirus-driven-uncertainty/,Series D,97,United States,4/4/2020 +Jetty,New York City,35.0,4/3/2020,0.4,Finance,https://layoffs.fyi/2020/04/17/jetty-laid-off-40-of-staff-after-pausing-sales-of-new-insurance-policies/,Series B,40,United States,4/6/2020 +D2iQ,SF Bay Area,34.0,4/3/2020,0.13,Infrastructure,https://www.businessinsider.com/d2iq-mesosphere-layoffs-34-coronavirus-crisis-2020-4,Series D,247,United States,4/22/2020 +Bustle Digital Group,New York City,24.0,4/3/2020,0.08,Media,https://digiday.com/media/bustle-digital-group-g-o-media-announce-layoffs-and-cost-saving-measures/,Series E,80,United States,4/3/2020 +Bustle Digital Group,New York City,19.0,4/3/2020,,Media,https://www.adweek.com/media/bdg-input-mic-layoffs/,Series E,80,United States,9/21/2022 +Opencare,"Toronto, Non-U.S.",18.0,4/3/2020,0.25,Healthcare,https://betakit.com/opencare-lays-off-one-quarter-of-staff-as-it-prepares-to-weather-the-storm-of-covid-19/,Series A,24,Canada,4/4/2020 +Anagram,Los Angeles,17.0,4/3/2020,,Healthcare,https://www.statnews.com/2020/04/07/coronavirus-related-layoffs-hit-health-tech-startups/,Series A,14,United States,4/5/2020 +G/O Media Group,New York City,14.0,4/3/2020,0.05,Media,https://digiday.com/media/bustle-digital-group-g-o-media-announce-layoffs-and-cost-saving-measures/,Unknown,,United States,4/8/2020 +DSCO,Salt Lake City,12.0,4/3/2020,,Retail,https://www.linkedin.com/posts/claytonperkins_recommendationsoverresumes-c19-activity-6651856309597675520-BGA9/,Series A,4,United States,4/7/2020 +Tripbam,Dallas,10.0,4/3/2020,0.25,Travel,https://www.bizjournals.com/dallas/news/2020/04/03/more-travel-tech-companies-reduce-salaries-cut.html,Unknown,,United States,4/4/2020 +Avantage Entertainment,Minneapolis,5.0,4/3/2020,0.2,Media,https://www.bizjournals.com/twincities/news/2020/04/03/minnesota-tech-firms-used-to-growth-slam-on-hiring.html,Unknown,,United States,4/4/2020 +Alegion,Austin,,4/3/2020,,Data,LinkedIn,Series A,16,United States,4/9/2020 +AllyO,SF Bay Area,,4/3/2020,,HR,LinkedIn,Series B,64,United States,4/14/2020 +Mews,"Prague, Non-U.S.",,4/3/2020,,Travel,LinkedIn,Series B,41,Czech Republic,4/7/2020 +PeopleGrove,SF Bay Area,,4/3/2020,,HR,LinkedIn,Series A,7,United States,4/7/2020 +The Muse,New York City,,4/3/2020,,Recruiting,LinkedIn,Series B,28,United States,4/7/2020 +The Wing,New York City,,4/3/2020,0.5,Real Estate,https://www.fastcompany.com/90486179/the-wing-announces-mass-layoffs-over-zoom-after-covid-19-causes-revenue-to-dry-up-overnight,Series C,117,United States,4/4/2020 +MindBody,San Luis Obispo,700.0,4/2/2020,0.35000000000000003,Fitness,https://www.sanluisobispo.com/news/business/article241730706.html,Post-IPO,114,United States,4/2/2020 +Katerra,SF Bay Area,240.0,4/2/2020,0.03,Construction,https://www.constructiondive.com/news/katerra-ceos-salary-cut-to-0-amid-layoffs-operation-shutdowns/575460/,Series D,1200,United States,4/4/2020 +Ritual,"Toronto, Non-U.S.",196.0,4/2/2020,0.54,Food,https://layoffs.fyi/2020/04/02/ritual-lays-off-196-employees-due-to-covid-19-impact-on-restaurants/,Series C,112,Canada,4/2/2020 +ClassPass,New York City,154.0,4/2/2020,0.22,Fitness,https://layoffs.fyi/2020/04/03/classpass-laid-off-or-furloughed-half-its-staff/,Series E,549,United States,4/2/2020 +eGym,"Munich, Non-U.S.",100.0,4/2/2020,0.25,Fitness,https://www.tz.de/muenchen/stadt/muenchen-ort29098/corona-muenchen-kuendigung-video-videocall-start-up-mitarbeiter-erklaerung-firma-13637702.html,Series D,109,Germany,4/20/2020 +Voi,"Stockholm, Non-U.S.",100.0,4/2/2020,,Transportation,https://www.businessinsider.com/scooter-startup-voi-layoffs-furloughs-staff-covid-19-2020-4,Series B,167,Sweden,4/2/2020 +Industrious,New York City,90.0,4/2/2020,0.2,Real Estate,https://commercialobserver.com/2020/04/industrious-cuts-a-third-of-its-workforce/,Series D,222,United States,4/3/2020 +1stdibs,New York City,70.0,4/2/2020,0.17,Retail,https://twitter.com/eringriffith/status/1246147841350762497,Series D,253,United States,4/8/2020 +ThirdLove,SF Bay Area,65.0,4/2/2020,0.3,Retail,https://www.businessinsider.com/victorias-secret-challenger-thirdlove-sees-layoffs-due-to-coronavirus-2020-4,Series B,68,United States,4/2/2020 +Latch,New York City,60.0,4/2/2020,,Security,LinkedIn,Series B,152,United States,4/4/2020 +The Predictive Index,Boston,59.0,4/2/2020,0.25,HR,https://layoffs.fyi/2020/04/06/the-predictive-index-lays-off-59-employees,Acquired,65,United States,4/3/2020 +Shuttl,"New Delhi, Non-U.S.",40.0,4/2/2020,,Transportation,https://inc42.com/buzz/startupsvscovid19-startups-choose-layoffs-to-keep-businesses-running/,Series C,122,India,4/10/2020 +Jobcase,Boston,39.0,4/2/2020,0.2,Recruiting,LinkedIn,Private Equity,118,United States,4/2/2020 +Copper,SF Bay Area,35.0,4/2/2020,,Marketing,LinkedIn,Series C,102,United States,4/7/2020 +Dynamic Signal,SF Bay Area,35.0,4/2/2020,0.19,HR,LinkedIn,Series E,114,United States,4/10/2020 +FiscalNote,Washington D.C.,30.0,4/2/2020,,Media,https://www.adweek.com/digital/dozens-fired-at-cq-roll-publication-known-for-reporting-inside-washington/,Series D,50,United States,4/15/2020 +Sauce Labs,SF Bay Area,30.0,4/2/2020,0.15,Infrastructure,LinkedIn,Unknown,151,United States,4/14/2020 +Humu,SF Bay Area,26.0,4/2/2020,,HR,https://www.bloomberg.com/news/articles/2020-04-02/humu-a-startup-run-by-former-google-hr-boss-cuts-jobs,Series B,40,United States,4/3/2020 +TripleLift,New York City,23.0,4/2/2020,0.07,Marketing,https://www.adweek.com/programmatic/triplelift-confirms-staff-salary-cuts-amid-wave-of-industry-austerity/,Series B,16,United States,4/10/2020 +Coding Dojo,Seattle,7.0,4/2/2020,0.07,Education,https://www.geekwire.com/2020/engineering-bootcamp-coding-dojo-cuts-jobs-launches-volunteer-program-help-small-businesses/,Unknown,2,United States,4/12/2020 +Instamojo,"Bengaluru, Non-U.S.",6.0,4/2/2020,0.06,Finance,https://www.business-standard.com/article/companies/covid-19-crisis-consumer-internet-start-ups-brace-for-salary-cuts-layoffs-120040101707_1.html,Unknown,8,India,4/12/2020 +Synergysuite,Salt Lake City,5.0,4/2/2020,0.07,Food,https://www.linkedin.com/feed/update/urn:li:activity:6651167936918753280?commentUrn=urn%3Ali%3Acomment%3A%28activity%3A6651167936918753280%2C6651190820756172801%29,Series A,6,United States,4/3/2020 +Atlanta Tech Village,Atlanta,,4/2/2020,0.5,Real Estate,https://www.bizjournals.com/atlanta/news/2020/04/02/atlanta-tech-village-lays-off-half-of-its-staff.html,Unknown,,United States,4/4/2020 +Capillary,"Bengaluru, Non-U.S.",,4/2/2020,,Retail,https://inc42.com/buzz/startupsvscovid19-startups-choose-layoffs-to-keep-businesses-running/,Private Equity,102,India,4/12/2020 +Modsy,SF Bay Area,,4/2/2020,,Retail,https://techcrunch.com/2020/04/02/modsy-confirms-layoffs-10-months-after-announcing-its-37m-series-c/,Series C,70,United States,4/2/2020 +The Modist,"Dubai, Non-U.S.",,4/2/2020,1.0,Retail,https://www.menabytes.com/the-modist-shuts-down/,Unknown,,United Arab Emirates,4/5/2020 +Wonder,New York City,,4/2/2020,,Other,https://layoffs.fyi/list/wonder/,Unknown,,United States,4/23/2020 +Booksy,SF Bay Area,200.0,4/1/2020,,Consumer,LinkedIn,Series B,48,United States,4/7/2020 +Flymya,"Yangon, Non-U.S.",200.0,4/1/2020,0.33,Travel,https://www.techinasia.com/myanmar-travel-startup-lays-staff-bookings-drop,Unknown,,Myanmar,5/6/2020 +PatientPop,Los Angeles,100.0,4/1/2020,0.2,Healthcare,LinkedIn,Series B,75,United States,4/1/2020 +Showpad,Chicago,52.0,4/1/2020,0.12,Marketing,https://www.americaninno.com/chicago/inno-news-chicago/showpad-lays-off-52-employees-globally-18-in-chicago/,Series D,159,United States,4/1/2020 +Highsnobiety,"Berlin, Non-U.S.",51.0,4/1/2020,0.25,Media,https://digiday.com/media/highsnobiety-closes-commerce-cuts-25-of-staff/,Series A,8.5,Germany,4/8/2020 +Earnin,SF Bay Area,50.0,4/1/2020,0.2,Finance,LinkedIn,Series C,190,United States,4/3/2020 +Wonolo,SF Bay Area,46.0,4/1/2020,0.13,Recruiting,https://www.bizjournals.com/sanfrancisco/news/2020/04/01/wonolo-cuts-workforce-amid-covid-19-outbreak.html,Series C,52,United States,3/28/2020 +Acko,"Mumbai, Non-U.S.",45.0,4/1/2020,0.09,Finance,https://entrackr.com/2020/04/exclusive-acko-insurance-layoff/,Unknown,143,India,4/8/2020 +Moovel,Portland,28.0,4/1/2020,0.37,Transportation,https://www.oregonlive.com/silicon-forest/2020/04/transit-tech-company-moovel-says-second-round-of-portland-layoffs-will-reduce-staff-nearly-40.html,Unknown,,United States,4/2/2020 +Aqua Security,"Tel Aviv, Non-U.S.",24.0,4/1/2020,0.09,Security,https://www.bizjournals.com/boston/news/2020/04/02/cybersecurity-company-lays-off-workers-via-zoom.html,Series C,100,Israel,4/4/2020 +Crayon,Boston,20.0,4/1/2020,0.2,Marketing,LinkedIn,Series A,16,United States,4/7/2020 +Pana,Denver,18.0,4/1/2020,,Travel,https://businessden.com/2020/04/01/business-travel-startup-pana-cuts-18-employees/,Series A,11,United States,4/2/2020 +Sensibill,"Toronto, Non-U.S.",17.0,4/1/2020,0.2,Finance,https://betakit.com/following-layoffs-sensibill-secures-5-million-in-debt-financing/,Series B,50,Canada,5/22/2020 +Usermind,Seattle,15.0,4/1/2020,0.25,Marketing,https://www.geekwire.com/2020/seattle-marketing-software-startup-usermind-lays-off-15-employees/,Series C,46,United States,4/2/2020 +Incredible Health,SF Bay Area,9.0,4/1/2020,0.4,Healthcare,https://www.statnews.com/2020/04/07/coronavirus-related-layoffs-hit-health-tech-startups/,Series A,15,United States,4/7/2020 +Currency,Los Angeles,,4/1/2020,,Finance,LinkedIn,Unknown,,United States,4/5/2020 +GOAT Group,Los Angeles,,4/1/2020,,Retail,LinkedIn,Series D,197,United States,4/7/2020 +Le Tote,SF Bay Area,,4/1/2020,0.5,Retail,https://footwearnews.com/2020/business/retail/lord-taylor-mass-layoffs-president-resigns-out-of-business-1202961340/,Series C,62,United States,4/6/2020 +Levelset,New Orleans,,4/1/2020,,Construction,LinkedIn,Series C,46,United States,4/9/2020 +Pebblepost,New York City,,4/1/2020,0.6,Marketing,LinkedIn,Series C,81,United States,4/6/2020 +WhyHotel,Washington D.C.,,4/1/2020,0.5,Travel,https://technical.ly/dc/2020/04/02/whyhotel-layoffs-operational-changes-hospitality-covid19-coronavirus/,Series B,33,United States,4/4/2020 +KeepTruckin,SF Bay Area,349.0,3/31/2020,0.18,Logistics,https://layoffs.fyi/2020/03/31/keeptruckin-lays-off-another-149-employees-one-month-after-previous-layoff/,Series D,227,United States,4/1/2020 +AdRoll,Salt Lake City,210.0,3/31/2020,0.3,Marketing,https://www.adexchanger.com/online-advertising/nextroll-lays-off-30-institutes-20-paycuts/,Series C,89,United States,4/1/2020 +Rover,Seattle,194.0,3/31/2020,0.41000000000000003,Consumer,https://www.geekwire.com/2020/pet-care-startup-rover-lays-off-41-workforce-194-employees-due-covid-19-impact/,Series G,310,United States,3/31/2020 +Turo,SF Bay Area,108.0,3/31/2020,0.3,Transportation,https://layoffs.fyi/2020/04/21/turo-laid-off-108-employees/,Series E,467,United States,4/1/2020 +uShip,Austin,65.0,3/31/2020,0.37,Logistics,https://www.bizjournals.com/austin/news/2020/03/31/austin-layoffs-rounded-up-incredibly-talented.html,Series D,69,United States,4/1/2020 +SkySlope,Sacramento,50.0,3/31/2020,0.25,Real Estate,https://www.bizjournals.com/sacramento/news/2020/04/03/skyslope-said-to-cut-sacramento-staff-as-housing.html,Acquired,,United States,5/14/2020 +Siteimprove,Minneapolis,40.0,3/31/2020,,Marketing,https://www.bizjournals.com/twincities/news/2020/04/03/minnesota-tech-firms-used-to-growth-slam-on-hiring.html,Unknown,55,United States,4/4/2020 +AngelList,SF Bay Area,20.0,3/31/2020,,Recruiting,https://techcrunch.com/2020/04/06/angellist-lays-off-a-number-of-staff-and-cuts-executive-salaries/,Series B,26,United States,4/6/2020 +Zenoti,Seattle,17.0,3/31/2020,0.04,Fitness,https://www.geekwire.com/2020/spa-salon-software-startup-zenoti-makes-small-layoff-beauty-industry-faces-covid-19-upheaval/,Series C,91,United States,3/31/2020 +DialSource,Sacramento,5.0,3/31/2020,0.14,Marketing,Company executive,Series B,26,United States,4/7/2020 +Adara,SF Bay Area,,3/31/2020,,Travel,https://www.linkedin.com/posts/hongchengmi_grateful-activity-6650855887563030528-O3sC,Series C,67,United States,4/6/2020 +Claravine,Salt Lake City,,3/31/2020,,Marketing,LinkedIn,Seed,4,United States,4/7/2020 +Domio,New York City,,3/31/2020,0.3,Travel,LinkedIn,Series B,116,United States,4/7/2020 +Kazoo,Austin,,3/31/2020,0.35000000000000003,HR,https://www.americaninno.com/austin/inno-news/austin-hr-platform-company-kazoo-lays-off-35-of-its-workforce/,Series A,8,United States,4/1/2020 +Snap Finance,Salt Lake City,,3/31/2020,,Finance,LinkedIn,Unknown,,United States,4/1/2020 +Zerto,Boston,,3/31/2020,,Infrastructure,https://blocksandfiles.com/2020/03/31/zerto-makes-layoffs-to-survive-pandemic-economic-storm/,Series E,130,United States,4/1/2020 +Thumbtack,SF Bay Area,250.0,3/30/2020,0.3,Consumer,https://layoffs.fyi/2020/04/06/thumbtack-laid-off-250-employees/,Series F,423,United States,3/30/2020 +RigUp,Austin,120.0,3/30/2020,0.25,Energy,https://www.americaninno.com/austin/inno-news/austin-tech-unicorn-rigup-sheds-100-plus-jobs/,Series D,423,United States,3/31/2020 +FabHotels,"New Delhi, Non-U.S.",80.0,3/30/2020,0.2,Travel,https://entrackr.com/2020/04/exclusive-fabhotels-lays-off-80-employees-slashes-salary/,Series B,48,India,4/10/2020 +Hibob,"Tel Aviv, Non-U.S.",70.0,3/30/2020,0.3,HR,https://www.teamblind.com/post/Hibob-layoffs---70-ppl-org-wide-5BmyRsoZ,Series A,45,Israel,3/31/2020 +PeerStreet,Los Angeles,51.0,3/30/2020,0.3,Finance,https://layoffs.fyi/2020/03/31/breaking-la-based-peerstreet-lays-off-50-employees/,Series C,110,United States,3/31/2020 +Maven,Seattle,31.0,3/30/2020,0.09,Media,https://www.businesswire.com/news/home/20200330005734/en/Maven-Announces-Broad-Cost-Containment-Initiative-Including-9,Post-IPO,77,United States,4/8/2020 +Blume Global,SF Bay Area,30.0,3/30/2020,0.1,Logistics,LinkedIn,Unknown,,United States,4/1/2020 +Catalant,Boston,30.0,3/30/2020,,Other,https://www.americaninno.com/boston/inno-news-boston/catalant-technologies-cuts-workforce-amid-coronavirus-uncertainty/,Series E,110,United States,3/31/2020 +Starship Technologies,"Tallinn, Non-U.S.",30.0,3/30/2020,,Transportation,https://digi.geenius.ee/rubriik/uudis/karmid-numbrid-robotkullerite-tootja-starshipi-pohiari-kukkus-sisuliselt-kokku/,Series A,82,Estonia,4/8/2020 +Loftsmart,New York City,25.0,3/30/2020,0.75,Real Estate,https://www.linkedin.com/posts/swbernstein_founder-operator-and-investor-friends-activity-6647864445718585344-4i-K,Series A,18,United States,4/6/2020 +Caliva,SF Bay Area,20.0,3/30/2020,,Retail,https://www.businessinsider.com/cannabis-startup-caliva-laid-off-20-corporate-employees-2020-5,Series A,75,United States,5/29/2020 +Iris Nova,New York City,9.0,3/30/2020,0.5,Food,https://www.businessinsider.com/coca-cola-backed-startup-iris-nova-layoffs-due-to-coronavirus-2020-3,Seed,15,United States,4/1/2020 +Cuyana,SF Bay Area,,3/30/2020,,Retail,https://www.instagram.com/p/B-YJi1UJVoC/,Series C,31,United States,4/10/2020 +ZipRecruiter,Los Angeles,400.0,3/29/2020,0.39,Recruiting,https://www.wsj.com/articles/ziprecruiter-downsizes-as-employers-scale-back-hiring-11585498957,Series B,219,United States,3/29/2020 +Amplero,Seattle,17.0,3/29/2020,1.0,Marketing,https://www.geekwire.com/2020/canary-coal-mine-seattle-marketing-tech-startup-amplero-shuts-lays-off-17-employees/,Series B,25,United States,4/1/2020 +Polarr,SF Bay Area,10.0,3/29/2020,,Consumer,https://medium.com/@derekzhyan/drawing-a-blank-18068b4aff1d,Series A,13,United States,4/8/2020 +TravelTriangle,"Gurugram, Non-U.S.",250.0,3/28/2020,0.5,Travel,https://entrackr.com/2020/03/exclusive-traveltriangle-lays-off-250-employees-covid-crisis/,Series D,47,India,4/1/2020 +WeWork,New York City,250.0,3/28/2020,,Real Estate,https://www.reuters.com/article/wework-layoffs/wework-cuts-about-250-more-jobs-to-reduce-costs-source-idUSL4N2BL0DJ,Series H,2250,United States,3/29/2020 +Rent the Runway,New York City,,3/28/2020,,Retail,https://www.theverge.com/2020/3/28/21198042/rent-the-runway-lays-off-all-retail-employees-due-to-coronavirus-uncertainty,Series F,541,United States,3/29/2020 +OneWeb,"London, Non-U.S.",451.0,3/27/2020,0.85,Aerospace,https://spacenews.com/oneweb-files-for-chapter-11-bankruptcy/,Unknown,3000,United Kingdom,3/28/2020 +Bird,Los Angeles,406.0,3/27/2020,0.3,Transportation,https://layoffs.fyi/2020/03/30/bird-lays-off-over-400-employees,Series D,623,United States,3/28/2020 +HOOQ,"Singapore, Non-U.S.",250.0,3/27/2020,1.0,Consumer,https://techcrunch.com/2020/03/27/streaming-service-hooq-files-for-liquidation/,Unknown,95,Singapore,4/18/2020 +Everlane,SF Bay Area,227.0,3/27/2020,,Retail,https://www.vice.com/en_ca/article/akw9ej/everlane-reassures-workers-then-lays-off-and-furloughs-hundreds,Unknown,18,United States,3/29/2020 +DataRobot,Boston,200.0,3/27/2020,,Data,https://www.americaninno.com/boston/inno-news-boston/datarobot-cuts-workforce-as-coronavirus-roils-the-startup-economy/,Series E,430,United States,3/28/2020 +Restaurant365,Los Angeles,175.0,3/27/2020,,Food,https://news.crunchbase.com/news/restaurant365-confirms-coronavirus-related-layoffs/,Series C,127,United States,3/28/2020 +Blueground,New York City,130.0,3/27/2020,0.25,Real Estate,https://layoffs.fyi/2020/04/08/blueground-laid-off-130-employees/,Series B,77,United States,3/30/2020 +Knotel,New York City,127.0,3/27/2020,0.3,Real Estate,https://commercialobserver.com/2020/03/knotel-cuts-half-of-its-staff-amid-coronavirus-pandemic/,Series C,560,United States,3/28/2020 +Getaround,SF Bay Area,100.0,3/27/2020,0.25,Transportation,https://www.bizjournals.com/sanfrancisco/news/2020/03/27/getaround-issues-another-layoff-round-as-it-seeks.html,Series D,403,United States,3/29/2020 +Zipcar,Boston,100.0,3/27/2020,0.2,Transportation,https://layoffs.fyi/2020/04/03/zipcar-laid-off-20-of-staff-amid-widescale-travel-disruption,Acquired,107,United States,3/28/2020 +Mogo,"Vancouver, Non-U.S.",78.0,3/27/2020,0.3,Finance,https://betakit.com/mogo-lays-off-30-percent-of-staff-makes-company-wide-cuts-citing-covid-19-uncertainty/,Post-IPO,201,Canada,4/3/2020 +DISCO,Austin,75.0,3/27/2020,,Legal,https://www.americaninno.com/austin/inno-news/layoffs-at-fast-rising-austin-startup-disco/,Series E,133,United States,3/28/2020 +Raken,San Diego,60.0,3/27/2020,,Construction,LinkedIn,Series A,12,United States,4/5/2020 +Bench,"Vancouver, Non-U.S.",47.0,3/27/2020,0.1,Finance,https://betakit.com/bench-re-hires-workers-as-sales-rebound-following-shift-to-helping-us-businesses-with-covid-relief/,Series B,49,Canada,6/23/2020 +Loft,"Sao Paulo, Non-U.S.",47.0,3/27/2020,,Real Estate,https://br.financas.yahoo.com/noticias/startup-loft-demitiu-47-antes-165500949.html,Series C,263,Brazil,4/8/2020 +Oh My Green,SF Bay Area,40.0,3/27/2020,,Food,https://finance.yahoo.com/news/tech-startups-ask-workers-trade-110029332.html,Seed,20,United States,3/29/2020 +Bevi,Boston,30.0,3/27/2020,0.2,Food,https://www.americaninno.com/boston/inno-news-boston/boston-hospitality-startups-downsize-as-the-coronavirus-disruption-continues/,Series C,60,United States,3/28/2020 +Textio,Seattle,30.0,3/27/2020,0.2,Recruiting,https://www.geekwire.com/2020/textio-lays-off-30-amid-covid-19-seattle-startup-hopes-ai-writing-tech-will-aid-job-seekers/,Unknown,41,United States,3/28/2020 +Opal,Portland,20.0,3/27/2020,,Marketing,https://www.oregonlive.com/silicon-forest/2020/03/portland-marketing-technology-startup-opal-lays-off-20-amid-coronavirus-outbreak.html,Series B,25,United States,3/28/2020 +ThirdLove,New York City,10.0,3/27/2020,,Retail,https://www.vox.com/the-goods/2020/3/27/21195664/coronavirus-layoffs-furlough-severance,Series B,68,United States,4/2/2020 +Bcredi,"Curitiba, Non-U.S.",,3/27/2020,,Finance,https://layoffs.fyi/list/bcredi/,Series A,,Brazil,4/25/2020 +Make School,SF Bay Area,,3/27/2020,,Education,https://www.makeschool.com/blog/a-message-of-solidarity-to-our-community,Unknown,,United States,4/16/2020 +Pivot3,Austin,,3/27/2020,,Infrastructure,https://blocksandfiles.com/2020/03/27/hci-shop-pivot3-makes-significant-layoffs/,Series H,273,United States,3/28/2020 +B8ta,SF Bay Area,250.0,3/26/2020,0.5,Retail,https://www.retaildive.com/news/b8ta-announces-corporate-layoffs-and-store-associate-furloughs/574955/,Series C,88,United States,3/29/2020 +Fareportal,"Gurugram, Non-U.S.",200.0,3/26/2020,,Travel,https://hrnxt.com/news/exclusive-travel-tech-firm-fareportal-lays-off-employees/16389/2020/03/26/,Unknown,,India,3/30/2020 +Puppet,Portland,50.0,3/26/2020,0.1,Infrastructure,https://www.oregonlive.com/silicon-forest/2020/03/portland-marketing-technology-startup-opal-lays-off-20-amid-coronavirus-outbreak.html,Series F,149,United States,3/28/2020 +Ecobee,"Toronto, Non-U.S.",47.0,3/26/2020,0.1,Energy,https://layoffs.fyi/2020/04/10/ecobee-laid-off-47-employees/,Series C,149,Canada,3/28/2020 +Passport,Charlotte,44.0,3/26/2020,,Transportation,https://layoffs.fyi/2020/04/09/passport-lays-off-employees-and-furloughs-others/,Series D,123,United States,3/28/2020 +Peerspace,SF Bay Area,41.0,3/26/2020,0.75,Real Estate,https://www.peerspace.com/blog/ceo-letter-to-the-peerspace-community/,Series B,34,United States,3/31/2020 +GoSpotCheck,Denver,23.0,3/26/2020,0.2,Retail,https://businessden.com/2020/03/26/software-firm-gospotcheck-cuts-23-employees-in-bid-to-extend-runway/,Series B,47,United States,3/28/2020 +Consider.co,SF Bay Area,13.0,3/26/2020,1.0,Other,https://www.consider.co/,Seed,5,United States,3/28/2020 +Nativo,Los Angeles,,3/26/2020,0.4,Marketing,LinkedIn,Series B,35,United States,4/3/2020 +TripActions,SF Bay Area,300.0,3/25/2020,0.25,Travel,https://layoffs.fyi/2020/03/31/tripactions-laid-off-300-employees-via-a-group-zoom-call/,Series D,981,United States,3/28/2020 +Lyric,SF Bay Area,100.0,3/25/2020,,Real Estate,https://therealdeal.com/2020/03/25/another-bloodbath-lyric-to-slash-jobs-drop-units/,Series B,179.1,United States,7/4/2020 +Rangle,"Toronto, Non-U.S.",78.0,3/25/2020,0.3,Product,https://betakit.com/rangle-temporarily-lays-off-78-employees-as-financial-pressures-from-pandemic-hit-cdntech/,Unknown,,Canada,3/28/2020 +O'Reilly Media,SF Bay Area,75.0,3/25/2020,0.15,Media,https://www.businessinsider.com/oreilly-media-layoffs-events-business-2020-3,Unknown,,United States,3/30/2020 +WanderJaunt,SF Bay Area,56.0,3/25/2020,0.23,Travel,https://www.nytimes.com/2020/04/01/technology/virus-start-ups-pummeled-layoffs-unwinding.html,Series B,26,United States,4/1/2020 +OutboundEngine,Austin,52.0,3/25/2020,0.28,Marketing,https://www.bizjournals.com/austin/news/2020/03/25/outbound-engine-lays-off-dozens-amid-coronavirus.html,Series C,48,United States,3/28/2020 +Wonderschool,SF Bay Area,50.0,3/25/2020,0.75,Education,https://layoffs.fyi/2020/03/26/wonderschool-lays-off-75-of-employees/,Series A,24,United States,3/28/2020 +Overtime,New York City,30.0,3/25/2020,0.23,Media,https://frntofficesport.com/overtime-coronavirus-job-cuts/,Series B,35,United States,4/2/2020 +Jama,Portland,12.0,3/25/2020,0.05,Product,https://www.oregonlive.com/silicon-forest/2020/03/jama-software-will-lay-off-a-dozen-but-says-business-is-solid-during-coronavirus-outbreak.html,Unknown,233,United States,3/28/2020 +Element Analytics,SF Bay Area,10.0,3/25/2020,,Data,Company executive,Series A,22,United States,4/18/2020 +Clever Real Estate,St. Louis,,3/25/2020,,Real Estate,https://www.bizjournals.com/stlouis/news/2020/03/25/this-sucks-st-louis-real-estate-startup-lays-off.html,Series A,5,United States,4/8/2020 +Clutter,Los Angeles,,3/25/2020,0.3,Consumer,https://www.teamblind.com/post/Corona-based-layoffs-tracker-sHaHz6KO,Series D,296,United States,3/30/2020 +Divvy Homes,SF Bay Area,,3/25/2020,0.08,Real Estate,https://www.teamblind.com/post/Corona-based-layoffs-tracker-sHaHz6KO,Series B,180,United States,3/30/2020 +Universal Standard,New York City,,3/25/2020,,Retail,https://www.modernretail.co/startups/coronavirus-fallout-tracking-the-layoffs-furloughs-and-cuts-at-retail-startups/,Series A,8,United States,4/1/2020 +Sonder,SF Bay Area,400.0,3/24/2020,0.33,Travel,https://layoffs.fyi/2020/03/27/sonder-lays-off-400-employees-bookings-down-20/,Series D,359,United States,3/28/2020 +Takl,Nashville,130.0,3/24/2020,,Consumer,https://www.bizjournals.com/nashville/news/2020/03/24/hours-before-nashville-company-laid-off-staff-it.html,Unknown,,United States,4/2/2020 +Foodsby,Minneapolis,87.0,3/24/2020,0.67,Food,https://www.americaninno.com/minne/inno-news-minne/layoffs-at-foodsby-after-drop-in-business-from-coronavirus/,Series B,20,United States,3/28/2020 +Zeus Living,SF Bay Area,80.0,3/24/2020,0.3,Real Estate,https://layoffs.fyi/2020/03/30/zeus-living-laid-off-80-employees,Series B,79,United States,3/28/2020 +TravelBank,SF Bay Area,20.0,3/24/2020,,Travel,https://www.teamblind.com/post/TravelBank-had-layoffs-t0kHoLwb,Series B,35,United States,4/1/2020 +Flowr,"Toronto, Non-U.S.",,3/24/2020,0.25,Retail,https://www.benzinga.com/markets/cannabis/20/03/15650740/cannabis-startups-flowr-and-leafly-cite-covid-19-fears-for-layoffs,Unknown,,Canada,3/28/2020 +Peerfit,Tampa Bay,,3/24/2020,0.4,HR,https://www.americaninno.com/tampabay/newsletters/tech-org-local-startup-team-up-for-virtual-event-peerfit-layoffs-newsletter/,Unknown,47,United States,3/30/2020 +SpotHero,Chicago,,3/24/2020,,Transportation,https://americaninno.com/chicago/inno-news-chicago/layoffs-at-spothero-as-demand-drops-due-to-coronavirus/,Series D,117,United States,3/28/2020 +Compass,New York City,375.0,3/23/2020,0.15,Real Estate,https://layoffs.fyi/2020/04/14/compass-laid-off-375-employees-showings-have-dropped-by-60/,Series G,1600,United States,3/28/2020 +Convene,New York City,150.0,3/23/2020,0.18,Real Estate,https://layoffs.fyi/2020/04/08/convene-laid-off-150-employees/,Series D,280,United States,3/28/2020 +Leafly,Seattle,91.0,3/23/2020,0.5,Retail,https://www.geekwire.com/2020/leafly-lays-off-additional-91-employees-eliminating-50-percent-staff-2020/,Acquired,2,United States,3/28/2020 +The Guild,Austin,38.0,3/23/2020,0.22,Travel,https://www.americaninno.com/austin/inno-news/report-austin-startup-the-guild-lays-off-38-people/,Series B,36,United States,3/28/2020 +Drip,Salt Lake City,20.0,3/23/2020,,Marketing,LinkedIn,Acquired,,United States,4/1/2020 +GrayMeta,Los Angeles,20.0,3/23/2020,0.4,Data,LinkedIn,Unknown,7,United States,4/1/2020 +Triplebyte,SF Bay Area,15.0,3/23/2020,0.17,Recruiting,https://layoffs.fyi/2020/03/26/triplebyte-lays-off-15-talent-managers-and-technical-writers/,Series B,48,United States,3/28/2020 +Ladder Life,SF Bay Area,13.0,3/23/2020,0.25,Finance,LinkedIn,Series C,94,United States,4/7/2020 +Cabin,SF Bay Area,,3/23/2020,0.2,Travel,https://www.theinformation.com/articles/layoffs-accelerate-across-silicon-valley-startups,Seed,3,United States,3/28/2020 +Eight Sleep,New York City,,3/23/2020,0.2,Retail,https://www.theinformation.com/articles/layoffs-accelerate-across-silicon-valley-startups,Series C,70,United States,3/28/2020 +Zwift,Los Angeles,,3/23/2020,,Fitness,https://www.dcrainmaker.com/2020/03/zwift-lays-off-employees-in-move-to-focus-on-developing-new-hardware.html,Series B,164,United States,4/2/2020 +Flywheel Sports,New York City,784.0,3/20/2020,0.98,Fitness,https://stayfit305.com/solidcore-and-flywheel-announce-layoffs-as-a-result-of-covid-19/,Acquired,120,United States,4/9/2020 +Peek,Salt Lake City,45.0,3/20/2020,,Travel,https://layoffs.fyi/2020/04/06/peek-conducted-a-mass-layoff/,Series B,39,United States,4/3/2020 +CTO.ai,"Vancouver, Non-U.S.",30.0,3/20/2020,0.5,Infrastructure,LinkedIn,Seed,7,Canada,4/2/2020 +Yonder,Austin,18.0,3/20/2020,,Media,https://www.americaninno.com/austin/inno-news/austin-startup-yonder-lays-off-18-employees-citing-coronavirus-disruptions/,Series A,16,United States,3/28/2020 +Service,Los Angeles,,3/20/2020,1.0,Travel,https://techcrunch.com/2020/03/16/travel-savings-tool-service-shuts-down-citing-covid-19-downturn/,Seed,5,United States,4/1/2020 +Vacasa,Portland,,3/20/2020,,Travel,https://www.bizjournals.com/portland/news/2020/03/20/vacasa-announces-large-scale-layoffs-slashes.html,Series C,526,United States,3/28/2020 +Bounce,"Bengaluru, Non-U.S.",120.0,3/19/2020,,Transportation,https://www.cqai520.com/tech/scooter-rental-startup-bounce-lays-off-120-employees-amid-coronavirus-scare-report/#more-18179,Series D,214,India,3/28/2020 +Ejento,SF Bay Area,84.0,3/19/2020,1.0,Recruiting,https://layoffs.fyi/list/ejento/,Unknown,,United States,3/28/2020 +Remote Year,Chicago,50.0,3/19/2020,0.5,Travel,https://techcrunch.com/2020/03/19/remote-year-which-helps-you-work-while-traveling-the-world-lays-off-50-of-staff/,Series B,17,United States,3/28/2020 +Lola,Boston,34.0,3/19/2020,,Travel,https://layoffs.fyi/2020/03/19/lola-lays-off-34-employees-due-to-impact-of-the-coronavirus/,Series C,81,United States,3/28/2020 +Anyvision,"Tel Aviv, Non-U.S.",,3/19/2020,,Security,https://ipvm.com/reports/anyvision-20-layoffs,Series A,74,Israel,3/30/2020 +Popin,New York City,,3/19/2020,1.0,Fitness,https://www.businessinsider.com/fitness-app-popin-shut-down-email-to-users-2020-3?r=startups-layoff-lp,Unknown,13,United States,4/6/2020 +Tuft & Needle,Phoenix,,3/19/2020,,Retail,https://www.theverge.com/2020/3/19/21185840/tuft-needle-coronavirus-firing-retail-staff-closing-stores,Acquired,,United States,4/5/2020 +Flytedesk,Boulder,4.0,3/18/2020,0.2,Marketing,https://businessden.com/2020/03/18/boulder-advertising-startup-flytedesk-lays-off-staff-amid-coronavirus/,Seed,4,United States,4/1/2020 +Inspirato,Denver,130.0,3/16/2020,0.22,Travel,https://businessden.com/2020/03/16/inspirato-cuts-20-of-workforce/,Series C,79,United States,3/31/2020 +Help.com,Austin,16.0,3/16/2020,1.0,Support,LinkedIn,Seed,6,United States,4/16/2020 +Service,Los Angeles,,3/16/2020,1.0,Travel,https://techcrunch.com/2020/03/16/travel-savings-tool-service-shuts-down-citing-covid-19-downturn/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+techcrunch%2Fstartups+%28TechCrunch+%C2%BB+Startups%29,Seed,5.1,United States,8/31/2020 +HopSkipDrive,Los Angeles,8.0,3/13/2020,0.1,Transportation,https://layoffs.fyi/2020/04/02/hopskipdrive-laid-off-10-of-team-due-to-school-closures/,Unknown,45,United States,4/3/2020 +Panda Squad,SF Bay Area,6.0,3/13/2020,0.75,Consumer,https://twitter.com/danielsinger/status/1238545571092160514,Seed,1,United States,4/17/2020 +Tamara Mellon,Los Angeles,20.0,3/12/2020,0.4,Retail,https://layoffs.fyi/list/tamara-mellon/,Series C,90,United States,3/31/2020 +EasyPost,Salt Lake City,75.0,3/11/2020,,Logistics,https://www.bizjournals.com/louisville/news/2020/03/11/logistics-company-ceasing-operations-planning.html,Series A,12,United States,3/31/2020 diff --git a/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts b/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts index c60ac207a..c6840f8c3 100644 --- a/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts +++ b/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts @@ -1,30 +1,62 @@ import type { Snippet } from 'svelte'; /** - * Minimal interval tracker matching the subset of `interval-tree-1d`'s API - * used by the dodge algorithm (the same package Observable Plot and SveltePlot - * use). Inlined as a linear scan instead of a real tree because: + * Centered-interval-tree variant: an augmented BST keyed by `lo`, with each + * node carrying `maxHi` across its subtree. Queries skip whole subtrees whose + * `maxHi < lo` (no possible overlap), giving `O(log n + k)` per query in the + * average case. * - * - For typical dodge use cases (n < ~1000) linear scan beats a real tree - * on wall time due to lower constants — the tree only wins for very large - * datasets. - * - Avoids a CJS-only dep that requires `ssr.external` config in some Vite - * setups (e.g. `noExternal: true` deploys). - * - * The API mirrors `interval-tree-1d` (`insert` + `queryInterval`), so swap - * to a real tree if profiling ever shows it matters. + * Same `insert` + `queryInterval` API as `interval-tree-1d` (used by Observable + * Plot and SveltePlot). For ~4k+ items this is dramatically faster than a + * linear scan; for tiny inputs the tree overhead is negligible. Tree is not + * self-balancing, but dodge inputs distribute `lo` ≈ uniformly along the + * anchor axis, so depth stays close to `O(log n)` in practice. */ +type Interval = [lo: number, hi: number, id: number]; + +type IntervalNode = { + interval: Interval; + maxHi: number; + left: IntervalNode | null; + right: IntervalNode | null; +}; + function createIntervalTree() { - const items: Array<[number, number, number]> = []; + let root: IntervalNode | null = null; + + function insertInto(node: IntervalNode | null, interval: Interval): IntervalNode { + if (!node) { + return { interval, maxHi: interval[1], left: null, right: null }; + } + if (interval[0] < node.interval[0]) { + node.left = insertInto(node.left, interval); + } else { + node.right = insertInto(node.right, interval); + } + if (interval[1] > node.maxHi) node.maxHi = interval[1]; + return node; + } + + function queryNode( + node: IntervalNode | null, + lo: number, + hi: number, + visit: (interval: Interval) => void + ) { + if (!node || node.maxHi < lo) return; + queryNode(node.left, lo, hi, visit); + const it = node.interval; + if (it[0] <= hi && it[1] >= lo) visit(it); + // Once `it[0] > hi` the right subtree (all `lo >= it[0]`) cannot overlap. + if (it[0] <= hi) queryNode(node.right, lo, hi, visit); + } + return { - insert(interval: [number, number, number]) { - items.push(interval); + insert(interval: Interval) { + root = insertInto(root, interval); }, - queryInterval(lo: number, hi: number, visit: (interval: [number, number, number]) => void) { - for (let i = 0; i < items.length; i++) { - const it = items[i]; - if (it[0] <= hi && it[1] >= lo) visit(it); - } + queryInterval(lo: number, hi: number, visit: (interval: Interval) => void) { + queryNode(root, lo, hi, visit); }, }; } @@ -144,10 +176,6 @@ function compareSymmetric(a: number, b: number): number { return Math.abs(a) - Math.abs(b); } -function compareAscending(a: number, b: number): number { - return a - b; -} - /** * Pack items along one axis so they don't overlap, given their positions on * the other axis. Modeled after Observable Plot's `dodge` transform — uses an @@ -197,14 +225,17 @@ function buildResult( function dodgeCircular(input: DodgeInput[], opts: DodgeOpts): DodgeItem[] { const { axis, anchor, padding, baseline } = opts; const dir = anchorDirection(axis, anchor); - const compare = dir === 0 ? compareSymmetric : compareAscending; + const isMiddle = dir === 0; // `intervals[0..k]` is a flat array of [lo0, hi0, lo1, hi1, ...] forbidden // zones along the dodge axis for the current item. Slot 0/1 is reserved // for the natural anchor zone ([0, 0], a no-op zone keeping y=0 in the // candidate set). Tangent positions from each colliding placed item add - // two more candidate y values each. - const intervals = new Float64Array(2 * input.length + 2); + // two more candidate y values each. `candidates` is a parallel buffer for + // the sortable copy — pre-allocated once to avoid per-iteration allocation. + const cap = 2 * input.length + 2; + const intervals = new Float64Array(cap); + const candidates = new Float64Array(cap); const packed = new Float64Array(input.length); const tree = createIntervalTree(); @@ -213,12 +244,12 @@ function dodgeCircular(input: DodgeInput[], opts: DodgeOpts): DodgeItem const ri = item.r; // y0 shifts the natural anchor by ri+padding so the item sits flush // against the baseline. middle anchor (dir=0) needs no shift. - const y0 = dir !== 0 ? ri + padding : 0; + const y0 = isMiddle ? 0 : ri + padding; const l = item.x - ri; const h = item.x + ri; let k = 2; - tree.queryInterval(l - padding, h + padding, (interval: [number, number, number]) => { + tree.queryInterval(l - padding, h + padding, (interval: Interval) => { const j = interval[2]; const yj = packed[j] - y0; const dx = item.x - input[j].x; @@ -231,15 +262,28 @@ function dodgeCircular(input: DodgeInput[], opts: DodgeOpts): DodgeItem } }); - let candidates = Array.from(intervals.slice(0, k)); - if (dir !== 0) candidates = candidates.filter((y) => y >= 0); - candidates.sort(compare); + // Sort the candidate y-values in-place into our reusable buffer. Native + // typed-array sort is materially faster than Array.sort with a JS + // comparator. For non-middle anchors we want ascending order (default); + // for middle we want symmetric (closest to 0 first), which still goes + // through the typed-array sort and avoids the prior allocation. + const view = candidates.subarray(0, k); + view.set(intervals.subarray(0, k)); + if (isMiddle) { + view.sort(compareSymmetric); + } else { + view.sort(); + } let chosen = y0; // fallback: natural anchor when nothing fits - out: for (const y of candidates) { + outer: for (let c = 0; c < k; c++) { + const y = view[c]; + // For non-middle anchors, items grow only in the +y direction relative + // to y0 — negative candidates are below the baseline and inadmissible. + if (!isMiddle && y < 0) continue; for (let j = 0; j < k; j += 2) { if (intervals[j] + 1e-6 < y && y < intervals[j + 1] - 1e-6) { - continue out; + continue outer; } } chosen = y + y0; @@ -278,7 +322,7 @@ function dodgeRows( const h = item.x + item.r; const used = new Set(); - tree.queryInterval(l - padding, h + padding, (interval: [number, number, number]) => { + tree.queryInterval(l - padding, h + padding, (interval: Interval) => { used.add(rows[interval[2]]); }); From ef942fffd447e030bc522446a91e87753af0ee85 Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Tue, 5 May 2026 09:00:03 -0400 Subject: [PATCH 12/15] Add dodge to layer-specific exports and add bundle scenario --- bundle-analyzer/bundle-scenarios.ts | 7 +++++++ packages/layerchart/src/lib/canvas.ts | 2 ++ packages/layerchart/src/lib/html.ts | 2 ++ packages/layerchart/src/lib/svg.ts | 2 ++ 4 files changed, 13 insertions(+) diff --git a/bundle-analyzer/bundle-scenarios.ts b/bundle-analyzer/bundle-scenarios.ts index da93cfcd8..cecbd620b 100644 --- a/bundle-analyzer/bundle-scenarios.ts +++ b/bundle-analyzer/bundle-scenarios.ts @@ -395,6 +395,12 @@ export const scenarios: Scenario[] = [ description: 'Circle packing layout', imports: ['Chart', 'Svg', 'Pack', 'Circle', 'Text'], }, + { + name: 'dodge', + group: 'Hierarchy', + description: 'Dodge non-overlapping packing (deterministic alternative to ForceSimulation)', + imports: ['Chart', 'Svg', 'Dodge', 'Circle'], + }, // --- Graph / network --- { @@ -1776,6 +1782,7 @@ const INDIVIDUAL_COMPONENTS: string[] = [ 'Contour', 'Dagre', 'Density', + 'Dodge', 'Ellipse', 'ForceSimulation', 'Frame', diff --git a/packages/layerchart/src/lib/canvas.ts b/packages/layerchart/src/lib/canvas.ts index 12609f10c..aa80557d5 100644 --- a/packages/layerchart/src/lib/canvas.ts +++ b/packages/layerchart/src/lib/canvas.ts @@ -335,6 +335,8 @@ export { default as Sankey } from './components/graph/Sankey.svelte'; export * from './components/graph/Sankey.svelte'; export { default as ForceSimulation } from './components/force/ForceSimulation.svelte'; export * from './components/force/ForceSimulation.svelte'; +export { default as Dodge } from './components/Dodge/Dodge.svelte'; +export * from './components/Dodge/Dodge.svelte'; // Geo helpers (no per-layer rendering) export { default as GeoLegend } from './components/geo/GeoLegend/GeoLegend.svelte'; diff --git a/packages/layerchart/src/lib/html.ts b/packages/layerchart/src/lib/html.ts index 089277427..e2007fc83 100644 --- a/packages/layerchart/src/lib/html.ts +++ b/packages/layerchart/src/lib/html.ts @@ -211,3 +211,5 @@ export { default as Sankey } from './components/graph/Sankey.svelte'; export * from './components/graph/Sankey.svelte'; export { default as ForceSimulation } from './components/force/ForceSimulation.svelte'; export * from './components/force/ForceSimulation.svelte'; +export { default as Dodge } from './components/Dodge/Dodge.svelte'; +export * from './components/Dodge/Dodge.svelte'; diff --git a/packages/layerchart/src/lib/svg.ts b/packages/layerchart/src/lib/svg.ts index 19fa6fabb..85fcf178e 100644 --- a/packages/layerchart/src/lib/svg.ts +++ b/packages/layerchart/src/lib/svg.ts @@ -340,6 +340,8 @@ export { default as Sankey } from './components/graph/Sankey.svelte'; export * from './components/graph/Sankey.svelte'; export { default as ForceSimulation } from './components/force/ForceSimulation.svelte'; export * from './components/force/ForceSimulation.svelte'; +export { default as Dodge } from './components/Dodge/Dodge.svelte'; +export * from './components/Dodge/Dodge.svelte'; // Geo helpers (no per-layer rendering) export { default as GeoLegend } from './components/geo/GeoLegend/GeoLegend.svelte'; From c438e0627db67759489a410aa23d4f83def2e7a0 Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Tue, 5 May 2026 10:35:05 -0400 Subject: [PATCH 13/15] Add more bundle scenarios includes Dodge --- bundle-analyzer/bundle-scenarios.ts | 204 ++++++++++++++++++++++++++++ 1 file changed, 204 insertions(+) diff --git a/bundle-analyzer/bundle-scenarios.ts b/bundle-analyzer/bundle-scenarios.ts index cecbd620b..f18d7cd2a 100644 --- a/bundle-analyzer/bundle-scenarios.ts +++ b/bundle-analyzer/bundle-scenarios.ts @@ -1737,6 +1737,210 @@ export const scenarios: Scenario[] = [ layers: { GeoEdgeFade: 'canvas' }, }, + // Layer-agnostic primitive (Blur — has all three layer variants). + { + name: 'Blur', + group: 'Components', + description: 'Standalone Blur (agnostic) — baseline', + imports: ['Blur'], + }, + { + name: 'Blur.svg', + group: 'Components', + description: 'Standalone Blur from `layerchart/svg`', + imports: ['Blur'], + layers: { Blur: 'svg' }, + }, + { + name: 'Blur.canvas', + group: 'Components', + description: 'Standalone Blur from `layerchart/canvas`', + imports: ['Blur'], + layers: { Blur: 'canvas' }, + }, + { + name: 'Blur.html', + group: 'Components', + description: 'Standalone Blur from `layerchart/html`', + imports: ['Blur'], + layers: { Blur: 'html' }, + }, + + // Ribbon (svg + canvas only). + { + name: 'Ribbon', + group: 'Components', + description: 'Standalone Ribbon (agnostic) — baseline', + imports: ['Ribbon'], + }, + { + name: 'Ribbon.svg', + group: 'Components', + description: 'Standalone Ribbon from `layerchart/svg`', + imports: ['Ribbon'], + layers: { Ribbon: 'svg' }, + }, + { + name: 'Ribbon.canvas', + group: 'Components', + description: 'Standalone Ribbon from `layerchart/canvas`', + imports: ['Ribbon'], + layers: { Ribbon: 'canvas' }, + }, + + // Layout components (single agnostic file each — they don't render their + // own marks; consumers compose primitives in the children snippet). + { + name: 'Dodge', + group: 'Components', + description: 'Standalone Dodge — baseline', + imports: ['Dodge'], + }, + { + name: 'ForceSimulation', + group: 'Components', + description: 'Standalone ForceSimulation — baseline', + imports: ['ForceSimulation'], + }, + { + name: 'Pack', + group: 'Components', + description: 'Standalone Pack — baseline', + imports: ['Pack'], + }, + { + name: 'Tree', + group: 'Components', + description: 'Standalone Tree — baseline', + imports: ['Tree'], + }, + { + name: 'Treemap', + group: 'Components', + description: 'Standalone Treemap — baseline', + imports: ['Treemap'], + }, + { + name: 'Partition', + group: 'Components', + description: 'Standalone Partition — baseline', + imports: ['Partition'], + }, + { + name: 'Chord', + group: 'Components', + description: 'Standalone Chord — baseline', + imports: ['Chord'], + }, + { + name: 'Dagre', + group: 'Components', + description: 'Standalone Dagre — baseline', + imports: ['Dagre'], + }, + { + name: 'Sankey', + group: 'Components', + description: 'Standalone Sankey — baseline', + imports: ['Sankey'], + }, + + // Geo helpers (no per-layer rendering). + { + name: 'GeoLegend', + group: 'Components', + description: 'Standalone GeoLegend — baseline', + imports: ['GeoLegend'], + }, + { + name: 'GeoProjection', + group: 'Components', + description: 'Standalone GeoProjection — baseline', + imports: ['GeoProjection'], + }, + { + name: 'GeoRaster', + group: 'Components', + description: 'Standalone GeoRaster — baseline', + imports: ['GeoRaster'], + }, + { + name: 'GeoVisible', + group: 'Components', + description: 'Standalone GeoVisible — baseline', + imports: ['GeoVisible'], + }, + + // Interaction / context wrappers. + { + name: 'Tooltip', + group: 'Components', + description: 'Standalone Tooltip — baseline', + imports: ['Tooltip'], + }, + { + name: 'BrushContext', + group: 'Components', + description: 'Standalone BrushContext — baseline', + imports: ['BrushContext'], + }, + { + name: 'TransformContext', + group: 'Components', + description: 'Standalone TransformContext — baseline', + imports: ['TransformContext'], + }, + { + name: 'MotionPath', + group: 'Components', + description: 'Standalone MotionPath — baseline', + imports: ['MotionPath'], + }, + + // Utility / decoration components. + { + name: 'Layer', + group: 'Components', + description: 'Standalone Layer — baseline', + imports: ['Layer'], + }, + { + name: 'Legend', + group: 'Components', + description: 'Standalone Legend — baseline', + imports: ['Legend'], + }, + { + name: 'CircleLegend', + group: 'Components', + description: 'Standalone CircleLegend — baseline', + imports: ['CircleLegend'], + }, + { + name: 'ColorRamp', + group: 'Components', + description: 'Standalone ColorRamp — baseline', + imports: ['ColorRamp'], + }, + { + name: 'Bounds', + group: 'Components', + description: 'Standalone Bounds — baseline', + imports: ['Bounds'], + }, + { + name: 'Point', + group: 'Components', + description: 'Standalone Point — baseline', + imports: ['Point'], + }, + { + name: 'WebGL', + group: 'Components', + description: 'Standalone WebGL — baseline', + imports: ['WebGL'], + }, + // --- Worst case --- { name: 'all', From cbc5df2d7b61daa9c65e53a1791551505974fa45 Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Tue, 5 May 2026 12:03:23 -0400 Subject: [PATCH 14/15] Improve examples and add note about sort order controlling stacking --- docs/src/content/components/Dodge.md | 8 +++++ .../components/Dodge/text-beeswarm.svelte | 3 +- .../components/Dodge/variable-radius.svelte | 32 +++++++++++++++++-- 3 files changed, 38 insertions(+), 5 deletions(-) diff --git a/docs/src/content/components/Dodge.md b/docs/src/content/components/Dodge.md index afa143f7d..a9f3a14d4 100644 --- a/docs/src/content/components/Dodge.md +++ b/docs/src/content/components/Dodge.md @@ -34,6 +34,14 @@ A classic 1-D beeswarm is `axis="y"` + `anchor="middle"` — items spread symmet `r` is the per-item collision radius (constant or accessor). When omitted, Dodge falls back to the chart's `r` accessor / `rScale`. This lets the `` declare `r="propertyName"` once and have Dodge pick it up automatically. +Because the algorithm processes items in **input order** and greedily picks the candidate closest to the anchor, the order you pass `data` directly shapes the result: + +- **Unsorted** — placement reflects whatever order the data arrived in (e.g. by date), often producing a noisier-looking stack. +- **Largest first** — big items anchor at the baseline; smaller items nestle into the gaps. Produces the cleanest "skyline" silhouette and is the common choice for variable-radius beeswarms. +- **Smallest first** — small items get the prime baseline real estate; later items get pushed outward by every prior placement, so large items end up far from the anchor. + +The example below lets you toggle the sort order to see this directly: + :example{ name="variable-radius" } Any mark works inside the snippet — drive a `` font size from the resolved `r` to scale labels alongside the dodge radius. diff --git a/docs/src/examples/components/Dodge/text-beeswarm.svelte b/docs/src/examples/components/Dodge/text-beeswarm.svelte index 3fb46c9ef..8a287bcdc 100644 --- a/docs/src/examples/components/Dodge/text-beeswarm.svelte +++ b/docs/src/examples/components/Dodge/text-beeswarm.svelte @@ -17,8 +17,7 @@ +
+ + + Unsorted + Largest first + Smallest first + + + + +
+ From a478c54b5820e066cf6dd95fd5d3f630b6ea7df4 Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Tue, 5 May 2026 13:15:25 -0400 Subject: [PATCH 15/15] Replace `rowHeight` with `rx/ry` to specify separate anchor/dodge axis values --- docs/src/content/components/Dodge.md | 15 +- .../Dodge/duration-bars-dense-lanes.svelte | 4 +- .../Dodge/timeline-bidirectional.svelte | 8 +- .../examples/components/Dodge/timeline.svelte | 4 +- .../components/Dodge/Dodge.shared.svelte.ts | 129 +++++++++++++----- .../src/lib/components/Dodge/Dodge.svelte | 22 ++- .../src/lib/components/Dodge/Dodge.test.ts | 65 +++++---- 7 files changed, 174 insertions(+), 73 deletions(-) diff --git a/docs/src/content/components/Dodge.md b/docs/src/content/components/Dodge.md index a9f3a14d4..8f9a6606d 100644 --- a/docs/src/content/components/Dodge.md +++ b/docs/src/content/components/Dodge.md @@ -48,9 +48,18 @@ Any mark works inside the snippet — drive a `` font size from the resolv :example{ name="text-beeswarm" } -## Row mode (`rowHeight`) +## Rectangular packing (`rx` / `ry`) -Circular packing produces unnecessarily large vertical gaps when collision radius is much wider than item height — typical for text labels where `r ≈ labelWidth/2`. Set `rowHeight` to switch to rectangular row-based packing: items are placed in fixed-height rows, with collision checked horizontally only. +Circular packing produces unnecessarily large vertical gaps when an item is much wider than tall — typical for text labels and Gantt-style time bars. Provide `rx` and `ry` (per-axis half-extents) instead of `r` to switch to axis-aligned rectangular collision: items snap to fixed-height rows along the dodge axis, with collision checked along the anchor axis. + +| `axis` | Anchor-axis half-extent | Dodge-axis half-extent (row size) | +| ------ | ----------------------- | --------------------------------- | +| `'y'` | `rx` (typically per-item, e.g. `labelWidth/2`) | `ry` (typically a constant) — row spacing is `2 * ry` | +| `'x'` | `ry` (per-item) | `rx` (constant) — column spacing is `2 * rx` | + +```svelte + labelWidth(d) / 2} ry={8} /> +``` :example{ name="timeline" } @@ -64,6 +73,6 @@ This works by combining multiple `` instances, each with its own `baselin ## Time-range lanes (Gantt-style) -For events with start/end ranges, pass each item's pixel midpoint as `position` and half its pixel width as `r`. With `rowHeight` set, Dodge packs each event into the lowest non-overlapping lane. +For events with start/end ranges, pass each item's pixel midpoint as `position` and half its pixel width as `rx` (the anchor-axis half-extent). With `ry` set to half the desired lane height, Dodge packs each event into the lowest non-overlapping lane. :example{ name="duration-bars-dense-lanes" } diff --git a/docs/src/examples/components/Dodge/duration-bars-dense-lanes.svelte b/docs/src/examples/components/Dodge/duration-bars-dense-lanes.svelte index f952a36d9..b4158ba3f 100644 --- a/docs/src/examples/components/Dodge/duration-bars-dense-lanes.svelte +++ b/docs/src/examples/components/Dodge/duration-bars-dense-lanes.svelte @@ -32,9 +32,9 @@ axis="y" anchor="top" padding={2} - {rowHeight} + rx={(d) => (endX(d) - startX(d)) / 2} + ry={rowHeight / 2} position={(d) => (startX(d) + endX(d)) / 2} - r={(d) => (endX(d) - startX(d)) / 2} > {#snippet children({ items })} {#each items as { data: ev, y, index } (index)} diff --git a/docs/src/examples/components/Dodge/timeline-bidirectional.svelte b/docs/src/examples/components/Dodge/timeline-bidirectional.svelte index 358dc1d85..562d02cae 100644 --- a/docs/src/examples/components/Dodge/timeline-bidirectional.svelte +++ b/docs/src/examples/components/Dodge/timeline-bidirectional.svelte @@ -80,8 +80,8 @@ anchor="bottom" baseline={baselineY} padding={4} - rowHeight={16} - r={(d) => labelHalfWidth(d.label)} + rx={(d) => labelHalfWidth(d.label)} + ry={8} > {#snippet children({ items: dodged })} {#each dodged as { data: item, x, y, index } (index)} @@ -119,8 +119,8 @@ anchor="top" baseline={baselineY} padding={4} - rowHeight={16} - r={(d) => labelHalfWidth(d.label)} + rx={(d) => labelHalfWidth(d.label)} + ry={8} > {#snippet children({ items: dodged })} {#each dodged as { data: item, x, y, index } (index)} diff --git a/docs/src/examples/components/Dodge/timeline.svelte b/docs/src/examples/components/Dodge/timeline.svelte index 67bbea09e..7232dfead 100644 --- a/docs/src/examples/components/Dodge/timeline.svelte +++ b/docs/src/examples/components/Dodge/timeline.svelte @@ -60,8 +60,8 @@ axis="y" anchor="bottom" padding={4} - rowHeight={16} - r={(d) => labelHalfWidth(d.label)} + rx={(d) => labelHalfWidth(d.label)} + ry={8} > {#snippet children({ items: dodged })} {#each dodged as { data: item, x, y, index } (index)} diff --git a/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts b/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts index c6840f8c3..0ceeb1824 100644 --- a/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts +++ b/packages/layerchart/src/lib/components/Dodge/Dodge.shared.svelte.ts @@ -69,8 +69,12 @@ export type DodgeItem = { x: number; /** Pixel position along the y-axis. */ y: number; - /** Resolved radius used for collision detection. */ + /** Resolved circular radius (circular mode) or anchor-axis half-extent (rectangular mode). */ r: number; + /** Resolved x-axis half-extent. Equal to `r` in circular mode. */ + rx: number; + /** Resolved y-axis half-extent. Equal to `r` in circular mode. */ + ry: number; /** Original index of the datum in the input `data` array. */ index: number; }; @@ -95,10 +99,8 @@ export type DodgePropsWithoutHTML = { */ padding?: number; /** - * Radius (or accessor) used for collision detection. - * - In circular mode (default), this is the literal collision radius. - * - In row mode (`rowHeight` set), this is the half-extent along the - * anchor axis (e.g. half the label width for text labels). + * Circular collision radius (or accessor). Used unless both `rx` and `ry` + * are provided. * * Resolution priority: * 1. This prop, if set. @@ -107,14 +109,24 @@ export type DodgePropsWithoutHTML = { */ r?: number | ((d: T) => number); /** - * If set, switches to row-based rectangular packing instead of circular dodge. - * Items are placed in fixed-height rows along the dodge axis; collision - * is checked horizontally (anchor axis) using `r` as half-extent. + * X-axis half-extent (or accessor). When set together with `ry`, switches + * to axis-aligned **rectangular** packing instead of circular collision. * - * Useful for text labels where circular collision would produce - * unnecessarily large vertical gaps. + * For `axis='y'` (vertical dodge), `rx` controls the horizontal collision + * extent (typically the per-item value, e.g. half the label width). For + * `axis='x'` (horizontal dodge), `rx` becomes the dodge-axis (column) + * half-extent and is typically a constant. */ - rowHeight?: number; + rx?: number | ((d: T) => number); + /** + * Y-axis half-extent (or accessor). When set together with `rx`, switches + * to axis-aligned **rectangular** packing instead of circular collision. + * + * For `axis='y'` (vertical dodge), `ry` becomes the dodge-axis (row) + * half-extent and is typically a constant. For `axis='x'`, `ry` controls + * the vertical collision extent. + */ + ry?: number | ((d: T) => number); /** * Override the anchor-axis pixel accessor. * For `axis='y'`, this is x; for `axis='x'`, this is y. @@ -142,7 +154,16 @@ export type DodgePropsWithoutHTML = { export type DodgeProps = DodgePropsWithoutHTML; -type DodgeInput = { x: number; r: number; data: T; index: number }; +type DodgeInput = { + /** Anchor-axis pixel position (always — the algorithm packs the other axis). */ + x: number; + /** X-axis half-extent. */ + rx: number; + /** Y-axis half-extent. */ + ry: number; + data: T; + index: number; +}; type DodgeOpts = { axis: 'x' | 'y'; @@ -150,8 +171,12 @@ type DodgeOpts = { padding: number; /** Pixel coordinate (along the dodge axis) of the line items grow away from. */ baseline: number; - /** When set, switch to row-based rectangular packing. */ - rowHeight?: number; + /** + * When `true`, switch from circular to axis-aligned rectangular packing. + * Inputs' `rx` / `ry` are then treated as independent half-extents per axis + * (the dodge-axis half-extent should be uniform for sensible row alignment). + */ + rectangular?: boolean; }; /** @@ -185,14 +210,15 @@ function compareSymmetric(a: number, b: number): number { * algorithm packs along the dodge axis and the wrapper swaps `x`/`y` in the * result for `axis='x'`. * - * For text labels (where collision is more naturally rectangular), set - * `rowHeight` to switch to row-based packing. + * Set `opts.rectangular` to true to switch from circular to axis-aligned + * rectangular packing — useful for text labels where the bounding box is much + * wider than tall (so a circular `r` would produce excessive vertical gaps). * * @see https://observablehq.com/plot/transforms/dodge */ export function dodge(input: DodgeInput[], opts: DodgeOpts): DodgeItem[] { - if (opts.rowHeight != null) { - return dodgeRows(input, opts as DodgeOpts & { rowHeight: number }); + if (opts.rectangular) { + return dodgeRows(input, opts); } return dodgeCircular(input, opts); } @@ -214,10 +240,30 @@ function buildResult( for (let i = 0; i < input.length; i++) { const item = input[i]; const dodgePos = packed[i] * factor + baseline; + // `r` carries the anchor-axis half-extent for back-compat with circular + // callers (``). In rectangular mode that's `rx` for axis='y' + // and `ry` for axis='x' — i.e. whichever axis the layout collides on. + const rAnchor = axis === 'y' ? item.rx : item.ry; result[i] = axis === 'y' - ? { data: item.data, x: item.x, y: dodgePos, r: item.r, index: item.index } - : { data: item.data, x: dodgePos, y: item.x, r: item.r, index: item.index }; + ? { + data: item.data, + x: item.x, + y: dodgePos, + r: rAnchor, + rx: item.rx, + ry: item.ry, + index: item.index, + } + : { + data: item.data, + x: dodgePos, + y: item.x, + r: rAnchor, + rx: item.rx, + ry: item.ry, + index: item.index, + }; } return result; } @@ -241,7 +287,9 @@ function dodgeCircular(input: DodgeInput[], opts: DodgeOpts): DodgeItem for (let i = 0; i < input.length; i++) { const item = input[i]; - const ri = item.r; + // Circular mode: `rx === ry` (Dodge.svelte ensures this), so either one + // is the circular radius. Using `rx` keeps the field reference uniform. + const ri = item.rx; // y0 shifts the natural anchor by ri+padding so the item sits flush // against the baseline. middle anchor (dir=0) needs no shift. const y0 = isMiddle ? 0 : ri + padding; @@ -253,7 +301,7 @@ function dodgeCircular(input: DodgeInput[], opts: DodgeOpts): DodgeItem const j = interval[2]; const yj = packed[j] - y0; const dx = item.x - input[j].x; - const dr = ri + input[j].r + padding; + const dr = ri + input[j].rx + padding; const sq = dr * dr - dx * dx; if (sq >= 0) { const dy = Math.sqrt(sq); @@ -298,19 +346,25 @@ function dodgeCircular(input: DodgeInput[], opts: DodgeOpts): DodgeItem } /** - * Row-based rectangular packing — same interval-tree query as circular dodge, - * but we only care which rows are already occupied in the overlap range. - * Items are placed in the lowest free row at fixed `rowHeight` increments. + * Axis-aligned rectangular packing — same interval-tree query as circular + * dodge, but we only care which rows/columns are already occupied in the + * overlap range. Items snap to the lowest free row at fixed increments along + * the dodge axis. + * + * Half-extent semantics: + * - For `axis='y'`: `rx` is the anchor-axis (horizontal) collision extent; + * `ry` is the dodge-axis (row) half-extent. Row spacing = `2 * ry`. + * - For `axis='x'`: `ry` is the anchor-axis (vertical) collision extent; + * `rx` is the dodge-axis (column) half-extent. Column spacing = `2 * rx`. * - * Useful for text labels where treating each label as a circle of radius - * `labelWidth/2` would produce unnecessarily large vertical gaps. + * The anchor-axis half-extent typically varies per item (e.g. half a label's + * width); the dodge-axis half-extent should be uniform for sensible + * row alignment. */ -function dodgeRows( - input: DodgeInput[], - opts: DodgeOpts & { rowHeight: number } -): DodgeItem[] { - const { axis, anchor, padding, baseline, rowHeight } = opts; +function dodgeRows(input: DodgeInput[], opts: DodgeOpts): DodgeItem[] { + const { axis, anchor, padding, baseline } = opts; const dir = anchorDirection(axis, anchor); + const isVertical = axis === 'y'; const rows = new Int32Array(input.length); const packed = new Float64Array(input.length); @@ -318,8 +372,10 @@ function dodgeRows( for (let i = 0; i < input.length; i++) { const item = input[i]; - const l = item.x - item.r; - const h = item.x + item.r; + const rAnchor = isVertical ? item.rx : item.ry; + const rDodge = isVertical ? item.ry : item.rx; + const l = item.x - rAnchor; + const h = item.x + rAnchor; const used = new Set(); tree.queryInterval(l - padding, h + padding, (interval: Interval) => { @@ -330,14 +386,15 @@ function dodgeRows( while (used.has(row)) row++; rows[i] = row; + // Row spacing is `2 * rDodge`; centers fall at half-row offsets. if (dir === 0) { // middle: alternate above/below (even rows above, odd rows below) const sign = row % 2 === 0 ? -1 : 1; const step = Math.floor(row / 2) + (row === 0 ? 0 : 1); - packed[i] = sign * step * rowHeight; + packed[i] = sign * step * 2 * rDodge; } else { // start/end: stack outward from the anchor edge - packed[i] = row * rowHeight + rowHeight / 2; + packed[i] = row * 2 * rDodge + rDodge; } tree.insert([l, h, i]); diff --git a/packages/layerchart/src/lib/components/Dodge/Dodge.svelte b/packages/layerchart/src/lib/components/Dodge/Dodge.svelte index 8f9d5ae49..a06c9bea0 100644 --- a/packages/layerchart/src/lib/components/Dodge/Dodge.svelte +++ b/packages/layerchart/src/lib/components/Dodge/Dodge.svelte @@ -18,7 +18,8 @@ anchor, padding = 1, r, - rowHeight, + rx, + ry, position, baseline: baselineProp, children, @@ -36,6 +37,11 @@ position ?? ((axis === 'y' ? ctx.xGet : ctx.yGet) as (d: T) => number) ); + // Rectangular mode is opt-in by providing both `rx` and `ry`. + const rectangular = $derived(rx != null && ry != null); + + // Resolve `r` (circular fallback) — also serves as the default per-axis + // half-extent in circular mode (rx === ry === r). const rFn = $derived.by(() => { if (typeof r === 'function') return r as (d: T) => number; if (r != null) return () => r as number; @@ -43,6 +49,15 @@ return () => 5; }); + function asFn(v: number | ((d: T) => number) | undefined, fallback: (d: T) => number) { + if (typeof v === 'function') return v as (d: T) => number; + if (v != null) return () => v as number; + return fallback; + } + + const rxFn = $derived(asFn(rx, rFn)); + const ryFn = $derived(asFn(ry, rFn)); + // Default baseline: the chart-coord position of the anchor edge / centerline. const baseline = $derived.by(() => { if (baselineProp != null) return baselineProp; @@ -55,7 +70,8 @@ const items = $derived.by(() => { const input = data.map((d, index) => ({ x: Number(positionFn(d)) || 0, - r: Number(rFn(d)) || 0, + rx: Number(rxFn(d)) || 0, + ry: Number(ryFn(d)) || 0, data: d, index, })); @@ -64,7 +80,7 @@ anchor: resolvedAnchor, padding, baseline, - rowHeight, + rectangular, }); }); diff --git a/packages/layerchart/src/lib/components/Dodge/Dodge.test.ts b/packages/layerchart/src/lib/components/Dodge/Dodge.test.ts index a4f656b65..0c1571550 100644 --- a/packages/layerchart/src/lib/components/Dodge/Dodge.test.ts +++ b/packages/layerchart/src/lib/components/Dodge/Dodge.test.ts @@ -3,8 +3,26 @@ import { dodge } from './Dodge.shared.svelte.js'; type T = { id: string }; +/** Build inputs for the circular case (`rx === ry === r`). */ function input(arr: { id: string; x: number; r: number }[]) { - return arr.map((d, index) => ({ x: d.x, r: d.r, data: { id: d.id }, index })); + return arr.map((d, index) => ({ + x: d.x, + rx: d.r, + ry: d.r, + data: { id: d.id }, + index, + })); +} + +/** Build inputs for rectangular cases (per-axis half-extents). */ +function rectInput(arr: { id: string; x: number; rx: number; ry: number }[]) { + return arr.map((d, index) => ({ + x: d.x, + rx: d.rx, + ry: d.ry, + data: { id: d.id }, + index, + })); } describe('dodge() — circular packing', () => { @@ -88,28 +106,29 @@ describe('dodge() — circular packing', () => { }); }); -describe('dodge() — row-based packing (rowHeight)', () => { +describe('dodge() — rectangular packing (rx + ry)', () => { + // ry = 8 ⇒ row spacing = 2 * ry = 16 (matches the old `rowHeight: 16` cases). it('places non-overlapping items in row 0', () => { const out = dodge( - input([ - { id: 'a', x: 0, r: 20 }, // spans -20 to 20 - { id: 'b', x: 100, r: 20 }, // spans 80 to 120 + rectInput([ + { id: 'a', x: 0, rx: 20, ry: 8 }, // spans -20 to 20 + { id: 'b', x: 100, rx: 20, ry: 8 }, // spans 80 to 120 ]), - { axis: 'y', anchor: 'bottom', padding: 0, baseline: 200, rowHeight: 16 } + { axis: 'y', anchor: 'bottom', padding: 0, baseline: 200, rectangular: true } ); - // Row 0 center from bottom = baseline - rowHeight/2 = 192 + // Row 0 center from bottom = baseline - ry = 192 expect(out[0].y).toBe(192); expect(out[1].y).toBe(192); }); it('stacks horizontally-overlapping items into separate rows', () => { const out = dodge( - input([ - { id: 'a', x: 50, r: 30 }, - { id: 'b', x: 60, r: 30 }, - { id: 'c', x: 70, r: 30 }, + rectInput([ + { id: 'a', x: 50, rx: 30, ry: 8 }, + { id: 'b', x: 60, rx: 30, ry: 8 }, + { id: 'c', x: 70, rx: 30, ry: 8 }, ]), - { axis: 'y', anchor: 'bottom', padding: 0, baseline: 200, rowHeight: 16 } + { axis: 'y', anchor: 'bottom', padding: 0, baseline: 200, rectangular: true } ); // Input order: a → row 0, b overlaps a → row 1, c overlaps both → row 2 // Row centers from bottom: 192, 176, 160. @@ -120,27 +139,27 @@ describe('dodge() — row-based packing (rowHeight)', () => { it("reuses row 0 when later items don't overlap earlier ones in that row", () => { const out = dodge( - input([ - { id: 'a', x: 0, r: 10 }, - { id: 'b', x: 5, r: 10 }, // overlaps a → row 1 - { id: 'c', x: 100, r: 10 }, // far from both → row 0 + rectInput([ + { id: 'a', x: 0, rx: 10, ry: 8 }, + { id: 'b', x: 5, rx: 10, ry: 8 }, // overlaps a → row 1 + { id: 'c', x: 100, rx: 10, ry: 8 }, // far from both → row 0 ]), - { axis: 'y', anchor: 'bottom', padding: 0, baseline: 200, rowHeight: 16 } + { axis: 'y', anchor: 'bottom', padding: 0, baseline: 200, rectangular: true } ); expect(out[0].y).toBe(192); expect(out[1].y).toBe(176); expect(out[2].y).toBe(192); }); - it('respects anchor=top for row mode', () => { + it('respects anchor=top for rectangular mode', () => { const out = dodge( - input([ - { id: 'a', x: 50, r: 30 }, - { id: 'b', x: 60, r: 30 }, + rectInput([ + { id: 'a', x: 50, rx: 30, ry: 8 }, + { id: 'b', x: 60, rx: 30, ry: 8 }, ]), - { axis: 'y', anchor: 'top', padding: 0, baseline: 0, rowHeight: 16 } + { axis: 'y', anchor: 'top', padding: 0, baseline: 0, rectangular: true } ); - // Row 0 from top: 0 + 16/2 = 8. Row 1: 24. + // Row 0 from top: 0 + ry = 8. Row 1: 24. expect(out[0].y).toBe(8); expect(out[1].y).toBe(24); });