diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..6940fad --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,29 @@ +name: Tests + +on: + push: + branches: [dev, main] + pull_request: + branches: [dev, main] + +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.11", "3.12", "3.13", "3.14"] + + steps: + - uses: actions/checkout@v4 + + - name: Install uv + uses: astral-sh/setup-uv@v5 + + - name: Set up Python ${{ matrix.python-version }} + run: uv python install ${{ matrix.python-version }} + + - name: Install dependencies + run: uv sync --all-groups --python ${{ matrix.python-version }} + + - name: Run tests with coverage + run: uv run pytest -v --cov=suggests --cov-report=term-missing diff --git a/.gitignore b/.gitignore index b4e6cf6..1a19560 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ *__pycache__ +.claude +.coverage .venv archive build diff --git a/README.md b/README.md index 8dd1738..e2386c8 100644 --- a/README.md +++ b/README.md @@ -155,7 +155,7 @@ Reduce to new information obtained in suggestions. E.g. `abortion -> abortion la ```py In [5]: edges = suggests.add_parent_nodes(edges) -In [6]: edges = edges.apply(suggests.add_metanodes, axis=1) +In [6]: edges = suggests.add_metanodes(edges) In [7]: show_cols = ['source','target','grandparent','parent','source_add','target_add'] In [8]: edges[show_cols].head() Out[9]: @@ -172,9 +172,13 @@ Out[9]: 9 abortion laws 2019 abortion laws 2019 georgia NaN abortion laws 2019 georgia ``` -Plotted in [Gephi](https://gephi.org/). The size of nodes corresponds to their PageRank, and node colors indicate communities that were determined using Gephi's default community detection algorithm, the Louvain method: +Plotted in [Gephi](https://gephi.org/) from an older dataset that is no longer available. The size of nodes corresponds to their PageRank, and node colors indicate communities that were determined using Gephi's default community detection algorithm, the Louvain method: -![Abortion Association Network](img/abortion_plot_pagerank.png?raw=true "Abortion Association Network") +![Abortion Association Network (Gephi)](img/abortion_plot_pagerank_gephi.png?raw=true "Abortion Association Network (Gephi)") + +The same network can be generated programmatically with `plot_network()`, using the test fixture dataset (`tests/fixtures/abortion-20260312-122801-edges.csv`). Generated by `scripts/plot_abortion_tree.py`. Nodes represent unique search suggestions, and directed edges connect each suggestion to the suggestions it produced. Node sizes are proportional to squared degree (emphasizing highly connected hubs), and colors indicate communities detected using the Louvain method. Only nodes above the 98th percentile of PageRank are labeled, with font sizes scaled by degree. Layout uses igraph's Fruchterman-Reingold algorithm: + +![Abortion Association Network (Python)](img/abortion_plot_pagerank_python.png?raw=true "Abortion Association Network (Python)") ## Contributing Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..01355bb --- /dev/null +++ b/TODO.md @@ -0,0 +1,9 @@ +# TODO + +- [ ] Fix UnboundLocalError in requester when request fails before response is assigned (no plan) +- [ ] Metanode token diff quality issues ([plan](.claude/plans/006-case-sensitive-token-diff.md)) +- [x] Add network plot function to nets.py ([plan](.claude/plans/004-network-plot.md)) +- [x] Migrate pandas to polars ([plan](.claude/plans/003-pandas-to-polars.md)) +- [x] Fix metanode processing bugs ([plan](.claude/plans/005-fix-metanode-bugs.md)) +- [x] Modernize project: docstrings, type hints, ruff, tests, CI ([plan](.claude/plans/002-modernize-project.md)) +- [x] Add language parameter ([plan](.claude/plans/001-language-parameter.md)) diff --git a/img/abortion_plot_pagerank.png b/img/abortion_plot_pagerank_gephi.png similarity index 100% rename from img/abortion_plot_pagerank.png rename to img/abortion_plot_pagerank_gephi.png diff --git a/img/abortion_plot_pagerank_python.png b/img/abortion_plot_pagerank_python.png new file mode 100644 index 0000000..6794c1d Binary files /dev/null and b/img/abortion_plot_pagerank_python.png differ diff --git a/pyproject.toml b/pyproject.toml index 35fb060..3657f31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,16 +1,15 @@ [project] name = "suggests" -version = "0.3.0" +version = "0.3.1" description = "Algorithm auditing tools for search engine autocomplete" license = "MIT" readme = "README.md" authors = [{ name = "Ronald E. Robertson", email = "rer@acm.org" }] -keywords = ["suggestions", "autocomplete", "google", "bing"] -requires-python = ">=3.10" +keywords = ["suggestions", "autocomplete", "google", "bing", "search engine", "search queries"] +requires-python = ">=3.11" dependencies = [ "requests>=2.28", - "pandas>=2.0", - "numpy>=2.0", + "polars>=1.0", "beautifulsoup4>=4.11", ] @@ -20,6 +19,18 @@ homepage = "http://github.com/gitronald/suggests" [project.scripts] demo = 'scripts.demo:main' +[dependency-groups] +dev = [ + "adjusttext>=1.3.0", + "igraph>=1.0.0", + "matplotlib>=3.7", + "networkx>=3.0", + "pytest>=6.2", + "pytest-cov>=4.0", + "ruff>=0.15.4", + "scipy>=1.11", +] + [build-system] requires = ["hatchling"] build-backend = "hatchling.build" diff --git a/scripts/demo.py b/scripts/demo.py index 1b652a2..4c5e3a9 100644 --- a/scripts/demo.py +++ b/scripts/demo.py @@ -1,23 +1,28 @@ -import json +"""Demo script for suggests package.""" + import datetime +import json + +import polars as pl + import suggests -import pandas as pd -def main(): + +def main() -> None: crawl_id = datetime.datetime.now().strftime("%Y%m%d-%H%M%S") get_suggests_tree_args = { - 'root': 'dog', - 'source': 'bing', - 'max_depth': 1, - 'crawl_id': crawl_id, - 'save_to': f'./data/tests/suggests-{crawl_id}.json', - 'sesh_headers': { - 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko/20100101 Firefox/58.0' - } + "root": "dog", + "source": "bing", + "max_depth": 1, + "crawl_id": crawl_id, + "save_to": f"./data/tests/suggests-{crawl_id}.json", + "sesh_headers": { + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko/20100101 Firefox/58.0" + }, } print(json.dumps(get_suggests_tree_args, indent=2)) tree = suggests.get_suggests_tree(**get_suggests_tree_args) - tree_df = pd.DataFrame(tree) + tree_df = pl.DataFrame(tree, strict=False) print(f"\nSuggestion Tree: ({tree_df.shape[0]:,}, {tree_df.shape[1]})") print(tree_df.head()) @@ -25,5 +30,6 @@ def main(): print(f"Suggestion Network Edges: ({edges.shape[0]:,}, {edges.shape[1]})") print(edges.head()) + if __name__ == "__main__": - main() \ No newline at end of file + main() diff --git a/scripts/plot_abortion_tree.py b/scripts/plot_abortion_tree.py new file mode 100644 index 0000000..27a47a5 --- /dev/null +++ b/scripts/plot_abortion_tree.py @@ -0,0 +1,33 @@ +#!/usr/bin/env python +"""Plot the abortion suggestion tree network from the test fixture.""" + +import sys +from pathlib import Path + +import matplotlib +matplotlib.use("Agg") + +import polars as pl +from suggests.nets import plot_network + +FIXTURE_DIR = Path(__file__).parent.parent / "tests" / "fixtures" +EDGES_CSV = FIXTURE_DIR / "abortion-20260312-122801-edges.csv" +IMG_DIR = Path(__file__).parent.parent / "img" + + +def main(save_to: str = "") -> None: + edges = pl.read_csv(EDGES_CSV) + save_to = save_to or str(IMG_DIR / "abortion_plot_pagerank_python.png") + fig = plot_network( + edges, + root="abortion", + label_quantile=0.98, + label_alpha=0.7, + spacing=2.0, + save_to=save_to, + ) + print(f"Saved to {save_to} ({edges.shape[0]} edges, {len(fig.axes[0].texts)} labels)") + + +if __name__ == "__main__": + main(save_to=sys.argv[1] if len(sys.argv) > 1 else "") diff --git a/suggests/__init__.py b/suggests/__init__.py index 7648cc4..96ff203 100644 --- a/suggests/__init__.py +++ b/suggests/__init__.py @@ -1,11 +1,22 @@ -__version__ = "0.3.0" +"""Algorithm auditing tools for search engine autocomplete.""" -from .suggests import get_suggests -from .suggests import get_suggests_tree +__version__ = "0.3.1" -from .parsing import parse_bing -from .parsing import parse_google -from .parsing import to_edgelist +from .parsing import ( + add_metanodes, + add_parent_nodes, + parse_bing, + parse_google, + to_edgelist, +) +from .suggests import get_suggests, get_suggests_tree -from .parsing import add_parent_nodes -from .parsing import add_metanodes +__all__ = [ + "add_metanodes", + "add_parent_nodes", + "get_suggests", + "get_suggests_tree", + "parse_bing", + "parse_google", + "to_edgelist", +] diff --git a/suggests/logger.py b/suggests/logger.py index dd6a6ca..61ea1d1 100644 --- a/suggests/logger.py +++ b/suggests/logger.py @@ -1,79 +1,94 @@ -""" Configure a logger using a dictionary -""" +"""Configure a logger using a dictionary.""" +import logging import logging.config # Formatters: change what gets logged -minimal = '%(message)s' -detailed = '%(asctime)s | %(process)d | %(levelname)s | %(name)s | %(message)s ' -formatters = { - 'minimal': {'format': minimal}, - 'detailed': {'format': detailed} -} +minimal = "%(message)s" +detailed = "%(asctime)s | %(process)d | %(levelname)s | %(name)s | %(message)s " +formatters = {"minimal": {"format": minimal}, "detailed": {"format": detailed}} -class Logger(object): - """ Get logger and set console and file outputs - Ex: - ``` - from logger import Summary - log = Logger('summary.log').get_logger('mylogger') - - ``` +class Logger: + """Get logger and set console and file outputs. + + Args: + file_name: Path for file logging output + file_format: Format type for file output ('minimal' or 'detailed') + file_mode: File open mode + console: Whether to enable console logging + console_format: Format type for console output ('minimal' or 'detailed') + console_level: Logging level for console output """ - def __init__(self, - file_name='', file_format='detailed', file_mode='w', - console=True, console_format='detailed', console_level='DEBUG'): - + + def __init__( + self, + file_name: str = "", + file_format: str = "detailed", + file_mode: str = "w", + console: bool = True, + console_format: str = "detailed", + console_level: str = "DEBUG", + ) -> None: # Handlers: change file and console logging details - handlers = {} + handlers: dict[str, dict] = {} if console: - assert console_format in formatters.keys(), \ - f'Must select formatting type from {list(formatters.keys())}' + assert console_format in formatters, ( + f"Must select formatting type from {list(formatters.keys())}" + ) - handlers['console_handle'] = { - 'class': 'logging.StreamHandler', - 'level': 'DEBUG', - 'formatter': console_format, + handlers["console_handle"] = { + "class": "logging.StreamHandler", + "level": "DEBUG", + "formatter": console_format, } if file_name: - assert type(file_name) is str, 'Must provide name for file logging' - assert file_format in formatters.keys(), \ - f'Must select formatting type from {list(formatters.keys())}' + assert isinstance(file_name, str), "Must provide name for file logging" + assert file_format in formatters, ( + f"Must select formatting type from {list(formatters.keys())}" + ) - handlers['file_handle'] = { - 'class': 'logging.FileHandler', - 'level': 'INFO', - 'formatter': file_format, - 'filename': file_name, - 'mode': file_mode + handlers["file_handle"] = { + "class": "logging.FileHandler", + "level": "INFO", + "formatter": file_format, + "filename": file_name, + "mode": file_mode, } - + # Loggers: change logging options for root and other packages loggers = { # Package logger (not root) - 'suggests': { - 'handlers': list(handlers.keys()), - 'level': 'DEBUG', - 'propagate': False + "suggests": { + "handlers": list(handlers.keys()), + "level": "DEBUG", + "propagate": False, }, # External loggers - 'requests': {'level': 'WARNING'}, - 'urllib3': {'level': 'WARNING'}, - 'matplotlib': {'level': 'WARNING'}, - 'chardet.charsetprober': {'level': 'INFO'}, - 'parso': {'level': 'INFO'} # Fix for ipython autocomplete bug + "requests": {"level": "WARNING"}, + "urllib3": {"level": "WARNING"}, + "matplotlib": {"level": "WARNING"}, + "chardet.charsetprober": {"level": "INFO"}, + "parso": {"level": "INFO"}, # Fix for ipython autocomplete bug } - self.log_config = { - 'version': 1, - 'disable_existing_loggers': False, - 'formatters': formatters, - 'handlers': handlers, - 'loggers': loggers + self.log_config = { + "version": 1, + "disable_existing_loggers": False, + "formatters": formatters, + "handlers": handlers, + "loggers": loggers, } - - def start(self, name="suggests"): + + def start(self, name: str = "suggests") -> logging.Logger: + """Initialize and return a named logger. + + Args: + name: Logger name + + Returns: + Configured logger instance + """ logging.config.dictConfig(self.log_config) return logging.getLogger(name) diff --git a/suggests/nets.py b/suggests/nets.py index 2e885a3..d18527f 100644 --- a/suggests/nets.py +++ b/suggests/nets.py @@ -1,38 +1,230 @@ -""" General network utility functions -""" +"""General network utility functions.""" -import pandas as pd +import random + +import igraph as ig +import matplotlib.pyplot as plt import networkx as nx +import polars as pl +from adjustText import adjust_text + + +def set_node_attributes(g: nx.DiGraph, root: str) -> None: + """Add centrality and depth node attributes (inplace operation). -def set_node_attributes(g, root): - """Add node attributes (inplace operation)""" + Args: + g: Directed graph to add attributes to + root: Root node for computing network depth + """ set_attr = nx.set_node_attributes - set_attr(g, dict(g.degree()), 'k') - set_attr(g, dict(g.in_degree()), 'k_in') - set_attr(g, dict(g.out_degree()), 'k_out') - set_attr(g, nx.degree_centrality(g), 'degree_centrality') - set_attr(g, nx.betweenness_centrality(g), 'betweenness_centrality') - set_attr(g, nx.closeness_centrality(g), 'closeness_centrality') - set_attr(g, nx.clustering(nx.Graph(g)), 'clustering') - set_attr(g, nx.single_source_shortest_path_length(g, root), 'network_depth') - -def set_edge_attributes(g): + set_attr(g, dict(g.degree()), "k") + set_attr(g, dict(g.in_degree()), "k_in") + set_attr(g, dict(g.out_degree()), "k_out") + set_attr(g, nx.degree_centrality(g), "degree_centrality") + set_attr(g, nx.betweenness_centrality(g), "betweenness_centrality") + set_attr(g, nx.closeness_centrality(g), "closeness_centrality") + set_attr(g, nx.clustering(nx.Graph(g)), "clustering") + set_attr(g, nx.single_source_shortest_path_length(g, root), "network_depth") + + +def set_edge_attributes(g: nx.DiGraph) -> None: + """Add betweenness centrality edge attributes (inplace operation). + + Args: + g: Directed graph to add edge attributes to + """ set_attr = nx.set_edge_attributes - set_attr(g, 'betweenness_centrality', nx.edge_betweenness_centrality(g)) + set_attr(g, nx.edge_betweenness_centrality(g), "betweenness_centrality") + + +def nodes_to_df(g: nx.DiGraph) -> pl.DataFrame: + """Convert nodes dictionary to DataFrame with node attributes as columns. + + Args: + g: Directed graph to extract node attributes from -def nodes_to_df(g): - """Convert nodes dictionary to df index=nodes, cols=attr""" - node_df = pd.Series(dict(g.nodes())).apply(pd.Series) - return node_df.reset_index().rename(columns={'index':'node'}) + Returns: + DataFrame with columns for node name and each attribute + """ + records = [{"node": node, **attrs} for node, attrs in g.nodes(data=True)] + return pl.DataFrame(records) -def get_root_component(g, root): - # Get weakly connected component containing root node + +def get_root_component(g: nx.DiGraph, root: str) -> nx.DiGraph | None: + """Get the weakly connected component containing the root node. + + Args: + g: Directed graph to search + root: Root node to find the component for + + Returns: + Subgraph containing the root node, or None if not found + """ weak_subgraphs = (g.subgraph(c) for c in nx.weakly_connected_components(g)) for subgraph in weak_subgraphs: if subgraph.has_node(root): return subgraph + return None + + +def find_unreachable_nodes(g: nx.DiGraph, root: str) -> list[str]: + """Find nodes not reachable from the root via directed paths. -def find_unreachable_nodes(g, root): - # Find isolated nodes + Args: + g: Directed graph to search + root: Root node to compute reachability from + + Returns: + List of unreachable node names + """ has_depth = nx.single_source_shortest_path_length(g, root).keys() return [n for n in g.nodes if n not in has_depth] + + +def plot_network( + edges: pl.DataFrame, + root: str, + label_col: str = "target_add", + layout: str = "fr", + size_scale: float = 500, + label_quantile: float = 0.99, + label_alpha: float = 1.0, + spacing: float = 1.0, + seed: int = 42, + figsize: tuple[int, int] = (14, 14), + font_size: float = 1, + save_to: str = "", +) -> plt.Figure: + """Plot a suggestion network with degree sizing and Louvain community colors. + + Uses igraph for fast graph layout and adjustText for label deoverlapping. + Node sizes are proportional to squared degree (emphasizing hubs) and + node colors indicate communities detected using the Louvain method. + Only nodes above the label_quantile of PageRank are labeled. + + Args: + edges: Edge list DataFrame with 'source' and 'target' columns + root: Root node for extracting the main component + label_col: Column to use for node labels. Use 'target_add' for short + metanode labels or 'target' for full suggestion text. + layout: igraph layout algorithm ('fr' for Fruchterman-Reingold, + 'drl' for DrL/distributed recursive layout) + size_scale: Multiplier for degree-based node sizes + label_quantile: PageRank quantile threshold for showing labels (0-1) + label_alpha: Opacity for node labels (0-1) + spacing: Multiplier for layout coordinates to increase node separation + seed: Random seed for layout and community detection + figsize: Figure dimensions (width, height) + font_size: Base label font size (scales with degree) + save_to: Optional file path to save the plot + + Returns: + Matplotlib Figure object + """ + # Build networkx graph and extract main component + g = nx.DiGraph(zip(edges["source"].to_list(), edges["target"].to_list())) + component = get_root_component(g, root) + if component is not None: + g = component + + # Degree for node sizing (squared for aggressive scaling) + degree = dict(g.degree()) + max_deg = max(degree.values()) or 1 + node_sizes = [(degree[n] / max_deg) ** 2 * size_scale + 5 for n in g.nodes()] + + # PageRank for label selection + pagerank = nx.pagerank(g) + + # Louvain communities for node coloring + communities = nx.community.louvain_communities(g.to_undirected(), seed=seed) + node_to_community = {} + for i, comm in enumerate(communities): + for node in comm: + node_to_community[node] = i + node_colors = [node_to_community[n] for n in g.nodes()] + + # Build short label mapping from edges if label_col is available + node_labels = {} + if label_col in edges.columns: + for target, label in zip( + edges["target"].to_list(), edges[label_col].to_list() + ): + if label is not None and target not in node_labels: + node_labels[target] = label + if "source_add" in edges.columns: + for source, label in zip( + edges["source"].to_list(), edges["source_add"].to_list() + ): + if label is not None and source not in node_labels: + node_labels[source] = label + + # Labels for nodes above the PageRank quantile threshold + pr_values = sorted(pagerank.values()) + threshold_idx = min(int(len(pr_values) * label_quantile), len(pr_values) - 1) + threshold = pr_values[threshold_idx] + labels = {} + for n, pr in pagerank.items(): + if pr >= threshold and degree[n] > 1: + labels[n] = node_labels.get(n, n) + + # igraph layout (much faster than networkx for large graphs) + node_list = list(g.nodes()) + node_idx = {n: i for i, n in enumerate(node_list)} + ig_edges = [(node_idx[u], node_idx[v]) for u, v in g.edges()] + ig_graph = ig.Graph(n=len(node_list), edges=ig_edges, directed=True) + + random.seed(seed) + if layout == "drl": + ig_layout = ig_graph.layout_drl() + else: + ig_layout = ig_graph.layout_fruchterman_reingold() + + pos = { + node_list[i]: (ig_layout[i][0] * spacing, ig_layout[i][1] * spacing) + for i in range(len(node_list)) + } + + fig, ax = plt.subplots(figsize=figsize) + + # Draw edges + nx.draw_networkx_edges( + g, pos, ax=ax, edge_color="#cccccc", alpha=0.3, + arrows=True, arrowsize=3, width=0.3, + ) + + # Draw nodes + nx.draw_networkx_nodes( + g, + pos, + ax=ax, + node_size=node_sizes, + node_color=node_colors, + cmap=plt.cm.tab20, + alpha=0.85, + linewidths=0.3, + edgecolors="white", + ) + + # Draw labels scaled by degree, then deoverlap with adjustText + texts = [] + for node, (x, y) in pos.items(): + if node in labels: + scale = (degree[node] / max_deg) ** 0.5 + size = font_size * (1 + 9 * scale) + t = ax.text( + x, y, labels[node], + fontsize=size, fontweight="bold", ha="center", va="center", + alpha=label_alpha, + ) + texts.append(t) + + if texts: + adjust_text(texts, ax=ax) + + ax.set_axis_off() + fig.tight_layout() + + if save_to: + fig.savefig(save_to, dpi=150, bbox_inches="tight") + + return fig diff --git a/suggests/parsing.py b/suggests/parsing.py index cd14353..d1f9d3b 100644 --- a/suggests/parsing.py +++ b/suggests/parsing.py @@ -1,174 +1,309 @@ -""" Parsing functions for Google and Bing -""" +"""Parsing functions for Google and Bing.""" -import re import html -import pandas as pd +import re import urllib.parse -from bs4 import BeautifulSoup from collections import OrderedDict +import polars as pl +from bs4 import BeautifulSoup + from . import logger + log = logger.Logger().start(__name__) -def get_source_target_columns(edges): - edge_details = edges.edge.apply(pd.Series) - edge_details.columns = ['source','target'] - return pd.concat([edges, edge_details], axis=1) - -def parse_raw_data(raw_data, source): - # Parse raw aggregated data from `clean` into edge lists - parser = parse_google if source=='google' else parse_bing - return pd.concat([raw_data, raw_data.data.apply(parser).apply(pd.Series)], axis=1) - -def get_edges(data): - clean_data = [parse_raw_data(df, k) for k, df in data.groupby('source')] - return pd.concat([to_edgelist(df) for df in clean_data]) - -def strip_html(string): - """Strips HTML """ - return re.sub('<[^<]+?>', '', string) - -def parse_google(json_data, qry=''): - - def google_parser(json_data): - - def suggest_parser(s): + +def get_source_target_columns(edges: pl.DataFrame) -> pl.DataFrame: + """Extract source and target columns from edge tuples. + + Args: + edges: DataFrame with an 'edge' column of string tuple representations + + Returns: + DataFrame with source and target columns appended + """ + edge_details = ( + edges.select( + pl.col("edge") + .str.strip_chars("()") + .str.splitn(", ", 2) + .struct.rename_fields(["source", "target"]) + ) + .unnest("edge") + .with_columns( + pl.col("source").str.strip_chars("'\""), + pl.col("target").str.strip_chars("'\""), + ) + ) + return pl.concat([edges, edge_details], how="horizontal") + + +def parse_raw_data(raw_data: pl.DataFrame, source: str) -> pl.DataFrame: + """Parse raw aggregated data into edge lists. + + Args: + raw_data: DataFrame with a 'data' column of raw API responses + source: Search engine name ('google' or 'bing') + + Returns: + DataFrame with parsed suggestion columns appended + """ + parser = parse_google if source == "google" else parse_bing + parsed = [parser(row) for row in raw_data["data"].to_list()] + parsed_df = pl.DataFrame(parsed) + return pl.concat([raw_data, parsed_df], how="horizontal") + + +def get_edges(data: pl.DataFrame) -> pl.DataFrame: + """Parse raw data grouped by source and convert to edge lists. + + Args: + data: DataFrame with 'source' and 'data' columns + + Returns: + Combined edge list DataFrame + """ + clean_data = [ + parse_raw_data(group_df, source_name) + for source_name, group_df in data.group_by("source", maintain_order=True) + ] + return pl.concat([to_edgelist(df.to_dicts()) for df in clean_data]) + + +def strip_html(string: str) -> str: + """Strip HTML tags from a string.""" + return re.sub("<[^<]+?>", "", string) + + +def parse_google(json_data: list, qry: str = "") -> dict[str, list]: + """Parse Google autocomplete API response. + + Args: + json_data: Raw JSON response from Google autocomplete API + qry: Original query string + + Returns: + Dictionary with 'suggests', 'self_loops', and 'tags' keys + """ + + def google_parser(json_data: list) -> tuple[str, list[str], list]: + + def suggest_parser(s: str) -> str: return html.unescape(strip_html(s)) qry = json_data[0] - suggests = [s[0]+' - '+s[3]['b'] if s[1]==46 else s[0] for s in json_data[1]] + suggests = [ + s[0] + " - " + s[3]["b"] if s[1] == 46 else s[0] for s in json_data[1] + ] suggests = [suggest_parser(s) for s in suggests] tags = json_data[2] return qry, suggests, tags - + try: qry, suggests, tags = google_parser(json_data) self_loops = [i for i, s in enumerate(suggests) if s == qry] - parsed = {'suggests': suggests, 'self_loops':self_loops, 'tags': tags} - except: - log.exception('ERROR PARSING GOOGLE:\n%s', json_data) - parsed = {'suggests':[], 'self_loops':[], 'tags':[]} + parsed = {"suggests": suggests, "self_loops": self_loops, "tags": tags} + except Exception: + log.exception("ERROR PARSING GOOGLE:\n%s", json_data) + parsed = {"suggests": [], "self_loops": [], "tags": []} return parsed -def parse_bing_qry(raw_html, qry=''): - """Recover query from bing response html""" - url = BeautifulSoup(raw_html).find('li')['url'] + +def parse_bing_qry(raw_html: str, qry: str = "") -> str | None: + """Recover query from Bing response HTML.""" + li = BeautifulSoup(raw_html).find("li") + if li is None: + return None + url = li.get("url") if url: - return str(urllib.parse.parse_qs(urllib.parse.urlparse().query)['pq'][0]) + return str(urllib.parse.parse_qs(urllib.parse.urlparse(url).query)["pq"][0]) else: return None -def parse_bing(raw_html, qry=''): - - def bing_parser(raw_html): - soup = BeautifulSoup(raw_html, 'html.parser') + +def parse_bing(raw_html: str, qry: str = "") -> dict[str, list]: + """Parse Bing autocomplete API response. + + Args: + raw_html: Raw HTML response from Bing autocomplete API + qry: Original query string + + Returns: + Dictionary with 'suggests', 'self_loops', and 'tags' keys + """ + + def bing_parser(raw_html: str) -> list[str]: + soup = BeautifulSoup(raw_html, "html.parser") if not soup.text: # No suggestions return [] - suggests = [div.text for div in soup.find_all('div', {'class':'sa_tm'})] + suggests = [div.text for div in soup.find_all("div", {"class": "sa_tm"})] suggests = [html.unescape(s) for s in suggests] return suggests try: suggests = bing_parser(raw_html) self_loops = [i for i, s in enumerate(suggests) if s == qry] - parsed = {'suggests':suggests, 'self_loops':self_loops, 'tags':[]} - except: - log.exception('ERROR PARSING BING:\n%s', raw_html) - parsed = {'suggests':[], 'self_loops':[], 'tags':[]} + parsed = {"suggests": suggests, "self_loops": self_loops, "tags": []} + except Exception: + log.exception("ERROR PARSING BING:\n%s", raw_html) + parsed = {"suggests": [], "self_loops": [], "tags": []} return parsed -def to_edgelist(tree, self_loops=False): - """Convert suggestions tree (df) to edgelist (df)""" + +def to_edgelist(tree: list[dict], self_loops: bool = False) -> pl.DataFrame: + """Convert suggestions tree to an edge list DataFrame. + + Args: + tree: List of suggestion dictionaries from get_suggests_tree + self_loops: Whether to include self-loop edges + + Returns: + DataFrame with edge list columns (root, edge, source, target, rank, etc.) + """ edge_list = [] - assert type(tree) == list or type(tree) == pd.np.recarray, \ - "Must pass records or a list of dicts" + assert isinstance(tree, list), "Must pass a list of dicts" for row in tree: - if self_loops: - suggests = row['suggests'] + suggests = row["suggests"] else: - suggests = [s for s in row['suggests'] if s != row['qry']] - + suggests = [s for s in row["suggests"] if s != row["qry"]] + if suggests: for rank, s in enumerate(suggests): - edge = OrderedDict([ - ('root', row['root']), - ('edge', (row['qry'], s)), - ('source', row['qry']), - ('target', html.unescape(s)), - ('rank', rank + 1), - ('depth', row['depth']), - ('search_engine', row['source']), - ('datetime', row['datetime']) - ]) + edge = OrderedDict( + [ + ("root", row["root"]), + ("edge", str((row["qry"], s))), + ("source", row["qry"]), + ("target", html.unescape(s)), + ("rank", rank + 1), + ("depth", row["depth"]), + ("search_engine", row["source"]), + ("datetime", row["datetime"]), + ] + ) edge_list.append(edge) - else: # If no suggests at root, append empty root - if row['depth'] == 0: - no_edges = OrderedDict([ - ('root', row['root']), - ('edge', None), - ('source', row['qry']), - ('target', None), - ('rank', 1), - ('depth', row['depth']), - ('search_engine', row['source']), - ('datetime', row['datetime']) - ]) + else: # If no suggests at root, append empty root + if row["depth"] == 0: + no_edges = OrderedDict( + [ + ("root", row["root"]), + ("edge", None), + ("source", row["qry"]), + ("target", None), + ("rank", 1), + ("depth", row["depth"]), + ("search_engine", row["source"]), + ("datetime", row["datetime"]), + ] + ) edge_list.append(no_edges) - - edge_df = pd.DataFrame(edge_list) + + edge_df = pl.DataFrame(edge_list) return edge_df -def add_parent_nodes(edges): - edges_original = edges.copy() + +def add_parent_nodes(edges: pl.DataFrame) -> pl.DataFrame: + """Add parent and grandparent node columns to an edge list. + + Args: + edges: Edge list DataFrame from to_edgelist + + Returns: + DataFrame with 'parent' and 'grandparent' columns added + """ + edges_original = edges.clone() # Get parent node - parent = edges.rename(columns={"source": "parent", "target": "source"}) - parent["depth"] = parent["depth"] + 1 - parent = parent[["root", "parent", "source", "depth", "search_engine"]] - edges = edges.merge(parent, on = ["root", "source", "depth", "search_engine"], how = "left") + parent = edges.select( + "root", + pl.col("source").alias("parent"), + pl.col("target").alias("source"), + (pl.col("depth") + 1).alias("depth"), + "search_engine", + ) + edges = edges.join( + parent, + on=["root", "source", "depth", "search_engine"], + how="left", + ) # Get grandparent node - grandparent = edges.rename(columns={"parent": "grandparent", "source": "parent", "target": "source"}) - grandparent["depth"] = grandparent["depth"] + 1 - grandparent = grandparent[["root", "grandparent", "parent", "source", "depth", "search_engine"]] - edges = edges.merge(grandparent, on = ["root", "parent", "source", "depth", "search_engine"], how = "left") + grandparent = edges.select( + "root", + pl.col("parent").alias("grandparent"), + pl.col("source").alias("parent"), + pl.col("target").alias("source"), + (pl.col("depth") + 1).alias("depth"), + "search_engine", + ) + edges = edges.join( + grandparent, + on=["root", "parent", "source", "depth", "search_engine"], + how="left", + ) # Resolve merge points - gb = edges.groupby('edge') - merged_parents = pd.DataFrame({ - 'grandparent': gb.grandparent.apply(lambda col: col.str.cat(sep=' ') if col.any() else None), - 'parent': gb.parent.apply(lambda col: col.str.cat(sep=' ') if col.any() else None) - }).reset_index() - edges = edges_original.merge(merged_parents, on='edge', how='left') - return edges - -def add_metanodes(row): - # Get memory from two steps back - grandparent = list() if row.isna()["grandparent"] else row["grandparent"].split(" ") - parent = list() if row.isna()["parent"] else row["parent"].split(" ") - - # Set current row source and target nodes + merged_parents = edges.group_by("edge", maintain_order=True).agg( + pl.when(pl.col("grandparent").is_not_null().any()) + .then(pl.col("grandparent").drop_nulls().first()) + .otherwise(pl.lit(None)) + .first() + .alias("grandparent"), + pl.when(pl.col("parent").is_not_null().any()) + .then(pl.col("parent").drop_nulls().first()) + .otherwise(pl.lit(None)) + .first() + .alias("parent"), + ) + return edges_original.join(merged_parents, on="edge", how="left") + + +def _compute_metanode(row: dict) -> dict: + """Compute source_add and target_add for a single row.""" + grandparent = [] if row["grandparent"] is None else row["grandparent"].split(" ") + parent = [] if row["parent"] is None else row["parent"].split(" ") + source = row["source"].split(" ") target = row["target"].split(" ") - # Calculate differences source_add = [i for i in source if i not in set(parent)] target_add = [i for i in target if i not in set(source)] - # Track difference in previous step parent_add = [i for i in parent if i not in set(grandparent)] - if not source_add: # information removed + if not source_add: # information removed source_add = parent_add - # If target adds nothing nothing, circle back - if not target_add: - print(f'circle back: {source_add}') + if not target_add: + print(f"circle back: {source_add}") target_add = source_add - row["source_add"] = " ".join(source_add) - row["target_add"] = " ".join(target_add) - return row + return { + "source_add": " ".join(source_add) if source_add else None, + "target_add": " ".join(target_add) if target_add else None, + } + + +def add_metanodes(edges: pl.DataFrame) -> pl.DataFrame: + """Compute association metanodes by diffing parent/grandparent tokens. + + Adds 'source_add' and 'target_add' columns representing the new + information contributed at each step in the suggestion tree. + + Args: + edges: Edge list DataFrame with parent/grandparent columns + + Returns: + DataFrame with 'source_add' and 'target_add' columns added + """ + meta = ( + edges.select( + pl.struct(["source", "target", "parent", "grandparent"]) + .map_elements(_compute_metanode, return_dtype=pl.Struct({"source_add": pl.String, "target_add": pl.String})) + .alias("_meta") + ) + .unnest("_meta") + ) + return pl.concat([edges, meta], how="horizontal") diff --git a/suggests/suggests.py b/suggests/suggests.py index fc33634..30b72bc 100644 --- a/suggests/suggests.py +++ b/suggests/suggests.py @@ -1,179 +1,189 @@ -""" Recursively retrieve autocomplete suggestions from Google and Bing. -""" +"""Recursively retrieve autocomplete suggestions from Google and Bing.""" import json import time import urllib from datetime import datetime, timezone -from typing import Any, Dict, List, Optional, Union +from typing import Any import requests -from numpy import random +import random from . import logger, parsing log = logger.Logger().start() + def sleep_random(x: float = 0.7, y: float = 1.4) -> None: - """Sleep a random time with noise between x and y seconds + """Sleep a random time with noise between x and y seconds. Args: - x (float): Minimum sleep time in seconds - y (float): Maximum sleep time in seconds + x: Minimum sleep time in seconds + y: Maximum sleep time in seconds """ - time.sleep(random.uniform(x,y)) + time.sleep(random.uniform(x, y)) + def prepare_qry(qry: str) -> str: - """Prepare query string for URL encoding + """Prepare query string for URL encoding. Args: - qry (str): Raw query string + qry: Raw query string Returns: - str: URL encoded query string + URL encoded query string """ return urllib.parse.quote_plus(qry) + def get_google_url(hl: str = "en", sclient: str = "psy-ab") -> str: - """Get Google autocomplete API URL + """Get Google autocomplete API URL. Args: - hl (str): Language code (e.g. 'en', 'de', 'fr') - sclient (str): Google search client identifier + hl: Language code (e.g. 'en', 'de', 'fr') + sclient: Google search client identifier Returns: - str: Base Google autocomplete API URL + Base Google autocomplete API URL """ - params = urllib.parse.urlencode({'sclient': sclient, 'hl': hl, 'q': ''}) - return f'https://www.google.com/complete/search?{params}' + params = urllib.parse.urlencode({"sclient": sclient, "hl": hl, "q": ""}) + return f"https://www.google.com/complete/search?{params}" -def get_bing_url(mkt: str = "en-us", cvid: str = 'CF23583902D944F1874B7D9E36F452CD') -> str: - """Get Bing autocomplete API URL + +def get_bing_url( + mkt: str = "en-us", cvid: str = "CF23583902D944F1874B7D9E36F452CD" +) -> str: + """Get Bing autocomplete API URL. Args: - mkt (str): Market code (e.g. 'en-us', 'de-de', 'es-es') - cvid (str): Bing API client ID + mkt: Market code (e.g. 'en-us', 'de-de', 'es-es') + cvid: Bing API client ID Returns: - str: Base Bing autocomplete API URL + Base Bing autocomplete API URL """ - params = urllib.parse.urlencode({'mkt': mkt, 'cvid': cvid, 'q': ''}) - return f'http://www.bing.com/AS/Suggestions?{params}' + params = urllib.parse.urlencode({"mkt": mkt, "cvid": cvid, "q": ""}) + return f"http://www.bing.com/AS/Suggestions?{params}" + def requester( qry: str, - source: str = 'bing', - sesh: Optional[requests.Session] = None, - sleep: Optional[float] = None, + source: str = "bing", + sesh: requests.Session | None = None, + sleep: float | None = None, allow_zip: bool = False, - hl: Optional[str] = None, - mkt: Optional[str] = None -) -> Optional[Union[dict, str]]: + hl: str | None = None, + mkt: str | None = None, +) -> dict | str | None: """Requester with logging and specified user agent Args: - qry (str): Search query to submit - source (str): Search engine to submit query to, either "bing" or "google" - sesh (Optional[requests.Session]): Pass a custom requests session - sleep (Optional[float]): Custom sleep duration - allow_zip (bool): Enable response content unzipping - hl (Optional[str]): Google language code (e.g. 'en', 'de', 'fr') - mkt (Optional[str]): Bing market code (e.g. 'en-us', 'de-de', 'es-es') + qry: Search query to submit + source: Search engine to submit query to, either "bing" or "google" + sesh: Pass a custom requests session + sleep: Custom sleep duration + allow_zip: Enable response content unzipping + hl: Google language code (e.g. 'en', 'de', 'fr') + mkt: Bing market code (e.g. 'en-us', 'de-de', 'es-es') Returns: - Optional[Union[dict, str]]: JSON response for Google, HTML string for Bing, None on error + JSON response for Google, HTML string for Bing, None on error Raises: AssertionError: If source is not 'bing' or 'google' """ - assert source in ['bing','google'], "Must select bing or google as source" + assert source in ["bing", "google"], "Must select bing or google as source" sesh = sesh if sesh else requests.Session() - if source == 'bing': - base = get_bing_url(mkt or 'en-us') + if source == "bing": + base = get_bing_url(mkt or "en-us") else: - base = get_google_url(hl or 'en') + base = get_google_url(hl or "en") url = base + prepare_qry(qry) time.sleep(sleep) if sleep else sleep_random() - log.info('%s | %s', '%s' % source, qry) + log.info("%s | %s", "%s" % source, qry) + response = None try: response = sesh.get(url, timeout=10) - if source == 'google': + if source == "google": return json.loads(response.text) - elif source == 'bing': + elif source == "bing": return response.text - except Exception as e: - log.exception('ERROR SCRAPING: request[%s]', response.status_code) + except Exception: + status = response.status_code if response is not None else "no response" + log.exception("ERROR SCRAPING: request[%s]", status) return None + def get_suggests( qry: str, - source: str = 'bing', - sesh: Optional[requests.Session] = None, - sleep: Optional[float] = None, - sesh_headers: Optional[Dict[str, str]] = None, - hl: Optional[str] = None, - mkt: Optional[str] = None -) -> Dict[str, Any]: + source: str = "bing", + sesh: requests.Session | None = None, + sleep: float | None = None, + sesh_headers: dict[str, str] | None = None, + hl: str | None = None, + mkt: str | None = None, +) -> dict[str, Any]: """Scrape and parse search engine suggestion data for a query. Args: - qry (str): Query to obtain suggestions for - source (str): The search engine to submit the query to - sesh (Optional[requests.Session]): Session for maintaining connection - sleep (Optional[float]): Custom sleep duration - sesh_headers (Optional[Dict[str, str]]): Custom session headers - hl (Optional[str]): Google language code (e.g. 'en', 'de', 'fr') - mkt (Optional[str]): Bing market code (e.g. 'en-us', 'de-de', 'es-es') + qry: Query to obtain suggestions for + source: The search engine to submit the query to + sesh: Session for maintaining connection + sleep: Custom sleep duration + sesh_headers: Custom session headers + hl: Google language code (e.g. 'en', 'de', 'fr') + mkt: Bing market code (e.g. 'en-us', 'de-de', 'es-es') Returns: - Dict[str, Any]: Dictionary containing query metadata and suggestions + Dictionary containing query metadata and suggestions """ sesh = sesh if sesh else requests.Session() if sesh_headers: sesh.headers.update(sesh_headers) - tree: Dict[str, Any] = { - 'qry': qry, - 'datetime': str(datetime.now(timezone.utc).replace(tzinfo=None)), - 'source': source, - 'data': requester(qry, source, sesh, sleep, hl=hl, mkt=mkt) + tree: dict[str, Any] = { + "qry": qry, + "datetime": str(datetime.now(timezone.utc).replace(tzinfo=None)), + "source": source, + "data": requester(qry, source, sesh, sleep, hl=hl, mkt=mkt), } - parser = parsing.parse_bing if source == 'bing' else parsing.parse_google - parsed = parser(tree['data'], qry) + parser = parsing.parse_bing if source == "bing" else parsing.parse_google + parsed = parser(tree["data"], qry) tree.update(parsed) return tree + def get_suggests_tree( root: str, - source: str = 'bing', + source: str = "bing", max_depth: int = 3, - save_to: str = '', - sesh: Optional[requests.Session] = None, - sesh_headers: Optional[Dict[str, str]] = None, - crawl_id: Optional[str] = None, - sleep: Optional[float] = None, - hl: Optional[str] = None, - mkt: Optional[str] = None -) -> List[Dict[str, Any]]: + save_to: str = "", + sesh: requests.Session | None = None, + sesh_headers: dict[str, str] | None = None, + crawl_id: str | None = None, + sleep: float | None = None, + hl: str | None = None, + mkt: str | None = None, +) -> list[dict[str, Any]]: """Retrieve autocomplete suggestions tree for a root query Args: - root (str): Query to obtain a suggestion tree for - source (str): The search engine to submit the query to - max_depth (int): Maximum breadth first steps from root - save_to (str): Optional filepath to append results as json lines - sesh (Optional[requests.Session]): Session for maintaining connection - crawl_id (Optional[str]): Unique identifier for the crawl session - sleep (Optional[float]): Custom sleep duration - hl (Optional[str]): Google language code (e.g. 'en', 'de', 'fr') - mkt (Optional[str]): Bing market code (e.g. 'en-us', 'de-de', 'es-es') + root: Query to obtain a suggestion tree for + source: The search engine to submit the query to + max_depth: Maximum breadth first steps from root + save_to: Optional filepath to append results as json lines + sesh: Session for maintaining connection + crawl_id: Unique identifier for the crawl session + sleep: Custom sleep duration + hl: Google language code (e.g. 'en', 'de', 'fr') + mkt: Bing market code (e.g. 'en-us', 'de-de', 'es-es') Returns: - List[Dict[str, Any]]: List of suggestion trees with metadata + List of suggestion trees with metadata """ sesh = sesh if sesh else requests.Session() if sesh_headers: @@ -181,35 +191,36 @@ def get_suggests_tree( depth = 0 root_branch = get_suggests(root, source, sesh, sleep, hl=hl, mkt=mkt) - root_branch['depth'] = depth - root_branch['root'] = root - root_branch['crawl_id'] = crawl_id - - if save_to: - outfile = open(save_to, 'a+') - outdata = json.dumps(root_branch) - outfile.write(f'{outdata}\n') - - tree: List[Dict[str, Any]] = [root_branch] - all_suggests: set = {root} - - while depth < max_depth: - suggests = {d['qry']: d['suggests'] for d in tree if d['depth']==depth} - depth += 1 - - for qry, suggest_list in suggests.items(): - if suggest_list: - for s in suggest_list: - if s not in all_suggests: # Don't crawl self-loops or duplicates - branches = get_suggests(s, source, sesh, sleep, hl=hl, mkt=mkt) - branches['depth'] = depth - branches['root'] = root - branches['crawl_id'] = crawl_id - if save_to: - outfile.write(f'{json.dumps(branches)}\n') - tree.append(branches) - all_suggests.add(s) - - if save_to: - outfile.close() + root_branch["depth"] = depth + root_branch["root"] = root + root_branch["crawl_id"] = crawl_id + + outfile = open(save_to, "a+") if save_to else None + try: + if outfile: + outdata = json.dumps(root_branch) + outfile.write(f"{outdata}\n") + + tree: list[dict[str, Any]] = [root_branch] + all_suggests: set[str] = {root} + + while depth < max_depth: + suggests = {d["qry"]: d["suggests"] for d in tree if d["depth"] == depth} + depth += 1 + + for qry, suggest_list in suggests.items(): + if suggest_list: + for s in suggest_list: + if s not in all_suggests: # Don't crawl self-loops or duplicates + branches = get_suggests(s, source, sesh, sleep, hl=hl, mkt=mkt) + branches["depth"] = depth + branches["root"] = root + branches["crawl_id"] = crawl_id + if outfile: + outfile.write(f"{json.dumps(branches)}\n") + tree.append(branches) + all_suggests.add(s) + finally: + if outfile: + outfile.close() return tree diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..b59bd26 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,106 @@ +"""Shared test fixtures.""" + +import tempfile + +import pytest + + +@pytest.fixture +def bing_html(): + """Sample Bing autocomplete HTML response.""" + return ( + '" + ) + + +@pytest.fixture +def bing_html_empty(): + """Empty Bing autocomplete HTML response.""" + return "" + + +@pytest.fixture +def google_json(): + """Sample Google autocomplete JSON response.""" + return [ + "dog", + [["dog toys", 0, []], ["dog food", 0, []], ["dog breeds", 0, []]], + {"t": {}}, + ] + + +@pytest.fixture +def google_json_with_entity(): + """Google autocomplete response with entity annotation (type 46).""" + return [ + "dog", + [ + ["dog toys", 0, []], + ["Dogecoin", 46, [], {"b": "Cryptocurrency"}], + ], + {"t": {}}, + ] + + +@pytest.fixture +def sample_tree(): + """Sample suggestion tree (list of dicts) for testing to_edgelist.""" + return [ + { + "qry": "dog", + "suggests": ["dog toys", "dog food"], + "root": "dog", + "depth": 0, + "source": "bing", + "datetime": "2026-01-01 00:00:00", + }, + { + "qry": "dog toys", + "suggests": ["dog toys amazon", "dog toys chewy"], + "root": "dog", + "depth": 1, + "source": "bing", + "datetime": "2026-01-01 00:00:01", + }, + ] + + +@pytest.fixture +def sample_tree_with_self_loop(): + """Sample suggestion tree with a self-loop.""" + return [ + { + "qry": "dog", + "suggests": ["dog", "dog toys"], + "root": "dog", + "depth": 0, + "source": "bing", + "datetime": "2026-01-01 00:00:00", + }, + ] + + +@pytest.fixture +def sample_tree_no_suggests(): + """Sample suggestion tree with no suggestions at root.""" + return [ + { + "qry": "xyzabc123", + "suggests": [], + "root": "xyzabc123", + "depth": 0, + "source": "bing", + "datetime": "2026-01-01 00:00:00", + }, + ] + + +@pytest.fixture +def temp_dir(): + """Create a temporary directory for test files.""" + with tempfile.TemporaryDirectory() as tmpdir: + yield tmpdir diff --git a/tests/fixtures/abortion-20260312-122801-edges.csv b/tests/fixtures/abortion-20260312-122801-edges.csv new file mode 100644 index 0000000..9454c86 --- /dev/null +++ b/tests/fixtures/abortion-20260312-122801-edges.csv @@ -0,0 +1,12113 @@ +root,edge,source,target,rank,depth,search_engine,datetime,grandparent,parent,source_add,target_add +abortion,"('abortion', 'abortion clinic san francisco')",abortion,abortion clinic san francisco,1,0,google,2026-03-12 19:28:01.691691,,,abortion,clinic san francisco +abortion,"('abortion', 'abortion clinic near me')",abortion,abortion clinic near me,2,0,google,2026-03-12 19:28:01.691691,,,abortion,clinic near me +abortion,"('abortion', 'abortion pill online')",abortion,abortion pill online,3,0,google,2026-03-12 19:28:01.691691,,,abortion,pill online +abortion,"('abortion', 'abortion clinic')",abortion,abortion clinic,4,0,google,2026-03-12 19:28:01.691691,,,abortion,clinic +abortion,"('abortion', 'abortion pill cost')",abortion,abortion pill cost,5,0,google,2026-03-12 19:28:01.691691,,,abortion,pill cost +abortion,"('abortion', 'abortion definition')",abortion,abortion definition,6,0,google,2026-03-12 19:28:01.691691,,,abortion,definition +abortion,"('abortion', 'abortion pill side effects')",abortion,abortion pill side effects,7,0,google,2026-03-12 19:28:01.691691,,,abortion,pill side effects +abortion,"('abortion', 'abortion meaning')",abortion,abortion meaning,8,0,google,2026-03-12 19:28:01.691691,,,abortion,meaning +abortion,"('abortion', 'abortion laws in california')",abortion,abortion laws in california,9,0,google,2026-03-12 19:28:01.691691,,,abortion,laws in california +abortion,"('abortion clinic san francisco', 'abortion clinic san francisco ca')",abortion clinic san francisco,abortion clinic san francisco ca,1,1,google,2026-03-12 19:28:03.175208,,abortion,clinic san francisco,ca +abortion,"('abortion clinic san francisco', ""women's clinic san francisco"")",abortion clinic san francisco,women's clinic san francisco,2,1,google,2026-03-12 19:28:03.175208,,abortion,clinic san francisco,women's +abortion,"('abortion clinic san francisco', 'abortion services san francisco')",abortion clinic san francisco,abortion services san francisco,3,1,google,2026-03-12 19:28:03.175208,,abortion,clinic san francisco,services +abortion,"('abortion clinic san francisco', ""women's health clinic san francisco"")",abortion clinic san francisco,women's health clinic san francisco,4,1,google,2026-03-12 19:28:03.175208,,abortion,clinic san francisco,women's health +abortion,"('abortion clinic san francisco', ""free women's clinic san francisco"")",abortion clinic san francisco,free women's clinic san francisco,5,1,google,2026-03-12 19:28:03.175208,,abortion,clinic san francisco,free women's +abortion,"('abortion clinic san francisco', ""women's community clinic san francisco"")",abortion clinic san francisco,women's community clinic san francisco,6,1,google,2026-03-12 19:28:03.175208,,abortion,clinic san francisco,women's community +abortion,"('abortion clinic san francisco', ""ucsf women's clinic san francisco"")",abortion clinic san francisco,ucsf women's clinic san francisco,7,1,google,2026-03-12 19:28:03.175208,,abortion,clinic san francisco,ucsf women's +abortion,"('abortion clinic san francisco', ""va women's clinic san francisco"")",abortion clinic san francisco,va women's clinic san francisco,8,1,google,2026-03-12 19:28:03.175208,,abortion,clinic san francisco,va women's +abortion,"('abortion clinic san francisco', ""women's golf clinic san francisco"")",abortion clinic san francisco,women's golf clinic san francisco,9,1,google,2026-03-12 19:28:03.175208,,abortion,clinic san francisco,women's golf +abortion,"('abortion clinic near me', 'abortion clinic san francisco')",abortion clinic near me,abortion clinic san francisco,1,1,google,2026-03-12 19:28:04.087321,,abortion,clinic near me,san francisco +abortion,"('abortion clinic near me', 'abortion clinic near me open now')",abortion clinic near me,abortion clinic near me open now,2,1,google,2026-03-12 19:28:04.087321,,abortion,clinic near me,open now +abortion,"('abortion clinic near me', 'abortion clinic near me prices')",abortion clinic near me,abortion clinic near me prices,3,1,google,2026-03-12 19:28:04.087321,,abortion,clinic near me,prices +abortion,"('abortion clinic near me', 'abortion clinic near me for free')",abortion clinic near me,abortion clinic near me for free,4,1,google,2026-03-12 19:28:04.087321,,abortion,clinic near me,for free +abortion,"('abortion clinic near me', 'abortion clinic near me walk in')",abortion clinic near me,abortion clinic near me walk in,5,1,google,2026-03-12 19:28:04.087321,,abortion,clinic near me,walk in +abortion,"('abortion clinic near me', 'abortion clinic near me now')",abortion clinic near me,abortion clinic near me now,6,1,google,2026-03-12 19:28:04.087321,,abortion,clinic near me,now +abortion,"('abortion clinic near me', 'abortion clinic near me that takes insurance')",abortion clinic near me,abortion clinic near me that takes insurance,7,1,google,2026-03-12 19:28:04.087321,,abortion,clinic near me,that takes insurance +abortion,"('abortion clinic near me', 'abortion clinic near me open')",abortion clinic near me,abortion clinic near me open,8,1,google,2026-03-12 19:28:04.087321,,abortion,clinic near me,open +abortion,"('abortion clinic near me', 'abortion clinic near me same day')",abortion clinic near me,abortion clinic near me same day,9,1,google,2026-03-12 19:28:04.087321,,abortion,clinic near me,same day +abortion,"('abortion pill online', 'abortion pill online free')",abortion pill online,abortion pill online free,1,1,google,2026-03-12 19:28:05.556378,,abortion,pill online,free +abortion,"('abortion pill online', 'abortion pill online cost')",abortion pill online,abortion pill online cost,2,1,google,2026-03-12 19:28:05.556378,,abortion,pill online,cost +abortion,"('abortion pill online', 'abortion pill online near me')",abortion pill online,abortion pill online near me,3,1,google,2026-03-12 19:28:05.556378,,abortion,pill online,near me +abortion,"('abortion pill online', 'abortion pill online amazon')",abortion pill online,abortion pill online amazon,4,1,google,2026-03-12 19:28:05.556378,,abortion,pill online,amazon +abortion,"('abortion pill online', 'abortion pill online georgia')",abortion pill online,abortion pill online georgia,5,1,google,2026-03-12 19:28:05.556378,,abortion,pill online,georgia +abortion,"('abortion pill online', 'abortion pill online reviews')",abortion pill online,abortion pill online reviews,6,1,google,2026-03-12 19:28:05.556378,,abortion,pill online,reviews +abortion,"('abortion pill online', 'abortion pill online ohio')",abortion pill online,abortion pill online ohio,7,1,google,2026-03-12 19:28:05.556378,,abortion,pill online,ohio +abortion,"('abortion pill online', 'abortion pill online abuzz')",abortion pill online,abortion pill online abuzz,8,1,google,2026-03-12 19:28:05.556378,,abortion,pill online,abuzz +abortion,"('abortion pill online', 'abortion pill online cheapest')",abortion pill online,abortion pill online cheapest,9,1,google,2026-03-12 19:28:05.556378,,abortion,pill online,cheapest +abortion,"('abortion clinic', 'abortion clinic san francisco')",abortion clinic,abortion clinic san francisco,1,1,google,2026-03-12 19:28:06.714519,,abortion,clinic,san francisco +abortion,"('abortion clinic', 'abortion clinic near me')",abortion clinic,abortion clinic near me,2,1,google,2026-03-12 19:28:06.714519,,abortion,clinic,near me +abortion,"('abortion clinic', 'abortion clinic san jose')",abortion clinic,abortion clinic san jose,3,1,google,2026-03-12 19:28:06.714519,,abortion,clinic,san jose +abortion,"('abortion clinic', 'abortion clinic santa rosa')",abortion clinic,abortion clinic santa rosa,4,1,google,2026-03-12 19:28:06.714519,,abortion,clinic,santa rosa +abortion,"('abortion clinic', 'abortion clinic brentwood')",abortion clinic,abortion clinic brentwood,5,1,google,2026-03-12 19:28:06.714519,,abortion,clinic,brentwood +abortion,"('abortion clinic', 'abortion clinic oakland')",abortion clinic,abortion clinic oakland,6,1,google,2026-03-12 19:28:06.714519,,abortion,clinic,oakland +abortion,"('abortion clinic', 'abortion clinic illinois')",abortion clinic,abortion clinic illinois,7,1,google,2026-03-12 19:28:06.714519,,abortion,clinic,illinois +abortion,"('abortion clinic', 'abortion clinic north carolina')",abortion clinic,abortion clinic north carolina,8,1,google,2026-03-12 19:28:06.714519,,abortion,clinic,north carolina +abortion,"('abortion clinic', 'abortion clinic chicago')",abortion clinic,abortion clinic chicago,9,1,google,2026-03-12 19:28:06.714519,,abortion,clinic,chicago +abortion,"('abortion pill cost', 'abortion pill cost cvs')",abortion pill cost,abortion pill cost cvs,1,1,google,2026-03-12 19:28:07.992487,,abortion,pill cost,cvs +abortion,"('abortion pill cost', 'abortion pill cost california')",abortion pill cost,abortion pill cost california,2,1,google,2026-03-12 19:28:07.992487,,abortion,pill cost,california +abortion,"('abortion pill cost', 'abortion pill cost online')",abortion pill cost,abortion pill cost online,3,1,google,2026-03-12 19:28:07.992487,,abortion,pill cost,online +abortion,"('abortion pill cost', 'abortion pill cost pharmacy')",abortion pill cost,abortion pill cost pharmacy,4,1,google,2026-03-12 19:28:07.992487,,abortion,pill cost,pharmacy +abortion,"('abortion pill cost', 'abortion pill cost north carolina')",abortion pill cost,abortion pill cost north carolina,5,1,google,2026-03-12 19:28:07.992487,,abortion,pill cost,north carolina +abortion,"('abortion pill cost', 'abortion pill cost planned parenthood reddit')",abortion pill cost,abortion pill cost planned parenthood reddit,6,1,google,2026-03-12 19:28:07.992487,,abortion,pill cost,planned parenthood reddit +abortion,"('abortion pill cost', 'abortion pill cost florida')",abortion pill cost,abortion pill cost florida,7,1,google,2026-03-12 19:28:07.992487,,abortion,pill cost,florida +abortion,"('abortion pill cost', 'abortion pill cost free')",abortion pill cost,abortion pill cost free,8,1,google,2026-03-12 19:28:07.992487,,abortion,pill cost,free +abortion,"('abortion pill cost', 'abortion pill cost for 1 month')",abortion pill cost,abortion pill cost for 1 month,9,1,google,2026-03-12 19:28:07.992487,,abortion,pill cost,for 1 month +abortion,"('abortion definition', 'abortion definition according to who')",abortion definition,abortion definition according to who,1,1,google,2026-03-12 19:28:09.264883,,abortion,definition,according to who +abortion,"('abortion definition', 'abortion definition oxford')",abortion definition,abortion definition oxford,2,1,google,2026-03-12 19:28:09.264883,,abortion,definition,oxford +abortion,"('abortion definition', 'abortion definition cdc')",abortion definition,abortion definition cdc,3,1,google,2026-03-12 19:28:09.264883,,abortion,definition,cdc +abortion,"('abortion definition', 'abortion definition law')",abortion definition,abortion definition law,4,1,google,2026-03-12 19:28:09.264883,,abortion,definition,law +abortion,"('abortion definition', 'abortion definition webster')",abortion definition,abortion definition webster,5,1,google,2026-03-12 19:28:09.264883,,abortion,definition,webster +abortion,"('abortion definition', 'abortion definition simple')",abortion definition,abortion definition simple,6,1,google,2026-03-12 19:28:09.264883,,abortion,definition,simple +abortion,"('abortion definition', 'abortion definition acog')",abortion definition,abortion definition acog,7,1,google,2026-03-12 19:28:09.264883,,abortion,definition,acog +abortion,"('abortion definition', 'abortion definition merriam webster')",abortion definition,abortion definition merriam webster,8,1,google,2026-03-12 19:28:09.264883,,abortion,definition,merriam webster +abortion,"('abortion definition', 'abortion definition in nursing')",abortion definition,abortion definition in nursing,9,1,google,2026-03-12 19:28:09.264883,,abortion,definition,in nursing +abortion,"('abortion pill side effects', 'abortion pill side effects long term')",abortion pill side effects,abortion pill side effects long term,1,1,google,2026-03-12 19:28:10.542586,,abortion,pill side effects,long term +abortion,"('abortion pill side effects', 'abortion pill side effects reddit')",abortion pill side effects,abortion pill side effects reddit,2,1,google,2026-03-12 19:28:10.542586,,abortion,pill side effects,reddit +abortion,"('abortion pill side effects', 'abortion pill side effects how long')",abortion pill side effects,abortion pill side effects how long,3,1,google,2026-03-12 19:28:10.542586,,abortion,pill side effects,how long +abortion,"('abortion pill side effects', 'abortion pill side effects first pill')",abortion pill side effects,abortion pill side effects first pill,4,1,google,2026-03-12 19:28:10.542586,,abortion,pill side effects,first +abortion,"('abortion pill side effects', 'abortion pill side effects timeline')",abortion pill side effects,abortion pill side effects timeline,5,1,google,2026-03-12 19:28:10.542586,,abortion,pill side effects,timeline +abortion,"('abortion pill side effects', 'abortion pill side effects future pregnancy')",abortion pill side effects,abortion pill side effects future pregnancy,6,1,google,2026-03-12 19:28:10.542586,,abortion,pill side effects,future pregnancy +abortion,"('abortion pill side effects', 'abortion pill side effects mentally')",abortion pill side effects,abortion pill side effects mentally,7,1,google,2026-03-12 19:28:10.542586,,abortion,pill side effects,mentally +abortion,"('abortion pill side effects', 'abortion pill side effects how many days')",abortion pill side effects,abortion pill side effects how many days,8,1,google,2026-03-12 19:28:10.542586,,abortion,pill side effects,how many days +abortion,"('abortion pill side effects', 'abortion pill side effects 5 weeks')",abortion pill side effects,abortion pill side effects 5 weeks,9,1,google,2026-03-12 19:28:10.542586,,abortion,pill side effects,5 weeks +abortion,"('abortion meaning', 'abortion meaning in pregnancy')",abortion meaning,abortion meaning in pregnancy,1,1,google,2026-03-12 19:28:11.973216,,abortion,meaning,in pregnancy +abortion,"('abortion meaning', 'abortion meaning in english')",abortion meaning,abortion meaning in english,2,1,google,2026-03-12 19:28:11.973216,,abortion,meaning,in english +abortion,"('abortion meaning', 'abortion meaning for kids')",abortion meaning,abortion meaning for kids,3,1,google,2026-03-12 19:28:11.973216,,abortion,meaning,for kids +abortion,"('abortion meaning', 'abortion meaning simple')",abortion meaning,abortion meaning simple,4,1,google,2026-03-12 19:28:11.973216,,abortion,meaning,simple +abortion,"('abortion meaning', 'abortion meaning in hebrew')",abortion meaning,abortion meaning in hebrew,5,1,google,2026-03-12 19:28:11.973216,,abortion,meaning,in hebrew +abortion,"('abortion meaning', 'abortion meaning in hindi')",abortion meaning,abortion meaning in hindi,6,1,google,2026-03-12 19:28:11.973216,,abortion,meaning,in hindi +abortion,"('abortion meaning', 'abortion meaning in the bible')",abortion meaning,abortion meaning in the bible,7,1,google,2026-03-12 19:28:11.973216,,abortion,meaning,in the bible +abortion,"('abortion meaning', 'abortion meaning in greek')",abortion meaning,abortion meaning in greek,8,1,google,2026-03-12 19:28:11.973216,,abortion,meaning,in greek +abortion,"('abortion meaning', 'abortion meaning dictionary')",abortion meaning,abortion meaning dictionary,9,1,google,2026-03-12 19:28:11.973216,,abortion,meaning,dictionary +abortion,"('abortion laws in california', 'abortion laws in california 2025')",abortion laws in california,abortion laws in california 2025,1,1,google,2026-03-12 19:28:13.372973,,abortion,laws in california,2025 +abortion,"('abortion laws in california', 'abortion laws in california 2026')",abortion laws in california,abortion laws in california 2026,2,1,google,2026-03-12 19:28:13.372973,,abortion,laws in california,2026 +abortion,"('abortion laws in california', 'abortion laws in california how many weeks')",abortion laws in california,abortion laws in california how many weeks,3,1,google,2026-03-12 19:28:13.372973,,abortion,laws in california,how many weeks +abortion,"('abortion laws in california', 'abortion laws in california 2024')",abortion laws in california,abortion laws in california 2024,4,1,google,2026-03-12 19:28:13.372973,,abortion,laws in california,2024 +abortion,"('abortion laws in california', 'abortion laws in california for minors')",abortion laws in california,abortion laws in california for minors,5,1,google,2026-03-12 19:28:13.372973,,abortion,laws in california,for minors +abortion,"('abortion laws in california', 'abortion laws in california 2023')",abortion laws in california,abortion laws in california 2023,6,1,google,2026-03-12 19:28:13.372973,,abortion,laws in california,2023 +abortion,"('abortion laws in california', 'abortion laws in california 2024 how many weeks')",abortion laws in california,abortion laws in california 2024 how many weeks,7,1,google,2026-03-12 19:28:13.372973,,abortion,laws in california,2024 how many weeks +abortion,"('abortion laws in california', 'abortion legal in california')",abortion laws in california,abortion legal in california,8,1,google,2026-03-12 19:28:13.372973,,abortion,laws in california,legal +abortion,"('abortion laws in california', 'abortion illegal in california')",abortion laws in california,abortion illegal in california,9,1,google,2026-03-12 19:28:13.372973,,abortion,laws in california,illegal +abortion,"('abortion clinic san francisco ca', 'abortion clinics in san francisco')",abortion clinic san francisco ca,abortion clinics in san francisco,1,2,google,2026-03-12 19:28:14.677008,abortion,abortion clinic san francisco,ca,clinics in +abortion,"('abortion clinic san francisco ca', 'free abortion clinics in california')",abortion clinic san francisco ca,free abortion clinics in california,2,2,google,2026-03-12 19:28:14.677008,abortion,abortion clinic san francisco,ca,free clinics in california +abortion,"('abortion clinic san francisco ca', 'abortion clinic for free near me')",abortion clinic san francisco ca,abortion clinic for free near me,3,2,google,2026-03-12 19:28:14.677008,abortion,abortion clinic san francisco,ca,for free near me +abortion,"('abortion clinic san francisco ca', 'abortion clinics san francisco california')",abortion clinic san francisco ca,abortion clinics san francisco california,4,2,google,2026-03-12 19:28:14.677008,abortion,abortion clinic san francisco,ca,clinics california +abortion,"(""women's clinic san francisco"", ""women's health center san francisco"")",women's clinic san francisco,women's health center san francisco,1,2,google,2026-03-12 19:28:16.169598,abortion,abortion clinic san francisco,women's,health center +abortion,"(""women's clinic san francisco"", ""women's hospital san francisco"")",women's clinic san francisco,women's hospital san francisco,2,2,google,2026-03-12 19:28:16.169598,abortion,abortion clinic san francisco,women's,hospital +abortion,"(""women's clinic san francisco"", ""women's health clinic san francisco"")",women's clinic san francisco,women's health clinic san francisco,3,2,google,2026-03-12 19:28:16.169598,abortion,abortion clinic san francisco,women's,health +abortion,"(""women's clinic san francisco"", ""free women's clinic san francisco"")",women's clinic san francisco,free women's clinic san francisco,4,2,google,2026-03-12 19:28:16.169598,abortion,abortion clinic san francisco,women's,free +abortion,"(""women's clinic san francisco"", ""women's community clinic san francisco"")",women's clinic san francisco,women's community clinic san francisco,5,2,google,2026-03-12 19:28:16.169598,abortion,abortion clinic san francisco,women's,community +abortion,"(""women's clinic san francisco"", ""ucsf women's clinic san francisco"")",women's clinic san francisco,ucsf women's clinic san francisco,6,2,google,2026-03-12 19:28:16.169598,abortion,abortion clinic san francisco,women's,ucsf +abortion,"(""women's clinic san francisco"", ""va women's clinic san francisco"")",women's clinic san francisco,va women's clinic san francisco,7,2,google,2026-03-12 19:28:16.169598,abortion,abortion clinic san francisco,women's,va +abortion,"(""women's clinic san francisco"", ""women's golf clinic san francisco"")",women's clinic san francisco,women's golf clinic san francisco,8,2,google,2026-03-12 19:28:16.169598,abortion,abortion clinic san francisco,women's,golf +abortion,"(""women's clinic san francisco"", ""sutter women's health center san francisco"")",women's clinic san francisco,sutter women's health center san francisco,9,2,google,2026-03-12 19:28:16.169598,abortion,abortion clinic san francisco,women's,sutter health center +abortion,"('abortion services san francisco', 'abortion clinic san francisco')",abortion services san francisco,abortion clinic san francisco,1,2,google,2026-03-12 19:28:17.589990,abortion,abortion clinic san francisco,services,clinic +abortion,"('abortion services san francisco', 'abortion clinic san francisco ca')",abortion services san francisco,abortion clinic san francisco ca,2,2,google,2026-03-12 19:28:17.589990,abortion,abortion clinic san francisco,services,clinic ca +abortion,"('abortion services san francisco', 'abortion treatment near me')",abortion services san francisco,abortion treatment near me,3,2,google,2026-03-12 19:28:17.589990,abortion,abortion clinic san francisco,services,treatment near me +abortion,"('abortion services san francisco', 'abortion clinics san francisco california')",abortion services san francisco,abortion clinics san francisco california,4,2,google,2026-03-12 19:28:17.589990,abortion,abortion clinic san francisco,services,clinics california +abortion,"('abortion services san francisco', 'abortion san francisco')",abortion services san francisco,abortion san francisco,5,2,google,2026-03-12 19:28:17.589990,abortion,abortion clinic san francisco,services,services +abortion,"('abortion services san francisco', 'abortion clinics sf')",abortion services san francisco,abortion clinics sf,6,2,google,2026-03-12 19:28:17.589990,abortion,abortion clinic san francisco,services,clinics sf +abortion,"(""women's health clinic san francisco"", ""women's health center san francisco"")",women's health clinic san francisco,women's health center san francisco,1,2,google,2026-03-12 19:28:18.662082,abortion,abortion clinic san francisco,women's health,center +abortion,"(""women's health clinic san francisco"", ""tia women's health clinic san francisco"")",women's health clinic san francisco,tia women's health clinic san francisco,2,2,google,2026-03-12 19:28:18.662082,abortion,abortion clinic san francisco,women's health,tia +abortion,"(""women's health clinic san francisco"", ""tia women's health clinic san francisco reviews"")",women's health clinic san francisco,tia women's health clinic san francisco reviews,3,2,google,2026-03-12 19:28:18.662082,abortion,abortion clinic san francisco,women's health,tia reviews +abortion,"(""women's health clinic san francisco"", ""sutter women's health center san francisco"")",women's health clinic san francisco,sutter women's health center san francisco,4,2,google,2026-03-12 19:28:18.662082,abortion,abortion clinic san francisco,women's health,sutter center +abortion,"(""women's health clinic san francisco"", ""women's breast health center san francisco"")",women's health clinic san francisco,women's breast health center san francisco,5,2,google,2026-03-12 19:28:18.662082,abortion,abortion clinic san francisco,women's health,breast center +abortion,"(""women's health clinic san francisco"", ""ucsf women's health center san francisco ca"")",women's health clinic san francisco,ucsf women's health center san francisco ca,6,2,google,2026-03-12 19:28:18.662082,abortion,abortion clinic san francisco,women's health,ucsf center ca +abortion,"(""women's health clinic san francisco"", ""st mary's women's health center san francisco"")",women's health clinic san francisco,st mary's women's health center san francisco,7,2,google,2026-03-12 19:28:18.662082,abortion,abortion clinic san francisco,women's health,st mary's center +abortion,"(""women's health clinic san francisco"", ""women's health san francisco"")",women's health clinic san francisco,women's health san francisco,8,2,google,2026-03-12 19:28:18.662082,abortion,abortion clinic san francisco,women's health,women's health +abortion,"(""women's health clinic san francisco"", ""women's clinic san francisco"")",women's health clinic san francisco,women's clinic san francisco,9,2,google,2026-03-12 19:28:18.662082,abortion,abortion clinic san francisco,women's health,women's health +abortion,"(""free women's clinic san francisco"", ""free women's pregnancy clinic near me"")",free women's clinic san francisco,free women's pregnancy clinic near me,1,2,google,2026-03-12 19:28:19.646242,abortion,abortion clinic san francisco,free women's,pregnancy near me +abortion,"(""free women's clinic san francisco"", ""free women's clinics near me"")",free women's clinic san francisco,free women's clinics near me,2,2,google,2026-03-12 19:28:19.646242,abortion,abortion clinic san francisco,free women's,clinics near me +abortion,"(""free women's clinic san francisco"", 'are free clinics really free')",free women's clinic san francisco,are free clinics really free,3,2,google,2026-03-12 19:28:19.646242,abortion,abortion clinic san francisco,free women's,are clinics really +abortion,"(""free women's clinic san francisco"", ""free women's health clinics near me"")",free women's clinic san francisco,free women's health clinics near me,4,2,google,2026-03-12 19:28:19.646242,abortion,abortion clinic san francisco,free women's,health clinics near me +abortion,"(""free women's clinic san francisco"", ""free women's clinic san diego"")",free women's clinic san francisco,free women's clinic san diego,5,2,google,2026-03-12 19:28:19.646242,abortion,abortion clinic san francisco,free women's,diego +abortion,"(""free women's clinic san francisco"", ""free women's clinic sacramento"")",free women's clinic san francisco,free women's clinic sacramento,6,2,google,2026-03-12 19:28:19.646242,abortion,abortion clinic san francisco,free women's,sacramento +abortion,"(""free women's clinic san francisco"", ""free women's clinic san antonio"")",free women's clinic san francisco,free women's clinic san antonio,7,2,google,2026-03-12 19:28:19.646242,abortion,abortion clinic san francisco,free women's,antonio +abortion,"(""free women's clinic san francisco"", ""free women's clinic san bernardino ca"")",free women's clinic san francisco,free women's clinic san bernardino ca,8,2,google,2026-03-12 19:28:19.646242,abortion,abortion clinic san francisco,free women's,bernardino ca +abortion,"(""women's community clinic san francisco"", ""Women's Community Clinic, Mission Street, San Francisco, CA"")",women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",1,2,google,2026-03-12 19:28:20.962600,abortion,abortion clinic san francisco,women's community,"Women's Community Clinic, Mission Street, San Francisco, CA" +abortion,"(""women's community clinic san francisco"", ""women's community clinic sf"")",women's community clinic san francisco,women's community clinic sf,2,2,google,2026-03-12 19:28:20.962600,abortion,abortion clinic san francisco,women's community,sf +abortion,"(""women's community clinic san francisco"", ""women's community clinic"")",women's community clinic san francisco,women's community clinic,3,2,google,2026-03-12 19:28:20.962600,abortion,abortion clinic san francisco,women's community,women's community +abortion,"(""women's community clinic san francisco"", ""women's clinic san francisco"")",women's community clinic san francisco,women's clinic san francisco,4,2,google,2026-03-12 19:28:20.962600,abortion,abortion clinic san francisco,women's community,women's community +abortion,"(""ucsf women's clinic san francisco"", ""ucsf women's health center san francisco ca"")",ucsf women's clinic san francisco,ucsf women's health center san francisco ca,1,2,google,2026-03-12 19:28:21.853974,abortion,abortion clinic san francisco,ucsf women's,health center ca +abortion,"(""ucsf women's clinic san francisco"", ""ucsf women's clinic"")",ucsf women's clinic san francisco,ucsf women's clinic,2,2,google,2026-03-12 19:28:21.853974,abortion,abortion clinic san francisco,ucsf women's,ucsf women's +abortion,"(""ucsf women's clinic san francisco"", ""ucsf women's center"")",ucsf women's clinic san francisco,ucsf women's center,3,2,google,2026-03-12 19:28:21.853974,abortion,abortion clinic san francisco,ucsf women's,center +abortion,"(""ucsf women's clinic san francisco"", ""ucsf women's health clinic"")",ucsf women's clinic san francisco,ucsf women's health clinic,4,2,google,2026-03-12 19:28:21.853974,abortion,abortion clinic san francisco,ucsf women's,health +abortion,"(""ucsf women's clinic san francisco"", ""ucsf women's health center"")",ucsf women's clinic san francisco,ucsf women's health center,5,2,google,2026-03-12 19:28:21.853974,abortion,abortion clinic san francisco,ucsf women's,health center +abortion,"(""va women's clinic san francisco"", ""women's clinic equity boost san francisco va medical center'"")",va women's clinic san francisco,women's clinic equity boost san francisco va medical center',1,2,google,2026-03-12 19:28:22.780598,abortion,abortion clinic san francisco,va women's,equity boost medical center' +abortion,"(""va women's clinic san francisco"", ""va women's clinic near me"")",va women's clinic san francisco,va women's clinic near me,2,2,google,2026-03-12 19:28:22.780598,abortion,abortion clinic san francisco,va women's,near me +abortion,"(""va women's clinic san francisco"", 'va approved clinics near me')",va women's clinic san francisco,va approved clinics near me,3,2,google,2026-03-12 19:28:22.780598,abortion,abortion clinic san francisco,va women's,approved clinics near me +abortion,"(""va women's clinic san francisco"", 'va doctors office near me')",va women's clinic san francisco,va doctors office near me,4,2,google,2026-03-12 19:28:22.780598,abortion,abortion clinic san francisco,va women's,doctors office near me +abortion,"(""va women's clinic san francisco"", 'va clinic near me')",va women's clinic san francisco,va clinic near me,5,2,google,2026-03-12 19:28:22.780598,abortion,abortion clinic san francisco,va women's,near me +abortion,"(""va women's clinic san francisco"", 'va animal clinic near me')",va women's clinic san francisco,va animal clinic near me,6,2,google,2026-03-12 19:28:22.780598,abortion,abortion clinic san francisco,va women's,animal near me +abortion,"(""va women's clinic san francisco"", ""va women's clinic st louis"")",va women's clinic san francisco,va women's clinic st louis,7,2,google,2026-03-12 19:28:22.780598,abortion,abortion clinic san francisco,va women's,st louis +abortion,"(""va women's clinic san francisco"", ""va women's clinic seattle"")",va women's clinic san francisco,va women's clinic seattle,8,2,google,2026-03-12 19:28:22.780598,abortion,abortion clinic san francisco,va women's,seattle +abortion,"(""va women's clinic san francisco"", ""va women's center st francis"")",va women's clinic san francisco,va women's center st francis,9,2,google,2026-03-12 19:28:22.780598,abortion,abortion clinic san francisco,va women's,center st francis +abortion,"(""women's golf clinic san francisco"", ""women's golf lessons san francisco"")",women's golf clinic san francisco,women's golf lessons san francisco,1,2,google,2026-03-12 19:28:24.224130,abortion,abortion clinic san francisco,women's golf,lessons +abortion,"(""women's golf clinic san francisco"", ""women's golf clinic"")",women's golf clinic san francisco,women's golf clinic,2,2,google,2026-03-12 19:28:24.224130,abortion,abortion clinic san francisco,women's golf,women's golf +abortion,"(""women's golf clinic san francisco"", ""women's golf clinic ideas"")",women's golf clinic san francisco,women's golf clinic ideas,3,2,google,2026-03-12 19:28:24.224130,abortion,abortion clinic san francisco,women's golf,ideas +abortion,"(""women's golf clinic san francisco"", ""women's clinic sf general"")",women's golf clinic san francisco,women's clinic sf general,4,2,google,2026-03-12 19:28:24.224130,abortion,abortion clinic san francisco,women's golf,sf general +abortion,"('abortion clinic near me open now', 'abortion clinic near me open now within 8.1 km')",abortion clinic near me open now,abortion clinic near me open now within 8.1 km,1,2,google,2026-03-12 19:28:25.371678,abortion,abortion clinic near me,open now,within 8.1 km +abortion,"('abortion clinic near me open now', 'abortion clinic near me open now within 20 mi')",abortion clinic near me open now,abortion clinic near me open now within 20 mi,2,2,google,2026-03-12 19:28:25.371678,abortion,abortion clinic near me,open now,within 20 mi +abortion,"('abortion clinic near me open now', 'abortion clinic near me open now within 5 mi')",abortion clinic near me open now,abortion clinic near me open now within 5 mi,3,2,google,2026-03-12 19:28:25.371678,abortion,abortion clinic near me,open now,within 5 mi +abortion,"('abortion clinic near me open now', ""women's clinic near me open now"")",abortion clinic near me open now,women's clinic near me open now,4,2,google,2026-03-12 19:28:25.371678,abortion,abortion clinic near me,open now,women's +abortion,"('abortion clinic near me open now', 'abortion hospital near me open now')",abortion clinic near me open now,abortion hospital near me open now,5,2,google,2026-03-12 19:28:25.371678,abortion,abortion clinic near me,open now,hospital +abortion,"('abortion clinic near me open now', 'abortion doctor near me open now')",abortion clinic near me open now,abortion doctor near me open now,6,2,google,2026-03-12 19:28:25.371678,abortion,abortion clinic near me,open now,doctor +abortion,"('abortion clinic near me open now', 'abortion centers near me open now')",abortion clinic near me open now,abortion centers near me open now,7,2,google,2026-03-12 19:28:25.371678,abortion,abortion clinic near me,open now,centers +abortion,"('abortion clinic near me open now', 'abortion services near me open now')",abortion clinic near me open now,abortion services near me open now,8,2,google,2026-03-12 19:28:25.371678,abortion,abortion clinic near me,open now,services +abortion,"('abortion clinic near me open now', ""women's clinic near me open now within 5 mi"")",abortion clinic near me open now,women's clinic near me open now within 5 mi,9,2,google,2026-03-12 19:28:25.371678,abortion,abortion clinic near me,open now,women's within 5 mi +abortion,"('abortion clinic near me prices', 'abortion clinic near me prices open now')",abortion clinic near me prices,abortion clinic near me prices open now,1,2,google,2026-03-12 19:28:26.440067,abortion,abortion clinic near me,prices,open now +abortion,"('abortion clinic near me prices', 'cat abortion clinic near me prices')",abortion clinic near me prices,cat abortion clinic near me prices,2,2,google,2026-03-12 19:28:26.440067,abortion,abortion clinic near me,prices,cat +abortion,"('abortion clinic near me prices', 'abortion clinics near me and prices within 8.1 km')",abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,3,2,google,2026-03-12 19:28:26.440067,abortion,abortion clinic near me,prices,clinics and within 8.1 km +abortion,"('abortion clinic near me prices', 'abortion clinics near me and prices within 32.2 km')",abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,4,2,google,2026-03-12 19:28:26.440067,abortion,abortion clinic near me,prices,clinics and within 32.2 km +abortion,"('abortion clinic near me prices', 'abortion clinic near me low cost')",abortion clinic near me prices,abortion clinic near me low cost,5,2,google,2026-03-12 19:28:26.440067,abortion,abortion clinic near me,prices,low cost +abortion,"('abortion clinic near me prices', ""women's clinic near me low cost"")",abortion clinic near me prices,women's clinic near me low cost,6,2,google,2026-03-12 19:28:26.440067,abortion,abortion clinic near me,prices,women's low cost +abortion,"('abortion clinic near me prices', 'abortion clinic near me for free')",abortion clinic near me prices,abortion clinic near me for free,7,2,google,2026-03-12 19:28:26.440067,abortion,abortion clinic near me,prices,for free +abortion,"('abortion clinic near me prices', 'abortion clinic near me cost')",abortion clinic near me prices,abortion clinic near me cost,8,2,google,2026-03-12 19:28:26.440067,abortion,abortion clinic near me,prices,cost +abortion,"('abortion clinic near me prices', 'abortion clinic near me how much')",abortion clinic near me prices,abortion clinic near me how much,9,2,google,2026-03-12 19:28:26.440067,abortion,abortion clinic near me,prices,how much +abortion,"('abortion clinic near me for free', 'women clinic near me for free')",abortion clinic near me for free,women clinic near me for free,1,2,google,2026-03-12 19:28:27.389291,abortion,abortion clinic near me,for free,women +abortion,"('abortion clinic near me for free', ""women's clinic near me free ultrasound"")",abortion clinic near me for free,women's clinic near me free ultrasound,2,2,google,2026-03-12 19:28:27.389291,abortion,abortion clinic near me,for free,women's ultrasound +abortion,"('abortion clinic near me for free', 'abortion pill clinic near me free')",abortion clinic near me for free,abortion pill clinic near me free,3,2,google,2026-03-12 19:28:27.389291,abortion,abortion clinic near me,for free,pill +abortion,"('abortion clinic near me for free', ""women's center near me free ultrasound"")",abortion clinic near me for free,women's center near me free ultrasound,4,2,google,2026-03-12 19:28:27.389291,abortion,abortion clinic near me,for free,women's center ultrasound +abortion,"('abortion clinic near me for free', 'women center near me free')",abortion clinic near me for free,women center near me free,5,2,google,2026-03-12 19:28:27.389291,abortion,abortion clinic near me,for free,women center +abortion,"('abortion clinic near me for free', 'free abortion clinic near me open now')",abortion clinic near me for free,free abortion clinic near me open now,6,2,google,2026-03-12 19:28:27.389291,abortion,abortion clinic near me,for free,open now +abortion,"('abortion clinic near me for free', 'free abortion clinic near me volunteer')",abortion clinic near me for free,free abortion clinic near me volunteer,7,2,google,2026-03-12 19:28:27.389291,abortion,abortion clinic near me,for free,volunteer +abortion,"('abortion clinic near me for free', 'free abortion clinic near me within 5 mi')",abortion clinic near me for free,free abortion clinic near me within 5 mi,8,2,google,2026-03-12 19:28:27.389291,abortion,abortion clinic near me,for free,within 5 mi +abortion,"('abortion clinic near me for free', 'free abortion clinic near me within 20 mi')",abortion clinic near me for free,free abortion clinic near me within 20 mi,9,2,google,2026-03-12 19:28:27.389291,abortion,abortion clinic near me,for free,within 20 mi +abortion,"('abortion clinic near me walk in', 'women clinic near me walk in')",abortion clinic near me walk in,women clinic near me walk in,1,2,google,2026-03-12 19:28:28.254532,abortion,abortion clinic near me,walk in,women +abortion,"('abortion clinic near me walk in', ""women's health clinic near me walk in"")",abortion clinic near me walk in,women's health clinic near me walk in,2,2,google,2026-03-12 19:28:28.254532,abortion,abortion clinic near me,walk in,women's health +abortion,"('abortion clinic near me walk in', ""free women's clinic near me walk in"")",abortion clinic near me walk in,free women's clinic near me walk in,3,2,google,2026-03-12 19:28:28.254532,abortion,abortion clinic near me,walk in,free women's +abortion,"('abortion clinic near me walk in', 'walk in abortion clinic near me nhs')",abortion clinic near me walk in,walk in abortion clinic near me nhs,4,2,google,2026-03-12 19:28:28.254532,abortion,abortion clinic near me,walk in,nhs +abortion,"('abortion clinic near me walk in', 'walk in abortion clinic near me open now')",abortion clinic near me walk in,walk in abortion clinic near me open now,5,2,google,2026-03-12 19:28:28.254532,abortion,abortion clinic near me,walk in,open now +abortion,"('abortion clinic near me walk in', 'walk in abortion clinic near me private')",abortion clinic near me walk in,walk in abortion clinic near me private,6,2,google,2026-03-12 19:28:28.254532,abortion,abortion clinic near me,walk in,private +abortion,"('abortion clinic near me walk in', 'walk in abortion clinic near me within 5 mi')",abortion clinic near me walk in,walk in abortion clinic near me within 5 mi,7,2,google,2026-03-12 19:28:28.254532,abortion,abortion clinic near me,walk in,within 5 mi +abortion,"('abortion clinic near me walk in', 'walk in abortion clinic near me within 20 mi')",abortion clinic near me walk in,walk in abortion clinic near me within 20 mi,8,2,google,2026-03-12 19:28:28.254532,abortion,abortion clinic near me,walk in,within 20 mi +abortion,"('abortion clinic near me walk in', 'walk in abortion clinic near me nhs open now')",abortion clinic near me walk in,walk in abortion clinic near me nhs open now,9,2,google,2026-03-12 19:28:28.254532,abortion,abortion clinic near me,walk in,nhs open now +abortion,"('abortion clinic near me now', 'abortion clinic san francisco')",abortion clinic near me now,abortion clinic san francisco,1,2,google,2026-03-12 19:28:29.507558,abortion,abortion clinic near me,now,san francisco +abortion,"('abortion clinic near me now', ""women's clinic near me now"")",abortion clinic near me now,women's clinic near me now,2,2,google,2026-03-12 19:28:29.507558,abortion,abortion clinic near me,now,women's +abortion,"('abortion clinic near me now', 'abortion clinic near me today')",abortion clinic near me now,abortion clinic near me today,3,2,google,2026-03-12 19:28:29.507558,abortion,abortion clinic near me,now,today +abortion,"('abortion clinic near me now', 'abortion clinic near me open now')",abortion clinic near me now,abortion clinic near me open now,4,2,google,2026-03-12 19:28:29.507558,abortion,abortion clinic near me,now,open +abortion,"('abortion clinic near me now', 'abortion clinic near me open now within 8.1 km')",abortion clinic near me now,abortion clinic near me open now within 8.1 km,5,2,google,2026-03-12 19:28:29.507558,abortion,abortion clinic near me,now,open within 8.1 km +abortion,"('abortion clinic near me now', 'abortion clinic near me open now within 20 mi')",abortion clinic near me now,abortion clinic near me open now within 20 mi,6,2,google,2026-03-12 19:28:29.507558,abortion,abortion clinic near me,now,open within 20 mi +abortion,"('abortion clinic near me now', 'abortion clinic near me open now within 5 mi')",abortion clinic near me now,abortion clinic near me open now within 5 mi,7,2,google,2026-03-12 19:28:29.507558,abortion,abortion clinic near me,now,open within 5 mi +abortion,"('abortion clinic near me now', ""women's clinic near me open now"")",abortion clinic near me now,women's clinic near me open now,8,2,google,2026-03-12 19:28:29.507558,abortion,abortion clinic near me,now,women's open +abortion,"('abortion clinic near me now', 'abortion hospital near me open now')",abortion clinic near me now,abortion hospital near me open now,9,2,google,2026-03-12 19:28:29.507558,abortion,abortion clinic near me,now,hospital open +abortion,"('abortion clinic near me that takes insurance', 'abortion clinic near me insurance')",abortion clinic near me that takes insurance,abortion clinic near me insurance,1,2,google,2026-03-12 19:28:30.433995,abortion,abortion clinic near me,that takes insurance,that takes insurance +abortion,"('abortion clinic near me that takes insurance', 'do abortion clinics take insurance')",abortion clinic near me that takes insurance,do abortion clinics take insurance,2,2,google,2026-03-12 19:28:30.433995,abortion,abortion clinic near me,that takes insurance,do clinics take +abortion,"('abortion clinic near me that takes insurance', 'what insurance cover abortion')",abortion clinic near me that takes insurance,what insurance cover abortion,3,2,google,2026-03-12 19:28:30.433995,abortion,abortion clinic near me,that takes insurance,what cover +abortion,"('abortion clinic near me that takes insurance', 'abortion clinic near me that accept insurance')",abortion clinic near me that takes insurance,abortion clinic near me that accept insurance,4,2,google,2026-03-12 19:28:30.433995,abortion,abortion clinic near me,that takes insurance,accept +abortion,"('abortion clinic near me that takes insurance', 'abortion clinic near me that accepts medicaid')",abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,5,2,google,2026-03-12 19:28:30.433995,abortion,abortion clinic near me,that takes insurance,accepts medicaid +abortion,"('abortion clinic near me open', 'abortion clinic near me open now')",abortion clinic near me open,abortion clinic near me open now,1,2,google,2026-03-12 19:28:31.736091,abortion,abortion clinic near me,open,now +abortion,"('abortion clinic near me open', 'abortion clinic near me open on weekends')",abortion clinic near me open,abortion clinic near me open on weekends,2,2,google,2026-03-12 19:28:31.736091,abortion,abortion clinic near me,open,on weekends +abortion,"('abortion clinic near me open', 'abortion clinic near me open saturday')",abortion clinic near me open,abortion clinic near me open saturday,3,2,google,2026-03-12 19:28:31.736091,abortion,abortion clinic near me,open,saturday +abortion,"('abortion clinic near me open', 'abortion clinic near me open sunday')",abortion clinic near me open,abortion clinic near me open sunday,4,2,google,2026-03-12 19:28:31.736091,abortion,abortion clinic near me,open,sunday +abortion,"('abortion clinic near me open', 'abortion clinic near me open today')",abortion clinic near me open,abortion clinic near me open today,5,2,google,2026-03-12 19:28:31.736091,abortion,abortion clinic near me,open,today +abortion,"('abortion clinic near me open', 'abortion clinic near me open tomorrow')",abortion clinic near me open,abortion clinic near me open tomorrow,6,2,google,2026-03-12 19:28:31.736091,abortion,abortion clinic near me,open,tomorrow +abortion,"('abortion clinic near me open', 'abortion clinic near me open now within 8.1 km')",abortion clinic near me open,abortion clinic near me open now within 8.1 km,7,2,google,2026-03-12 19:28:31.736091,abortion,abortion clinic near me,open,now within 8.1 km +abortion,"('abortion clinic near me open', 'abortion clinic near me open now within 20 mi')",abortion clinic near me open,abortion clinic near me open now within 20 mi,8,2,google,2026-03-12 19:28:31.736091,abortion,abortion clinic near me,open,now within 20 mi +abortion,"('abortion clinic near me open', 'abortion clinic near me open now within 5 mi')",abortion clinic near me open,abortion clinic near me open now within 5 mi,9,2,google,2026-03-12 19:28:31.736091,abortion,abortion clinic near me,open,now within 5 mi +abortion,"('abortion clinic near me same day', 'abortion clinic near me same day appointment')",abortion clinic near me same day,abortion clinic near me same day appointment,1,2,google,2026-03-12 19:28:33.196221,abortion,abortion clinic near me,same day,appointment +abortion,"('abortion clinic near me same day', 'same day private abortion clinic near me')",abortion clinic near me same day,same day private abortion clinic near me,2,2,google,2026-03-12 19:28:33.196221,abortion,abortion clinic near me,same day,private +abortion,"('abortion clinic near me same day', 'abortion clinic near me now')",abortion clinic near me same day,abortion clinic near me now,3,2,google,2026-03-12 19:28:33.196221,abortion,abortion clinic near me,same day,now +abortion,"('abortion clinic near me same day', 'abortion clinic open on saturday near me')",abortion clinic near me same day,abortion clinic open on saturday near me,4,2,google,2026-03-12 19:28:33.196221,abortion,abortion clinic near me,same day,open on saturday +abortion,"('abortion clinic near me same day', 'abortion clinic near me 24 hours')",abortion clinic near me same day,abortion clinic near me 24 hours,5,2,google,2026-03-12 19:28:33.196221,abortion,abortion clinic near me,same day,24 hours +abortion,"('abortion pill online free', 'abortion pill online free texas')",abortion pill online free,abortion pill online free texas,1,2,google,2026-03-12 19:28:34.586238,abortion,abortion pill online,free,texas +abortion,"('abortion pill online free', 'abortion pill online free missouri')",abortion pill online free,abortion pill online free missouri,2,2,google,2026-03-12 19:28:34.586238,abortion,abortion pill online,free,missouri +abortion,"('abortion pill online free', 'abortion pill online free medicaid')",abortion pill online free,abortion pill online free medicaid,3,2,google,2026-03-12 19:28:34.586238,abortion,abortion pill online,free,medicaid +abortion,"('abortion pill online free', 'morning after pill online free')",abortion pill online free,morning after pill online free,4,2,google,2026-03-12 19:28:34.586238,abortion,abortion pill online,free,morning after +abortion,"('abortion pill online free', 'morning after pill for free boots')",abortion pill online free,morning after pill for free boots,5,2,google,2026-03-12 19:28:34.586238,abortion,abortion pill online,free,morning after for boots +abortion,"('abortion pill online free', 'morning after pill free online uk')",abortion pill online free,morning after pill free online uk,6,2,google,2026-03-12 19:28:34.586238,abortion,abortion pill online,free,morning after uk +abortion,"('abortion pill online free', 'morning after pill for free uk')",abortion pill online free,morning after pill for free uk,7,2,google,2026-03-12 19:28:34.586238,abortion,abortion pill online,free,morning after for uk +abortion,"('abortion pill online free', 'morning after pill for free nhs')",abortion pill online free,morning after pill for free nhs,8,2,google,2026-03-12 19:28:34.586238,abortion,abortion pill online,free,morning after for nhs +abortion,"('abortion pill online cost', 'abortion pill online low cost')",abortion pill online cost,abortion pill online low cost,1,2,google,2026-03-12 19:28:35.489936,abortion,abortion pill online,cost,low +abortion,"('abortion pill online cost', 'morning after pill price online')",abortion pill online cost,morning after pill price online,2,2,google,2026-03-12 19:28:35.489936,abortion,abortion pill online,cost,morning after price +abortion,"('abortion pill online cost', 'abortion pill near me online')",abortion pill online cost,abortion pill near me online,3,2,google,2026-03-12 19:28:35.489936,abortion,abortion pill online,cost,near me +abortion,"('abortion pill online cost', 'abortion pill online prescription')",abortion pill online cost,abortion pill online prescription,4,2,google,2026-03-12 19:28:35.489936,abortion,abortion pill online,cost,prescription +abortion,"('abortion pill online near me', 'abortion pill in german online near me')",abortion pill online near me,abortion pill in german online near me,1,2,google,2026-03-12 19:28:36.903393,abortion,abortion pill online,near me,in german +abortion,"('abortion pill online near me', 'abortion pill online medicaid')",abortion pill online near me,abortion pill online medicaid,2,2,google,2026-03-12 19:28:36.903393,abortion,abortion pill online,near me,medicaid +abortion,"('abortion pill online near me', 'abortion pill online near mississippi')",abortion pill online near me,abortion pill online near mississippi,3,2,google,2026-03-12 19:28:36.903393,abortion,abortion pill online,near me,mississippi +abortion,"('abortion pill online amazon', 'morning after pill on amazon')",abortion pill online amazon,morning after pill on amazon,1,2,google,2026-03-12 19:28:38.173894,abortion,abortion pill online,amazon,morning after on +abortion,"('abortion pill online amazon', 'best amazon morning after pill')",abortion pill online amazon,best amazon morning after pill,2,2,google,2026-03-12 19:28:38.173894,abortion,abortion pill online,amazon,best morning after +abortion,"('abortion pill online amazon', 'abortion pill on amazon')",abortion pill online amazon,abortion pill on amazon,3,2,google,2026-03-12 19:28:38.173894,abortion,abortion pill online,amazon,on +abortion,"('abortion pill online georgia', 'abortion pill online ga')",abortion pill online georgia,abortion pill online ga,1,2,google,2026-03-12 19:28:39.157457,abortion,abortion pill online,georgia,ga +abortion,"('abortion pill online georgia', 'abortion pill online atlanta ga')",abortion pill online georgia,abortion pill online atlanta ga,2,2,google,2026-03-12 19:28:39.157457,abortion,abortion pill online,georgia,atlanta ga +abortion,"('abortion pill online georgia', 'abortion pill in georgia')",abortion pill online georgia,abortion pill in georgia,3,2,google,2026-03-12 19:28:39.157457,abortion,abortion pill online,georgia,in +abortion,"('abortion pill online georgia', 'abortion pill near me online')",abortion pill online georgia,abortion pill near me online,4,2,google,2026-03-12 19:28:39.157457,abortion,abortion pill online,georgia,near me +abortion,"('abortion pill online reviews', 'online abortion pill rx reviews')",abortion pill online reviews,online abortion pill rx reviews,1,2,google,2026-03-12 19:28:40.231479,abortion,abortion pill online,reviews,rx +abortion,"('abortion pill online reviews', 'abortion pill online telehealth')",abortion pill online reviews,abortion pill online telehealth,2,2,google,2026-03-12 19:28:40.231479,abortion,abortion pill online,reviews,telehealth +abortion,"('abortion pill online ohio', 'abortion clinics in ohio')",abortion pill online ohio,abortion clinics in ohio,1,2,google,2026-03-12 19:28:41.194426,abortion,abortion pill online,ohio,clinics in +abortion,"('abortion pill online ohio', 'abortion clinics in ohio near me')",abortion pill online ohio,abortion clinics in ohio near me,2,2,google,2026-03-12 19:28:41.194426,abortion,abortion pill online,ohio,clinics in near me +abortion,"('abortion pill online ohio', 'abortion pill ohio')",abortion pill online ohio,abortion pill ohio,3,2,google,2026-03-12 19:28:41.194426,abortion,abortion pill online,ohio,ohio +abortion,"('abortion pill online ohio', 'abortion pill legal in ohio')",abortion pill online ohio,abortion pill legal in ohio,4,2,google,2026-03-12 19:28:41.194426,abortion,abortion pill online,ohio,legal in +abortion,"('abortion pill online ohio', 'abortion pill laws in ohio')",abortion pill online ohio,abortion pill laws in ohio,5,2,google,2026-03-12 19:28:41.194426,abortion,abortion pill online,ohio,laws in +abortion,"('abortion pill online abuzz', 'abortion pill near me online')",abortion pill online abuzz,abortion pill near me online,1,2,google,2026-03-12 19:28:42.247279,abortion,abortion pill online,abuzz,near me +abortion,"('abortion pill online abuzz', 'abortion pill online amazon')",abortion pill online abuzz,abortion pill online amazon,2,2,google,2026-03-12 19:28:42.247279,abortion,abortion pill online,abuzz,amazon +abortion,"('abortion pill online abuzz', 'abortion pill online az')",abortion pill online abuzz,abortion pill online az,3,2,google,2026-03-12 19:28:42.247279,abortion,abortion pill online,abuzz,az +abortion,"('abortion pill online abuzz', 'abortion pill online access')",abortion pill online abuzz,abortion pill online access,4,2,google,2026-03-12 19:28:42.247279,abortion,abortion pill online,abuzz,access +abortion,"('abortion pill online abuzz', 'abortion pill online prescription')",abortion pill online abuzz,abortion pill online prescription,5,2,google,2026-03-12 19:28:42.247279,abortion,abortion pill online,abuzz,prescription +abortion,"('abortion pill online cheapest', 'abortion pill online prices')",abortion pill online cheapest,abortion pill online prices,1,2,google,2026-03-12 19:28:43.553744,abortion,abortion pill online,cheapest,prices +abortion,"('abortion pill online cheapest', 'morning after pill online cheap')",abortion pill online cheapest,morning after pill online cheap,2,2,google,2026-03-12 19:28:43.553744,abortion,abortion pill online,cheapest,morning after cheap +abortion,"('abortion pill online cheapest', 'abortion pill near me online')",abortion pill online cheapest,abortion pill near me online,3,2,google,2026-03-12 19:28:43.553744,abortion,abortion pill online,cheapest,near me +abortion,"('abortion pill online cheapest', 'abortion pill online cost')",abortion pill online cheapest,abortion pill online cost,4,2,google,2026-03-12 19:28:43.553744,abortion,abortion pill online,cheapest,cost +abortion,"('abortion clinic san jose', 'abortion clinic san jose california')",abortion clinic san jose,abortion clinic san jose california,1,2,google,2026-03-12 19:28:44.390246,abortion,abortion clinic,san jose,california +abortion,"('abortion clinic san jose', ""women's clinic san jose"")",abortion clinic san jose,women's clinic san jose,2,2,google,2026-03-12 19:28:44.390246,abortion,abortion clinic,san jose,women's +abortion,"('abortion clinic san jose', ""saint joseph's women's clinic"")",abortion clinic san jose,saint joseph's women's clinic,3,2,google,2026-03-12 19:28:44.390246,abortion,abortion clinic,san jose,saint joseph's women's +abortion,"('abortion clinic san jose', ""women's clinic st joseph mo"")",abortion clinic san jose,women's clinic st joseph mo,4,2,google,2026-03-12 19:28:44.390246,abortion,abortion clinic,san jose,women's st joseph mo +abortion,"('abortion clinic san jose', ""women's clinic st joseph pavilion"")",abortion clinic san jose,women's clinic st joseph pavilion,5,2,google,2026-03-12 19:28:44.390246,abortion,abortion clinic,san jose,women's st joseph pavilion +abortion,"('abortion clinic san jose', ""women's health clinic san jose"")",abortion clinic san jose,women's health clinic san jose,6,2,google,2026-03-12 19:28:44.390246,abortion,abortion clinic,san jose,women's health +abortion,"('abortion clinic san jose', 'abortion clinic near st joseph mi')",abortion clinic san jose,abortion clinic near st joseph mi,7,2,google,2026-03-12 19:28:44.390246,abortion,abortion clinic,san jose,near st joseph mi +abortion,"('abortion clinic san jose', 'surgical abortion clinics near me')",abortion clinic san jose,surgical abortion clinics near me,8,2,google,2026-03-12 19:28:44.390246,abortion,abortion clinic,san jose,surgical clinics near me +abortion,"('abortion clinic san jose', 'abortion clinic for free near me')",abortion clinic san jose,abortion clinic for free near me,9,2,google,2026-03-12 19:28:44.390246,abortion,abortion clinic,san jose,for free near me +abortion,"('abortion clinic santa rosa', 'abortion clinic santa rosa ca')",abortion clinic santa rosa,abortion clinic santa rosa ca,1,2,google,2026-03-12 19:28:45.598106,abortion,abortion clinic,santa rosa,ca +abortion,"('abortion clinic santa rosa', ""women's clinic santa rosa"")",abortion clinic santa rosa,women's clinic santa rosa,2,2,google,2026-03-12 19:28:45.598106,abortion,abortion clinic,santa rosa,women's +abortion,"('abortion clinic santa rosa', ""women's health clinic santa rosa"")",abortion clinic santa rosa,women's health clinic santa rosa,3,2,google,2026-03-12 19:28:45.598106,abortion,abortion clinic,santa rosa,women's health +abortion,"('abortion clinic santa rosa', 'free abortion clinic near me')",abortion clinic santa rosa,free abortion clinic near me,4,2,google,2026-03-12 19:28:45.598106,abortion,abortion clinic,santa rosa,free near me +abortion,"('abortion clinic santa rosa', 'planned parenthood near me abortion clinic')",abortion clinic santa rosa,planned parenthood near me abortion clinic,5,2,google,2026-03-12 19:28:45.598106,abortion,abortion clinic,santa rosa,planned parenthood near me +abortion,"('abortion clinic santa rosa', 'abortion santa rosa')",abortion clinic santa rosa,abortion santa rosa,6,2,google,2026-03-12 19:28:45.598106,abortion,abortion clinic,santa rosa,santa rosa +abortion,"('abortion clinic brentwood', ""women's clinic brentwood"")",abortion clinic brentwood,women's clinic brentwood,1,2,google,2026-03-12 19:28:46.890519,abortion,abortion clinic,brentwood,women's +abortion,"('abortion clinic brentwood', 'abortion clinic brevard county')",abortion clinic brentwood,abortion clinic brevard county,2,2,google,2026-03-12 19:28:46.890519,abortion,abortion clinic,brentwood,brevard county +abortion,"('abortion clinic brentwood', 'abortion clinic beverly hills')",abortion clinic brentwood,abortion clinic beverly hills,3,2,google,2026-03-12 19:28:46.890519,abortion,abortion clinic,brentwood,beverly hills +abortion,"('abortion clinic brentwood', 'abortion clinic bristol tn')",abortion clinic brentwood,abortion clinic bristol tn,4,2,google,2026-03-12 19:28:46.890519,abortion,abortion clinic,brentwood,bristol tn +abortion,"('abortion clinic brentwood', 'abortion clinic bradenton')",abortion clinic brentwood,abortion clinic bradenton,5,2,google,2026-03-12 19:28:46.890519,abortion,abortion clinic,brentwood,bradenton +abortion,"('abortion clinic brentwood', 'abortion clinic boise')",abortion clinic brentwood,abortion clinic boise,6,2,google,2026-03-12 19:28:46.890519,abortion,abortion clinic,brentwood,boise +abortion,"('abortion clinic oakland', 'abortion clinic oakland park')",abortion clinic oakland,abortion clinic oakland park,1,2,google,2026-03-12 19:28:47.927983,abortion,abortion clinic,oakland,park +abortion,"('abortion clinic oakland', 'abortion clinic oakland ca')",abortion clinic oakland,abortion clinic oakland ca,2,2,google,2026-03-12 19:28:47.927983,abortion,abortion clinic,oakland,ca +abortion,"('abortion clinic oakland', ""women's clinic oakland"")",abortion clinic oakland,women's clinic oakland,3,2,google,2026-03-12 19:28:47.927983,abortion,abortion clinic,oakland,women's +abortion,"('abortion clinic oakland', 'abortion clinic oakland county')",abortion clinic oakland,abortion clinic oakland county,4,2,google,2026-03-12 19:28:47.927983,abortion,abortion clinic,oakland,county +abortion,"('abortion clinic illinois', 'abortion clinic illinois cost')",abortion clinic illinois,abortion clinic illinois cost,1,2,google,2026-03-12 19:28:48.828592,abortion,abortion clinic,illinois,cost +abortion,"('abortion clinic illinois', 'abortion clinic illinois carbondale')",abortion clinic illinois,abortion clinic illinois carbondale,2,2,google,2026-03-12 19:28:48.828592,abortion,abortion clinic,illinois,carbondale +abortion,"('abortion clinic illinois', 'abortion clinic illinois near me')",abortion clinic illinois,abortion clinic illinois near me,3,2,google,2026-03-12 19:28:48.828592,abortion,abortion clinic,illinois,near me +abortion,"('abortion clinic illinois', 'abortion clinic illinois closest to me')",abortion clinic illinois,abortion clinic illinois closest to me,4,2,google,2026-03-12 19:28:48.828592,abortion,abortion clinic,illinois,closest to me +abortion,"('abortion clinic illinois', 'abortion clinic illinois chicago')",abortion clinic illinois,abortion clinic illinois chicago,5,2,google,2026-03-12 19:28:48.828592,abortion,abortion clinic,illinois,chicago +abortion,"('abortion clinic illinois', 'abortion clinic illinois open now')",abortion clinic illinois,abortion clinic illinois open now,6,2,google,2026-03-12 19:28:48.828592,abortion,abortion clinic,illinois,open now +abortion,"('abortion clinic illinois', 'abortion clinic illinois free')",abortion clinic illinois,abortion clinic illinois free,7,2,google,2026-03-12 19:28:48.828592,abortion,abortion clinic,illinois,free +abortion,"('abortion clinic illinois', ""women's clinic illinois"")",abortion clinic illinois,women's clinic illinois,8,2,google,2026-03-12 19:28:48.828592,abortion,abortion clinic,illinois,women's +abortion,"('abortion clinic illinois', 'abortion services illinois')",abortion clinic illinois,abortion services illinois,9,2,google,2026-03-12 19:28:48.828592,abortion,abortion clinic,illinois,services +abortion,"('abortion clinic north carolina', 'abortion clinic north carolina charlotte')",abortion clinic north carolina,abortion clinic north carolina charlotte,1,2,google,2026-03-12 19:28:49.751030,abortion,abortion clinic,north carolina,charlotte +abortion,"('abortion clinic north carolina', 'abortion clinic north carolina near me')",abortion clinic north carolina,abortion clinic north carolina near me,2,2,google,2026-03-12 19:28:49.751030,abortion,abortion clinic,north carolina,near me +abortion,"('abortion clinic north carolina', 'abortion clinic north carolina prices')",abortion clinic north carolina,abortion clinic north carolina prices,3,2,google,2026-03-12 19:28:49.751030,abortion,abortion clinic,north carolina,prices +abortion,"('abortion clinic north carolina', 'abortion clinic north carolina open now')",abortion clinic north carolina,abortion clinic north carolina open now,4,2,google,2026-03-12 19:28:49.751030,abortion,abortion clinic,north carolina,open now +abortion,"('abortion clinic north carolina', 'abortion center north carolina')",abortion clinic north carolina,abortion center north carolina,5,2,google,2026-03-12 19:28:49.751030,abortion,abortion clinic,north carolina,center +abortion,"('abortion clinic north carolina', 'abortion services north carolina')",abortion clinic north carolina,abortion services north carolina,6,2,google,2026-03-12 19:28:49.751030,abortion,abortion clinic,north carolina,services +abortion,"('abortion clinic north carolina', ""women's clinic north carolina"")",abortion clinic north carolina,women's clinic north carolina,7,2,google,2026-03-12 19:28:49.751030,abortion,abortion clinic,north carolina,women's +abortion,"('abortion clinic north carolina', 'free abortion clinic north carolina')",abortion clinic north carolina,free abortion clinic north carolina,8,2,google,2026-03-12 19:28:49.751030,abortion,abortion clinic,north carolina,free +abortion,"('abortion clinic north carolina', 'abortion clinic greensboro north carolina')",abortion clinic north carolina,abortion clinic greensboro north carolina,9,2,google,2026-03-12 19:28:49.751030,abortion,abortion clinic,north carolina,greensboro +abortion,"('abortion clinic chicago', 'abortion clinic chicago illinois')",abortion clinic chicago,abortion clinic chicago illinois,1,2,google,2026-03-12 19:28:50.716948,abortion,abortion clinic,chicago,illinois +abortion,"('abortion clinic chicago', 'abortion clinic chicago free')",abortion clinic chicago,abortion clinic chicago free,2,2,google,2026-03-12 19:28:50.716948,abortion,abortion clinic,chicago,free +abortion,"('abortion clinic chicago', 'abortion clinic chicago price')",abortion clinic chicago,abortion clinic chicago price,3,2,google,2026-03-12 19:28:50.716948,abortion,abortion clinic,chicago,price +abortion,"('abortion clinic chicago', 'abortion clinic chicago near me')",abortion clinic chicago,abortion clinic chicago near me,4,2,google,2026-03-12 19:28:50.716948,abortion,abortion clinic,chicago,near me +abortion,"('abortion clinic chicago', 'abortion clinic chicago open now')",abortion clinic chicago,abortion clinic chicago open now,5,2,google,2026-03-12 19:28:50.716948,abortion,abortion clinic,chicago,open now +abortion,"('abortion clinic chicago', 'abortion clinic chicago washington street')",abortion clinic chicago,abortion clinic chicago washington street,6,2,google,2026-03-12 19:28:50.716948,abortion,abortion clinic,chicago,washington street +abortion,"('abortion clinic chicago', 'abortion clinic chicago downtown')",abortion clinic chicago,abortion clinic chicago downtown,7,2,google,2026-03-12 19:28:50.716948,abortion,abortion clinic,chicago,downtown +abortion,"('abortion clinic chicago', 'abortion clinic chicago within 5 mi')",abortion clinic chicago,abortion clinic chicago within 5 mi,8,2,google,2026-03-12 19:28:50.716948,abortion,abortion clinic,chicago,within 5 mi +abortion,"('abortion clinic chicago', 'abortion clinic chicago washington')",abortion clinic chicago,abortion clinic chicago washington,9,2,google,2026-03-12 19:28:50.716948,abortion,abortion clinic,chicago,washington +abortion,"('abortion pill cost cvs', 'abortion pill cost cvs florida')",abortion pill cost cvs,abortion pill cost cvs florida,1,2,google,2026-03-12 19:28:51.875555,abortion,abortion pill cost,cvs,florida +abortion,"('abortion pill cost cvs', 'abortion pill cost cvs california')",abortion pill cost cvs,abortion pill cost cvs california,2,2,google,2026-03-12 19:28:51.875555,abortion,abortion pill cost,cvs,california +abortion,"('abortion pill cost cvs', 'abortion pill cost cvs texas')",abortion pill cost cvs,abortion pill cost cvs texas,3,2,google,2026-03-12 19:28:51.875555,abortion,abortion pill cost,cvs,texas +abortion,"('abortion pill cost cvs', 'abortion pill cost cvs near me')",abortion pill cost cvs,abortion pill cost cvs near me,4,2,google,2026-03-12 19:28:51.875555,abortion,abortion pill cost,cvs,near me +abortion,"('abortion pill cost cvs', 'abortion pill cost cvs michigan')",abortion pill cost cvs,abortion pill cost cvs michigan,5,2,google,2026-03-12 19:28:51.875555,abortion,abortion pill cost,cvs,michigan +abortion,"('abortion pill cost cvs', 'abortion pill cost cvs over the counter')",abortion pill cost cvs,abortion pill cost cvs over the counter,6,2,google,2026-03-12 19:28:51.875555,abortion,abortion pill cost,cvs,over the counter +abortion,"('abortion pill cost cvs', 'abortion pill cost cvs pa')",abortion pill cost cvs,abortion pill cost cvs pa,7,2,google,2026-03-12 19:28:51.875555,abortion,abortion pill cost,cvs,pa +abortion,"('abortion pill cost cvs', 'morning after pill cost cvs')",abortion pill cost cvs,morning after pill cost cvs,8,2,google,2026-03-12 19:28:51.875555,abortion,abortion pill cost,cvs,morning after +abortion,"('abortion pill cost cvs', 'abortion pill cvs cost nc')",abortion pill cost cvs,abortion pill cvs cost nc,9,2,google,2026-03-12 19:28:51.875555,abortion,abortion pill cost,cvs,nc +abortion,"('abortion pill cost california', 'abortion pill cost california reddit')",abortion pill cost california,abortion pill cost california reddit,1,2,google,2026-03-12 19:28:52.979033,abortion,abortion pill cost,california,reddit +abortion,"('abortion pill cost california', 'abortion pill cost cvs california')",abortion pill cost california,abortion pill cost cvs california,2,2,google,2026-03-12 19:28:52.979033,abortion,abortion pill cost,california,cvs +abortion,"('abortion pill cost california', 'abortion clinic california cost')",abortion pill cost california,abortion clinic california cost,3,2,google,2026-03-12 19:28:52.979033,abortion,abortion pill cost,california,clinic +abortion,"('abortion pill cost california', 'kaiser abortion pill cost california')",abortion pill cost california,kaiser abortion pill cost california,4,2,google,2026-03-12 19:28:52.979033,abortion,abortion pill cost,california,kaiser +abortion,"('abortion pill cost california', 'abortion pill cost no insurance california')",abortion pill cost california,abortion pill cost no insurance california,5,2,google,2026-03-12 19:28:52.979033,abortion,abortion pill cost,california,no insurance +abortion,"('abortion pill cost california', 'hey jane abortion pill cost california')",abortion pill cost california,hey jane abortion pill cost california,6,2,google,2026-03-12 19:28:52.979033,abortion,abortion pill cost,california,hey jane +abortion,"('abortion pill cost online', 'abortion pill low cost online')",abortion pill cost online,abortion pill low cost online,1,2,google,2026-03-12 19:28:54.015852,abortion,abortion pill cost,online,low +abortion,"('abortion pill cost online', 'abortion pill near me online')",abortion pill cost online,abortion pill near me online,2,2,google,2026-03-12 19:28:54.015852,abortion,abortion pill cost,online,near me +abortion,"('abortion pill cost pharmacy', 'abortion pill cost pharmacy near me')",abortion pill cost pharmacy,abortion pill cost pharmacy near me,1,2,google,2026-03-12 19:28:55.451305,abortion,abortion pill cost,pharmacy,near me +abortion,"('abortion pill cost pharmacy', 'abortion pill cost pharmacy south africa')",abortion pill cost pharmacy,abortion pill cost pharmacy south africa,2,2,google,2026-03-12 19:28:55.451305,abortion,abortion pill cost,pharmacy,south africa +abortion,"('abortion pill cost pharmacy', 'abortion pill cost pharmacy in kenya')",abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,3,2,google,2026-03-12 19:28:55.451305,abortion,abortion pill cost,pharmacy,in kenya +abortion,"('abortion pill cost pharmacy', 'abortion pill cost pharmacy india')",abortion pill cost pharmacy,abortion pill cost pharmacy india,4,2,google,2026-03-12 19:28:55.451305,abortion,abortion pill cost,pharmacy,india +abortion,"('abortion pill cost pharmacy', 'abortion pill cost pharmacy malaysia')",abortion pill cost pharmacy,abortion pill cost pharmacy malaysia,5,2,google,2026-03-12 19:28:55.451305,abortion,abortion pill cost,pharmacy,malaysia +abortion,"('abortion pill cost pharmacy', 'abortion pill cost pharmacy malaysia near me')",abortion pill cost pharmacy,abortion pill cost pharmacy malaysia near me,6,2,google,2026-03-12 19:28:55.451305,abortion,abortion pill cost,pharmacy,malaysia near me +abortion,"('abortion pill cost north carolina', 'abortion pill nc cost')",abortion pill cost north carolina,abortion pill nc cost,1,2,google,2026-03-12 19:28:56.666789,abortion,abortion pill cost,north carolina,nc +abortion,"('abortion pill cost planned parenthood reddit', 'how much are abortions at planned parenthood with insurance')",abortion pill cost planned parenthood reddit,how much are abortions at planned parenthood with insurance,1,2,google,2026-03-12 19:28:57.484252,abortion,abortion pill cost,planned parenthood reddit,how much are abortions at with insurance +abortion,"('abortion pill cost planned parenthood reddit', 'how much is an abortion cost at planned parenthood')",abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,2,2,google,2026-03-12 19:28:57.484252,abortion,abortion pill cost,planned parenthood reddit,how much is an at +abortion,"('abortion pill cost planned parenthood reddit', 'abortion pill planned parenthood reddit')",abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,3,2,google,2026-03-12 19:28:57.484252,abortion,abortion pill cost,planned parenthood reddit,planned parenthood reddit +abortion,"('abortion pill cost florida', 'abortion pill cost fl')",abortion pill cost florida,abortion pill cost fl,1,2,google,2026-03-12 19:28:58.605231,abortion,abortion pill cost,florida,fl +abortion,"('abortion pill cost florida', 'abortion pill cost cvs florida')",abortion pill cost florida,abortion pill cost cvs florida,2,2,google,2026-03-12 19:28:58.605231,abortion,abortion pill cost,florida,cvs +abortion,"('abortion pill cost florida', 'abortion clinic florida cost')",abortion pill cost florida,abortion clinic florida cost,3,2,google,2026-03-12 19:28:58.605231,abortion,abortion pill cost,florida,clinic +abortion,"('abortion pill cost florida', 'planned parenthood abortion pill cost florida')",abortion pill cost florida,planned parenthood abortion pill cost florida,4,2,google,2026-03-12 19:28:58.605231,abortion,abortion pill cost,florida,planned parenthood +abortion,"('abortion pill cost florida', 'average cost of abortion pill in florida')",abortion pill cost florida,average cost of abortion pill in florida,5,2,google,2026-03-12 19:28:58.605231,abortion,abortion pill cost,florida,average of in +abortion,"('abortion pill cost free', 'abortion pill cost online')",abortion pill cost free,abortion pill cost online,1,2,google,2026-03-12 19:28:59.710555,abortion,abortion pill cost,free,online +abortion,"('abortion pill cost free', 'abortion pill cost fl')",abortion pill cost free,abortion pill cost fl,2,2,google,2026-03-12 19:28:59.710555,abortion,abortion pill cost,free,fl +abortion,"('abortion pill cost for 1 month', 'abortion pill cost cvs')",abortion pill cost for 1 month,abortion pill cost cvs,1,2,google,2026-03-12 19:29:00.603932,abortion,abortion pill cost,for 1 month,cvs +abortion,"('abortion pill cost for 1 month', 'abortion pill cost online')",abortion pill cost for 1 month,abortion pill cost online,2,2,google,2026-03-12 19:29:00.603932,abortion,abortion pill cost,for 1 month,online +abortion,"('abortion definition according to who', 'abortion definition according to who 2022')",abortion definition according to who,abortion definition according to who 2022,1,2,google,2026-03-12 19:29:02.077860,abortion,abortion definition,according to who,2022 +abortion,"('abortion definition according to who', 'abortion definition according to who pdf')",abortion definition according to who,abortion definition according to who pdf,2,2,google,2026-03-12 19:29:02.077860,abortion,abortion definition,according to who,pdf +abortion,"('abortion definition according to who', 'abortion definition acc to who')",abortion definition according to who,abortion definition acc to who,3,2,google,2026-03-12 19:29:02.077860,abortion,abortion definition,according to who,acc +abortion,"('abortion definition according to who', 'abortion meaning according to who')",abortion definition according to who,abortion meaning according to who,4,2,google,2026-03-12 19:29:02.077860,abortion,abortion definition,according to who,meaning +abortion,"('abortion definition according to who', 'medical abortion definition according to who')",abortion definition according to who,medical abortion definition according to who,5,2,google,2026-03-12 19:29:02.077860,abortion,abortion definition,according to who,medical +abortion,"('abortion definition according to who', 'illegal abortion definition according to who')",abortion definition according to who,illegal abortion definition according to who,6,2,google,2026-03-12 19:29:02.077860,abortion,abortion definition,according to who,illegal +abortion,"('abortion definition according to who', 'spontaneous abortion definition according to who')",abortion definition according to who,spontaneous abortion definition according to who,7,2,google,2026-03-12 19:29:02.077860,abortion,abortion definition,according to who,spontaneous +abortion,"('abortion definition according to who', 'criminal abortion definition according to who')",abortion definition according to who,criminal abortion definition according to who,8,2,google,2026-03-12 19:29:02.077860,abortion,abortion definition,according to who,criminal +abortion,"('abortion definition according to who', 'threatened abortion definition according to who')",abortion definition according to who,threatened abortion definition according to who,9,2,google,2026-03-12 19:29:02.077860,abortion,abortion definition,according to who,threatened +abortion,"('abortion definition oxford', 'abortion definition oxford dictionary')",abortion definition oxford,abortion definition oxford dictionary,1,2,google,2026-03-12 19:29:03.346398,abortion,abortion definition,oxford,dictionary +abortion,"('abortion definition oxford', 'abortion oxford dictionary')",abortion definition oxford,abortion oxford dictionary,2,2,google,2026-03-12 19:29:03.346398,abortion,abortion definition,oxford,dictionary +abortion,"('abortion definition cdc', 'define abortion cdc')",abortion definition cdc,define abortion cdc,1,2,google,2026-03-12 19:29:04.448871,abortion,abortion definition,cdc,define +abortion,"('abortion definition cdc', 'abortion definition according to cdc')",abortion definition cdc,abortion definition according to cdc,2,2,google,2026-03-12 19:29:04.448871,abortion,abortion definition,cdc,according to +abortion,"('abortion definition law', 'abortion meaning in law philippines')",abortion definition law,abortion meaning in law philippines,1,2,google,2026-03-12 19:29:05.654195,abortion,abortion definition,law,meaning in philippines +abortion,"('abortion definition law', 'abortion definition legal')",abortion definition law,abortion definition legal,2,2,google,2026-03-12 19:29:05.654195,abortion,abortion definition,law,legal +abortion,"('abortion definition law', 'abortion definition uk law')",abortion definition law,abortion definition uk law,3,2,google,2026-03-12 19:29:05.654195,abortion,abortion definition,law,uk +abortion,"('abortion definition law', 'abortion act definition')",abortion definition law,abortion act definition,4,2,google,2026-03-12 19:29:05.654195,abortion,abortion definition,law,act +abortion,"('abortion definition law', 'abortion defined by law')",abortion definition law,abortion defined by law,5,2,google,2026-03-12 19:29:05.654195,abortion,abortion definition,law,defined by +abortion,"('abortion definition law', 'abortion defined legally')",abortion definition law,abortion defined legally,6,2,google,2026-03-12 19:29:05.654195,abortion,abortion definition,law,defined legally +abortion,"('abortion definition webster', 'abortion merriam webster')",abortion definition webster,abortion merriam webster,1,2,google,2026-03-12 19:29:06.885125,abortion,abortion definition,webster,merriam +abortion,"('abortion definition webster', 'abortion definition merriam webster')",abortion definition webster,abortion definition merriam webster,2,2,google,2026-03-12 19:29:06.885125,abortion,abortion definition,webster,merriam +abortion,"('abortion definition webster', 'abortion definition oxford')",abortion definition webster,abortion definition oxford,3,2,google,2026-03-12 19:29:06.885125,abortion,abortion definition,webster,oxford +abortion,"('abortion definition webster', 'abortion definition webster dictionary')",abortion definition webster,abortion definition webster dictionary,4,2,google,2026-03-12 19:29:06.885125,abortion,abortion definition,webster,dictionary +abortion,"('abortion definition webster', ""abortion webster's dictionary"")",abortion definition webster,abortion webster's dictionary,5,2,google,2026-03-12 19:29:06.885125,abortion,abortion definition,webster,webster's dictionary +abortion,"('abortion definition simple', 'abortion definition easy')",abortion definition simple,abortion definition easy,1,2,google,2026-03-12 19:29:07.924095,abortion,abortion definition,simple,easy +abortion,"('abortion definition simple', 'septic abortion definition simple')",abortion definition simple,septic abortion definition simple,2,2,google,2026-03-12 19:29:07.924095,abortion,abortion definition,simple,septic +abortion,"('abortion definition simple', 'spontaneous abortion definition simple')",abortion definition simple,spontaneous abortion definition simple,3,2,google,2026-03-12 19:29:07.924095,abortion,abortion definition,simple,spontaneous +abortion,"('abortion definition simple', 'complete abortion definition simple')",abortion definition simple,complete abortion definition simple,4,2,google,2026-03-12 19:29:07.924095,abortion,abortion definition,simple,complete +abortion,"('abortion definition simple', 'threatened abortion simple definition')",abortion definition simple,threatened abortion simple definition,5,2,google,2026-03-12 19:29:07.924095,abortion,abortion definition,simple,threatened +abortion,"('abortion definition simple', 'inevitable abortion simple definition')",abortion definition simple,inevitable abortion simple definition,6,2,google,2026-03-12 19:29:07.924095,abortion,abortion definition,simple,inevitable +abortion,"('abortion definition simple', 'missed abortion simple definition')",abortion definition simple,missed abortion simple definition,7,2,google,2026-03-12 19:29:07.924095,abortion,abortion definition,simple,missed +abortion,"('abortion definition simple', 'induced abortion simple definition')",abortion definition simple,induced abortion simple definition,8,2,google,2026-03-12 19:29:07.924095,abortion,abortion definition,simple,induced +abortion,"('abortion definition simple', 'recurrent abortion simple definition')",abortion definition simple,recurrent abortion simple definition,9,2,google,2026-03-12 19:29:07.924095,abortion,abortion definition,simple,recurrent +abortion,"('abortion definition acog', 'missed abortion definition acog')",abortion definition acog,missed abortion definition acog,1,2,google,2026-03-12 19:29:09.085069,abortion,abortion definition,acog,missed +abortion,"('abortion definition acog', 'spontaneous abortion definition acog')",abortion definition acog,spontaneous abortion definition acog,2,2,google,2026-03-12 19:29:09.085069,abortion,abortion definition,acog,spontaneous +abortion,"('abortion definition acog', 'abortion medical definition acog')",abortion definition acog,abortion medical definition acog,3,2,google,2026-03-12 19:29:09.085069,abortion,abortion definition,acog,medical +abortion,"('abortion definition acog', 'threatened abortion definition acog')",abortion definition acog,threatened abortion definition acog,4,2,google,2026-03-12 19:29:09.085069,abortion,abortion definition,acog,threatened +abortion,"('abortion definition acog', 'inevitable abortion definition acog')",abortion definition acog,inevitable abortion definition acog,5,2,google,2026-03-12 19:29:09.085069,abortion,abortion definition,acog,inevitable +abortion,"('abortion definition acog', 'septic abortion definition acog')",abortion definition acog,septic abortion definition acog,6,2,google,2026-03-12 19:29:09.085069,abortion,abortion definition,acog,septic +abortion,"('abortion definition acog', 'incomplete abortion definition acog')",abortion definition acog,incomplete abortion definition acog,7,2,google,2026-03-12 19:29:09.085069,abortion,abortion definition,acog,incomplete +abortion,"('abortion definition acog', 'types of abortion acog')",abortion definition acog,types of abortion acog,8,2,google,2026-03-12 19:29:09.085069,abortion,abortion definition,acog,types of +abortion,"('abortion definition acog', 'acog abortion policy')",abortion definition acog,acog abortion policy,9,2,google,2026-03-12 19:29:09.085069,abortion,abortion definition,acog,policy +abortion,"('abortion definition merriam webster', 'abortion definition webster')",abortion definition merriam webster,abortion definition webster,1,2,google,2026-03-12 19:29:10.513207,abortion,abortion definition,merriam webster,merriam webster +abortion,"('abortion definition merriam webster', 'abortion definition webster dictionary')",abortion definition merriam webster,abortion definition webster dictionary,2,2,google,2026-03-12 19:29:10.513207,abortion,abortion definition,merriam webster,dictionary +abortion,"('abortion definition in nursing', 'abortion definition in nursing ppt')",abortion definition in nursing,abortion definition in nursing ppt,1,2,google,2026-03-12 19:29:11.944125,abortion,abortion definition,in nursing,ppt +abortion,"('abortion definition in nursing', 'abortion definition in nursing according to who')",abortion definition in nursing,abortion definition in nursing according to who,2,2,google,2026-03-12 19:29:11.944125,abortion,abortion definition,in nursing,according to who +abortion,"('abortion definition in nursing', 'abortion definition in nursing pdf')",abortion definition in nursing,abortion definition in nursing pdf,3,2,google,2026-03-12 19:29:11.944125,abortion,abortion definition,in nursing,pdf +abortion,"('abortion definition in nursing', 'abortion definition in nursing in hindi')",abortion definition in nursing,abortion definition in nursing in hindi,4,2,google,2026-03-12 19:29:11.944125,abortion,abortion definition,in nursing,hindi +abortion,"('abortion definition in nursing', 'abortion definition in community health nursing')",abortion definition in nursing,abortion definition in community health nursing,5,2,google,2026-03-12 19:29:11.944125,abortion,abortion definition,in nursing,community health +abortion,"('abortion definition in nursing', 'types of abortion definition in nursing')",abortion definition in nursing,types of abortion definition in nursing,6,2,google,2026-03-12 19:29:11.944125,abortion,abortion definition,in nursing,types of +abortion,"('abortion definition in nursing', 'definition of abortion in nursing wikipedia')",abortion definition in nursing,definition of abortion in nursing wikipedia,7,2,google,2026-03-12 19:29:11.944125,abortion,abortion definition,in nursing,of wikipedia +abortion,"('abortion definition in nursing', 'definition of abortion in nursing slideshare')",abortion definition in nursing,definition of abortion in nursing slideshare,8,2,google,2026-03-12 19:29:11.944125,abortion,abortion definition,in nursing,of slideshare +abortion,"('abortion definition in nursing', 'what is abortion in nursing')",abortion definition in nursing,what is abortion in nursing,9,2,google,2026-03-12 19:29:11.944125,abortion,abortion definition,in nursing,what is +abortion,"('abortion pill side effects long term', 'abortion pill side effects long term reddit')",abortion pill side effects long term,abortion pill side effects long term reddit,1,2,google,2026-03-12 19:29:12.838266,abortion,abortion pill side effects,long term,reddit +abortion,"('abortion pill side effects long term', 'morning after pill side effects long term reddit')",abortion pill side effects long term,morning after pill side effects long term reddit,2,2,google,2026-03-12 19:29:12.838266,abortion,abortion pill side effects,long term,morning after reddit +abortion,"('abortion pill side effects long term', 'morning after pill effects long term')",abortion pill side effects long term,morning after pill effects long term,3,2,google,2026-03-12 19:29:12.838266,abortion,abortion pill side effects,long term,morning after +abortion,"('abortion pill side effects long term', 'morning after pill effects long term several times')",abortion pill side effects long term,morning after pill effects long term several times,4,2,google,2026-03-12 19:29:12.838266,abortion,abortion pill side effects,long term,morning after several times +abortion,"('abortion pill side effects long term', 'does abortion pill have long term side effects')",abortion pill side effects long term,does abortion pill have long term side effects,5,2,google,2026-03-12 19:29:12.838266,abortion,abortion pill side effects,long term,does have +abortion,"('abortion pill side effects long term', 'what are the long term effects of the abortion pill')",abortion pill side effects long term,what are the long term effects of the abortion pill,6,2,google,2026-03-12 19:29:12.838266,abortion,abortion pill side effects,long term,what are the of the +abortion,"('abortion pill side effects long term', 'long term effects of medical abortion')",abortion pill side effects long term,long term effects of medical abortion,7,2,google,2026-03-12 19:29:12.838266,abortion,abortion pill side effects,long term,of medical +abortion,"('abortion pill side effects reddit', 'morning after pill side effects reddit')",abortion pill side effects reddit,morning after pill side effects reddit,1,2,google,2026-03-12 19:29:14.067292,abortion,abortion pill side effects,reddit,morning after +abortion,"('abortion pill side effects reddit', 'abortion pill after effects reddit')",abortion pill side effects reddit,abortion pill after effects reddit,2,2,google,2026-03-12 19:29:14.067292,abortion,abortion pill side effects,reddit,after +abortion,"('abortion pill side effects reddit', 'first abortion pill side effects reddit')",abortion pill side effects reddit,first abortion pill side effects reddit,3,2,google,2026-03-12 19:29:14.067292,abortion,abortion pill side effects,reddit,first +abortion,"('abortion pill side effects reddit', 'abortion pill long term side effects reddit')",abortion pill side effects reddit,abortion pill long term side effects reddit,4,2,google,2026-03-12 19:29:14.067292,abortion,abortion pill side effects,reddit,long term +abortion,"('abortion pill side effects reddit', 'ella morning after pill side effects reddit')",abortion pill side effects reddit,ella morning after pill side effects reddit,5,2,google,2026-03-12 19:29:14.067292,abortion,abortion pill side effects,reddit,ella morning after +abortion,"('abortion pill side effects reddit', 'morning after pill emotional side effects reddit')",abortion pill side effects reddit,morning after pill emotional side effects reddit,6,2,google,2026-03-12 19:29:14.067292,abortion,abortion pill side effects,reddit,morning after emotional +abortion,"('abortion pill side effects reddit', 'morning after pill long term side effects reddit')",abortion pill side effects reddit,morning after pill long term side effects reddit,7,2,google,2026-03-12 19:29:14.067292,abortion,abortion pill side effects,reddit,morning after long term +abortion,"('abortion pill side effects reddit', 'morning after pill side effects menstrual cycle reddit')",abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,8,2,google,2026-03-12 19:29:14.067292,abortion,abortion pill side effects,reddit,morning after menstrual cycle +abortion,"('abortion pill side effects reddit', 'abortion pill reviews reddit')",abortion pill side effects reddit,abortion pill reviews reddit,9,2,google,2026-03-12 19:29:14.067292,abortion,abortion pill side effects,reddit,reviews +abortion,"('abortion pill side effects how long', 'abortion pill side effects how many days')",abortion pill side effects how long,abortion pill side effects how many days,1,2,google,2026-03-12 19:29:15.067904,abortion,abortion pill side effects,how long,many days +abortion,"('abortion pill side effects how long', 'abortion pill side effects long term')",abortion pill side effects how long,abortion pill side effects long term,2,2,google,2026-03-12 19:29:15.067904,abortion,abortion pill side effects,how long,term +abortion,"('abortion pill side effects how long', 'abortion pill side effects long term reddit')",abortion pill side effects how long,abortion pill side effects long term reddit,3,2,google,2026-03-12 19:29:15.067904,abortion,abortion pill side effects,how long,term reddit +abortion,"('abortion pill side effects how long', 'morning after pill side effects and how long they last')",abortion pill side effects how long,morning after pill side effects and how long they last,4,2,google,2026-03-12 19:29:15.067904,abortion,abortion pill side effects,how long,morning after and they last +abortion,"('abortion pill side effects how long', 'morning after pill side effects long term reddit')",abortion pill side effects how long,morning after pill side effects long term reddit,5,2,google,2026-03-12 19:29:15.067904,abortion,abortion pill side effects,how long,morning after term reddit +abortion,"('abortion pill side effects how long', 'morning after pill effects how long')",abortion pill side effects how long,morning after pill effects how long,6,2,google,2026-03-12 19:29:15.067904,abortion,abortion pill side effects,how long,morning after +abortion,"('abortion pill side effects first pill', 'abortion pill side effects after first pill')",abortion pill side effects first pill,abortion pill side effects after first pill,1,2,google,2026-03-12 19:29:16.400669,abortion,abortion pill side effects,first,after +abortion,"('abortion pill side effects first pill', 'how soon after abortion can i take the pill')",abortion pill side effects first pill,how soon after abortion can i take the pill,2,2,google,2026-03-12 19:29:16.400669,abortion,abortion pill side effects,first,how soon after can i take the +abortion,"('abortion pill side effects first pill', 'how long after an abortion can you start taking the pill')",abortion pill side effects first pill,how long after an abortion can you start taking the pill,3,2,google,2026-03-12 19:29:16.400669,abortion,abortion pill side effects,first,how long after an can you start taking the +abortion,"('abortion pill side effects first pill', 'how long after an abortion can you start the pill')",abortion pill side effects first pill,how long after an abortion can you start the pill,4,2,google,2026-03-12 19:29:16.400669,abortion,abortion pill side effects,first,how long after an can you start the +abortion,"('abortion pill side effects first pill', 'abortion first pill side effects')",abortion pill side effects first pill,abortion first pill side effects,5,2,google,2026-03-12 19:29:16.400669,abortion,abortion pill side effects,first,first +abortion,"('abortion pill side effects first pill', 'abortion pill side effects future pregnancy')",abortion pill side effects first pill,abortion pill side effects future pregnancy,6,2,google,2026-03-12 19:29:16.400669,abortion,abortion pill side effects,first,future pregnancy +abortion,"('abortion pill side effects first pill', 'abortion pill side effects long term')",abortion pill side effects first pill,abortion pill side effects long term,7,2,google,2026-03-12 19:29:16.400669,abortion,abortion pill side effects,first,long term +abortion,"('abortion pill side effects timeline', 'morning after pill side effects timeline')",abortion pill side effects timeline,morning after pill side effects timeline,1,2,google,2026-03-12 19:29:17.380626,abortion,abortion pill side effects,timeline,morning after +abortion,"('abortion pill side effects timeline', 'abortion pill side effects duration')",abortion pill side effects timeline,abortion pill side effects duration,2,2,google,2026-03-12 19:29:17.380626,abortion,abortion pill side effects,timeline,duration +abortion,"('abortion pill side effects timeline', 'side effects 3 weeks after abortion')",abortion pill side effects timeline,side effects 3 weeks after abortion,3,2,google,2026-03-12 19:29:17.380626,abortion,abortion pill side effects,timeline,3 weeks after +abortion,"('abortion pill side effects timeline', '4 days after abortion pill')",abortion pill side effects timeline,4 days after abortion pill,4,2,google,2026-03-12 19:29:17.380626,abortion,abortion pill side effects,timeline,4 days after +abortion,"('abortion pill side effects timeline', 'how soon after abortion can i take the pill')",abortion pill side effects timeline,how soon after abortion can i take the pill,5,2,google,2026-03-12 19:29:17.380626,abortion,abortion pill side effects,timeline,how soon after can i take the +abortion,"('abortion pill side effects timeline', 'abortion pill side effects last')",abortion pill side effects timeline,abortion pill side effects last,6,2,google,2026-03-12 19:29:17.380626,abortion,abortion pill side effects,timeline,last +abortion,"('abortion pill side effects timeline', 'abortion pill side effects long term')",abortion pill side effects timeline,abortion pill side effects long term,7,2,google,2026-03-12 19:29:17.380626,abortion,abortion pill side effects,timeline,long term +abortion,"('abortion pill side effects timeline', 'abortion pill side effects after')",abortion pill side effects timeline,abortion pill side effects after,8,2,google,2026-03-12 19:29:17.380626,abortion,abortion pill side effects,timeline,after +abortion,"('abortion pill side effects timeline', 'abortion pill side effects future pregnancy')",abortion pill side effects timeline,abortion pill side effects future pregnancy,9,2,google,2026-03-12 19:29:17.380626,abortion,abortion pill side effects,timeline,future pregnancy +abortion,"('abortion pill side effects future pregnancy', 'abortion pill side effects future pregnancy in hindi')",abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,1,2,google,2026-03-12 19:29:18.557442,abortion,abortion pill side effects,future pregnancy,in hindi +abortion,"('abortion pill side effects future pregnancy', 'abortion pill side effects future pregnancy in english')",abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in english,2,2,google,2026-03-12 19:29:18.557442,abortion,abortion pill side effects,future pregnancy,in english +abortion,"('abortion pill side effects future pregnancy', 'morning after pill side effects future pregnancy')",abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,3,2,google,2026-03-12 19:29:18.557442,abortion,abortion pill side effects,future pregnancy,morning after +abortion,"('abortion pill side effects future pregnancy', 'abortion side effects future pregnancy')",abortion pill side effects future pregnancy,abortion side effects future pregnancy,4,2,google,2026-03-12 19:29:18.557442,abortion,abortion pill side effects,future pregnancy,future pregnancy +abortion,"('abortion pill side effects future pregnancy', 'abortion pill future pregnancy')",abortion pill side effects future pregnancy,abortion pill future pregnancy,5,2,google,2026-03-12 19:29:18.557442,abortion,abortion pill side effects,future pregnancy,future pregnancy +abortion,"('abortion pill side effects future pregnancy', 'side effects of pregnancy after abortion')",abortion pill side effects future pregnancy,side effects of pregnancy after abortion,6,2,google,2026-03-12 19:29:18.557442,abortion,abortion pill side effects,future pregnancy,of after +abortion,"('abortion pill side effects future pregnancy', 'does abortion affect future pregnancy')",abortion pill side effects future pregnancy,does abortion affect future pregnancy,7,2,google,2026-03-12 19:29:18.557442,abortion,abortion pill side effects,future pregnancy,does affect +abortion,"('abortion pill side effects future pregnancy', 'abortion pill effects on future pregnancy')",abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,8,2,google,2026-03-12 19:29:18.557442,abortion,abortion pill side effects,future pregnancy,on +abortion,"('abortion pill side effects future pregnancy', 'abortion pill affect future pregnancy')",abortion pill side effects future pregnancy,abortion pill affect future pregnancy,9,2,google,2026-03-12 19:29:18.557442,abortion,abortion pill side effects,future pregnancy,affect +abortion,"('abortion pill side effects mentally', 'morning after pill side effects mentally')",abortion pill side effects mentally,morning after pill side effects mentally,1,2,google,2026-03-12 19:29:19.493995,abortion,abortion pill side effects,mentally,morning after +abortion,"('abortion pill side effects mentally', 'abortion pill side effects emotional')",abortion pill side effects mentally,abortion pill side effects emotional,2,2,google,2026-03-12 19:29:19.493995,abortion,abortion pill side effects,mentally,emotional +abortion,"('abortion pill side effects mentally', 'morning after pill side effects emotional')",abortion pill side effects mentally,morning after pill side effects emotional,3,2,google,2026-03-12 19:29:19.493995,abortion,abortion pill side effects,mentally,morning after emotional +abortion,"('abortion pill side effects mentally', 'abortion pill side effects future pregnancy')",abortion pill side effects mentally,abortion pill side effects future pregnancy,4,2,google,2026-03-12 19:29:19.493995,abortion,abortion pill side effects,mentally,future pregnancy +abortion,"('abortion pill side effects mentally', 'abortion side effects future pregnancy')",abortion pill side effects mentally,abortion side effects future pregnancy,5,2,google,2026-03-12 19:29:19.493995,abortion,abortion pill side effects,mentally,future pregnancy +abortion,"('abortion pill side effects mentally', 'abortion pill future pregnancy')",abortion pill side effects mentally,abortion pill future pregnancy,6,2,google,2026-03-12 19:29:19.493995,abortion,abortion pill side effects,mentally,future pregnancy +abortion,"('abortion pill side effects mentally', 'mental health side effects of abortion')",abortion pill side effects mentally,mental health side effects of abortion,7,2,google,2026-03-12 19:29:19.493995,abortion,abortion pill side effects,mentally,mental health of +abortion,"('abortion pill side effects mentally', 'abortion side effects mentally')",abortion pill side effects mentally,abortion side effects mentally,8,2,google,2026-03-12 19:29:19.493995,abortion,abortion pill side effects,mentally,mentally +abortion,"('abortion pill side effects how many days', 'morning after pill side effects days later')",abortion pill side effects how many days,morning after pill side effects days later,1,2,google,2026-03-12 19:29:20.355548,abortion,abortion pill side effects,how many days,morning after later +abortion,"('abortion pill side effects how many days', 'morning after pill side effects days')",abortion pill side effects how many days,morning after pill side effects days,2,2,google,2026-03-12 19:29:20.355548,abortion,abortion pill side effects,how many days,morning after +abortion,"('abortion pill side effects how many days', 'side effects 3 weeks after abortion')",abortion pill side effects how many days,side effects 3 weeks after abortion,3,2,google,2026-03-12 19:29:20.355548,abortion,abortion pill side effects,how many days,3 weeks after +abortion,"('abortion pill side effects how many days', 'how soon after abortion can i take the pill')",abortion pill side effects how many days,how soon after abortion can i take the pill,4,2,google,2026-03-12 19:29:20.355548,abortion,abortion pill side effects,how many days,soon after can i take the +abortion,"('abortion pill side effects how many days', 'abortion pill side effects long term')",abortion pill side effects how many days,abortion pill side effects long term,5,2,google,2026-03-12 19:29:20.355548,abortion,abortion pill side effects,how many days,long term +abortion,"('abortion pill side effects how many days', 'how long do side effects of abortion pills last')",abortion pill side effects how many days,how long do side effects of abortion pills last,6,2,google,2026-03-12 19:29:20.355548,abortion,abortion pill side effects,how many days,long do of pills last +abortion,"('abortion pill side effects how many days', 'abortion pill side effects after')",abortion pill side effects how many days,abortion pill side effects after,7,2,google,2026-03-12 19:29:20.355548,abortion,abortion pill side effects,how many days,after +abortion,"('abortion pill side effects 5 weeks', 'bleeding 5 weeks after abortion pill')",abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,1,2,google,2026-03-12 19:29:21.812761,abortion,abortion pill side effects,5 weeks,bleeding after +abortion,"('abortion pill side effects 5 weeks', 'bleeding 5 days after abortion pill')",abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,2,2,google,2026-03-12 19:29:21.812761,abortion,abortion pill side effects,5 weeks,bleeding days after +abortion,"('abortion pill side effects 5 weeks', 'abortion pill side effects long term')",abortion pill side effects 5 weeks,abortion pill side effects long term,3,2,google,2026-03-12 19:29:21.812761,abortion,abortion pill side effects,5 weeks,long term +abortion,"('abortion pill side effects 5 weeks', 'abortion pill side effects future pregnancy')",abortion pill side effects 5 weeks,abortion pill side effects future pregnancy,4,2,google,2026-03-12 19:29:21.812761,abortion,abortion pill side effects,5 weeks,future pregnancy +abortion,"('abortion pill side effects 5 weeks', 'abortion pill side effects last')",abortion pill side effects 5 weeks,abortion pill side effects last,5,2,google,2026-03-12 19:29:21.812761,abortion,abortion pill side effects,5 weeks,last +abortion,"('abortion meaning in pregnancy', 'abortion meaning in pregnancy kannada')",abortion meaning in pregnancy,abortion meaning in pregnancy kannada,1,2,google,2026-03-12 19:29:22.885707,abortion,abortion meaning,in pregnancy,kannada +abortion,"('abortion meaning in pregnancy', 'abortion meaning in marathi pregnancy')",abortion meaning in pregnancy,abortion meaning in marathi pregnancy,2,2,google,2026-03-12 19:29:22.885707,abortion,abortion meaning,in pregnancy,marathi +abortion,"('abortion meaning in pregnancy', 'complete abortion meaning in pregnancy')",abortion meaning in pregnancy,complete abortion meaning in pregnancy,3,2,google,2026-03-12 19:29:22.885707,abortion,abortion meaning,in pregnancy,complete +abortion,"('abortion meaning in pregnancy', 'induced abortion meaning in pregnancy')",abortion meaning in pregnancy,induced abortion meaning in pregnancy,4,2,google,2026-03-12 19:29:22.885707,abortion,abortion meaning,in pregnancy,induced +abortion,"('abortion meaning in pregnancy', 'missed abortion meaning in pregnancy')",abortion meaning in pregnancy,missed abortion meaning in pregnancy,5,2,google,2026-03-12 19:29:22.885707,abortion,abortion meaning,in pregnancy,missed +abortion,"('abortion meaning in pregnancy', 'threatened abortion meaning in pregnancy')",abortion meaning in pregnancy,threatened abortion meaning in pregnancy,6,2,google,2026-03-12 19:29:22.885707,abortion,abortion meaning,in pregnancy,threatened +abortion,"('abortion meaning in pregnancy', 'spontaneous abortion meaning in pregnancy')",abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,7,2,google,2026-03-12 19:29:22.885707,abortion,abortion meaning,in pregnancy,spontaneous +abortion,"('abortion meaning in pregnancy', 'abortion meaning in pregnancy in hindi')",abortion meaning in pregnancy,abortion meaning in pregnancy in hindi,8,2,google,2026-03-12 19:29:22.885707,abortion,abortion meaning,in pregnancy,hindi +abortion,"('abortion meaning in pregnancy', 'septic abortion meaning in pregnancy')",abortion meaning in pregnancy,septic abortion meaning in pregnancy,9,2,google,2026-03-12 19:29:22.885707,abortion,abortion meaning,in pregnancy,septic +abortion,"('abortion meaning in english', 'abortion meaning in english oxford')",abortion meaning in english,abortion meaning in english oxford,1,2,google,2026-03-12 19:29:23.938798,abortion,abortion meaning,in english,oxford +abortion,"('abortion meaning in english', 'abortion meaning in english grammar')",abortion meaning in english,abortion meaning in english grammar,2,2,google,2026-03-12 19:29:23.938798,abortion,abortion meaning,in english,grammar +abortion,"('abortion meaning in english', 'abortion meaning in english with example')",abortion meaning in english,abortion meaning in english with example,3,2,google,2026-03-12 19:29:23.938798,abortion,abortion meaning,in english,with example +abortion,"('abortion meaning in english', 'abort meaning in english synonyms')",abortion meaning in english,abort meaning in english synonyms,4,2,google,2026-03-12 19:29:23.938798,abortion,abortion meaning,in english,abort synonyms +abortion,"('abortion meaning in english', 'threatened abortion meaning in english')",abortion meaning in english,threatened abortion meaning in english,5,2,google,2026-03-12 19:29:23.938798,abortion,abortion meaning,in english,threatened +abortion,"('abortion meaning in english', 'spontaneous abortion meaning in english')",abortion meaning in english,spontaneous abortion meaning in english,6,2,google,2026-03-12 19:29:23.938798,abortion,abortion meaning,in english,spontaneous +abortion,"('abortion meaning in english', 'induced abortion meaning in english')",abortion meaning in english,induced abortion meaning in english,7,2,google,2026-03-12 19:29:23.938798,abortion,abortion meaning,in english,induced +abortion,"('abortion meaning in english', 'missed abortion meaning in english')",abortion meaning in english,missed abortion meaning in english,8,2,google,2026-03-12 19:29:23.938798,abortion,abortion meaning,in english,missed +abortion,"('abortion meaning in english', 'inevitable abortion meaning in english')",abortion meaning in english,inevitable abortion meaning in english,9,2,google,2026-03-12 19:29:23.938798,abortion,abortion meaning,in english,inevitable +abortion,"('abortion meaning for kids', 'abortion meaning for child')",abortion meaning for kids,abortion meaning for child,1,2,google,2026-03-12 19:29:25.245823,abortion,abortion meaning,for kids,child +abortion,"('abortion meaning for kids', 'abortion meaning in simple words')",abortion meaning for kids,abortion meaning in simple words,2,2,google,2026-03-12 19:29:25.245823,abortion,abortion meaning,for kids,in simple words +abortion,"('abortion meaning for kids', 'abortion meaning simple')",abortion meaning for kids,abortion meaning simple,3,2,google,2026-03-12 19:29:25.245823,abortion,abortion meaning,for kids,simple +abortion,"('abortion meaning for kids', 'abortion meaning in english')",abortion meaning for kids,abortion meaning in english,4,2,google,2026-03-12 19:29:25.245823,abortion,abortion meaning,for kids,in english +abortion,"('abortion meaning for kids', 'abortion baby meaning')",abortion meaning for kids,abortion baby meaning,5,2,google,2026-03-12 19:29:25.245823,abortion,abortion meaning,for kids,baby +abortion,"('abortion meaning simple', 'abortion meaning easy')",abortion meaning simple,abortion meaning easy,1,2,google,2026-03-12 19:29:26.379844,abortion,abortion meaning,simple,easy +abortion,"('abortion meaning simple', 'anti abortion meaning simple')",abortion meaning simple,anti abortion meaning simple,2,2,google,2026-03-12 19:29:26.379844,abortion,abortion meaning,simple,anti +abortion,"('abortion meaning simple', 'threatened abortion simple meaning')",abortion meaning simple,threatened abortion simple meaning,3,2,google,2026-03-12 19:29:26.379844,abortion,abortion meaning,simple,threatened +abortion,"('abortion meaning simple', 'abortion meaning in simple words')",abortion meaning simple,abortion meaning in simple words,4,2,google,2026-03-12 19:29:26.379844,abortion,abortion meaning,simple,in words +abortion,"('abortion meaning simple', 'abortion simple terms')",abortion meaning simple,abortion simple terms,5,2,google,2026-03-12 19:29:26.379844,abortion,abortion meaning,simple,terms +abortion,"('abortion meaning simple', 'abortion simple explanation')",abortion meaning simple,abortion simple explanation,6,2,google,2026-03-12 19:29:26.379844,abortion,abortion meaning,simple,explanation +abortion,"('abortion meaning in hebrew', 'what does the word abortion mean')",abortion meaning in hebrew,what does the word abortion mean,1,2,google,2026-03-12 19:29:27.189396,abortion,abortion meaning,in hebrew,what does the word mean +abortion,"('abortion meaning in hebrew', 'abortion meaning in arabic')",abortion meaning in hebrew,abortion meaning in arabic,2,2,google,2026-03-12 19:29:27.189396,abortion,abortion meaning,in hebrew,arabic +abortion,"('abortion meaning in hebrew', 'is elias a hebrew name')",abortion meaning in hebrew,is elias a hebrew name,3,2,google,2026-03-12 19:29:27.189396,abortion,abortion meaning,in hebrew,is elias a name +abortion,"('abortion meaning in hebrew', 'abortion in hebrew bible')",abortion meaning in hebrew,abortion in hebrew bible,4,2,google,2026-03-12 19:29:27.189396,abortion,abortion meaning,in hebrew,bible +abortion,"('abortion meaning in hebrew', 'abortion in hebrew')",abortion meaning in hebrew,abortion in hebrew,5,2,google,2026-03-12 19:29:27.189396,abortion,abortion meaning,in hebrew,in hebrew +abortion,"('abortion meaning in hebrew', 'abortion meaning in the bible')",abortion meaning in hebrew,abortion meaning in the bible,6,2,google,2026-03-12 19:29:27.189396,abortion,abortion meaning,in hebrew,the bible +abortion,"('abortion meaning in hebrew', 'abortion meaning in farsi')",abortion meaning in hebrew,abortion meaning in farsi,7,2,google,2026-03-12 19:29:27.189396,abortion,abortion meaning,in hebrew,farsi +abortion,"('abortion meaning in hindi', 'abortion meaning in hindi with example')",abortion meaning in hindi,abortion meaning in hindi with example,1,2,google,2026-03-12 19:29:28.501561,abortion,abortion meaning,in hindi,with example +abortion,"('abortion meaning in hindi', 'abortion meaning in hindi and english')",abortion meaning in hindi,abortion meaning in hindi and english,2,2,google,2026-03-12 19:29:28.501561,abortion,abortion meaning,in hindi,and english +abortion,"('abortion meaning in hindi', 'abortion meaning in hindi pdf')",abortion meaning in hindi,abortion meaning in hindi pdf,3,2,google,2026-03-12 19:29:28.501561,abortion,abortion meaning,in hindi,pdf +abortion,"('abortion meaning in hindi', 'abortion meaning in hindi definition')",abortion meaning in hindi,abortion meaning in hindi definition,4,2,google,2026-03-12 19:29:28.501561,abortion,abortion meaning,in hindi,definition +abortion,"('abortion meaning in hindi', 'abortion meaning in hindi medical')",abortion meaning in hindi,abortion meaning in hindi medical,5,2,google,2026-03-12 19:29:28.501561,abortion,abortion meaning,in hindi,medical +abortion,"('abortion meaning in hindi', 'abort meaning in hindi synonyms')",abortion meaning in hindi,abort meaning in hindi synonyms,6,2,google,2026-03-12 19:29:28.501561,abortion,abortion meaning,in hindi,abort synonyms +abortion,"('abortion meaning in hindi', 'abortion translation in hindi')",abortion meaning in hindi,abortion translation in hindi,7,2,google,2026-03-12 19:29:28.501561,abortion,abortion meaning,in hindi,translation +abortion,"('abortion meaning in hindi', 'missed abortion meaning in hindi')",abortion meaning in hindi,missed abortion meaning in hindi,8,2,google,2026-03-12 19:29:28.501561,abortion,abortion meaning,in hindi,missed +abortion,"('abortion meaning in hindi', 'threatened abortion meaning in hindi')",abortion meaning in hindi,threatened abortion meaning in hindi,9,2,google,2026-03-12 19:29:28.501561,abortion,abortion meaning,in hindi,threatened +abortion,"('abortion meaning in the bible', 'is abortion mentioned in the bible')",abortion meaning in the bible,is abortion mentioned in the bible,1,2,google,2026-03-12 19:29:29.575004,abortion,abortion meaning,in the bible,is mentioned +abortion,"('abortion meaning in the bible', 'is abortion even mentioned in the bible')",abortion meaning in the bible,is abortion even mentioned in the bible,2,2,google,2026-03-12 19:29:29.575004,abortion,abortion meaning,in the bible,is even mentioned +abortion,"('abortion meaning in the bible', 'abortion meaning in hebrew')",abortion meaning in the bible,abortion meaning in hebrew,3,2,google,2026-03-12 19:29:29.575004,abortion,abortion meaning,in the bible,hebrew +abortion,"('abortion meaning in the bible', 'what does abortion mean in the bible')",abortion meaning in the bible,what does abortion mean in the bible,4,2,google,2026-03-12 19:29:29.575004,abortion,abortion meaning,in the bible,what does mean +abortion,"('abortion meaning in the bible', 'definition of abortion in the bible')",abortion meaning in the bible,definition of abortion in the bible,5,2,google,2026-03-12 19:29:29.575004,abortion,abortion meaning,in the bible,definition of +abortion,"('abortion meaning in greek', 'origin of abortion')",abortion meaning in greek,origin of abortion,1,2,google,2026-03-12 19:29:30.590523,abortion,abortion meaning,in greek,origin of +abortion,"('abortion meaning in greek', 'abortion in greek')",abortion meaning in greek,abortion in greek,2,2,google,2026-03-12 19:29:30.590523,abortion,abortion meaning,in greek,in greek +abortion,"('abortion meaning in greek', 'abortion meaning in hebrew')",abortion meaning in greek,abortion meaning in hebrew,3,2,google,2026-03-12 19:29:30.590523,abortion,abortion meaning,in greek,hebrew +abortion,"('abortion meaning in greek', 'abortion in greek and roman times')",abortion meaning in greek,abortion in greek and roman times,4,2,google,2026-03-12 19:29:30.590523,abortion,abortion meaning,in greek,and roman times +abortion,"('abortion meaning in greek', 'abortion meaning in farsi')",abortion meaning in greek,abortion meaning in farsi,5,2,google,2026-03-12 19:29:30.590523,abortion,abortion meaning,in greek,farsi +abortion,"('abortion meaning dictionary', 'abortion meaning oxford dictionary')",abortion meaning dictionary,abortion meaning oxford dictionary,1,2,google,2026-03-12 19:29:31.642012,abortion,abortion meaning,dictionary,oxford +abortion,"('abortion meaning dictionary', 'what does the word abortion mean')",abortion meaning dictionary,what does the word abortion mean,2,2,google,2026-03-12 19:29:31.642012,abortion,abortion meaning,dictionary,what does the word mean +abortion,"('abortion meaning dictionary', 'is abortion a bad word')",abortion meaning dictionary,is abortion a bad word,3,2,google,2026-03-12 19:29:31.642012,abortion,abortion meaning,dictionary,is a bad word +abortion,"('abortion meaning dictionary', 'what is the meaning of abortion in english')",abortion meaning dictionary,what is the meaning of abortion in english,4,2,google,2026-03-12 19:29:31.642012,abortion,abortion meaning,dictionary,what is the of in english +abortion,"('abortion meaning dictionary', 'abortion dictionary definition')",abortion meaning dictionary,abortion dictionary definition,5,2,google,2026-03-12 19:29:31.642012,abortion,abortion meaning,dictionary,definition +abortion,"('abortion meaning dictionary', 'abortion medical dictionary')",abortion meaning dictionary,abortion medical dictionary,6,2,google,2026-03-12 19:29:31.642012,abortion,abortion meaning,dictionary,medical +abortion,"('abortion meaning dictionary', 'abortion meaning in simple words')",abortion meaning dictionary,abortion meaning in simple words,7,2,google,2026-03-12 19:29:31.642012,abortion,abortion meaning,dictionary,in simple words +abortion,"('abortion laws in california 2025', 'new abortion law in california 2025')",abortion laws in california 2025,new abortion law in california 2025,1,2,google,2026-03-12 19:29:32.831158,abortion,abortion laws in california,2025,new law +abortion,"('abortion laws in california 2025', 'abortion laws in california 2023')",abortion laws in california 2025,abortion laws in california 2023,2,2,google,2026-03-12 19:29:32.831158,abortion,abortion laws in california,2025,2023 +abortion,"('abortion laws in california 2025', 'abortion laws in california 2021')",abortion laws in california 2025,abortion laws in california 2021,3,2,google,2026-03-12 19:29:32.831158,abortion,abortion laws in california,2025,2021 +abortion,"('abortion laws in california 2025', 'abortion laws in california 2022')",abortion laws in california 2025,abortion laws in california 2022,4,2,google,2026-03-12 19:29:32.831158,abortion,abortion laws in california,2025,2022 +abortion,"('abortion laws in california 2025', 'abortion laws in california how many weeks')",abortion laws in california 2025,abortion laws in california how many weeks,5,2,google,2026-03-12 19:29:32.831158,abortion,abortion laws in california,2025,how many weeks +abortion,"('abortion laws in california 2026', 'is abortion legal in california 2026')",abortion laws in california 2026,is abortion legal in california 2026,1,2,google,2026-03-12 19:29:34.082813,abortion,abortion laws in california,2026,is legal +abortion,"('abortion laws in california 2026', 'is abortion illegal in california 2026')",abortion laws in california 2026,is abortion illegal in california 2026,2,2,google,2026-03-12 19:29:34.082813,abortion,abortion laws in california,2026,is illegal +abortion,"('abortion laws in california 2026', 'california abortion laws')",abortion laws in california 2026,california abortion laws,3,2,google,2026-03-12 19:29:34.082813,abortion,abortion laws in california,2026,2026 +abortion,"('abortion laws in california 2026', 'abortion laws in california 2023')",abortion laws in california 2026,abortion laws in california 2023,4,2,google,2026-03-12 19:29:34.082813,abortion,abortion laws in california,2026,2023 +abortion,"('abortion laws in california 2026', 'abortion laws in california 2021')",abortion laws in california 2026,abortion laws in california 2021,5,2,google,2026-03-12 19:29:34.082813,abortion,abortion laws in california,2026,2021 +abortion,"('abortion laws in california 2026', 'abortion laws in california 2022')",abortion laws in california 2026,abortion laws in california 2022,6,2,google,2026-03-12 19:29:34.082813,abortion,abortion laws in california,2026,2022 +abortion,"('abortion laws in california 2026', 'abortion laws in california history')",abortion laws in california 2026,abortion laws in california history,7,2,google,2026-03-12 19:29:34.082813,abortion,abortion laws in california,2026,history +abortion,"('abortion laws in california how many weeks', 'abortion laws in california 2024 how many weeks')",abortion laws in california how many weeks,abortion laws in california 2024 how many weeks,1,2,google,2026-03-12 19:29:34.981083,abortion,abortion laws in california,how many weeks,2024 +abortion,"('abortion laws in california how many weeks', 'is abortion legal in california how many weeks')",abortion laws in california how many weeks,is abortion legal in california how many weeks,2,2,google,2026-03-12 19:29:34.981083,abortion,abortion laws in california,how many weeks,is legal +abortion,"('abortion laws in california how many weeks', 'how many weeks can you have an abortion in california')",abortion laws in california how many weeks,how many weeks can you have an abortion in california,3,2,google,2026-03-12 19:29:34.981083,abortion,abortion laws in california,how many weeks,can you have an +abortion,"('abortion laws in california how many weeks', 'how many weeks can you get an abortion california')",abortion laws in california how many weeks,how many weeks can you get an abortion california,4,2,google,2026-03-12 19:29:34.981083,abortion,abortion laws in california,how many weeks,can you get an +abortion,"('abortion laws in california how many weeks', 'california abortion laws how many weeks 2021')",abortion laws in california how many weeks,california abortion laws how many weeks 2021,5,2,google,2026-03-12 19:29:34.981083,abortion,abortion laws in california,how many weeks,2021 +abortion,"('abortion laws in california how many weeks', 'california abortion laws how many weeks 2020')",abortion laws in california how many weeks,california abortion laws how many weeks 2020,6,2,google,2026-03-12 19:29:34.981083,abortion,abortion laws in california,how many weeks,2020 +abortion,"('abortion laws in california how many weeks', 'california abortion laws how many weeks 2022')",abortion laws in california how many weeks,california abortion laws how many weeks 2022,7,2,google,2026-03-12 19:29:34.981083,abortion,abortion laws in california,how many weeks,2022 +abortion,"('abortion laws in california 2024', 'abortion laws in california 2024 how many weeks')",abortion laws in california 2024,abortion laws in california 2024 how many weeks,1,2,google,2026-03-12 19:29:35.916686,abortion,abortion laws in california,2024,how many weeks +abortion,"('abortion laws in california 2024', 'abortion legal in california 2024')",abortion laws in california 2024,abortion legal in california 2024,2,2,google,2026-03-12 19:29:35.916686,abortion,abortion laws in california,2024,legal +abortion,"('abortion laws in california 2024', 'new abortion laws in california 2024 update')",abortion laws in california 2024,new abortion laws in california 2024 update,3,2,google,2026-03-12 19:29:35.916686,abortion,abortion laws in california,2024,new update +abortion,"('abortion laws in california 2024', 'new abortion law in california 2024')",abortion laws in california 2024,new abortion law in california 2024,4,2,google,2026-03-12 19:29:35.916686,abortion,abortion laws in california,2024,new law +abortion,"('abortion laws in california 2024', 'abortion law california 2024 update today')",abortion laws in california 2024,abortion law california 2024 update today,5,2,google,2026-03-12 19:29:35.916686,abortion,abortion laws in california,2024,law update today +abortion,"('abortion laws in california 2024', 'is abortion illegal in california 2024')",abortion laws in california 2024,is abortion illegal in california 2024,6,2,google,2026-03-12 19:29:35.916686,abortion,abortion laws in california,2024,is illegal +abortion,"('abortion laws in california 2024', 'abortion limits california 2024')",abortion laws in california 2024,abortion limits california 2024,7,2,google,2026-03-12 19:29:35.916686,abortion,abortion laws in california,2024,limits +abortion,"('abortion laws in california 2024', 'abortion laws in california 2023')",abortion laws in california 2024,abortion laws in california 2023,8,2,google,2026-03-12 19:29:35.916686,abortion,abortion laws in california,2024,2023 +abortion,"('abortion laws in california 2024', 'abortion laws in california 2021')",abortion laws in california 2024,abortion laws in california 2021,9,2,google,2026-03-12 19:29:35.916686,abortion,abortion laws in california,2024,2021 +abortion,"('abortion laws in california for minors', 'is abortion legal in california for minors')",abortion laws in california for minors,is abortion legal in california for minors,1,2,google,2026-03-12 19:29:37.291785,abortion,abortion laws in california,for minors,is legal +abortion,"('abortion laws in california for minors', 'age limit for abortion in california')",abortion laws in california for minors,age limit for abortion in california,2,2,google,2026-03-12 19:29:37.291785,abortion,abortion laws in california,for minors,age limit +abortion,"('abortion laws in california 2023', 'new abortion law in california 2023')",abortion laws in california 2023,new abortion law in california 2023,1,2,google,2026-03-12 19:29:38.195423,abortion,abortion laws in california,2023,new law +abortion,"('abortion laws in california 2023', 'new abortion law in california 2023 overturned')",abortion laws in california 2023,new abortion law in california 2023 overturned,2,2,google,2026-03-12 19:29:38.195423,abortion,abortion laws in california,2023,new law overturned +abortion,"('abortion laws in california 2023', 'abortion laws in california 2021')",abortion laws in california 2023,abortion laws in california 2021,3,2,google,2026-03-12 19:29:38.195423,abortion,abortion laws in california,2023,2021 +abortion,"('abortion laws in california 2023', 'abortion laws in california 2022')",abortion laws in california 2023,abortion laws in california 2022,4,2,google,2026-03-12 19:29:38.195423,abortion,abortion laws in california,2023,2022 +abortion,"('abortion laws in california 2024 how many weeks', 'california abortion laws how many weeks')",abortion laws in california 2024 how many weeks,california abortion laws how many weeks,1,2,google,2026-03-12 19:29:39.228595,abortion,abortion laws in california,2024 how many weeks,2024 how many weeks +abortion,"('abortion laws in california 2024 how many weeks', 'how many weeks can you get an abortion california')",abortion laws in california 2024 how many weeks,how many weeks can you get an abortion california,2,2,google,2026-03-12 19:29:39.228595,abortion,abortion laws in california,2024 how many weeks,can you get an +abortion,"('abortion laws in california 2024 how many weeks', 'california abortion laws how many weeks 2020')",abortion laws in california 2024 how many weeks,california abortion laws how many weeks 2020,3,2,google,2026-03-12 19:29:39.228595,abortion,abortion laws in california,2024 how many weeks,2020 +abortion,"('abortion laws in california 2024 how many weeks', 'california abortion laws how many weeks 2021')",abortion laws in california 2024 how many weeks,california abortion laws how many weeks 2021,4,2,google,2026-03-12 19:29:39.228595,abortion,abortion laws in california,2024 how many weeks,2021 +abortion,"('abortion laws in california 2024 how many weeks', 'california abortion laws how many weeks 2022')",abortion laws in california 2024 how many weeks,california abortion laws how many weeks 2022,5,2,google,2026-03-12 19:29:39.228595,abortion,abortion laws in california,2024 how many weeks,2022 +abortion,"('abortion laws in california 2024 how many weeks', 'abortion laws california 2023')",abortion laws in california 2024 how many weeks,abortion laws california 2023,6,2,google,2026-03-12 19:29:39.228595,abortion,abortion laws in california,2024 how many weeks,2023 +abortion,"('abortion legal in california', 'abortion legal in california 2024')",abortion legal in california,abortion legal in california 2024,1,2,google,2026-03-12 19:29:40.101960,abortion,abortion laws in california,legal,2024 +abortion,"('abortion legal in california', 'abortion law in california')",abortion legal in california,abortion law in california,2,2,google,2026-03-12 19:29:40.101960,abortion,abortion laws in california,legal,law +abortion,"('abortion legal in california', 'abortion law in california 2025')",abortion legal in california,abortion law in california 2025,3,2,google,2026-03-12 19:29:40.101960,abortion,abortion laws in california,legal,law 2025 +abortion,"('abortion legal in california', 'abortion law in california 2024')",abortion legal in california,abortion law in california 2024,4,2,google,2026-03-12 19:29:40.101960,abortion,abortion laws in california,legal,law 2024 +abortion,"('abortion legal in california', 'abortion law in california how many weeks')",abortion legal in california,abortion law in california how many weeks,5,2,google,2026-03-12 19:29:40.101960,abortion,abortion laws in california,legal,law how many weeks +abortion,"('abortion legal in california', 'legal abortion in california weeks')",abortion legal in california,legal abortion in california weeks,6,2,google,2026-03-12 19:29:40.101960,abortion,abortion laws in california,legal,weeks +abortion,"('abortion legal in california', 'abortion rules in california')",abortion legal in california,abortion rules in california,7,2,google,2026-03-12 19:29:40.101960,abortion,abortion laws in california,legal,rules +abortion,"('abortion legal in california', 'abortion illegal in california')",abortion legal in california,abortion illegal in california,8,2,google,2026-03-12 19:29:40.101960,abortion,abortion laws in california,legal,illegal +abortion,"('abortion legal in california', 'abortion banned in california')",abortion legal in california,abortion banned in california,9,2,google,2026-03-12 19:29:40.101960,abortion,abortion laws in california,legal,banned +abortion,"('abortion illegal in california', 'abortion laws in california')",abortion illegal in california,abortion laws in california,1,2,google,2026-03-12 19:29:41.326585,abortion,abortion laws in california,illegal,laws +abortion,"('abortion illegal in california', 'abortion legal in california')",abortion illegal in california,abortion legal in california,2,2,google,2026-03-12 19:29:41.326585,abortion,abortion laws in california,illegal,legal +abortion,"('abortion illegal in california', 'abortion laws in california 2025')",abortion illegal in california,abortion laws in california 2025,3,2,google,2026-03-12 19:29:41.326585,abortion,abortion laws in california,illegal,laws 2025 +abortion,"('abortion illegal in california', 'abortion rules in california')",abortion illegal in california,abortion rules in california,4,2,google,2026-03-12 19:29:41.326585,abortion,abortion laws in california,illegal,rules +abortion,"('abortion illegal in california', 'abortion laws in california 2024')",abortion illegal in california,abortion laws in california 2024,5,2,google,2026-03-12 19:29:41.326585,abortion,abortion laws in california,illegal,laws 2024 +abortion,"('abortion illegal in california', 'abortion laws in california how many weeks')",abortion illegal in california,abortion laws in california how many weeks,6,2,google,2026-03-12 19:29:41.326585,abortion,abortion laws in california,illegal,laws how many weeks +abortion,"('abortion illegal in california', 'abortion banned in california')",abortion illegal in california,abortion banned in california,7,2,google,2026-03-12 19:29:41.326585,abortion,abortion laws in california,illegal,banned +abortion,"('abortion illegal in california', 'abortion restrictions in california')",abortion illegal in california,abortion restrictions in california,8,2,google,2026-03-12 19:29:41.326585,abortion,abortion laws in california,illegal,restrictions +abortion,"('abortion illegal in california', 'abortion legal in california 2024')",abortion illegal in california,abortion legal in california 2024,9,2,google,2026-03-12 19:29:41.326585,abortion,abortion laws in california,illegal,legal 2024 +abortion,"('abortion clinics in san francisco', 'abortion clinic san francisco ca')",abortion clinics in san francisco,abortion clinic san francisco ca,1,3,google,2026-03-12 19:29:42.733085,abortion clinic san francisco,abortion clinic san francisco ca,clinics in,clinic ca +abortion,"('abortion clinics in san francisco', 'abortion clinic for free near me')",abortion clinics in san francisco,abortion clinic for free near me,2,3,google,2026-03-12 19:29:42.733085,abortion clinic san francisco,abortion clinic san francisco ca,clinics in,clinic for free near me +abortion,"('abortion clinics in san francisco', 'abortion clinics san francisco california')",abortion clinics in san francisco,abortion clinics san francisco california,3,3,google,2026-03-12 19:29:42.733085,abortion clinic san francisco,abortion clinic san francisco ca,clinics in,california +abortion,"('abortion clinics in san francisco', 'abortion clinics in bay area')",abortion clinics in san francisco,abortion clinics in bay area,4,3,google,2026-03-12 19:29:42.733085,abortion clinic san francisco,abortion clinic san francisco ca,clinics in,bay area +abortion,"('abortion clinics in san francisco', 'abortion clinics sf')",abortion clinics in san francisco,abortion clinics sf,5,3,google,2026-03-12 19:29:42.733085,abortion clinic san francisco,abortion clinic san francisco ca,clinics in,sf +abortion,"('free abortion clinics in california', 'are there free abortion clinics in california')",free abortion clinics in california,are there free abortion clinics in california,1,3,google,2026-03-12 19:29:44.075199,abortion clinic san francisco,abortion clinic san francisco ca,free clinics in california,are there +abortion,"('free abortion clinics in california', 'free abortion clinics near me')",free abortion clinics in california,free abortion clinics near me,2,3,google,2026-03-12 19:29:44.075199,abortion clinic san francisco,abortion clinic san francisco ca,free clinics in california,near me +abortion,"('abortion clinic for free near me', ""women's clinic free near me"")",abortion clinic for free near me,women's clinic free near me,1,3,google,2026-03-12 19:29:44.980495,abortion clinic san francisco,abortion clinic san francisco ca,for free near me,women's +abortion,"('abortion clinic for free near me', 'free abortion clinic near me open now')",abortion clinic for free near me,free abortion clinic near me open now,2,3,google,2026-03-12 19:29:44.980495,abortion clinic san francisco,abortion clinic san francisco ca,for free near me,open now +abortion,"('abortion clinic for free near me', 'free abortion clinic near me volunteer')",abortion clinic for free near me,free abortion clinic near me volunteer,3,3,google,2026-03-12 19:29:44.980495,abortion clinic san francisco,abortion clinic san francisco ca,for free near me,volunteer +abortion,"('abortion clinic for free near me', 'free abortion clinic near me within 5 mi')",abortion clinic for free near me,free abortion clinic near me within 5 mi,4,3,google,2026-03-12 19:29:44.980495,abortion clinic san francisco,abortion clinic san francisco ca,for free near me,within 5 mi +abortion,"('abortion clinic for free near me', 'free abortion clinic near me within 20 mi')",abortion clinic for free near me,free abortion clinic near me within 20 mi,5,3,google,2026-03-12 19:29:44.980495,abortion clinic san francisco,abortion clinic san francisco ca,for free near me,within 20 mi +abortion,"('abortion clinic for free near me', 'free abortion clinic near me within 8.1 km')",abortion clinic for free near me,free abortion clinic near me within 8.1 km,6,3,google,2026-03-12 19:29:44.980495,abortion clinic san francisco,abortion clinic san francisco ca,for free near me,within 8.1 km +abortion,"('abortion clinic for free near me', ""women's clinic free ultrasound near me"")",abortion clinic for free near me,women's clinic free ultrasound near me,7,3,google,2026-03-12 19:29:44.980495,abortion clinic san francisco,abortion clinic san francisco ca,for free near me,women's ultrasound +abortion,"('abortion clinic for free near me', ""women's health clinic free near me"")",abortion clinic for free near me,women's health clinic free near me,8,3,google,2026-03-12 19:29:44.980495,abortion clinic san francisco,abortion clinic san francisco ca,for free near me,women's health +abortion,"('abortion clinic for free near me', 'which clinic do abortion for free near me')",abortion clinic for free near me,which clinic do abortion for free near me,9,3,google,2026-03-12 19:29:44.980495,abortion clinic san francisco,abortion clinic san francisco ca,for free near me,which do +abortion,"('abortion clinics san francisco california', 'abortion clinic san francisco ca')",abortion clinics san francisco california,abortion clinic san francisco ca,1,3,google,2026-03-12 19:29:46.298109,abortion clinic san francisco,abortion clinic san francisco ca,clinics california,clinic ca +abortion,"('abortion clinics san francisco california', 'abortion clinics in san francisco')",abortion clinics san francisco california,abortion clinics in san francisco,2,3,google,2026-03-12 19:29:46.298109,abortion clinic san francisco,abortion clinic san francisco ca,clinics california,in +abortion,"('abortion clinics san francisco california', 'abortion options in california')",abortion clinics san francisco california,abortion options in california,3,3,google,2026-03-12 19:29:46.298109,abortion clinic san francisco,abortion clinic san francisco ca,clinics california,options in +abortion,"('abortion clinics san francisco california', 'abortion cut off in california')",abortion clinics san francisco california,abortion cut off in california,4,3,google,2026-03-12 19:29:46.298109,abortion clinic san francisco,abortion clinic san francisco ca,clinics california,cut off in +abortion,"('abortion clinics san francisco california', 'abortion clinics sf')",abortion clinics san francisco california,abortion clinics sf,5,3,google,2026-03-12 19:29:46.298109,abortion clinic san francisco,abortion clinic san francisco ca,clinics california,sf +abortion,"(""women's health center san francisco"", ""women's health clinic san francisco"")",women's health center san francisco,women's health clinic san francisco,1,3,google,2026-03-12 19:29:47.670977,abortion clinic san francisco,women's clinic san francisco,health center,clinic +abortion,"(""women's health center san francisco"", ""sutter women's health center san francisco"")",women's health center san francisco,sutter women's health center san francisco,2,3,google,2026-03-12 19:29:47.670977,abortion clinic san francisco,women's clinic san francisco,health center,sutter +abortion,"(""women's health center san francisco"", ""women's breast health center san francisco"")",women's health center san francisco,women's breast health center san francisco,3,3,google,2026-03-12 19:29:47.670977,abortion clinic san francisco,women's clinic san francisco,health center,breast +abortion,"(""women's health center san francisco"", ""ucsf women's health center san francisco ca"")",women's health center san francisco,ucsf women's health center san francisco ca,4,3,google,2026-03-12 19:29:47.670977,abortion clinic san francisco,women's clinic san francisco,health center,ucsf ca +abortion,"(""women's health center san francisco"", ""tia women's health clinic san francisco"")",women's health center san francisco,tia women's health clinic san francisco,5,3,google,2026-03-12 19:29:47.670977,abortion clinic san francisco,women's clinic san francisco,health center,tia clinic +abortion,"(""women's health center san francisco"", ""st mary's women's health center san francisco"")",women's health center san francisco,st mary's women's health center san francisco,6,3,google,2026-03-12 19:29:47.670977,abortion clinic san francisco,women's clinic san francisco,health center,st mary's +abortion,"(""women's health center san francisco"", ""tia women's health clinic san francisco reviews"")",women's health center san francisco,tia women's health clinic san francisco reviews,7,3,google,2026-03-12 19:29:47.670977,abortion clinic san francisco,women's clinic san francisco,health center,tia clinic reviews +abortion,"(""women's health center san francisco"", ""ucsf radiology at the women's health center san francisco"")",women's health center san francisco,ucsf radiology at the women's health center san francisco,8,3,google,2026-03-12 19:29:47.670977,abortion clinic san francisco,women's clinic san francisco,health center,ucsf radiology at the +abortion,"(""women's health center san francisco"", ""women's health resource center california pacific medical center san francisco"")",women's health center san francisco,women's health resource center california pacific medical center san francisco,9,3,google,2026-03-12 19:29:47.670977,abortion clinic san francisco,women's clinic san francisco,health center,resource california pacific medical +abortion,"(""women's hospital san francisco"", ""general hospital san francisco women's clinic"")",women's hospital san francisco,general hospital san francisco women's clinic,1,3,google,2026-03-12 19:29:48.727781,abortion clinic san francisco,women's clinic san francisco,hospital,general clinic +abortion,"(""women's hospital san francisco"", ""women's hospital san diego"")",women's hospital san francisco,women's hospital san diego,2,3,google,2026-03-12 19:29:48.727781,abortion clinic san francisco,women's clinic san francisco,hospital,diego +abortion,"(""women's hospital san francisco"", ""women's hospital san antonio"")",women's hospital san francisco,women's hospital san antonio,3,3,google,2026-03-12 19:29:48.727781,abortion clinic san francisco,women's clinic san francisco,hospital,antonio +abortion,"(""women's hospital san francisco"", ""women's clinic general hospital sf"")",women's hospital san francisco,women's clinic general hospital sf,4,3,google,2026-03-12 19:29:48.727781,abortion clinic san francisco,women's clinic san francisco,hospital,clinic general sf +abortion,"(""women's hospital san francisco"", ""women's health san francisco"")",women's hospital san francisco,women's health san francisco,5,3,google,2026-03-12 19:29:48.727781,abortion clinic san francisco,women's clinic san francisco,hospital,health +abortion,"(""sutter women's health center san francisco"", ""UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA"")",sutter women's health center san francisco,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA",1,3,google,2026-03-12 19:29:50.109017,abortion clinic san francisco,women's clinic san francisco,sutter health center,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA" +abortion,"(""sutter women's health center san francisco"", 'sutter health san francisco locations')",sutter women's health center san francisco,sutter health san francisco locations,2,3,google,2026-03-12 19:29:50.109017,abortion clinic san francisco,women's clinic san francisco,sutter health center,locations +abortion,"(""sutter women's health center san francisco"", 'sutter health san francisco phone number')",sutter women's health center san francisco,sutter health san francisco phone number,3,3,google,2026-03-12 19:29:50.109017,abortion clinic san francisco,women's clinic san francisco,sutter health center,phone number +abortion,"(""sutter women's health center san francisco"", 'sutter health san francisco address')",sutter women's health center san francisco,sutter health san francisco address,4,3,google,2026-03-12 19:29:50.109017,abortion clinic san francisco,women's clinic san francisco,sutter health center,address +abortion,"(""sutter women's health center san francisco"", ""sutter health women's health san francisco"")",sutter women's health center san francisco,sutter health women's health san francisco,5,3,google,2026-03-12 19:29:50.109017,abortion clinic san francisco,women's clinic san francisco,sutter health center,sutter health center +abortion,"(""sutter women's health center san francisco"", ""sutter health women's center san mateo"")",sutter women's health center san francisco,sutter health women's center san mateo,6,3,google,2026-03-12 19:29:50.109017,abortion clinic san francisco,women's clinic san francisco,sutter health center,mateo +abortion,"(""sutter women's health center san francisco"", ""sutter women's health center sacramento"")",sutter women's health center san francisco,sutter women's health center sacramento,7,3,google,2026-03-12 19:29:50.109017,abortion clinic san francisco,women's clinic san francisco,sutter health center,sacramento +abortion,"(""sutter women's health center san francisco"", ""sutter women's health center santa rosa"")",sutter women's health center san francisco,sutter women's health center santa rosa,8,3,google,2026-03-12 19:29:50.109017,abortion clinic san francisco,women's clinic san francisco,sutter health center,santa rosa +abortion,"('abortion treatment near me', 'abortion care near me')",abortion treatment near me,abortion care near me,1,3,google,2026-03-12 19:29:50.968207,abortion clinic san francisco,abortion services san francisco,treatment near me,care +abortion,"('abortion treatment near me', 'miscarriage treatment near me')",abortion treatment near me,miscarriage treatment near me,2,3,google,2026-03-12 19:29:50.968207,abortion clinic san francisco,abortion services san francisco,treatment near me,miscarriage +abortion,"('abortion treatment near me', 'post abortion care near me')",abortion treatment near me,post abortion care near me,3,3,google,2026-03-12 19:29:50.968207,abortion clinic san francisco,abortion services san francisco,treatment near me,post care +abortion,"('abortion treatment near me', 'post abortion therapy near me')",abortion treatment near me,post abortion therapy near me,4,3,google,2026-03-12 19:29:50.968207,abortion clinic san francisco,abortion services san francisco,treatment near me,post therapy +abortion,"('abortion treatment near me', 'free abortion care near me')",abortion treatment near me,free abortion care near me,5,3,google,2026-03-12 19:29:50.968207,abortion clinic san francisco,abortion services san francisco,treatment near me,free care +abortion,"('abortion treatment near me', 'abortion care jobs near me')",abortion treatment near me,abortion care jobs near me,6,3,google,2026-03-12 19:29:50.968207,abortion clinic san francisco,abortion services san francisco,treatment near me,care jobs +abortion,"('abortion treatment near me', 'recurrent miscarriage treatment near me')",abortion treatment near me,recurrent miscarriage treatment near me,7,3,google,2026-03-12 19:29:50.968207,abortion clinic san francisco,abortion services san francisco,treatment near me,recurrent miscarriage +abortion,"('abortion treatment near me', 'abortion care clinic near me')",abortion treatment near me,abortion care clinic near me,8,3,google,2026-03-12 19:29:50.968207,abortion clinic san francisco,abortion services san francisco,treatment near me,care clinic +abortion,"('abortion treatment near me', 'abortion treatment cost')",abortion treatment near me,abortion treatment cost,9,3,google,2026-03-12 19:29:50.968207,abortion clinic san francisco,abortion services san francisco,treatment near me,cost +abortion,"('abortion san francisco', 'abortion clinic san francisco')",abortion san francisco,abortion clinic san francisco,1,3,google,2026-03-12 19:29:51.810026,abortion clinic san francisco,abortion services san francisco,services,clinic +abortion,"('abortion san francisco', 'abortion pill san francisco')",abortion san francisco,abortion pill san francisco,2,3,google,2026-03-12 19:29:51.810026,abortion clinic san francisco,abortion services san francisco,services,pill +abortion,"('abortion san francisco', 'abortion clinic san francisco ca')",abortion san francisco,abortion clinic san francisco ca,3,3,google,2026-03-12 19:29:51.810026,abortion clinic san francisco,abortion services san francisco,services,clinic ca +abortion,"('abortion san francisco', 'abortion protest san francisco')",abortion san francisco,abortion protest san francisco,4,3,google,2026-03-12 19:29:51.810026,abortion clinic san francisco,abortion services san francisco,services,protest +abortion,"('abortion san francisco', 'anti abortion san francisco')",abortion san francisco,anti abortion san francisco,5,3,google,2026-03-12 19:29:51.810026,abortion clinic san francisco,abortion services san francisco,services,anti +abortion,"('abortion san francisco', 'abortion services san francisco')",abortion san francisco,abortion services san francisco,6,3,google,2026-03-12 19:29:51.810026,abortion clinic san francisco,abortion services san francisco,services,services +abortion,"('abortion san francisco', 'surgical abortion san francisco')",abortion san francisco,surgical abortion san francisco,7,3,google,2026-03-12 19:29:51.810026,abortion clinic san francisco,abortion services san francisco,services,surgical +abortion,"('abortion san francisco', 'san francisco abortion law')",abortion san francisco,san francisco abortion law,8,3,google,2026-03-12 19:29:51.810026,abortion clinic san francisco,abortion services san francisco,services,law +abortion,"('abortion san francisco', 'abortion rally san francisco')",abortion san francisco,abortion rally san francisco,9,3,google,2026-03-12 19:29:51.810026,abortion clinic san francisco,abortion services san francisco,services,rally +abortion,"('abortion clinics sf', 'abortion clinics in san francisco')",abortion clinics sf,abortion clinics in san francisco,1,3,google,2026-03-12 19:29:53.119272,abortion clinic san francisco,abortion services san francisco,clinics sf,in san francisco +abortion,"('abortion clinics sf', 'abortion clinic near me surgical')",abortion clinics sf,abortion clinic near me surgical,2,3,google,2026-03-12 19:29:53.119272,abortion clinic san francisco,abortion services san francisco,clinics sf,clinic near me surgical +abortion,"('abortion clinics sf', 'abortion clinic near me for free')",abortion clinics sf,abortion clinic near me for free,3,3,google,2026-03-12 19:29:53.119272,abortion clinic san francisco,abortion services san francisco,clinics sf,clinic near me for free +abortion,"('abortion clinics sf', 'abortion clinics san francisco california')",abortion clinics sf,abortion clinics san francisco california,4,3,google,2026-03-12 19:29:53.119272,abortion clinic san francisco,abortion services san francisco,clinics sf,san francisco california +abortion,"('abortion clinics sf', 'abortion clinic san francisco ca')",abortion clinics sf,abortion clinic san francisco ca,5,3,google,2026-03-12 19:29:53.119272,abortion clinic san francisco,abortion services san francisco,clinics sf,clinic san francisco ca +abortion,"(""tia women's health clinic san francisco"", ""tia women's health clinic san francisco reviews"")",tia women's health clinic san francisco,tia women's health clinic san francisco reviews,1,3,google,2026-03-12 19:29:54.079017,abortion clinic san francisco,women's health clinic san francisco,tia,reviews +abortion,"(""tia women's health clinic san francisco"", ""Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA"")",tia women's health clinic san francisco,"Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA",2,3,google,2026-03-12 19:29:54.079017,abortion clinic san francisco,women's health clinic san francisco,tia,"Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA" +abortion,"(""tia women's health clinic san francisco"", ""tia women's health locations"")",tia women's health clinic san francisco,tia women's health locations,3,3,google,2026-03-12 19:29:54.079017,abortion clinic san francisco,women's health clinic san francisco,tia,locations +abortion,"(""tia women's health clinic san francisco"", ""tia women's health clinic"")",tia women's health clinic san francisco,tia women's health clinic,4,3,google,2026-03-12 19:29:54.079017,abortion clinic san francisco,women's health clinic san francisco,tia,tia +abortion,"(""tia women's health clinic san francisco"", 'tia health san francisco')",tia women's health clinic san francisco,tia health san francisco,5,3,google,2026-03-12 19:29:54.079017,abortion clinic san francisco,women's health clinic san francisco,tia,tia +abortion,"(""tia women's health clinic san francisco"", 'tia sf clinic')",tia women's health clinic san francisco,tia sf clinic,6,3,google,2026-03-12 19:29:54.079017,abortion clinic san francisco,women's health clinic san francisco,tia,sf +abortion,"(""tia women's health clinic san francisco"", ""tia women's health los angeles"")",tia women's health clinic san francisco,tia women's health los angeles,7,3,google,2026-03-12 19:29:54.079017,abortion clinic san francisco,women's health clinic san francisco,tia,los angeles +abortion,"(""tia women's health clinic san francisco reviews"", 'tia san francisco reviews')",tia women's health clinic san francisco reviews,tia san francisco reviews,1,3,google,2026-03-12 19:29:55.050426,abortion clinic san francisco,women's health clinic san francisco,tia reviews,tia reviews +abortion,"(""tia women's health clinic san francisco reviews"", 'tia sf reviews')",tia women's health clinic san francisco reviews,tia sf reviews,2,3,google,2026-03-12 19:29:55.050426,abortion clinic san francisco,women's health clinic san francisco,tia reviews,sf +abortion,"(""tia women's health clinic san francisco reviews"", ""tia women's health reviews"")",tia women's health clinic san francisco reviews,tia women's health reviews,3,3,google,2026-03-12 19:29:55.050426,abortion clinic san francisco,women's health clinic san francisco,tia reviews,tia reviews +abortion,"(""tia women's health clinic san francisco reviews"", 'tia clinic san francisco')",tia women's health clinic san francisco reviews,tia clinic san francisco,4,3,google,2026-03-12 19:29:55.050426,abortion clinic san francisco,women's health clinic san francisco,tia reviews,tia reviews +abortion,"(""tia women's health clinic san francisco reviews"", 'tia health san francisco')",tia women's health clinic san francisco reviews,tia health san francisco,5,3,google,2026-03-12 19:29:55.050426,abortion clinic san francisco,women's health clinic san francisco,tia reviews,tia reviews +abortion,"(""women's breast health center san francisco"", ""women's health center san francisco"")",women's breast health center san francisco,women's health center san francisco,1,3,google,2026-03-12 19:29:56.025738,abortion clinic san francisco,women's health clinic san francisco,breast center,breast center +abortion,"(""women's breast health center san francisco"", ""women's health clinic san francisco"")",women's breast health center san francisco,women's health clinic san francisco,2,3,google,2026-03-12 19:29:56.025738,abortion clinic san francisco,women's health clinic san francisco,breast center,clinic +abortion,"(""women's breast health center san francisco"", ""sutter women's health center san francisco"")",women's breast health center san francisco,sutter women's health center san francisco,3,3,google,2026-03-12 19:29:56.025738,abortion clinic san francisco,women's health clinic san francisco,breast center,sutter +abortion,"(""women's breast health center san francisco"", ""ucsf women's health center san francisco ca"")",women's breast health center san francisco,ucsf women's health center san francisco ca,4,3,google,2026-03-12 19:29:56.025738,abortion clinic san francisco,women's health clinic san francisco,breast center,ucsf ca +abortion,"(""women's breast health center san francisco"", ""women's breast center san mateo"")",women's breast health center san francisco,women's breast center san mateo,5,3,google,2026-03-12 19:29:56.025738,abortion clinic san francisco,women's health clinic san francisco,breast center,mateo +abortion,"(""women's breast health center san francisco"", ""women's breast center san mateo ca"")",women's breast health center san francisco,women's breast center san mateo ca,6,3,google,2026-03-12 19:29:56.025738,abortion clinic san francisco,women's health clinic san francisco,breast center,mateo ca +abortion,"(""women's breast health center san francisco"", 'sf breast health center')",women's breast health center san francisco,sf breast health center,7,3,google,2026-03-12 19:29:56.025738,abortion clinic san francisco,women's health clinic san francisco,breast center,sf +abortion,"(""women's breast health center san francisco"", 'san francisco breast health center')",women's breast health center san francisco,san francisco breast health center,8,3,google,2026-03-12 19:29:56.025738,abortion clinic san francisco,women's health clinic san francisco,breast center,breast center +abortion,"(""ucsf women's health center san francisco ca"", ""ucsf women's health center"")",ucsf women's health center san francisco ca,ucsf women's health center,1,3,google,2026-03-12 19:29:57.295152,abortion clinic san francisco,women's health clinic san francisco,ucsf center ca,ucsf center ca +abortion,"(""ucsf women's health center san francisco ca"", ""ucsf women's health sutter street"")",ucsf women's health center san francisco ca,ucsf women's health sutter street,2,3,google,2026-03-12 19:29:57.295152,abortion clinic san francisco,women's health clinic san francisco,ucsf center ca,sutter street +abortion,"(""ucsf women's health center san francisco ca"", ""ucsf women's health clinic"")",ucsf women's health center san francisco ca,ucsf women's health clinic,3,3,google,2026-03-12 19:29:57.295152,abortion clinic san francisco,women's health clinic san francisco,ucsf center ca,clinic +abortion,"(""ucsf women's health center san francisco ca"", ""ucsf women's center"")",ucsf women's health center san francisco ca,ucsf women's center,4,3,google,2026-03-12 19:29:57.295152,abortion clinic san francisco,women's health clinic san francisco,ucsf center ca,ucsf center ca +abortion,"(""st mary's women's health center san francisco"", ""st. mary's medical center san francisco photos"")",st mary's women's health center san francisco,st. mary's medical center san francisco photos,1,3,google,2026-03-12 19:29:58.694002,abortion clinic san francisco,women's health clinic san francisco,st mary's center,st. medical photos +abortion,"(""st mary's women's health center san francisco"", ""st mary's women's health center"")",st mary's women's health center san francisco,st mary's women's health center,2,3,google,2026-03-12 19:29:58.694002,abortion clinic san francisco,women's health clinic san francisco,st mary's center,st mary's center +abortion,"(""st mary's women's health center san francisco"", ""st mary's medical center san francisco services"")",st mary's women's health center san francisco,st mary's medical center san francisco services,3,3,google,2026-03-12 19:29:58.694002,abortion clinic san francisco,women's health clinic san francisco,st mary's center,medical services +abortion,"(""women's health san francisco"", ""women's health clinic san francisco"")",women's health san francisco,women's health clinic san francisco,1,3,google,2026-03-12 19:29:59.738045,abortion clinic san francisco,women's health clinic san francisco,women's health,clinic +abortion,"(""women's health san francisco"", ""women's health center san francisco"")",women's health san francisco,women's health center san francisco,2,3,google,2026-03-12 19:29:59.738045,abortion clinic san francisco,women's health clinic san francisco,women's health,center +abortion,"(""women's health san francisco"", ""pacific women's health san francisco"")",women's health san francisco,pacific women's health san francisco,3,3,google,2026-03-12 19:29:59.738045,abortion clinic san francisco,women's health clinic san francisco,women's health,pacific +abortion,"(""women's health san francisco"", ""tia women's health san francisco"")",women's health san francisco,tia women's health san francisco,4,3,google,2026-03-12 19:29:59.738045,abortion clinic san francisco,women's health clinic san francisco,women's health,tia +abortion,"(""women's health san francisco"", ""ucsf women's health san francisco"")",women's health san francisco,ucsf women's health san francisco,5,3,google,2026-03-12 19:29:59.738045,abortion clinic san francisco,women's health clinic san francisco,women's health,ucsf +abortion,"(""women's health san francisco"", ""women's health startups san francisco"")",women's health san francisco,women's health startups san francisco,6,3,google,2026-03-12 19:29:59.738045,abortion clinic san francisco,women's health clinic san francisco,women's health,startups +abortion,"(""women's health san francisco"", ""women's health companies san francisco"")",women's health san francisco,women's health companies san francisco,7,3,google,2026-03-12 19:29:59.738045,abortion clinic san francisco,women's health clinic san francisco,women's health,companies +abortion,"(""women's health san francisco"", ""sutter women's health san francisco"")",women's health san francisco,sutter women's health san francisco,8,3,google,2026-03-12 19:29:59.738045,abortion clinic san francisco,women's health clinic san francisco,women's health,sutter +abortion,"(""women's health san francisco"", ""myriad women's health san francisco"")",women's health san francisco,myriad women's health san francisco,9,3,google,2026-03-12 19:29:59.738045,abortion clinic san francisco,women's health clinic san francisco,women's health,myriad +abortion,"(""free women's pregnancy clinic near me"", ""free women's clinic near me"")",free women's pregnancy clinic near me,free women's clinic near me,1,3,google,2026-03-12 19:30:00.670595,abortion clinic san francisco,free women's clinic san francisco,pregnancy near me,pregnancy near me +abortion,"(""free women's pregnancy clinic near me"", ""free women's clinic near me no insurance"")",free women's pregnancy clinic near me,free women's clinic near me no insurance,2,3,google,2026-03-12 19:30:00.670595,abortion clinic san francisco,free women's clinic san francisco,pregnancy near me,no insurance +abortion,"(""free women's pregnancy clinic near me"", ""free women's clinic near me open now"")",free women's pregnancy clinic near me,free women's clinic near me open now,3,3,google,2026-03-12 19:30:00.670595,abortion clinic san francisco,free women's clinic san francisco,pregnancy near me,open now +abortion,"(""free women's pregnancy clinic near me"", ""free women's clinic near me within 5 mi"")",free women's pregnancy clinic near me,free women's clinic near me within 5 mi,4,3,google,2026-03-12 19:30:00.670595,abortion clinic san francisco,free women's clinic san francisco,pregnancy near me,within 5 mi +abortion,"(""free women's pregnancy clinic near me"", ""free women's pregnancy center near me"")",free women's pregnancy clinic near me,free women's pregnancy center near me,5,3,google,2026-03-12 19:30:00.670595,abortion clinic san francisco,free women's clinic san francisco,pregnancy near me,center +abortion,"(""free women's pregnancy clinic near me"", ""free women's clinic near me walk in"")",free women's pregnancy clinic near me,free women's clinic near me walk in,6,3,google,2026-03-12 19:30:00.670595,abortion clinic san francisco,free women's clinic san francisco,pregnancy near me,walk in +abortion,"(""free women's pregnancy clinic near me"", ""free women's clinic near me within 1 mi"")",free women's pregnancy clinic near me,free women's clinic near me within 1 mi,7,3,google,2026-03-12 19:30:00.670595,abortion clinic san francisco,free women's clinic san francisco,pregnancy near me,within 1 mi +abortion,"(""free women's pregnancy clinic near me"", ""free women's clinic near mesquite tx"")",free women's pregnancy clinic near me,free women's clinic near mesquite tx,8,3,google,2026-03-12 19:30:00.670595,abortion clinic san francisco,free women's clinic san francisco,pregnancy near me,mesquite tx +abortion,"(""free women's pregnancy clinic near me"", ""free women's services near me"")",free women's pregnancy clinic near me,free women's services near me,9,3,google,2026-03-12 19:30:00.670595,abortion clinic san francisco,free women's clinic san francisco,pregnancy near me,services +abortion,"(""free women's clinics near me"", ""free women's clinics near me no insurance"")",free women's clinics near me,free women's clinics near me no insurance,1,3,google,2026-03-12 19:30:01.536406,abortion clinic san francisco,free women's clinic san francisco,clinics near me,no insurance +abortion,"(""free women's clinics near me"", ""free women's clinic near me open now"")",free women's clinics near me,free women's clinic near me open now,2,3,google,2026-03-12 19:30:01.536406,abortion clinic san francisco,free women's clinic san francisco,clinics near me,clinic open now +abortion,"(""free women's clinics near me"", ""free women's clinic near me within 5 mi"")",free women's clinics near me,free women's clinic near me within 5 mi,3,3,google,2026-03-12 19:30:01.536406,abortion clinic san francisco,free women's clinic san francisco,clinics near me,clinic within 5 mi +abortion,"(""free women's clinics near me"", ""free women's clinic near me walk in"")",free women's clinics near me,free women's clinic near me walk in,4,3,google,2026-03-12 19:30:01.536406,abortion clinic san francisco,free women's clinic san francisco,clinics near me,clinic walk in +abortion,"(""free women's clinics near me"", ""free women's clinic near me within 1 mi"")",free women's clinics near me,free women's clinic near me within 1 mi,5,3,google,2026-03-12 19:30:01.536406,abortion clinic san francisco,free women's clinic san francisco,clinics near me,clinic within 1 mi +abortion,"(""free women's clinics near me"", ""free women's clinic near mesquite tx"")",free women's clinics near me,free women's clinic near mesquite tx,6,3,google,2026-03-12 19:30:01.536406,abortion clinic san francisco,free women's clinic san francisco,clinics near me,clinic mesquite tx +abortion,"(""free women's clinics near me"", 'free gynecologist clinics near me')",free women's clinics near me,free gynecologist clinics near me,7,3,google,2026-03-12 19:30:01.536406,abortion clinic san francisco,free women's clinic san francisco,clinics near me,gynecologist +abortion,"(""free women's clinics near me"", 'free female clinic near me')",free women's clinics near me,free female clinic near me,8,3,google,2026-03-12 19:30:01.536406,abortion clinic san francisco,free women's clinic san francisco,clinics near me,female clinic +abortion,"(""free women's clinics near me"", ""free women's health clinics near me"")",free women's clinics near me,free women's health clinics near me,9,3,google,2026-03-12 19:30:01.536406,abortion clinic san francisco,free women's clinic san francisco,clinics near me,health +abortion,"('are free clinics really free', 'are free clinics free')",are free clinics really free,are free clinics free,1,3,google,2026-03-12 19:30:02.378013,abortion clinic san francisco,free women's clinic san francisco,are clinics really,are clinics really +abortion,"('are free clinics really free', 'can you go to a free clinic without insurance')",are free clinics really free,can you go to a free clinic without insurance,2,3,google,2026-03-12 19:30:02.378013,abortion clinic san francisco,free women's clinic san francisco,are clinics really,can you go to a clinic without insurance +abortion,"('are free clinics really free', 'are free clinics good')",are free clinics really free,are free clinics good,3,3,google,2026-03-12 19:30:02.378013,abortion clinic san francisco,free women's clinic san francisco,are clinics really,good +abortion,"('are free clinics really free', 'are free clinics actually free')",are free clinics really free,are free clinics actually free,4,3,google,2026-03-12 19:30:02.378013,abortion clinic san francisco,free women's clinic san francisco,are clinics really,actually +abortion,"('are free clinics really free', 'are clinics free')",are free clinics really free,are clinics free,5,3,google,2026-03-12 19:30:02.378013,abortion clinic san francisco,free women's clinic san francisco,are clinics really,are clinics really +abortion,"(""free women's health clinics near me"", ""free women's health clinic near me open now"")",free women's health clinics near me,free women's health clinic near me open now,1,3,google,2026-03-12 19:30:03.725896,abortion clinic san francisco,free women's clinic san francisco,health clinics near me,clinic open now +abortion,"(""free women's health clinics near me"", ""free women's health services near me"")",free women's health clinics near me,free women's health services near me,2,3,google,2026-03-12 19:30:03.725896,abortion clinic san francisco,free women's clinic san francisco,health clinics near me,services +abortion,"(""free women's health clinics near me"", ""free women's care clinic near me"")",free women's health clinics near me,free women's care clinic near me,3,3,google,2026-03-12 19:30:03.725896,abortion clinic san francisco,free women's clinic san francisco,health clinics near me,care clinic +abortion,"(""free women's health clinics near me"", ""free women's health clinic melbourne"")",free women's health clinics near me,free women's health clinic melbourne,4,3,google,2026-03-12 19:30:03.725896,abortion clinic san francisco,free women's clinic san francisco,health clinics near me,clinic melbourne +abortion,"(""free women's health clinics near me"", 'list of free clinics near me')",free women's health clinics near me,list of free clinics near me,5,3,google,2026-03-12 19:30:03.725896,abortion clinic san francisco,free women's clinic san francisco,health clinics near me,list of +abortion,"(""free women's health clinics near me"", ""free women's clinic near me no insurance"")",free women's health clinics near me,free women's clinic near me no insurance,6,3,google,2026-03-12 19:30:03.725896,abortion clinic san francisco,free women's clinic san francisco,health clinics near me,clinic no insurance +abortion,"(""free women's health clinics near me"", ""free women's clinics near me"")",free women's health clinics near me,free women's clinics near me,7,3,google,2026-03-12 19:30:03.725896,abortion clinic san francisco,free women's clinic san francisco,health clinics near me,health clinics near me +abortion,"(""free women's health clinics near me"", ""free women's health center near me"")",free women's health clinics near me,free women's health center near me,8,3,google,2026-03-12 19:30:03.725896,abortion clinic san francisco,free women's clinic san francisco,health clinics near me,center +abortion,"(""free women's health clinics near me"", ""free women's health care clinics near me"")",free women's health clinics near me,free women's health care clinics near me,9,3,google,2026-03-12 19:30:03.725896,abortion clinic san francisco,free women's clinic san francisco,health clinics near me,care +abortion,"(""free women's clinic san diego"", ""free women's clinic san antonio"")",free women's clinic san diego,free women's clinic san antonio,1,3,google,2026-03-12 19:30:04.878520,abortion clinic san francisco,free women's clinic san francisco,diego,antonio +abortion,"(""free women's clinic san diego"", 'obgyn free clinic san diego')",free women's clinic san diego,obgyn free clinic san diego,2,3,google,2026-03-12 19:30:04.878520,abortion clinic san francisco,free women's clinic san francisco,diego,obgyn +abortion,"(""free women's clinic san diego"", ""free women's health clinic san antonio"")",free women's clinic san diego,free women's health clinic san antonio,3,3,google,2026-03-12 19:30:04.878520,abortion clinic san francisco,free women's clinic san francisco,diego,health antonio +abortion,"(""free women's clinic san diego"", ""free women's clinics near me"")",free women's clinic san diego,free women's clinics near me,4,3,google,2026-03-12 19:30:04.878520,abortion clinic san francisco,free women's clinic san francisco,diego,clinics near me +abortion,"(""free women's clinic san diego"", ""free women's health clinics near me"")",free women's clinic san diego,free women's health clinics near me,5,3,google,2026-03-12 19:30:04.878520,abortion clinic san francisco,free women's clinic san francisco,diego,health clinics near me +abortion,"(""free women's clinic san diego"", ""free walk in women's clinic near me"")",free women's clinic san diego,free walk in women's clinic near me,6,3,google,2026-03-12 19:30:04.878520,abortion clinic san francisco,free women's clinic san francisco,diego,walk in near me +abortion,"(""free women's clinic san diego"", ""free women's clinic near me no insurance"")",free women's clinic san diego,free women's clinic near me no insurance,7,3,google,2026-03-12 19:30:04.878520,abortion clinic san francisco,free women's clinic san francisco,diego,near me no insurance +abortion,"(""free women's clinic san diego"", ""free women's pregnancy clinic near me"")",free women's clinic san diego,free women's pregnancy clinic near me,8,3,google,2026-03-12 19:30:04.878520,abortion clinic san francisco,free women's clinic san francisco,diego,pregnancy near me +abortion,"(""free women's clinic san diego"", ""free women's clinic san francisco"")",free women's clinic san diego,free women's clinic san francisco,9,3,google,2026-03-12 19:30:04.878520,abortion clinic san francisco,free women's clinic san francisco,diego,francisco +abortion,"(""free women's clinic sacramento"", ""free women's clinics near me"")",free women's clinic sacramento,free women's clinics near me,1,3,google,2026-03-12 19:30:06.248228,abortion clinic san francisco,free women's clinic san francisco,sacramento,clinics near me +abortion,"(""free women's clinic sacramento"", ""free women's pregnancy clinic near me"")",free women's clinic sacramento,free women's pregnancy clinic near me,2,3,google,2026-03-12 19:30:06.248228,abortion clinic san francisco,free women's clinic san francisco,sacramento,pregnancy near me +abortion,"(""free women's clinic sacramento"", ""free women's health clinics near me"")",free women's clinic sacramento,free women's health clinics near me,3,3,google,2026-03-12 19:30:06.248228,abortion clinic san francisco,free women's clinic san francisco,sacramento,health clinics near me +abortion,"(""free women's clinic sacramento"", ""free women's clinic near me no insurance"")",free women's clinic sacramento,free women's clinic near me no insurance,4,3,google,2026-03-12 19:30:06.248228,abortion clinic san francisco,free women's clinic san francisco,sacramento,near me no insurance +abortion,"(""free women's clinic sacramento"", ""free walk in women's clinic near me"")",free women's clinic sacramento,free walk in women's clinic near me,5,3,google,2026-03-12 19:30:06.248228,abortion clinic san francisco,free women's clinic san francisco,sacramento,walk in near me +abortion,"(""free women's clinic sacramento"", ""free women's clinic san francisco"")",free women's clinic sacramento,free women's clinic san francisco,6,3,google,2026-03-12 19:30:06.248228,abortion clinic san francisco,free women's clinic san francisco,sacramento,san francisco +abortion,"(""free women's clinic sacramento"", ""free women's clinic san diego"")",free women's clinic sacramento,free women's clinic san diego,7,3,google,2026-03-12 19:30:06.248228,abortion clinic san francisco,free women's clinic san francisco,sacramento,san diego +abortion,"(""free women's clinic sacramento"", ""sacramento women's clinic"")",free women's clinic sacramento,sacramento women's clinic,8,3,google,2026-03-12 19:30:06.248228,abortion clinic san francisco,free women's clinic san francisco,sacramento,sacramento +abortion,"(""free women's clinic sacramento"", ""free women's clinic san bernardino ca"")",free women's clinic sacramento,free women's clinic san bernardino ca,9,3,google,2026-03-12 19:30:06.248228,abortion clinic san francisco,free women's clinic san francisco,sacramento,san bernardino ca +abortion,"(""free women's clinic san antonio"", ""free women's health clinic san antonio"")",free women's clinic san antonio,free women's health clinic san antonio,1,3,google,2026-03-12 19:30:07.240969,abortion clinic san francisco,free women's clinic san francisco,antonio,health +abortion,"(""free women's clinic san antonio"", ""free women's clinics near me"")",free women's clinic san antonio,free women's clinics near me,2,3,google,2026-03-12 19:30:07.240969,abortion clinic san francisco,free women's clinic san francisco,antonio,clinics near me +abortion,"(""free women's clinic san antonio"", ""free women's health clinics near me"")",free women's clinic san antonio,free women's health clinics near me,3,3,google,2026-03-12 19:30:07.240969,abortion clinic san francisco,free women's clinic san francisco,antonio,health clinics near me +abortion,"(""free women's clinic san antonio"", ""free walk in women's clinic near me"")",free women's clinic san antonio,free walk in women's clinic near me,4,3,google,2026-03-12 19:30:07.240969,abortion clinic san francisco,free women's clinic san francisco,antonio,walk in near me +abortion,"(""free women's clinic san antonio"", ""free women's clinic near me no insurance"")",free women's clinic san antonio,free women's clinic near me no insurance,5,3,google,2026-03-12 19:30:07.240969,abortion clinic san francisco,free women's clinic san francisco,antonio,near me no insurance +abortion,"(""free women's clinic san antonio"", ""free women's pregnancy clinic near me"")",free women's clinic san antonio,free women's pregnancy clinic near me,6,3,google,2026-03-12 19:30:07.240969,abortion clinic san francisco,free women's clinic san francisco,antonio,pregnancy near me +abortion,"(""free women's clinic san antonio"", ""free women's clinic san francisco"")",free women's clinic san antonio,free women's clinic san francisco,7,3,google,2026-03-12 19:30:07.240969,abortion clinic san francisco,free women's clinic san francisco,antonio,francisco +abortion,"(""free women's clinic san antonio"", ""free women's clinic san diego"")",free women's clinic san antonio,free women's clinic san diego,8,3,google,2026-03-12 19:30:07.240969,abortion clinic san francisco,free women's clinic san francisco,antonio,diego +abortion,"(""free women's clinic san antonio"", ""free women's clinic austin"")",free women's clinic san antonio,free women's clinic austin,9,3,google,2026-03-12 19:30:07.240969,abortion clinic san francisco,free women's clinic san francisco,antonio,austin +abortion,"(""free women's clinic san bernardino ca"", ""free women's clinic san bernardino california"")",free women's clinic san bernardino ca,free women's clinic san bernardino california,1,3,google,2026-03-12 19:30:08.237034,abortion clinic san francisco,free women's clinic san francisco,bernardino ca,california +abortion,"(""free women's clinic san bernardino ca"", ""free women's clinic san bernardino ca 92407"")",free women's clinic san bernardino ca,free women's clinic san bernardino ca 92407,2,3,google,2026-03-12 19:30:08.237034,abortion clinic san francisco,free women's clinic san francisco,bernardino ca,92407 +abortion,"(""free women's clinic san bernardino ca"", ""free women's clinic san bernardino ca 92404"")",free women's clinic san bernardino ca,free women's clinic san bernardino ca 92404,3,3,google,2026-03-12 19:30:08.237034,abortion clinic san francisco,free women's clinic san francisco,bernardino ca,92404 +abortion,"(""free women's clinic san bernardino ca"", ""free women's clinic san bernardino ca 2024"")",free women's clinic san bernardino ca,free women's clinic san bernardino ca 2024,4,3,google,2026-03-12 19:30:08.237034,abortion clinic san francisco,free women's clinic san francisco,bernardino ca,2024 +abortion,"(""free women's clinic san bernardino ca"", ""free women's clinic san bernardino ca area"")",free women's clinic san bernardino ca,free women's clinic san bernardino ca area,5,3,google,2026-03-12 19:30:08.237034,abortion clinic san francisco,free women's clinic san francisco,bernardino ca,area +abortion,"(""Women's Community Clinic, Mission Street, San Francisco, CA"", ""Women's Community Clinic, Mission Street, San Francisco, California"")","Women's Community Clinic, Mission Street, San Francisco, CA","Women's Community Clinic, Mission Street, San Francisco, California",1,3,google,2026-03-12 19:30:09.499378,abortion clinic san francisco,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",California +abortion,"(""Women's Community Clinic, Mission Street, San Francisco, CA"", ""women's community clinic san francisco"")","Women's Community Clinic, Mission Street, San Francisco, CA",women's community clinic san francisco,2,3,google,2026-03-12 19:30:09.499378,abortion clinic san francisco,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",women's community clinic san francisco +abortion,"(""Women's Community Clinic, Mission Street, San Francisco, CA"", ""women's community clinic sf"")","Women's Community Clinic, Mission Street, San Francisco, CA",women's community clinic sf,3,3,google,2026-03-12 19:30:09.499378,abortion clinic san francisco,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",women's community clinic sf +abortion,"(""Women's Community Clinic, Mission Street, San Francisco, CA"", ""women's community clinic"")","Women's Community Clinic, Mission Street, San Francisco, CA",women's community clinic,4,3,google,2026-03-12 19:30:09.499378,abortion clinic san francisco,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",women's community clinic +abortion,"(""Women's Community Clinic, Mission Street, San Francisco, CA"", 'mission community center san francisco')","Women's Community Clinic, Mission Street, San Francisco, CA",mission community center san francisco,5,3,google,2026-03-12 19:30:09.499378,abortion clinic san francisco,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",mission community center san francisco +abortion,"(""Women's Community Clinic, Mission Street, San Francisco, CA"", ""women's clinic san francisco"")","Women's Community Clinic, Mission Street, San Francisco, CA",women's clinic san francisco,6,3,google,2026-03-12 19:30:09.499378,abortion clinic san francisco,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",women's clinic san francisco +abortion,"(""women's community clinic sf"", ""Women's Community Clinic, Mission Street, SF, CA"")",women's community clinic sf,"Women's Community Clinic, Mission Street, SF, CA",1,3,google,2026-03-12 19:30:10.436216,abortion clinic san francisco,women's community clinic san francisco,sf,"Women's Community Clinic, Mission Street, SF, CA" +abortion,"(""women's community clinic sf"", ""women's community clinic near me"")",women's community clinic sf,women's community clinic near me,2,3,google,2026-03-12 19:30:10.436216,abortion clinic san francisco,women's community clinic san francisco,sf,near me +abortion,"(""women's community clinic sf"", ""women's community clinic san francisco"")",women's community clinic sf,women's community clinic san francisco,3,3,google,2026-03-12 19:30:10.436216,abortion clinic san francisco,women's community clinic san francisco,sf,san francisco +abortion,"(""women's community clinic sf"", 'sf community clinic')",women's community clinic sf,sf community clinic,4,3,google,2026-03-12 19:30:10.436216,abortion clinic san francisco,women's community clinic san francisco,sf,sf +abortion,"(""women's community clinic sf"", ""women's clinic sf"")",women's community clinic sf,women's clinic sf,5,3,google,2026-03-12 19:30:10.436216,abortion clinic san francisco,women's community clinic san francisco,sf,sf +abortion,"(""women's community clinic"", ""women's community clinic sf"")",women's community clinic,women's community clinic sf,1,3,google,2026-03-12 19:30:11.510793,abortion clinic san francisco,women's community clinic san francisco,women's community,sf +abortion,"(""women's community clinic"", ""women's community clinic near me"")",women's community clinic,women's community clinic near me,2,3,google,2026-03-12 19:30:11.510793,abortion clinic san francisco,women's community clinic san francisco,women's community,near me +abortion,"(""women's community clinic"", ""women's community clinic photos"")",women's community clinic,women's community clinic photos,3,3,google,2026-03-12 19:30:11.510793,abortion clinic san francisco,women's community clinic san francisco,women's community,photos +abortion,"(""women's community clinic"", ""women's community clinic reviews"")",women's community clinic,women's community clinic reviews,4,3,google,2026-03-12 19:30:11.510793,abortion clinic san francisco,women's community clinic san francisco,women's community,reviews +abortion,"(""women's community clinic"", ""women's community clinic a program of healthright 360"")",women's community clinic,women's community clinic a program of healthright 360,5,3,google,2026-03-12 19:30:11.510793,abortion clinic san francisco,women's community clinic san francisco,women's community,a program of healthright 360 +abortion,"(""women's community clinic"", ""women's community health center"")",women's community clinic,women's community health center,6,3,google,2026-03-12 19:30:11.510793,abortion clinic san francisco,women's community clinic san francisco,women's community,health center +abortion,"(""women's community clinic"", ""women's health community clinic"")",women's community clinic,women's health community clinic,7,3,google,2026-03-12 19:30:11.510793,abortion clinic san francisco,women's community clinic san francisco,women's community,health +abortion,"(""women's community clinic"", ""community women's health clinic tauranga"")",women's community clinic,community women's health clinic tauranga,8,3,google,2026-03-12 19:30:11.510793,abortion clinic san francisco,women's community clinic san francisco,women's community,health tauranga +abortion,"(""women's community clinic"", ""christ community women's clinic"")",women's community clinic,christ community women's clinic,9,3,google,2026-03-12 19:30:11.510793,abortion clinic san francisco,women's community clinic san francisco,women's community,christ +abortion,"(""ucsf women's clinic"", ""ucsf women's clinic san francisco"")",ucsf women's clinic,ucsf women's clinic san francisco,1,3,google,2026-03-12 19:30:12.635164,abortion clinic san francisco,ucsf women's clinic san francisco,ucsf women's,san francisco +abortion,"(""ucsf women's clinic"", ""ucsf women's health center"")",ucsf women's clinic,ucsf women's health center,2,3,google,2026-03-12 19:30:12.635164,abortion clinic san francisco,ucsf women's clinic san francisco,ucsf women's,health center +abortion,"(""ucsf women's clinic"", ""ucsf women's hospital"")",ucsf women's clinic,ucsf women's hospital,3,3,google,2026-03-12 19:30:12.635164,abortion clinic san francisco,ucsf women's clinic san francisco,ucsf women's,hospital +abortion,"(""ucsf women's clinic"", ""ucsf women's health clinic"")",ucsf women's clinic,ucsf women's health clinic,4,3,google,2026-03-12 19:30:12.635164,abortion clinic san francisco,ucsf women's clinic san francisco,ucsf women's,health +abortion,"(""ucsf women's clinic"", ""ucsf women's health clinical research center"")",ucsf women's clinic,ucsf women's health clinical research center,5,3,google,2026-03-12 19:30:12.635164,abortion clinic san francisco,ucsf women's clinic san francisco,ucsf women's,health clinical research center +abortion,"(""ucsf women's clinic"", ""ucsf women's specialty clinic"")",ucsf women's clinic,ucsf women's specialty clinic,6,3,google,2026-03-12 19:30:12.635164,abortion clinic san francisco,ucsf women's clinic san francisco,ucsf women's,specialty +abortion,"(""ucsf women's clinic"", ""ucsf women's hiv clinic"")",ucsf women's clinic,ucsf women's hiv clinic,7,3,google,2026-03-12 19:30:12.635164,abortion clinic san francisco,ucsf women's clinic san francisco,ucsf women's,hiv +abortion,"(""ucsf women's clinic"", ""ucsf young women's clinic"")",ucsf women's clinic,ucsf young women's clinic,8,3,google,2026-03-12 19:30:12.635164,abortion clinic san francisco,ucsf women's clinic san francisco,ucsf women's,young +abortion,"(""ucsf women's clinic"", ""ucsf women's options clinic"")",ucsf women's clinic,ucsf women's options clinic,9,3,google,2026-03-12 19:30:12.635164,abortion clinic san francisco,ucsf women's clinic san francisco,ucsf women's,options +abortion,"(""ucsf women's center"", ""ucsf women's center for bladder and pelvic health"")",ucsf women's center,ucsf women's center for bladder and pelvic health,1,3,google,2026-03-12 19:30:13.860271,abortion clinic san francisco,ucsf women's clinic san francisco,center,for bladder and pelvic health +abortion,"(""ucsf women's center"", ""ucsf women's clinic"")",ucsf women's center,ucsf women's clinic,2,3,google,2026-03-12 19:30:13.860271,abortion clinic san francisco,ucsf women's clinic san francisco,center,clinic +abortion,"(""ucsf women's center"", ""ucsf women's clinic san francisco"")",ucsf women's center,ucsf women's clinic san francisco,3,3,google,2026-03-12 19:30:13.860271,abortion clinic san francisco,ucsf women's clinic san francisco,center,clinic san francisco +abortion,"(""ucsf women's center"", ""ucsf women's health center mount zion"")",ucsf women's center,ucsf women's health center mount zion,4,3,google,2026-03-12 19:30:13.860271,abortion clinic san francisco,ucsf women's clinic san francisco,center,health mount zion +abortion,"(""ucsf women's center"", ""ucsf women's health center"")",ucsf women's center,ucsf women's health center,5,3,google,2026-03-12 19:30:13.860271,abortion clinic san francisco,ucsf women's clinic san francisco,center,health +abortion,"(""ucsf women's center"", ""ucsf women's options center"")",ucsf women's center,ucsf women's options center,6,3,google,2026-03-12 19:30:13.860271,abortion clinic san francisco,ucsf women's clinic san francisco,center,options +abortion,"(""ucsf women's center"", ""ucsf women's resource center"")",ucsf women's center,ucsf women's resource center,7,3,google,2026-03-12 19:30:13.860271,abortion clinic san francisco,ucsf women's clinic san francisco,center,resource +abortion,"(""ucsf women's center"", ""ucsf women's options center photos"")",ucsf women's center,ucsf women's options center photos,8,3,google,2026-03-12 19:30:13.860271,abortion clinic san francisco,ucsf women's clinic san francisco,center,options photos +abortion,"(""ucsf women's center"", ""ucsf women's cancer center"")",ucsf women's center,ucsf women's cancer center,9,3,google,2026-03-12 19:30:13.860271,abortion clinic san francisco,ucsf women's clinic san francisco,center,cancer +abortion,"(""ucsf women's health clinic"", ""ucsf women's health center mount zion"")",ucsf women's health clinic,ucsf women's health center mount zion,1,3,google,2026-03-12 19:30:14.935716,abortion clinic san francisco,ucsf women's clinic san francisco,health,center mount zion +abortion,"(""ucsf women's health clinic"", ""ucsf women's health center"")",ucsf women's health clinic,ucsf women's health center,2,3,google,2026-03-12 19:30:14.935716,abortion clinic san francisco,ucsf women's clinic san francisco,health,center +abortion,"(""ucsf women's health clinic"", ""ucsf women's health center mount zion reviews"")",ucsf women's health clinic,ucsf women's health center mount zion reviews,3,3,google,2026-03-12 19:30:14.935716,abortion clinic san francisco,ucsf women's clinic san francisco,health,center mount zion reviews +abortion,"(""ucsf women's health clinic"", ""ucsf women's health center mount zion photos"")",ucsf women's health clinic,ucsf women's health center mount zion photos,4,3,google,2026-03-12 19:30:14.935716,abortion clinic san francisco,ucsf women's clinic san francisco,health,center mount zion photos +abortion,"(""ucsf women's health clinic"", ""ucsf women's health center san francisco ca"")",ucsf women's health clinic,ucsf women's health center san francisco ca,5,3,google,2026-03-12 19:30:14.935716,abortion clinic san francisco,ucsf women's clinic san francisco,health,center san francisco ca +abortion,"(""ucsf women's health clinic"", ""ucsf women's mental health clinic"")",ucsf women's health clinic,ucsf women's mental health clinic,6,3,google,2026-03-12 19:30:14.935716,abortion clinic san francisco,ucsf women's clinic san francisco,health,mental +abortion,"(""ucsf women's health clinic"", ""ucsf women's health primary care clinic"")",ucsf women's health clinic,ucsf women's health primary care clinic,7,3,google,2026-03-12 19:30:14.935716,abortion clinic san francisco,ucsf women's clinic san francisco,health,primary care +abortion,"(""ucsf women's health clinic"", ""ucsf mount zion women's health clinic"")",ucsf women's health clinic,ucsf mount zion women's health clinic,8,3,google,2026-03-12 19:30:14.935716,abortion clinic san francisco,ucsf women's clinic san francisco,health,mount zion +abortion,"(""ucsf women's health clinic"", ""ucsf women's health clinical research center"")",ucsf women's health clinic,ucsf women's health clinical research center,9,3,google,2026-03-12 19:30:14.935716,abortion clinic san francisco,ucsf women's clinic san francisco,health,clinical research center +abortion,"(""ucsf women's health center"", ""ucsf women's health center mount zion"")",ucsf women's health center,ucsf women's health center mount zion,1,3,google,2026-03-12 19:30:16.009907,abortion clinic san francisco,ucsf women's clinic san francisco,health center,mount zion +abortion,"(""ucsf women's health center"", ""ucsf women's health center mount zion reviews"")",ucsf women's health center,ucsf women's health center mount zion reviews,2,3,google,2026-03-12 19:30:16.009907,abortion clinic san francisco,ucsf women's clinic san francisco,health center,mount zion reviews +abortion,"(""ucsf women's health center"", ""ucsf women's health center san francisco ca"")",ucsf women's health center,ucsf women's health center san francisco ca,3,3,google,2026-03-12 19:30:16.009907,abortion clinic san francisco,ucsf women's clinic san francisco,health center,san francisco ca +abortion,"(""ucsf women's health center"", ""ucsf women's health center mount zion photos"")",ucsf women's health center,ucsf women's health center mount zion photos,4,3,google,2026-03-12 19:30:16.009907,abortion clinic san francisco,ucsf women's clinic san francisco,health center,mount zion photos +abortion,"(""ucsf women's health center"", ""ucsf women's health clinic"")",ucsf women's health center,ucsf women's health clinic,5,3,google,2026-03-12 19:30:16.009907,abortion clinic san francisco,ucsf women's clinic san francisco,health center,clinic +abortion,"(""ucsf women's health center"", ""ucsf women's health resource center"")",ucsf women's health center,ucsf women's health resource center,6,3,google,2026-03-12 19:30:16.009907,abortion clinic san francisco,ucsf women's clinic san francisco,health center,resource +abortion,"(""ucsf women's health center"", ""ucsf women's health primary care center"")",ucsf women's health center,ucsf women's health primary care center,7,3,google,2026-03-12 19:30:16.009907,abortion clinic san francisco,ucsf women's clinic san francisco,health center,primary care +abortion,"(""ucsf women's health center"", ""ucsf women's health clinical research center"")",ucsf women's health center,ucsf women's health clinical research center,8,3,google,2026-03-12 19:30:16.009907,abortion clinic san francisco,ucsf women's clinic san francisco,health center,clinical research +abortion,"(""ucsf women's health center"", ""ucsf women's health primary care"")",ucsf women's health center,ucsf women's health primary care,9,3,google,2026-03-12 19:30:16.009907,abortion clinic san francisco,ucsf women's clinic san francisco,health center,primary care +abortion,"(""women's clinic equity boost san francisco va medical center'"", ""women's options center san francisco ca"")",women's clinic equity boost san francisco va medical center',women's options center san francisco ca,1,3,google,2026-03-12 19:30:17.382847,abortion clinic san francisco,va women's clinic san francisco,equity boost medical center',options center ca +abortion,"(""women's clinic equity boost san francisco va medical center'"", ""women's clinic san francisco"")",women's clinic equity boost san francisco va medical center',women's clinic san francisco,2,3,google,2026-03-12 19:30:17.382847,abortion clinic san francisco,va women's clinic san francisco,equity boost medical center',equity boost medical center' +abortion,"(""women's clinic equity boost san francisco va medical center'"", ""women's options center at san francisco general hospital"")",women's clinic equity boost san francisco va medical center',women's options center at san francisco general hospital,3,3,google,2026-03-12 19:30:17.382847,abortion clinic san francisco,va women's clinic san francisco,equity boost medical center',options center at general hospital +abortion,"(""women's clinic equity boost san francisco va medical center'"", ""women's clinic sf"")",women's clinic equity boost san francisco va medical center',women's clinic sf,4,3,google,2026-03-12 19:30:17.382847,abortion clinic san francisco,va women's clinic san francisco,equity boost medical center',sf +abortion,"(""women's clinic equity boost san francisco va medical center'"", ""women's center san francisco"")",women's clinic equity boost san francisco va medical center',women's center san francisco,5,3,google,2026-03-12 19:30:17.382847,abortion clinic san francisco,va women's clinic san francisco,equity boost medical center',center +abortion,"(""va women's clinic near me"", ""va women's center near me"")",va women's clinic near me,va women's center near me,1,3,google,2026-03-12 19:30:18.721999,abortion clinic san francisco,va women's clinic san francisco,near me,center +abortion,"(""va women's clinic near me"", ""virginia women's center near mechanicsville va"")",va women's clinic near me,virginia women's center near mechanicsville va,2,3,google,2026-03-12 19:30:18.721999,abortion clinic san francisco,va women's clinic san francisco,near me,virginia center mechanicsville +abortion,"(""va women's clinic near me"", ""va women's clinic memphis tn"")",va women's clinic near me,va women's clinic memphis tn,3,3,google,2026-03-12 19:30:18.721999,abortion clinic san francisco,va women's clinic san francisco,near me,memphis tn +abortion,"(""va women's clinic near me"", ""virginia women's clinic mechanicsville"")",va women's clinic near me,virginia women's clinic mechanicsville,4,3,google,2026-03-12 19:30:18.721999,abortion clinic san francisco,va women's clinic san francisco,near me,virginia mechanicsville +abortion,"(""va women's clinic near me"", 'va medical clinic near me')",va women's clinic near me,va medical clinic near me,5,3,google,2026-03-12 19:30:18.721999,abortion clinic san francisco,va women's clinic san francisco,near me,medical +abortion,"(""va women's clinic near me"", 'va clinic near me')",va women's clinic near me,va clinic near me,6,3,google,2026-03-12 19:30:18.721999,abortion clinic san francisco,va women's clinic san francisco,near me,near me +abortion,"(""va women's clinic near me"", 'va walk-in clinic near me')",va women's clinic near me,va walk-in clinic near me,7,3,google,2026-03-12 19:30:18.721999,abortion clinic san francisco,va women's clinic san francisco,near me,walk-in +abortion,"(""va women's clinic near me"", 'va approved clinics near me')",va women's clinic near me,va approved clinics near me,8,3,google,2026-03-12 19:30:18.721999,abortion clinic san francisco,va women's clinic san francisco,near me,approved clinics +abortion,"(""va women's clinic near me"", ""va women's clinic phone number"")",va women's clinic near me,va women's clinic phone number,9,3,google,2026-03-12 19:30:18.721999,abortion clinic san francisco,va women's clinic san francisco,near me,phone number +abortion,"('va approved clinics near me', 'va approved doctors near me')",va approved clinics near me,va approved doctors near me,1,3,google,2026-03-12 19:30:19.916132,abortion clinic san francisco,va women's clinic san francisco,approved clinics near me,doctors +abortion,"('va approved clinics near me', 'va clinics near me')",va approved clinics near me,va clinics near me,2,3,google,2026-03-12 19:30:19.916132,abortion clinic san francisco,va women's clinic san francisco,approved clinics near me,approved clinics near me +abortion,"('va approved clinics near me', 'va clinic near me walk in')",va approved clinics near me,va clinic near me walk in,3,3,google,2026-03-12 19:30:19.916132,abortion clinic san francisco,va women's clinic san francisco,approved clinics near me,clinic walk in +abortion,"('va approved clinics near me', 'va clinic nearest me')",va approved clinics near me,va clinic nearest me,4,3,google,2026-03-12 19:30:19.916132,abortion clinic san francisco,va women's clinic san francisco,approved clinics near me,clinic nearest +abortion,"('va approved clinics near me', 'va approved urgent care clinics near me')",va approved clinics near me,va approved urgent care clinics near me,5,3,google,2026-03-12 19:30:19.916132,abortion clinic san francisco,va women's clinic san francisco,approved clinics near me,urgent care +abortion,"('va approved clinics near me', 'va medical clinic near me')",va approved clinics near me,va medical clinic near me,6,3,google,2026-03-12 19:30:19.916132,abortion clinic san francisco,va women's clinic san francisco,approved clinics near me,medical clinic +abortion,"('va approved clinics near me', 'va approved urgent care near me')",va approved clinics near me,va approved urgent care near me,7,3,google,2026-03-12 19:30:19.916132,abortion clinic san francisco,va women's clinic san francisco,approved clinics near me,urgent care +abortion,"('va approved clinics near me', 'va-approved urgent care locator')",va approved clinics near me,va-approved urgent care locator,8,3,google,2026-03-12 19:30:19.916132,abortion clinic san francisco,va women's clinic san francisco,approved clinics near me,va-approved urgent care locator +abortion,"('va doctors office near me', 'veterans doctors office near me')",va doctors office near me,veterans doctors office near me,1,3,google,2026-03-12 19:30:20.834114,abortion clinic san francisco,va women's clinic san francisco,doctors office near me,veterans +abortion,"('va doctors office near me', 'va medical office near me')",va doctors office near me,va medical office near me,2,3,google,2026-03-12 19:30:20.834114,abortion clinic san francisco,va women's clinic san francisco,doctors office near me,medical +abortion,"('va doctors office near me', 'va doctors near me')",va doctors office near me,va doctors near me,3,3,google,2026-03-12 19:30:20.834114,abortion clinic san francisco,va women's clinic san francisco,doctors office near me,doctors office near me +abortion,"('va doctors office near me', 'find a va doctor near me')",va doctors office near me,find a va doctor near me,4,3,google,2026-03-12 19:30:20.834114,abortion clinic san francisco,va women's clinic san francisco,doctors office near me,find a doctor +abortion,"('va doctors office near me', 'va primary care physician near me')",va doctors office near me,va primary care physician near me,5,3,google,2026-03-12 19:30:20.834114,abortion clinic san francisco,va women's clinic san francisco,doctors office near me,primary care physician +abortion,"('va doctors office near me', 'va approved doctors near me')",va doctors office near me,va approved doctors near me,6,3,google,2026-03-12 19:30:20.834114,abortion clinic san francisco,va women's clinic san francisco,doctors office near me,approved +abortion,"('va clinic near me', 'va clinic palo alto')",va clinic near me,va clinic palo alto,1,3,google,2026-03-12 19:30:21.891211,abortion clinic san francisco,va women's clinic san francisco,near me,palo alto +abortion,"('va clinic near me', 'va clinic san francisco')",va clinic near me,va clinic san francisco,2,3,google,2026-03-12 19:30:21.891211,abortion clinic san francisco,va women's clinic san francisco,near me,san francisco +abortion,"('va clinic near me', 'va clinic near me now')",va clinic near me,va clinic near me now,3,3,google,2026-03-12 19:30:21.891211,abortion clinic san francisco,va women's clinic san francisco,near me,now +abortion,"('va clinic near me', 'va clinic near me open now')",va clinic near me,va clinic near me open now,4,3,google,2026-03-12 19:30:21.891211,abortion clinic san francisco,va women's clinic san francisco,near me,open now +abortion,"('va clinic near me', 'va clinic near me phone number')",va clinic near me,va clinic near me phone number,5,3,google,2026-03-12 19:30:21.891211,abortion clinic san francisco,va women's clinic san francisco,near me,phone number +abortion,"('va clinic near me', 'va clinic near me within 20 mi')",va clinic near me,va clinic near me within 20 mi,6,3,google,2026-03-12 19:30:21.891211,abortion clinic san francisco,va women's clinic san francisco,near me,within 20 mi +abortion,"('va clinic near me', 'va clinic near me within 5 mi')",va clinic near me,va clinic near me within 5 mi,7,3,google,2026-03-12 19:30:21.891211,abortion clinic san francisco,va women's clinic san francisco,near me,within 5 mi +abortion,"('va clinic near me', 'va clinic near me location')",va clinic near me,va clinic near me location,8,3,google,2026-03-12 19:30:21.891211,abortion clinic san francisco,va women's clinic san francisco,near me,location +abortion,"('va clinic near me', 'va clinic near me jobs')",va clinic near me,va clinic near me jobs,9,3,google,2026-03-12 19:30:21.891211,abortion clinic san francisco,va women's clinic san francisco,near me,jobs +abortion,"('va animal clinic near me', 'vet clinic. near me')",va animal clinic near me,vet clinic. near me,1,3,google,2026-03-12 19:30:23.073563,abortion clinic san francisco,va women's clinic san francisco,animal near me,vet clinic. +abortion,"('va animal clinic near me', 'virginia animal clinic')",va animal clinic near me,virginia animal clinic,2,3,google,2026-03-12 19:30:23.073563,abortion clinic san francisco,va women's clinic san francisco,animal near me,virginia +abortion,"('va animal clinic near me', 'walk-in animal clinic near me')",va animal clinic near me,walk-in animal clinic near me,3,3,google,2026-03-12 19:30:23.073563,abortion clinic san francisco,va women's clinic san francisco,animal near me,walk-in +abortion,"('va animal clinic near me', 'va animal control')",va animal clinic near me,va animal control,4,3,google,2026-03-12 19:30:23.073563,abortion clinic san francisco,va women's clinic san francisco,animal near me,control +abortion,"(""va women's clinic st louis"", ""va women's clinic near st louis mo"")",va women's clinic st louis,va women's clinic near st louis mo,1,3,google,2026-03-12 19:30:24.320297,abortion clinic san francisco,va women's clinic san francisco,st louis,near mo +abortion,"(""va women's clinic st louis"", ""va women's clinic near me"")",va women's clinic st louis,va women's clinic near me,2,3,google,2026-03-12 19:30:24.320297,abortion clinic san francisco,va women's clinic san francisco,st louis,near me +abortion,"(""va women's clinic st louis"", ""va women's clinic phone number"")",va women's clinic st louis,va women's clinic phone number,3,3,google,2026-03-12 19:30:24.320297,abortion clinic san francisco,va women's clinic san francisco,st louis,phone number +abortion,"(""va women's clinic st louis"", 'va approved clinics near me')",va women's clinic st louis,va approved clinics near me,4,3,google,2026-03-12 19:30:24.320297,abortion clinic san francisco,va women's clinic san francisco,st louis,approved clinics near me +abortion,"(""va women's clinic st louis"", ""va women's clinic louisville ky"")",va women's clinic st louis,va women's clinic louisville ky,5,3,google,2026-03-12 19:30:24.320297,abortion clinic san francisco,va women's clinic san francisco,st louis,louisville ky +abortion,"(""va women's clinic st louis"", ""va women's center st francis"")",va women's clinic st louis,va women's center st francis,6,3,google,2026-03-12 19:30:24.320297,abortion clinic san francisco,va women's clinic san francisco,st louis,center francis +abortion,"(""va women's clinic seattle"", ""seattle va women's clinic"")",va women's clinic seattle,seattle va women's clinic,1,3,google,2026-03-12 19:30:25.329597,abortion clinic san francisco,va women's clinic san francisco,seattle,seattle +abortion,"(""va women's clinic seattle"", ""va women's clinic near me"")",va women's clinic seattle,va women's clinic near me,2,3,google,2026-03-12 19:30:25.329597,abortion clinic san francisco,va women's clinic san francisco,seattle,near me +abortion,"(""va women's clinic seattle"", 'va approved clinics near me')",va women's clinic seattle,va approved clinics near me,3,3,google,2026-03-12 19:30:25.329597,abortion clinic san francisco,va women's clinic san francisco,seattle,approved clinics near me +abortion,"(""va women's clinic seattle"", 'va clinic near me')",va women's clinic seattle,va clinic near me,4,3,google,2026-03-12 19:30:25.329597,abortion clinic san francisco,va women's clinic san francisco,seattle,near me +abortion,"(""va women's clinic seattle"", 'va medical clinic near me')",va women's clinic seattle,va medical clinic near me,5,3,google,2026-03-12 19:30:25.329597,abortion clinic san francisco,va women's clinic san francisco,seattle,medical near me +abortion,"(""va women's clinic seattle"", ""va women's clinic phone number"")",va women's clinic seattle,va women's clinic phone number,6,3,google,2026-03-12 19:30:25.329597,abortion clinic san francisco,va women's clinic san francisco,seattle,phone number +abortion,"(""va women's clinic seattle"", ""va women's clinic american lake"")",va women's clinic seattle,va women's clinic american lake,7,3,google,2026-03-12 19:30:25.329597,abortion clinic san francisco,va women's clinic san francisco,seattle,american lake +abortion,"(""va women's clinic seattle"", ""va women's clinic st louis"")",va women's clinic seattle,va women's clinic st louis,8,3,google,2026-03-12 19:30:25.329597,abortion clinic san francisco,va women's clinic san francisco,seattle,st louis +abortion,"(""va women's center st francis"", ""virginia women's center st francis hospital"")",va women's center st francis,virginia women's center st francis hospital,1,3,google,2026-03-12 19:30:26.676724,abortion clinic san francisco,va women's clinic san francisco,center st francis,virginia hospital +abortion,"(""va women's center st francis"", ""virginia women's center st francis boulevard"")",va women's center st francis,virginia women's center st francis boulevard,2,3,google,2026-03-12 19:30:26.676724,abortion clinic san francisco,va women's clinic san francisco,center st francis,virginia boulevard +abortion,"(""va women's center st francis"", ""virginia women's center - 13801 saint francis boulevard"")",va women's center st francis,virginia women's center - 13801 saint francis boulevard,3,3,google,2026-03-12 19:30:26.676724,abortion clinic san francisco,va women's clinic san francisco,center st francis,virginia - 13801 saint boulevard +abortion,"(""va women's center st francis"", ""virginia women's center saint francis boulevard midlothian va"")",va women's center st francis,virginia women's center saint francis boulevard midlothian va,4,3,google,2026-03-12 19:30:26.676724,abortion clinic san francisco,va women's clinic san francisco,center st francis,virginia saint boulevard midlothian +abortion,"(""va women's center st francis"", ""virginia women's center 13801 st francis blvd midlothian va 23114"")",va women's center st francis,virginia women's center 13801 st francis blvd midlothian va 23114,5,3,google,2026-03-12 19:30:26.676724,abortion clinic san francisco,va women's clinic san francisco,center st francis,virginia 13801 blvd midlothian 23114 +abortion,"(""va women's center st francis"", ""va women's center locations"")",va women's center st francis,va women's center locations,6,3,google,2026-03-12 19:30:26.676724,abortion clinic san francisco,va women's clinic san francisco,center st francis,locations +abortion,"(""va women's center st francis"", ""va women's center fax number"")",va women's center st francis,va women's center fax number,7,3,google,2026-03-12 19:30:26.676724,abortion clinic san francisco,va women's clinic san francisco,center st francis,fax number +abortion,"(""va women's center st francis"", ""virginia women's center st. francis"")",va women's center st francis,virginia women's center st. francis,8,3,google,2026-03-12 19:30:26.676724,abortion clinic san francisco,va women's clinic san francisco,center st francis,virginia st. +abortion,"(""women's golf lessons san francisco"", ""women's golf lessons san diego"")",women's golf lessons san francisco,women's golf lessons san diego,1,3,google,2026-03-12 19:30:27.680711,abortion clinic san francisco,women's golf clinic san francisco,lessons,diego +abortion,"(""women's golf lessons san francisco"", ""women's golf lessons san antonio"")",women's golf lessons san francisco,women's golf lessons san antonio,2,3,google,2026-03-12 19:30:27.680711,abortion clinic san francisco,women's golf clinic san francisco,lessons,antonio +abortion,"(""women's golf lessons san francisco"", ""women's golf lessons sacramento"")",women's golf lessons san francisco,women's golf lessons sacramento,3,3,google,2026-03-12 19:30:27.680711,abortion clinic san francisco,women's golf clinic san francisco,lessons,sacramento +abortion,"(""women's golf lessons san francisco"", ""women's golf lessons los angeles"")",women's golf lessons san francisco,women's golf lessons los angeles,4,3,google,2026-03-12 19:30:27.680711,abortion clinic san francisco,women's golf clinic san francisco,lessons,los angeles +abortion,"(""women's golf lessons san francisco"", ""women's golf lessons st louis"")",women's golf lessons san francisco,women's golf lessons st louis,5,3,google,2026-03-12 19:30:27.680711,abortion clinic san francisco,women's golf clinic san francisco,lessons,st louis +abortion,"(""women's golf clinic"", ""women's golf clinic near me"")",women's golf clinic,women's golf clinic near me,1,3,google,2026-03-12 19:30:29.016570,abortion clinic san francisco,women's golf clinic san francisco,women's golf,near me +abortion,"(""women's golf clinic"", ""women's golf clinics 2026"")",women's golf clinic,women's golf clinics 2026,2,3,google,2026-03-12 19:30:29.016570,abortion clinic san francisco,women's golf clinic san francisco,women's golf,clinics 2026 +abortion,"(""women's golf clinic"", ""women's golf clinics melbourne"")",women's golf clinic,women's golf clinics melbourne,3,3,google,2026-03-12 19:30:29.016570,abortion clinic san francisco,women's golf clinic san francisco,women's golf,clinics melbourne +abortion,"(""women's golf clinic"", ""women's golf clinics 2025"")",women's golf clinic,women's golf clinics 2025,4,3,google,2026-03-12 19:30:29.016570,abortion clinic san francisco,women's golf clinic san francisco,women's golf,clinics 2025 +abortion,"(""women's golf clinic"", ""women's golf clinics 2025 near me"")",women's golf clinic,women's golf clinics 2025 near me,5,3,google,2026-03-12 19:30:29.016570,abortion clinic san francisco,women's golf clinic san francisco,women's golf,clinics 2025 near me +abortion,"(""women's golf clinic"", ""women's golf clinic boston"")",women's golf clinic,women's golf clinic boston,6,3,google,2026-03-12 19:30:29.016570,abortion clinic san francisco,women's golf clinic san francisco,women's golf,boston +abortion,"(""women's golf clinic"", ""denver women's golf clinic"")",women's golf clinic,denver women's golf clinic,7,3,google,2026-03-12 19:30:29.016570,abortion clinic san francisco,women's golf clinic san francisco,women's golf,denver +abortion,"(""women's golf clinic"", ""women's golf clinic perth"")",women's golf clinic,women's golf clinic perth,8,3,google,2026-03-12 19:30:29.016570,abortion clinic san francisco,women's golf clinic san francisco,women's golf,perth +abortion,"(""women's golf clinic"", ""women's golf clinic ideas"")",women's golf clinic,women's golf clinic ideas,9,3,google,2026-03-12 19:30:29.016570,abortion clinic san francisco,women's golf clinic san francisco,women's golf,ideas +abortion,"(""women's golf clinic ideas"", ""women's wellness workshop ideas"")",women's golf clinic ideas,women's wellness workshop ideas,1,3,google,2026-03-12 19:30:30.013116,abortion clinic san francisco,women's golf clinic san francisco,ideas,wellness workshop +abortion,"(""women's golf clinic ideas"", 'ladies golf clinic ideas')",women's golf clinic ideas,ladies golf clinic ideas,2,3,google,2026-03-12 19:30:30.013116,abortion clinic san francisco,women's golf clinic san francisco,ideas,ladies +abortion,"(""women's golf clinic ideas"", ""women's golf clinic"")",women's golf clinic ideas,women's golf clinic,3,3,google,2026-03-12 19:30:30.013116,abortion clinic san francisco,women's golf clinic san francisco,ideas,ideas +abortion,"(""women's clinic sf general"", ""women's clinic general hospital sf"")",women's clinic sf general,women's clinic general hospital sf,1,3,google,2026-03-12 19:30:31.154738,abortion clinic san francisco,women's golf clinic san francisco,sf general,hospital +abortion,"(""women's clinic sf general"", ""women's clinic sf"")",women's clinic sf general,women's clinic sf,2,3,google,2026-03-12 19:30:31.154738,abortion clinic san francisco,women's golf clinic san francisco,sf general,sf general +abortion,"('abortion clinic near me open now within 8.1 km', 'abortion clinic near me now')",abortion clinic near me open now within 8.1 km,abortion clinic near me now,1,3,google,2026-03-12 19:30:32.481562,abortion clinic near me,abortion clinic near me open now,within 8.1 km,within 8.1 km +abortion,"('abortion clinic near me open now within 8.1 km', 'abortion clinic open on saturday near me')",abortion clinic near me open now within 8.1 km,abortion clinic open on saturday near me,2,3,google,2026-03-12 19:30:32.481562,abortion clinic near me,abortion clinic near me open now,within 8.1 km,on saturday +abortion,"('abortion clinic near me open now within 8.1 km', 'abortion clinic open near me')",abortion clinic near me open now within 8.1 km,abortion clinic open near me,3,3,google,2026-03-12 19:30:32.481562,abortion clinic near me,abortion clinic near me open now,within 8.1 km,within 8.1 km +abortion,"('abortion clinic near me open now within 8.1 km', 'abortion clinic near me for free')",abortion clinic near me open now within 8.1 km,abortion clinic near me for free,4,3,google,2026-03-12 19:30:32.481562,abortion clinic near me,abortion clinic near me open now,within 8.1 km,for free +abortion,"('abortion clinic near me open now within 8.1 km', 'abortion clinic near me open sunday')",abortion clinic near me open now within 8.1 km,abortion clinic near me open sunday,5,3,google,2026-03-12 19:30:32.481562,abortion clinic near me,abortion clinic near me open now,within 8.1 km,sunday +abortion,"('abortion clinic near me open now within 8.1 km', 'abortion clinic open on weekends near me')",abortion clinic near me open now within 8.1 km,abortion clinic open on weekends near me,6,3,google,2026-03-12 19:30:32.481562,abortion clinic near me,abortion clinic near me open now,within 8.1 km,on weekends +abortion,"('abortion clinic near me open now within 20 mi', 'abortion clinic near me now')",abortion clinic near me open now within 20 mi,abortion clinic near me now,1,3,google,2026-03-12 19:30:33.426302,abortion clinic near me,abortion clinic near me open now,within 20 mi,within 20 mi +abortion,"('abortion clinic near me open now within 20 mi', 'abortion clinic for free near me')",abortion clinic near me open now within 20 mi,abortion clinic for free near me,2,3,google,2026-03-12 19:30:33.426302,abortion clinic near me,abortion clinic near me open now,within 20 mi,for free +abortion,"('abortion clinic near me open now within 20 mi', 'abortion clinic open near me')",abortion clinic near me open now within 20 mi,abortion clinic open near me,3,3,google,2026-03-12 19:30:33.426302,abortion clinic near me,abortion clinic near me open now,within 20 mi,within 20 mi +abortion,"('abortion clinic near me open now within 20 mi', 'abortion clinic near me open on saturday')",abortion clinic near me open now within 20 mi,abortion clinic near me open on saturday,4,3,google,2026-03-12 19:30:33.426302,abortion clinic near me,abortion clinic near me open now,within 20 mi,on saturday +abortion,"('abortion clinic near me open now within 20 mi', 'abortion clinic near me 24 hours')",abortion clinic near me open now within 20 mi,abortion clinic near me 24 hours,5,3,google,2026-03-12 19:30:33.426302,abortion clinic near me,abortion clinic near me open now,within 20 mi,24 hours +abortion,"('abortion clinic near me open now within 20 mi', 'abortion clinic near me up to 20 weeks')",abortion clinic near me open now within 20 mi,abortion clinic near me up to 20 weeks,6,3,google,2026-03-12 19:30:33.426302,abortion clinic near me,abortion clinic near me open now,within 20 mi,up to weeks +abortion,"('abortion clinic near me open now within 20 mi', 'abortion clinic near me open sunday')",abortion clinic near me open now within 20 mi,abortion clinic near me open sunday,7,3,google,2026-03-12 19:30:33.426302,abortion clinic near me,abortion clinic near me open now,within 20 mi,sunday +abortion,"('abortion clinic near me open now within 5 mi', ""women's clinic near me open now within 5 mi"")",abortion clinic near me open now within 5 mi,women's clinic near me open now within 5 mi,1,3,google,2026-03-12 19:30:34.492886,abortion clinic near me,abortion clinic near me open now,within 5 mi,women's +abortion,"('abortion clinic near me open now within 5 mi', 'abortion clinic near me now')",abortion clinic near me open now within 5 mi,abortion clinic near me now,2,3,google,2026-03-12 19:30:34.492886,abortion clinic near me,abortion clinic near me open now,within 5 mi,within 5 mi +abortion,"('abortion clinic near me open now within 5 mi', 'abortion clinic open near me')",abortion clinic near me open now within 5 mi,abortion clinic open near me,3,3,google,2026-03-12 19:30:34.492886,abortion clinic near me,abortion clinic near me open now,within 5 mi,within 5 mi +abortion,"('abortion clinic near me open now within 5 mi', 'abortion clinic open on saturday near me')",abortion clinic near me open now within 5 mi,abortion clinic open on saturday near me,4,3,google,2026-03-12 19:30:34.492886,abortion clinic near me,abortion clinic near me open now,within 5 mi,on saturday +abortion,"('abortion clinic near me open now within 5 mi', 'abortion clinic near me open sunday')",abortion clinic near me open now within 5 mi,abortion clinic near me open sunday,5,3,google,2026-03-12 19:30:34.492886,abortion clinic near me,abortion clinic near me open now,within 5 mi,sunday +abortion,"('abortion clinic near me open now within 5 mi', 'abortion clinic open on weekends near me')",abortion clinic near me open now within 5 mi,abortion clinic open on weekends near me,6,3,google,2026-03-12 19:30:34.492886,abortion clinic near me,abortion clinic near me open now,within 5 mi,on weekends +abortion,"(""women's clinic near me open now"", ""women's clinic near me open now within 5 mi"")",women's clinic near me open now,women's clinic near me open now within 5 mi,1,3,google,2026-03-12 19:30:35.743757,abortion clinic near me,abortion clinic near me open now,women's,within 5 mi +abortion,"(""women's clinic near me open now"", 'women hospital near me open now')",women's clinic near me open now,women hospital near me open now,2,3,google,2026-03-12 19:30:35.743757,abortion clinic near me,abortion clinic near me open now,women's,women hospital +abortion,"(""women's clinic near me open now"", 'women doctor near me open now')",women's clinic near me open now,women doctor near me open now,3,3,google,2026-03-12 19:30:35.743757,abortion clinic near me,abortion clinic near me open now,women's,women doctor +abortion,"(""women's clinic near me open now"", 'women center near me open now')",women's clinic near me open now,women center near me open now,4,3,google,2026-03-12 19:30:35.743757,abortion clinic near me,abortion clinic near me open now,women's,women center +abortion,"(""women's clinic near me open now"", 'woman doctor near me open now')",women's clinic near me open now,woman doctor near me open now,5,3,google,2026-03-12 19:30:35.743757,abortion clinic near me,abortion clinic near me open now,women's,woman doctor +abortion,"(""women's clinic near me open now"", ""women's health clinic near me open now"")",women's clinic near me open now,women's health clinic near me open now,6,3,google,2026-03-12 19:30:35.743757,abortion clinic near me,abortion clinic near me open now,women's,health +abortion,"(""women's clinic near me open now"", ""free women's clinic near me open now"")",women's clinic near me open now,free women's clinic near me open now,7,3,google,2026-03-12 19:30:35.743757,abortion clinic near me,abortion clinic near me open now,women's,free +abortion,"(""women's clinic near me open now"", 'women specialist clinic near me open now')",women's clinic near me open now,women specialist clinic near me open now,8,3,google,2026-03-12 19:30:35.743757,abortion clinic near me,abortion clinic near me open now,women's,women specialist +abortion,"(""women's clinic near me open now"", ""walk in women's clinic near me open now"")",women's clinic near me open now,walk in women's clinic near me open now,9,3,google,2026-03-12 19:30:35.743757,abortion clinic near me,abortion clinic near me open now,women's,walk in +abortion,"('abortion hospital near me open now', 'abortion clinic near me open now')",abortion hospital near me open now,abortion clinic near me open now,1,3,google,2026-03-12 19:30:36.812156,abortion clinic near me,abortion clinic near me open now,hospital,clinic +abortion,"('abortion hospital near me open now', 'abortion clinic near me open now within 8.1 km')",abortion hospital near me open now,abortion clinic near me open now within 8.1 km,2,3,google,2026-03-12 19:30:36.812156,abortion clinic near me,abortion clinic near me open now,hospital,clinic within 8.1 km +abortion,"('abortion hospital near me open now', 'abortion clinic near me open now within 20 mi')",abortion hospital near me open now,abortion clinic near me open now within 20 mi,3,3,google,2026-03-12 19:30:36.812156,abortion clinic near me,abortion clinic near me open now,hospital,clinic within 20 mi +abortion,"('abortion hospital near me open now', 'abortion clinic near me open now within 5 mi')",abortion hospital near me open now,abortion clinic near me open now within 5 mi,4,3,google,2026-03-12 19:30:36.812156,abortion clinic near me,abortion clinic near me open now,hospital,clinic within 5 mi +abortion,"('abortion hospital near me open now', 'abortion clinic near me open today')",abortion hospital near me open now,abortion clinic near me open today,5,3,google,2026-03-12 19:30:36.812156,abortion clinic near me,abortion clinic near me open now,hospital,clinic today +abortion,"('abortion hospital near me open now', 'free abortion clinic near me open now')",abortion hospital near me open now,free abortion clinic near me open now,6,3,google,2026-03-12 19:30:36.812156,abortion clinic near me,abortion clinic near me open now,hospital,free clinic +abortion,"('abortion hospital near me open now', 'private abortion clinic near me open now')",abortion hospital near me open now,private abortion clinic near me open now,7,3,google,2026-03-12 19:30:36.812156,abortion clinic near me,abortion clinic near me open now,hospital,private clinic +abortion,"('abortion hospital near me open now', 'cheap abortion clinics near me open now')",abortion hospital near me open now,cheap abortion clinics near me open now,8,3,google,2026-03-12 19:30:36.812156,abortion clinic near me,abortion clinic near me open now,hospital,cheap clinics +abortion,"('abortion hospital near me open now', 'safe abortion clinic near me open now')",abortion hospital near me open now,safe abortion clinic near me open now,9,3,google,2026-03-12 19:30:36.812156,abortion clinic near me,abortion clinic near me open now,hospital,safe clinic +abortion,"('abortion doctor near me open now', 'abortion clinic near me open now')",abortion doctor near me open now,abortion clinic near me open now,1,3,google,2026-03-12 19:30:37.613107,abortion clinic near me,abortion clinic near me open now,doctor,clinic +abortion,"('abortion doctor near me open now', 'abortion clinic near me open now within 8.1 km')",abortion doctor near me open now,abortion clinic near me open now within 8.1 km,2,3,google,2026-03-12 19:30:37.613107,abortion clinic near me,abortion clinic near me open now,doctor,clinic within 8.1 km +abortion,"('abortion doctor near me open now', 'abortion clinic near me open now within 20 mi')",abortion doctor near me open now,abortion clinic near me open now within 20 mi,3,3,google,2026-03-12 19:30:37.613107,abortion clinic near me,abortion clinic near me open now,doctor,clinic within 20 mi +abortion,"('abortion doctor near me open now', 'abortion clinic near me open now within 5 mi')",abortion doctor near me open now,abortion clinic near me open now within 5 mi,4,3,google,2026-03-12 19:30:37.613107,abortion clinic near me,abortion clinic near me open now,doctor,clinic within 5 mi +abortion,"('abortion doctor near me open now', 'abortion clinic near me open today')",abortion doctor near me open now,abortion clinic near me open today,5,3,google,2026-03-12 19:30:37.613107,abortion clinic near me,abortion clinic near me open now,doctor,clinic today +abortion,"('abortion doctor near me open now', 'free abortion clinic near me open now')",abortion doctor near me open now,free abortion clinic near me open now,6,3,google,2026-03-12 19:30:37.613107,abortion clinic near me,abortion clinic near me open now,doctor,free clinic +abortion,"('abortion doctor near me open now', 'private abortion clinic near me open now')",abortion doctor near me open now,private abortion clinic near me open now,7,3,google,2026-03-12 19:30:37.613107,abortion clinic near me,abortion clinic near me open now,doctor,private clinic +abortion,"('abortion doctor near me open now', 'cheap abortion clinics near me open now')",abortion doctor near me open now,cheap abortion clinics near me open now,8,3,google,2026-03-12 19:30:37.613107,abortion clinic near me,abortion clinic near me open now,doctor,cheap clinics +abortion,"('abortion doctor near me open now', 'safe abortion clinic near me open now')",abortion doctor near me open now,safe abortion clinic near me open now,9,3,google,2026-03-12 19:30:37.613107,abortion clinic near me,abortion clinic near me open now,doctor,safe clinic +abortion,"('abortion centers near me open now', 'abortion clinic near me open now')",abortion centers near me open now,abortion clinic near me open now,1,3,google,2026-03-12 19:30:38.904958,abortion clinic near me,abortion clinic near me open now,centers,clinic +abortion,"('abortion centers near me open now', 'abortion clinic near me open now within 8.1 km')",abortion centers near me open now,abortion clinic near me open now within 8.1 km,2,3,google,2026-03-12 19:30:38.904958,abortion clinic near me,abortion clinic near me open now,centers,clinic within 8.1 km +abortion,"('abortion centers near me open now', 'abortion services near me open now')",abortion centers near me open now,abortion services near me open now,3,3,google,2026-03-12 19:30:38.904958,abortion clinic near me,abortion clinic near me open now,centers,services +abortion,"('abortion centers near me open now', 'abortion clinic near me open now within 20 mi')",abortion centers near me open now,abortion clinic near me open now within 20 mi,4,3,google,2026-03-12 19:30:38.904958,abortion clinic near me,abortion clinic near me open now,centers,clinic within 20 mi +abortion,"('abortion centers near me open now', 'abortion clinic near me open now within 5 mi')",abortion centers near me open now,abortion clinic near me open now within 5 mi,5,3,google,2026-03-12 19:30:38.904958,abortion clinic near me,abortion clinic near me open now,centers,clinic within 5 mi +abortion,"('abortion centers near me open now', 'free abortion center near me open now')",abortion centers near me open now,free abortion center near me open now,6,3,google,2026-03-12 19:30:38.904958,abortion clinic near me,abortion clinic near me open now,centers,free center +abortion,"('abortion centers near me open now', 'abortion clinic near me open today')",abortion centers near me open now,abortion clinic near me open today,7,3,google,2026-03-12 19:30:38.904958,abortion clinic near me,abortion clinic near me open now,centers,clinic today +abortion,"('abortion centers near me open now', 'private abortion clinic near me open now')",abortion centers near me open now,private abortion clinic near me open now,8,3,google,2026-03-12 19:30:38.904958,abortion clinic near me,abortion clinic near me open now,centers,private clinic +abortion,"('abortion centers near me open now', 'cheap abortion clinics near me open now')",abortion centers near me open now,cheap abortion clinics near me open now,9,3,google,2026-03-12 19:30:38.904958,abortion clinic near me,abortion clinic near me open now,centers,cheap clinics +abortion,"('abortion services near me open now', 'abortion clinic near me open now')",abortion services near me open now,abortion clinic near me open now,1,3,google,2026-03-12 19:30:40.333387,abortion clinic near me,abortion clinic near me open now,services,clinic +abortion,"('abortion services near me open now', 'abortion center near me open now')",abortion services near me open now,abortion center near me open now,2,3,google,2026-03-12 19:30:40.333387,abortion clinic near me,abortion clinic near me open now,services,center +abortion,"('abortion services near me open now', 'abortion clinic near me open now within 8.1 km')",abortion services near me open now,abortion clinic near me open now within 8.1 km,3,3,google,2026-03-12 19:30:40.333387,abortion clinic near me,abortion clinic near me open now,services,clinic within 8.1 km +abortion,"('abortion services near me open now', 'abortion clinic near me open now within 20 mi')",abortion services near me open now,abortion clinic near me open now within 20 mi,4,3,google,2026-03-12 19:30:40.333387,abortion clinic near me,abortion clinic near me open now,services,clinic within 20 mi +abortion,"('abortion services near me open now', 'abortion clinic near me open now within 5 mi')",abortion services near me open now,abortion clinic near me open now within 5 mi,5,3,google,2026-03-12 19:30:40.333387,abortion clinic near me,abortion clinic near me open now,services,clinic within 5 mi +abortion,"('abortion services near me open now', 'abortion clinic near me open today')",abortion services near me open now,abortion clinic near me open today,6,3,google,2026-03-12 19:30:40.333387,abortion clinic near me,abortion clinic near me open now,services,clinic today +abortion,"('abortion services near me open now', 'free abortion clinic near me open now')",abortion services near me open now,free abortion clinic near me open now,7,3,google,2026-03-12 19:30:40.333387,abortion clinic near me,abortion clinic near me open now,services,free clinic +abortion,"('abortion services near me open now', 'private abortion clinic near me open now')",abortion services near me open now,private abortion clinic near me open now,8,3,google,2026-03-12 19:30:40.333387,abortion clinic near me,abortion clinic near me open now,services,private clinic +abortion,"('abortion services near me open now', 'cheap abortion clinics near me open now')",abortion services near me open now,cheap abortion clinics near me open now,9,3,google,2026-03-12 19:30:40.333387,abortion clinic near me,abortion clinic near me open now,services,cheap clinics +abortion,"(""women's clinic near me open now within 5 mi"", ""women's clinic open near me"")",women's clinic near me open now within 5 mi,women's clinic open near me,1,3,google,2026-03-12 19:30:41.172512,abortion clinic near me,abortion clinic near me open now,women's within 5 mi,women's within 5 mi +abortion,"(""women's clinic near me open now within 5 mi"", ""24 hour women's clinic near me"")",women's clinic near me open now within 5 mi,24 hour women's clinic near me,2,3,google,2026-03-12 19:30:41.172512,abortion clinic near me,abortion clinic near me open now,women's within 5 mi,24 hour +abortion,"(""women's clinic near me open now within 5 mi"", ""women's clinic near me no insurance"")",women's clinic near me open now within 5 mi,women's clinic near me no insurance,3,3,google,2026-03-12 19:30:41.172512,abortion clinic near me,abortion clinic near me open now,women's within 5 mi,no insurance +abortion,"(""women's clinic near me open now within 5 mi"", ""women's clinic near me open on weekends"")",women's clinic near me open now within 5 mi,women's clinic near me open on weekends,4,3,google,2026-03-12 19:30:41.172512,abortion clinic near me,abortion clinic near me open now,women's within 5 mi,on weekends +abortion,"(""women's clinic near me open now within 5 mi"", ""women's clinic open on saturday near me"")",women's clinic near me open now within 5 mi,women's clinic open on saturday near me,5,3,google,2026-03-12 19:30:41.172512,abortion clinic near me,abortion clinic near me open now,women's within 5 mi,on saturday +abortion,"('abortion clinic near me prices open now', 'abortion clinic near me price')",abortion clinic near me prices open now,abortion clinic near me price,1,3,google,2026-03-12 19:30:42.589451,abortion clinic near me,abortion clinic near me prices,open now,price +abortion,"('abortion clinic near me prices open now', 'abortion clinic near me now')",abortion clinic near me prices open now,abortion clinic near me now,2,3,google,2026-03-12 19:30:42.589451,abortion clinic near me,abortion clinic near me prices,open now,open now +abortion,"('abortion clinic near me prices open now', 'abortion clinic near me for free')",abortion clinic near me prices open now,abortion clinic near me for free,3,3,google,2026-03-12 19:30:42.589451,abortion clinic near me,abortion clinic near me prices,open now,for free +abortion,"('abortion clinic near me prices open now', 'abortion clinic open near me')",abortion clinic near me prices open now,abortion clinic open near me,4,3,google,2026-03-12 19:30:42.589451,abortion clinic near me,abortion clinic near me prices,open now,open now +abortion,"('abortion clinic near me prices open now', 'abortion clinic near me open on saturday')",abortion clinic near me prices open now,abortion clinic near me open on saturday,5,3,google,2026-03-12 19:30:42.589451,abortion clinic near me,abortion clinic near me prices,open now,on saturday +abortion,"('abortion clinic near me prices open now', 'abortion clinic near me how much')",abortion clinic near me prices open now,abortion clinic near me how much,6,3,google,2026-03-12 19:30:42.589451,abortion clinic near me,abortion clinic near me prices,open now,how much +abortion,"('cat abortion clinic near me prices', 'cat abortion clinic near me')",cat abortion clinic near me prices,cat abortion clinic near me,1,3,google,2026-03-12 19:30:43.776704,abortion clinic near me,abortion clinic near me prices,cat,cat +abortion,"('abortion clinics near me and prices within 8.1 km', 'abortion clinic near me and prices')",abortion clinics near me and prices within 8.1 km,abortion clinic near me and prices,1,3,google,2026-03-12 19:30:44.786268,abortion clinic near me,abortion clinic near me prices,clinics and within 8.1 km,clinic +abortion,"('abortion clinics near me and prices within 8.1 km', 'abortion clinic near me for free')",abortion clinics near me and prices within 8.1 km,abortion clinic near me for free,2,3,google,2026-03-12 19:30:44.786268,abortion clinic near me,abortion clinic near me prices,clinics and within 8.1 km,clinic for free +abortion,"('abortion clinics near me and prices within 8.1 km', 'abortion clinic near me now')",abortion clinics near me and prices within 8.1 km,abortion clinic near me now,3,3,google,2026-03-12 19:30:44.786268,abortion clinic near me,abortion clinic near me prices,clinics and within 8.1 km,clinic now +abortion,"('abortion clinics near me and prices within 8.1 km', 'abortion clinics near me cost')",abortion clinics near me and prices within 8.1 km,abortion clinics near me cost,4,3,google,2026-03-12 19:30:44.786268,abortion clinic near me,abortion clinic near me prices,clinics and within 8.1 km,cost +abortion,"('abortion clinics near me and prices within 8.1 km', 'abortion clinics near me that accept insurance')",abortion clinics near me and prices within 8.1 km,abortion clinics near me that accept insurance,5,3,google,2026-03-12 19:30:44.786268,abortion clinic near me,abortion clinic near me prices,clinics and within 8.1 km,that accept insurance +abortion,"('abortion clinics near me and prices within 32.2 km', 'abortion clinics near me and prices')",abortion clinics near me and prices within 32.2 km,abortion clinics near me and prices,1,3,google,2026-03-12 19:30:45.693120,abortion clinic near me,abortion clinic near me prices,clinics and within 32.2 km,clinics and within 32.2 km +abortion,"('abortion clinics near me and prices within 32.2 km', 'abortion clinics near me cost')",abortion clinics near me and prices within 32.2 km,abortion clinics near me cost,2,3,google,2026-03-12 19:30:45.693120,abortion clinic near me,abortion clinic near me prices,clinics and within 32.2 km,cost +abortion,"('abortion clinics near me and prices within 32.2 km', 'abortion clinics near me free')",abortion clinics near me and prices within 32.2 km,abortion clinics near me free,3,3,google,2026-03-12 19:30:45.693120,abortion clinic near me,abortion clinic near me prices,clinics and within 32.2 km,free +abortion,"('abortion clinics near me and prices within 32.2 km', 'abortion clinics near me now')",abortion clinics near me and prices within 32.2 km,abortion clinics near me now,4,3,google,2026-03-12 19:30:45.693120,abortion clinic near me,abortion clinic near me prices,clinics and within 32.2 km,now +abortion,"('abortion clinics near me and prices within 32.2 km', 'abortion clinic near me up to 20 weeks')",abortion clinics near me and prices within 32.2 km,abortion clinic near me up to 20 weeks,5,3,google,2026-03-12 19:30:45.693120,abortion clinic near me,abortion clinic near me prices,clinics and within 32.2 km,clinic up to 20 weeks +abortion,"('abortion clinic near me low cost', 'abortion clinic near me and prices')",abortion clinic near me low cost,abortion clinic near me and prices,1,3,google,2026-03-12 19:30:46.793139,abortion clinic near me,abortion clinic near me prices,low cost,and prices +abortion,"('abortion clinic near me low cost', 'abortion clinic near me for free')",abortion clinic near me low cost,abortion clinic near me for free,2,3,google,2026-03-12 19:30:46.793139,abortion clinic near me,abortion clinic near me prices,low cost,for free +abortion,"('abortion clinic near me low cost', 'cheap abortion clinics near me')",abortion clinic near me low cost,cheap abortion clinics near me,3,3,google,2026-03-12 19:30:46.793139,abortion clinic near me,abortion clinic near me prices,low cost,cheap clinics +abortion,"('abortion clinic near me low cost', 'abortion clinic near me how much')",abortion clinic near me low cost,abortion clinic near me how much,4,3,google,2026-03-12 19:30:46.793139,abortion clinic near me,abortion clinic near me prices,low cost,how much +abortion,"('abortion clinic near me low cost', 'abortion clinic near me cost')",abortion clinic near me low cost,abortion clinic near me cost,5,3,google,2026-03-12 19:30:46.793139,abortion clinic near me,abortion clinic near me prices,low cost,low cost +abortion,"('abortion clinic near me low cost', 'abortion clinic near me that accept insurance')",abortion clinic near me low cost,abortion clinic near me that accept insurance,6,3,google,2026-03-12 19:30:46.793139,abortion clinic near me,abortion clinic near me prices,low cost,that accept insurance +abortion,"(""women's clinic near me low cost"", ""low cost women's health clinic near me"")",women's clinic near me low cost,low cost women's health clinic near me,1,3,google,2026-03-12 19:30:47.682115,abortion clinic near me,abortion clinic near me prices,women's low cost,health +abortion,"(""women's clinic near me low cost"", ""free or low cost women's clinic near me"")",women's clinic near me low cost,free or low cost women's clinic near me,2,3,google,2026-03-12 19:30:47.682115,abortion clinic near me,abortion clinic near me prices,women's low cost,free or +abortion,"(""women's clinic near me low cost"", ""women's clinic near me no insurance"")",women's clinic near me low cost,women's clinic near me no insurance,3,3,google,2026-03-12 19:30:47.682115,abortion clinic near me,abortion clinic near me prices,women's low cost,no insurance +abortion,"(""women's clinic near me low cost"", 'list of free clinics near me')",women's clinic near me low cost,list of free clinics near me,4,3,google,2026-03-12 19:30:47.682115,abortion clinic near me,abortion clinic near me prices,women's low cost,list of free clinics +abortion,"('abortion clinic near me cost', 'abortion clinic near me prices open now')",abortion clinic near me cost,abortion clinic near me prices open now,1,3,google,2026-03-12 19:30:49.090376,abortion clinic near me,abortion clinic near me prices,cost,prices open now +abortion,"('abortion clinic near me cost', 'abortion clinic near me low cost')",abortion clinic near me cost,abortion clinic near me low cost,2,3,google,2026-03-12 19:30:49.090376,abortion clinic near me,abortion clinic near me prices,cost,low +abortion,"('abortion clinic near me cost', ""women's clinic near me low cost"")",abortion clinic near me cost,women's clinic near me low cost,3,3,google,2026-03-12 19:30:49.090376,abortion clinic near me,abortion clinic near me prices,cost,women's low +abortion,"('abortion clinic near me cost', 'cat abortion clinic near me prices')",abortion clinic near me cost,cat abortion clinic near me prices,4,3,google,2026-03-12 19:30:49.090376,abortion clinic near me,abortion clinic near me prices,cost,cat prices +abortion,"('abortion clinic near me cost', 'abortion clinics near me and prices within 8.1 km')",abortion clinic near me cost,abortion clinics near me and prices within 8.1 km,5,3,google,2026-03-12 19:30:49.090376,abortion clinic near me,abortion clinic near me prices,cost,clinics and prices within 8.1 km +abortion,"('abortion clinic near me cost', 'abortion clinics near me and prices within 32.2 km')",abortion clinic near me cost,abortion clinics near me and prices within 32.2 km,6,3,google,2026-03-12 19:30:49.090376,abortion clinic near me,abortion clinic near me prices,cost,clinics and prices within 32.2 km +abortion,"('abortion clinic near me cost', 'no cost abortion clinic near me')",abortion clinic near me cost,no cost abortion clinic near me,7,3,google,2026-03-12 19:30:49.090376,abortion clinic near me,abortion clinic near me prices,cost,no +abortion,"('abortion clinic near me cost', 'abortion clinic near me for free')",abortion clinic near me cost,abortion clinic near me for free,8,3,google,2026-03-12 19:30:49.090376,abortion clinic near me,abortion clinic near me prices,cost,for free +abortion,"('abortion clinic near me cost', 'abortion clinic near me and prices')",abortion clinic near me cost,abortion clinic near me and prices,9,3,google,2026-03-12 19:30:49.090376,abortion clinic near me,abortion clinic near me prices,cost,and prices +abortion,"('abortion clinic near me how much', 'abortion clinic near me prices')",abortion clinic near me how much,abortion clinic near me prices,1,3,google,2026-03-12 19:30:50.599066,abortion clinic near me,abortion clinic near me prices,how much,prices +abortion,"('abortion clinic near me how much', 'abortion clinic near me cost')",abortion clinic near me how much,abortion clinic near me cost,2,3,google,2026-03-12 19:30:50.599066,abortion clinic near me,abortion clinic near me prices,how much,cost +abortion,"('women clinic near me for free', ""women's clinic near me free ultrasound"")",women clinic near me for free,women's clinic near me free ultrasound,1,3,google,2026-03-12 19:30:51.837392,abortion clinic near me,abortion clinic near me for free,women,women's ultrasound +abortion,"('women clinic near me for free', ""women's center near me free ultrasound"")",women clinic near me for free,women's center near me free ultrasound,2,3,google,2026-03-12 19:30:51.837392,abortion clinic near me,abortion clinic near me for free,women,women's center ultrasound +abortion,"('women clinic near me for free', 'women center near me free')",women clinic near me for free,women center near me free,3,3,google,2026-03-12 19:30:51.837392,abortion clinic near me,abortion clinic near me for free,women,center +abortion,"('women clinic near me for free', ""women's health clinic near me free"")",women clinic near me for free,women's health clinic near me free,4,3,google,2026-03-12 19:30:51.837392,abortion clinic near me,abortion clinic near me for free,women,women's health +abortion,"('women clinic near me for free', ""free women's clinic near me no insurance"")",women clinic near me for free,free women's clinic near me no insurance,5,3,google,2026-03-12 19:30:51.837392,abortion clinic near me,abortion clinic near me for free,women,women's no insurance +abortion,"('women clinic near me for free', ""free women's clinic near me open now"")",women clinic near me for free,free women's clinic near me open now,6,3,google,2026-03-12 19:30:51.837392,abortion clinic near me,abortion clinic near me for free,women,women's open now +abortion,"('women clinic near me for free', ""free women's clinic near me within 5 mi"")",women clinic near me for free,free women's clinic near me within 5 mi,7,3,google,2026-03-12 19:30:51.837392,abortion clinic near me,abortion clinic near me for free,women,women's within 5 mi +abortion,"('women clinic near me for free', ""free women's clinic near me walk in"")",women clinic near me for free,free women's clinic near me walk in,8,3,google,2026-03-12 19:30:51.837392,abortion clinic near me,abortion clinic near me for free,women,women's walk in +abortion,"('women clinic near me for free', ""free women's clinic near me within 1 mi"")",women clinic near me for free,free women's clinic near me within 1 mi,9,3,google,2026-03-12 19:30:51.837392,abortion clinic near me,abortion clinic near me for free,women,women's within 1 mi +abortion,"(""women's clinic near me free ultrasound"", ""women's center near me free ultrasound"")",women's clinic near me free ultrasound,women's center near me free ultrasound,1,3,google,2026-03-12 19:30:53.269662,abortion clinic near me,abortion clinic near me for free,women's ultrasound,center +abortion,"(""women's clinic near me free ultrasound"", ""women's clinic near me for ultrasound"")",women's clinic near me free ultrasound,women's clinic near me for ultrasound,2,3,google,2026-03-12 19:30:53.269662,abortion clinic near me,abortion clinic near me for free,women's ultrasound,for +abortion,"(""women's clinic near me free ultrasound"", 'free ultrasound clinic near me')",women's clinic near me free ultrasound,free ultrasound clinic near me,3,3,google,2026-03-12 19:30:53.269662,abortion clinic near me,abortion clinic near me for free,women's ultrasound,women's ultrasound +abortion,"(""women's clinic near me free ultrasound"", 'where can i go get a free ultrasound')",women's clinic near me free ultrasound,where can i go get a free ultrasound,4,3,google,2026-03-12 19:30:53.269662,abortion clinic near me,abortion clinic near me for free,women's ultrasound,where can i go get a +abortion,"(""women's clinic near me free ultrasound"", ""women's free ultrasound"")",women's clinic near me free ultrasound,women's free ultrasound,5,3,google,2026-03-12 19:30:53.269662,abortion clinic near me,abortion clinic near me for free,women's ultrasound,women's ultrasound +abortion,"('abortion pill clinic near me free', 'abortion clinics near me free')",abortion pill clinic near me free,abortion clinics near me free,1,3,google,2026-03-12 19:30:54.718753,abortion clinic near me,abortion clinic near me for free,pill,clinics +abortion,"(""women's center near me free ultrasound"", ""women's clinic near me free ultrasound"")",women's center near me free ultrasound,women's clinic near me free ultrasound,1,3,google,2026-03-12 19:30:55.552294,abortion clinic near me,abortion clinic near me for free,women's center ultrasound,clinic +abortion,"(""women's center near me free ultrasound"", 'where can i go get a free ultrasound')",women's center near me free ultrasound,where can i go get a free ultrasound,2,3,google,2026-03-12 19:30:55.552294,abortion clinic near me,abortion clinic near me for free,women's center ultrasound,where can i go get a +abortion,"(""women's center near me free ultrasound"", 'where can i get an ultrasound near me for free')",women's center near me free ultrasound,where can i get an ultrasound near me for free,3,3,google,2026-03-12 19:30:55.552294,abortion clinic near me,abortion clinic near me for free,women's center ultrasound,where can i get an for +abortion,"(""women's center near me free ultrasound"", ""women's center ultrasound"")",women's center near me free ultrasound,women's center ultrasound,4,3,google,2026-03-12 19:30:55.552294,abortion clinic near me,abortion clinic near me for free,women's center ultrasound,women's center ultrasound +abortion,"(""women's center near me free ultrasound"", ""women's free ultrasound"")",women's center near me free ultrasound,women's free ultrasound,5,3,google,2026-03-12 19:30:55.552294,abortion clinic near me,abortion clinic near me for free,women's center ultrasound,women's center ultrasound +abortion,"(""women's center near me free ultrasound"", ""women's health center free ultrasound"")",women's center near me free ultrasound,women's health center free ultrasound,6,3,google,2026-03-12 19:30:55.552294,abortion clinic near me,abortion clinic near me for free,women's center ultrasound,health +abortion,"('women center near me free', ""women's center near me free ultrasound"")",women center near me free,women's center near me free ultrasound,1,3,google,2026-03-12 19:30:56.459842,abortion clinic near me,abortion clinic near me for free,women center,women's ultrasound +abortion,"('women center near me free', 'women clinic near me free')",women center near me free,women clinic near me free,2,3,google,2026-03-12 19:30:56.459842,abortion clinic near me,abortion clinic near me for free,women center,clinic +abortion,"('women center near me free', ""women's clinic near me free ultrasound"")",women center near me free,women's clinic near me free ultrasound,3,3,google,2026-03-12 19:30:56.459842,abortion clinic near me,abortion clinic near me for free,women center,women's clinic ultrasound +abortion,"('women center near me free', ""women's health clinic near me free"")",women center near me free,women's health clinic near me free,4,3,google,2026-03-12 19:30:56.459842,abortion clinic near me,abortion clinic near me for free,women center,women's health clinic +abortion,"('women center near me free', ""walk in women's clinic near me free"")",women center near me free,walk in women's clinic near me free,5,3,google,2026-03-12 19:30:56.459842,abortion clinic near me,abortion clinic near me for free,women center,walk in women's clinic +abortion,"('women center near me free', ""free women's health center near me"")",women center near me free,free women's health center near me,6,3,google,2026-03-12 19:30:56.459842,abortion clinic near me,abortion clinic near me for free,women center,women's health +abortion,"('women center near me free', ""free women's donation center near me"")",women center near me free,free women's donation center near me,7,3,google,2026-03-12 19:30:56.459842,abortion clinic near me,abortion clinic near me for free,women center,women's donation +abortion,"('women center near me free', ""free women's pregnancy center near me"")",women center near me free,free women's pregnancy center near me,8,3,google,2026-03-12 19:30:56.459842,abortion clinic near me,abortion clinic near me for free,women center,women's pregnancy +abortion,"('women center near me free', ""free women's care center near me"")",women center near me free,free women's care center near me,9,3,google,2026-03-12 19:30:56.459842,abortion clinic near me,abortion clinic near me for free,women center,women's care +abortion,"('free abortion clinic near me open now', ""free women's clinic near me open now"")",free abortion clinic near me open now,free women's clinic near me open now,1,3,google,2026-03-12 19:30:57.432466,abortion clinic near me,abortion clinic near me for free,open now,women's +abortion,"('free abortion clinic near me open now', ""free women's health clinic near me open now"")",free abortion clinic near me open now,free women's health clinic near me open now,2,3,google,2026-03-12 19:30:57.432466,abortion clinic near me,abortion clinic near me for free,open now,women's health +abortion,"('free abortion clinic near me open now', 'free abortion clinics near me')",free abortion clinic near me open now,free abortion clinics near me,3,3,google,2026-03-12 19:30:57.432466,abortion clinic near me,abortion clinic near me for free,open now,clinics +abortion,"('free abortion clinic near me open now', 'free abortion center near me')",free abortion clinic near me open now,free abortion center near me,4,3,google,2026-03-12 19:30:57.432466,abortion clinic near me,abortion clinic near me for free,open now,center +abortion,"('free abortion clinic near me open now', 'free abortion clinics near fort lauderdale fl')",free abortion clinic near me open now,free abortion clinics near fort lauderdale fl,5,3,google,2026-03-12 19:30:57.432466,abortion clinic near me,abortion clinic near me for free,open now,clinics fort lauderdale fl +abortion,"('free abortion clinic near me volunteer', 'volunteer at abortion clinic near me')",free abortion clinic near me volunteer,volunteer at abortion clinic near me,1,3,google,2026-03-12 19:30:58.655281,abortion clinic near me,abortion clinic near me for free,volunteer,at +abortion,"('free abortion clinic near me volunteer', 'free abortion clinic near me')",free abortion clinic near me volunteer,free abortion clinic near me,2,3,google,2026-03-12 19:30:58.655281,abortion clinic near me,abortion clinic near me for free,volunteer,volunteer +abortion,"('free abortion clinic near me volunteer', 'abortion clinic volunteer opportunities near me')",free abortion clinic near me volunteer,abortion clinic volunteer opportunities near me,3,3,google,2026-03-12 19:30:58.655281,abortion clinic near me,abortion clinic near me for free,volunteer,opportunities +abortion,"('free abortion clinic near me within 5 mi', ""free women's clinic near me within 5 mi"")",free abortion clinic near me within 5 mi,free women's clinic near me within 5 mi,1,3,google,2026-03-12 19:31:00.063954,abortion clinic near me,abortion clinic near me for free,within 5 mi,women's +abortion,"('free abortion clinic near me within 5 mi', 'free abortion clinic near me')",free abortion clinic near me within 5 mi,free abortion clinic near me,2,3,google,2026-03-12 19:31:00.063954,abortion clinic near me,abortion clinic near me for free,within 5 mi,within 5 mi +abortion,"('free abortion clinic near me within 5 mi', 'free abortion centers near me')",free abortion clinic near me within 5 mi,free abortion centers near me,3,3,google,2026-03-12 19:31:00.063954,abortion clinic near me,abortion clinic near me for free,within 5 mi,centers +abortion,"('free abortion clinic near me within 5 mi', 'free abortion clinic near washington dc')",free abortion clinic near me within 5 mi,free abortion clinic near washington dc,4,3,google,2026-03-12 19:31:00.063954,abortion clinic near me,abortion clinic near me for free,within 5 mi,washington dc +abortion,"('free abortion clinic near me within 5 mi', 'free abortion clinic minnesota')",free abortion clinic near me within 5 mi,free abortion clinic minnesota,5,3,google,2026-03-12 19:31:00.063954,abortion clinic near me,abortion clinic near me for free,within 5 mi,minnesota +abortion,"('free abortion clinic near me within 5 mi', 'free abortion clinic miami')",free abortion clinic near me within 5 mi,free abortion clinic miami,6,3,google,2026-03-12 19:31:00.063954,abortion clinic near me,abortion clinic near me for free,within 5 mi,miami +abortion,"('free abortion clinic near me within 20 mi', 'free abortion clinics near me')",free abortion clinic near me within 20 mi,free abortion clinics near me,1,3,google,2026-03-12 19:31:01.315297,abortion clinic near me,abortion clinic near me for free,within 20 mi,clinics +abortion,"('free abortion clinic near me within 20 mi', 'free abortion centers near me')",free abortion clinic near me within 20 mi,free abortion centers near me,2,3,google,2026-03-12 19:31:01.315297,abortion clinic near me,abortion clinic near me for free,within 20 mi,centers +abortion,"('free abortion clinic near me within 20 mi', 'cheap abortion clinics near me')",free abortion clinic near me within 20 mi,cheap abortion clinics near me,3,3,google,2026-03-12 19:31:01.315297,abortion clinic near me,abortion clinic near me for free,within 20 mi,cheap clinics +abortion,"('free abortion clinic near me within 20 mi', 'free abortion clinic near washington dc')",free abortion clinic near me within 20 mi,free abortion clinic near washington dc,4,3,google,2026-03-12 19:31:01.315297,abortion clinic near me,abortion clinic near me for free,within 20 mi,washington dc +abortion,"('free abortion clinic near me within 20 mi', 'free abortion clinics near fort lauderdale fl')",free abortion clinic near me within 20 mi,free abortion clinics near fort lauderdale fl,5,3,google,2026-03-12 19:31:01.315297,abortion clinic near me,abortion clinic near me for free,within 20 mi,clinics fort lauderdale fl +abortion,"('women clinic near me walk in', ""women's health clinic near me walk in"")",women clinic near me walk in,women's health clinic near me walk in,1,3,google,2026-03-12 19:31:02.716302,abortion clinic near me,abortion clinic near me walk in,women,women's health +abortion,"('women clinic near me walk in', 'female doctor near me walk in')",women clinic near me walk in,female doctor near me walk in,2,3,google,2026-03-12 19:31:02.716302,abortion clinic near me,abortion clinic near me walk in,women,female doctor +abortion,"('women clinic near me walk in', ""free women's clinic near me walk in"")",women clinic near me walk in,free women's clinic near me walk in,3,3,google,2026-03-12 19:31:02.716302,abortion clinic near me,abortion clinic near me walk in,women,free women's +abortion,"('women clinic near me walk in', 'female doctor near me walk in clinic')",women clinic near me walk in,female doctor near me walk in clinic,4,3,google,2026-03-12 19:31:02.716302,abortion clinic near me,abortion clinic near me walk in,women,female doctor +abortion,"('women clinic near me walk in', ""walk in women's clinic near me open now"")",women clinic near me walk in,walk in women's clinic near me open now,5,3,google,2026-03-12 19:31:02.716302,abortion clinic near me,abortion clinic near me walk in,women,women's open now +abortion,"('women clinic near me walk in', ""walk in women's clinic near me within 5 mi"")",women clinic near me walk in,walk in women's clinic near me within 5 mi,6,3,google,2026-03-12 19:31:02.716302,abortion clinic near me,abortion clinic near me walk in,women,women's within 5 mi +abortion,"('women clinic near me walk in', ""women's clinic near me without insurance"")",women clinic near me walk in,women's clinic near me without insurance,7,3,google,2026-03-12 19:31:02.716302,abortion clinic near me,abortion clinic near me walk in,women,women's without insurance +abortion,"(""women's health clinic near me walk in"", ""walk-in women's clinic near me"")",women's health clinic near me walk in,walk-in women's clinic near me,1,3,google,2026-03-12 19:31:04.179562,abortion clinic near me,abortion clinic near me walk in,women's health,walk-in +abortion,"(""women's health clinic near me walk in"", 'does walmart have a walk in clinic')",women's health clinic near me walk in,does walmart have a walk in clinic,2,3,google,2026-03-12 19:31:04.179562,abortion clinic near me,abortion clinic near me walk in,women's health,does walmart have a +abortion,"(""women's health clinic near me walk in"", ""women's check up clinic near me"")",women's health clinic near me walk in,women's check up clinic near me,3,3,google,2026-03-12 19:31:04.179562,abortion clinic near me,abortion clinic near me walk in,women's health,check up +abortion,"(""free women's clinic near me walk in"", ""free women's clinic near me no insurance"")",free women's clinic near me walk in,free women's clinic near me no insurance,1,3,google,2026-03-12 19:31:05.353268,abortion clinic near me,abortion clinic near me walk in,free women's,no insurance +abortion,"(""free women's clinic near me walk in"", ""walk-in women's clinic near me"")",free women's clinic near me walk in,walk-in women's clinic near me,2,3,google,2026-03-12 19:31:05.353268,abortion clinic near me,abortion clinic near me walk in,free women's,walk-in +abortion,"(""free women's clinic near me walk in"", ""free women's clinics near me"")",free women's clinic near me walk in,free women's clinics near me,3,3,google,2026-03-12 19:31:05.353268,abortion clinic near me,abortion clinic near me walk in,free women's,clinics +abortion,"('walk in abortion clinic near me nhs', 'walk in abortion clinic near me nhs open now')",walk in abortion clinic near me nhs,walk in abortion clinic near me nhs open now,1,3,google,2026-03-12 19:31:06.175103,abortion clinic near me,abortion clinic near me walk in,nhs,open now +abortion,"('walk in abortion clinic near me nhs', 'walk in abortion clinic near me nhs london')",walk in abortion clinic near me nhs,walk in abortion clinic near me nhs london,2,3,google,2026-03-12 19:31:06.175103,abortion clinic near me,abortion clinic near me walk in,nhs,london +abortion,"('walk in abortion clinic near me nhs', 'walk in abortion clinic near me nhs scotland')",walk in abortion clinic near me nhs,walk in abortion clinic near me nhs scotland,3,3,google,2026-03-12 19:31:06.175103,abortion clinic near me,abortion clinic near me walk in,nhs,scotland +abortion,"('walk in abortion clinic near me nhs', 'walk in abortion clinic near me nhs within 5 mi')",walk in abortion clinic near me nhs,walk in abortion clinic near me nhs within 5 mi,4,3,google,2026-03-12 19:31:06.175103,abortion clinic near me,abortion clinic near me walk in,nhs,within 5 mi +abortion,"('walk in abortion clinic near me nhs', 'walk-in abortion clinic near me nhs birmingham')",walk in abortion clinic near me nhs,walk-in abortion clinic near me nhs birmingham,5,3,google,2026-03-12 19:31:06.175103,abortion clinic near me,abortion clinic near me walk in,nhs,walk-in birmingham +abortion,"('walk in abortion clinic near me nhs', 'top rated walk in abortion clinic near me nhs')",walk in abortion clinic near me nhs,top rated walk in abortion clinic near me nhs,6,3,google,2026-03-12 19:31:06.175103,abortion clinic near me,abortion clinic near me walk in,nhs,top rated +abortion,"('walk in abortion clinic near me nhs', 'walk in abortion clinic near me')",walk in abortion clinic near me nhs,walk in abortion clinic near me,7,3,google,2026-03-12 19:31:06.175103,abortion clinic near me,abortion clinic near me walk in,nhs,nhs +abortion,"('walk in abortion clinic near me nhs', 'nhs walk in clinic near me open now')",walk in abortion clinic near me nhs,nhs walk in clinic near me open now,8,3,google,2026-03-12 19:31:06.175103,abortion clinic near me,abortion clinic near me walk in,nhs,open now +abortion,"('walk in abortion clinic near me nhs', 'do abortion clinics take walk ins')",walk in abortion clinic near me nhs,do abortion clinics take walk ins,9,3,google,2026-03-12 19:31:06.175103,abortion clinic near me,abortion clinic near me walk in,nhs,do clinics take ins +abortion,"('walk in abortion clinic near me open now', ""walk in women's clinic near me open now"")",walk in abortion clinic near me open now,walk in women's clinic near me open now,1,3,google,2026-03-12 19:31:07.478936,abortion clinic near me,abortion clinic near me walk in,open now,women's +abortion,"('walk in abortion clinic near me open now', 'walk in abortion clinic near me nhs open now')",walk in abortion clinic near me open now,walk in abortion clinic near me nhs open now,2,3,google,2026-03-12 19:31:07.478936,abortion clinic near me,abortion clinic near me walk in,open now,nhs +abortion,"('walk in abortion clinic near me open now', 'top rated walk in abortion clinic near me open now')",walk in abortion clinic near me open now,top rated walk in abortion clinic near me open now,3,3,google,2026-03-12 19:31:07.478936,abortion clinic near me,abortion clinic near me walk in,open now,top rated +abortion,"('walk in abortion clinic near me open now', 'walk in abortion clinic open now')",walk in abortion clinic near me open now,walk in abortion clinic open now,4,3,google,2026-03-12 19:31:07.478936,abortion clinic near me,abortion clinic near me walk in,open now,open now +abortion,"('walk in abortion clinic near me open now', 'walk in abortion clinic near me')",walk in abortion clinic near me open now,walk in abortion clinic near me,5,3,google,2026-03-12 19:31:07.478936,abortion clinic near me,abortion clinic near me walk in,open now,open now +abortion,"('walk in abortion clinic near me open now', 'do abortion clinics take walk ins')",walk in abortion clinic near me open now,do abortion clinics take walk ins,6,3,google,2026-03-12 19:31:07.478936,abortion clinic near me,abortion clinic near me walk in,open now,do clinics take ins +abortion,"('walk in abortion clinic near me open now', 'do abortion clinics do walk ins')",walk in abortion clinic near me open now,do abortion clinics do walk ins,7,3,google,2026-03-12 19:31:07.478936,abortion clinic near me,abortion clinic near me walk in,open now,do clinics do ins +abortion,"('walk in abortion clinic near me open now', 'are there any walk in clinics open near me')",walk in abortion clinic near me open now,are there any walk in clinics open near me,8,3,google,2026-03-12 19:31:07.478936,abortion clinic near me,abortion clinic near me walk in,open now,are there any clinics +abortion,"('walk in abortion clinic near me private', 'walk in abortion clinic near me')",walk in abortion clinic near me private,walk in abortion clinic near me,1,3,google,2026-03-12 19:31:08.551368,abortion clinic near me,abortion clinic near me walk in,private,private +abortion,"('walk in abortion clinic near me private', 'private abortion clinic near me')",walk in abortion clinic near me private,private abortion clinic near me,2,3,google,2026-03-12 19:31:08.551368,abortion clinic near me,abortion clinic near me walk in,private,private +abortion,"('walk in abortion clinic near me private', 'do abortion clinics take walk ins')",walk in abortion clinic near me private,do abortion clinics take walk ins,3,3,google,2026-03-12 19:31:08.551368,abortion clinic near me,abortion clinic near me walk in,private,do clinics take ins +abortion,"('walk in abortion clinic near me private', 'do abortion clinics do walk ins')",walk in abortion clinic near me private,do abortion clinics do walk ins,4,3,google,2026-03-12 19:31:08.551368,abortion clinic near me,abortion clinic near me walk in,private,do clinics do ins +abortion,"('walk in abortion clinic near me within 5 mi', ""walk in women's clinic near me within 5 mi"")",walk in abortion clinic near me within 5 mi,walk in women's clinic near me within 5 mi,1,3,google,2026-03-12 19:31:09.635104,abortion clinic near me,abortion clinic near me walk in,within 5 mi,women's +abortion,"('walk in abortion clinic near me within 5 mi', 'walk in abortion clinic near me nhs within 5 mi')",walk in abortion clinic near me within 5 mi,walk in abortion clinic near me nhs within 5 mi,2,3,google,2026-03-12 19:31:09.635104,abortion clinic near me,abortion clinic near me walk in,within 5 mi,nhs +abortion,"('walk in abortion clinic near me within 5 mi', 'walk in abortion clinic near me')",walk in abortion clinic near me within 5 mi,walk in abortion clinic near me,3,3,google,2026-03-12 19:31:09.635104,abortion clinic near me,abortion clinic near me walk in,within 5 mi,within 5 mi +abortion,"('walk in abortion clinic near me within 5 mi', 'do abortion clinics take walk ins')",walk in abortion clinic near me within 5 mi,do abortion clinics take walk ins,4,3,google,2026-03-12 19:31:09.635104,abortion clinic near me,abortion clinic near me walk in,within 5 mi,do clinics take ins +abortion,"('walk in abortion clinic near me within 5 mi', 'do abortion clinics do walk ins')",walk in abortion clinic near me within 5 mi,do abortion clinics do walk ins,5,3,google,2026-03-12 19:31:09.635104,abortion clinic near me,abortion clinic near me walk in,within 5 mi,do clinics do ins +abortion,"('walk in abortion clinic near me within 5 mi', 'closest abortion clinic near me')",walk in abortion clinic near me within 5 mi,closest abortion clinic near me,6,3,google,2026-03-12 19:31:09.635104,abortion clinic near me,abortion clinic near me walk in,within 5 mi,closest +abortion,"('walk in abortion clinic near me within 20 mi', 'walk in abortion clinic near me')",walk in abortion clinic near me within 20 mi,walk in abortion clinic near me,1,3,google,2026-03-12 19:31:10.535460,abortion clinic near me,abortion clinic near me walk in,within 20 mi,within 20 mi +abortion,"('walk in abortion clinic near me within 20 mi', 'do abortion clinics take walk ins')",walk in abortion clinic near me within 20 mi,do abortion clinics take walk ins,2,3,google,2026-03-12 19:31:10.535460,abortion clinic near me,abortion clinic near me walk in,within 20 mi,do clinics take ins +abortion,"('walk in abortion clinic near me within 20 mi', 'do abortion clinics do walk ins')",walk in abortion clinic near me within 20 mi,do abortion clinics do walk ins,3,3,google,2026-03-12 19:31:10.535460,abortion clinic near me,abortion clinic near me walk in,within 20 mi,do clinics do ins +abortion,"('walk in abortion clinic near me nhs open now', 'nhs walk in clinic near me open now')",walk in abortion clinic near me nhs open now,nhs walk in clinic near me open now,1,3,google,2026-03-12 19:31:12.029026,abortion clinic near me,abortion clinic near me walk in,nhs open now,nhs open now +abortion,"('walk in abortion clinic near me nhs open now', 'nhs walk in clinic near me open today')",walk in abortion clinic near me nhs open now,nhs walk in clinic near me open today,2,3,google,2026-03-12 19:31:12.029026,abortion clinic near me,abortion clinic near me walk in,nhs open now,today +abortion,"('walk in abortion clinic near me nhs open now', 'are there any walk in clinics open near me')",walk in abortion clinic near me nhs open now,are there any walk in clinics open near me,3,3,google,2026-03-12 19:31:12.029026,abortion clinic near me,abortion clinic near me walk in,nhs open now,are there any clinics +abortion,"('walk in abortion clinic near me nhs open now', 'nearest walk in clinic open now')",walk in abortion clinic near me nhs open now,nearest walk in clinic open now,4,3,google,2026-03-12 19:31:12.029026,abortion clinic near me,abortion clinic near me walk in,nhs open now,nearest +abortion,"('walk in abortion clinic near me nhs open now', 'walk in medical clinic near me open now')",walk in abortion clinic near me nhs open now,walk in medical clinic near me open now,5,3,google,2026-03-12 19:31:12.029026,abortion clinic near me,abortion clinic near me walk in,nhs open now,medical +abortion,"('walk in abortion clinic near me nhs open now', 'walk-in abortion clinic near me')",walk in abortion clinic near me nhs open now,walk-in abortion clinic near me,6,3,google,2026-03-12 19:31:12.029026,abortion clinic near me,abortion clinic near me walk in,nhs open now,walk-in +abortion,"(""women's clinic near me now"", ""women's clinic san jose"")",women's clinic near me now,women's clinic san jose,1,3,google,2026-03-12 19:31:13.098915,abortion clinic near me,abortion clinic near me now,women's,san jose +abortion,"(""women's clinic near me now"", ""women's clinic near me open now"")",women's clinic near me now,women's clinic near me open now,2,3,google,2026-03-12 19:31:13.098915,abortion clinic near me,abortion clinic near me now,women's,open +abortion,"(""women's clinic near me now"", ""women's clinic near me open now within 5 mi"")",women's clinic near me now,women's clinic near me open now within 5 mi,3,3,google,2026-03-12 19:31:13.098915,abortion clinic near me,abortion clinic near me now,women's,open within 5 mi +abortion,"(""women's clinic near me now"", 'female doctor near me now')",women's clinic near me now,female doctor near me now,4,3,google,2026-03-12 19:31:13.098915,abortion clinic near me,abortion clinic near me now,women's,female doctor +abortion,"(""women's clinic near me now"", 'women hospital near me open now')",women's clinic near me now,women hospital near me open now,5,3,google,2026-03-12 19:31:13.098915,abortion clinic near me,abortion clinic near me now,women's,women hospital open +abortion,"(""women's clinic near me now"", 'women doctor near me open now')",women's clinic near me now,women doctor near me open now,6,3,google,2026-03-12 19:31:13.098915,abortion clinic near me,abortion clinic near me now,women's,women doctor open +abortion,"(""women's clinic near me now"", 'women center near me open now')",women's clinic near me now,women center near me open now,7,3,google,2026-03-12 19:31:13.098915,abortion clinic near me,abortion clinic near me now,women's,women center open +abortion,"(""women's clinic near me now"", 'woman doctor near me open now')",women's clinic near me now,woman doctor near me open now,8,3,google,2026-03-12 19:31:13.098915,abortion clinic near me,abortion clinic near me now,women's,woman doctor open +abortion,"(""women's clinic near me now"", ""women's health clinic near me open now"")",women's clinic near me now,women's health clinic near me open now,9,3,google,2026-03-12 19:31:13.098915,abortion clinic near me,abortion clinic near me now,women's,health open +abortion,"('abortion clinic near me today', 'abortion clinic near me today san jose')",abortion clinic near me today,abortion clinic near me today san jose,1,3,google,2026-03-12 19:31:14.137936,abortion clinic near me,abortion clinic near me now,today,san jose +abortion,"('abortion clinic near me today', 'abortion clinic near me today palo alto')",abortion clinic near me today,abortion clinic near me today palo alto,2,3,google,2026-03-12 19:31:14.137936,abortion clinic near me,abortion clinic near me now,today,palo alto +abortion,"('abortion clinic near me today', 'abortion clinic near me today open')",abortion clinic near me today,abortion clinic near me today open,3,3,google,2026-03-12 19:31:14.137936,abortion clinic near me,abortion clinic near me now,today,open +abortion,"('abortion clinic near me today', 'abortion clinic near me today san jose ca')",abortion clinic near me today,abortion clinic near me today san jose ca,4,3,google,2026-03-12 19:31:14.137936,abortion clinic near me,abortion clinic near me now,today,san jose ca +abortion,"('abortion clinic near me today', 'abortion clinic near me today palo alto ca')",abortion clinic near me today,abortion clinic near me today palo alto ca,5,3,google,2026-03-12 19:31:14.137936,abortion clinic near me,abortion clinic near me now,today,palo alto ca +abortion,"('abortion clinic near me today', 'abortion clinic near me today san francisco')",abortion clinic near me today,abortion clinic near me today san francisco,6,3,google,2026-03-12 19:31:14.137936,abortion clinic near me,abortion clinic near me now,today,san francisco +abortion,"('abortion clinic near me today', 'abortion clinic near me today menlo park')",abortion clinic near me today,abortion clinic near me today menlo park,7,3,google,2026-03-12 19:31:14.137936,abortion clinic near me,abortion clinic near me now,today,menlo park +abortion,"('abortion clinic near me today', 'abortion clinic near me today redwood city')",abortion clinic near me today,abortion clinic near me today redwood city,8,3,google,2026-03-12 19:31:14.137936,abortion clinic near me,abortion clinic near me now,today,redwood city +abortion,"('abortion clinic near me today', 'abortion clinic near me today stanford')",abortion clinic near me today,abortion clinic near me today stanford,9,3,google,2026-03-12 19:31:14.137936,abortion clinic near me,abortion clinic near me now,today,stanford +abortion,"('abortion clinic near me insurance', ""women's clinic near me no insurance"")",abortion clinic near me insurance,women's clinic near me no insurance,1,3,google,2026-03-12 19:31:15.473400,abortion clinic near me,abortion clinic near me that takes insurance,that takes insurance,women's no +abortion,"('abortion clinic near me insurance', 'abortion clinic near me that takes insurance')",abortion clinic near me insurance,abortion clinic near me that takes insurance,2,3,google,2026-03-12 19:31:15.473400,abortion clinic near me,abortion clinic near me that takes insurance,that takes insurance,that takes +abortion,"('abortion clinic near me insurance', 'abortion clinic near me for free')",abortion clinic near me insurance,abortion clinic near me for free,3,3,google,2026-03-12 19:31:15.473400,abortion clinic near me,abortion clinic near me that takes insurance,that takes insurance,for free +abortion,"('abortion clinic near me insurance', 'abortion clinic near me and prices')",abortion clinic near me insurance,abortion clinic near me and prices,4,3,google,2026-03-12 19:31:15.473400,abortion clinic near me,abortion clinic near me that takes insurance,that takes insurance,and prices +abortion,"('abortion clinic near me insurance', 'abortion clinic near me that accept insurance')",abortion clinic near me insurance,abortion clinic near me that accept insurance,5,3,google,2026-03-12 19:31:15.473400,abortion clinic near me,abortion clinic near me that takes insurance,that takes insurance,that accept +abortion,"('abortion clinic near me insurance', 'abortion clinic near me accepts medicaid')",abortion clinic near me insurance,abortion clinic near me accepts medicaid,6,3,google,2026-03-12 19:31:15.473400,abortion clinic near me,abortion clinic near me that takes insurance,that takes insurance,accepts medicaid +abortion,"('abortion clinic near me insurance', 'abortion clinic near me medicaid')",abortion clinic near me insurance,abortion clinic near me medicaid,7,3,google,2026-03-12 19:31:15.473400,abortion clinic near me,abortion clinic near me that takes insurance,that takes insurance,medicaid +abortion,"('do abortion clinics take insurance', 'do abortion clinics accept insurance')",do abortion clinics take insurance,do abortion clinics accept insurance,1,3,google,2026-03-12 19:31:16.574688,abortion clinic near me,abortion clinic near me that takes insurance,do clinics take,accept +abortion,"('do abortion clinics take insurance', 'abortion clinics take insurance')",do abortion clinics take insurance,abortion clinics take insurance,2,3,google,2026-03-12 19:31:16.574688,abortion clinic near me,abortion clinic near me that takes insurance,do clinics take,do clinics take +abortion,"('do abortion clinics take insurance', 'what insurance cover abortion')",do abortion clinics take insurance,what insurance cover abortion,3,3,google,2026-03-12 19:31:16.574688,abortion clinic near me,abortion clinic near me that takes insurance,do clinics take,what cover +abortion,"('do abortion clinics take insurance', 'do abortion clinics take cash')",do abortion clinics take insurance,do abortion clinics take cash,4,3,google,2026-03-12 19:31:16.574688,abortion clinic near me,abortion clinic near me that takes insurance,do clinics take,cash +abortion,"('do abortion clinics take insurance', 'do abortion clinics take credit cards')",do abortion clinics take insurance,do abortion clinics take credit cards,5,3,google,2026-03-12 19:31:16.574688,abortion clinic near me,abortion clinic near me that takes insurance,do clinics take,credit cards +abortion,"('do abortion clinics take insurance', 'do abortion clinics accept medicaid')",do abortion clinics take insurance,do abortion clinics accept medicaid,6,3,google,2026-03-12 19:31:16.574688,abortion clinic near me,abortion clinic near me that takes insurance,do clinics take,accept medicaid +abortion,"('what insurance cover abortion', 'what insurance covers abortion pill')",what insurance cover abortion,what insurance covers abortion pill,1,3,google,2026-03-12 19:31:17.615624,abortion clinic near me,abortion clinic near me that takes insurance,what cover,covers pill +abortion,"('what insurance cover abortion', 'does insurance cover abortion')",what insurance cover abortion,does insurance cover abortion,2,3,google,2026-03-12 19:31:17.615624,abortion clinic near me,abortion clinic near me that takes insurance,what cover,does +abortion,"('what insurance cover abortion', 'does insurance cover abortion pill')",what insurance cover abortion,does insurance cover abortion pill,3,3,google,2026-03-12 19:31:17.615624,abortion clinic near me,abortion clinic near me that takes insurance,what cover,does pill +abortion,"('what insurance cover abortion', 'does insurance cover abortion at planned parenthood')",what insurance cover abortion,does insurance cover abortion at planned parenthood,4,3,google,2026-03-12 19:31:17.615624,abortion clinic near me,abortion clinic near me that takes insurance,what cover,does at planned parenthood +abortion,"('what insurance cover abortion', 'does insurance cover abortion costs')",what insurance cover abortion,does insurance cover abortion costs,5,3,google,2026-03-12 19:31:17.615624,abortion clinic near me,abortion clinic near me that takes insurance,what cover,does costs +abortion,"('what insurance cover abortion', 'does insurance cover abortion california')",what insurance cover abortion,does insurance cover abortion california,6,3,google,2026-03-12 19:31:17.615624,abortion clinic near me,abortion clinic near me that takes insurance,what cover,does california +abortion,"('what insurance cover abortion', 'does insurance cover abortion florida')",what insurance cover abortion,does insurance cover abortion florida,7,3,google,2026-03-12 19:31:17.615624,abortion clinic near me,abortion clinic near me that takes insurance,what cover,does florida +abortion,"('what insurance cover abortion', 'does insurance cover abortion nj')",what insurance cover abortion,does insurance cover abortion nj,8,3,google,2026-03-12 19:31:17.615624,abortion clinic near me,abortion clinic near me that takes insurance,what cover,does nj +abortion,"('what insurance cover abortion', 'does insurance cover abortion pill at planned parenthood')",what insurance cover abortion,does insurance cover abortion pill at planned parenthood,9,3,google,2026-03-12 19:31:17.615624,abortion clinic near me,abortion clinic near me that takes insurance,what cover,does pill at planned parenthood +abortion,"('abortion clinic near me that accept insurance', 'abortion clinic near me insurance')",abortion clinic near me that accept insurance,abortion clinic near me insurance,1,3,google,2026-03-12 19:31:18.836957,abortion clinic near me,abortion clinic near me that takes insurance,accept,accept +abortion,"('abortion clinic near me that accept insurance', 'do abortion clinics take insurance')",abortion clinic near me that accept insurance,do abortion clinics take insurance,2,3,google,2026-03-12 19:31:18.836957,abortion clinic near me,abortion clinic near me that takes insurance,accept,do clinics take +abortion,"('abortion clinic near me that accept insurance', 'abortion clinic near me that accepts medicaid')",abortion clinic near me that accept insurance,abortion clinic near me that accepts medicaid,3,3,google,2026-03-12 19:31:18.836957,abortion clinic near me,abortion clinic near me that takes insurance,accept,accepts medicaid +abortion,"('abortion clinic near me that accepts medicaid', ""women's clinic near me that accepts medicaid"")",abortion clinic near me that accepts medicaid,women's clinic near me that accepts medicaid,1,3,google,2026-03-12 19:31:20.054001,abortion clinic near me,abortion clinic near me that takes insurance,accepts medicaid,women's +abortion,"('abortion clinic near me that accepts medicaid', ""women's health clinic near me that accept medicaid"")",abortion clinic near me that accepts medicaid,women's health clinic near me that accept medicaid,2,3,google,2026-03-12 19:31:20.054001,abortion clinic near me,abortion clinic near me that takes insurance,accepts medicaid,women's health accept +abortion,"('abortion clinic near me that accepts medicaid', 'abortion clinic near me medicaid')",abortion clinic near me that accepts medicaid,abortion clinic near me medicaid,3,3,google,2026-03-12 19:31:20.054001,abortion clinic near me,abortion clinic near me that takes insurance,accepts medicaid,accepts medicaid +abortion,"('abortion clinic near me that accepts medicaid', 'abortion clinic near me medicaid discount')",abortion clinic near me that accepts medicaid,abortion clinic near me medicaid discount,4,3,google,2026-03-12 19:31:20.054001,abortion clinic near me,abortion clinic near me that takes insurance,accepts medicaid,discount +abortion,"('abortion clinic near me that accepts medicaid', ""women's clinic near me medicaid"")",abortion clinic near me that accepts medicaid,women's clinic near me medicaid,5,3,google,2026-03-12 19:31:20.054001,abortion clinic near me,abortion clinic near me that takes insurance,accepts medicaid,women's +abortion,"('abortion clinic near me that accepts medicaid', 'abortion clinics near me that take medicaid')",abortion clinic near me that accepts medicaid,abortion clinics near me that take medicaid,6,3,google,2026-03-12 19:31:20.054001,abortion clinic near me,abortion clinic near me that takes insurance,accepts medicaid,clinics take +abortion,"('abortion clinic near me that accepts medicaid', 'abortion clinic near me that accept insurance')",abortion clinic near me that accepts medicaid,abortion clinic near me that accept insurance,7,3,google,2026-03-12 19:31:20.054001,abortion clinic near me,abortion clinic near me that takes insurance,accepts medicaid,accept insurance +abortion,"('abortion clinic near me open on weekends', ""women's clinic near me open on weekends"")",abortion clinic near me open on weekends,women's clinic near me open on weekends,1,3,google,2026-03-12 19:31:21.542617,abortion clinic near me,abortion clinic near me open,on weekends,women's +abortion,"('abortion clinic near me open on weekends', 'abortion clinic near me open on sunday')",abortion clinic near me open on weekends,abortion clinic near me open on sunday,2,3,google,2026-03-12 19:31:21.542617,abortion clinic near me,abortion clinic near me open,on weekends,sunday +abortion,"('abortion clinic near me open on weekends', 'abortion clinic near me open saturday')",abortion clinic near me open on weekends,abortion clinic near me open saturday,3,3,google,2026-03-12 19:31:21.542617,abortion clinic near me,abortion clinic near me open,on weekends,saturday +abortion,"('abortion clinic near me open on weekends', ""women's clinic near me open saturday"")",abortion clinic near me open on weekends,women's clinic near me open saturday,4,3,google,2026-03-12 19:31:21.542617,abortion clinic near me,abortion clinic near me open,on weekends,women's saturday +abortion,"('abortion clinic near me open on weekends', 'abortion clinic open near me')",abortion clinic near me open on weekends,abortion clinic open near me,5,3,google,2026-03-12 19:31:21.542617,abortion clinic near me,abortion clinic near me open,on weekends,on weekends +abortion,"('abortion clinic near me open saturday', ""women's clinic near me open saturday"")",abortion clinic near me open saturday,women's clinic near me open saturday,1,3,google,2026-03-12 19:31:22.770966,abortion clinic near me,abortion clinic near me open,saturday,women's +abortion,"('abortion clinic near me open saturday', 'abortion clinic near me open today')",abortion clinic near me open saturday,abortion clinic near me open today,2,3,google,2026-03-12 19:31:22.770966,abortion clinic near me,abortion clinic near me open,saturday,today +abortion,"('abortion clinic near me open saturday', 'abortion clinic open sunday near me')",abortion clinic near me open saturday,abortion clinic open sunday near me,3,3,google,2026-03-12 19:31:22.770966,abortion clinic near me,abortion clinic near me open,saturday,sunday +abortion,"('abortion clinic near me open sunday', 'abortion clinic near me open today')",abortion clinic near me open sunday,abortion clinic near me open today,1,3,google,2026-03-12 19:31:23.999626,abortion clinic near me,abortion clinic near me open,sunday,today +abortion,"('abortion clinic near me open sunday', 'abortion clinic open on saturday near me')",abortion clinic near me open sunday,abortion clinic open on saturday near me,2,3,google,2026-03-12 19:31:23.999626,abortion clinic near me,abortion clinic near me open,sunday,on saturday +abortion,"('abortion clinic near me open sunday', 'abortion clinic open near me')",abortion clinic near me open sunday,abortion clinic open near me,3,3,google,2026-03-12 19:31:23.999626,abortion clinic near me,abortion clinic near me open,sunday,sunday +abortion,"('abortion clinic near me open today', 'abortion clinic near me open on sunday')",abortion clinic near me open today,abortion clinic near me open on sunday,1,3,google,2026-03-12 19:31:24.871085,abortion clinic near me,abortion clinic near me open,today,on sunday +abortion,"('abortion clinic near me open today', 'abortion clinic near me now')",abortion clinic near me open today,abortion clinic near me now,2,3,google,2026-03-12 19:31:24.871085,abortion clinic near me,abortion clinic near me open,today,now +abortion,"('abortion clinic near me open today', 'abortion clinic open on saturday near me')",abortion clinic near me open today,abortion clinic open on saturday near me,3,3,google,2026-03-12 19:31:24.871085,abortion clinic near me,abortion clinic near me open,today,on saturday +abortion,"('abortion clinic near me open today', 'abortion clinic open near me')",abortion clinic near me open today,abortion clinic open near me,4,3,google,2026-03-12 19:31:24.871085,abortion clinic near me,abortion clinic near me open,today,today +abortion,"('abortion clinic near me open today', 'abortion clinic near me for free')",abortion clinic near me open today,abortion clinic near me for free,5,3,google,2026-03-12 19:31:24.871085,abortion clinic near me,abortion clinic near me open,today,for free +abortion,"('abortion clinic near me open today', 'abortion clinic near me online appointment')",abortion clinic near me open today,abortion clinic near me online appointment,6,3,google,2026-03-12 19:31:24.871085,abortion clinic near me,abortion clinic near me open,today,online appointment +abortion,"('abortion clinic near me open today', 'abortion clinic near me 24 hours')",abortion clinic near me open today,abortion clinic near me 24 hours,7,3,google,2026-03-12 19:31:24.871085,abortion clinic near me,abortion clinic near me open,today,24 hours +abortion,"('abortion clinic near me open tomorrow', 'abortion clinic near me open tomorrow morning')",abortion clinic near me open tomorrow,abortion clinic near me open tomorrow morning,1,3,google,2026-03-12 19:31:26.227331,abortion clinic near me,abortion clinic near me open,tomorrow,morning +abortion,"('abortion clinic near me open tomorrow', 'abortion clinic near me open tomorrow near me')",abortion clinic near me open tomorrow,abortion clinic near me open tomorrow near me,2,3,google,2026-03-12 19:31:26.227331,abortion clinic near me,abortion clinic near me open,tomorrow,tomorrow +abortion,"('abortion clinic near me open tomorrow', 'abortion clinic near me open tomorrow san jose')",abortion clinic near me open tomorrow,abortion clinic near me open tomorrow san jose,3,3,google,2026-03-12 19:31:26.227331,abortion clinic near me,abortion clinic near me open,tomorrow,san jose +abortion,"('abortion clinic near me open tomorrow', 'abortion clinic near me open tomorrow 2024')",abortion clinic near me open tomorrow,abortion clinic near me open tomorrow 2024,4,3,google,2026-03-12 19:31:26.227331,abortion clinic near me,abortion clinic near me open,tomorrow,2024 +abortion,"('abortion clinic near me open tomorrow', 'abortion clinic near me open tomorrow san jose ca')",abortion clinic near me open tomorrow,abortion clinic near me open tomorrow san jose ca,5,3,google,2026-03-12 19:31:26.227331,abortion clinic near me,abortion clinic near me open,tomorrow,san jose ca +abortion,"('abortion clinic near me same day appointment', 'same day appointment clinic near me')",abortion clinic near me same day appointment,same day appointment clinic near me,1,3,google,2026-03-12 19:31:27.464477,abortion clinic near me,abortion clinic near me same day,appointment,appointment +abortion,"('abortion clinic near me same day appointment', 'abortion clinic open on saturday near me')",abortion clinic near me same day appointment,abortion clinic open on saturday near me,2,3,google,2026-03-12 19:31:27.464477,abortion clinic near me,abortion clinic near me same day,appointment,open on saturday +abortion,"('abortion clinic near me same day appointment', 'abortion clinic near me same day')",abortion clinic near me same day appointment,abortion clinic near me same day,3,3,google,2026-03-12 19:31:27.464477,abortion clinic near me,abortion clinic near me same day,appointment,appointment +abortion,"('abortion clinic near me same day appointment', 'abortion clinic near me online appointment')",abortion clinic near me same day appointment,abortion clinic near me online appointment,4,3,google,2026-03-12 19:31:27.464477,abortion clinic near me,abortion clinic near me same day,appointment,online +abortion,"('same day private abortion clinic near me', 'same day abortion clinics near me')",same day private abortion clinic near me,same day abortion clinics near me,1,3,google,2026-03-12 19:31:28.445498,abortion clinic near me,abortion clinic near me same day,private,clinics +abortion,"('same day private abortion clinic near me', 'private abortion clinic near me')",same day private abortion clinic near me,private abortion clinic near me,2,3,google,2026-03-12 19:31:28.445498,abortion clinic near me,abortion clinic near me same day,private,private +abortion,"('same day private abortion clinic near me', 'closest abortion clinic near me')",same day private abortion clinic near me,closest abortion clinic near me,3,3,google,2026-03-12 19:31:28.445498,abortion clinic near me,abortion clinic near me same day,private,closest +abortion,"('abortion clinic open on saturday near me', 'abortion clinic open near me')",abortion clinic open on saturday near me,abortion clinic open near me,1,3,google,2026-03-12 19:31:29.537086,abortion clinic near me,abortion clinic near me same day,open on saturday,open on saturday +abortion,"('abortion clinic open on saturday near me', 'abortion clinic open now near me')",abortion clinic open on saturday near me,abortion clinic open now near me,2,3,google,2026-03-12 19:31:29.537086,abortion clinic near me,abortion clinic near me same day,open on saturday,now +abortion,"('abortion clinic open on saturday near me', ""women's clinic open near me"")",abortion clinic open on saturday near me,women's clinic open near me,3,3,google,2026-03-12 19:31:29.537086,abortion clinic near me,abortion clinic near me same day,open on saturday,women's +abortion,"('abortion clinic open on saturday near me', 'abortion clinic open sunday near me')",abortion clinic open on saturday near me,abortion clinic open sunday near me,4,3,google,2026-03-12 19:31:29.537086,abortion clinic near me,abortion clinic near me same day,open on saturday,sunday +abortion,"('abortion clinic open on saturday near me', 'pregnancy clinic open on saturday near me')",abortion clinic open on saturday near me,pregnancy clinic open on saturday near me,5,3,google,2026-03-12 19:31:29.537086,abortion clinic near me,abortion clinic near me same day,open on saturday,pregnancy +abortion,"('abortion clinic open on saturday near me', 'abortion clinic open on weekends near me')",abortion clinic open on saturday near me,abortion clinic open on weekends near me,6,3,google,2026-03-12 19:31:29.537086,abortion clinic near me,abortion clinic near me same day,open on saturday,weekends +abortion,"('abortion clinic near me 24 hours', 'abortion clinic near me 24 hours san jose')",abortion clinic near me 24 hours,abortion clinic near me 24 hours san jose,1,3,google,2026-03-12 19:31:30.347728,abortion clinic near me,abortion clinic near me same day,24 hours,san jose +abortion,"('abortion clinic near me 24 hours', 'abortion clinic near me 24 hours open')",abortion clinic near me 24 hours,abortion clinic near me 24 hours open,2,3,google,2026-03-12 19:31:30.347728,abortion clinic near me,abortion clinic near me same day,24 hours,open +abortion,"('abortion clinic near me 24 hours', 'abortion clinic near me 24 hours near me')",abortion clinic near me 24 hours,abortion clinic near me 24 hours near me,3,3,google,2026-03-12 19:31:30.347728,abortion clinic near me,abortion clinic near me same day,24 hours,24 hours +abortion,"('abortion clinic near me 24 hours', 'abortion clinic near me 24 hours no insurance')",abortion clinic near me 24 hours,abortion clinic near me 24 hours no insurance,4,3,google,2026-03-12 19:31:30.347728,abortion clinic near me,abortion clinic near me same day,24 hours,no insurance +abortion,"('abortion clinic near me 24 hours', 'abortion clinic near me 24 hours san jose ca')",abortion clinic near me 24 hours,abortion clinic near me 24 hours san jose ca,5,3,google,2026-03-12 19:31:30.347728,abortion clinic near me,abortion clinic near me same day,24 hours,san jose ca +abortion,"('abortion pill online free texas', 'is abortion pill legal in texas')",abortion pill online free texas,is abortion pill legal in texas,1,3,google,2026-03-12 19:31:31.601922,abortion pill online,abortion pill online free,texas,is legal in +abortion,"('abortion pill online free missouri', 'abortion pill near me online')",abortion pill online free missouri,abortion pill near me online,1,3,google,2026-03-12 19:31:32.942463,abortion pill online,abortion pill online free,missouri,near me +abortion,"('abortion pill online free missouri', 'abortion pill in missouri')",abortion pill online free missouri,abortion pill in missouri,2,3,google,2026-03-12 19:31:32.942463,abortion pill online,abortion pill online free,missouri,in +abortion,"('abortion pill online free missouri', 'abortion pill clinic near me free')",abortion pill online free missouri,abortion pill clinic near me free,3,3,google,2026-03-12 19:31:32.942463,abortion pill online,abortion pill online free,missouri,clinic near me +abortion,"('abortion pill online free missouri', 'abortion pill online missouri')",abortion pill online free missouri,abortion pill online missouri,4,3,google,2026-03-12 19:31:32.942463,abortion pill online,abortion pill online free,missouri,missouri +abortion,"('abortion pill online free missouri', 'abortion pill online mo')",abortion pill online free missouri,abortion pill online mo,5,3,google,2026-03-12 19:31:32.942463,abortion pill online,abortion pill online free,missouri,mo +abortion,"('abortion pill online free missouri', 'abortion pill online free')",abortion pill online free missouri,abortion pill online free,6,3,google,2026-03-12 19:31:32.942463,abortion pill online,abortion pill online free,missouri,missouri +abortion,"('abortion pill online free missouri', 'abortion pill online mississippi')",abortion pill online free missouri,abortion pill online mississippi,7,3,google,2026-03-12 19:31:32.942463,abortion pill online,abortion pill online free,missouri,mississippi +abortion,"('abortion pill online free medicaid', 'does medicaid cover abortion pill')",abortion pill online free medicaid,does medicaid cover abortion pill,1,3,google,2026-03-12 19:31:33.939885,abortion pill online,abortion pill online free,medicaid,does cover +abortion,"('abortion pill online free medicaid', 'are abortions covered by medicaid')",abortion pill online free medicaid,are abortions covered by medicaid,2,3,google,2026-03-12 19:31:33.939885,abortion pill online,abortion pill online free,medicaid,are abortions covered by +abortion,"('abortion pill online free medicaid', 'abortion pill online free')",abortion pill online free medicaid,abortion pill online free,3,3,google,2026-03-12 19:31:33.939885,abortion pill online,abortion pill online free,medicaid,medicaid +abortion,"('abortion pill online free medicaid', 'abortion pill online prescription')",abortion pill online free medicaid,abortion pill online prescription,4,3,google,2026-03-12 19:31:33.939885,abortion pill online,abortion pill online free,medicaid,prescription +abortion,"('abortion pill online free medicaid', 'abortion pill online access')",abortion pill online free medicaid,abortion pill online access,5,3,google,2026-03-12 19:31:33.939885,abortion pill online,abortion pill online free,medicaid,access +abortion,"('morning after pill online free', 'morning after pill for free')",morning after pill online free,morning after pill for free,1,3,google,2026-03-12 19:31:35.285983,abortion pill online,abortion pill online free,morning after,for +abortion,"('morning after pill online free', 'morning after pill for free near me')",morning after pill online free,morning after pill for free near me,2,3,google,2026-03-12 19:31:35.285983,abortion pill online,abortion pill online free,morning after,for near me +abortion,"('morning after pill online free', 'morning after pill for free boots')",morning after pill online free,morning after pill for free boots,3,3,google,2026-03-12 19:31:35.285983,abortion pill online,abortion pill online free,morning after,for boots +abortion,"('morning after pill online free', 'morning after pill free online uk')",morning after pill online free,morning after pill free online uk,4,3,google,2026-03-12 19:31:35.285983,abortion pill online,abortion pill online free,morning after,uk +abortion,"('morning after pill online free', 'morning after pill for free uk')",morning after pill online free,morning after pill for free uk,5,3,google,2026-03-12 19:31:35.285983,abortion pill online,abortion pill online free,morning after,for uk +abortion,"('morning after pill online free', 'morning after pill for free london')",morning after pill online free,morning after pill for free london,6,3,google,2026-03-12 19:31:35.285983,abortion pill online,abortion pill online free,morning after,for london +abortion,"('morning after pill online free', 'morning after pill for free nhs')",morning after pill online free,morning after pill for free nhs,7,3,google,2026-03-12 19:31:35.285983,abortion pill online,abortion pill online free,morning after,for nhs +abortion,"('morning after pill online free', 'morning after pill free online delivery')",morning after pill online free,morning after pill free online delivery,8,3,google,2026-03-12 19:31:35.285983,abortion pill online,abortion pill online free,morning after,delivery +abortion,"('morning after pill online free', 'morning after pill free for students')",morning after pill online free,morning after pill free for students,9,3,google,2026-03-12 19:31:35.285983,abortion pill online,abortion pill online free,morning after,for students +abortion,"('morning after pill for free boots', 'can you get morning after pill for free boots')",morning after pill for free boots,can you get morning after pill for free boots,1,3,google,2026-03-12 19:31:36.546182,abortion pill online,abortion pill online free,morning after for boots,can you get +abortion,"('morning after pill for free boots', 'where to get morning after pill for free boots')",morning after pill for free boots,where to get morning after pill for free boots,2,3,google,2026-03-12 19:31:36.546182,abortion pill online,abortion pill online free,morning after for boots,where to get +abortion,"('morning after pill for free boots', 'can i get morning after pill for free boots')",morning after pill for free boots,can i get morning after pill for free boots,3,3,google,2026-03-12 19:31:36.546182,abortion pill online,abortion pill online free,morning after for boots,can i get +abortion,"('morning after pill for free boots', 'do boots offer the morning after pill for free')",morning after pill for free boots,do boots offer the morning after pill for free,4,3,google,2026-03-12 19:31:36.546182,abortion pill online,abortion pill online free,morning after for boots,do offer the +abortion,"('morning after pill for free boots', 'does boots give morning after pill free')",morning after pill for free boots,does boots give morning after pill free,5,3,google,2026-03-12 19:31:36.546182,abortion pill online,abortion pill online free,morning after for boots,does give +abortion,"('morning after pill for free boots', 'morning after pill free at planned parenthood')",morning after pill for free boots,morning after pill free at planned parenthood,6,3,google,2026-03-12 19:31:36.546182,abortion pill online,abortion pill online free,morning after for boots,at planned parenthood +abortion,"('morning after pill for free boots', 'boots.morning after.pill')",morning after pill for free boots,boots.morning after.pill,7,3,google,2026-03-12 19:31:36.546182,abortion pill online,abortion pill online free,morning after for boots,boots.morning after.pill +abortion,"('morning after pill free online uk', 'is the morning after pill free uk')",morning after pill free online uk,is the morning after pill free uk,1,3,google,2026-03-12 19:31:37.474285,abortion pill online,abortion pill online free,morning after uk,is the +abortion,"('morning after pill free online uk', 'how to get free morning after pill uk')",morning after pill free online uk,how to get free morning after pill uk,2,3,google,2026-03-12 19:31:37.474285,abortion pill online,abortion pill online free,morning after uk,how to get +abortion,"('morning after pill free online uk', 'free morning after pill order online')",morning after pill free online uk,free morning after pill order online,3,3,google,2026-03-12 19:31:37.474285,abortion pill online,abortion pill online free,morning after uk,order +abortion,"('morning after pill free online uk', 'free morning after pill online')",morning after pill free online uk,free morning after pill online,4,3,google,2026-03-12 19:31:37.474285,abortion pill online,abortion pill online free,morning after uk,morning after uk +abortion,"('morning after pill free online uk', 'free morning after pill pharmacy')",morning after pill free online uk,free morning after pill pharmacy,5,3,google,2026-03-12 19:31:37.474285,abortion pill online,abortion pill online free,morning after uk,pharmacy +abortion,"('morning after pill for free uk', 'morning after pill free uk news')",morning after pill for free uk,morning after pill free uk news,1,3,google,2026-03-12 19:31:38.660451,abortion pill online,abortion pill online free,morning after for uk,news +abortion,"('morning after pill for free uk', 'morning after pill now free uk')",morning after pill for free uk,morning after pill now free uk,2,3,google,2026-03-12 19:31:38.660451,abortion pill online,abortion pill online free,morning after for uk,now +abortion,"('morning after pill for free uk', 'morning after pill free england')",morning after pill for free uk,morning after pill free england,3,3,google,2026-03-12 19:31:38.660451,abortion pill online,abortion pill online free,morning after for uk,england +abortion,"('morning after pill for free uk', 'can you get morning after pill free uk')",morning after pill for free uk,can you get morning after pill free uk,4,3,google,2026-03-12 19:31:38.660451,abortion pill online,abortion pill online free,morning after for uk,can you get +abortion,"('morning after pill for free uk', 'morning after pill free online uk')",morning after pill for free uk,morning after pill free online uk,5,3,google,2026-03-12 19:31:38.660451,abortion pill online,abortion pill online free,morning after for uk,online +abortion,"('morning after pill for free uk', 'day after pill uk free')",morning after pill for free uk,day after pill uk free,6,3,google,2026-03-12 19:31:38.660451,abortion pill online,abortion pill online free,morning after for uk,day +abortion,"('morning after pill for free uk', 'free morning after pill uk pharmacies')",morning after pill for free uk,free morning after pill uk pharmacies,7,3,google,2026-03-12 19:31:38.660451,abortion pill online,abortion pill online free,morning after for uk,pharmacies +abortion,"('morning after pill for free uk', 'is the morning after pill free uk boots')",morning after pill for free uk,is the morning after pill free uk boots,8,3,google,2026-03-12 19:31:38.660451,abortion pill online,abortion pill online free,morning after for uk,is the boots +abortion,"('morning after pill for free uk', 'free morning after pill uk reddit')",morning after pill for free uk,free morning after pill uk reddit,9,3,google,2026-03-12 19:31:38.660451,abortion pill online,abortion pill online free,morning after for uk,reddit +abortion,"('morning after pill for free nhs', 'nhs makes morning after pill available for free across pharmacies in england')",morning after pill for free nhs,nhs makes morning after pill available for free across pharmacies in england,1,3,google,2026-03-12 19:31:39.544414,abortion pill online,abortion pill online free,morning after for nhs,makes available across pharmacies in england +abortion,"('morning after pill for free nhs', 'free morning after pill nhs pharmacy')",morning after pill for free nhs,free morning after pill nhs pharmacy,2,3,google,2026-03-12 19:31:39.544414,abortion pill online,abortion pill online free,morning after for nhs,pharmacy +abortion,"('morning after pill for free nhs', 'how to get free morning after pill uk')",morning after pill for free nhs,how to get free morning after pill uk,3,3,google,2026-03-12 19:31:39.544414,abortion pill online,abortion pill online free,morning after for nhs,how to get uk +abortion,"('morning after pill for free nhs', 'is the morning after pill free uk')",morning after pill for free nhs,is the morning after pill free uk,4,3,google,2026-03-12 19:31:39.544414,abortion pill online,abortion pill online free,morning after for nhs,is the uk +abortion,"('morning after pill for free nhs', 'morning after pill free at planned parenthood')",morning after pill for free nhs,morning after pill free at planned parenthood,5,3,google,2026-03-12 19:31:39.544414,abortion pill online,abortion pill online free,morning after for nhs,at planned parenthood +abortion,"('abortion pill online low cost', 'abortion pill online low income')",abortion pill online low cost,abortion pill online low income,1,3,google,2026-03-12 19:31:40.345872,abortion pill online,abortion pill online cost,low,income +abortion,"('abortion pill online low cost', 'abortion pill online cost')",abortion pill online low cost,abortion pill online cost,2,3,google,2026-03-12 19:31:40.345872,abortion pill online,abortion pill online cost,low,low +abortion,"('abortion pill online low cost', 'abortion pill near me online')",abortion pill online low cost,abortion pill near me online,3,3,google,2026-03-12 19:31:40.345872,abortion pill online,abortion pill online cost,low,near me +abortion,"('morning after pill price online', 'morning after pill price clicks online')",morning after pill price online,morning after pill price clicks online,1,3,google,2026-03-12 19:31:41.385110,abortion pill online,abortion pill online cost,morning after price,clicks +abortion,"('morning after pill price online', 'morning after pill online cheap')",morning after pill price online,morning after pill online cheap,2,3,google,2026-03-12 19:31:41.385110,abortion pill online,abortion pill online cost,morning after price,cheap +abortion,"('morning after pill price online', 'how much do morning after pill cost at clicks')",morning after pill price online,how much do morning after pill cost at clicks,3,3,google,2026-03-12 19:31:41.385110,abortion pill online,abortion pill online cost,morning after price,how much do cost at clicks +abortion,"('morning after pill price online', 'how much does morning after pills cost at clicks')",morning after pill price online,how much does morning after pills cost at clicks,4,3,google,2026-03-12 19:31:41.385110,abortion pill online,abortion pill online cost,morning after price,how much does pills cost at clicks +abortion,"('morning after pill price online', 'morning after pill price at clicks')",morning after pill price online,morning after pill price at clicks,5,3,google,2026-03-12 19:31:41.385110,abortion pill online,abortion pill online cost,morning after price,at clicks +abortion,"('morning after pill price online', 'morning after pill price walgreens')",morning after pill price online,morning after pill price walgreens,6,3,google,2026-03-12 19:31:41.385110,abortion pill online,abortion pill online cost,morning after price,walgreens +abortion,"('morning after pill price online', 'morning after pill price walmart')",morning after pill price online,morning after pill price walmart,7,3,google,2026-03-12 19:31:41.385110,abortion pill online,abortion pill online cost,morning after price,walmart +abortion,"('morning after pill price online', 'morning after pill price cvs')",morning after pill price online,morning after pill price cvs,8,3,google,2026-03-12 19:31:41.385110,abortion pill online,abortion pill online cost,morning after price,cvs +abortion,"('morning after pill price online', 'morning after pill cost walgreens')",morning after pill price online,morning after pill cost walgreens,9,3,google,2026-03-12 19:31:41.385110,abortion pill online,abortion pill online cost,morning after price,cost walgreens +abortion,"('abortion pill near me online', 'abortion pill in german online near me')",abortion pill near me online,abortion pill in german online near me,1,3,google,2026-03-12 19:31:42.357330,abortion pill online,abortion pill online cost,near me,in german +abortion,"('abortion pill near me online', 'abortion pill near me over the counter')",abortion pill near me online,abortion pill near me over the counter,2,3,google,2026-03-12 19:31:42.357330,abortion pill online,abortion pill online cost,near me,over the counter +abortion,"('abortion pill near me online', 'abortion pill near me same day')",abortion pill near me online,abortion pill near me same day,3,3,google,2026-03-12 19:31:42.357330,abortion pill online,abortion pill online cost,near me,same day +abortion,"('abortion pill near me online', 'abortion pill online near mississippi')",abortion pill near me online,abortion pill online near mississippi,4,3,google,2026-03-12 19:31:42.357330,abortion pill online,abortion pill online cost,near me,mississippi +abortion,"('abortion pill online prescription', 'morning after pill online prescription')",abortion pill online prescription,morning after pill online prescription,1,3,google,2026-03-12 19:31:43.832417,abortion pill online,abortion pill online cost,prescription,morning after +abortion,"('abortion pill online prescription', 'abortion pill prescribed online')",abortion pill online prescription,abortion pill prescribed online,2,3,google,2026-03-12 19:31:43.832417,abortion pill online,abortion pill online cost,prescription,prescribed +abortion,"('abortion pill online prescription', 'morning after pill online pharmacy')",abortion pill online prescription,morning after pill online pharmacy,3,3,google,2026-03-12 19:31:43.832417,abortion pill online,abortion pill online cost,prescription,morning after pharmacy +abortion,"('abortion pill in german online near me', 'abortion pill cost germany')",abortion pill in german online near me,abortion pill cost germany,1,3,google,2026-03-12 19:31:45.159398,abortion pill online,abortion pill online near me,in german,cost germany +abortion,"('abortion pill in german online near me', 'abortion pill in german')",abortion pill in german online near me,abortion pill in german,2,3,google,2026-03-12 19:31:45.159398,abortion pill online,abortion pill online near me,in german,in german +abortion,"('abortion pill online medicaid', 'abortion pill online free medicaid')",abortion pill online medicaid,abortion pill online free medicaid,1,3,google,2026-03-12 19:31:46.478144,abortion pill online,abortion pill online near me,medicaid,free +abortion,"('abortion pill online medicaid', 'does medicaid cover abortion pill')",abortion pill online medicaid,does medicaid cover abortion pill,2,3,google,2026-03-12 19:31:46.478144,abortion pill online,abortion pill online near me,medicaid,does cover +abortion,"('abortion pill online medicaid', 'abortion pill near me online')",abortion pill online medicaid,abortion pill near me online,3,3,google,2026-03-12 19:31:46.478144,abortion pill online,abortion pill online near me,medicaid,near me +abortion,"('abortion pill online medicaid', 'abortion pill online access')",abortion pill online medicaid,abortion pill online access,4,3,google,2026-03-12 19:31:46.478144,abortion pill online,abortion pill online near me,medicaid,access +abortion,"('abortion pill online medicaid', 'abortion pill online prescription')",abortion pill online medicaid,abortion pill online prescription,5,3,google,2026-03-12 19:31:46.478144,abortion pill online,abortion pill online near me,medicaid,prescription +abortion,"('abortion pill online medicaid', 'abortion pill online mississippi')",abortion pill online medicaid,abortion pill online mississippi,6,3,google,2026-03-12 19:31:46.478144,abortion pill online,abortion pill online near me,medicaid,mississippi +abortion,"('abortion pill online near mississippi', 'abortion pill online mississippi')",abortion pill online near mississippi,abortion pill online mississippi,1,3,google,2026-03-12 19:31:47.275239,abortion pill online,abortion pill online near me,mississippi,mississippi +abortion,"('abortion pill online near mississippi', 'abortion pill cost in mississippi')",abortion pill online near mississippi,abortion pill cost in mississippi,2,3,google,2026-03-12 19:31:47.275239,abortion pill online,abortion pill online near me,mississippi,cost in +abortion,"('abortion pill online near mississippi', 'abortion pill near me online')",abortion pill online near mississippi,abortion pill near me online,3,3,google,2026-03-12 19:31:47.275239,abortion pill online,abortion pill online near me,mississippi,me +abortion,"('abortion pill online near mississippi', 'abortion pill in mississippi')",abortion pill online near mississippi,abortion pill in mississippi,4,3,google,2026-03-12 19:31:47.275239,abortion pill online,abortion pill online near me,mississippi,in +abortion,"('morning after pill on amazon', 'best amazon morning after pill')",morning after pill on amazon,best amazon morning after pill,1,3,google,2026-03-12 19:31:48.248597,abortion pill online,abortion pill online amazon,morning after on,best +abortion,"('morning after pill on amazon', 'morning after pill amazon uk')",morning after pill on amazon,morning after pill amazon uk,2,3,google,2026-03-12 19:31:48.248597,abortion pill online,abortion pill online amazon,morning after on,uk +abortion,"('morning after pill on amazon', 'morning after pill amazon reddit')",morning after pill on amazon,morning after pill amazon reddit,3,3,google,2026-03-12 19:31:48.248597,abortion pill online,abortion pill online amazon,morning after on,reddit +abortion,"('morning after pill on amazon', 'day after pill amazon')",morning after pill on amazon,day after pill amazon,4,3,google,2026-03-12 19:31:48.248597,abortion pill online,abortion pill online amazon,morning after on,day +abortion,"('morning after pill on amazon', 'can you buy morning after pill on amazon')",morning after pill on amazon,can you buy morning after pill on amazon,5,3,google,2026-03-12 19:31:48.248597,abortion pill online,abortion pill online amazon,morning after on,can you buy +abortion,"('morning after pill on amazon', 'ella morning after pill amazon')",morning after pill on amazon,ella morning after pill amazon,6,3,google,2026-03-12 19:31:48.248597,abortion pill online,abortion pill online amazon,morning after on,ella +abortion,"('morning after pill on amazon', 'starting the pill after morning after pill')",morning after pill on amazon,starting the pill after morning after pill,7,3,google,2026-03-12 19:31:48.248597,abortion pill online,abortion pill online amazon,morning after on,starting the +abortion,"('morning after pill on amazon', 'when did morning after pill become available')",morning after pill on amazon,when did morning after pill become available,8,3,google,2026-03-12 19:31:48.248597,abortion pill online,abortion pill online amazon,morning after on,when did become available +abortion,"('morning after pill on amazon', 'can you take morning after pill once a month')",morning after pill on amazon,can you take morning after pill once a month,9,3,google,2026-03-12 19:31:48.248597,abortion pill online,abortion pill online amazon,morning after on,can you take once a month +abortion,"('best amazon morning after pill', 'amazon plan b reviews')",best amazon morning after pill,amazon plan b reviews,1,3,google,2026-03-12 19:31:49.241023,abortion pill online,abortion pill online amazon,best morning after,plan b reviews +abortion,"('best amazon morning after pill', 'new day plan b reviews')",best amazon morning after pill,new day plan b reviews,2,3,google,2026-03-12 19:31:49.241023,abortion pill online,abortion pill online amazon,best morning after,new day plan b reviews +abortion,"('best amazon morning after pill', 'new day emergency contraception reviews')",best amazon morning after pill,new day emergency contraception reviews,3,3,google,2026-03-12 19:31:49.241023,abortion pill online,abortion pill online amazon,best morning after,new day emergency contraception reviews +abortion,"('best amazon morning after pill', 'amazon morning after pill')",best amazon morning after pill,amazon morning after pill,4,3,google,2026-03-12 19:31:49.241023,abortion pill online,abortion pill online amazon,best morning after,best morning after +abortion,"('best amazon morning after pill', 'best morning after pill cvs')",best amazon morning after pill,best morning after pill cvs,5,3,google,2026-03-12 19:31:49.241023,abortion pill online,abortion pill online amazon,best morning after,cvs +abortion,"('abortion pill on amazon', 'morning after pill on amazon')",abortion pill on amazon,morning after pill on amazon,1,3,google,2026-03-12 19:31:50.168530,abortion pill online,abortion pill online amazon,on,morning after +abortion,"('abortion pill on amazon', 'abortion pill amazon pharmacy')",abortion pill on amazon,abortion pill amazon pharmacy,2,3,google,2026-03-12 19:31:50.168530,abortion pill online,abortion pill online amazon,on,pharmacy +abortion,"('abortion pill on amazon', 'abortion pill amazon reddit')",abortion pill on amazon,abortion pill amazon reddit,3,3,google,2026-03-12 19:31:50.168530,abortion pill online,abortion pill online amazon,on,reddit +abortion,"('abortion pill on amazon', 'abortion pill cost amazon')",abortion pill on amazon,abortion pill cost amazon,4,3,google,2026-03-12 19:31:50.168530,abortion pill online,abortion pill online amazon,on,cost +abortion,"('abortion pill on amazon', 'best amazon morning after pill')",abortion pill on amazon,best amazon morning after pill,5,3,google,2026-03-12 19:31:50.168530,abortion pill online,abortion pill online amazon,on,best morning after +abortion,"('abortion pill on amazon', 'morning after pill amazon uk')",abortion pill on amazon,morning after pill amazon uk,6,3,google,2026-03-12 19:31:50.168530,abortion pill online,abortion pill online amazon,on,morning after uk +abortion,"('abortion pill on amazon', 'morning after pill amazon reddit')",abortion pill on amazon,morning after pill amazon reddit,7,3,google,2026-03-12 19:31:50.168530,abortion pill online,abortion pill online amazon,on,morning after reddit +abortion,"('abortion pill on amazon', 'abortion pill online amazon')",abortion pill on amazon,abortion pill online amazon,8,3,google,2026-03-12 19:31:50.168530,abortion pill online,abortion pill online amazon,on,online +abortion,"('abortion pill on amazon', 'abortion pill name amazon')",abortion pill on amazon,abortion pill name amazon,9,3,google,2026-03-12 19:31:50.168530,abortion pill online,abortion pill online amazon,on,name +abortion,"('abortion pill online ga', 'abortion pill online georgia')",abortion pill online ga,abortion pill online georgia,1,3,google,2026-03-12 19:31:51.279052,abortion pill online,abortion pill online georgia,ga,georgia +abortion,"('abortion pill online ga', 'abortion pill online atlanta ga')",abortion pill online ga,abortion pill online atlanta ga,2,3,google,2026-03-12 19:31:51.279052,abortion pill online,abortion pill online georgia,ga,atlanta +abortion,"('abortion pill online ga', 'abortion pill near me online')",abortion pill online ga,abortion pill near me online,3,3,google,2026-03-12 19:31:51.279052,abortion pill online,abortion pill online georgia,ga,near me +abortion,"('abortion pill online ga', 'abortion pill in georgia')",abortion pill online ga,abortion pill in georgia,4,3,google,2026-03-12 19:31:51.279052,abortion pill online,abortion pill online georgia,ga,in georgia +abortion,"('abortion pill online atlanta ga', 'abortion pill in atlanta ga')",abortion pill online atlanta ga,abortion pill in atlanta ga,1,3,google,2026-03-12 19:31:52.439374,abortion pill online,abortion pill online georgia,atlanta ga,in +abortion,"('abortion pill online atlanta ga', 'abortion pill in georgia')",abortion pill online atlanta ga,abortion pill in georgia,2,3,google,2026-03-12 19:31:52.439374,abortion pill online,abortion pill online georgia,atlanta ga,in georgia +abortion,"('abortion pill online atlanta ga', 'abortion pill online ga')",abortion pill online atlanta ga,abortion pill online ga,3,3,google,2026-03-12 19:31:52.439374,abortion pill online,abortion pill online georgia,atlanta ga,atlanta ga +abortion,"('abortion pill online atlanta ga', 'abortion pill online georgia')",abortion pill online atlanta ga,abortion pill online georgia,4,3,google,2026-03-12 19:31:52.439374,abortion pill online,abortion pill online georgia,atlanta ga,georgia +abortion,"('abortion pill online atlanta ga', 'abortion pill atlanta georgia')",abortion pill online atlanta ga,abortion pill atlanta georgia,5,3,google,2026-03-12 19:31:52.439374,abortion pill online,abortion pill online georgia,atlanta ga,georgia +abortion,"('abortion pill in georgia', 'abortion clinics in georgia')",abortion pill in georgia,abortion clinics in georgia,1,3,google,2026-03-12 19:31:53.273398,abortion pill online,abortion pill online georgia,in,clinics +abortion,"('abortion pill in georgia', 'abortion options in georgia')",abortion pill in georgia,abortion options in georgia,2,3,google,2026-03-12 19:31:53.273398,abortion pill online,abortion pill online georgia,in,options +abortion,"('abortion pill in georgia', 'abortion clinics in georgia open now')",abortion pill in georgia,abortion clinics in georgia open now,3,3,google,2026-03-12 19:31:53.273398,abortion pill online,abortion pill online georgia,in,clinics open now +abortion,"('abortion pill in georgia', 'morning after pill in georgia')",abortion pill in georgia,morning after pill in georgia,4,3,google,2026-03-12 19:31:53.273398,abortion pill online,abortion pill online georgia,in,morning after +abortion,"('abortion pill in georgia', 'abortion pill legal in georgia')",abortion pill in georgia,abortion pill legal in georgia,5,3,google,2026-03-12 19:31:53.273398,abortion pill online,abortion pill online georgia,in,legal +abortion,"('abortion pill in georgia', 'abortion pill laws in georgia')",abortion pill in georgia,abortion pill laws in georgia,6,3,google,2026-03-12 19:31:53.273398,abortion pill online,abortion pill online georgia,in,laws +abortion,"('abortion pill in georgia', 'abortion pill clinic in georgia')",abortion pill in georgia,abortion pill clinic in georgia,7,3,google,2026-03-12 19:31:53.273398,abortion pill online,abortion pill online georgia,in,clinic +abortion,"('abortion pill in georgia', 'abortion pill georgia how many weeks')",abortion pill in georgia,abortion pill georgia how many weeks,8,3,google,2026-03-12 19:31:53.273398,abortion pill online,abortion pill online georgia,in,how many weeks +abortion,"('abortion pill in georgia', 'abortion pill georgia tbilisi')",abortion pill in georgia,abortion pill georgia tbilisi,9,3,google,2026-03-12 19:31:53.273398,abortion pill online,abortion pill online georgia,in,tbilisi +abortion,"('abortion pill online telehealth', 'telehealth for abortion pill')",abortion pill online telehealth,telehealth for abortion pill,1,3,google,2026-03-12 19:31:55.469871,abortion pill online,abortion pill online reviews,telehealth,for +abortion,"('abortion pill online telehealth', 'abortion pill near me online')",abortion pill online telehealth,abortion pill near me online,2,3,google,2026-03-12 19:31:55.469871,abortion pill online,abortion pill online reviews,telehealth,near me +abortion,"('abortion pill online telehealth', 'what is telemedicine abortion')",abortion pill online telehealth,what is telemedicine abortion,3,3,google,2026-03-12 19:31:55.469871,abortion pill online,abortion pill online reviews,telehealth,what is telemedicine +abortion,"('abortion pill online telehealth', 'abortion pill telemedicine')",abortion pill online telehealth,abortion pill telemedicine,4,3,google,2026-03-12 19:31:55.469871,abortion pill online,abortion pill online reviews,telehealth,telemedicine +abortion,"('abortion pill online telehealth', 'abortion pill online planned parenthood')",abortion pill online telehealth,abortion pill online planned parenthood,5,3,google,2026-03-12 19:31:55.469871,abortion pill online,abortion pill online reviews,telehealth,planned parenthood +abortion,"('abortion clinics in ohio', 'abortion clinics in ohio near me')",abortion clinics in ohio,abortion clinics in ohio near me,1,3,google,2026-03-12 19:31:56.595922,abortion pill online,abortion pill online ohio,clinics in,near me +abortion,"('abortion clinics in ohio', 'abortion centers in ohio')",abortion clinics in ohio,abortion centers in ohio,2,3,google,2026-03-12 19:31:56.595922,abortion pill online,abortion pill online ohio,clinics in,centers +abortion,"('abortion clinics in ohio', 'abortion doctors in ohio')",abortion clinics in ohio,abortion doctors in ohio,3,3,google,2026-03-12 19:31:56.595922,abortion pill online,abortion pill online ohio,clinics in,doctors +abortion,"('abortion clinics in ohio', 'free abortion clinics in ohio')",abortion clinics in ohio,free abortion clinics in ohio,4,3,google,2026-03-12 19:31:56.595922,abortion pill online,abortion pill online ohio,clinics in,free +abortion,"('abortion clinics in ohio', 'abortion clinics in columbus ohio')",abortion clinics in ohio,abortion clinics in columbus ohio,5,3,google,2026-03-12 19:31:56.595922,abortion pill online,abortion pill online ohio,clinics in,columbus +abortion,"('abortion clinics in ohio', 'abortion clinics in cincinnati ohio')",abortion clinics in ohio,abortion clinics in cincinnati ohio,6,3,google,2026-03-12 19:31:56.595922,abortion pill online,abortion pill online ohio,clinics in,cincinnati +abortion,"('abortion clinics in ohio', 'abortion clinics in cleveland ohio')",abortion clinics in ohio,abortion clinics in cleveland ohio,7,3,google,2026-03-12 19:31:56.595922,abortion pill online,abortion pill online ohio,clinics in,cleveland +abortion,"('abortion clinics in ohio', 'abortion clinics in dayton ohio')",abortion clinics in ohio,abortion clinics in dayton ohio,8,3,google,2026-03-12 19:31:56.595922,abortion pill online,abortion pill online ohio,clinics in,dayton +abortion,"('abortion clinics in ohio', 'abortion clinics in toledo ohio')",abortion clinics in ohio,abortion clinics in toledo ohio,9,3,google,2026-03-12 19:31:56.595922,abortion pill online,abortion pill online ohio,clinics in,toledo +abortion,"('abortion clinics in ohio near me', 'abortion clinics in cleveland ohio')",abortion clinics in ohio near me,abortion clinics in cleveland ohio,1,3,google,2026-03-12 19:31:57.931412,abortion pill online,abortion pill online ohio,clinics in near me,cleveland +abortion,"('abortion clinics in ohio near me', 'abortion clinics in columbus ohio')",abortion clinics in ohio near me,abortion clinics in columbus ohio,2,3,google,2026-03-12 19:31:57.931412,abortion pill online,abortion pill online ohio,clinics in near me,columbus +abortion,"('abortion pill ohio', 'abortion pill ohio near me')",abortion pill ohio,abortion pill ohio near me,1,3,google,2026-03-12 19:31:59.207060,abortion pill online,abortion pill online ohio,ohio,near me +abortion,"('abortion pill ohio', 'abortion pill ohio cvs')",abortion pill ohio,abortion pill ohio cvs,2,3,google,2026-03-12 19:31:59.207060,abortion pill online,abortion pill online ohio,ohio,cvs +abortion,"('abortion pill ohio', 'abortion pill ohio online')",abortion pill ohio,abortion pill ohio online,3,3,google,2026-03-12 19:31:59.207060,abortion pill online,abortion pill online ohio,ohio,online +abortion,"('abortion pill ohio', 'abortion pill ohio free')",abortion pill ohio,abortion pill ohio free,4,3,google,2026-03-12 19:31:59.207060,abortion pill online,abortion pill online ohio,ohio,free +abortion,"('abortion pill ohio', 'abortion pill ohio name')",abortion pill ohio,abortion pill ohio name,5,3,google,2026-03-12 19:31:59.207060,abortion pill online,abortion pill online ohio,ohio,name +abortion,"('abortion pill ohio', 'abortion pill ohio reddit')",abortion pill ohio,abortion pill ohio reddit,6,3,google,2026-03-12 19:31:59.207060,abortion pill online,abortion pill online ohio,ohio,reddit +abortion,"('abortion pill ohio', 'abortion pill ohio side effects')",abortion pill ohio,abortion pill ohio side effects,7,3,google,2026-03-12 19:31:59.207060,abortion pill online,abortion pill online ohio,ohio,side effects +abortion,"('abortion pill ohio', 'abortion clinic ohio')",abortion pill ohio,abortion clinic ohio,8,3,google,2026-03-12 19:31:59.207060,abortion pill online,abortion pill online ohio,ohio,clinic +abortion,"('abortion pill ohio', 'morning after pill ohio')",abortion pill ohio,morning after pill ohio,9,3,google,2026-03-12 19:31:59.207060,abortion pill online,abortion pill online ohio,ohio,morning after +abortion,"('abortion pill legal in ohio', 'abortion pill laws in ohio')",abortion pill legal in ohio,abortion pill laws in ohio,1,3,google,2026-03-12 19:32:00.007527,abortion pill online,abortion pill online ohio,legal in,laws +abortion,"('abortion pill legal in ohio', 'is abortion pill available in ohio')",abortion pill legal in ohio,is abortion pill available in ohio,2,3,google,2026-03-12 19:32:00.007527,abortion pill online,abortion pill online ohio,legal in,is available +abortion,"('abortion pill legal in ohio', 'are abortion pills illegal in ohio')",abortion pill legal in ohio,are abortion pills illegal in ohio,3,3,google,2026-03-12 19:32:00.007527,abortion pill online,abortion pill online ohio,legal in,are pills illegal +abortion,"('abortion pill legal in ohio', 'is medication abortion legal in ohio')",abortion pill legal in ohio,is medication abortion legal in ohio,4,3,google,2026-03-12 19:32:00.007527,abortion pill online,abortion pill online ohio,legal in,is medication +abortion,"('abortion pill legal in ohio', 'is the morning after pill legal in ohio')",abortion pill legal in ohio,is the morning after pill legal in ohio,5,3,google,2026-03-12 19:32:00.007527,abortion pill online,abortion pill online ohio,legal in,is the morning after +abortion,"('abortion pill legal in ohio', 'abortion rights in ohio')",abortion pill legal in ohio,abortion rights in ohio,6,3,google,2026-03-12 19:32:00.007527,abortion pill online,abortion pill online ohio,legal in,rights +abortion,"('abortion pill legal in ohio', 'abortion laws in ohio')",abortion pill legal in ohio,abortion laws in ohio,7,3,google,2026-03-12 19:32:00.007527,abortion pill online,abortion pill online ohio,legal in,laws +abortion,"('abortion pill legal in ohio', 'is abortion legal in ohio')",abortion pill legal in ohio,is abortion legal in ohio,8,3,google,2026-03-12 19:32:00.007527,abortion pill online,abortion pill online ohio,legal in,is +abortion,"('abortion pill laws in ohio', 'abortion pill legal in ohio')",abortion pill laws in ohio,abortion pill legal in ohio,1,3,google,2026-03-12 19:32:01.094569,abortion pill online,abortion pill online ohio,laws in,legal +abortion,"('abortion pill laws in ohio', 'abortion laws in ohio')",abortion pill laws in ohio,abortion laws in ohio,2,3,google,2026-03-12 19:32:01.094569,abortion pill online,abortion pill online ohio,laws in,laws in +abortion,"('abortion pill laws in ohio', 'abortion rights in ohio')",abortion pill laws in ohio,abortion rights in ohio,3,3,google,2026-03-12 19:32:01.094569,abortion pill online,abortion pill online ohio,laws in,rights +abortion,"('abortion pill laws in ohio', 'abortion laws in ohio 2020')",abortion pill laws in ohio,abortion laws in ohio 2020,4,3,google,2026-03-12 19:32:01.094569,abortion pill online,abortion pill online ohio,laws in,2020 +abortion,"('abortion pill laws in ohio', 'abortion laws in ohio 2021')",abortion pill laws in ohio,abortion laws in ohio 2021,5,3,google,2026-03-12 19:32:01.094569,abortion pill online,abortion pill online ohio,laws in,2021 +abortion,"('abortion pill online az', 'abortion pill in arizona')",abortion pill online az,abortion pill in arizona,1,3,google,2026-03-12 19:32:02.413184,abortion pill online,abortion pill online abuzz,az,in arizona +abortion,"('abortion pill online az', 'abortion pill near me online')",abortion pill online az,abortion pill near me online,2,3,google,2026-03-12 19:32:02.413184,abortion pill online,abortion pill online abuzz,az,near me +abortion,"('abortion pill online az', 'abortion pill online amazon')",abortion pill online az,abortion pill online amazon,3,3,google,2026-03-12 19:32:02.413184,abortion pill online,abortion pill online abuzz,az,amazon +abortion,"('abortion pill online az', 'abortion pill online prescription')",abortion pill online az,abortion pill online prescription,4,3,google,2026-03-12 19:32:02.413184,abortion pill online,abortion pill online abuzz,az,prescription +abortion,"('abortion pill online access', 'abortion pill near me online')",abortion pill online access,abortion pill near me online,1,3,google,2026-03-12 19:32:03.405080,abortion pill online,abortion pill online abuzz,access,near me +abortion,"('abortion pill online access', 'abortion pill online prescription')",abortion pill online access,abortion pill online prescription,2,3,google,2026-03-12 19:32:03.405080,abortion pill online,abortion pill online abuzz,access,prescription +abortion,"('abortion pill online access', 'abortion pill online purchase')",abortion pill online access,abortion pill online purchase,3,3,google,2026-03-12 19:32:03.405080,abortion pill online,abortion pill online abuzz,access,purchase +abortion,"('abortion pill online prices', 'morning after pill online purchase')",abortion pill online prices,morning after pill online purchase,1,3,google,2026-03-12 19:32:04.328495,abortion pill online,abortion pill online cheapest,prices,morning after purchase +abortion,"('abortion pill online prices', 'morning after pill online cheap')",abortion pill online prices,morning after pill online cheap,2,3,google,2026-03-12 19:32:04.328495,abortion pill online,abortion pill online cheapest,prices,morning after cheap +abortion,"('abortion pill online prices', 'morning after pill price online')",abortion pill online prices,morning after pill price online,3,3,google,2026-03-12 19:32:04.328495,abortion pill online,abortion pill online cheapest,prices,morning after price +abortion,"('abortion pill online prices', 'abortion pill online purchase')",abortion pill online prices,abortion pill online purchase,4,3,google,2026-03-12 19:32:04.328495,abortion pill online,abortion pill online cheapest,prices,purchase +abortion,"('abortion pill online prices', 'abortion pill near me online')",abortion pill online prices,abortion pill near me online,5,3,google,2026-03-12 19:32:04.328495,abortion pill online,abortion pill online cheapest,prices,near me +abortion,"('abortion pill online prices', 'abortion pill online cost')",abortion pill online prices,abortion pill online cost,6,3,google,2026-03-12 19:32:04.328495,abortion pill online,abortion pill online cheapest,prices,cost +abortion,"('abortion pill online prices', 'abortion pill online prescription')",abortion pill online prices,abortion pill online prescription,7,3,google,2026-03-12 19:32:04.328495,abortion pill online,abortion pill online cheapest,prices,prescription +abortion,"('morning after pill online cheap', 'morning after pill online buy')",morning after pill online cheap,morning after pill online buy,1,3,google,2026-03-12 19:32:05.778856,abortion pill online,abortion pill online cheapest,morning after cheap,buy +abortion,"('morning after pill online cheap', 'morning after pill buy online uk')",morning after pill online cheap,morning after pill buy online uk,2,3,google,2026-03-12 19:32:05.778856,abortion pill online,abortion pill online cheapest,morning after cheap,buy uk +abortion,"('morning after pill online cheap', 'morning after pill buy online australia')",morning after pill online cheap,morning after pill buy online australia,3,3,google,2026-03-12 19:32:05.778856,abortion pill online,abortion pill online cheapest,morning after cheap,buy australia +abortion,"('morning after pill online cheap', 'which pharmacies do free morning after pill')",morning after pill online cheap,which pharmacies do free morning after pill,4,3,google,2026-03-12 19:32:05.778856,abortion pill online,abortion pill online cheapest,morning after cheap,which pharmacies do free +abortion,"('morning after pill online cheap', 'how much do morning after pill cost at clicks')",morning after pill online cheap,how much do morning after pill cost at clicks,5,3,google,2026-03-12 19:32:05.778856,abortion pill online,abortion pill online cheapest,morning after cheap,how much do cost at clicks +abortion,"('morning after pill online cheap', 'morning after pill cheap near me')",morning after pill online cheap,morning after pill cheap near me,6,3,google,2026-03-12 19:32:05.778856,abortion pill online,abortion pill online cheapest,morning after cheap,near me +abortion,"('morning after pill online cheap', 'cheap morning after pill walgreens')",morning after pill online cheap,cheap morning after pill walgreens,7,3,google,2026-03-12 19:32:05.778856,abortion pill online,abortion pill online cheapest,morning after cheap,walgreens +abortion,"('morning after pill online cheap', 'morning after pill on amazon')",morning after pill online cheap,morning after pill on amazon,8,3,google,2026-03-12 19:32:05.778856,abortion pill online,abortion pill online cheapest,morning after cheap,on amazon +abortion,"('morning after pill online cheap', 'cheap morning after pill cvs')",morning after pill online cheap,cheap morning after pill cvs,9,3,google,2026-03-12 19:32:05.778856,abortion pill online,abortion pill online cheapest,morning after cheap,cvs +abortion,"('abortion clinic san jose california', 'abortion clinic in san jose ca')",abortion clinic san jose california,abortion clinic in san jose ca,1,3,google,2026-03-12 19:32:06.964171,abortion clinic,abortion clinic san jose,california,in ca +abortion,"('abortion clinic san jose california', 'abortion clinic san jose')",abortion clinic san jose california,abortion clinic san jose,2,3,google,2026-03-12 19:32:06.964171,abortion clinic,abortion clinic san jose,california,california +abortion,"(""women's clinic san jose"", ""saint joseph's women's clinic"")",women's clinic san jose,saint joseph's women's clinic,1,3,google,2026-03-12 19:32:08.173823,abortion clinic,abortion clinic san jose,women's,saint joseph's +abortion,"(""women's clinic san jose"", ""women's health center san jose"")",women's clinic san jose,women's health center san jose,2,3,google,2026-03-12 19:32:08.173823,abortion clinic,abortion clinic san jose,women's,health center +abortion,"(""women's clinic san jose"", ""women's clinic st joseph mo"")",women's clinic san jose,women's clinic st joseph mo,3,3,google,2026-03-12 19:32:08.173823,abortion clinic,abortion clinic san jose,women's,st joseph mo +abortion,"(""women's clinic san jose"", ""women's clinic st joseph pavilion"")",women's clinic san jose,women's clinic st joseph pavilion,4,3,google,2026-03-12 19:32:08.173823,abortion clinic,abortion clinic san jose,women's,st joseph pavilion +abortion,"(""women's clinic san jose"", ""women's health clinic san jose"")",women's clinic san jose,women's health clinic san jose,5,3,google,2026-03-12 19:32:08.173823,abortion clinic,abortion clinic san jose,women's,health +abortion,"(""women's clinic san jose"", ""women's health clinic st joseph's hospital hamilton"")",women's clinic san jose,women's health clinic st joseph's hospital hamilton,6,3,google,2026-03-12 19:32:08.173823,abortion clinic,abortion clinic san jose,women's,health st joseph's hospital hamilton +abortion,"(""women's clinic san jose"", ""women's health clinic st joseph mo"")",women's clinic san jose,women's health clinic st joseph mo,7,3,google,2026-03-12 19:32:08.173823,abortion clinic,abortion clinic san jose,women's,health st joseph mo +abortion,"(""women's clinic san jose"", ""women's health clinic st joseph"")",women's clinic san jose,women's health clinic st joseph,8,3,google,2026-03-12 19:32:08.173823,abortion clinic,abortion clinic san jose,women's,health st joseph +abortion,"(""women's clinic san jose"", ""women's outpatient clinic st joseph"")",women's clinic san jose,women's outpatient clinic st joseph,9,3,google,2026-03-12 19:32:08.173823,abortion clinic,abortion clinic san jose,women's,outpatient st joseph +abortion,"(""saint joseph's women's clinic"", ""st joseph women's clinic tacoma"")",saint joseph's women's clinic,st joseph women's clinic tacoma,1,3,google,2026-03-12 19:32:09.438432,abortion clinic,abortion clinic san jose,saint joseph's women's,st joseph tacoma +abortion,"(""saint joseph's women's clinic"", ""st joseph women's clinic reading pa"")",saint joseph's women's clinic,st joseph women's clinic reading pa,2,3,google,2026-03-12 19:32:09.438432,abortion clinic,abortion clinic san jose,saint joseph's women's,st joseph reading pa +abortion,"(""saint joseph's women's clinic"", ""st joseph women's clinic lexington ky"")",saint joseph's women's clinic,st joseph women's clinic lexington ky,3,3,google,2026-03-12 19:32:09.438432,abortion clinic,abortion clinic san jose,saint joseph's women's,st joseph lexington ky +abortion,"(""saint joseph's women's clinic"", ""saint joseph women's hospital"")",saint joseph's women's clinic,saint joseph women's hospital,4,3,google,2026-03-12 19:32:09.438432,abortion clinic,abortion clinic san jose,saint joseph's women's,joseph hospital +abortion,"(""saint joseph's women's clinic"", ""saint joseph women's hospital tampa"")",saint joseph's women's clinic,saint joseph women's hospital tampa,5,3,google,2026-03-12 19:32:09.438432,abortion clinic,abortion clinic san jose,saint joseph's women's,joseph hospital tampa +abortion,"(""saint joseph's women's clinic"", ""saint joseph women's hospital lexington ky"")",saint joseph's women's clinic,saint joseph women's hospital lexington ky,6,3,google,2026-03-12 19:32:09.438432,abortion clinic,abortion clinic san jose,saint joseph's women's,joseph hospital lexington ky +abortion,"(""saint joseph's women's clinic"", ""saint joseph's women's health center"")",saint joseph's women's clinic,saint joseph's women's health center,7,3,google,2026-03-12 19:32:09.438432,abortion clinic,abortion clinic san jose,saint joseph's women's,health center +abortion,"(""saint joseph's women's clinic"", ""st joseph's women's hospital tampa fl"")",saint joseph's women's clinic,st joseph's women's hospital tampa fl,8,3,google,2026-03-12 19:32:09.438432,abortion clinic,abortion clinic san jose,saint joseph's women's,st hospital tampa fl +abortion,"(""saint joseph's women's clinic"", ""st joseph's women's hospital reviews"")",saint joseph's women's clinic,st joseph's women's hospital reviews,9,3,google,2026-03-12 19:32:09.438432,abortion clinic,abortion clinic san jose,saint joseph's women's,st hospital reviews +abortion,"(""women's clinic st joseph mo"", ""women's health clinic st joseph mo"")",women's clinic st joseph mo,women's health clinic st joseph mo,1,3,google,2026-03-12 19:32:10.579060,abortion clinic,abortion clinic san jose,women's st joseph mo,health +abortion,"(""women's clinic st joseph mo"", ""willowbrook women's center st joseph mo"")",women's clinic st joseph mo,willowbrook women's center st joseph mo,2,3,google,2026-03-12 19:32:10.579060,abortion clinic,abortion clinic san jose,women's st joseph mo,willowbrook center +abortion,"(""women's clinic st joseph mo"", ""women's clinic st joseph"")",women's clinic st joseph mo,women's clinic st joseph,3,3,google,2026-03-12 19:32:10.579060,abortion clinic,abortion clinic san jose,women's st joseph mo,women's st joseph mo +abortion,"(""women's clinic st joseph mo"", ""women's health st joseph missouri"")",women's clinic st joseph mo,women's health st joseph missouri,4,3,google,2026-03-12 19:32:10.579060,abortion clinic,abortion clinic san jose,women's st joseph mo,health missouri +abortion,"(""women's clinic st joseph pavilion"", ""women's clinic st joseph"")",women's clinic st joseph pavilion,women's clinic st joseph,1,3,google,2026-03-12 19:32:11.973860,abortion clinic,abortion clinic san jose,women's st joseph pavilion,women's st joseph pavilion +abortion,"(""women's clinic st joseph pavilion"", ""women's clinic st joseph mo"")",women's clinic st joseph pavilion,women's clinic st joseph mo,2,3,google,2026-03-12 19:32:11.973860,abortion clinic,abortion clinic san jose,women's st joseph pavilion,mo +abortion,"(""women's clinic st joseph pavilion"", ""st joseph's women's pavilion"")",women's clinic st joseph pavilion,st joseph's women's pavilion,3,3,google,2026-03-12 19:32:11.973860,abortion clinic,abortion clinic san jose,women's st joseph pavilion,joseph's +abortion,"(""women's clinic st joseph pavilion"", ""women's health clinic st joseph mo"")",women's clinic st joseph pavilion,women's health clinic st joseph mo,4,3,google,2026-03-12 19:32:11.973860,abortion clinic,abortion clinic san jose,women's st joseph pavilion,health mo +abortion,"(""women's clinic st joseph pavilion"", ""women's pavilion joplin missouri"")",women's clinic st joseph pavilion,women's pavilion joplin missouri,5,3,google,2026-03-12 19:32:11.973860,abortion clinic,abortion clinic san jose,women's st joseph pavilion,joplin missouri +abortion,"(""women's health clinic san jose"", ""women's health clinic st joseph's hospital hamilton"")",women's health clinic san jose,women's health clinic st joseph's hospital hamilton,1,3,google,2026-03-12 19:32:13.148325,abortion clinic,abortion clinic san jose,women's health,st joseph's hospital hamilton +abortion,"(""women's health clinic san jose"", ""women's health clinic st joseph mo"")",women's health clinic san jose,women's health clinic st joseph mo,2,3,google,2026-03-12 19:32:13.148325,abortion clinic,abortion clinic san jose,women's health,st joseph mo +abortion,"(""women's health clinic san jose"", ""women's health clinic st joseph"")",women's health clinic san jose,women's health clinic st joseph,3,3,google,2026-03-12 19:32:13.148325,abortion clinic,abortion clinic san jose,women's health,st joseph +abortion,"(""women's health clinic san jose"", ""women's health care st joseph"")",women's health clinic san jose,women's health care st joseph,4,3,google,2026-03-12 19:32:13.148325,abortion clinic,abortion clinic san jose,women's health,care st joseph +abortion,"(""women's health clinic san jose"", ""women's health centre st joseph's hospital"")",women's health clinic san jose,women's health centre st joseph's hospital,5,3,google,2026-03-12 19:32:13.148325,abortion clinic,abortion clinic san jose,women's health,centre st joseph's hospital +abortion,"(""women's health clinic san jose"", ""women's health clinic st joseph's saint john"")",women's health clinic san jose,women's health clinic st joseph's saint john,6,3,google,2026-03-12 19:32:13.148325,abortion clinic,abortion clinic san jose,women's health,st joseph's saint john +abortion,"(""women's health clinic san jose"", ""women's health concerns clinic st joseph"")",women's health clinic san jose,women's health concerns clinic st joseph,7,3,google,2026-03-12 19:32:13.148325,abortion clinic,abortion clinic san jose,women's health,concerns st joseph +abortion,"(""women's health clinic san jose"", ""women's health clinic san jose ca"")",women's health clinic san jose,women's health clinic san jose ca,8,3,google,2026-03-12 19:32:13.148325,abortion clinic,abortion clinic san jose,women's health,ca +abortion,"(""women's health clinic san jose"", ""women's health clinic san jacinto"")",women's health clinic san jose,women's health clinic san jacinto,9,3,google,2026-03-12 19:32:13.148325,abortion clinic,abortion clinic san jose,women's health,jacinto +abortion,"('abortion clinic near st joseph mi', 'first abortion clinic in usa')",abortion clinic near st joseph mi,first abortion clinic in usa,1,3,google,2026-03-12 19:32:14.233321,abortion clinic,abortion clinic san jose,near st joseph mi,first in usa +abortion,"('abortion clinic near st joseph mi', 'abortion clinic near me surgical')",abortion clinic near st joseph mi,abortion clinic near me surgical,2,3,google,2026-03-12 19:32:14.233321,abortion clinic,abortion clinic san jose,near st joseph mi,me surgical +abortion,"('abortion clinic near st joseph mi', 'where was the first abortion clinic')",abortion clinic near st joseph mi,where was the first abortion clinic,3,3,google,2026-03-12 19:32:14.233321,abortion clinic,abortion clinic san jose,near st joseph mi,where was the first +abortion,"('abortion clinic near st joseph mi', 'abortion clinic near st. louis mo')",abortion clinic near st joseph mi,abortion clinic near st. louis mo,4,3,google,2026-03-12 19:32:14.233321,abortion clinic,abortion clinic san jose,near st joseph mi,st. louis mo +abortion,"('abortion clinic near st joseph mi', 'abortion clinic near st. augustine fl')",abortion clinic near st joseph mi,abortion clinic near st. augustine fl,5,3,google,2026-03-12 19:32:14.233321,abortion clinic,abortion clinic san jose,near st joseph mi,st. augustine fl +abortion,"('abortion clinic near st joseph mi', 'abortion clinic near st paul mn')",abortion clinic near st joseph mi,abortion clinic near st paul mn,6,3,google,2026-03-12 19:32:14.233321,abortion clinic,abortion clinic san jose,near st joseph mi,paul mn +abortion,"('abortion clinic near st joseph mi', 'abortion clinic near st. petersburg fl')",abortion clinic near st joseph mi,abortion clinic near st. petersburg fl,7,3,google,2026-03-12 19:32:14.233321,abortion clinic,abortion clinic san jose,near st joseph mi,st. petersburg fl +abortion,"('abortion clinic near st joseph mi', 'abortion clinic near st louis')",abortion clinic near st joseph mi,abortion clinic near st louis,8,3,google,2026-03-12 19:32:14.233321,abortion clinic,abortion clinic san jose,near st joseph mi,louis +abortion,"('surgical abortion clinics near me', 'surgical abortion clinics near me open now')",surgical abortion clinics near me,surgical abortion clinics near me open now,1,3,google,2026-03-12 19:32:15.327378,abortion clinic,abortion clinic san jose,surgical clinics near me,open now +abortion,"('surgical abortion clinics near me', 'surgical abortion doctors near me')",surgical abortion clinics near me,surgical abortion doctors near me,2,3,google,2026-03-12 19:32:15.327378,abortion clinic,abortion clinic san jose,surgical clinics near me,doctors +abortion,"('surgical abortion clinics near me', 'surgical abortion centers near me')",surgical abortion clinics near me,surgical abortion centers near me,3,3,google,2026-03-12 19:32:15.327378,abortion clinic,abortion clinic san jose,surgical clinics near me,centers +abortion,"('surgical abortion clinics near me', 'private surgical abortion clinic near me')",surgical abortion clinics near me,private surgical abortion clinic near me,4,3,google,2026-03-12 19:32:15.327378,abortion clinic,abortion clinic san jose,surgical clinics near me,private clinic +abortion,"('surgical abortion clinics near me', 'top rated surgical abortion clinics near me')",surgical abortion clinics near me,top rated surgical abortion clinics near me,5,3,google,2026-03-12 19:32:15.327378,abortion clinic,abortion clinic san jose,surgical clinics near me,top rated +abortion,"('surgical abortion clinics near me', 'surgical abortion clinics melbourne')",surgical abortion clinics near me,surgical abortion clinics melbourne,6,3,google,2026-03-12 19:32:15.327378,abortion clinic,abortion clinic san jose,surgical clinics near me,melbourne +abortion,"('surgical abortion clinics near me', 'surgical abortion centres near me')",surgical abortion clinics near me,surgical abortion centres near me,7,3,google,2026-03-12 19:32:15.327378,abortion clinic,abortion clinic san jose,surgical clinics near me,centres +abortion,"('abortion clinic santa rosa ca', ""women's recovery services santa rosa ca"")",abortion clinic santa rosa ca,women's recovery services santa rosa ca,1,3,google,2026-03-12 19:32:16.752190,abortion clinic,abortion clinic santa rosa,ca,women's recovery services +abortion,"('abortion clinic santa rosa ca', ""women's recovery center santa rosa ca"")",abortion clinic santa rosa ca,women's recovery center santa rosa ca,2,3,google,2026-03-12 19:32:16.752190,abortion clinic,abortion clinic santa rosa,ca,women's recovery center +abortion,"('abortion clinic santa rosa ca', 'free abortion clinic near me')",abortion clinic santa rosa ca,free abortion clinic near me,3,3,google,2026-03-12 19:32:16.752190,abortion clinic,abortion clinic santa rosa,ca,free near me +abortion,"('abortion clinic santa rosa ca', 'free abortion clinics in california')",abortion clinic santa rosa ca,free abortion clinics in california,4,3,google,2026-03-12 19:32:16.752190,abortion clinic,abortion clinic santa rosa,ca,free clinics in california +abortion,"('abortion clinic santa rosa ca', 'abortion clinic open sunday near me')",abortion clinic santa rosa ca,abortion clinic open sunday near me,5,3,google,2026-03-12 19:32:16.752190,abortion clinic,abortion clinic santa rosa,ca,open sunday near me +abortion,"('abortion clinic santa rosa ca', 'abortion clinic santa rosa')",abortion clinic santa rosa ca,abortion clinic santa rosa,6,3,google,2026-03-12 19:32:16.752190,abortion clinic,abortion clinic santa rosa,ca,ca +abortion,"('abortion clinic santa rosa ca', 'abortion clinic roseville ca')",abortion clinic santa rosa ca,abortion clinic roseville ca,7,3,google,2026-03-12 19:32:16.752190,abortion clinic,abortion clinic santa rosa,ca,roseville +abortion,"(""women's clinic santa rosa"", ""women's health center santa rosa"")",women's clinic santa rosa,women's health center santa rosa,1,3,google,2026-03-12 19:32:17.853526,abortion clinic,abortion clinic santa rosa,women's,health center +abortion,"(""women's clinic santa rosa"", ""women's health clinic santa rosa"")",women's clinic santa rosa,women's health clinic santa rosa,2,3,google,2026-03-12 19:32:17.853526,abortion clinic,abortion clinic santa rosa,women's,health +abortion,"(""women's clinic santa rosa"", ""sutter women's health center santa rosa"")",women's clinic santa rosa,sutter women's health center santa rosa,3,3,google,2026-03-12 19:32:17.853526,abortion clinic,abortion clinic santa rosa,women's,sutter health center +abortion,"(""women's clinic santa rosa"", ""women's clinic santa cruz"")",women's clinic santa rosa,women's clinic santa cruz,4,3,google,2026-03-12 19:32:17.853526,abortion clinic,abortion clinic santa rosa,women's,cruz +abortion,"(""women's clinic santa rosa"", ""women's clinic santa maria"")",women's clinic santa rosa,women's clinic santa maria,5,3,google,2026-03-12 19:32:17.853526,abortion clinic,abortion clinic santa rosa,women's,maria +abortion,"(""women's clinic santa rosa"", ""women's clinic santa fe"")",women's clinic santa rosa,women's clinic santa fe,6,3,google,2026-03-12 19:32:17.853526,abortion clinic,abortion clinic santa rosa,women's,fe +abortion,"(""women's clinic santa rosa"", ""women's clinic santa barbara"")",women's clinic santa rosa,women's clinic santa barbara,7,3,google,2026-03-12 19:32:17.853526,abortion clinic,abortion clinic santa rosa,women's,barbara +abortion,"(""women's health clinic santa rosa"", ""women's health santa rosa ca"")",women's health clinic santa rosa,women's health santa rosa ca,1,3,google,2026-03-12 19:32:18.722403,abortion clinic,abortion clinic santa rosa,women's health,ca +abortion,"(""women's health clinic santa rosa"", ""women's health center santa rosa"")",women's health clinic santa rosa,women's health center santa rosa,2,3,google,2026-03-12 19:32:18.722403,abortion clinic,abortion clinic santa rosa,women's health,center +abortion,"(""women's health clinic santa rosa"", ""women's health clinic santa cruz"")",women's health clinic santa rosa,women's health clinic santa cruz,3,3,google,2026-03-12 19:32:18.722403,abortion clinic,abortion clinic santa rosa,women's health,cruz +abortion,"(""women's health clinic santa rosa"", ""women's health clinic santa fe nm"")",women's health clinic santa rosa,women's health clinic santa fe nm,4,3,google,2026-03-12 19:32:18.722403,abortion clinic,abortion clinic santa rosa,women's health,fe nm +abortion,"('free abortion clinic near me', 'free abortion clinic near me open now')",free abortion clinic near me,free abortion clinic near me open now,1,3,google,2026-03-12 19:32:20.132445,abortion clinic,abortion clinic santa rosa,free near me,open now +abortion,"('free abortion clinic near me', 'free abortion clinic near me volunteer')",free abortion clinic near me,free abortion clinic near me volunteer,2,3,google,2026-03-12 19:32:20.132445,abortion clinic,abortion clinic santa rosa,free near me,volunteer +abortion,"('free abortion clinic near me', 'free abortion clinic near me within 5 mi')",free abortion clinic near me,free abortion clinic near me within 5 mi,3,3,google,2026-03-12 19:32:20.132445,abortion clinic,abortion clinic santa rosa,free near me,within 5 mi +abortion,"('free abortion clinic near me', 'free abortion clinic near me within 20 mi')",free abortion clinic near me,free abortion clinic near me within 20 mi,4,3,google,2026-03-12 19:32:20.132445,abortion clinic,abortion clinic santa rosa,free near me,within 20 mi +abortion,"('free abortion clinic near me', 'free abortion clinic near me within 8.1 km')",free abortion clinic near me,free abortion clinic near me within 8.1 km,5,3,google,2026-03-12 19:32:20.132445,abortion clinic,abortion clinic santa rosa,free near me,within 8.1 km +abortion,"('free abortion clinic near me', ""free women's clinic near me"")",free abortion clinic near me,free women's clinic near me,6,3,google,2026-03-12 19:32:20.132445,abortion clinic,abortion clinic santa rosa,free near me,women's +abortion,"('free abortion clinic near me', 'free abortion center near me')",free abortion clinic near me,free abortion center near me,7,3,google,2026-03-12 19:32:20.132445,abortion clinic,abortion clinic santa rosa,free near me,center +abortion,"('free abortion clinic near me', ""free women's clinic near me no insurance"")",free abortion clinic near me,free women's clinic near me no insurance,8,3,google,2026-03-12 19:32:20.132445,abortion clinic,abortion clinic santa rosa,free near me,women's no insurance +abortion,"('free abortion clinic near me', 'free abortion hospital near me')",free abortion clinic near me,free abortion hospital near me,9,3,google,2026-03-12 19:32:20.132445,abortion clinic,abortion clinic santa rosa,free near me,hospital +abortion,"('planned parenthood near me abortion clinic', 'planned parenthood near me abortion services')",planned parenthood near me abortion clinic,planned parenthood near me abortion services,1,3,google,2026-03-12 19:32:21.476314,abortion clinic,abortion clinic santa rosa,planned parenthood near me,services +abortion,"('planned parenthood near me abortion clinic', 'does planned parenthood do abortions for free')",planned parenthood near me abortion clinic,does planned parenthood do abortions for free,2,3,google,2026-03-12 19:32:21.476314,abortion clinic,abortion clinic santa rosa,planned parenthood near me,does do abortions for free +abortion,"('planned parenthood near me abortion clinic', 'planned parenthood near me open now')",planned parenthood near me abortion clinic,planned parenthood near me open now,3,3,google,2026-03-12 19:32:21.476314,abortion clinic,abortion clinic santa rosa,planned parenthood near me,open now +abortion,"('planned parenthood near me abortion clinic', 'planned parenthood near me walk in')",planned parenthood near me abortion clinic,planned parenthood near me walk in,4,3,google,2026-03-12 19:32:21.476314,abortion clinic,abortion clinic santa rosa,planned parenthood near me,walk in +abortion,"('abortion santa rosa', 'abortion santa rosa ca')",abortion santa rosa,abortion santa rosa ca,1,3,google,2026-03-12 19:32:22.438135,abortion clinic,abortion clinic santa rosa,santa rosa,ca +abortion,"('abortion santa rosa', 'abortion clinic santa rosa')",abortion santa rosa,abortion clinic santa rosa,2,3,google,2026-03-12 19:32:22.438135,abortion clinic,abortion clinic santa rosa,santa rosa,clinic +abortion,"('abortion santa rosa', 'abortion clinic santa rosa ca')",abortion santa rosa,abortion clinic santa rosa ca,3,3,google,2026-03-12 19:32:22.438135,abortion clinic,abortion clinic santa rosa,santa rosa,clinic ca +abortion,"('abortion santa rosa', 'abortion planned parenthood near me')",abortion santa rosa,abortion planned parenthood near me,4,3,google,2026-03-12 19:32:22.438135,abortion clinic,abortion clinic santa rosa,santa rosa,planned parenthood near me +abortion,"('abortion santa rosa', 'does planned parenthood support abortion')",abortion santa rosa,does planned parenthood support abortion,5,3,google,2026-03-12 19:32:22.438135,abortion clinic,abortion clinic santa rosa,santa rosa,does planned parenthood support +abortion,"('abortion santa rosa', 'santa rosa abortion rights protest')",abortion santa rosa,santa rosa abortion rights protest,6,3,google,2026-03-12 19:32:22.438135,abortion clinic,abortion clinic santa rosa,santa rosa,rights protest +abortion,"('abortion santa rosa', 'abortion santa barbara')",abortion santa rosa,abortion santa barbara,7,3,google,2026-03-12 19:32:22.438135,abortion clinic,abortion clinic santa rosa,santa rosa,barbara +abortion,"('abortion santa rosa', 'abortion santa fe')",abortion santa rosa,abortion santa fe,8,3,google,2026-03-12 19:32:22.438135,abortion clinic,abortion clinic santa rosa,santa rosa,fe +abortion,"(""women's clinic brentwood"", ""london women's clinic brentwood"")",women's clinic brentwood,london women's clinic brentwood,1,3,google,2026-03-12 19:32:23.795349,abortion clinic,abortion clinic brentwood,women's,london +abortion,"(""women's clinic brentwood"", ""london women's clinic brentwood reviews"")",women's clinic brentwood,london women's clinic brentwood reviews,2,3,google,2026-03-12 19:32:23.795349,abortion clinic,abortion clinic brentwood,women's,london reviews +abortion,"(""women's clinic brentwood"", ""vanderbilt women's clinic brentwood"")",women's clinic brentwood,vanderbilt women's clinic brentwood,3,3,google,2026-03-12 19:32:23.795349,abortion clinic,abortion clinic brentwood,women's,vanderbilt +abortion,"(""women's clinic brentwood"", ""women's health clinic brentwood"")",women's clinic brentwood,women's health clinic brentwood,4,3,google,2026-03-12 19:32:23.795349,abortion clinic,abortion clinic brentwood,women's,health +abortion,"(""women's clinic brentwood"", ""women's fertility clinic brentwood"")",women's clinic brentwood,women's fertility clinic brentwood,5,3,google,2026-03-12 19:32:23.795349,abortion clinic,abortion clinic brentwood,women's,fertility +abortion,"(""women's clinic brentwood"", ""london women's clinic brentwood photos"")",women's clinic brentwood,london women's clinic brentwood photos,6,3,google,2026-03-12 19:32:23.795349,abortion clinic,abortion clinic brentwood,women's,london photos +abortion,"(""women's clinic brentwood"", ""vanderbilt women's health clinic brentwood"")",women's clinic brentwood,vanderbilt women's health clinic brentwood,7,3,google,2026-03-12 19:32:23.795349,abortion clinic,abortion clinic brentwood,women's,vanderbilt health +abortion,"(""women's clinic brentwood"", ""women's health brentwood"")",women's clinic brentwood,women's health brentwood,8,3,google,2026-03-12 19:32:23.795349,abortion clinic,abortion clinic brentwood,women's,health +abortion,"(""women's clinic brentwood"", ""women's health center brentwood"")",women's clinic brentwood,women's health center brentwood,9,3,google,2026-03-12 19:32:23.795349,abortion clinic,abortion clinic brentwood,women's,health center +abortion,"('abortion clinic brevard county', 'abortion brevard county fl')",abortion clinic brevard county,abortion brevard county fl,1,3,google,2026-03-12 19:32:24.716246,abortion clinic,abortion clinic brentwood,brevard county,fl +abortion,"('abortion clinic brevard county', 'abortion clinic melbourne fl')",abortion clinic brevard county,abortion clinic melbourne fl,2,3,google,2026-03-12 19:32:24.716246,abortion clinic,abortion clinic brentwood,brevard county,melbourne fl +abortion,"('abortion clinic brevard county', 'abortion clinic titusville')",abortion clinic brevard county,abortion clinic titusville,3,3,google,2026-03-12 19:32:24.716246,abortion clinic,abortion clinic brentwood,brevard county,titusville +abortion,"('abortion clinic beverly hills', ""women's clinic beverly hills"")",abortion clinic beverly hills,women's clinic beverly hills,1,3,google,2026-03-12 19:32:25.746752,abortion clinic,abortion clinic brentwood,beverly hills,women's +abortion,"('abortion clinic beverly hills', 'dupont abortion clinic beverly hills')",abortion clinic beverly hills,dupont abortion clinic beverly hills,2,3,google,2026-03-12 19:32:25.746752,abortion clinic,abortion clinic brentwood,beverly hills,dupont +abortion,"('abortion clinic beverly hills', ""women's health clinic beverly hills"")",abortion clinic beverly hills,women's health clinic beverly hills,3,3,google,2026-03-12 19:32:25.746752,abortion clinic,abortion clinic brentwood,beverly hills,women's health +abortion,"('abortion clinic beverly hills', 'closest abortion clinics')",abortion clinic beverly hills,closest abortion clinics,4,3,google,2026-03-12 19:32:25.746752,abortion clinic,abortion clinic brentwood,beverly hills,closest clinics +abortion,"('abortion clinic beverly hills', 'abortion clinic beverly')",abortion clinic beverly hills,abortion clinic beverly,5,3,google,2026-03-12 19:32:25.746752,abortion clinic,abortion clinic brentwood,beverly hills,beverly hills +abortion,"('abortion clinic beverly hills', 'abortion clinic beverly ma')",abortion clinic beverly hills,abortion clinic beverly ma,6,3,google,2026-03-12 19:32:25.746752,abortion clinic,abortion clinic brentwood,beverly hills,ma +abortion,"('abortion clinic beverly hills', 'beverly hills abortion')",abortion clinic beverly hills,beverly hills abortion,7,3,google,2026-03-12 19:32:25.746752,abortion clinic,abortion clinic brentwood,beverly hills,beverly hills +abortion,"('abortion clinic bristol tn', ""women's clinic for abortions near me"")",abortion clinic bristol tn,women's clinic for abortions near me,1,3,google,2026-03-12 19:32:26.910587,abortion clinic,abortion clinic brentwood,bristol tn,women's for abortions near me +abortion,"('abortion clinic bristol tn', 'abortion bristol tn')",abortion clinic bristol tn,abortion bristol tn,2,3,google,2026-03-12 19:32:26.910587,abortion clinic,abortion clinic brentwood,bristol tn,bristol tn +abortion,"('abortion clinic bristol tn', 'abortion clinic bristol virginia')",abortion clinic bristol tn,abortion clinic bristol virginia,3,3,google,2026-03-12 19:32:26.910587,abortion clinic,abortion clinic brentwood,bristol tn,virginia +abortion,"('abortion clinic bristol tn', 'abortion clinic bristol va')",abortion clinic bristol tn,abortion clinic bristol va,4,3,google,2026-03-12 19:32:26.910587,abortion clinic,abortion clinic brentwood,bristol tn,va +abortion,"('abortion clinic bradenton', 'abortion clinic bradenton fl')",abortion clinic bradenton,abortion clinic bradenton fl,1,3,google,2026-03-12 19:32:28.158786,abortion clinic,abortion clinic brentwood,bradenton,fl +abortion,"('abortion clinic bradenton', ""women's clinic bradenton fl"")",abortion clinic bradenton,women's clinic bradenton fl,2,3,google,2026-03-12 19:32:28.158786,abortion clinic,abortion clinic brentwood,bradenton,women's fl +abortion,"('abortion clinic bradenton', ""women's clinic bradenton"")",abortion clinic bradenton,women's clinic bradenton,3,3,google,2026-03-12 19:32:28.158786,abortion clinic,abortion clinic brentwood,bradenton,women's +abortion,"('abortion clinic bradenton', 'abortion clinic near me for free')",abortion clinic bradenton,abortion clinic near me for free,4,3,google,2026-03-12 19:32:28.158786,abortion clinic,abortion clinic brentwood,bradenton,near me for free +abortion,"('abortion clinic bradenton', 'abortion clinic brandon fl')",abortion clinic bradenton,abortion clinic brandon fl,5,3,google,2026-03-12 19:32:28.158786,abortion clinic,abortion clinic brentwood,bradenton,brandon fl +abortion,"('abortion clinic bradenton', 'abortion clinic brevard county')",abortion clinic bradenton,abortion clinic brevard county,6,3,google,2026-03-12 19:32:28.158786,abortion clinic,abortion clinic brentwood,bradenton,brevard county +abortion,"('abortion clinic boise', 'abortion clinics boise idaho')",abortion clinic boise,abortion clinics boise idaho,1,3,google,2026-03-12 19:32:29.647947,abortion clinic,abortion clinic brentwood,boise,clinics idaho +abortion,"('abortion clinic boise', ""women's clinic boise"")",abortion clinic boise,women's clinic boise,2,3,google,2026-03-12 19:32:29.647947,abortion clinic,abortion clinic brentwood,boise,women's +abortion,"('abortion clinic boise', ""women's clinic boise st luke's"")",abortion clinic boise,women's clinic boise st luke's,3,3,google,2026-03-12 19:32:29.647947,abortion clinic,abortion clinic brentwood,boise,women's st luke's +abortion,"('abortion clinic boise', ""women's clinic boise id"")",abortion clinic boise,women's clinic boise id,4,3,google,2026-03-12 19:32:29.647947,abortion clinic,abortion clinic brentwood,boise,women's id +abortion,"('abortion clinic boise', ""boise va women's clinic"")",abortion clinic boise,boise va women's clinic,5,3,google,2026-03-12 19:32:29.647947,abortion clinic,abortion clinic brentwood,boise,va women's +abortion,"('abortion clinic boise', 'abortion clinic near me for free')",abortion clinic boise,abortion clinic near me for free,6,3,google,2026-03-12 19:32:29.647947,abortion clinic,abortion clinic brentwood,boise,near me for free +abortion,"('abortion clinic boise', 'abortion clinic near me now')",abortion clinic boise,abortion clinic near me now,7,3,google,2026-03-12 19:32:29.647947,abortion clinic,abortion clinic brentwood,boise,near me now +abortion,"('abortion clinic boise', 'abortion clinic idaho')",abortion clinic boise,abortion clinic idaho,8,3,google,2026-03-12 19:32:29.647947,abortion clinic,abortion clinic brentwood,boise,idaho +abortion,"('abortion clinic oakland park', 'abortion clinic oakland county')",abortion clinic oakland park,abortion clinic oakland county,1,3,google,2026-03-12 19:32:30.798720,abortion clinic,abortion clinic oakland,park,county +abortion,"('abortion clinic oakland park', 'abortion clinics oakland ca')",abortion clinic oakland park,abortion clinics oakland ca,2,3,google,2026-03-12 19:32:30.798720,abortion clinic,abortion clinic oakland,park,clinics ca +abortion,"('abortion clinic oakland ca', 'abortion clinic oakland county')",abortion clinic oakland ca,abortion clinic oakland county,1,3,google,2026-03-12 19:32:31.608999,abortion clinic,abortion clinic oakland,ca,county +abortion,"('abortion clinic oakland ca', 'abortion clinic oakland park')",abortion clinic oakland ca,abortion clinic oakland park,2,3,google,2026-03-12 19:32:31.608999,abortion clinic,abortion clinic oakland,ca,park +abortion,"(""women's clinic oakland"", ""women's health center oakland"")",women's clinic oakland,women's health center oakland,1,3,google,2026-03-12 19:32:32.501736,abortion clinic,abortion clinic oakland,women's,health center +abortion,"(""women's clinic oakland"", ""women's health clinic oakland"")",women's clinic oakland,women's health clinic oakland,2,3,google,2026-03-12 19:32:32.501736,abortion clinic,abortion clinic oakland,women's,health +abortion,"(""women's clinic oakland"", 'magee womens clinic oakland')",women's clinic oakland,magee womens clinic oakland,3,3,google,2026-03-12 19:32:32.501736,abortion clinic,abortion clinic oakland,women's,magee womens +abortion,"(""women's clinic oakland"", ""women's clinic oakdale ca"")",women's clinic oakland,women's clinic oakdale ca,4,3,google,2026-03-12 19:32:32.501736,abortion clinic,abortion clinic oakland,women's,oakdale ca +abortion,"(""women's clinic oakland"", ""women's clinic oak lawn"")",women's clinic oakland,women's clinic oak lawn,5,3,google,2026-03-12 19:32:32.501736,abortion clinic,abortion clinic oakland,women's,oak lawn +abortion,"('abortion clinic oakland county', 'abortion clinic oakland county ca')",abortion clinic oakland county,abortion clinic oakland county ca,1,3,google,2026-03-12 19:32:33.979472,abortion clinic,abortion clinic oakland,county,ca +abortion,"('abortion clinic oakland county', 'abortion clinic oakland county california')",abortion clinic oakland county,abortion clinic oakland county california,2,3,google,2026-03-12 19:32:33.979472,abortion clinic,abortion clinic oakland,county,california +abortion,"('abortion clinic oakland county', 'abortion clinic oakland county jail')",abortion clinic oakland county,abortion clinic oakland county jail,3,3,google,2026-03-12 19:32:33.979472,abortion clinic,abortion clinic oakland,county,jail +abortion,"('abortion clinic oakland county', 'abortion clinic oakland county michigan')",abortion clinic oakland county,abortion clinic oakland county michigan,4,3,google,2026-03-12 19:32:33.979472,abortion clinic,abortion clinic oakland,county,michigan +abortion,"('abortion clinic oakland county', 'abortion clinic oakland county health')",abortion clinic oakland county,abortion clinic oakland county health,5,3,google,2026-03-12 19:32:33.979472,abortion clinic,abortion clinic oakland,county,health +abortion,"('abortion clinic oakland county', 'abortion clinic oakland county mi')",abortion clinic oakland county,abortion clinic oakland county mi,6,3,google,2026-03-12 19:32:33.979472,abortion clinic,abortion clinic oakland,county,mi +abortion,"('abortion clinic oakland county', 'abortion clinic oakland county obstetrics and gynecology')",abortion clinic oakland county,abortion clinic oakland county obstetrics and gynecology,7,3,google,2026-03-12 19:32:33.979472,abortion clinic,abortion clinic oakland,county,obstetrics and gynecology +abortion,"('abortion clinic oakland county', 'abortion clinic oakland county obgyn')",abortion clinic oakland county,abortion clinic oakland county obgyn,8,3,google,2026-03-12 19:32:33.979472,abortion clinic,abortion clinic oakland,county,obgyn +abortion,"('abortion clinic illinois cost', 'hope clinic illinois abortion cost')",abortion clinic illinois cost,hope clinic illinois abortion cost,1,3,google,2026-03-12 19:32:35.223957,abortion clinic,abortion clinic illinois,cost,hope +abortion,"('abortion clinic illinois cost', 'are abortions free in illinois')",abortion clinic illinois cost,are abortions free in illinois,2,3,google,2026-03-12 19:32:35.223957,abortion clinic,abortion clinic illinois,cost,are abortions free in +abortion,"('abortion clinic illinois cost', 'abortion clinic chicago cost')",abortion clinic illinois cost,abortion clinic chicago cost,3,3,google,2026-03-12 19:32:35.223957,abortion clinic,abortion clinic illinois,cost,chicago +abortion,"('abortion clinic illinois cost', 'abortion clinic in chicago illinois')",abortion clinic illinois cost,abortion clinic in chicago illinois,4,3,google,2026-03-12 19:32:35.223957,abortion clinic,abortion clinic illinois,cost,in chicago +abortion,"('abortion clinic illinois cost', 'low cost abortion clinics in illinois')",abortion clinic illinois cost,low cost abortion clinics in illinois,5,3,google,2026-03-12 19:32:35.223957,abortion clinic,abortion clinic illinois,cost,low clinics in +abortion,"('abortion clinic illinois carbondale', 'abortion clinic carbondale il')",abortion clinic illinois carbondale,abortion clinic carbondale il,1,3,google,2026-03-12 19:32:36.074255,abortion clinic,abortion clinic illinois,carbondale,il +abortion,"('abortion clinic illinois carbondale', ""women's clinic carbondale il"")",abortion clinic illinois carbondale,women's clinic carbondale il,2,3,google,2026-03-12 19:32:36.074255,abortion clinic,abortion clinic illinois,carbondale,women's il +abortion,"('abortion clinic illinois carbondale', 'choices abortion clinic carbondale il')",abortion clinic illinois carbondale,choices abortion clinic carbondale il,3,3,google,2026-03-12 19:32:36.074255,abortion clinic,abortion clinic illinois,carbondale,choices il +abortion,"('abortion clinic illinois carbondale', 'illinois abortion clinic near me')",abortion clinic illinois carbondale,illinois abortion clinic near me,4,3,google,2026-03-12 19:32:36.074255,abortion clinic,abortion clinic illinois,carbondale,near me +abortion,"('abortion clinic illinois carbondale', 'abortion clinic in carbondale')",abortion clinic illinois carbondale,abortion clinic in carbondale,5,3,google,2026-03-12 19:32:36.074255,abortion clinic,abortion clinic illinois,carbondale,in +abortion,"('abortion clinic illinois near me', 'abortion clinic near me il')",abortion clinic illinois near me,abortion clinic near me il,1,3,google,2026-03-12 19:32:36.874207,abortion clinic,abortion clinic illinois,near me,il +abortion,"('abortion clinic illinois near me', 'abortion clinic near metropolis il')",abortion clinic illinois near me,abortion clinic near metropolis il,2,3,google,2026-03-12 19:32:36.874207,abortion clinic,abortion clinic illinois,near me,metropolis il +abortion,"('abortion clinic illinois near me', 'abortion clinic.near me. chicago illinois')",abortion clinic illinois near me,abortion clinic.near me. chicago illinois,3,3,google,2026-03-12 19:32:36.874207,abortion clinic,abortion clinic illinois,near me,clinic.near me. chicago +abortion,"('abortion clinic illinois near me', 'closest abortion clinic near me in illinois')",abortion clinic illinois near me,closest abortion clinic near me in illinois,4,3,google,2026-03-12 19:32:36.874207,abortion clinic,abortion clinic illinois,near me,closest in +abortion,"('abortion clinic illinois near me', 'are abortions free in illinois')",abortion clinic illinois near me,are abortions free in illinois,5,3,google,2026-03-12 19:32:36.874207,abortion clinic,abortion clinic illinois,near me,are abortions free in +abortion,"('abortion clinic illinois closest to me', 'abortion clinic illinois near me')",abortion clinic illinois closest to me,abortion clinic illinois near me,1,3,google,2026-03-12 19:32:38.040598,abortion clinic,abortion clinic illinois,closest to me,near +abortion,"('abortion clinic illinois closest to me', 'abortion clinic near me and prices')",abortion clinic illinois closest to me,abortion clinic near me and prices,2,3,google,2026-03-12 19:32:38.040598,abortion clinic,abortion clinic illinois,closest to me,near and prices +abortion,"('abortion clinic illinois closest to me', 'abortion clinic near chicago il')",abortion clinic illinois closest to me,abortion clinic near chicago il,3,3,google,2026-03-12 19:32:38.040598,abortion clinic,abortion clinic illinois,closest to me,near chicago il +abortion,"('abortion clinic illinois closest to me', 'illinois abortion clinic locations')",abortion clinic illinois closest to me,illinois abortion clinic locations,4,3,google,2026-03-12 19:32:38.040598,abortion clinic,abortion clinic illinois,closest to me,locations +abortion,"('abortion clinic illinois open now', 'abortion clinic open near me')",abortion clinic illinois open now,abortion clinic open near me,1,3,google,2026-03-12 19:32:40.509940,abortion clinic,abortion clinic illinois,open now,near me +abortion,"('abortion clinic illinois open now', 'illinois abortion clinic near me')",abortion clinic illinois open now,illinois abortion clinic near me,2,3,google,2026-03-12 19:32:40.509940,abortion clinic,abortion clinic illinois,open now,near me +abortion,"('abortion clinic illinois open now', 'how late can you get an abortion in illinois')",abortion clinic illinois open now,how late can you get an abortion in illinois,3,3,google,2026-03-12 19:32:40.509940,abortion clinic,abortion clinic illinois,open now,how late can you get an in +abortion,"('abortion clinic illinois open now', 'illinois abortion clinic closest to me')",abortion clinic illinois open now,illinois abortion clinic closest to me,4,3,google,2026-03-12 19:32:40.509940,abortion clinic,abortion clinic illinois,open now,closest to me +abortion,"('abortion clinic illinois open now', 'abortion clinic il')",abortion clinic illinois open now,abortion clinic il,5,3,google,2026-03-12 19:32:40.509940,abortion clinic,abortion clinic illinois,open now,il +abortion,"('abortion clinic illinois free', 'abortion clinic freeport il')",abortion clinic illinois free,abortion clinic freeport il,1,3,google,2026-03-12 19:32:41.770345,abortion clinic,abortion clinic illinois,free,freeport il +abortion,"('abortion clinic illinois free', ""women's clinic freeport il"")",abortion clinic illinois free,women's clinic freeport il,2,3,google,2026-03-12 19:32:41.770345,abortion clinic,abortion clinic illinois,free,women's freeport il +abortion,"('abortion clinic illinois free', 'are abortions free in illinois')",abortion clinic illinois free,are abortions free in illinois,3,3,google,2026-03-12 19:32:41.770345,abortion clinic,abortion clinic illinois,free,are abortions in +abortion,"('abortion clinic illinois free', 'free abortion clinic in chicago')",abortion clinic illinois free,free abortion clinic in chicago,4,3,google,2026-03-12 19:32:41.770345,abortion clinic,abortion clinic illinois,free,in chicago +abortion,"(""women's clinic illinois"", ""women's health center illinois"")",women's clinic illinois,women's health center illinois,1,3,google,2026-03-12 19:32:42.948301,abortion clinic,abortion clinic illinois,women's,health center +abortion,"(""women's clinic illinois"", ""women's medical center illinois"")",women's clinic illinois,women's medical center illinois,2,3,google,2026-03-12 19:32:42.948301,abortion clinic,abortion clinic illinois,women's,medical center +abortion,"(""women's clinic illinois"", ""alamo women's clinic of illinois"")",women's clinic illinois,alamo women's clinic of illinois,3,3,google,2026-03-12 19:32:42.948301,abortion clinic,abortion clinic illinois,women's,alamo of +abortion,"(""women's clinic illinois"", ""women's health clinic illinois"")",women's clinic illinois,women's health clinic illinois,4,3,google,2026-03-12 19:32:42.948301,abortion clinic,abortion clinic illinois,women's,health +abortion,"(""women's clinic illinois"", ""women's abortion clinic illinois"")",women's clinic illinois,women's abortion clinic illinois,5,3,google,2026-03-12 19:32:42.948301,abortion clinic,abortion clinic illinois,women's,abortion +abortion,"(""women's clinic illinois"", ""hope women's clinic illinois"")",women's clinic illinois,hope women's clinic illinois,6,3,google,2026-03-12 19:32:42.948301,abortion clinic,abortion clinic illinois,women's,hope +abortion,"(""women's clinic illinois"", ""women's clinic danville illinois"")",women's clinic illinois,women's clinic danville illinois,7,3,google,2026-03-12 19:32:42.948301,abortion clinic,abortion clinic illinois,women's,danville +abortion,"(""women's clinic illinois"", ""women's clinic in chicago illinois"")",women's clinic illinois,women's clinic in chicago illinois,8,3,google,2026-03-12 19:32:42.948301,abortion clinic,abortion clinic illinois,women's,in chicago +abortion,"(""women's clinic illinois"", ""women's clinic in chicago"")",women's clinic illinois,women's clinic in chicago,9,3,google,2026-03-12 19:32:42.948301,abortion clinic,abortion clinic illinois,women's,in chicago +abortion,"('abortion services illinois', 'abortion clinic illinois')",abortion services illinois,abortion clinic illinois,1,3,google,2026-03-12 19:32:44.049172,abortion clinic,abortion clinic illinois,services,clinic +abortion,"('abortion services illinois', 'abortion clinic illinois near me')",abortion services illinois,abortion clinic illinois near me,2,3,google,2026-03-12 19:32:44.049172,abortion clinic,abortion clinic illinois,services,clinic near me +abortion,"('abortion services illinois', 'abortion center illinois')",abortion services illinois,abortion center illinois,3,3,google,2026-03-12 19:32:44.049172,abortion clinic,abortion clinic illinois,services,center +abortion,"('abortion services illinois', 'abortion care illinois')",abortion services illinois,abortion care illinois,4,3,google,2026-03-12 19:32:44.049172,abortion clinic,abortion clinic illinois,services,care +abortion,"('abortion services illinois', 'abortion clinic illinois carbondale')",abortion services illinois,abortion clinic illinois carbondale,5,3,google,2026-03-12 19:32:44.049172,abortion clinic,abortion clinic illinois,services,clinic carbondale +abortion,"('abortion services illinois', 'abortion clinic illinois cost')",abortion services illinois,abortion clinic illinois cost,6,3,google,2026-03-12 19:32:44.049172,abortion clinic,abortion clinic illinois,services,clinic cost +abortion,"('abortion services illinois', 'abortion providers illinois')",abortion services illinois,abortion providers illinois,7,3,google,2026-03-12 19:32:44.049172,abortion clinic,abortion clinic illinois,services,providers +abortion,"('abortion services illinois', 'abortion clinic illinois closest to me')",abortion services illinois,abortion clinic illinois closest to me,8,3,google,2026-03-12 19:32:44.049172,abortion clinic,abortion clinic illinois,services,clinic closest to me +abortion,"('abortion services illinois', 'abortion clinic illinois chicago')",abortion services illinois,abortion clinic illinois chicago,9,3,google,2026-03-12 19:32:44.049172,abortion clinic,abortion clinic illinois,services,clinic chicago +abortion,"('abortion clinic north carolina charlotte', 'north carolina abortion clinic charlotte nc')",abortion clinic north carolina charlotte,north carolina abortion clinic charlotte nc,1,3,google,2026-03-12 19:32:44.895192,abortion clinic,abortion clinic north carolina,charlotte,nc +abortion,"('abortion clinic north carolina charlotte', 'are abortions legal in north carolina')",abortion clinic north carolina charlotte,are abortions legal in north carolina,2,3,google,2026-03-12 19:32:44.895192,abortion clinic,abortion clinic north carolina,charlotte,are abortions legal in +abortion,"('abortion clinic north carolina charlotte', 'abortion cost charlotte nc')",abortion clinic north carolina charlotte,abortion cost charlotte nc,3,3,google,2026-03-12 19:32:44.895192,abortion clinic,abortion clinic north carolina,charlotte,cost nc +abortion,"('abortion clinic north carolina charlotte', 'abortions in charlotte')",abortion clinic north carolina charlotte,abortions in charlotte,4,3,google,2026-03-12 19:32:44.895192,abortion clinic,abortion clinic north carolina,charlotte,abortions in +abortion,"('abortion clinic north carolina charlotte', 'abortion clinic charlotte nc cost')",abortion clinic north carolina charlotte,abortion clinic charlotte nc cost,5,3,google,2026-03-12 19:32:44.895192,abortion clinic,abortion clinic north carolina,charlotte,nc cost +abortion,"('abortion clinic north carolina charlotte', 'abortion clinic north carolina')",abortion clinic north carolina charlotte,abortion clinic north carolina,6,3,google,2026-03-12 19:32:44.895192,abortion clinic,abortion clinic north carolina,charlotte,charlotte +abortion,"('abortion clinic north carolina charlotte', 'abortion clinic charlotte nc price')",abortion clinic north carolina charlotte,abortion clinic charlotte nc price,7,3,google,2026-03-12 19:32:44.895192,abortion clinic,abortion clinic north carolina,charlotte,nc price +abortion,"('abortion clinic north carolina near me', 'abortion clinic near me now')",abortion clinic north carolina near me,abortion clinic near me now,1,3,google,2026-03-12 19:32:45.753095,abortion clinic,abortion clinic north carolina,near me,now +abortion,"('abortion clinic north carolina near me', 'abortion clinic for free near me')",abortion clinic north carolina near me,abortion clinic for free near me,2,3,google,2026-03-12 19:32:45.753095,abortion clinic,abortion clinic north carolina,near me,for free +abortion,"('abortion clinic north carolina near me', 'abortion clinic raleigh north carolina')",abortion clinic north carolina near me,abortion clinic raleigh north carolina,3,3,google,2026-03-12 19:32:45.753095,abortion clinic,abortion clinic north carolina,near me,raleigh +abortion,"('abortion clinic north carolina prices', 'abortion clinic charlotte nc price')",abortion clinic north carolina prices,abortion clinic charlotte nc price,1,3,google,2026-03-12 19:32:46.815484,abortion clinic,abortion clinic north carolina,prices,charlotte nc price +abortion,"('abortion clinic north carolina prices', 'abortion clinic north carolina')",abortion clinic north carolina prices,abortion clinic north carolina,2,3,google,2026-03-12 19:32:46.815484,abortion clinic,abortion clinic north carolina,prices,prices +abortion,"('abortion clinic north carolina prices', 'abortion clinic charlotte nc cost')",abortion clinic north carolina prices,abortion clinic charlotte nc cost,3,3,google,2026-03-12 19:32:46.815484,abortion clinic,abortion clinic north carolina,prices,charlotte nc cost +abortion,"('abortion clinic north carolina prices', 'abortion clinic raleigh nc cost')",abortion clinic north carolina prices,abortion clinic raleigh nc cost,4,3,google,2026-03-12 19:32:46.815484,abortion clinic,abortion clinic north carolina,prices,raleigh nc cost +abortion,"('abortion clinic north carolina open now', 'abortion clinic raleigh nc open now')",abortion clinic north carolina open now,abortion clinic raleigh nc open now,1,3,google,2026-03-12 19:32:47.955890,abortion clinic,abortion clinic north carolina,open now,raleigh nc +abortion,"('abortion clinic north carolina open now', 'abortion clinic open near me')",abortion clinic north carolina open now,abortion clinic open near me,2,3,google,2026-03-12 19:32:47.955890,abortion clinic,abortion clinic north carolina,open now,near me +abortion,"('abortion clinic north carolina open now', 'how late can you get an abortion in nc')",abortion clinic north carolina open now,how late can you get an abortion in nc,3,3,google,2026-03-12 19:32:47.955890,abortion clinic,abortion clinic north carolina,open now,how late can you get an in nc +abortion,"('abortion clinic north carolina open now', 'abortion clinic near me now')",abortion clinic north carolina open now,abortion clinic near me now,4,3,google,2026-03-12 19:32:47.955890,abortion clinic,abortion clinic north carolina,open now,near me +abortion,"('abortion clinic north carolina open now', 'how many weeks can you get an abortion in nc')",abortion clinic north carolina open now,how many weeks can you get an abortion in nc,5,3,google,2026-03-12 19:32:47.955890,abortion clinic,abortion clinic north carolina,open now,how many weeks can you get an in nc +abortion,"('abortion clinic north carolina open now', 'abortion clinic north carolina')",abortion clinic north carolina open now,abortion clinic north carolina,6,3,google,2026-03-12 19:32:47.955890,abortion clinic,abortion clinic north carolina,open now,open now +abortion,"('abortion clinic north carolina open now', 'abortion clinic charlotte north carolina')",abortion clinic north carolina open now,abortion clinic charlotte north carolina,7,3,google,2026-03-12 19:32:47.955890,abortion clinic,abortion clinic north carolina,open now,charlotte +abortion,"('abortion center north carolina', 'abortion clinic north carolina')",abortion center north carolina,abortion clinic north carolina,1,3,google,2026-03-12 19:32:48.990864,abortion clinic,abortion clinic north carolina,center,clinic +abortion,"('abortion center north carolina', 'abortion clinic north carolina near me')",abortion center north carolina,abortion clinic north carolina near me,2,3,google,2026-03-12 19:32:48.990864,abortion clinic,abortion clinic north carolina,center,clinic near me +abortion,"('abortion center north carolina', 'abortion services north carolina')",abortion center north carolina,abortion services north carolina,3,3,google,2026-03-12 19:32:48.990864,abortion clinic,abortion clinic north carolina,center,services +abortion,"('abortion center north carolina', 'abortion clinic north carolina charlotte')",abortion center north carolina,abortion clinic north carolina charlotte,4,3,google,2026-03-12 19:32:48.990864,abortion clinic,abortion clinic north carolina,center,clinic charlotte +abortion,"('abortion center north carolina', 'abortion clinic north carolina open now')",abortion center north carolina,abortion clinic north carolina open now,5,3,google,2026-03-12 19:32:48.990864,abortion clinic,abortion clinic north carolina,center,clinic open now +abortion,"('abortion center north carolina', 'abortion clinic north carolina prices')",abortion center north carolina,abortion clinic north carolina prices,6,3,google,2026-03-12 19:32:48.990864,abortion clinic,abortion clinic north carolina,center,clinic prices +abortion,"('abortion center north carolina', 'free abortion clinic north carolina')",abortion center north carolina,free abortion clinic north carolina,7,3,google,2026-03-12 19:32:48.990864,abortion clinic,abortion clinic north carolina,center,free clinic +abortion,"('abortion center north carolina', 'abortion clinic greensboro north carolina')",abortion center north carolina,abortion clinic greensboro north carolina,8,3,google,2026-03-12 19:32:48.990864,abortion clinic,abortion clinic north carolina,center,clinic greensboro +abortion,"('abortion center north carolina', 'abortion clinic raleigh north carolina')",abortion center north carolina,abortion clinic raleigh north carolina,9,3,google,2026-03-12 19:32:48.990864,abortion clinic,abortion clinic north carolina,center,clinic raleigh +abortion,"('abortion services north carolina', 'abortion clinic north carolina')",abortion services north carolina,abortion clinic north carolina,1,3,google,2026-03-12 19:32:50.065333,abortion clinic,abortion clinic north carolina,services,clinic +abortion,"('abortion services north carolina', 'abortion clinic north carolina near me')",abortion services north carolina,abortion clinic north carolina near me,2,3,google,2026-03-12 19:32:50.065333,abortion clinic,abortion clinic north carolina,services,clinic near me +abortion,"('abortion services north carolina', 'abortion center north carolina')",abortion services north carolina,abortion center north carolina,3,3,google,2026-03-12 19:32:50.065333,abortion clinic,abortion clinic north carolina,services,center +abortion,"('abortion services north carolina', 'abortion clinic north carolina charlotte')",abortion services north carolina,abortion clinic north carolina charlotte,4,3,google,2026-03-12 19:32:50.065333,abortion clinic,abortion clinic north carolina,services,clinic charlotte +abortion,"('abortion services north carolina', 'abortion clinic north carolina open now')",abortion services north carolina,abortion clinic north carolina open now,5,3,google,2026-03-12 19:32:50.065333,abortion clinic,abortion clinic north carolina,services,clinic open now +abortion,"('abortion services north carolina', 'abortion clinic north carolina prices')",abortion services north carolina,abortion clinic north carolina prices,6,3,google,2026-03-12 19:32:50.065333,abortion clinic,abortion clinic north carolina,services,clinic prices +abortion,"('abortion services north carolina', 'abortion care north carolina')",abortion services north carolina,abortion care north carolina,7,3,google,2026-03-12 19:32:50.065333,abortion clinic,abortion clinic north carolina,services,care +abortion,"('abortion services north carolina', 'abortion providers north carolina')",abortion services north carolina,abortion providers north carolina,8,3,google,2026-03-12 19:32:50.065333,abortion clinic,abortion clinic north carolina,services,providers +abortion,"('abortion services north carolina', 'free abortion clinic north carolina')",abortion services north carolina,free abortion clinic north carolina,9,3,google,2026-03-12 19:32:50.065333,abortion clinic,abortion clinic north carolina,services,free clinic +abortion,"(""women's clinic north carolina"", ""women's health center north carolina"")",women's clinic north carolina,women's health center north carolina,1,3,google,2026-03-12 19:32:51.242440,abortion clinic,abortion clinic north carolina,women's,health center +abortion,"(""women's clinic north carolina"", ""women's hospital north carolina"")",women's clinic north carolina,women's hospital north carolina,2,3,google,2026-03-12 19:32:51.242440,abortion clinic,abortion clinic north carolina,women's,hospital +abortion,"(""women's clinic north carolina"", ""women's choice clinic north carolina"")",women's clinic north carolina,women's choice clinic north carolina,3,3,google,2026-03-12 19:32:51.242440,abortion clinic,abortion clinic north carolina,women's,choice +abortion,"(""women's clinic north carolina"", ""women's health clinic north carolina"")",women's clinic north carolina,women's health clinic north carolina,4,3,google,2026-03-12 19:32:51.242440,abortion clinic,abortion clinic north carolina,women's,health +abortion,"(""women's clinic north carolina"", ""preferred women's clinic north carolina"")",women's clinic north carolina,preferred women's clinic north carolina,5,3,google,2026-03-12 19:32:51.242440,abortion clinic,abortion clinic north carolina,women's,preferred +abortion,"(""women's clinic north carolina"", ""women's clinic shelby north carolina"")",women's clinic north carolina,women's clinic shelby north carolina,6,3,google,2026-03-12 19:32:51.242440,abortion clinic,abortion clinic north carolina,women's,shelby +abortion,"(""women's clinic north carolina"", ""women's abortion clinic north carolina"")",women's clinic north carolina,women's abortion clinic north carolina,7,3,google,2026-03-12 19:32:51.242440,abortion clinic,abortion clinic north carolina,women's,abortion +abortion,"(""women's clinic north carolina"", ""women's clinic jacksonville north carolina"")",women's clinic north carolina,women's clinic jacksonville north carolina,8,3,google,2026-03-12 19:32:51.242440,abortion clinic,abortion clinic north carolina,women's,jacksonville +abortion,"(""women's clinic north carolina"", ""women's clinic fayetteville north carolina"")",women's clinic north carolina,women's clinic fayetteville north carolina,9,3,google,2026-03-12 19:32:51.242440,abortion clinic,abortion clinic north carolina,women's,fayetteville +abortion,"('free abortion clinic north carolina', 'free abortion clinic near me')",free abortion clinic north carolina,free abortion clinic near me,1,3,google,2026-03-12 19:32:52.422900,abortion clinic,abortion clinic north carolina,free,near me +abortion,"('free abortion clinic north carolina', 'free abortion clinic raleigh nc')",free abortion clinic north carolina,free abortion clinic raleigh nc,2,3,google,2026-03-12 19:32:52.422900,abortion clinic,abortion clinic north carolina,free,raleigh nc +abortion,"('free abortion clinic north carolina', 'free abortion clinic charlotte nc')",free abortion clinic north carolina,free abortion clinic charlotte nc,3,3,google,2026-03-12 19:32:52.422900,abortion clinic,abortion clinic north carolina,free,charlotte nc +abortion,"('abortion clinic greensboro north carolina', ""women's hospital greensboro north carolina"")",abortion clinic greensboro north carolina,women's hospital greensboro north carolina,1,3,google,2026-03-12 19:32:53.590699,abortion clinic,abortion clinic north carolina,greensboro,women's hospital +abortion,"('abortion clinic greensboro north carolina', ""women's center greensboro north carolina"")",abortion clinic greensboro north carolina,women's center greensboro north carolina,2,3,google,2026-03-12 19:32:53.590699,abortion clinic,abortion clinic north carolina,greensboro,women's center +abortion,"('abortion clinic greensboro north carolina', ""women's resource center greensboro north carolina"")",abortion clinic greensboro north carolina,women's resource center greensboro north carolina,3,3,google,2026-03-12 19:32:53.590699,abortion clinic,abortion clinic north carolina,greensboro,women's resource center +abortion,"('abortion clinic greensboro north carolina', 'how long can you get an abortion in nc')",abortion clinic greensboro north carolina,how long can you get an abortion in nc,4,3,google,2026-03-12 19:32:53.590699,abortion clinic,abortion clinic north carolina,greensboro,how long can you get an in nc +abortion,"('abortion clinic greensboro north carolina', 'abortion options in nc')",abortion clinic greensboro north carolina,abortion options in nc,5,3,google,2026-03-12 19:32:53.590699,abortion clinic,abortion clinic north carolina,greensboro,options in nc +abortion,"('abortion clinic greensboro north carolina', 'abortion process in nc')",abortion clinic greensboro north carolina,abortion process in nc,6,3,google,2026-03-12 19:32:53.590699,abortion clinic,abortion clinic north carolina,greensboro,process in nc +abortion,"('abortion clinic greensboro north carolina', 'abortion clinic near greensboro nc')",abortion clinic greensboro north carolina,abortion clinic near greensboro nc,7,3,google,2026-03-12 19:32:53.590699,abortion clinic,abortion clinic north carolina,greensboro,near nc +abortion,"('abortion clinic greensboro north carolina', 'abortion clinic greensboro')",abortion clinic greensboro north carolina,abortion clinic greensboro,8,3,google,2026-03-12 19:32:53.590699,abortion clinic,abortion clinic north carolina,greensboro,greensboro +abortion,"('abortion clinic chicago illinois', ""women's clinic chicago il"")",abortion clinic chicago illinois,women's clinic chicago il,1,3,google,2026-03-12 19:32:54.811396,abortion clinic,abortion clinic chicago,illinois,women's il +abortion,"('abortion clinic chicago illinois', 'abortion clinic.near me. chicago illinois')",abortion clinic chicago illinois,abortion clinic.near me. chicago illinois,2,3,google,2026-03-12 19:32:54.811396,abortion clinic,abortion clinic chicago,illinois,clinic.near me. +abortion,"('abortion clinic chicago illinois', 'abortion clinic downtown chicago il')",abortion clinic chicago illinois,abortion clinic downtown chicago il,3,3,google,2026-03-12 19:32:54.811396,abortion clinic,abortion clinic chicago,illinois,downtown il +abortion,"('abortion clinic chicago illinois', 'abortion clinic near chicago il')",abortion clinic chicago illinois,abortion clinic near chicago il,4,3,google,2026-03-12 19:32:54.811396,abortion clinic,abortion clinic chicago,illinois,near il +abortion,"('abortion clinic chicago illinois', 'abortion clinics in chicago area')",abortion clinic chicago illinois,abortion clinics in chicago area,5,3,google,2026-03-12 19:32:54.811396,abortion clinic,abortion clinic chicago,illinois,clinics in area +abortion,"('abortion clinic chicago illinois', 'abortion clinic chicago free')",abortion clinic chicago illinois,abortion clinic chicago free,6,3,google,2026-03-12 19:32:54.811396,abortion clinic,abortion clinic chicago,illinois,free +abortion,"('abortion clinic chicago illinois', 'abortion clinic chicago downtown')",abortion clinic chicago illinois,abortion clinic chicago downtown,7,3,google,2026-03-12 19:32:54.811396,abortion clinic,abortion clinic chicago,illinois,downtown +abortion,"('abortion clinic chicago free', 'free abortion clinic chicago no insurance')",abortion clinic chicago free,free abortion clinic chicago no insurance,1,3,google,2026-03-12 19:32:56.147626,abortion clinic,abortion clinic chicago,free,no insurance +abortion,"('abortion clinic chicago free', 'free abortion clinic near me')",abortion clinic chicago free,free abortion clinic near me,2,3,google,2026-03-12 19:32:56.147626,abortion clinic,abortion clinic chicago,free,near me +abortion,"('abortion clinic chicago free', 'abortion clinic chicago cost')",abortion clinic chicago free,abortion clinic chicago cost,3,3,google,2026-03-12 19:32:56.147626,abortion clinic,abortion clinic chicago,free,cost +abortion,"('abortion clinic chicago free', 'abortion clinic chicago downtown')",abortion clinic chicago free,abortion clinic chicago downtown,4,3,google,2026-03-12 19:32:56.147626,abortion clinic,abortion clinic chicago,free,downtown +abortion,"('abortion clinic chicago free', 'abortion clinic chicago il')",abortion clinic chicago free,abortion clinic chicago il,5,3,google,2026-03-12 19:32:56.147626,abortion clinic,abortion clinic chicago,free,il +abortion,"('abortion clinic chicago free', 'abortion clinic chicago illinois')",abortion clinic chicago free,abortion clinic chicago illinois,6,3,google,2026-03-12 19:32:56.147626,abortion clinic,abortion clinic chicago,free,illinois +abortion,"('abortion clinic chicago price', 'abortion clinic chicago cost')",abortion clinic chicago price,abortion clinic chicago cost,1,3,google,2026-03-12 19:32:57.637894,abortion clinic,abortion clinic chicago,price,cost +abortion,"('abortion clinic chicago price', 'abortion clinic chicago free')",abortion clinic chicago price,abortion clinic chicago free,2,3,google,2026-03-12 19:32:57.637894,abortion clinic,abortion clinic chicago,price,free +abortion,"('abortion clinic chicago price', 'abortion clinic chicago illinois')",abortion clinic chicago price,abortion clinic chicago illinois,3,3,google,2026-03-12 19:32:57.637894,abortion clinic,abortion clinic chicago,price,illinois +abortion,"('abortion clinic chicago price', 'abortion clinic chicago downtown')",abortion clinic chicago price,abortion clinic chicago downtown,4,3,google,2026-03-12 19:32:57.637894,abortion clinic,abortion clinic chicago,price,downtown +abortion,"('abortion clinic chicago near me', 'abortion clinic near me chicago il')",abortion clinic chicago near me,abortion clinic near me chicago il,1,3,google,2026-03-12 19:32:58.458760,abortion clinic,abortion clinic chicago,near me,il +abortion,"('abortion clinic chicago near me', 'abortion clinic chicago free')",abortion clinic chicago near me,abortion clinic chicago free,2,3,google,2026-03-12 19:32:58.458760,abortion clinic,abortion clinic chicago,near me,free +abortion,"('abortion clinic chicago near me', 'abortion clinic chicago illinois')",abortion clinic chicago near me,abortion clinic chicago illinois,3,3,google,2026-03-12 19:32:58.458760,abortion clinic,abortion clinic chicago,near me,illinois +abortion,"('abortion clinic chicago open now', 'abortion clinic open near me')",abortion clinic chicago open now,abortion clinic open near me,1,3,google,2026-03-12 19:32:59.801292,abortion clinic,abortion clinic chicago,open now,near me +abortion,"('abortion clinic chicago open now', 'abortion clinic open on saturday near me')",abortion clinic chicago open now,abortion clinic open on saturday near me,2,3,google,2026-03-12 19:32:59.801292,abortion clinic,abortion clinic chicago,open now,on saturday near me +abortion,"('abortion clinic chicago open now', 'abortion clinic chicago near me')",abortion clinic chicago open now,abortion clinic chicago near me,3,3,google,2026-03-12 19:32:59.801292,abortion clinic,abortion clinic chicago,open now,near me +abortion,"('abortion clinic chicago open now', 'abortion clinic chicago free')",abortion clinic chicago open now,abortion clinic chicago free,4,3,google,2026-03-12 19:32:59.801292,abortion clinic,abortion clinic chicago,open now,free +abortion,"('abortion clinic chicago open now', 'abortion clinic chicago il')",abortion clinic chicago open now,abortion clinic chicago il,5,3,google,2026-03-12 19:32:59.801292,abortion clinic,abortion clinic chicago,open now,il +abortion,"('abortion clinic chicago open now', 'abortion clinic chicago illinois')",abortion clinic chicago open now,abortion clinic chicago illinois,6,3,google,2026-03-12 19:32:59.801292,abortion clinic,abortion clinic chicago,open now,illinois +abortion,"('abortion clinic chicago open now', 'abortion clinic chicago downtown')",abortion clinic chicago open now,abortion clinic chicago downtown,7,3,google,2026-03-12 19:32:59.801292,abortion clinic,abortion clinic chicago,open now,downtown +abortion,"('abortion clinic chicago washington street', 'abortion clinic chicago washington blvd')",abortion clinic chicago washington street,abortion clinic chicago washington blvd,1,3,google,2026-03-12 19:33:00.841736,abortion clinic,abortion clinic chicago,washington street,blvd +abortion,"('abortion clinic chicago washington street', 'abortion clinic washington st chicago')",abortion clinic chicago washington street,abortion clinic washington st chicago,2,3,google,2026-03-12 19:33:00.841736,abortion clinic,abortion clinic chicago,washington street,st +abortion,"('abortion clinic chicago washington street', 'abortion clinic on washington in chicago il')",abortion clinic chicago washington street,abortion clinic on washington in chicago il,3,3,google,2026-03-12 19:33:00.841736,abortion clinic,abortion clinic chicago,washington street,on in il +abortion,"('abortion clinic chicago washington street', 'abortion clinic chicago downtown')",abortion clinic chicago washington street,abortion clinic chicago downtown,4,3,google,2026-03-12 19:33:00.841736,abortion clinic,abortion clinic chicago,washington street,downtown +abortion,"('abortion clinic chicago washington street', 'abortion clinic chicago near me')",abortion clinic chicago washington street,abortion clinic chicago near me,5,3,google,2026-03-12 19:33:00.841736,abortion clinic,abortion clinic chicago,washington street,near me +abortion,"('abortion clinic chicago washington street', 'abortion clinic chicago free')",abortion clinic chicago washington street,abortion clinic chicago free,6,3,google,2026-03-12 19:33:00.841736,abortion clinic,abortion clinic chicago,washington street,free +abortion,"('abortion clinic chicago downtown', 'abortion clinic chicago il')",abortion clinic chicago downtown,abortion clinic chicago il,1,3,google,2026-03-12 19:33:02.014640,abortion clinic,abortion clinic chicago,downtown,il +abortion,"('abortion clinic chicago downtown', 'abortion clinic downtown chicago il')",abortion clinic chicago downtown,abortion clinic downtown chicago il,2,3,google,2026-03-12 19:33:02.014640,abortion clinic,abortion clinic chicago,downtown,il +abortion,"('abortion clinic chicago downtown', ""women's clinic downtown chicago"")",abortion clinic chicago downtown,women's clinic downtown chicago,3,3,google,2026-03-12 19:33:02.014640,abortion clinic,abortion clinic chicago,downtown,women's +abortion,"('abortion clinic chicago downtown', ""women's clinic chicago il"")",abortion clinic chicago downtown,women's clinic chicago il,4,3,google,2026-03-12 19:33:02.014640,abortion clinic,abortion clinic chicago,downtown,women's il +abortion,"('abortion clinic chicago downtown', 'abortion clinic chicago illinois')",abortion clinic chicago downtown,abortion clinic chicago illinois,5,3,google,2026-03-12 19:33:02.014640,abortion clinic,abortion clinic chicago,downtown,illinois +abortion,"('abortion clinic chicago within 5 mi', 'abortion laws in chicago')",abortion clinic chicago within 5 mi,abortion laws in chicago,1,3,google,2026-03-12 19:33:03.445472,abortion clinic,abortion clinic chicago,within 5 mi,laws in +abortion,"('abortion clinic chicago within 5 mi', 'abortion clinic chicago free')",abortion clinic chicago within 5 mi,abortion clinic chicago free,2,3,google,2026-03-12 19:33:03.445472,abortion clinic,abortion clinic chicago,within 5 mi,free +abortion,"('abortion clinic chicago within 5 mi', 'abortion clinic chicago illinois')",abortion clinic chicago within 5 mi,abortion clinic chicago illinois,3,3,google,2026-03-12 19:33:03.445472,abortion clinic,abortion clinic chicago,within 5 mi,illinois +abortion,"('abortion clinic chicago within 5 mi', 'abortion clinic chicago downtown')",abortion clinic chicago within 5 mi,abortion clinic chicago downtown,4,3,google,2026-03-12 19:33:03.445472,abortion clinic,abortion clinic chicago,within 5 mi,downtown +abortion,"('abortion clinic chicago within 5 mi', 'abortion clinic chicago il')",abortion clinic chicago within 5 mi,abortion clinic chicago il,5,3,google,2026-03-12 19:33:03.445472,abortion clinic,abortion clinic chicago,within 5 mi,il +abortion,"('abortion clinic chicago within 5 mi', 'abortion clinic chicago cost')",abortion clinic chicago within 5 mi,abortion clinic chicago cost,6,3,google,2026-03-12 19:33:03.445472,abortion clinic,abortion clinic chicago,within 5 mi,cost +abortion,"('abortion clinic chicago washington', 'abortion clinic chicago washington street')",abortion clinic chicago washington,abortion clinic chicago washington street,1,3,google,2026-03-12 19:33:04.688560,abortion clinic,abortion clinic chicago,washington,street +abortion,"('abortion clinic chicago washington', 'abortion clinic chicago washington blvd')",abortion clinic chicago washington,abortion clinic chicago washington blvd,2,3,google,2026-03-12 19:33:04.688560,abortion clinic,abortion clinic chicago,washington,blvd +abortion,"('abortion clinic chicago washington', 'abortion clinic washington st chicago')",abortion clinic chicago washington,abortion clinic washington st chicago,3,3,google,2026-03-12 19:33:04.688560,abortion clinic,abortion clinic chicago,washington,st +abortion,"('abortion clinic chicago washington', 'abortion clinic on washington in chicago il')",abortion clinic chicago washington,abortion clinic on washington in chicago il,4,3,google,2026-03-12 19:33:04.688560,abortion clinic,abortion clinic chicago,washington,on in il +abortion,"('abortion clinic chicago washington', 'abortion clinic chicago downtown')",abortion clinic chicago washington,abortion clinic chicago downtown,5,3,google,2026-03-12 19:33:04.688560,abortion clinic,abortion clinic chicago,washington,downtown +abortion,"('abortion clinic chicago washington', 'abortion clinic chicago il')",abortion clinic chicago washington,abortion clinic chicago il,6,3,google,2026-03-12 19:33:04.688560,abortion clinic,abortion clinic chicago,washington,il +abortion,"('abortion clinic chicago washington', 'abortion clinic chicago near me')",abortion clinic chicago washington,abortion clinic chicago near me,7,3,google,2026-03-12 19:33:04.688560,abortion clinic,abortion clinic chicago,washington,near me +abortion,"('abortion pill cost cvs florida', 'abortion pill cost cvs')",abortion pill cost cvs florida,abortion pill cost cvs,1,3,google,2026-03-12 19:33:05.719113,abortion pill cost,abortion pill cost cvs,florida,florida +abortion,"('abortion pill cost cvs florida', 'abortion pill cost cvs price')",abortion pill cost cvs florida,abortion pill cost cvs price,2,3,google,2026-03-12 19:33:05.719113,abortion pill cost,abortion pill cost cvs,florida,price +abortion,"('abortion pill cost cvs florida', 'abortion pill cost fl')",abortion pill cost cvs florida,abortion pill cost fl,3,3,google,2026-03-12 19:33:05.719113,abortion pill cost,abortion pill cost cvs,florida,fl +abortion,"('abortion pill cost cvs florida', 'abortion pill cvs walgreens')",abortion pill cost cvs florida,abortion pill cvs walgreens,4,3,google,2026-03-12 19:33:05.719113,abortion pill cost,abortion pill cost cvs,florida,walgreens +abortion,"('abortion pill cost cvs california', 'abortion pill cost cvs')",abortion pill cost cvs california,abortion pill cost cvs,1,3,google,2026-03-12 19:33:06.960133,abortion pill cost,abortion pill cost cvs,california,california +abortion,"('abortion pill cost cvs california', 'cost of abortion pill in california')",abortion pill cost cvs california,cost of abortion pill in california,2,3,google,2026-03-12 19:33:06.960133,abortion pill cost,abortion pill cost cvs,california,of in +abortion,"('abortion pill cost cvs california', 'abortion pill cost cvs price')",abortion pill cost cvs california,abortion pill cost cvs price,3,3,google,2026-03-12 19:33:06.960133,abortion pill cost,abortion pill cost cvs,california,price +abortion,"('abortion pill cost cvs california', 'abortion pill cvs walgreens')",abortion pill cost cvs california,abortion pill cvs walgreens,4,3,google,2026-03-12 19:33:06.960133,abortion pill cost,abortion pill cost cvs,california,walgreens +abortion,"('abortion pill cost cvs texas', 'abortion pill cost cvs')",abortion pill cost cvs texas,abortion pill cost cvs,1,3,google,2026-03-12 19:33:08.325829,abortion pill cost,abortion pill cost cvs,texas,texas +abortion,"('abortion pill cost cvs texas', 'abortion pill cost cvs price')",abortion pill cost cvs texas,abortion pill cost cvs price,2,3,google,2026-03-12 19:33:08.325829,abortion pill cost,abortion pill cost cvs,texas,price +abortion,"('abortion pill cost cvs texas', 'abortion pill texas cvs')",abortion pill cost cvs texas,abortion pill texas cvs,3,3,google,2026-03-12 19:33:08.325829,abortion pill cost,abortion pill cost cvs,texas,texas +abortion,"('abortion pill cost cvs texas', 'abortion pill cvs walgreens')",abortion pill cost cvs texas,abortion pill cvs walgreens,4,3,google,2026-03-12 19:33:08.325829,abortion pill cost,abortion pill cost cvs,texas,walgreens +abortion,"('abortion pill cost cvs michigan', 'abortion pill cost cvs')",abortion pill cost cvs michigan,abortion pill cost cvs,1,3,google,2026-03-12 19:33:10.921975,abortion pill cost,abortion pill cost cvs,michigan,michigan +abortion,"('abortion pill cost cvs michigan', 'abortion pill cost michigan')",abortion pill cost cvs michigan,abortion pill cost michigan,2,3,google,2026-03-12 19:33:10.921975,abortion pill cost,abortion pill cost cvs,michigan,michigan +abortion,"('abortion pill cost cvs michigan', 'does insurance cover abortion pill')",abortion pill cost cvs michigan,does insurance cover abortion pill,3,3,google,2026-03-12 19:33:10.921975,abortion pill cost,abortion pill cost cvs,michigan,does insurance cover +abortion,"('abortion pill cost cvs michigan', 'abortion pill cost cvs price')",abortion pill cost cvs michigan,abortion pill cost cvs price,4,3,google,2026-03-12 19:33:10.921975,abortion pill cost,abortion pill cost cvs,michigan,price +abortion,"('abortion pill cost cvs michigan', 'abortion pill cvs walgreens')",abortion pill cost cvs michigan,abortion pill cvs walgreens,5,3,google,2026-03-12 19:33:10.921975,abortion pill cost,abortion pill cost cvs,michigan,walgreens +abortion,"('abortion pill cost cvs over the counter', 'abortion pill cost cvs')",abortion pill cost cvs over the counter,abortion pill cost cvs,1,3,google,2026-03-12 19:33:12.272467,abortion pill cost,abortion pill cost cvs,over the counter,over the counter +abortion,"('abortion pill cost cvs over the counter', 'can you buy misoprostol over the counter at walmart')",abortion pill cost cvs over the counter,can you buy misoprostol over the counter at walmart,2,3,google,2026-03-12 19:33:12.272467,abortion pill cost,abortion pill cost cvs,over the counter,can you buy misoprostol at walmart +abortion,"('abortion pill cost cvs over the counter', 'abortion pill cost cvs price')",abortion pill cost cvs over the counter,abortion pill cost cvs price,3,3,google,2026-03-12 19:33:12.272467,abortion pill cost,abortion pill cost cvs,over the counter,price +abortion,"('abortion pill cost cvs over the counter', 'abortion pill cvs walgreens')",abortion pill cost cvs over the counter,abortion pill cvs walgreens,4,3,google,2026-03-12 19:33:12.272467,abortion pill cost,abortion pill cost cvs,over the counter,walgreens +abortion,"('abortion pill cost cvs pa', 'abortion pill cost cvs')",abortion pill cost cvs pa,abortion pill cost cvs,1,3,google,2026-03-12 19:33:13.293508,abortion pill cost,abortion pill cost cvs,pa,pa +abortion,"('abortion pill cost cvs pa', 'abortion pill cost cvs price')",abortion pill cost cvs pa,abortion pill cost cvs price,2,3,google,2026-03-12 19:33:13.293508,abortion pill cost,abortion pill cost cvs,pa,price +abortion,"('abortion pill cost cvs pa', 'abortion pill cvs walgreens')",abortion pill cost cvs pa,abortion pill cvs walgreens,3,3,google,2026-03-12 19:33:13.293508,abortion pill cost,abortion pill cost cvs,pa,walgreens +abortion,"('morning after pill cost cvs', 'day after pill cvs cost')",morning after pill cost cvs,day after pill cvs cost,1,3,google,2026-03-12 19:33:14.339374,abortion pill cost,abortion pill cost cvs,morning after,day +abortion,"('morning after pill cost cvs', 'morning after pill price cvs')",morning after pill cost cvs,morning after pill price cvs,2,3,google,2026-03-12 19:33:14.339374,abortion pill cost,abortion pill cost cvs,morning after,price +abortion,"('morning after pill cost cvs', 'how much is the morning after pill at cvs')",morning after pill cost cvs,how much is the morning after pill at cvs,3,3,google,2026-03-12 19:33:14.339374,abortion pill cost,abortion pill cost cvs,morning after,how much is the at +abortion,"('morning after pill cost cvs', 'does cvs sell morning after pill')",morning after pill cost cvs,does cvs sell morning after pill,4,3,google,2026-03-12 19:33:14.339374,abortion pill cost,abortion pill cost cvs,morning after,does sell +abortion,"('morning after pill cost cvs', 'morning after pill cvs coupon')",morning after pill cost cvs,morning after pill cvs coupon,5,3,google,2026-03-12 19:33:14.339374,abortion pill cost,abortion pill cost cvs,morning after,coupon +abortion,"('morning after pill cost cvs', 'morning after pill cost walgreens')",morning after pill cost cvs,morning after pill cost walgreens,6,3,google,2026-03-12 19:33:14.339374,abortion pill cost,abortion pill cost cvs,morning after,walgreens +abortion,"('abortion pill cvs cost nc', 'abortion pill cost cvs')",abortion pill cvs cost nc,abortion pill cost cvs,1,3,google,2026-03-12 19:33:15.493402,abortion pill cost,abortion pill cost cvs,nc,nc +abortion,"('abortion pill cvs cost nc', 'abortion pill nc cost')",abortion pill cvs cost nc,abortion pill nc cost,2,3,google,2026-03-12 19:33:15.493402,abortion pill cost,abortion pill cost cvs,nc,nc +abortion,"('abortion pill cvs cost nc', 'abortion pill cost cvs price')",abortion pill cvs cost nc,abortion pill cost cvs price,3,3,google,2026-03-12 19:33:15.493402,abortion pill cost,abortion pill cost cvs,nc,price +abortion,"('abortion pill cvs cost nc', 'abortion pill cost north carolina')",abortion pill cvs cost nc,abortion pill cost north carolina,4,3,google,2026-03-12 19:33:15.493402,abortion pill cost,abortion pill cost cvs,nc,north carolina +abortion,"('abortion pill cost california reddit', 'cost of abortion pill in california')",abortion pill cost california reddit,cost of abortion pill in california,1,3,google,2026-03-12 19:33:16.813028,abortion pill cost,abortion pill cost california,reddit,of in +abortion,"('abortion clinic california cost', 'how much does an abortion cost at planned parenthood california')",abortion clinic california cost,how much does an abortion cost at planned parenthood california,1,3,google,2026-03-12 19:33:18.056736,abortion pill cost,abortion pill cost california,clinic,how much does an at planned parenthood +abortion,"('abortion clinic california cost', 'california abortion clinic free')",abortion clinic california cost,california abortion clinic free,2,3,google,2026-03-12 19:33:18.056736,abortion pill cost,abortion pill cost california,clinic,free +abortion,"('kaiser abortion pill cost california', 'does kaiser cover abortions in california')",kaiser abortion pill cost california,does kaiser cover abortions in california,1,3,google,2026-03-12 19:33:19.495387,abortion pill cost,abortion pill cost california,kaiser,does cover abortions in +abortion,"('kaiser abortion pill cost california', 'how much is an abortion at kaiser')",kaiser abortion pill cost california,how much is an abortion at kaiser,2,3,google,2026-03-12 19:33:19.495387,abortion pill cost,abortion pill cost california,kaiser,how much is an at +abortion,"('kaiser abortion pill cost california', 'kaiser abortion pill cost')",kaiser abortion pill cost california,kaiser abortion pill cost,3,3,google,2026-03-12 19:33:19.495387,abortion pill cost,abortion pill cost california,kaiser,kaiser +abortion,"('kaiser abortion pill cost california', 'kaiser abortion copay')",kaiser abortion pill cost california,kaiser abortion copay,4,3,google,2026-03-12 19:33:19.495387,abortion pill cost,abortion pill cost california,kaiser,copay +abortion,"('kaiser abortion pill cost california', 'kaiser abortion pills')",kaiser abortion pill cost california,kaiser abortion pills,5,3,google,2026-03-12 19:33:19.495387,abortion pill cost,abortion pill cost california,kaiser,pills +abortion,"('hey jane abortion pill cost california', 'jane abortion pill')",hey jane abortion pill cost california,jane abortion pill,1,3,google,2026-03-12 19:33:21.779031,abortion pill cost,abortion pill cost california,hey jane,hey jane +abortion,"('abortion pill low cost online', 'abortion pill cost online')",abortion pill low cost online,abortion pill cost online,1,3,google,2026-03-12 19:33:22.890529,abortion pill cost,abortion pill cost online,low,low +abortion,"('abortion pill low cost online', 'abortion pills name and price online in india')",abortion pill low cost online,abortion pills name and price online in india,2,3,google,2026-03-12 19:33:22.890529,abortion pill cost,abortion pill cost online,low,pills name and price in india +abortion,"('abortion pill low cost online', 'abortion pill name and price online')",abortion pill low cost online,abortion pill name and price online,3,3,google,2026-03-12 19:33:22.890529,abortion pill cost,abortion pill cost online,low,name and price +abortion,"('abortion pill low cost online', 'abortion pill clinic near me free')",abortion pill low cost online,abortion pill clinic near me free,4,3,google,2026-03-12 19:33:22.890529,abortion pill cost,abortion pill cost online,low,clinic near me free +abortion,"('abortion pill low cost online', 'abortion pill near me online')",abortion pill low cost online,abortion pill near me online,5,3,google,2026-03-12 19:33:22.890529,abortion pill cost,abortion pill cost online,low,near me +abortion,"('abortion pill cost pharmacy near me', 'abortion pill cost cvs near me')",abortion pill cost pharmacy near me,abortion pill cost cvs near me,1,3,google,2026-03-12 19:33:24.277754,abortion pill cost,abortion pill cost pharmacy,near me,cvs +abortion,"('abortion pill cost pharmacy near me', 'abortion pill cost pharmacy malaysia near me')",abortion pill cost pharmacy near me,abortion pill cost pharmacy malaysia near me,2,3,google,2026-03-12 19:33:24.277754,abortion pill cost,abortion pill cost pharmacy,near me,malaysia +abortion,"('abortion pill cost pharmacy near me', 'abortion pill cost cvs price')",abortion pill cost pharmacy near me,abortion pill cost cvs price,3,3,google,2026-03-12 19:33:24.277754,abortion pill cost,abortion pill cost pharmacy,near me,cvs price +abortion,"('abortion pill cost pharmacy south africa', 'abortion pill cost south dakota')",abortion pill cost pharmacy south africa,abortion pill cost south dakota,1,3,google,2026-03-12 19:33:25.196561,abortion pill cost,abortion pill cost pharmacy,south africa,dakota +abortion,"('abortion pill cost pharmacy south africa', 'abortion pill cost south carolina')",abortion pill cost pharmacy south africa,abortion pill cost south carolina,2,3,google,2026-03-12 19:33:25.196561,abortion pill cost,abortion pill cost pharmacy,south africa,carolina +abortion,"('abortion pill cost pharmacy south africa', 'abortion pill pharmacies')",abortion pill cost pharmacy south africa,abortion pill pharmacies,3,3,google,2026-03-12 19:33:25.196561,abortion pill cost,abortion pill cost pharmacy,south africa,pharmacies +abortion,"('abortion pill cost pharmacy south africa', 'abortion pill cost sc')",abortion pill cost pharmacy south africa,abortion pill cost sc,4,3,google,2026-03-12 19:33:25.196561,abortion pill cost,abortion pill cost pharmacy,south africa,sc +abortion,"('abortion pill cost pharmacy in kenya', 'how much is mifepristone in pharmacy in kenya')",abortion pill cost pharmacy in kenya,how much is mifepristone in pharmacy in kenya,1,3,google,2026-03-12 19:33:26.007689,abortion pill cost,abortion pill cost pharmacy,in kenya,how much is mifepristone +abortion,"('abortion pill cost pharmacy in kenya', 'abortion pill kentucky cost')",abortion pill cost pharmacy in kenya,abortion pill kentucky cost,2,3,google,2026-03-12 19:33:26.007689,abortion pill cost,abortion pill cost pharmacy,in kenya,kentucky +abortion,"('abortion pill cost pharmacy in kenya', 'how much is mifepristone in pharmacy')",abortion pill cost pharmacy in kenya,how much is mifepristone in pharmacy,3,3,google,2026-03-12 19:33:26.007689,abortion pill cost,abortion pill cost pharmacy,in kenya,how much is mifepristone +abortion,"('abortion pill cost pharmacy in kenya', 'cost of abortion pill in kenyan shillings')",abortion pill cost pharmacy in kenya,cost of abortion pill in kenyan shillings,4,3,google,2026-03-12 19:33:26.007689,abortion pill cost,abortion pill cost pharmacy,in kenya,of kenyan shillings +abortion,"('abortion pill cost pharmacy india', 'abortion pill cost in indiana')",abortion pill cost pharmacy india,abortion pill cost in indiana,1,3,google,2026-03-12 19:33:26.908005,abortion pill cost,abortion pill cost pharmacy,india,in indiana +abortion,"('abortion pill cost pharmacy malaysia', 'abortion pill cost pharmacy malaysia near me')",abortion pill cost pharmacy malaysia,abortion pill cost pharmacy malaysia near me,1,3,google,2026-03-12 19:33:28.297875,abortion pill cost,abortion pill cost pharmacy,malaysia,near me +abortion,"('abortion pill cost pharmacy malaysia', 'abortion pills price at pharmacy')",abortion pill cost pharmacy malaysia,abortion pills price at pharmacy,2,3,google,2026-03-12 19:33:28.297875,abortion pill cost,abortion pill cost pharmacy,malaysia,pills price at +abortion,"('abortion pill cost pharmacy malaysia', 'abortion pill pharmacies')",abortion pill cost pharmacy malaysia,abortion pill pharmacies,3,3,google,2026-03-12 19:33:28.297875,abortion pill cost,abortion pill cost pharmacy,malaysia,pharmacies +abortion,"('abortion pill cost pharmacy malaysia', 'abortion pill price massachusetts')",abortion pill cost pharmacy malaysia,abortion pill price massachusetts,4,3,google,2026-03-12 19:33:28.297875,abortion pill cost,abortion pill cost pharmacy,malaysia,price massachusetts +abortion,"('abortion pill cost pharmacy malaysia near me', 'abortion pill malaysia pharmacy')",abortion pill cost pharmacy malaysia near me,abortion pill malaysia pharmacy,1,3,google,2026-03-12 19:33:29.159981,abortion pill cost,abortion pill cost pharmacy,malaysia near me,malaysia near me +abortion,"('abortion pill cost pharmacy malaysia near me', 'abortion pill price massachusetts')",abortion pill cost pharmacy malaysia near me,abortion pill price massachusetts,2,3,google,2026-03-12 19:33:29.159981,abortion pill cost,abortion pill cost pharmacy,malaysia near me,price massachusetts +abortion,"('abortion pill nc cost', 'abortion clinic north carolina cost')",abortion pill nc cost,abortion clinic north carolina cost,1,3,google,2026-03-12 19:33:30.423950,abortion pill cost,abortion pill cost north carolina,nc,clinic north carolina +abortion,"('abortion pill nc cost', 'abortion pill charlotte nc cost')",abortion pill nc cost,abortion pill charlotte nc cost,2,3,google,2026-03-12 19:33:30.423950,abortion pill cost,abortion pill cost north carolina,nc,charlotte +abortion,"('abortion pill nc cost', 'abortion clinic raleigh nc cost')",abortion pill nc cost,abortion clinic raleigh nc cost,3,3,google,2026-03-12 19:33:30.423950,abortion pill cost,abortion pill cost north carolina,nc,clinic raleigh +abortion,"('abortion pill nc cost', 'abortion clinic charlotte nc cost')",abortion pill nc cost,abortion clinic charlotte nc cost,4,3,google,2026-03-12 19:33:30.423950,abortion pill cost,abortion pill cost north carolina,nc,clinic charlotte +abortion,"('abortion pill nc cost', 'abortion pill cvs cost nc')",abortion pill nc cost,abortion pill cvs cost nc,5,3,google,2026-03-12 19:33:30.423950,abortion pill cost,abortion pill cost north carolina,nc,cvs +abortion,"('abortion pill nc cost', 'abortion pill cost raleigh nc')",abortion pill nc cost,abortion pill cost raleigh nc,6,3,google,2026-03-12 19:33:30.423950,abortion pill cost,abortion pill cost north carolina,nc,raleigh +abortion,"('abortion pill nc cost', 'abortion pill cost north carolina')",abortion pill nc cost,abortion pill cost north carolina,7,3,google,2026-03-12 19:33:30.423950,abortion pill cost,abortion pill cost north carolina,nc,north carolina +abortion,"('abortion pill nc cost', 'abortion pill nc')",abortion pill nc cost,abortion pill nc,8,3,google,2026-03-12 19:33:30.423950,abortion pill cost,abortion pill cost north carolina,nc,nc +abortion,"('how much are abortions at planned parenthood with insurance', 'how much are abortion pills at planned parenthood with insurance')",how much are abortions at planned parenthood with insurance,how much are abortion pills at planned parenthood with insurance,1,3,google,2026-03-12 19:33:31.534197,abortion pill cost,abortion pill cost planned parenthood reddit,how much are abortions at with insurance,abortion pills +abortion,"('how much are abortions at planned parenthood with insurance', 'how much is an abortion at planned parenthood with insurance in california')",how much are abortions at planned parenthood with insurance,how much is an abortion at planned parenthood with insurance in california,2,3,google,2026-03-12 19:33:31.534197,abortion pill cost,abortion pill cost planned parenthood reddit,how much are abortions at with insurance,is an abortion in california +abortion,"('how much are abortions at planned parenthood with insurance', 'how much is an abortion at planned parenthood with insurance reddit')",how much are abortions at planned parenthood with insurance,how much is an abortion at planned parenthood with insurance reddit,3,3,google,2026-03-12 19:33:31.534197,abortion pill cost,abortion pill cost planned parenthood reddit,how much are abortions at with insurance,is an abortion reddit +abortion,"('how much are abortions at planned parenthood with insurance', 'how much are abortions at planned parenthood without insurance')",how much are abortions at planned parenthood with insurance,how much are abortions at planned parenthood without insurance,4,3,google,2026-03-12 19:33:31.534197,abortion pill cost,abortion pill cost planned parenthood reddit,how much are abortions at with insurance,without +abortion,"('how much are abortions at planned parenthood with insurance', 'how much is an abortion at planned parenthood with kaiser insurance')",how much are abortions at planned parenthood with insurance,how much is an abortion at planned parenthood with kaiser insurance,5,3,google,2026-03-12 19:33:31.534197,abortion pill cost,abortion pill cost planned parenthood reddit,how much are abortions at with insurance,is an abortion kaiser +abortion,"('how much are abortions at planned parenthood with insurance', 'how much are abortion pills at planned parenthood without insurance')",how much are abortions at planned parenthood with insurance,how much are abortion pills at planned parenthood without insurance,6,3,google,2026-03-12 19:33:31.534197,abortion pill cost,abortion pill cost planned parenthood reddit,how much are abortions at with insurance,abortion pills without +abortion,"('how much are abortions at planned parenthood with insurance', 'how much is an abortion at planned parenthood in illinois with insurance')",how much are abortions at planned parenthood with insurance,how much is an abortion at planned parenthood in illinois with insurance,7,3,google,2026-03-12 19:33:31.534197,abortion pill cost,abortion pill cost planned parenthood reddit,how much are abortions at with insurance,is an abortion in illinois +abortion,"('how much are abortions at planned parenthood with insurance', 'how much is an abortion at planned parenthood in ohio with insurance')",how much are abortions at planned parenthood with insurance,how much is an abortion at planned parenthood in ohio with insurance,8,3,google,2026-03-12 19:33:31.534197,abortion pill cost,abortion pill cost planned parenthood reddit,how much are abortions at with insurance,is an abortion in ohio +abortion,"('how much are abortions at planned parenthood with insurance', 'how much is an abortion at planned parenthood in pa with insurance')",how much are abortions at planned parenthood with insurance,how much is an abortion at planned parenthood in pa with insurance,9,3,google,2026-03-12 19:33:31.534197,abortion pill cost,abortion pill cost planned parenthood reddit,how much are abortions at with insurance,is an abortion in pa +abortion,"('how much is an abortion cost at planned parenthood', 'how much does an abortion cost at planned parenthood in illinois')",how much is an abortion cost at planned parenthood,how much does an abortion cost at planned parenthood in illinois,1,3,google,2026-03-12 19:33:32.873231,abortion pill cost,abortion pill cost planned parenthood reddit,how much is an at,does in illinois +abortion,"('how much is an abortion cost at planned parenthood', 'how much does an abortion cost at planned parenthood in ca')",how much is an abortion cost at planned parenthood,how much does an abortion cost at planned parenthood in ca,2,3,google,2026-03-12 19:33:32.873231,abortion pill cost,abortion pill cost planned parenthood reddit,how much is an at,does in ca +abortion,"('how much is an abortion cost at planned parenthood', 'how much does an abortion cost at planned parenthood pa')",how much is an abortion cost at planned parenthood,how much does an abortion cost at planned parenthood pa,3,3,google,2026-03-12 19:33:32.873231,abortion pill cost,abortion pill cost planned parenthood reddit,how much is an at,does pa +abortion,"('how much is an abortion cost at planned parenthood', 'how much does an abortion cost at planned parenthood in ny')",how much is an abortion cost at planned parenthood,how much does an abortion cost at planned parenthood in ny,4,3,google,2026-03-12 19:33:32.873231,abortion pill cost,abortion pill cost planned parenthood reddit,how much is an at,does in ny +abortion,"('how much is an abortion cost at planned parenthood', 'how much does an abortion cost at planned parenthood in arizona')",how much is an abortion cost at planned parenthood,how much does an abortion cost at planned parenthood in arizona,5,3,google,2026-03-12 19:33:32.873231,abortion pill cost,abortion pill cost planned parenthood reddit,how much is an at,does in arizona +abortion,"('how much is an abortion cost at planned parenthood', 'how much does an abortion cost at planned parenthood in michigan')",how much is an abortion cost at planned parenthood,how much does an abortion cost at planned parenthood in michigan,6,3,google,2026-03-12 19:33:32.873231,abortion pill cost,abortion pill cost planned parenthood reddit,how much is an at,does in michigan +abortion,"('how much is an abortion cost at planned parenthood', 'how much does an abortion cost at planned parenthood in nj')",how much is an abortion cost at planned parenthood,how much does an abortion cost at planned parenthood in nj,7,3,google,2026-03-12 19:33:32.873231,abortion pill cost,abortion pill cost planned parenthood reddit,how much is an at,does in nj +abortion,"('how much is an abortion cost at planned parenthood', 'how much does an abortion cost at planned parenthood in florida')",how much is an abortion cost at planned parenthood,how much does an abortion cost at planned parenthood in florida,8,3,google,2026-03-12 19:33:32.873231,abortion pill cost,abortion pill cost planned parenthood reddit,how much is an at,does in florida +abortion,"('how much is an abortion cost at planned parenthood', 'how much does an abortion cost at planned parenthood in ohio')",how much is an abortion cost at planned parenthood,how much does an abortion cost at planned parenthood in ohio,9,3,google,2026-03-12 19:33:32.873231,abortion pill cost,abortion pill cost planned parenthood reddit,how much is an at,does in ohio +abortion,"('abortion pill planned parenthood reddit', 'abortion pill cost planned parenthood reddit')",abortion pill planned parenthood reddit,abortion pill cost planned parenthood reddit,1,3,google,2026-03-12 19:33:34.138509,abortion pill cost,abortion pill cost planned parenthood reddit,planned parenthood reddit,cost +abortion,"('abortion pill planned parenthood reddit', 'medication abortion planned parenthood reddit')",abortion pill planned parenthood reddit,medication abortion planned parenthood reddit,2,3,google,2026-03-12 19:33:34.138509,abortion pill cost,abortion pill cost planned parenthood reddit,planned parenthood reddit,medication +abortion,"('abortion pill planned parenthood reddit', 'in clinic abortion planned parenthood reddit')",abortion pill planned parenthood reddit,in clinic abortion planned parenthood reddit,3,3,google,2026-03-12 19:33:34.138509,abortion pill cost,abortion pill cost planned parenthood reddit,planned parenthood reddit,in clinic +abortion,"('abortion pill planned parenthood reddit', 'planned parenthood abortion pill process reddit')",abortion pill planned parenthood reddit,planned parenthood abortion pill process reddit,4,3,google,2026-03-12 19:33:34.138509,abortion pill cost,abortion pill cost planned parenthood reddit,planned parenthood reddit,process +abortion,"('abortion pill planned parenthood reddit', 'planned parenthood abortion pill experience reddit')",abortion pill planned parenthood reddit,planned parenthood abortion pill experience reddit,5,3,google,2026-03-12 19:33:34.138509,abortion pill cost,abortion pill cost planned parenthood reddit,planned parenthood reddit,experience +abortion,"('abortion pill planned parenthood reddit', 'planned parenthood abortion pill price reddit')",abortion pill planned parenthood reddit,planned parenthood abortion pill price reddit,6,3,google,2026-03-12 19:33:34.138509,abortion pill cost,abortion pill cost planned parenthood reddit,planned parenthood reddit,price +abortion,"('abortion pill planned parenthood reddit', 'planned parenthood telehealth abortion pill reddit')",abortion pill planned parenthood reddit,planned parenthood telehealth abortion pill reddit,7,3,google,2026-03-12 19:33:34.138509,abortion pill cost,abortion pill cost planned parenthood reddit,planned parenthood reddit,telehealth +abortion,"('abortion pill planned parenthood reddit', 'planned parenthood direct abortion pill reddit')",abortion pill planned parenthood reddit,planned parenthood direct abortion pill reddit,8,3,google,2026-03-12 19:33:34.138509,abortion pill cost,abortion pill cost planned parenthood reddit,planned parenthood reddit,direct +abortion,"('abortion pill planned parenthood reddit', 'planned parenthood abortion pill appointment reddit')",abortion pill planned parenthood reddit,planned parenthood abortion pill appointment reddit,9,3,google,2026-03-12 19:33:34.138509,abortion pill cost,abortion pill cost planned parenthood reddit,planned parenthood reddit,appointment +abortion,"('abortion pill cost fl', 'abortion pill cost florida')",abortion pill cost fl,abortion pill cost florida,1,3,google,2026-03-12 19:33:35.355355,abortion pill cost,abortion pill cost florida,fl,florida +abortion,"('abortion pill cost fl', 'abortion pill cost cvs florida')",abortion pill cost fl,abortion pill cost cvs florida,2,3,google,2026-03-12 19:33:35.355355,abortion pill cost,abortion pill cost florida,fl,cvs florida +abortion,"('abortion pill cost fl', 'abortion clinic florida cost')",abortion pill cost fl,abortion clinic florida cost,3,3,google,2026-03-12 19:33:35.355355,abortion pill cost,abortion pill cost florida,fl,clinic florida +abortion,"('abortion pill cost fl', 'planned parenthood abortion pill cost florida')",abortion pill cost fl,planned parenthood abortion pill cost florida,4,3,google,2026-03-12 19:33:35.355355,abortion pill cost,abortion pill cost florida,fl,planned parenthood florida +abortion,"('abortion pill cost fl', 'abortion pill cost in tallahassee fl')",abortion pill cost fl,abortion pill cost in tallahassee fl,5,3,google,2026-03-12 19:33:35.355355,abortion pill cost,abortion pill cost florida,fl,in tallahassee +abortion,"('abortion clinic florida cost', 'abortion clinic jacksonville fl cost')",abortion clinic florida cost,abortion clinic jacksonville fl cost,1,3,google,2026-03-12 19:33:36.394078,abortion pill cost,abortion pill cost florida,clinic,jacksonville fl +abortion,"('abortion clinic florida cost', 'abortion cost florida planned parenthood')",abortion clinic florida cost,abortion cost florida planned parenthood,2,3,google,2026-03-12 19:33:36.394078,abortion pill cost,abortion pill cost florida,clinic,planned parenthood +abortion,"('abortion clinic florida cost', 'abortion cost fl')",abortion clinic florida cost,abortion cost fl,3,3,google,2026-03-12 19:33:36.394078,abortion pill cost,abortion pill cost florida,clinic,fl +abortion,"('abortion clinic florida cost', 'abortion clinic florida')",abortion clinic florida cost,abortion clinic florida,4,3,google,2026-03-12 19:33:36.394078,abortion pill cost,abortion pill cost florida,clinic,clinic +abortion,"('planned parenthood abortion pill cost florida', 'how much is an abortion cost at planned parenthood')",planned parenthood abortion pill cost florida,how much is an abortion cost at planned parenthood,1,3,google,2026-03-12 19:33:37.499458,abortion pill cost,abortion pill cost florida,planned parenthood,how much is an at +abortion,"('planned parenthood abortion pill cost florida', 'planned parenthood abortion cost florida')",planned parenthood abortion pill cost florida,planned parenthood abortion cost florida,2,3,google,2026-03-12 19:33:37.499458,abortion pill cost,abortion pill cost florida,planned parenthood,planned parenthood +abortion,"('planned parenthood abortion pill cost florida', 'are abortions free at planned parenthood')",planned parenthood abortion pill cost florida,are abortions free at planned parenthood,3,3,google,2026-03-12 19:33:37.499458,abortion pill cost,abortion pill cost florida,planned parenthood,are abortions free at +abortion,"('abortion definition according to who 2022', 'what is abortion according to who')",abortion definition according to who 2022,what is abortion according to who,1,3,google,2026-03-12 19:33:39.864214,abortion definition,abortion definition according to who,2022,what is +abortion,"('abortion definition according to who 2022', 'types of abortion according to who')",abortion definition according to who 2022,types of abortion according to who,2,3,google,2026-03-12 19:33:39.864214,abortion definition,abortion definition according to who,2022,types of +abortion,"('abortion definition according to who 2022', 'who definition of abortion')",abortion definition according to who 2022,who definition of abortion,3,3,google,2026-03-12 19:33:39.864214,abortion definition,abortion definition according to who,2022,of +abortion,"('abortion definition according to who 2022', 'abortion definition according to who')",abortion definition according to who 2022,abortion definition according to who,4,3,google,2026-03-12 19:33:39.864214,abortion definition,abortion definition according to who,2022,2022 +abortion,"('abortion definition according to who 2022', 'what is the definition of abortion according to world health organization')",abortion definition according to who 2022,what is the definition of abortion according to world health organization,5,3,google,2026-03-12 19:33:39.864214,abortion definition,abortion definition according to who,2022,what is the of world health organization +abortion,"('abortion definition according to who 2022', 'abortion definition world health organisation')",abortion definition according to who 2022,abortion definition world health organisation,6,3,google,2026-03-12 19:33:39.864214,abortion definition,abortion definition according to who,2022,world health organisation +abortion,"('abortion definition according to who 2022', 'abortion definition by world health organization')",abortion definition according to who 2022,abortion definition by world health organization,7,3,google,2026-03-12 19:33:39.864214,abortion definition,abortion definition according to who,2022,by world health organization +abortion,"('abortion definition according to who 2022', 'abortion definition acog')",abortion definition according to who 2022,abortion definition acog,8,3,google,2026-03-12 19:33:39.864214,abortion definition,abortion definition according to who,2022,acog +abortion,"('abortion definition according to who pdf', 'what is abortion pdf')",abortion definition according to who pdf,what is abortion pdf,1,3,google,2026-03-12 19:33:41.356548,abortion definition,abortion definition according to who,pdf,what is +abortion,"('abortion definition according to who pdf', 'what is abortion according to who')",abortion definition according to who pdf,what is abortion according to who,2,3,google,2026-03-12 19:33:41.356548,abortion definition,abortion definition according to who,pdf,what is +abortion,"('abortion definition according to who pdf', 'types of abortion pdf')",abortion definition according to who pdf,types of abortion pdf,3,3,google,2026-03-12 19:33:41.356548,abortion definition,abortion definition according to who,pdf,types of +abortion,"('abortion definition according to who pdf', 'types of abortion according to who')",abortion definition according to who pdf,types of abortion according to who,4,3,google,2026-03-12 19:33:41.356548,abortion definition,abortion definition according to who,pdf,types of +abortion,"('abortion definition according to who pdf', 'abortion definition according to who')",abortion definition according to who pdf,abortion definition according to who,5,3,google,2026-03-12 19:33:41.356548,abortion definition,abortion definition according to who,pdf,pdf +abortion,"('abortion definition according to who pdf', 'abortion definition world health organisation')",abortion definition according to who pdf,abortion definition world health organisation,6,3,google,2026-03-12 19:33:41.356548,abortion definition,abortion definition according to who,pdf,world health organisation +abortion,"('abortion definition according to who pdf', 'what is the definition of abortion according to world health organization')",abortion definition according to who pdf,what is the definition of abortion according to world health organization,7,3,google,2026-03-12 19:33:41.356548,abortion definition,abortion definition according to who,pdf,what is the of world health organization +abortion,"('abortion definition according to who pdf', 'abortion definition ap gov')",abortion definition according to who pdf,abortion definition ap gov,8,3,google,2026-03-12 19:33:41.356548,abortion definition,abortion definition according to who,pdf,ap gov +abortion,"('abortion definition according to who pdf', 'abortion definition by world health organization')",abortion definition according to who pdf,abortion definition by world health organization,9,3,google,2026-03-12 19:33:41.356548,abortion definition,abortion definition according to who,pdf,by world health organization +abortion,"('abortion definition acc to who', 'abortion definition according to who')",abortion definition acc to who,abortion definition according to who,1,3,google,2026-03-12 19:33:42.629225,abortion definition,abortion definition according to who,acc,according +abortion,"('abortion definition acc to who', 'abortion definition according to who 2022')",abortion definition acc to who,abortion definition according to who 2022,2,3,google,2026-03-12 19:33:42.629225,abortion definition,abortion definition according to who,acc,according 2022 +abortion,"('abortion definition acc to who', 'abortion definition according to who pdf')",abortion definition acc to who,abortion definition according to who pdf,3,3,google,2026-03-12 19:33:42.629225,abortion definition,abortion definition according to who,acc,according pdf +abortion,"('abortion definition acc to who', 'abortion definition according to who ppt')",abortion definition acc to who,abortion definition according to who ppt,4,3,google,2026-03-12 19:33:42.629225,abortion definition,abortion definition according to who,acc,according ppt +abortion,"('abortion definition acc to who', 'abortion definition according to who in hindi')",abortion definition acc to who,abortion definition according to who in hindi,5,3,google,2026-03-12 19:33:42.629225,abortion definition,abortion definition according to who,acc,according in hindi +abortion,"('abortion definition acc to who', 'abortion meaning according to who')",abortion definition acc to who,abortion meaning according to who,6,3,google,2026-03-12 19:33:42.629225,abortion definition,abortion definition according to who,acc,meaning according +abortion,"('abortion definition acc to who', 'medical abortion definition according to who')",abortion definition acc to who,medical abortion definition according to who,7,3,google,2026-03-12 19:33:42.629225,abortion definition,abortion definition according to who,acc,medical according +abortion,"('abortion definition acc to who', 'illegal abortion definition according to who')",abortion definition acc to who,illegal abortion definition according to who,8,3,google,2026-03-12 19:33:42.629225,abortion definition,abortion definition according to who,acc,illegal according +abortion,"('abortion definition acc to who', 'spontaneous abortion definition according to who')",abortion definition acc to who,spontaneous abortion definition according to who,9,3,google,2026-03-12 19:33:42.629225,abortion definition,abortion definition according to who,acc,spontaneous according +abortion,"('abortion meaning according to who', 'abortion definition according to who')",abortion meaning according to who,abortion definition according to who,1,3,google,2026-03-12 19:33:43.913406,abortion definition,abortion definition according to who,meaning,definition +abortion,"('abortion meaning according to who', 'abortion definition according to who 2022')",abortion meaning according to who,abortion definition according to who 2022,2,3,google,2026-03-12 19:33:43.913406,abortion definition,abortion definition according to who,meaning,definition 2022 +abortion,"('abortion meaning according to who', 'abortion definition according to who pdf')",abortion meaning according to who,abortion definition according to who pdf,3,3,google,2026-03-12 19:33:43.913406,abortion definition,abortion definition according to who,meaning,definition pdf +abortion,"('abortion meaning according to who', 'abortion definition acc to who')",abortion meaning according to who,abortion definition acc to who,4,3,google,2026-03-12 19:33:43.913406,abortion definition,abortion definition according to who,meaning,definition acc +abortion,"('abortion meaning according to who', 'medical abortion definition according to who')",abortion meaning according to who,medical abortion definition according to who,5,3,google,2026-03-12 19:33:43.913406,abortion definition,abortion definition according to who,meaning,medical definition +abortion,"('abortion meaning according to who', 'illegal abortion definition according to who')",abortion meaning according to who,illegal abortion definition according to who,6,3,google,2026-03-12 19:33:43.913406,abortion definition,abortion definition according to who,meaning,illegal definition +abortion,"('abortion meaning according to who', 'spontaneous abortion definition according to who')",abortion meaning according to who,spontaneous abortion definition according to who,7,3,google,2026-03-12 19:33:43.913406,abortion definition,abortion definition according to who,meaning,spontaneous definition +abortion,"('abortion meaning according to who', 'criminal abortion definition according to who')",abortion meaning according to who,criminal abortion definition according to who,8,3,google,2026-03-12 19:33:43.913406,abortion definition,abortion definition according to who,meaning,criminal definition +abortion,"('abortion meaning according to who', 'threatened abortion definition according to who')",abortion meaning according to who,threatened abortion definition according to who,9,3,google,2026-03-12 19:33:43.913406,abortion definition,abortion definition according to who,meaning,threatened definition +abortion,"('medical abortion definition according to who', 'what does the term medical abortion describe')",medical abortion definition according to who,what does the term medical abortion describe,1,3,google,2026-03-12 19:33:45.165063,abortion definition,abortion definition according to who,medical,what does the term describe +abortion,"('medical abortion definition according to who', 'what is abortion according to who')",medical abortion definition according to who,what is abortion according to who,2,3,google,2026-03-12 19:33:45.165063,abortion definition,abortion definition according to who,medical,what is +abortion,"('medical abortion definition according to who', 'what are the types of medical abortion')",medical abortion definition according to who,what are the types of medical abortion,3,3,google,2026-03-12 19:33:45.165063,abortion definition,abortion definition according to who,medical,what are the types of +abortion,"('medical abortion definition according to who', 'medical abortion defined')",medical abortion definition according to who,medical abortion defined,4,3,google,2026-03-12 19:33:45.165063,abortion definition,abortion definition according to who,medical,defined +abortion,"('medical abortion definition according to who', 'abortion definition according to who')",medical abortion definition according to who,abortion definition according to who,5,3,google,2026-03-12 19:33:45.165063,abortion definition,abortion definition according to who,medical,medical +abortion,"('illegal abortion definition according to who', 'criminal abortion definition according to who')",illegal abortion definition according to who,criminal abortion definition according to who,1,3,google,2026-03-12 19:33:46.412802,abortion definition,abortion definition according to who,illegal,criminal +abortion,"('illegal abortion definition according to who', 'unsafe abortion definition according to who')",illegal abortion definition according to who,unsafe abortion definition according to who,2,3,google,2026-03-12 19:33:46.412802,abortion definition,abortion definition according to who,illegal,unsafe +abortion,"('illegal abortion definition according to who', 'what type of abortion is illegal')",illegal abortion definition according to who,what type of abortion is illegal,3,3,google,2026-03-12 19:33:46.412802,abortion definition,abortion definition according to who,illegal,what type of is +abortion,"('illegal abortion definition according to who', 'what is abortion according to who')",illegal abortion definition according to who,what is abortion according to who,4,3,google,2026-03-12 19:33:46.412802,abortion definition,abortion definition according to who,illegal,what is +abortion,"('illegal abortion definition according to who', 'abortion definition according to who')",illegal abortion definition according to who,abortion definition according to who,5,3,google,2026-03-12 19:33:46.412802,abortion definition,abortion definition according to who,illegal,illegal +abortion,"('illegal abortion definition according to who', 'what is the definition of abortion according to world health organization')",illegal abortion definition according to who,what is the definition of abortion according to world health organization,6,3,google,2026-03-12 19:33:46.412802,abortion definition,abortion definition according to who,illegal,what is the of world health organization +abortion,"('illegal abortion definition according to who', 'unlawful abortion definition')",illegal abortion definition according to who,unlawful abortion definition,7,3,google,2026-03-12 19:33:46.412802,abortion definition,abortion definition according to who,illegal,unlawful +abortion,"('spontaneous abortion definition according to who', 'induced abortion definition according to who')",spontaneous abortion definition according to who,induced abortion definition according to who,1,3,google,2026-03-12 19:33:47.533868,abortion definition,abortion definition according to who,spontaneous,induced +abortion,"('spontaneous abortion definition according to who', 'miscarriage definition according to who')",spontaneous abortion definition according to who,miscarriage definition according to who,2,3,google,2026-03-12 19:33:47.533868,abortion definition,abortion definition according to who,spontaneous,miscarriage +abortion,"('spontaneous abortion definition according to who', 'spontaneous abortion definition who')",spontaneous abortion definition according to who,spontaneous abortion definition who,3,3,google,2026-03-12 19:33:47.533868,abortion definition,abortion definition according to who,spontaneous,spontaneous +abortion,"('spontaneous abortion definition according to who', 'what is a spontaneous abortion mean')",spontaneous abortion definition according to who,what is a spontaneous abortion mean,4,3,google,2026-03-12 19:33:47.533868,abortion definition,abortion definition according to who,spontaneous,what is a mean +abortion,"('spontaneous abortion definition according to who', 'what is abortion spontaneous')",spontaneous abortion definition according to who,what is abortion spontaneous,5,3,google,2026-03-12 19:33:47.533868,abortion definition,abortion definition according to who,spontaneous,what is +abortion,"('spontaneous abortion definition according to who', 'spontaneous abortion acronym')",spontaneous abortion definition according to who,spontaneous abortion acronym,6,3,google,2026-03-12 19:33:47.533868,abortion definition,abortion definition according to who,spontaneous,acronym +abortion,"('spontaneous abortion definition according to who', 'spontaneous abortion def')",spontaneous abortion definition according to who,spontaneous abortion def,7,3,google,2026-03-12 19:33:47.533868,abortion definition,abortion definition according to who,spontaneous,def +abortion,"('spontaneous abortion definition according to who', 'spontaneous abortion medical definition')",spontaneous abortion definition according to who,spontaneous abortion medical definition,8,3,google,2026-03-12 19:33:47.533868,abortion definition,abortion definition according to who,spontaneous,medical +abortion,"('spontaneous abortion definition according to who', 'spontaneous abortion definition acog')",spontaneous abortion definition according to who,spontaneous abortion definition acog,9,3,google,2026-03-12 19:33:47.533868,abortion definition,abortion definition according to who,spontaneous,acog +abortion,"('criminal abortion definition according to who', 'illegal abortion definition according to who')",criminal abortion definition according to who,illegal abortion definition according to who,1,3,google,2026-03-12 19:33:48.411353,abortion definition,abortion definition according to who,criminal,illegal +abortion,"('criminal abortion definition according to who', 'what is criminal abortion')",criminal abortion definition according to who,what is criminal abortion,2,3,google,2026-03-12 19:33:48.411353,abortion definition,abortion definition according to who,criminal,what is +abortion,"('criminal abortion definition according to who', 'what is abortion according to who')",criminal abortion definition according to who,what is abortion according to who,3,3,google,2026-03-12 19:33:48.411353,abortion definition,abortion definition according to who,criminal,what is +abortion,"('criminal abortion definition according to who', 'types of abortion according to who')",criminal abortion definition according to who,types of abortion according to who,4,3,google,2026-03-12 19:33:48.411353,abortion definition,abortion definition according to who,criminal,types of +abortion,"('criminal abortion definition according to who', 'criminal abortion california')",criminal abortion definition according to who,criminal abortion california,5,3,google,2026-03-12 19:33:48.411353,abortion definition,abortion definition according to who,criminal,california +abortion,"('criminal abortion definition according to who', 'abortion definition according to who')",criminal abortion definition according to who,abortion definition according to who,6,3,google,2026-03-12 19:33:48.411353,abortion definition,abortion definition according to who,criminal,criminal +abortion,"('criminal abortion definition according to who', 'criminal abortion definition')",criminal abortion definition according to who,criminal abortion definition,7,3,google,2026-03-12 19:33:48.411353,abortion definition,abortion definition according to who,criminal,criminal +abortion,"('criminal abortion definition according to who', 'define criminal abortion')",criminal abortion definition according to who,define criminal abortion,8,3,google,2026-03-12 19:33:48.411353,abortion definition,abortion definition according to who,criminal,define +abortion,"('threatened abortion definition according to who', 'inevitable abortion definition according to who')",threatened abortion definition according to who,inevitable abortion definition according to who,1,3,google,2026-03-12 19:33:49.447066,abortion definition,abortion definition according to who,threatened,inevitable +abortion,"('threatened abortion definition according to who', 'types of abortion threatened')",threatened abortion definition according to who,types of abortion threatened,2,3,google,2026-03-12 19:33:49.447066,abortion definition,abortion definition according to who,threatened,types of +abortion,"('threatened abortion definition according to who', 'what do you mean by threatened abortion')",threatened abortion definition according to who,what do you mean by threatened abortion,3,3,google,2026-03-12 19:33:49.447066,abortion definition,abortion definition according to who,threatened,what do you mean by +abortion,"('threatened abortion definition according to who', 'what is threatened abortion')",threatened abortion definition according to who,what is threatened abortion,4,3,google,2026-03-12 19:33:49.447066,abortion definition,abortion definition according to who,threatened,what is +abortion,"('threatened abortion definition according to who', 'types of abortion threatened inevitable')",threatened abortion definition according to who,types of abortion threatened inevitable,5,3,google,2026-03-12 19:33:49.447066,abortion definition,abortion definition according to who,threatened,types of inevitable +abortion,"('threatened abortion definition according to who', 'what is threatened abortion in pregnancy')",threatened abortion definition according to who,what is threatened abortion in pregnancy,6,3,google,2026-03-12 19:33:49.447066,abortion definition,abortion definition according to who,threatened,what is in pregnancy +abortion,"('threatened abortion definition according to who', 'threatened abortion quizlet')",threatened abortion definition according to who,threatened abortion quizlet,7,3,google,2026-03-12 19:33:49.447066,abortion definition,abortion definition according to who,threatened,quizlet +abortion,"('threatened abortion definition according to who', 'abortion definition according to who')",threatened abortion definition according to who,abortion definition according to who,8,3,google,2026-03-12 19:33:49.447066,abortion definition,abortion definition according to who,threatened,threatened +abortion,"('threatened abortion definition according to who', 'threatened definition biology')",threatened abortion definition according to who,threatened definition biology,9,3,google,2026-03-12 19:33:49.447066,abortion definition,abortion definition according to who,threatened,biology +abortion,"('abortion definition oxford dictionary', 'abortion meaning in english oxford')",abortion definition oxford dictionary,abortion meaning in english oxford,1,3,google,2026-03-12 19:33:50.883045,abortion definition,abortion definition oxford,dictionary,meaning in english +abortion,"('abortion definition oxford dictionary', 'abortion definition oxford')",abortion definition oxford dictionary,abortion definition oxford,2,3,google,2026-03-12 19:33:50.883045,abortion definition,abortion definition oxford,dictionary,dictionary +abortion,"('abortion definition oxford dictionary', 'abortion definition dictionary')",abortion definition oxford dictionary,abortion definition dictionary,3,3,google,2026-03-12 19:33:50.883045,abortion definition,abortion definition oxford,dictionary,dictionary +abortion,"('abortion definition oxford dictionary', 'abortion dictionary meaning')",abortion definition oxford dictionary,abortion dictionary meaning,4,3,google,2026-03-12 19:33:50.883045,abortion definition,abortion definition oxford,dictionary,meaning +abortion,"('abortion definition oxford dictionary', 'oxford dictionary abortion')",abortion definition oxford dictionary,oxford dictionary abortion,5,3,google,2026-03-12 19:33:50.883045,abortion definition,abortion definition oxford,dictionary,dictionary +abortion,"('abortion oxford dictionary', 'abortion definition oxford dictionary')",abortion oxford dictionary,abortion definition oxford dictionary,1,3,google,2026-03-12 19:33:52.229716,abortion definition,abortion definition oxford,dictionary,definition +abortion,"('abortion oxford dictionary', 'abortion definition oxford')",abortion oxford dictionary,abortion definition oxford,2,3,google,2026-03-12 19:33:52.229716,abortion definition,abortion definition oxford,dictionary,definition +abortion,"('abortion oxford dictionary', 'abortion dictionary meaning')",abortion oxford dictionary,abortion dictionary meaning,3,3,google,2026-03-12 19:33:52.229716,abortion definition,abortion definition oxford,dictionary,meaning +abortion,"('abortion oxford dictionary', 'abortion root word')",abortion oxford dictionary,abortion root word,4,3,google,2026-03-12 19:33:52.229716,abortion definition,abortion definition oxford,dictionary,root word +abortion,"('abortion oxford dictionary', 'what is abortion article')",abortion oxford dictionary,what is abortion article,5,3,google,2026-03-12 19:33:52.229716,abortion definition,abortion definition oxford,dictionary,what is article +abortion,"('define abortion cdc', 'abortion definition cdc')",define abortion cdc,abortion definition cdc,1,3,google,2026-03-12 19:33:53.707018,abortion definition,abortion definition cdc,define,definition +abortion,"('define abortion cdc', 'miscarriage definition cdc')",define abortion cdc,miscarriage definition cdc,2,3,google,2026-03-12 19:33:53.707018,abortion definition,abortion definition cdc,define,miscarriage definition +abortion,"('define abortion cdc', 'complete abortion definition')",define abortion cdc,complete abortion definition,3,3,google,2026-03-12 19:33:53.707018,abortion definition,abortion definition cdc,define,complete definition +abortion,"('define abortion cdc', 'define abortion medical')",define abortion cdc,define abortion medical,4,3,google,2026-03-12 19:33:53.707018,abortion definition,abortion definition cdc,define,medical +abortion,"('abortion definition according to cdc', 'definition of abortion cdc')",abortion definition according to cdc,definition of abortion cdc,1,3,google,2026-03-12 19:33:55.029521,abortion definition,abortion definition cdc,according to,of +abortion,"('abortion definition according to cdc', 'types of abortion according to who')",abortion definition according to cdc,types of abortion according to who,2,3,google,2026-03-12 19:33:55.029521,abortion definition,abortion definition cdc,according to,types of who +abortion,"('abortion definition according to cdc', 'what is abortion according to who')",abortion definition according to cdc,what is abortion according to who,3,3,google,2026-03-12 19:33:55.029521,abortion definition,abortion definition cdc,according to,what is who +abortion,"('abortion definition according to cdc', 'types of abortion definition')",abortion definition according to cdc,types of abortion definition,4,3,google,2026-03-12 19:33:55.029521,abortion definition,abortion definition cdc,according to,types of +abortion,"('abortion definition according to cdc', 'abortion definition according to who')",abortion definition according to cdc,abortion definition according to who,5,3,google,2026-03-12 19:33:55.029521,abortion definition,abortion definition cdc,according to,who +abortion,"('abortion meaning in law philippines', 'is abortion a crime in the philippines')",abortion meaning in law philippines,is abortion a crime in the philippines,1,3,google,2026-03-12 19:33:55.990491,abortion definition,abortion definition law,meaning in philippines,is a crime the +abortion,"('abortion meaning in law philippines', 'is abortion is legal in philippines')",abortion meaning in law philippines,is abortion is legal in philippines,2,3,google,2026-03-12 19:33:55.990491,abortion definition,abortion definition law,meaning in philippines,is is legal +abortion,"('abortion meaning in law philippines', 'is abortion illegal in philippines')",abortion meaning in law philippines,is abortion illegal in philippines,3,3,google,2026-03-12 19:33:55.990491,abortion definition,abortion definition law,meaning in philippines,is illegal +abortion,"('abortion meaning in law philippines', 'abortion laws in philippines')",abortion meaning in law philippines,abortion laws in philippines,4,3,google,2026-03-12 19:33:55.990491,abortion definition,abortion definition law,meaning in philippines,laws +abortion,"('abortion meaning in law philippines', 'is abortion legal in the philippines 2020')",abortion meaning in law philippines,is abortion legal in the philippines 2020,5,3,google,2026-03-12 19:33:55.990491,abortion definition,abortion definition law,meaning in philippines,is legal the 2020 +abortion,"('abortion definition legal', 'abortion definition law')",abortion definition legal,abortion definition law,1,3,google,2026-03-12 19:33:57.354149,abortion definition,abortion definition law,legal,law +abortion,"('abortion definition legal', 'abortion legal meaning')",abortion definition legal,abortion legal meaning,2,3,google,2026-03-12 19:33:57.354149,abortion definition,abortion definition law,legal,meaning +abortion,"('abortion definition legal', 'legal abortion definition in hindi')",abortion definition legal,legal abortion definition in hindi,3,3,google,2026-03-12 19:33:57.354149,abortion definition,abortion definition law,legal,in hindi +abortion,"('abortion definition legal', 'legal abortion definition according to who')",abortion definition legal,legal abortion definition according to who,4,3,google,2026-03-12 19:33:57.354149,abortion definition,abortion definition law,legal,according to who +abortion,"('abortion definition legal', 'legal abortion definition in india')",abortion definition legal,legal abortion definition in india,5,3,google,2026-03-12 19:33:57.354149,abortion definition,abortion definition law,legal,in india +abortion,"('abortion definition legal', 'abortion defined legally')",abortion definition legal,abortion defined legally,6,3,google,2026-03-12 19:33:57.354149,abortion definition,abortion definition law,legal,defined legally +abortion,"('abortion definition uk law', 'abortion laws in england')",abortion definition uk law,abortion laws in england,1,3,google,2026-03-12 19:33:58.264886,abortion definition,abortion definition law,uk,laws in england +abortion,"('abortion definition uk law', 'what is the current uk law on abortion')",abortion definition uk law,what is the current uk law on abortion,2,3,google,2026-03-12 19:33:58.264886,abortion definition,abortion definition law,uk,what is the current on +abortion,"('abortion definition uk law', 'abortion law united kingdom')",abortion definition uk law,abortion law united kingdom,3,3,google,2026-03-12 19:33:58.264886,abortion definition,abortion definition law,uk,united kingdom +abortion,"('abortion definition uk law', 'abortion laws uk vs us')",abortion definition uk law,abortion laws uk vs us,4,3,google,2026-03-12 19:33:58.264886,abortion definition,abortion definition law,uk,laws vs us +abortion,"('abortion act definition', 'abortion legal definition')",abortion act definition,abortion legal definition,1,3,google,2026-03-12 19:33:59.345592,abortion definition,abortion definition law,act,legal +abortion,"('abortion act definition', 'abortion law definition')",abortion act definition,abortion law definition,2,3,google,2026-03-12 19:33:59.345592,abortion definition,abortion definition law,act,law +abortion,"('abortion act definition', 'legal abortion definition in hindi')",abortion act definition,legal abortion definition in hindi,3,3,google,2026-03-12 19:33:59.345592,abortion definition,abortion definition law,act,legal in hindi +abortion,"('abortion act definition', 'legal abortion definition according to who')",abortion act definition,legal abortion definition according to who,4,3,google,2026-03-12 19:33:59.345592,abortion definition,abortion definition law,act,legal according to who +abortion,"('abortion act definition', 'legal abortion definition in india')",abortion act definition,legal abortion definition in india,5,3,google,2026-03-12 19:33:59.345592,abortion definition,abortion definition law,act,legal in india +abortion,"('abortion act definition', 'act abortion laws')",abortion act definition,act abortion laws,6,3,google,2026-03-12 19:33:59.345592,abortion definition,abortion definition law,act,laws +abortion,"('abortion act definition', 'what is the abortion act')",abortion act definition,what is the abortion act,7,3,google,2026-03-12 19:33:59.345592,abortion definition,abortion definition law,act,what is the +abortion,"('abortion act definition', 'abortion act in india')",abortion act definition,abortion act in india,8,3,google,2026-03-12 19:33:59.345592,abortion definition,abortion definition law,act,in india +abortion,"('abortion act definition', 'abortion definition dictionary')",abortion act definition,abortion definition dictionary,9,3,google,2026-03-12 19:33:59.345592,abortion definition,abortion definition law,act,dictionary +abortion,"('abortion defined by law', 'abortion meaning law')",abortion defined by law,abortion meaning law,1,3,google,2026-03-12 19:34:00.588797,abortion definition,abortion definition law,defined by,meaning +abortion,"('abortion defined by law', 'what is considered an abortion by law')",abortion defined by law,what is considered an abortion by law,2,3,google,2026-03-12 19:34:00.588797,abortion definition,abortion definition law,defined by,what is considered an +abortion,"('abortion defined by law', 'abortion defined legally')",abortion defined by law,abortion defined legally,3,3,google,2026-03-12 19:34:00.588797,abortion definition,abortion definition law,defined by,legally +abortion,"('abortion defined by law', 'abortion definition law')",abortion defined by law,abortion definition law,4,3,google,2026-03-12 19:34:00.588797,abortion definition,abortion definition law,defined by,definition +abortion,"('abortion defined by law', 'abortion definition legal')",abortion defined by law,abortion definition legal,5,3,google,2026-03-12 19:34:00.588797,abortion definition,abortion definition law,defined by,definition legal +abortion,"('abortion defined legally', 'define abortion legal')",abortion defined legally,define abortion legal,1,3,google,2026-03-12 19:34:01.954545,abortion definition,abortion definition law,defined legally,define legal +abortion,"('abortion defined legally', 'what type of abortion is illegal')",abortion defined legally,what type of abortion is illegal,2,3,google,2026-03-12 19:34:01.954545,abortion definition,abortion definition law,defined legally,what type of is illegal +abortion,"('abortion defined legally', 'laws on abortion')",abortion defined legally,laws on abortion,3,3,google,2026-03-12 19:34:01.954545,abortion definition,abortion definition law,defined legally,laws on +abortion,"('abortion defined legally', 'abortion defined by law')",abortion defined legally,abortion defined by law,4,3,google,2026-03-12 19:34:01.954545,abortion definition,abortion definition law,defined legally,by law +abortion,"('abortion defined legally', 'abortion definition legal')",abortion defined legally,abortion definition legal,5,3,google,2026-03-12 19:34:01.954545,abortion definition,abortion definition law,defined legally,definition legal +abortion,"('abortion defined legally', 'abortion definition law')",abortion defined legally,abortion definition law,6,3,google,2026-03-12 19:34:01.954545,abortion definition,abortion definition law,defined legally,definition law +abortion,"('abortion merriam webster', 'miscarriage merriam webster')",abortion merriam webster,miscarriage merriam webster,1,3,google,2026-03-12 19:34:02.967066,abortion definition,abortion definition webster,merriam,miscarriage +abortion,"('abortion merriam webster', 'abortion definition merriam webster')",abortion merriam webster,abortion definition merriam webster,2,3,google,2026-03-12 19:34:02.967066,abortion definition,abortion definition webster,merriam,definition +abortion,"('abortion merriam webster', 'abortion definition webster')",abortion merriam webster,abortion definition webster,3,3,google,2026-03-12 19:34:02.967066,abortion definition,abortion definition webster,merriam,definition +abortion,"('abortion merriam webster', 'abortion definition oxford')",abortion merriam webster,abortion definition oxford,4,3,google,2026-03-12 19:34:02.967066,abortion definition,abortion definition webster,merriam,definition oxford +abortion,"('abortion merriam webster', 'abortion webster dictionary')",abortion merriam webster,abortion webster dictionary,5,3,google,2026-03-12 19:34:02.967066,abortion definition,abortion definition webster,merriam,dictionary +abortion,"('abortion definition webster dictionary', 'abortion definition webster')",abortion definition webster dictionary,abortion definition webster,1,3,google,2026-03-12 19:34:04.240183,abortion definition,abortion definition webster,dictionary,dictionary +abortion,"('abortion definition webster dictionary', 'abortion definition dictionary')",abortion definition webster dictionary,abortion definition dictionary,2,3,google,2026-03-12 19:34:04.240183,abortion definition,abortion definition webster,dictionary,dictionary +abortion,"('abortion definition webster dictionary', 'what does the word abortion mean')",abortion definition webster dictionary,what does the word abortion mean,3,3,google,2026-03-12 19:34:04.240183,abortion definition,abortion definition webster,dictionary,what does the word mean +abortion,"('abortion definition webster dictionary', 'is abortion a bad word')",abortion definition webster dictionary,is abortion a bad word,4,3,google,2026-03-12 19:34:04.240183,abortion definition,abortion definition webster,dictionary,is a bad word +abortion,"('abortion definition webster dictionary', 'abortion webster dictionary')",abortion definition webster dictionary,abortion webster dictionary,5,3,google,2026-03-12 19:34:04.240183,abortion definition,abortion definition webster,dictionary,dictionary +abortion,"('abortion definition webster dictionary', ""define abortion webster's dictionary"")",abortion definition webster dictionary,define abortion webster's dictionary,6,3,google,2026-03-12 19:34:04.240183,abortion definition,abortion definition webster,dictionary,define webster's +abortion,"(""abortion webster's dictionary"", ""miscarriage webster's dictionary"")",abortion webster's dictionary,miscarriage webster's dictionary,1,3,google,2026-03-12 19:34:05.127253,abortion definition,abortion definition webster,webster's dictionary,miscarriage +abortion,"(""abortion webster's dictionary"", 'abortion definition webster dictionary')",abortion webster's dictionary,abortion definition webster dictionary,2,3,google,2026-03-12 19:34:05.127253,abortion definition,abortion definition webster,webster's dictionary,definition webster +abortion,"(""abortion webster's dictionary"", 'abortion definition webster')",abortion webster's dictionary,abortion definition webster,3,3,google,2026-03-12 19:34:05.127253,abortion definition,abortion definition webster,webster's dictionary,definition webster +abortion,"(""abortion webster's dictionary"", 'abortion definition oxford')",abortion webster's dictionary,abortion definition oxford,4,3,google,2026-03-12 19:34:05.127253,abortion definition,abortion definition webster,webster's dictionary,definition oxford +abortion,"(""abortion webster's dictionary"", 'abortion dictionary meaning')",abortion webster's dictionary,abortion dictionary meaning,5,3,google,2026-03-12 19:34:05.127253,abortion definition,abortion definition webster,webster's dictionary,meaning +abortion,"(""abortion webster's dictionary"", 'abortion definition dictionary')",abortion webster's dictionary,abortion definition dictionary,6,3,google,2026-03-12 19:34:05.127253,abortion definition,abortion definition webster,webster's dictionary,definition +abortion,"(""abortion webster's dictionary"", 'is abortion a bad word')",abortion webster's dictionary,is abortion a bad word,7,3,google,2026-03-12 19:34:05.127253,abortion definition,abortion definition webster,webster's dictionary,is a bad word +abortion,"(""abortion webster's dictionary"", 'abortion webster')",abortion webster's dictionary,abortion webster,8,3,google,2026-03-12 19:34:05.127253,abortion definition,abortion definition webster,webster's dictionary,webster +abortion,"('abortion definition easy', 'abortion meaning easy')",abortion definition easy,abortion meaning easy,1,3,google,2026-03-12 19:34:06.536339,abortion definition,abortion definition simple,easy,meaning +abortion,"('abortion definition easy', 'abortion definition simple')",abortion definition easy,abortion definition simple,2,3,google,2026-03-12 19:34:06.536339,abortion definition,abortion definition simple,easy,simple +abortion,"('abortion definition easy', 'inevitable abortion definition easy')",abortion definition easy,inevitable abortion definition easy,3,3,google,2026-03-12 19:34:06.536339,abortion definition,abortion definition simple,easy,inevitable +abortion,"('abortion definition easy', 'abortion definition types')",abortion definition easy,abortion definition types,4,3,google,2026-03-12 19:34:06.536339,abortion definition,abortion definition simple,easy,types +abortion,"('septic abortion definition simple', 'septic abortion means')",septic abortion definition simple,septic abortion means,1,3,google,2026-03-12 19:34:07.829807,abortion definition,abortion definition simple,septic,means +abortion,"('septic abortion definition simple', 'septic abortion organisms')",septic abortion definition simple,septic abortion organisms,2,3,google,2026-03-12 19:34:07.829807,abortion definition,abortion definition simple,septic,organisms +abortion,"('septic abortion definition simple', 'what is septic abortion')",septic abortion definition simple,what is septic abortion,3,3,google,2026-03-12 19:34:07.829807,abortion definition,abortion definition simple,septic,what is +abortion,"('septic abortion definition simple', 'septic abortion icd 10')",septic abortion definition simple,septic abortion icd 10,4,3,google,2026-03-12 19:34:07.829807,abortion definition,abortion definition simple,septic,icd 10 +abortion,"('septic abortion definition simple', 'septic abortion symptoms')",septic abortion definition simple,septic abortion symptoms,5,3,google,2026-03-12 19:34:07.829807,abortion definition,abortion definition simple,septic,symptoms +abortion,"('septic abortion definition simple', 'septic abortion wikem')",septic abortion definition simple,septic abortion wikem,6,3,google,2026-03-12 19:34:07.829807,abortion definition,abortion definition simple,septic,wikem +abortion,"('septic abortion definition simple', 'septic abortion treatment')",septic abortion definition simple,septic abortion treatment,7,3,google,2026-03-12 19:34:07.829807,abortion definition,abortion definition simple,septic,treatment +abortion,"('septic abortion definition simple', 'septic abortion unit')",septic abortion definition simple,septic abortion unit,8,3,google,2026-03-12 19:34:07.829807,abortion definition,abortion definition simple,septic,unit +abortion,"('spontaneous abortion definition simple', 'induced abortion simple definition')",spontaneous abortion definition simple,induced abortion simple definition,1,3,google,2026-03-12 19:34:09.329322,abortion definition,abortion definition simple,spontaneous,induced +abortion,"('spontaneous abortion definition simple', 'what is a spontaneous abortion mean')",spontaneous abortion definition simple,what is a spontaneous abortion mean,2,3,google,2026-03-12 19:34:09.329322,abortion definition,abortion definition simple,spontaneous,what is a mean +abortion,"('spontaneous abortion definition simple', 'what is the definition of spontaneous abortion')",spontaneous abortion definition simple,what is the definition of spontaneous abortion,3,3,google,2026-03-12 19:34:09.329322,abortion definition,abortion definition simple,spontaneous,what is the of +abortion,"('spontaneous abortion definition simple', 'what does a spontaneous abortion mean')",spontaneous abortion definition simple,what does a spontaneous abortion mean,4,3,google,2026-03-12 19:34:09.329322,abortion definition,abortion definition simple,spontaneous,what does a mean +abortion,"('spontaneous abortion definition simple', 'spontaneous abortion def')",spontaneous abortion definition simple,spontaneous abortion def,5,3,google,2026-03-12 19:34:09.329322,abortion definition,abortion definition simple,spontaneous,def +abortion,"('spontaneous abortion definition simple', 'spontaneous abortion medical definition')",spontaneous abortion definition simple,spontaneous abortion medical definition,6,3,google,2026-03-12 19:34:09.329322,abortion definition,abortion definition simple,spontaneous,medical +abortion,"('spontaneous abortion definition simple', 'spontaneous abortion synonyms')",spontaneous abortion definition simple,spontaneous abortion synonyms,7,3,google,2026-03-12 19:34:09.329322,abortion definition,abortion definition simple,spontaneous,synonyms +abortion,"('spontaneous abortion definition simple', 'spontaneous abortion acronym')",spontaneous abortion definition simple,spontaneous abortion acronym,8,3,google,2026-03-12 19:34:09.329322,abortion definition,abortion definition simple,spontaneous,acronym +abortion,"('complete abortion definition simple', 'spontaneous abortion definition simple')",complete abortion definition simple,spontaneous abortion definition simple,1,3,google,2026-03-12 19:34:10.140188,abortion definition,abortion definition simple,complete,spontaneous +abortion,"('complete abortion definition simple', 'complete abortion definition')",complete abortion definition simple,complete abortion definition,2,3,google,2026-03-12 19:34:10.140188,abortion definition,abortion definition simple,complete,complete +abortion,"('complete abortion definition simple', 'what is the meaning of complete abortion')",complete abortion definition simple,what is the meaning of complete abortion,3,3,google,2026-03-12 19:34:10.140188,abortion definition,abortion definition simple,complete,what is the meaning of +abortion,"('complete abortion definition simple', 'complete abortion treatment')",complete abortion definition simple,complete abortion treatment,4,3,google,2026-03-12 19:34:10.140188,abortion definition,abortion definition simple,complete,treatment +abortion,"('complete abortion definition simple', 'abortion definition simple')",complete abortion definition simple,abortion definition simple,5,3,google,2026-03-12 19:34:10.140188,abortion definition,abortion definition simple,complete,complete +abortion,"('complete abortion definition simple', 'complete abortion vs missed abortion')",complete abortion definition simple,complete abortion vs missed abortion,6,3,google,2026-03-12 19:34:10.140188,abortion definition,abortion definition simple,complete,vs missed +abortion,"('threatened abortion simple definition', 'inevitable abortion simple definition')",threatened abortion simple definition,inevitable abortion simple definition,1,3,google,2026-03-12 19:34:11.272298,abortion definition,abortion definition simple,threatened,inevitable +abortion,"('threatened abortion simple definition', 'what do you mean by threatened abortion')",threatened abortion simple definition,what do you mean by threatened abortion,2,3,google,2026-03-12 19:34:11.272298,abortion definition,abortion definition simple,threatened,what do you mean by +abortion,"('threatened abortion simple definition', 'what is threatened abortion')",threatened abortion simple definition,what is threatened abortion,3,3,google,2026-03-12 19:34:11.272298,abortion definition,abortion definition simple,threatened,what is +abortion,"('threatened abortion simple definition', 'types of abortion threatened')",threatened abortion simple definition,types of abortion threatened,4,3,google,2026-03-12 19:34:11.272298,abortion definition,abortion definition simple,threatened,types of +abortion,"('threatened abortion simple definition', 'what is threatened abortion in pregnancy')",threatened abortion simple definition,what is threatened abortion in pregnancy,5,3,google,2026-03-12 19:34:11.272298,abortion definition,abortion definition simple,threatened,what is in pregnancy +abortion,"('threatened abortion simple definition', 'threatened abortion definition')",threatened abortion simple definition,threatened abortion definition,6,3,google,2026-03-12 19:34:11.272298,abortion definition,abortion definition simple,threatened,threatened +abortion,"('threatened abortion simple definition', 'threatened abortion medical term')",threatened abortion simple definition,threatened abortion medical term,7,3,google,2026-03-12 19:34:11.272298,abortion definition,abortion definition simple,threatened,medical term +abortion,"('threatened abortion simple definition', 'threatened abortion vs spontaneous abortion')",threatened abortion simple definition,threatened abortion vs spontaneous abortion,8,3,google,2026-03-12 19:34:11.272298,abortion definition,abortion definition simple,threatened,vs spontaneous +abortion,"('threatened abortion simple definition', 'threatened abortion vs inevitable abortion')",threatened abortion simple definition,threatened abortion vs inevitable abortion,9,3,google,2026-03-12 19:34:11.272298,abortion definition,abortion definition simple,threatened,vs inevitable +abortion,"('inevitable abortion simple definition', 'threatened abortion simple definition')",inevitable abortion simple definition,threatened abortion simple definition,1,3,google,2026-03-12 19:34:12.533031,abortion definition,abortion definition simple,inevitable,threatened +abortion,"('inevitable abortion simple definition', 'missed abortion simple definition')",inevitable abortion simple definition,missed abortion simple definition,2,3,google,2026-03-12 19:34:12.533031,abortion definition,abortion definition simple,inevitable,missed +abortion,"('inevitable abortion simple definition', 'inevitable abortion definition')",inevitable abortion simple definition,inevitable abortion definition,3,3,google,2026-03-12 19:34:12.533031,abortion definition,abortion definition simple,inevitable,inevitable +abortion,"('inevitable abortion simple definition', 'inevitable abortion causes')",inevitable abortion simple definition,inevitable abortion causes,4,3,google,2026-03-12 19:34:12.533031,abortion definition,abortion definition simple,inevitable,causes +abortion,"('inevitable abortion simple definition', 'inevitable abortion treatment')",inevitable abortion simple definition,inevitable abortion treatment,5,3,google,2026-03-12 19:34:12.533031,abortion definition,abortion definition simple,inevitable,treatment +abortion,"('inevitable abortion simple definition', 'inevitable.abortion')",inevitable abortion simple definition,inevitable.abortion,6,3,google,2026-03-12 19:34:12.533031,abortion definition,abortion definition simple,inevitable,inevitable.abortion +abortion,"('inevitable abortion simple definition', 'inevitable sab')",inevitable abortion simple definition,inevitable sab,7,3,google,2026-03-12 19:34:12.533031,abortion definition,abortion definition simple,inevitable,sab +abortion,"('inevitable abortion simple definition', 'inevitable abortion vs complete abortion')",inevitable abortion simple definition,inevitable abortion vs complete abortion,8,3,google,2026-03-12 19:34:12.533031,abortion definition,abortion definition simple,inevitable,vs complete +abortion,"('missed abortion simple definition', 'spontaneous abortion simple definition')",missed abortion simple definition,spontaneous abortion simple definition,1,3,google,2026-03-12 19:34:13.570297,abortion definition,abortion definition simple,missed,spontaneous +abortion,"('missed abortion simple definition', 'missed abortion definition')",missed abortion simple definition,missed abortion definition,2,3,google,2026-03-12 19:34:13.570297,abortion definition,abortion definition simple,missed,missed +abortion,"('missed abortion simple definition', 'explain missed abortion')",missed abortion simple definition,explain missed abortion,3,3,google,2026-03-12 19:34:13.570297,abortion definition,abortion definition simple,missed,explain +abortion,"('missed abortion simple definition', 'what is mean by missed abortion')",missed abortion simple definition,what is mean by missed abortion,4,3,google,2026-03-12 19:34:13.570297,abortion definition,abortion definition simple,missed,what is mean by +abortion,"('missed abortion simple definition', 'what does it mean by missed abortion')",missed abortion simple definition,what does it mean by missed abortion,5,3,google,2026-03-12 19:34:13.570297,abortion definition,abortion definition simple,missed,what does it mean by +abortion,"('missed abortion simple definition', 'missed abortion medical definition')",missed abortion simple definition,missed abortion medical definition,6,3,google,2026-03-12 19:34:13.570297,abortion definition,abortion definition simple,missed,medical +abortion,"('missed abortion simple definition', 'missed abortion def')",missed abortion simple definition,missed abortion def,7,3,google,2026-03-12 19:34:13.570297,abortion definition,abortion definition simple,missed,def +abortion,"('missed abortion simple definition', 'missed abortion signs')",missed abortion simple definition,missed abortion signs,8,3,google,2026-03-12 19:34:13.570297,abortion definition,abortion definition simple,missed,signs +abortion,"('missed abortion simple definition', 'missed abortion medical term')",missed abortion simple definition,missed abortion medical term,9,3,google,2026-03-12 19:34:13.570297,abortion definition,abortion definition simple,missed,medical term +abortion,"('induced abortion simple definition', 'spontaneous abortion simple definition')",induced abortion simple definition,spontaneous abortion simple definition,1,3,google,2026-03-12 19:34:14.882528,abortion definition,abortion definition simple,induced,spontaneous +abortion,"('induced abortion simple definition', 'what is induced abortion class 12')",induced abortion simple definition,what is induced abortion class 12,2,3,google,2026-03-12 19:34:14.882528,abortion definition,abortion definition simple,induced,what is class 12 +abortion,"('induced abortion simple definition', 'induced abortion meaning in english')",induced abortion simple definition,induced abortion meaning in english,3,3,google,2026-03-12 19:34:14.882528,abortion definition,abortion definition simple,induced,meaning in english +abortion,"('induced abortion simple definition', 'what is the difference between spontaneous and induced abortion')",induced abortion simple definition,what is the difference between spontaneous and induced abortion,4,3,google,2026-03-12 19:34:14.882528,abortion definition,abortion definition simple,induced,what is the difference between spontaneous and +abortion,"('induced abortion simple definition', 'induced abortion medical definition')",induced abortion simple definition,induced abortion medical definition,5,3,google,2026-03-12 19:34:14.882528,abortion definition,abortion definition simple,induced,medical +abortion,"('induced abortion simple definition', 'induced abortion definition')",induced abortion simple definition,induced abortion definition,6,3,google,2026-03-12 19:34:14.882528,abortion definition,abortion definition simple,induced,induced +abortion,"('induced abortion simple definition', 'induced abortion definition dictionary')",induced abortion simple definition,induced abortion definition dictionary,7,3,google,2026-03-12 19:34:14.882528,abortion definition,abortion definition simple,induced,dictionary +abortion,"('induced abortion simple definition', 'induced abortions meaning')",induced abortion simple definition,induced abortions meaning,8,3,google,2026-03-12 19:34:14.882528,abortion definition,abortion definition simple,induced,abortions meaning +abortion,"('induced abortion simple definition', 'induced abortion def')",induced abortion simple definition,induced abortion def,9,3,google,2026-03-12 19:34:14.882528,abortion definition,abortion definition simple,induced,def +abortion,"('recurrent abortion simple definition', 'recurrent abortion definition')",recurrent abortion simple definition,recurrent abortion definition,1,3,google,2026-03-12 19:34:16.143055,abortion definition,abortion definition simple,recurrent,recurrent +abortion,"('recurrent abortion simple definition', 'causes of recurrent abortion')",recurrent abortion simple definition,causes of recurrent abortion,2,3,google,2026-03-12 19:34:16.143055,abortion definition,abortion definition simple,recurrent,causes of +abortion,"('recurrent abortion simple definition', 'recurrent abortion treatment')",recurrent abortion simple definition,recurrent abortion treatment,3,3,google,2026-03-12 19:34:16.143055,abortion definition,abortion definition simple,recurrent,treatment +abortion,"('recurrent abortion simple definition', 'most common cause of recurrent abortion')",recurrent abortion simple definition,most common cause of recurrent abortion,4,3,google,2026-03-12 19:34:16.143055,abortion definition,abortion definition simple,recurrent,most common cause of +abortion,"('recurrent abortion simple definition', 'recurrent abortion reasons')",recurrent abortion simple definition,recurrent abortion reasons,5,3,google,2026-03-12 19:34:16.143055,abortion definition,abortion definition simple,recurrent,reasons +abortion,"('recurrent abortion simple definition', 'recurrent abortion workup')",recurrent abortion simple definition,recurrent abortion workup,6,3,google,2026-03-12 19:34:16.143055,abortion definition,abortion definition simple,recurrent,workup +abortion,"('recurrent abortion simple definition', 'recurrent spontaneous abortion')",recurrent abortion simple definition,recurrent spontaneous abortion,7,3,google,2026-03-12 19:34:16.143055,abortion definition,abortion definition simple,recurrent,spontaneous +abortion,"('recurrent abortion simple definition', 'recurrent spontaneous abortion workup')",recurrent abortion simple definition,recurrent spontaneous abortion workup,8,3,google,2026-03-12 19:34:16.143055,abortion definition,abortion definition simple,recurrent,spontaneous workup +abortion,"('missed abortion definition acog', 'spontaneous abortion definition acog')",missed abortion definition acog,spontaneous abortion definition acog,1,3,google,2026-03-12 19:34:17.528605,abortion definition,abortion definition acog,missed,spontaneous +abortion,"('missed abortion definition acog', 'incomplete abortion definition acog')",missed abortion definition acog,incomplete abortion definition acog,2,3,google,2026-03-12 19:34:17.528605,abortion definition,abortion definition acog,missed,incomplete +abortion,"('missed abortion definition acog', 'acog missed abortion criteria')",missed abortion definition acog,acog missed abortion criteria,3,3,google,2026-03-12 19:34:17.528605,abortion definition,abortion definition acog,missed,criteria +abortion,"('missed abortion definition acog', 'types of abortion acog')",missed abortion definition acog,types of abortion acog,4,3,google,2026-03-12 19:34:17.528605,abortion definition,abortion definition acog,missed,types of +abortion,"('missed abortion definition acog', 'missed abortion vs inevitable')",missed abortion definition acog,missed abortion vs inevitable,5,3,google,2026-03-12 19:34:17.528605,abortion definition,abortion definition acog,missed,vs inevitable +abortion,"('missed abortion definition acog', 'missed abortion acog')",missed abortion definition acog,missed abortion acog,6,3,google,2026-03-12 19:34:17.528605,abortion definition,abortion definition acog,missed,missed +abortion,"('missed abortion definition acog', 'missed abortion def')",missed abortion definition acog,missed abortion def,7,3,google,2026-03-12 19:34:17.528605,abortion definition,abortion definition acog,missed,def +abortion,"('missed abortion definition acog', 'missed abortion management acog')",missed abortion definition acog,missed abortion management acog,8,3,google,2026-03-12 19:34:17.528605,abortion definition,abortion definition acog,missed,management +abortion,"('missed abortion definition acog', 'missed abortion definition')",missed abortion definition acog,missed abortion definition,9,3,google,2026-03-12 19:34:17.528605,abortion definition,abortion definition acog,missed,missed +abortion,"('spontaneous abortion definition acog', 'acog spontaneous abortion guidelines')",spontaneous abortion definition acog,acog spontaneous abortion guidelines,1,3,google,2026-03-12 19:34:18.609085,abortion definition,abortion definition acog,spontaneous,guidelines +abortion,"('spontaneous abortion definition acog', 'missed abortion definition acog')",spontaneous abortion definition acog,missed abortion definition acog,2,3,google,2026-03-12 19:34:18.609085,abortion definition,abortion definition acog,spontaneous,missed +abortion,"('spontaneous abortion definition acog', 'acog definition of abortion')",spontaneous abortion definition acog,acog definition of abortion,3,3,google,2026-03-12 19:34:18.609085,abortion definition,abortion definition acog,spontaneous,of +abortion,"('spontaneous abortion definition acog', 'types of abortion acog')",spontaneous abortion definition acog,types of abortion acog,4,3,google,2026-03-12 19:34:18.609085,abortion definition,abortion definition acog,spontaneous,types of +abortion,"('spontaneous abortion definition acog', 'spontaneous abortion acog')",spontaneous abortion definition acog,spontaneous abortion acog,5,3,google,2026-03-12 19:34:18.609085,abortion definition,abortion definition acog,spontaneous,spontaneous +abortion,"('spontaneous abortion definition acog', 'spontaneous abortion acronym')",spontaneous abortion definition acog,spontaneous abortion acronym,6,3,google,2026-03-12 19:34:18.609085,abortion definition,abortion definition acog,spontaneous,acronym +abortion,"('spontaneous abortion definition acog', 'spontaneous abortion definition')",spontaneous abortion definition acog,spontaneous abortion definition,7,3,google,2026-03-12 19:34:18.609085,abortion definition,abortion definition acog,spontaneous,spontaneous +abortion,"('spontaneous abortion definition acog', 'spontaneous abortion def')",spontaneous abortion definition acog,spontaneous abortion def,8,3,google,2026-03-12 19:34:18.609085,abortion definition,abortion definition acog,spontaneous,def +abortion,"('abortion medical definition acog', 'types of abortion acog')",abortion medical definition acog,types of abortion acog,1,3,google,2026-03-12 19:34:19.833077,abortion definition,abortion definition acog,medical,types of +abortion,"('abortion medical definition acog', 'acog definition of abortion')",abortion medical definition acog,acog definition of abortion,2,3,google,2026-03-12 19:34:19.833077,abortion definition,abortion definition acog,medical,of +abortion,"('abortion medical definition acog', 'missed abortion definition acog')",abortion medical definition acog,missed abortion definition acog,3,3,google,2026-03-12 19:34:19.833077,abortion definition,abortion definition acog,medical,missed +abortion,"('abortion medical definition acog', 'acog abortion policy')",abortion medical definition acog,acog abortion policy,4,3,google,2026-03-12 19:34:19.833077,abortion definition,abortion definition acog,medical,policy +abortion,"('abortion medical definition acog', 'acog abortion guidelines')",abortion medical definition acog,acog abortion guidelines,5,3,google,2026-03-12 19:34:19.833077,abortion definition,abortion definition acog,medical,guidelines +abortion,"('abortion medical definition acog', 'acog medical abortion guidelines')",abortion medical definition acog,acog medical abortion guidelines,6,3,google,2026-03-12 19:34:19.833077,abortion definition,abortion definition acog,medical,guidelines +abortion,"('abortion medical definition acog', 'acog medical abortion')",abortion medical definition acog,acog medical abortion,7,3,google,2026-03-12 19:34:19.833077,abortion definition,abortion definition acog,medical,medical +abortion,"('threatened abortion definition acog', 'inevitable abortion definition acog')",threatened abortion definition acog,inevitable abortion definition acog,1,3,google,2026-03-12 19:34:21.229873,abortion definition,abortion definition acog,threatened,inevitable +abortion,"('threatened abortion definition acog', 'acog definition of abortion')",threatened abortion definition acog,acog definition of abortion,2,3,google,2026-03-12 19:34:21.229873,abortion definition,abortion definition acog,threatened,of +abortion,"('threatened abortion definition acog', 'types of abortion acog')",threatened abortion definition acog,types of abortion acog,3,3,google,2026-03-12 19:34:21.229873,abortion definition,abortion definition acog,threatened,types of +abortion,"('threatened abortion definition acog', 'missed abortion definition acog')",threatened abortion definition acog,missed abortion definition acog,4,3,google,2026-03-12 19:34:21.229873,abortion definition,abortion definition acog,threatened,missed +abortion,"('threatened abortion definition acog', 'threatened abortion acog')",threatened abortion definition acog,threatened abortion acog,5,3,google,2026-03-12 19:34:21.229873,abortion definition,abortion definition acog,threatened,threatened +abortion,"('threatened abortion definition acog', 'threatened abortion definition')",threatened abortion definition acog,threatened abortion definition,6,3,google,2026-03-12 19:34:21.229873,abortion definition,abortion definition acog,threatened,threatened +abortion,"('threatened abortion definition acog', 'threatened abortion management acog')",threatened abortion definition acog,threatened abortion management acog,7,3,google,2026-03-12 19:34:21.229873,abortion definition,abortion definition acog,threatened,management +abortion,"('threatened abortion definition acog', 'threatened abortion diagnosis')",threatened abortion definition acog,threatened abortion diagnosis,8,3,google,2026-03-12 19:34:21.229873,abortion definition,abortion definition acog,threatened,diagnosis +abortion,"('threatened abortion definition acog', 'threatened abortion aafp')",threatened abortion definition acog,threatened abortion aafp,9,3,google,2026-03-12 19:34:21.229873,abortion definition,abortion definition acog,threatened,aafp +abortion,"('inevitable abortion definition acog', 'missed abortion definition acog')",inevitable abortion definition acog,missed abortion definition acog,1,3,google,2026-03-12 19:34:22.677041,abortion definition,abortion definition acog,inevitable,missed +abortion,"('inevitable abortion definition acog', 'threatened abortion definition acog')",inevitable abortion definition acog,threatened abortion definition acog,2,3,google,2026-03-12 19:34:22.677041,abortion definition,abortion definition acog,inevitable,threatened +abortion,"('inevitable abortion definition acog', 'incomplete abortion definition acog')",inevitable abortion definition acog,incomplete abortion definition acog,3,3,google,2026-03-12 19:34:22.677041,abortion definition,abortion definition acog,inevitable,incomplete +abortion,"('inevitable abortion definition acog', 'acog definition of abortion')",inevitable abortion definition acog,acog definition of abortion,4,3,google,2026-03-12 19:34:22.677041,abortion definition,abortion definition acog,inevitable,of +abortion,"('inevitable abortion definition acog', 'types of abortion acog')",inevitable abortion definition acog,types of abortion acog,5,3,google,2026-03-12 19:34:22.677041,abortion definition,abortion definition acog,inevitable,types of +abortion,"('inevitable abortion definition acog', 'inevitable abortion definition')",inevitable abortion definition acog,inevitable abortion definition,6,3,google,2026-03-12 19:34:22.677041,abortion definition,abortion definition acog,inevitable,inevitable +abortion,"('inevitable abortion definition acog', 'inevitable ab')",inevitable abortion definition acog,inevitable ab,7,3,google,2026-03-12 19:34:22.677041,abortion definition,abortion definition acog,inevitable,ab +abortion,"('inevitable abortion definition acog', 'inevitable abortion icd-10')",inevitable abortion definition acog,inevitable abortion icd-10,8,3,google,2026-03-12 19:34:22.677041,abortion definition,abortion definition acog,inevitable,icd-10 +abortion,"('inevitable abortion definition acog', 'inevitable abortion wikem')",inevitable abortion definition acog,inevitable abortion wikem,9,3,google,2026-03-12 19:34:22.677041,abortion definition,abortion definition acog,inevitable,wikem +abortion,"('septic abortion definition acog', 'types of abortion acog')",septic abortion definition acog,types of abortion acog,1,3,google,2026-03-12 19:34:23.682987,abortion definition,abortion definition acog,septic,types of +abortion,"('septic abortion definition acog', 'acog definition of abortion')",septic abortion definition acog,acog definition of abortion,2,3,google,2026-03-12 19:34:23.682987,abortion definition,abortion definition acog,septic,of +abortion,"('septic abortion definition acog', 'missed abortion definition acog')",septic abortion definition acog,missed abortion definition acog,3,3,google,2026-03-12 19:34:23.682987,abortion definition,abortion definition acog,septic,missed +abortion,"('septic abortion definition acog', 'acog abortion guidelines')",septic abortion definition acog,acog abortion guidelines,4,3,google,2026-03-12 19:34:23.682987,abortion definition,abortion definition acog,septic,guidelines +abortion,"('septic abortion definition acog', 'septic abortion acog')",septic abortion definition acog,septic abortion acog,5,3,google,2026-03-12 19:34:23.682987,abortion definition,abortion definition acog,septic,septic +abortion,"('septic abortion definition acog', 'septic abortion treatment acog')",septic abortion definition acog,septic abortion treatment acog,6,3,google,2026-03-12 19:34:23.682987,abortion definition,abortion definition acog,septic,treatment +abortion,"('septic abortion definition acog', 'septic abortion antibiotics acog')",septic abortion definition acog,septic abortion antibiotics acog,7,3,google,2026-03-12 19:34:23.682987,abortion definition,abortion definition acog,septic,antibiotics +abortion,"('septic abortion definition acog', 'septic abortion wikem')",septic abortion definition acog,septic abortion wikem,8,3,google,2026-03-12 19:34:23.682987,abortion definition,abortion definition acog,septic,wikem +abortion,"('incomplete abortion definition acog', 'missed abortion definition acog')",incomplete abortion definition acog,missed abortion definition acog,1,3,google,2026-03-12 19:34:25.174809,abortion definition,abortion definition acog,incomplete,missed +abortion,"('incomplete abortion definition acog', 'spontaneous abortion definition acog')",incomplete abortion definition acog,spontaneous abortion definition acog,2,3,google,2026-03-12 19:34:25.174809,abortion definition,abortion definition acog,incomplete,spontaneous +abortion,"('incomplete abortion definition acog', 'inevitable abortion definition acog')",incomplete abortion definition acog,inevitable abortion definition acog,3,3,google,2026-03-12 19:34:25.174809,abortion definition,abortion definition acog,incomplete,inevitable +abortion,"('incomplete abortion definition acog', 'types of abortion acog')",incomplete abortion definition acog,types of abortion acog,4,3,google,2026-03-12 19:34:25.174809,abortion definition,abortion definition acog,incomplete,types of +abortion,"('incomplete abortion definition acog', 'acog definition of abortion')",incomplete abortion definition acog,acog definition of abortion,5,3,google,2026-03-12 19:34:25.174809,abortion definition,abortion definition acog,incomplete,of +abortion,"('incomplete abortion definition acog', 'acog missed abortion criteria')",incomplete abortion definition acog,acog missed abortion criteria,6,3,google,2026-03-12 19:34:25.174809,abortion definition,abortion definition acog,incomplete,missed criteria +abortion,"('incomplete abortion definition acog', 'incomplete abortion acog')",incomplete abortion definition acog,incomplete abortion acog,7,3,google,2026-03-12 19:34:25.174809,abortion definition,abortion definition acog,incomplete,incomplete +abortion,"('incomplete abortion definition acog', 'incomplete abortion definition')",incomplete abortion definition acog,incomplete abortion definition,8,3,google,2026-03-12 19:34:25.174809,abortion definition,abortion definition acog,incomplete,incomplete +abortion,"('incomplete abortion definition acog', 'incomplete abortion d&c')",incomplete abortion definition acog,incomplete abortion d&c,9,3,google,2026-03-12 19:34:25.174809,abortion definition,abortion definition acog,incomplete,d&c +abortion,"('types of abortion acog', 'acog abortion guidelines')",types of abortion acog,acog abortion guidelines,1,3,google,2026-03-12 19:34:26.664298,abortion definition,abortion definition acog,types of,guidelines +abortion,"('types of abortion acog', 'acog definition of abortion')",types of abortion acog,acog definition of abortion,2,3,google,2026-03-12 19:34:26.664298,abortion definition,abortion definition acog,types of,definition +abortion,"('types of abortion acog', 'acog abortion policy')",types of abortion acog,acog abortion policy,3,3,google,2026-03-12 19:34:26.664298,abortion definition,abortion definition acog,types of,policy +abortion,"('types of abortion acog', 'types of acog')",types of abortion acog,types of acog,4,3,google,2026-03-12 19:34:26.664298,abortion definition,abortion definition acog,types of,types of +abortion,"('acog abortion policy', 'acog abortion guidelines')",acog abortion policy,acog abortion guidelines,1,3,google,2026-03-12 19:34:28.035895,abortion definition,abortion definition acog,policy,guidelines +abortion,"('acog abortion policy', 'types of abortion acog')",acog abortion policy,types of abortion acog,2,3,google,2026-03-12 19:34:28.035895,abortion definition,abortion definition acog,policy,types of +abortion,"('acog abortion policy', 'acog definition of abortion')",acog abortion policy,acog definition of abortion,3,3,google,2026-03-12 19:34:28.035895,abortion definition,abortion definition acog,policy,definition of +abortion,"('acog abortion policy', 'acog abortion access')",acog abortion policy,acog abortion access,4,3,google,2026-03-12 19:34:28.035895,abortion definition,abortion definition acog,policy,access +abortion,"('acog abortion policy', 'acog abortion guidelines pdf')",acog abortion policy,acog abortion guidelines pdf,5,3,google,2026-03-12 19:34:28.035895,abortion definition,abortion definition acog,policy,guidelines pdf +abortion,"('acog abortion policy', 'acog abortion')",acog abortion policy,acog abortion,6,3,google,2026-03-12 19:34:28.035895,abortion definition,abortion definition acog,policy,policy +abortion,"('abortion definition in nursing ppt', 'what is abortion ppt')",abortion definition in nursing ppt,what is abortion ppt,1,3,google,2026-03-12 19:34:29.461982,abortion definition,abortion definition in nursing,ppt,what is +abortion,"('abortion definition in nursing ppt', 'what is ppt in nursing')",abortion definition in nursing ppt,what is ppt in nursing,2,3,google,2026-03-12 19:34:29.461982,abortion definition,abortion definition in nursing,ppt,what is +abortion,"('abortion definition in nursing ppt', 'what is abortion in nursing')",abortion definition in nursing ppt,what is abortion in nursing,3,3,google,2026-03-12 19:34:29.461982,abortion definition,abortion definition in nursing,ppt,what is +abortion,"('abortion definition in nursing ppt', 'types of abortion ppt')",abortion definition in nursing ppt,types of abortion ppt,4,3,google,2026-03-12 19:34:29.461982,abortion definition,abortion definition in nursing,ppt,types of +abortion,"('abortion definition in nursing ppt', 'definition abortion nursing')",abortion definition in nursing ppt,definition abortion nursing,5,3,google,2026-03-12 19:34:29.461982,abortion definition,abortion definition in nursing,ppt,ppt +abortion,"('abortion definition in nursing ppt', 'abortion in nursing lecture')",abortion definition in nursing ppt,abortion in nursing lecture,6,3,google,2026-03-12 19:34:29.461982,abortion definition,abortion definition in nursing,ppt,lecture +abortion,"('abortion definition in nursing ppt', 'abortion in nursing ppt')",abortion definition in nursing ppt,abortion in nursing ppt,7,3,google,2026-03-12 19:34:29.461982,abortion definition,abortion definition in nursing,ppt,ppt +abortion,"('abortion definition in nursing according to who', 'what is abortion according to who')",abortion definition in nursing according to who,what is abortion according to who,1,3,google,2026-03-12 19:34:30.711389,abortion definition,abortion definition in nursing,according to who,what is +abortion,"('abortion definition in nursing according to who', 'types of abortion according to who')",abortion definition in nursing according to who,types of abortion according to who,2,3,google,2026-03-12 19:34:30.711389,abortion definition,abortion definition in nursing,according to who,types of +abortion,"('abortion definition in nursing according to who', 'what is abortion in nursing')",abortion definition in nursing according to who,what is abortion in nursing,3,3,google,2026-03-12 19:34:30.711389,abortion definition,abortion definition in nursing,according to who,what is +abortion,"('abortion definition in nursing according to who', 'abortion definition according to who')",abortion definition in nursing according to who,abortion definition according to who,4,3,google,2026-03-12 19:34:30.711389,abortion definition,abortion definition in nursing,according to who,according to who +abortion,"('abortion definition in nursing according to who', 'abortion definition webster dictionary')",abortion definition in nursing according to who,abortion definition webster dictionary,5,3,google,2026-03-12 19:34:30.711389,abortion definition,abortion definition in nursing,according to who,webster dictionary +abortion,"('abortion definition in nursing according to who', 'abortion definition world health organisation')",abortion definition in nursing according to who,abortion definition world health organisation,6,3,google,2026-03-12 19:34:30.711389,abortion definition,abortion definition in nursing,according to who,world health organisation +abortion,"('abortion definition in nursing according to who', 'abortion definition acog')",abortion definition in nursing according to who,abortion definition acog,7,3,google,2026-03-12 19:34:30.711389,abortion definition,abortion definition in nursing,according to who,acog +abortion,"('abortion definition in nursing pdf', 'what is abortion pdf')",abortion definition in nursing pdf,what is abortion pdf,1,3,google,2026-03-12 19:34:32.016211,abortion definition,abortion definition in nursing,pdf,what is +abortion,"('abortion definition in nursing pdf', 'what is abortion in nursing')",abortion definition in nursing pdf,what is abortion in nursing,2,3,google,2026-03-12 19:34:32.016211,abortion definition,abortion definition in nursing,pdf,what is +abortion,"('abortion definition in nursing pdf', 'explain abortion in detail')",abortion definition in nursing pdf,explain abortion in detail,3,3,google,2026-03-12 19:34:32.016211,abortion definition,abortion definition in nursing,pdf,explain detail +abortion,"('abortion definition in nursing pdf', 'types of abortion pdf')",abortion definition in nursing pdf,types of abortion pdf,4,3,google,2026-03-12 19:34:32.016211,abortion definition,abortion definition in nursing,pdf,types of +abortion,"('abortion definition in nursing pdf', 'definition abortion nursing')",abortion definition in nursing pdf,definition abortion nursing,5,3,google,2026-03-12 19:34:32.016211,abortion definition,abortion definition in nursing,pdf,pdf +abortion,"('abortion definition in nursing in hindi', 'abortion in nursing')",abortion definition in nursing in hindi,abortion in nursing,1,3,google,2026-03-12 19:34:33.145746,abortion definition,abortion definition in nursing,hindi,hindi +abortion,"('abortion definition in nursing in hindi', 'abortion nursing lecture in hindi')",abortion definition in nursing in hindi,abortion nursing lecture in hindi,2,3,google,2026-03-12 19:34:33.145746,abortion definition,abortion definition in nursing,hindi,lecture +abortion,"('abortion definition in nursing in hindi', 'abortion definition nursing')",abortion definition in nursing in hindi,abortion definition nursing,3,3,google,2026-03-12 19:34:33.145746,abortion definition,abortion definition in nursing,hindi,hindi +abortion,"('abortion definition in nursing in hindi', 'abortion nursing lecture in english')",abortion definition in nursing in hindi,abortion nursing lecture in english,4,3,google,2026-03-12 19:34:33.145746,abortion definition,abortion definition in nursing,hindi,lecture english +abortion,"('abortion definition in community health nursing', 'define the community health nursing')",abortion definition in community health nursing,define the community health nursing,1,3,google,2026-03-12 19:34:34.776084,abortion definition,abortion definition in nursing,community health,define the +abortion,"('abortion definition in community health nursing', 'explain the concept of community health nursing')",abortion definition in community health nursing,explain the concept of community health nursing,2,3,google,2026-03-12 19:34:34.776084,abortion definition,abortion definition in nursing,community health,explain the concept of +abortion,"('abortion definition in community health nursing', 'what do you mean by community health nursing')",abortion definition in community health nursing,what do you mean by community health nursing,3,3,google,2026-03-12 19:34:34.776084,abortion definition,abortion definition in nursing,community health,what do you mean by +abortion,"('abortion definition in community health nursing', 'examples of community health nursing')",abortion definition in community health nursing,examples of community health nursing,4,3,google,2026-03-12 19:34:34.776084,abortion definition,abortion definition in nursing,community health,examples of +abortion,"('abortion definition in community health nursing', 'what does abortion is health care mean')",abortion definition in community health nursing,what does abortion is health care mean,5,3,google,2026-03-12 19:34:34.776084,abortion definition,abortion definition in nursing,community health,what does is care mean +abortion,"('abortion definition in community health nursing', 'abortion definition according to who')",abortion definition in community health nursing,abortion definition according to who,6,3,google,2026-03-12 19:34:34.776084,abortion definition,abortion definition in nursing,community health,according to who +abortion,"('abortion definition in community health nursing', 'definition abortion nursing')",abortion definition in community health nursing,definition abortion nursing,7,3,google,2026-03-12 19:34:34.776084,abortion definition,abortion definition in nursing,community health,community health +abortion,"('abortion definition in community health nursing', 'abortion in nursing')",abortion definition in community health nursing,abortion in nursing,8,3,google,2026-03-12 19:34:34.776084,abortion definition,abortion definition in nursing,community health,community health +abortion,"('types of abortion definition in nursing', 'types of abortion nursing')",types of abortion definition in nursing,types of abortion nursing,1,3,google,2026-03-12 19:34:36.055745,abortion definition,abortion definition in nursing,types of,types of +abortion,"('types of abortion definition in nursing', 'types of abortion definition')",types of abortion definition in nursing,types of abortion definition,2,3,google,2026-03-12 19:34:36.055745,abortion definition,abortion definition in nursing,types of,types of +abortion,"('types of abortion definition in nursing', 'explain types of abortion')",types of abortion definition in nursing,explain types of abortion,3,3,google,2026-03-12 19:34:36.055745,abortion definition,abortion definition in nursing,types of,explain +abortion,"('types of abortion definition in nursing', 'types of abortion and its nursing management')",types of abortion definition in nursing,types of abortion and its nursing management,4,3,google,2026-03-12 19:34:36.055745,abortion definition,abortion definition in nursing,types of,and its management +abortion,"('types of abortion definition in nursing', 'types of abortion methods')",types of abortion definition in nursing,types of abortion methods,5,3,google,2026-03-12 19:34:36.055745,abortion definition,abortion definition in nursing,types of,methods +abortion,"('types of abortion definition in nursing', 'types of abortions pdf')",types of abortion definition in nursing,types of abortions pdf,6,3,google,2026-03-12 19:34:36.055745,abortion definition,abortion definition in nursing,types of,abortions pdf +abortion,"('types of abortion definition in nursing', 'nursing definition of abortion')",types of abortion definition in nursing,nursing definition of abortion,7,3,google,2026-03-12 19:34:36.055745,abortion definition,abortion definition in nursing,types of,types of +abortion,"('definition of abortion in nursing wikipedia', 'who definition of abortion')",definition of abortion in nursing wikipedia,who definition of abortion,1,3,google,2026-03-12 19:34:37.263116,abortion definition,abortion definition in nursing,of wikipedia,who +abortion,"('definition of abortion in nursing wikipedia', 'nursing definition of abortion')",definition of abortion in nursing wikipedia,nursing definition of abortion,2,3,google,2026-03-12 19:34:37.263116,abortion definition,abortion definition in nursing,of wikipedia,of wikipedia +abortion,"('definition of abortion in nursing wikipedia', 'definition of nursing intervention')",definition of abortion in nursing wikipedia,definition of nursing intervention,3,3,google,2026-03-12 19:34:37.263116,abortion definition,abortion definition in nursing,of wikipedia,intervention +abortion,"('definition of abortion in nursing slideshare', 'definition of abortion ppt nursing')",definition of abortion in nursing slideshare,definition of abortion ppt nursing,1,3,google,2026-03-12 19:34:38.344120,abortion definition,abortion definition in nursing,of slideshare,ppt +abortion,"('definition of abortion in nursing slideshare', 'what is abortion in nursing')",definition of abortion in nursing slideshare,what is abortion in nursing,2,3,google,2026-03-12 19:34:38.344120,abortion definition,abortion definition in nursing,of slideshare,what is +abortion,"('definition of abortion in nursing slideshare', 'what is abortion ppt')",definition of abortion in nursing slideshare,what is abortion ppt,3,3,google,2026-03-12 19:34:38.344120,abortion definition,abortion definition in nursing,of slideshare,what is ppt +abortion,"('definition of abortion in nursing slideshare', 'abortion in nursing lecture')",definition of abortion in nursing slideshare,abortion in nursing lecture,4,3,google,2026-03-12 19:34:38.344120,abortion definition,abortion definition in nursing,of slideshare,lecture +abortion,"('definition of abortion in nursing slideshare', 'nursing definition of abortion')",definition of abortion in nursing slideshare,nursing definition of abortion,5,3,google,2026-03-12 19:34:38.344120,abortion definition,abortion definition in nursing,of slideshare,of slideshare +abortion,"('what is abortion in nursing', 'what is abortion definition in nursing')",what is abortion in nursing,what is abortion definition in nursing,1,3,google,2026-03-12 19:34:39.720139,abortion definition,abortion definition in nursing,what is,definition +abortion,"('what is abortion in nursing', 'what is an incomplete abortion in nursing diagnosis')",what is abortion in nursing,what is an incomplete abortion in nursing diagnosis,2,3,google,2026-03-12 19:34:39.720139,abortion definition,abortion definition in nursing,what is,an incomplete diagnosis +abortion,"('what is abortion in nursing', 'types of abortion nursing')",what is abortion in nursing,types of abortion nursing,3,3,google,2026-03-12 19:34:39.720139,abortion definition,abortion definition in nursing,what is,types of +abortion,"('what is abortion in nursing', 'types of abortion and its nursing management')",what is abortion in nursing,types of abortion and its nursing management,4,3,google,2026-03-12 19:34:39.720139,abortion definition,abortion definition in nursing,what is,types of and its management +abortion,"('what is abortion in nursing', 'nursing care in abortions')",what is abortion in nursing,nursing care in abortions,5,3,google,2026-03-12 19:34:39.720139,abortion definition,abortion definition in nursing,what is,care abortions +abortion,"('what is abortion in nursing', 'what is abandonment in nursing')",what is abortion in nursing,what is abandonment in nursing,6,3,google,2026-03-12 19:34:39.720139,abortion definition,abortion definition in nursing,what is,abandonment +abortion,"('what is abortion in nursing', 'what is a nursing interventions')",what is abortion in nursing,what is a nursing interventions,7,3,google,2026-03-12 19:34:39.720139,abortion definition,abortion definition in nursing,what is,a interventions +abortion,"('abortion pill side effects long term reddit', 'morning after pill side effects long term reddit')",abortion pill side effects long term reddit,morning after pill side effects long term reddit,1,3,google,2026-03-12 19:34:41.127080,abortion pill side effects,abortion pill side effects long term,reddit,morning after +abortion,"('abortion pill side effects long term reddit', 'abortion pill reviews reddit')",abortion pill side effects long term reddit,abortion pill reviews reddit,2,3,google,2026-03-12 19:34:41.127080,abortion pill side effects,abortion pill side effects long term,reddit,reviews +abortion,"('abortion pill side effects long term reddit', 'abortion pill side effects long-term')",abortion pill side effects long term reddit,abortion pill side effects long-term,3,3,google,2026-03-12 19:34:41.127080,abortion pill side effects,abortion pill side effects long term,reddit,long-term +abortion,"('abortion pill side effects long term reddit', 'abortion pill side effects reddit')",abortion pill side effects long term reddit,abortion pill side effects reddit,4,3,google,2026-03-12 19:34:41.127080,abortion pill side effects,abortion pill side effects long term,reddit,reddit +abortion,"('abortion pill side effects long term reddit', 'abortion pill symptoms reddit')",abortion pill side effects long term reddit,abortion pill symptoms reddit,5,3,google,2026-03-12 19:34:41.127080,abortion pill side effects,abortion pill side effects long term,reddit,symptoms +abortion,"('abortion pill side effects long term reddit', 'abortion side effects reddit')",abortion pill side effects long term reddit,abortion side effects reddit,6,3,google,2026-03-12 19:34:41.127080,abortion pill side effects,abortion pill side effects long term,reddit,reddit +abortion,"('abortion pill side effects long term reddit', 'abortion pill effects reddit')",abortion pill side effects long term reddit,abortion pill effects reddit,7,3,google,2026-03-12 19:34:41.127080,abortion pill side effects,abortion pill side effects long term,reddit,reddit +abortion,"('morning after pill side effects long term reddit', 'does the morning after pill have long term effects')",morning after pill side effects long term reddit,does the morning after pill have long term effects,1,3,google,2026-03-12 19:34:42.475210,abortion pill side effects,abortion pill side effects long term,morning after reddit,does the have +abortion,"('morning after pill side effects long term reddit', 'long term effects of plan b reddit')",morning after pill side effects long term reddit,long term effects of plan b reddit,2,3,google,2026-03-12 19:34:42.475210,abortion pill side effects,abortion pill side effects long term,morning after reddit,of plan b +abortion,"('morning after pill side effects long term reddit', 'plan b side effects long-term reddit')",morning after pill side effects long term reddit,plan b side effects long-term reddit,3,3,google,2026-03-12 19:34:42.475210,abortion pill side effects,abortion pill side effects long term,morning after reddit,plan b long-term +abortion,"('morning after pill side effects long term reddit', 'metformin side effects long-term reddit')",morning after pill side effects long term reddit,metformin side effects long-term reddit,4,3,google,2026-03-12 19:34:42.475210,abortion pill side effects,abortion pill side effects long term,morning after reddit,metformin long-term +abortion,"('morning after pill side effects long term reddit', 'moringa side effects reddit')",morning after pill side effects long term reddit,moringa side effects reddit,5,3,google,2026-03-12 19:34:42.475210,abortion pill side effects,abortion pill side effects long term,morning after reddit,moringa +abortion,"('morning after pill effects long term several times', 'is it bad to take morning after pill multiple times')",morning after pill effects long term several times,is it bad to take morning after pill multiple times,1,3,google,2026-03-12 19:34:44.836251,abortion pill side effects,abortion pill side effects long term,morning after several times,is it bad to take multiple +abortion,"('morning after pill effects long term several times', 'does the morning after pill have long term effects')",morning after pill effects long term several times,does the morning after pill have long term effects,2,3,google,2026-03-12 19:34:44.836251,abortion pill side effects,abortion pill side effects long term,morning after several times,does the have +abortion,"('morning after pill effects long term several times', 'can taking too many morning after pills be harmful')",morning after pill effects long term several times,can taking too many morning after pills be harmful,3,3,google,2026-03-12 19:34:44.836251,abortion pill side effects,abortion pill side effects long term,morning after several times,can taking too many pills be harmful +abortion,"('morning after pill effects long term several times', 'long term side effects of morning-after pill')",morning after pill effects long term several times,long term side effects of morning-after pill,4,3,google,2026-03-12 19:34:44.836251,abortion pill side effects,abortion pill side effects long term,morning after several times,side of morning-after +abortion,"('morning after pill effects long term several times', 'morning after pill side effects a week later')",morning after pill effects long term several times,morning after pill side effects a week later,5,3,google,2026-03-12 19:34:44.836251,abortion pill side effects,abortion pill side effects long term,morning after several times,side a week later +abortion,"('morning after pill effects long term several times', 'morning-after pills works after how long')",morning after pill effects long term several times,morning-after pills works after how long,6,3,google,2026-03-12 19:34:44.836251,abortion pill side effects,abortion pill side effects long term,morning after several times,morning-after pills works how +abortion,"('morning after pill effects long term several times', 'morning after pill cause longer period')",morning after pill effects long term several times,morning after pill cause longer period,7,3,google,2026-03-12 19:34:44.836251,abortion pill side effects,abortion pill side effects long term,morning after several times,cause longer period +abortion,"('does abortion pill have long term side effects', 'does the morning after pill have any long lasting side effects')",does abortion pill have long term side effects,does the morning after pill have any long lasting side effects,1,3,google,2026-03-12 19:34:45.937560,abortion pill side effects,abortion pill side effects long term,does have,the morning after any lasting +abortion,"('does abortion pill have long term side effects', 'what are the long term effects of the abortion pill')",does abortion pill have long term side effects,what are the long term effects of the abortion pill,2,3,google,2026-03-12 19:34:45.937560,abortion pill side effects,abortion pill side effects long term,does have,what are the of the +abortion,"('does abortion pill have long term side effects', 'what are the long term side effects of abortion pills')",does abortion pill have long term side effects,what are the long term side effects of abortion pills,3,3,google,2026-03-12 19:34:45.937560,abortion pill side effects,abortion pill side effects long term,does have,what are the of pills +abortion,"('does abortion pill have long term side effects', 'long term effects of medical abortion')",does abortion pill have long term side effects,long term effects of medical abortion,4,3,google,2026-03-12 19:34:45.937560,abortion pill side effects,abortion pill side effects long term,does have,of medical +abortion,"('does abortion pill have long term side effects', 'does abortion pill have side effects')",does abortion pill have long term side effects,does abortion pill have side effects,5,3,google,2026-03-12 19:34:45.937560,abortion pill side effects,abortion pill side effects long term,does have,does have +abortion,"('does abortion pill have long term side effects', 'long term effects of abortion pill on the body')",does abortion pill have long term side effects,long term effects of abortion pill on the body,6,3,google,2026-03-12 19:34:45.937560,abortion pill side effects,abortion pill side effects long term,does have,of on the body +abortion,"('what are the long term effects of the abortion pill', 'what are the long term effects of the morning after pill')",what are the long term effects of the abortion pill,what are the long term effects of the morning after pill,1,3,google,2026-03-12 19:34:47.062935,abortion pill side effects,abortion pill side effects long term,what are the of the,morning after +abortion,"('what are the long term effects of the abortion pill', 'what are the long term side effects of the abortion pill')",what are the long term effects of the abortion pill,what are the long term side effects of the abortion pill,2,3,google,2026-03-12 19:34:47.062935,abortion pill side effects,abortion pill side effects long term,what are the of the,side +abortion,"('what are the long term effects of the abortion pill', 'what are the long term effects of taking the abortion pill')",what are the long term effects of the abortion pill,what are the long term effects of taking the abortion pill,3,3,google,2026-03-12 19:34:47.062935,abortion pill side effects,abortion pill side effects long term,what are the of the,taking +abortion,"('what are the long term effects of the abortion pill', 'what are the long term side effects of the morning after pill')",what are the long term effects of the abortion pill,what are the long term side effects of the morning after pill,4,3,google,2026-03-12 19:34:47.062935,abortion pill side effects,abortion pill side effects long term,what are the of the,side morning after +abortion,"('what are the long term effects of the abortion pill', 'what are the side effects of the morning after pill')",what are the long term effects of the abortion pill,what are the side effects of the morning after pill,5,3,google,2026-03-12 19:34:47.062935,abortion pill side effects,abortion pill side effects long term,what are the of the,side morning after +abortion,"('what are the long term effects of the abortion pill', 'are there long term effects of the abortion pill')",what are the long term effects of the abortion pill,are there long term effects of the abortion pill,6,3,google,2026-03-12 19:34:47.062935,abortion pill side effects,abortion pill side effects long term,what are the of the,there +abortion,"('what are the long term effects of the abortion pill', 'what are the side effects of the first abortion pill')",what are the long term effects of the abortion pill,what are the side effects of the first abortion pill,7,3,google,2026-03-12 19:34:47.062935,abortion pill side effects,abortion pill side effects long term,what are the of the,side first +abortion,"('what are the long term effects of the abortion pill', 'what are the side effects of the morning after pill and how long does it last')",what are the long term effects of the abortion pill,what are the side effects of the morning after pill and how long does it last,8,3,google,2026-03-12 19:34:47.062935,abortion pill side effects,abortion pill side effects long term,what are the of the,side morning after and how does it last +abortion,"('what are the long term effects of the abortion pill', 'what are the negative side effects of the morning after pill')",what are the long term effects of the abortion pill,what are the negative side effects of the morning after pill,9,3,google,2026-03-12 19:34:47.062935,abortion pill side effects,abortion pill side effects long term,what are the of the,negative side morning after +abortion,"('long term effects of medical abortion', 'long term risks of medical abortion')",long term effects of medical abortion,long term risks of medical abortion,1,3,google,2026-03-12 19:34:47.895342,abortion pill side effects,abortion pill side effects long term,of medical,risks +abortion,"('long term effects of medical abortion', 'long term side effects of medical abortion')",long term effects of medical abortion,long term side effects of medical abortion,2,3,google,2026-03-12 19:34:47.895342,abortion pill side effects,abortion pill side effects long term,of medical,side +abortion,"('long term effects of medical abortion', 'long term side effects of abortion medicine')",long term effects of medical abortion,long term side effects of abortion medicine,3,3,google,2026-03-12 19:34:47.895342,abortion pill side effects,abortion pill side effects long term,of medical,side medicine +abortion,"('long term effects of medical abortion', 'are there long term side effects of medical abortion')",long term effects of medical abortion,are there long term side effects of medical abortion,4,3,google,2026-03-12 19:34:47.895342,abortion pill side effects,abortion pill side effects long term,of medical,are there side +abortion,"('long term effects of medical abortion', 'are there long term effects of a medical abortion')",long term effects of medical abortion,are there long term effects of a medical abortion,5,3,google,2026-03-12 19:34:47.895342,abortion pill side effects,abortion pill side effects long term,of medical,are there a +abortion,"('long term effects of medical abortion', 'how long do side effects of medical abortion last')",long term effects of medical abortion,how long do side effects of medical abortion last,6,3,google,2026-03-12 19:34:47.895342,abortion pill side effects,abortion pill side effects long term,of medical,how do side last +abortion,"('long term effects of medical abortion', 'side effects of medical abortion')",long term effects of medical abortion,side effects of medical abortion,7,3,google,2026-03-12 19:34:47.895342,abortion pill side effects,abortion pill side effects long term,of medical,side +abortion,"('long term effects of medical abortion', 'side effects of medical abortion in future pregnancy')",long term effects of medical abortion,side effects of medical abortion in future pregnancy,8,3,google,2026-03-12 19:34:47.895342,abortion pill side effects,abortion pill side effects long term,of medical,side in future pregnancy +abortion,"('long term effects of medical abortion', 'side effects of medical abortion pill')",long term effects of medical abortion,side effects of medical abortion pill,9,3,google,2026-03-12 19:34:47.895342,abortion pill side effects,abortion pill side effects long term,of medical,side pill +abortion,"('morning after pill side effects reddit', 'day after pill side effects reddit')",morning after pill side effects reddit,day after pill side effects reddit,1,3,google,2026-03-12 19:34:49.101318,abortion pill side effects,abortion pill side effects reddit,morning after,day +abortion,"('morning after pill side effects reddit', 'ella morning after pill side effects reddit')",morning after pill side effects reddit,ella morning after pill side effects reddit,2,3,google,2026-03-12 19:34:49.101318,abortion pill side effects,abortion pill side effects reddit,morning after,ella +abortion,"('morning after pill side effects reddit', 'morning after pill emotional side effects reddit')",morning after pill side effects reddit,morning after pill emotional side effects reddit,3,3,google,2026-03-12 19:34:49.101318,abortion pill side effects,abortion pill side effects reddit,morning after,emotional +abortion,"('morning after pill side effects reddit', 'morning after pill long term side effects reddit')",morning after pill side effects reddit,morning after pill long term side effects reddit,4,3,google,2026-03-12 19:34:49.101318,abortion pill side effects,abortion pill side effects reddit,morning after,long term +abortion,"('morning after pill side effects reddit', 'morning after pill side effects menstrual cycle reddit')",morning after pill side effects reddit,morning after pill side effects menstrual cycle reddit,5,3,google,2026-03-12 19:34:49.101318,abortion pill side effects,abortion pill side effects reddit,morning after,menstrual cycle +abortion,"('morning after pill side effects reddit', 'does the morning after pill cause side effects')",morning after pill side effects reddit,does the morning after pill cause side effects,6,3,google,2026-03-12 19:34:49.101318,abortion pill side effects,abortion pill side effects reddit,morning after,does the cause +abortion,"('morning after pill side effects reddit', 'morning after pill side effects bleeding')",morning after pill side effects reddit,morning after pill side effects bleeding,7,3,google,2026-03-12 19:34:49.101318,abortion pill side effects,abortion pill side effects reddit,morning after,bleeding +abortion,"('morning after pill side effects reddit', 'morning after pill side effects a week later')",morning after pill side effects reddit,morning after pill side effects a week later,8,3,google,2026-03-12 19:34:49.101318,abortion pill side effects,abortion pill side effects reddit,morning after,a week later +abortion,"('abortion pill after effects reddit', 'abortion pill side effects reddit')",abortion pill after effects reddit,abortion pill side effects reddit,1,3,google,2026-03-12 19:34:50.031078,abortion pill side effects,abortion pill side effects reddit,after,side +abortion,"('abortion pill after effects reddit', 'abortion pill long term effects reddit')",abortion pill after effects reddit,abortion pill long term effects reddit,2,3,google,2026-03-12 19:34:50.031078,abortion pill side effects,abortion pill side effects reddit,after,long term +abortion,"('abortion pill after effects reddit', 'morning after pill side effects reddit')",abortion pill after effects reddit,morning after pill side effects reddit,3,3,google,2026-03-12 19:34:50.031078,abortion pill side effects,abortion pill side effects reddit,after,morning side +abortion,"('abortion pill after effects reddit', 'abortion pill long term side effects reddit')",abortion pill after effects reddit,abortion pill long term side effects reddit,4,3,google,2026-03-12 19:34:50.031078,abortion pill side effects,abortion pill side effects reddit,after,long term side +abortion,"('abortion pill after effects reddit', 'first abortion pill side effects reddit')",abortion pill after effects reddit,first abortion pill side effects reddit,5,3,google,2026-03-12 19:34:50.031078,abortion pill side effects,abortion pill side effects reddit,after,first side +abortion,"('abortion pill after effects reddit', 'ella morning after pill side effects reddit')",abortion pill after effects reddit,ella morning after pill side effects reddit,6,3,google,2026-03-12 19:34:50.031078,abortion pill side effects,abortion pill side effects reddit,after,ella morning side +abortion,"('abortion pill after effects reddit', 'morning after pill emotional side effects reddit')",abortion pill after effects reddit,morning after pill emotional side effects reddit,7,3,google,2026-03-12 19:34:50.031078,abortion pill side effects,abortion pill side effects reddit,after,morning emotional side +abortion,"('abortion pill after effects reddit', 'abortion after effects')",abortion pill after effects reddit,abortion after effects,8,3,google,2026-03-12 19:34:50.031078,abortion pill side effects,abortion pill side effects reddit,after,after +abortion,"('abortion pill after effects reddit', 'abortion after effects on body')",abortion pill after effects reddit,abortion after effects on body,9,3,google,2026-03-12 19:34:50.031078,abortion pill side effects,abortion pill side effects reddit,after,on body +abortion,"('first abortion pill side effects reddit', 'abortion pill reviews reddit')",first abortion pill side effects reddit,abortion pill reviews reddit,1,3,google,2026-03-12 19:34:51.502605,abortion pill side effects,abortion pill side effects reddit,first,reviews +abortion,"('first abortion pill side effects reddit', 'first abortion side effects')",first abortion pill side effects reddit,first abortion side effects,2,3,google,2026-03-12 19:34:51.502605,abortion pill side effects,abortion pill side effects reddit,first,first +abortion,"('first abortion pill side effects reddit', 'how does first abortion pill make you feel')",first abortion pill side effects reddit,how does first abortion pill make you feel,3,3,google,2026-03-12 19:34:51.502605,abortion pill side effects,abortion pill side effects reddit,first,how does make you feel +abortion,"('first abortion pill side effects reddit', 'first abortion pill symptoms')",first abortion pill side effects reddit,first abortion pill symptoms,4,3,google,2026-03-12 19:34:51.502605,abortion pill side effects,abortion pill side effects reddit,first,symptoms +abortion,"('first abortion pill side effects reddit', 'first abortion pill effects')",first abortion pill side effects reddit,first abortion pill effects,5,3,google,2026-03-12 19:34:51.502605,abortion pill side effects,abortion pill side effects reddit,first,first +abortion,"('first abortion pill side effects reddit', 'what does abortion pill feel like reddit')",first abortion pill side effects reddit,what does abortion pill feel like reddit,6,3,google,2026-03-12 19:34:51.502605,abortion pill side effects,abortion pill side effects reddit,first,what does feel like +abortion,"('first abortion pill side effects reddit', 'side effects of abortion pill reddit')",first abortion pill side effects reddit,side effects of abortion pill reddit,7,3,google,2026-03-12 19:34:51.502605,abortion pill side effects,abortion pill side effects reddit,first,of +abortion,"('abortion pill long term side effects reddit', 'morning after pill long term side effects reddit')",abortion pill long term side effects reddit,morning after pill long term side effects reddit,1,3,google,2026-03-12 19:34:52.479775,abortion pill side effects,abortion pill side effects reddit,long term,morning after +abortion,"('abortion pill long term side effects reddit', 'abortion pill reviews reddit')",abortion pill long term side effects reddit,abortion pill reviews reddit,2,3,google,2026-03-12 19:34:52.479775,abortion pill side effects,abortion pill side effects reddit,long term,reviews +abortion,"('abortion pill long term side effects reddit', 'long term effects of medical abortion')",abortion pill long term side effects reddit,long term effects of medical abortion,3,3,google,2026-03-12 19:34:52.479775,abortion pill side effects,abortion pill side effects reddit,long term,of medical +abortion,"('abortion pill long term side effects reddit', 'abortion pill long term side effects')",abortion pill long term side effects reddit,abortion pill long term side effects,4,3,google,2026-03-12 19:34:52.479775,abortion pill side effects,abortion pill side effects reddit,long term,long term +abortion,"('abortion pill long term side effects reddit', 'abortion pill side effects reddit')",abortion pill long term side effects reddit,abortion pill side effects reddit,5,3,google,2026-03-12 19:34:52.479775,abortion pill side effects,abortion pill side effects reddit,long term,long term +abortion,"('abortion pill long term side effects reddit', 'abortion pill pain level reddit')",abortion pill long term side effects reddit,abortion pill pain level reddit,6,3,google,2026-03-12 19:34:52.479775,abortion pill side effects,abortion pill side effects reddit,long term,pain level +abortion,"('abortion pill long term side effects reddit', 'abortion pill 3 weeks reddit')",abortion pill long term side effects reddit,abortion pill 3 weeks reddit,7,3,google,2026-03-12 19:34:52.479775,abortion pill side effects,abortion pill side effects reddit,long term,3 weeks +abortion,"('ella morning after pill side effects reddit', 'ella morning after pill side effects')",ella morning after pill side effects reddit,ella morning after pill side effects,1,3,google,2026-03-12 19:34:53.341065,abortion pill side effects,abortion pill side effects reddit,ella morning after,ella morning after +abortion,"('ella morning after pill side effects reddit', 'plan b ella side effects')",ella morning after pill side effects reddit,plan b ella side effects,2,3,google,2026-03-12 19:34:53.341065,abortion pill side effects,abortion pill side effects reddit,ella morning after,plan b +abortion,"('ella morning after pill side effects reddit', 'does ellaone have side effects')",ella morning after pill side effects reddit,does ellaone have side effects,3,3,google,2026-03-12 19:34:53.341065,abortion pill side effects,abortion pill side effects reddit,ella morning after,does ellaone have +abortion,"('ella morning after pill side effects reddit', 'ella morning after pill reddit')",ella morning after pill side effects reddit,ella morning after pill reddit,4,3,google,2026-03-12 19:34:53.341065,abortion pill side effects,abortion pill side effects reddit,ella morning after,ella morning after +abortion,"('ella morning after pill side effects reddit', 'ella pill side effects reddit')",ella morning after pill side effects reddit,ella pill side effects reddit,5,3,google,2026-03-12 19:34:53.341065,abortion pill side effects,abortion pill side effects reddit,ella morning after,ella morning after +abortion,"('ella morning after pill side effects reddit', 'ella side effects reddit')",ella morning after pill side effects reddit,ella side effects reddit,6,3,google,2026-03-12 19:34:53.341065,abortion pill side effects,abortion pill side effects reddit,ella morning after,ella morning after +abortion,"('ella morning after pill side effects reddit', 'ella morning after pill reviews')",ella morning after pill side effects reddit,ella morning after pill reviews,7,3,google,2026-03-12 19:34:53.341065,abortion pill side effects,abortion pill side effects reddit,ella morning after,reviews +abortion,"('morning after pill emotional side effects reddit', 'morning after pill emotional side effects')",morning after pill emotional side effects reddit,morning after pill emotional side effects,1,3,google,2026-03-12 19:34:54.299202,abortion pill side effects,abortion pill side effects reddit,morning after emotional,morning after emotional +abortion,"('morning after pill emotional side effects reddit', 'does the morning after pill make you emotional')",morning after pill emotional side effects reddit,does the morning after pill make you emotional,2,3,google,2026-03-12 19:34:54.299202,abortion pill side effects,abortion pill side effects reddit,morning after emotional,does the make you +abortion,"('morning after pill emotional side effects reddit', 'can the morning after pill cause mood swings')",morning after pill emotional side effects reddit,can the morning after pill cause mood swings,3,3,google,2026-03-12 19:34:54.299202,abortion pill side effects,abortion pill side effects reddit,morning after emotional,can the cause mood swings +abortion,"('morning after pill emotional side effects reddit', 'does plan b make you emotional reddit')",morning after pill emotional side effects reddit,does plan b make you emotional reddit,4,3,google,2026-03-12 19:34:54.299202,abortion pill side effects,abortion pill side effects reddit,morning after emotional,does plan b make you +abortion,"('morning after pill emotional side effects reddit', 'can the morning after pill affect your mood')",morning after pill emotional side effects reddit,can the morning after pill affect your mood,5,3,google,2026-03-12 19:34:54.299202,abortion pill side effects,abortion pill side effects reddit,morning after emotional,can the affect your mood +abortion,"('morning after pill emotional side effects reddit', 'morning after pill depression reddit')",morning after pill emotional side effects reddit,morning after pill depression reddit,6,3,google,2026-03-12 19:34:54.299202,abortion pill side effects,abortion pill side effects reddit,morning after emotional,depression +abortion,"('morning after pill emotional side effects reddit', 'emotional after plan b reddit')",morning after pill emotional side effects reddit,emotional after plan b reddit,7,3,google,2026-03-12 19:34:54.299202,abortion pill side effects,abortion pill side effects reddit,morning after emotional,plan b +abortion,"('morning after pill long term side effects reddit', 'does the morning after pill have long term effects')",morning after pill long term side effects reddit,does the morning after pill have long term effects,1,3,google,2026-03-12 19:34:55.200517,abortion pill side effects,abortion pill side effects reddit,morning after long term,does the have +abortion,"('morning after pill long term side effects reddit', 'plan b side effects long-term reddit')",morning after pill long term side effects reddit,plan b side effects long-term reddit,2,3,google,2026-03-12 19:34:55.200517,abortion pill side effects,abortion pill side effects reddit,morning after long term,plan b long-term +abortion,"('morning after pill long term side effects reddit', 'modafinil long term side effects reddit')",morning after pill long term side effects reddit,modafinil long term side effects reddit,3,3,google,2026-03-12 19:34:55.200517,abortion pill side effects,abortion pill side effects reddit,morning after long term,modafinil +abortion,"('morning after pill long term side effects reddit', 'morning-after pill bleeding 1 week later reddit')",morning after pill long term side effects reddit,morning-after pill bleeding 1 week later reddit,4,3,google,2026-03-12 19:34:55.200517,abortion pill side effects,abortion pill side effects reddit,morning after long term,morning-after bleeding 1 week later +abortion,"('morning after pill long term side effects reddit', 'metformin side effects long-term reddit')",morning after pill long term side effects reddit,metformin side effects long-term reddit,5,3,google,2026-03-12 19:34:55.200517,abortion pill side effects,abortion pill side effects reddit,morning after long term,metformin long-term +abortion,"('morning after pill side effects menstrual cycle reddit', 'how long can morning after pill affect your cycle')",morning after pill side effects menstrual cycle reddit,how long can morning after pill affect your cycle,1,3,google,2026-03-12 19:34:56.647109,abortion pill side effects,abortion pill side effects reddit,morning after menstrual cycle,how long can affect your +abortion,"('morning after pill side effects menstrual cycle reddit', 'morning after pill side effects menstrual cycle')",morning after pill side effects menstrual cycle reddit,morning after pill side effects menstrual cycle,2,3,google,2026-03-12 19:34:56.647109,abortion pill side effects,abortion pill side effects reddit,morning after menstrual cycle,morning after menstrual cycle +abortion,"('morning after pill side effects menstrual cycle reddit', 'how long can the morning after pill affect your period')",morning after pill side effects menstrual cycle reddit,how long can the morning after pill affect your period,3,3,google,2026-03-12 19:34:56.647109,abortion pill side effects,abortion pill side effects reddit,morning after menstrual cycle,how long can the affect your period +abortion,"('morning after pill side effects menstrual cycle reddit', 'can taking the morning after pill make your period longer')",morning after pill side effects menstrual cycle reddit,can taking the morning after pill make your period longer,4,3,google,2026-03-12 19:34:56.647109,abortion pill side effects,abortion pill side effects reddit,morning after menstrual cycle,can taking the make your period longer +abortion,"('morning after pill side effects menstrual cycle reddit', 'morning after pill side effects bleeding')",morning after pill side effects menstrual cycle reddit,morning after pill side effects bleeding,5,3,google,2026-03-12 19:34:56.647109,abortion pill side effects,abortion pill side effects reddit,morning after menstrual cycle,bleeding +abortion,"('morning after pill side effects menstrual cycle reddit', 'morning after pill mess with cycle')",morning after pill side effects menstrual cycle reddit,morning after pill mess with cycle,6,3,google,2026-03-12 19:34:56.647109,abortion pill side effects,abortion pill side effects reddit,morning after menstrual cycle,mess with +abortion,"('abortion pill reviews reddit', 'abuzz abortion pills reviews reddit')",abortion pill reviews reddit,abuzz abortion pills reviews reddit,1,3,google,2026-03-12 19:34:57.516472,abortion pill side effects,abortion pill side effects reddit,reviews,abuzz pills +abortion,"('abortion pill reviews reddit', 'carafem abortion pill review reddit')",abortion pill reviews reddit,carafem abortion pill review reddit,2,3,google,2026-03-12 19:34:57.516472,abortion pill side effects,abortion pill side effects reddit,reviews,carafem review +abortion,"('abortion pill reviews reddit', 'aid access abortion pill reviews reddit')",abortion pill reviews reddit,aid access abortion pill reviews reddit,3,3,google,2026-03-12 19:34:57.516472,abortion pill side effects,abortion pill side effects reddit,reviews,aid access +abortion,"('abortion pill reviews reddit', 'hey jane abortion pill reviews reddit')",abortion pill reviews reddit,hey jane abortion pill reviews reddit,4,3,google,2026-03-12 19:34:57.516472,abortion pill side effects,abortion pill side effects reddit,reviews,hey jane +abortion,"('abortion pill reviews reddit', 'abortion pill reddit experience')",abortion pill reviews reddit,abortion pill reddit experience,5,3,google,2026-03-12 19:34:57.516472,abortion pill side effects,abortion pill side effects reddit,reviews,experience +abortion,"('abortion pill reviews reddit', 'abortion pill reviews 2021')",abortion pill reviews reddit,abortion pill reviews 2021,6,3,google,2026-03-12 19:34:57.516472,abortion pill side effects,abortion pill side effects reddit,reviews,2021 +abortion,"('morning after pill side effects and how long they last', 'morning after pill side effects how long does it last')",morning after pill side effects and how long they last,morning after pill side effects how long does it last,1,3,google,2026-03-12 19:34:59.110245,abortion pill side effects,abortion pill side effects how long,morning after and they last,does it +abortion,"('morning after pill side effects and how long they last', 'how long can side effects of the morning after pill last')",morning after pill side effects and how long they last,how long can side effects of the morning after pill last,2,3,google,2026-03-12 19:34:59.110245,abortion pill side effects,abortion pill side effects how long,morning after and they last,can of the +abortion,"('morning after pill side effects and how long they last', 'how many days do morning after pill side effects last')",morning after pill side effects and how long they last,how many days do morning after pill side effects last,3,3,google,2026-03-12 19:34:59.110245,abortion pill side effects,abortion pill side effects how long,morning after and they last,many days do +abortion,"('morning after pill side effects and how long they last', 'morning after pill side effects a week later')",morning after pill side effects and how long they last,morning after pill side effects a week later,4,3,google,2026-03-12 19:34:59.110245,abortion pill side effects,abortion pill side effects how long,morning after and they last,a week later +abortion,"('morning after pill side effects and how long they last', 'morning after pill how it works side effects')",morning after pill side effects and how long they last,morning after pill how it works side effects,5,3,google,2026-03-12 19:34:59.110245,abortion pill side effects,abortion pill side effects how long,morning after and they last,it works +abortion,"('morning after pill side effects and how long they last', 'morning-after pills works after how long')",morning after pill side effects and how long they last,morning-after pills works after how long,6,3,google,2026-03-12 19:34:59.110245,abortion pill side effects,abortion pill side effects how long,morning after and they last,morning-after pills works +abortion,"('morning after pill side effects and how long they last', 'morning after pill how long does it stay in your system')",morning after pill side effects and how long they last,morning after pill how long does it stay in your system,7,3,google,2026-03-12 19:34:59.110245,abortion pill side effects,abortion pill side effects how long,morning after and they last,does it stay in your system +abortion,"('morning after pill side effects and how long they last', 'how long do you get side effects from the morning after pill')",morning after pill side effects and how long they last,how long do you get side effects from the morning after pill,8,3,google,2026-03-12 19:34:59.110245,abortion pill side effects,abortion pill side effects how long,morning after and they last,do you get from the +abortion,"('morning after pill effects how long', 'morning after pill side effects how long do they last')",morning after pill effects how long,morning after pill side effects how long do they last,1,3,google,2026-03-12 19:35:00.216420,abortion pill side effects,abortion pill side effects how long,morning after,side do they last +abortion,"('morning after pill effects how long', 'morning after pill side effects how long')",morning after pill effects how long,morning after pill side effects how long,2,3,google,2026-03-12 19:35:00.216420,abortion pill side effects,abortion pill side effects how long,morning after,side +abortion,"('morning after pill effects how long', 'morning after pill effects long term')",morning after pill effects how long,morning after pill effects long term,3,3,google,2026-03-12 19:35:00.216420,abortion pill side effects,abortion pill side effects how long,morning after,term +abortion,"('morning after pill effects how long', 'morning after pill side effects long term')",morning after pill effects how long,morning after pill side effects long term,4,3,google,2026-03-12 19:35:00.216420,abortion pill side effects,abortion pill side effects how long,morning after,side term +abortion,"('morning after pill effects how long', 'day after pill side effects long term')",morning after pill effects how long,day after pill side effects long term,5,3,google,2026-03-12 19:35:00.216420,abortion pill side effects,abortion pill side effects how long,morning after,day side term +abortion,"('morning after pill effects how long', 'how long does morning after pill side effects take')",morning after pill effects how long,how long does morning after pill side effects take,6,3,google,2026-03-12 19:35:00.216420,abortion pill side effects,abortion pill side effects how long,morning after,does side take +abortion,"('morning after pill effects how long', 'how long can side effects of the morning after pill last')",morning after pill effects how long,how long can side effects of the morning after pill last,7,3,google,2026-03-12 19:35:00.216420,abortion pill side effects,abortion pill side effects how long,morning after,can side of the last +abortion,"('morning after pill effects how long', 'how long does morning after pills side effects last')",morning after pill effects how long,how long does morning after pills side effects last,8,3,google,2026-03-12 19:35:00.216420,abortion pill side effects,abortion pill side effects how long,morning after,does pills side last +abortion,"('morning after pill effects how long', 'how effective is the morning after pill 48 hours later')",morning after pill effects how long,how effective is the morning after pill 48 hours later,9,3,google,2026-03-12 19:35:00.216420,abortion pill side effects,abortion pill side effects how long,morning after,effective is the 48 hours later +abortion,"('abortion pill side effects after first pill', 'abortion pill side effects first pill')",abortion pill side effects after first pill,abortion pill side effects first pill,1,3,google,2026-03-12 19:35:01.608546,abortion pill side effects,abortion pill side effects first pill,after,after +abortion,"('abortion pill side effects after first pill', 'how soon after abortion can i take the pill')",abortion pill side effects after first pill,how soon after abortion can i take the pill,2,3,google,2026-03-12 19:35:01.608546,abortion pill side effects,abortion pill side effects first pill,after,how soon can i take the +abortion,"('abortion pill side effects after first pill', 'how long after an abortion can you start taking the pill')",abortion pill side effects after first pill,how long after an abortion can you start taking the pill,3,3,google,2026-03-12 19:35:01.608546,abortion pill side effects,abortion pill side effects first pill,after,how long an can you start taking the +abortion,"('abortion pill side effects after first pill', 'how long after an abortion can you start the pill')",abortion pill side effects after first pill,how long after an abortion can you start the pill,4,3,google,2026-03-12 19:35:01.608546,abortion pill side effects,abortion pill side effects first pill,after,how long an can you start the +abortion,"('abortion pill side effects after first pill', 'how soon after an abortion can i start the pill')",abortion pill side effects after first pill,how soon after an abortion can i start the pill,5,3,google,2026-03-12 19:35:01.608546,abortion pill side effects,abortion pill side effects first pill,after,how soon an can i start the +abortion,"('abortion pill side effects after first pill', 'abortion first pill side effects')",abortion pill side effects after first pill,abortion first pill side effects,6,3,google,2026-03-12 19:35:01.608546,abortion pill side effects,abortion pill side effects first pill,after,after +abortion,"('abortion pill side effects after first pill', 'abortion pill side effects future pregnancy')",abortion pill side effects after first pill,abortion pill side effects future pregnancy,7,3,google,2026-03-12 19:35:01.608546,abortion pill side effects,abortion pill side effects first pill,after,future pregnancy +abortion,"('abortion pill side effects after first pill', 'abortion pill side effects long term')",abortion pill side effects after first pill,abortion pill side effects long term,8,3,google,2026-03-12 19:35:01.608546,abortion pill side effects,abortion pill side effects first pill,after,long term +abortion,"('abortion pill side effects after first pill', 'abortion pill side effects after')",abortion pill side effects after first pill,abortion pill side effects after,9,3,google,2026-03-12 19:35:01.608546,abortion pill side effects,abortion pill side effects first pill,after,after +abortion,"('how soon after abortion can i take the pill', 'how soon after abortion pill can i get pregnant')",how soon after abortion can i take the pill,how soon after abortion pill can i get pregnant,1,3,google,2026-03-12 19:35:03.117277,abortion pill side effects,abortion pill side effects first pill,how soon after can i take the,get pregnant +abortion,"('how soon after abortion can i take the pill', 'how soon after an abortion can i start the pill')",how soon after abortion can i take the pill,how soon after an abortion can i start the pill,2,3,google,2026-03-12 19:35:03.117277,abortion pill side effects,abortion pill side effects first pill,how soon after can i take the,an start +abortion,"('how soon after abortion can i take the pill', 'how long after an abortion can you start the pill')",how soon after abortion can i take the pill,how long after an abortion can you start the pill,3,3,google,2026-03-12 19:35:03.117277,abortion pill side effects,abortion pill side effects first pill,how soon after can i take the,long an you start +abortion,"('how soon after abortion can i take the pill', 'how long after an abortion can you start taking the pill')",how soon after abortion can i take the pill,how long after an abortion can you start taking the pill,4,3,google,2026-03-12 19:35:03.117277,abortion pill side effects,abortion pill side effects first pill,how soon after can i take the,long an you start taking +abortion,"('how soon after abortion can i take the pill', 'how soon after taking abortion pill can i get pregnant')",how soon after abortion can i take the pill,how soon after taking abortion pill can i get pregnant,5,3,google,2026-03-12 19:35:03.117277,abortion pill side effects,abortion pill side effects first pill,how soon after can i take the,taking get pregnant +abortion,"('how soon after abortion can i take the pill', 'how soon after abortion can you take birth control')",how soon after abortion can i take the pill,how soon after abortion can you take birth control,6,3,google,2026-03-12 19:35:03.117277,abortion pill side effects,abortion pill side effects first pill,how soon after can i take the,you birth control +abortion,"('how long after an abortion can you start taking the pill', 'how long after an abortion can you start the pill')",how long after an abortion can you start taking the pill,how long after an abortion can you start the pill,1,3,google,2026-03-12 19:35:04.414475,abortion pill side effects,abortion pill side effects first pill,how long after an can you start taking the,how long after an can you start taking the +abortion,"('how long after an abortion can you start taking the pill', 'how soon after an abortion can i start the pill')",how long after an abortion can you start taking the pill,how soon after an abortion can i start the pill,2,3,google,2026-03-12 19:35:04.414475,abortion pill side effects,abortion pill side effects first pill,how long after an can you start taking the,soon i +abortion,"('how long after an abortion can you start taking the pill', 'how soon after abortion can i take the pill')",how long after an abortion can you start taking the pill,how soon after abortion can i take the pill,3,3,google,2026-03-12 19:35:04.414475,abortion pill side effects,abortion pill side effects first pill,how long after an can you start taking the,soon i take +abortion,"('how long after an abortion can you start taking the pill', 'how long after an abortion can you start birth control')",how long after an abortion can you start taking the pill,how long after an abortion can you start birth control,4,3,google,2026-03-12 19:35:04.414475,abortion pill side effects,abortion pill side effects first pill,how long after an can you start taking the,birth control +abortion,"('how long after an abortion can you start taking the pill', 'how long after an abortion can you take a plan b pill')",how long after an abortion can you start taking the pill,how long after an abortion can you take a plan b pill,5,3,google,2026-03-12 19:35:04.414475,abortion pill side effects,abortion pill side effects first pill,how long after an can you start taking the,take a plan b +abortion,"('how long after an abortion can you start taking the pill', 'how long after an abortion can you take birth control')",how long after an abortion can you start taking the pill,how long after an abortion can you take birth control,6,3,google,2026-03-12 19:35:04.414475,abortion pill side effects,abortion pill side effects first pill,how long after an can you start taking the,take birth control +abortion,"('how long after an abortion can you start taking the pill', 'how long after an abortion pill can you get pregnant')",how long after an abortion can you start taking the pill,how long after an abortion pill can you get pregnant,7,3,google,2026-03-12 19:35:04.414475,abortion pill side effects,abortion pill side effects first pill,how long after an can you start taking the,get pregnant +abortion,"('how long after an abortion can you start the pill', 'how soon after an abortion can i start the pill')",how long after an abortion can you start the pill,how soon after an abortion can i start the pill,1,3,google,2026-03-12 19:35:05.684842,abortion pill side effects,abortion pill side effects first pill,how long after an can you start the,soon i +abortion,"('how long after an abortion can you start the pill', 'how long after an abortion can you start taking the pill')",how long after an abortion can you start the pill,how long after an abortion can you start taking the pill,2,3,google,2026-03-12 19:35:05.684842,abortion pill side effects,abortion pill side effects first pill,how long after an can you start the,taking +abortion,"('how long after an abortion can you start the pill', 'how soon after abortion can i take the pill')",how long after an abortion can you start the pill,how soon after abortion can i take the pill,3,3,google,2026-03-12 19:35:05.684842,abortion pill side effects,abortion pill side effects first pill,how long after an can you start the,soon i take +abortion,"('how long after an abortion can you start the pill', 'how long after an abortion can you start birth control')",how long after an abortion can you start the pill,how long after an abortion can you start birth control,4,3,google,2026-03-12 19:35:05.684842,abortion pill side effects,abortion pill side effects first pill,how long after an can you start the,birth control +abortion,"('how long after an abortion can you start the pill', 'how long after an abortion can you take birth control')",how long after an abortion can you start the pill,how long after an abortion can you take birth control,5,3,google,2026-03-12 19:35:05.684842,abortion pill side effects,abortion pill side effects first pill,how long after an can you start the,take birth control +abortion,"('how long after an abortion can you start the pill', 'how long after an abortion can you take a plan b pill')",how long after an abortion can you start the pill,how long after an abortion can you take a plan b pill,6,3,google,2026-03-12 19:35:05.684842,abortion pill side effects,abortion pill side effects first pill,how long after an can you start the,take a plan b +abortion,"('how long after an abortion can you start the pill', 'how long after an abortion pill can you get pregnant')",how long after an abortion can you start the pill,how long after an abortion pill can you get pregnant,7,3,google,2026-03-12 19:35:05.684842,abortion pill side effects,abortion pill side effects first pill,how long after an can you start the,get pregnant +abortion,"('abortion first pill side effects', 'first abortion pill side effects reddit')",abortion first pill side effects,first abortion pill side effects reddit,1,3,google,2026-03-12 19:35:06.786137,abortion pill side effects,abortion pill side effects first pill,first,reddit +abortion,"('abortion first pill side effects', 'first abortion pill mumsnet side effects')",abortion first pill side effects,first abortion pill mumsnet side effects,2,3,google,2026-03-12 19:35:06.786137,abortion pill side effects,abortion pill side effects first pill,first,mumsnet +abortion,"('abortion first pill side effects', 'does first abortion pill have side effects')",abortion first pill side effects,does first abortion pill have side effects,3,3,google,2026-03-12 19:35:06.786137,abortion pill side effects,abortion pill side effects first pill,first,does have +abortion,"('abortion first pill side effects', 'abortion pill side effects after first pill')",abortion first pill side effects,abortion pill side effects after first pill,4,3,google,2026-03-12 19:35:06.786137,abortion pill side effects,abortion pill side effects first pill,first,after +abortion,"('abortion first pill side effects', 'how long after an abortion can you start taking the pill')",abortion first pill side effects,how long after an abortion can you start taking the pill,5,3,google,2026-03-12 19:35:06.786137,abortion pill side effects,abortion pill side effects first pill,first,how long after an can you start taking the +abortion,"('abortion first pill side effects', 'how long after an abortion can you start the pill')",abortion first pill side effects,how long after an abortion can you start the pill,6,3,google,2026-03-12 19:35:06.786137,abortion pill side effects,abortion pill side effects first pill,first,how long after an can you start the +abortion,"('abortion first pill side effects', 'how soon after an abortion can i start the pill')",abortion first pill side effects,how soon after an abortion can i start the pill,7,3,google,2026-03-12 19:35:06.786137,abortion pill side effects,abortion pill side effects first pill,first,how soon after an can i start the +abortion,"('abortion first pill side effects', 'how soon after abortion can i take the pill')",abortion first pill side effects,how soon after abortion can i take the pill,8,3,google,2026-03-12 19:35:06.786137,abortion pill side effects,abortion pill side effects first pill,first,how soon after can i take the +abortion,"('abortion first pill side effects', 'first abortion pill symptoms')",abortion first pill side effects,first abortion pill symptoms,9,3,google,2026-03-12 19:35:06.786137,abortion pill side effects,abortion pill side effects first pill,first,symptoms +abortion,"('morning after pill side effects timeline', 'how long does morning after pills side effects last')",morning after pill side effects timeline,how long does morning after pills side effects last,1,3,google,2026-03-12 19:35:07.754330,abortion pill side effects,abortion pill side effects timeline,morning after,how long does pills last +abortion,"('morning after pill side effects timeline', 'morning after pill side effects a week later')",morning after pill side effects timeline,morning after pill side effects a week later,2,3,google,2026-03-12 19:35:07.754330,abortion pill side effects,abortion pill side effects timeline,morning after,a week later +abortion,"('morning after pill side effects timeline', 'morning after pill side effects bleeding')",morning after pill side effects timeline,morning after pill side effects bleeding,3,3,google,2026-03-12 19:35:07.754330,abortion pill side effects,abortion pill side effects timeline,morning after,bleeding +abortion,"('morning after pill side effects timeline', 'morning after pill side effects menstrual cycle')",morning after pill side effects timeline,morning after pill side effects menstrual cycle,4,3,google,2026-03-12 19:35:07.754330,abortion pill side effects,abortion pill side effects timeline,morning after,menstrual cycle +abortion,"('morning after pill side effects timeline', 'morning after pill take action side effects')",morning after pill side effects timeline,morning after pill take action side effects,5,3,google,2026-03-12 19:35:07.754330,abortion pill side effects,abortion pill side effects timeline,morning after,take action +abortion,"('morning after pill side effects timeline', 'morning-after pill side effects')",morning after pill side effects timeline,morning-after pill side effects,6,3,google,2026-03-12 19:35:07.754330,abortion pill side effects,abortion pill side effects timeline,morning after,morning-after +abortion,"('abortion pill side effects duration', 'abortion pill side effects timeline')",abortion pill side effects duration,abortion pill side effects timeline,1,3,google,2026-03-12 19:35:08.894727,abortion pill side effects,abortion pill side effects timeline,duration,timeline +abortion,"('abortion pill side effects duration', 'how long does pain last after abortion pills')",abortion pill side effects duration,how long does pain last after abortion pills,2,3,google,2026-03-12 19:35:08.894727,abortion pill side effects,abortion pill side effects timeline,duration,how long does pain last after pills +abortion,"('abortion pill side effects duration', 'how long pain after abortion')",abortion pill side effects duration,how long pain after abortion,3,3,google,2026-03-12 19:35:08.894727,abortion pill side effects,abortion pill side effects timeline,duration,how long pain after +abortion,"('abortion pill side effects duration', 'side effects months after abortion')",abortion pill side effects duration,side effects months after abortion,4,3,google,2026-03-12 19:35:08.894727,abortion pill side effects,abortion pill side effects timeline,duration,months after +abortion,"('abortion pill side effects duration', 'abortion pill side effects long term')",abortion pill side effects duration,abortion pill side effects long term,5,3,google,2026-03-12 19:35:08.894727,abortion pill side effects,abortion pill side effects timeline,duration,long term +abortion,"('abortion pill side effects duration', 'abortion pill side effects last')",abortion pill side effects duration,abortion pill side effects last,6,3,google,2026-03-12 19:35:08.894727,abortion pill side effects,abortion pill side effects timeline,duration,last +abortion,"('abortion pill side effects duration', 'abortion pill side effects after')",abortion pill side effects duration,abortion pill side effects after,7,3,google,2026-03-12 19:35:08.894727,abortion pill side effects,abortion pill side effects timeline,duration,after +abortion,"('abortion pill side effects duration', 'abortion pill side effects future pregnancy')",abortion pill side effects duration,abortion pill side effects future pregnancy,8,3,google,2026-03-12 19:35:08.894727,abortion pill side effects,abortion pill side effects timeline,duration,future pregnancy +abortion,"('side effects 3 weeks after abortion', 'side effects of 3 weeks abortion')",side effects 3 weeks after abortion,side effects of 3 weeks abortion,1,3,google,2026-03-12 19:35:10.204620,abortion pill side effects,abortion pill side effects timeline,3 weeks after,of +abortion,"('side effects 3 weeks after abortion', 'side effects months after abortion')",side effects 3 weeks after abortion,side effects months after abortion,2,3,google,2026-03-12 19:35:10.204620,abortion pill side effects,abortion pill side effects timeline,3 weeks after,months +abortion,"('side effects 3 weeks after abortion', 'long term effects after abortion')",side effects 3 weeks after abortion,long term effects after abortion,3,3,google,2026-03-12 19:35:10.204620,abortion pill side effects,abortion pill side effects timeline,3 weeks after,long term +abortion,"('side effects 3 weeks after abortion', 'positive pregnancy 3 weeks after abortion')",side effects 3 weeks after abortion,positive pregnancy 3 weeks after abortion,4,3,google,2026-03-12 19:35:10.204620,abortion pill side effects,abortion pill side effects timeline,3 weeks after,positive pregnancy +abortion,"('side effects 3 weeks after abortion', 'side effects of abortion at 15 weeks')",side effects 3 weeks after abortion,side effects of abortion at 15 weeks,5,3,google,2026-03-12 19:35:10.204620,abortion pill side effects,abortion pill side effects timeline,3 weeks after,of at 15 +abortion,"('4 days after abortion pill', 'pain 4 days after abortion pill')",4 days after abortion pill,pain 4 days after abortion pill,1,3,google,2026-03-12 19:35:11.526310,abortion pill side effects,abortion pill side effects timeline,4 days after,pain +abortion,"('4 days after abortion pill', 'bleeding 4 days after abortion pill')",4 days after abortion pill,bleeding 4 days after abortion pill,2,3,google,2026-03-12 19:35:11.526310,abortion pill side effects,abortion pill side effects timeline,4 days after,bleeding +abortion,"('4 days after abortion pill', 'clots 4 days after abortion pill')",4 days after abortion pill,clots 4 days after abortion pill,3,3,google,2026-03-12 19:35:11.526310,abortion pill side effects,abortion pill side effects timeline,4 days after,clots +abortion,"('4 days after abortion pill', 'bleeding 4 days after morning after pill')",4 days after abortion pill,bleeding 4 days after morning after pill,4,3,google,2026-03-12 19:35:11.526310,abortion pill side effects,abortion pill side effects timeline,4 days after,bleeding morning +abortion,"('4 days after abortion pill', 'heavy bleeding 4 days after abortion pill')",4 days after abortion pill,heavy bleeding 4 days after abortion pill,5,3,google,2026-03-12 19:35:11.526310,abortion pill side effects,abortion pill side effects timeline,4 days after,heavy bleeding +abortion,"('4 days after abortion pill', 'spotting 4 days after morning after pill')",4 days after abortion pill,spotting 4 days after morning after pill,6,3,google,2026-03-12 19:35:11.526310,abortion pill side effects,abortion pill side effects timeline,4 days after,spotting morning +abortion,"('4 days after abortion pill', 'still bleeding 4 days after abortion pill')",4 days after abortion pill,still bleeding 4 days after abortion pill,7,3,google,2026-03-12 19:35:11.526310,abortion pill side effects,abortion pill side effects timeline,4 days after,still bleeding +abortion,"('4 days after abortion pill', 'cramps 4 days after morning after pill')",4 days after abortion pill,cramps 4 days after morning after pill,8,3,google,2026-03-12 19:35:11.526310,abortion pill side effects,abortion pill side effects timeline,4 days after,cramps morning +abortion,"('4 days after abortion pill', 'period 4 days after morning after pill')",4 days after abortion pill,period 4 days after morning after pill,9,3,google,2026-03-12 19:35:11.526310,abortion pill side effects,abortion pill side effects timeline,4 days after,period morning +abortion,"('abortion pill side effects last', 'abortion pill side effects last for how long')",abortion pill side effects last,abortion pill side effects last for how long,1,3,google,2026-03-12 19:35:12.812644,abortion pill side effects,abortion pill side effects timeline,last,for how long +abortion,"('abortion pill side effects last', 'can morning after pill side effects last a week')",abortion pill side effects last,can morning after pill side effects last a week,2,3,google,2026-03-12 19:35:12.812644,abortion pill side effects,abortion pill side effects timeline,last,can morning after a week +abortion,"('abortion pill side effects last', 'can morning after pill side effects last for 2 weeks')",abortion pill side effects last,can morning after pill side effects last for 2 weeks,3,3,google,2026-03-12 19:35:12.812644,abortion pill side effects,abortion pill side effects timeline,last,can morning after for 2 weeks +abortion,"('abortion pill side effects last', 'pregnancy symptoms after abortion pill')",abortion pill side effects last,pregnancy symptoms after abortion pill,4,3,google,2026-03-12 19:35:12.812644,abortion pill side effects,abortion pill side effects timeline,last,pregnancy symptoms after +abortion,"('abortion pill side effects last', 'how long do pregnancy symptoms last after abortion pill')",abortion pill side effects last,how long do pregnancy symptoms last after abortion pill,5,3,google,2026-03-12 19:35:12.812644,abortion pill side effects,abortion pill side effects timeline,last,how long do pregnancy symptoms after +abortion,"('abortion pill side effects last', 'side effects of pregnancy after abortion')",abortion pill side effects last,side effects of pregnancy after abortion,6,3,google,2026-03-12 19:35:12.812644,abortion pill side effects,abortion pill side effects timeline,last,of pregnancy after +abortion,"('abortion pill side effects last', 'abortion pill side effects long term')",abortion pill side effects last,abortion pill side effects long term,7,3,google,2026-03-12 19:35:12.812644,abortion pill side effects,abortion pill side effects timeline,last,long term +abortion,"('abortion pill side effects last', 'how long do side effects last from abortion pill')",abortion pill side effects last,how long do side effects last from abortion pill,8,3,google,2026-03-12 19:35:12.812644,abortion pill side effects,abortion pill side effects timeline,last,how long do from +abortion,"('abortion pill side effects after', 'morning after pill side effects after 2 weeks')",abortion pill side effects after,morning after pill side effects after 2 weeks,1,3,google,2026-03-12 19:35:14.245476,abortion pill side effects,abortion pill side effects timeline,after,morning 2 weeks +abortion,"('abortion pill side effects after', 'morning after pill side effects after a week')",abortion pill side effects after,morning after pill side effects after a week,2,3,google,2026-03-12 19:35:14.245476,abortion pill side effects,abortion pill side effects timeline,after,morning a week +abortion,"('abortion pill side effects after', 'morning after pill side effects after 5 days')",abortion pill side effects after,morning after pill side effects after 5 days,3,3,google,2026-03-12 19:35:14.245476,abortion pill side effects,abortion pill side effects timeline,after,morning 5 days +abortion,"('abortion pill side effects after', 'morning after pill side effects after 1 week')",abortion pill side effects after,morning after pill side effects after 1 week,4,3,google,2026-03-12 19:35:14.245476,abortion pill side effects,abortion pill side effects timeline,after,morning 1 week +abortion,"('abortion pill side effects after', 'morning after pill side effects after a month')",abortion pill side effects after,morning after pill side effects after a month,5,3,google,2026-03-12 19:35:14.245476,abortion pill side effects,abortion pill side effects timeline,after,morning a month +abortion,"('abortion pill side effects after', 'morning after pill side effects after 3 weeks')",abortion pill side effects after,morning after pill side effects after 3 weeks,6,3,google,2026-03-12 19:35:14.245476,abortion pill side effects,abortion pill side effects timeline,after,morning 3 weeks +abortion,"('abortion pill side effects after', 'morning after pill side effects days')",abortion pill side effects after,morning after pill side effects days,7,3,google,2026-03-12 19:35:14.245476,abortion pill side effects,abortion pill side effects timeline,after,morning days +abortion,"('abortion pill side effects after', 'abortion pill side effects after first pill')",abortion pill side effects after,abortion pill side effects after first pill,8,3,google,2026-03-12 19:35:14.245476,abortion pill side effects,abortion pill side effects timeline,after,first +abortion,"('abortion pill side effects after', 'morning after pill vs abortion pill side effects')",abortion pill side effects after,morning after pill vs abortion pill side effects,9,3,google,2026-03-12 19:35:14.245476,abortion pill side effects,abortion pill side effects timeline,after,morning vs +abortion,"('abortion pill side effects future pregnancy in hindi', 'abortion pill side effects future pregnancy')",abortion pill side effects future pregnancy in hindi,abortion pill side effects future pregnancy,1,3,google,2026-03-12 19:35:15.410393,abortion pill side effects,abortion pill side effects future pregnancy,in hindi,in hindi +abortion,"('abortion pill side effects future pregnancy in hindi', 'abortion side effects future pregnancy')",abortion pill side effects future pregnancy in hindi,abortion side effects future pregnancy,2,3,google,2026-03-12 19:35:15.410393,abortion pill side effects,abortion pill side effects future pregnancy,in hindi,in hindi +abortion,"('abortion pill side effects future pregnancy in hindi', 'side effect of abortion in future')",abortion pill side effects future pregnancy in hindi,side effect of abortion in future,3,3,google,2026-03-12 19:35:15.410393,abortion pill side effects,abortion pill side effects future pregnancy,in hindi,effect of +abortion,"('abortion pill side effects future pregnancy in hindi', 'abortion pill future pregnancy')",abortion pill side effects future pregnancy in hindi,abortion pill future pregnancy,4,3,google,2026-03-12 19:35:15.410393,abortion pill side effects,abortion pill side effects future pregnancy,in hindi,in hindi +abortion,"('abortion pill side effects future pregnancy in hindi', 'abortion side effects future pregnancy in hindi')",abortion pill side effects future pregnancy in hindi,abortion side effects future pregnancy in hindi,5,3,google,2026-03-12 19:35:15.410393,abortion pill side effects,abortion pill side effects future pregnancy,in hindi,in hindi +abortion,"('abortion pill side effects future pregnancy in hindi', 'abortion pill effects on future pregnancy')",abortion pill side effects future pregnancy in hindi,abortion pill effects on future pregnancy,6,3,google,2026-03-12 19:35:15.410393,abortion pill side effects,abortion pill side effects future pregnancy,in hindi,on +abortion,"('abortion pill side effects future pregnancy in english', 'abortion side effects future pregnancy')",abortion pill side effects future pregnancy in english,abortion side effects future pregnancy,1,3,google,2026-03-12 19:35:16.870881,abortion pill side effects,abortion pill side effects future pregnancy,in english,in english +abortion,"('abortion pill side effects future pregnancy in english', 'abortion pill side effects future pregnancy')",abortion pill side effects future pregnancy in english,abortion pill side effects future pregnancy,2,3,google,2026-03-12 19:35:16.870881,abortion pill side effects,abortion pill side effects future pregnancy,in english,in english +abortion,"('abortion pill side effects future pregnancy in english', 'abortion pill future pregnancy')",abortion pill side effects future pregnancy in english,abortion pill future pregnancy,3,3,google,2026-03-12 19:35:16.870881,abortion pill side effects,abortion pill side effects future pregnancy,in english,in english +abortion,"('abortion pill side effects future pregnancy in english', 'side effect of abortion in future')",abortion pill side effects future pregnancy in english,side effect of abortion in future,4,3,google,2026-03-12 19:35:16.870881,abortion pill side effects,abortion pill side effects future pregnancy,in english,effect of +abortion,"('abortion pill side effects future pregnancy in english', 'abortion pill effects on future pregnancy')",abortion pill side effects future pregnancy in english,abortion pill effects on future pregnancy,5,3,google,2026-03-12 19:35:16.870881,abortion pill side effects,abortion pill side effects future pregnancy,in english,on +abortion,"('abortion pill side effects future pregnancy in english', 'abortion pill affect future pregnancy')",abortion pill side effects future pregnancy in english,abortion pill affect future pregnancy,6,3,google,2026-03-12 19:35:16.870881,abortion pill side effects,abortion pill side effects future pregnancy,in english,affect +abortion,"('morning after pill side effects future pregnancy', 'does morning after pill affect future pregnancy')",morning after pill side effects future pregnancy,does morning after pill affect future pregnancy,1,3,google,2026-03-12 19:35:17.951185,abortion pill side effects,abortion pill side effects future pregnancy,morning after,does affect +abortion,"('morning after pill side effects future pregnancy', 'side effects of morning-after pill if pregnant')",morning after pill side effects future pregnancy,side effects of morning-after pill if pregnant,2,3,google,2026-03-12 19:35:17.951185,abortion pill side effects,abortion pill side effects future pregnancy,morning after,of morning-after if pregnant +abortion,"('morning after pill side effects future pregnancy', 'can plan b harm future pregnancy')",morning after pill side effects future pregnancy,can plan b harm future pregnancy,3,3,google,2026-03-12 19:35:17.951185,abortion pill side effects,abortion pill side effects future pregnancy,morning after,can plan b harm +abortion,"('morning after pill side effects future pregnancy', 'can morning after pill affect pregnancy')",morning after pill side effects future pregnancy,can morning after pill affect pregnancy,4,3,google,2026-03-12 19:35:17.951185,abortion pill side effects,abortion pill side effects future pregnancy,morning after,can affect +abortion,"('morning after pill side effects future pregnancy', 'morning after pill side effects a week later')",morning after pill side effects future pregnancy,morning after pill side effects a week later,5,3,google,2026-03-12 19:35:17.951185,abortion pill side effects,abortion pill side effects future pregnancy,morning after,a week later +abortion,"('morning after pill side effects future pregnancy', 'plan b side effects future pregnancies')",morning after pill side effects future pregnancy,plan b side effects future pregnancies,6,3,google,2026-03-12 19:35:17.951185,abortion pill side effects,abortion pill side effects future pregnancy,morning after,plan b pregnancies +abortion,"('morning after pill side effects future pregnancy', 'morning after pill plan b side effects')",morning after pill side effects future pregnancy,morning after pill plan b side effects,7,3,google,2026-03-12 19:35:17.951185,abortion pill side effects,abortion pill side effects future pregnancy,morning after,plan b +abortion,"('abortion side effects future pregnancy', 'abortion side effects future pregnancy in hindi')",abortion side effects future pregnancy,abortion side effects future pregnancy in hindi,1,3,google,2026-03-12 19:35:19.136824,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,in hindi +abortion,"('abortion side effects future pregnancy', 'abortion pill side effects future pregnancy')",abortion side effects future pregnancy,abortion pill side effects future pregnancy,2,3,google,2026-03-12 19:35:19.136824,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,pill +abortion,"('abortion side effects future pregnancy', 'abortion pill side effects future pregnancy in english')",abortion side effects future pregnancy,abortion pill side effects future pregnancy in english,3,3,google,2026-03-12 19:35:19.136824,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,pill in english +abortion,"('abortion side effects future pregnancy', 'side effects of medical abortion in future pregnancy')",abortion side effects future pregnancy,side effects of medical abortion in future pregnancy,4,3,google,2026-03-12 19:35:19.136824,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,of medical in +abortion,"('abortion side effects future pregnancy', 'abortion pill side effects future pregnancy in hindi')",abortion side effects future pregnancy,abortion pill side effects future pregnancy in hindi,5,3,google,2026-03-12 19:35:19.136824,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,pill in hindi +abortion,"('abortion side effects future pregnancy', 'does abortion affect future pregnancy')",abortion side effects future pregnancy,does abortion affect future pregnancy,6,3,google,2026-03-12 19:35:19.136824,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,does affect +abortion,"('abortion side effects future pregnancy', 'does surgical abortion affect future pregnancy')",abortion side effects future pregnancy,does surgical abortion affect future pregnancy,7,3,google,2026-03-12 19:35:19.136824,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,does surgical affect +abortion,"('abortion side effects future pregnancy', 'how can an abortion affect future pregnancy')",abortion side effects future pregnancy,how can an abortion affect future pregnancy,8,3,google,2026-03-12 19:35:19.136824,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,how can an affect +abortion,"('abortion side effects future pregnancy', 'abortion affect future pregnancy')",abortion side effects future pregnancy,abortion affect future pregnancy,9,3,google,2026-03-12 19:35:19.136824,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,affect +abortion,"('abortion pill future pregnancy', 'abortion pill affect future pregnancy')",abortion pill future pregnancy,abortion pill affect future pregnancy,1,3,google,2026-03-12 19:35:20.198314,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,affect +abortion,"('abortion pill future pregnancy', 'abortion pill effects future pregnancy')",abortion pill future pregnancy,abortion pill effects future pregnancy,2,3,google,2026-03-12 19:35:20.198314,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,effects +abortion,"('abortion pill future pregnancy', 'abortion pill side effects future pregnancy')",abortion pill future pregnancy,abortion pill side effects future pregnancy,3,3,google,2026-03-12 19:35:20.198314,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,side effects +abortion,"('abortion pill future pregnancy', 'abortion pill side effects future pregnancy in english')",abortion pill future pregnancy,abortion pill side effects future pregnancy in english,4,3,google,2026-03-12 19:35:20.198314,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,side effects in english +abortion,"('abortion pill future pregnancy', 'morning after pill affect future pregnancy')",abortion pill future pregnancy,morning after pill affect future pregnancy,5,3,google,2026-03-12 19:35:20.198314,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,morning after affect +abortion,"('abortion pill future pregnancy', 'does abortion pill affect future pregnancy')",abortion pill future pregnancy,does abortion pill affect future pregnancy,6,3,google,2026-03-12 19:35:20.198314,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,does affect +abortion,"('abortion pill future pregnancy', 'will abortion pill affect future pregnancy')",abortion pill future pregnancy,will abortion pill affect future pregnancy,7,3,google,2026-03-12 19:35:20.198314,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,will affect +abortion,"('abortion pill future pregnancy', 'does abortion pill prevent future pregnancy')",abortion pill future pregnancy,does abortion pill prevent future pregnancy,8,3,google,2026-03-12 19:35:20.198314,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,does prevent +abortion,"('abortion pill future pregnancy', 'does abortion pill harm future pregnancy')",abortion pill future pregnancy,does abortion pill harm future pregnancy,9,3,google,2026-03-12 19:35:20.198314,abortion pill side effects,abortion pill side effects future pregnancy,future pregnancy,does harm +abortion,"('side effects of pregnancy after abortion', 'side effects of getting pregnant after miscarriage')",side effects of pregnancy after abortion,side effects of getting pregnant after miscarriage,1,3,google,2026-03-12 19:35:21.376932,abortion pill side effects,abortion pill side effects future pregnancy,of after,getting pregnant miscarriage +abortion,"('side effects of pregnancy after abortion', 'side effects of pregnancy abortion')",side effects of pregnancy after abortion,side effects of pregnancy abortion,2,3,google,2026-03-12 19:35:21.376932,abortion pill side effects,abortion pill side effects future pregnancy,of after,of after +abortion,"('side effects of pregnancy after abortion', 'signs of pregnancy after abortion')",side effects of pregnancy after abortion,signs of pregnancy after abortion,3,3,google,2026-03-12 19:35:21.376932,abortion pill side effects,abortion pill side effects future pregnancy,of after,signs +abortion,"('side effects of pregnancy after abortion', 'signs of pregnancy after abortion pill')",side effects of pregnancy after abortion,signs of pregnancy after abortion pill,4,3,google,2026-03-12 19:35:21.376932,abortion pill side effects,abortion pill side effects future pregnancy,of after,signs pill +abortion,"('side effects of pregnancy after abortion', 'signs of pregnancy after abortion discharge')",side effects of pregnancy after abortion,signs of pregnancy after abortion discharge,5,3,google,2026-03-12 19:35:21.376932,abortion pill side effects,abortion pill side effects future pregnancy,of after,signs discharge +abortion,"('side effects of pregnancy after abortion', 'signs of pregnancy after abortion mumsnet')",side effects of pregnancy after abortion,signs of pregnancy after abortion mumsnet,6,3,google,2026-03-12 19:35:21.376932,abortion pill side effects,abortion pill side effects future pregnancy,of after,signs mumsnet +abortion,"('side effects of pregnancy after abortion', 'signs of pregnancy after abortion at 4 weeks')",side effects of pregnancy after abortion,signs of pregnancy after abortion at 4 weeks,7,3,google,2026-03-12 19:35:21.376932,abortion pill side effects,abortion pill side effects future pregnancy,of after,signs at 4 weeks +abortion,"('side effects of pregnancy after abortion', 'symptoms of pregnancy after abortion pill')",side effects of pregnancy after abortion,symptoms of pregnancy after abortion pill,8,3,google,2026-03-12 19:35:21.376932,abortion pill side effects,abortion pill side effects future pregnancy,of after,symptoms pill +abortion,"('side effects of pregnancy after abortion', 'signs of pregnancy after abortion at 6 weeks')",side effects of pregnancy after abortion,signs of pregnancy after abortion at 6 weeks,9,3,google,2026-03-12 19:35:21.376932,abortion pill side effects,abortion pill side effects future pregnancy,of after,signs at 6 weeks +abortion,"('does abortion affect future pregnancy', 'does abortion affect future pregnancy reddit')",does abortion affect future pregnancy,does abortion affect future pregnancy reddit,1,3,google,2026-03-12 19:35:22.401715,abortion pill side effects,abortion pill side effects future pregnancy,does affect,reddit +abortion,"('does abortion affect future pregnancy', 'does abortion affect future pregnancy nhs')",does abortion affect future pregnancy,does abortion affect future pregnancy nhs,2,3,google,2026-03-12 19:35:22.401715,abortion pill side effects,abortion pill side effects future pregnancy,does affect,nhs +abortion,"('does abortion affect future pregnancy', 'does abortion affect future pregnancy chances')",does abortion affect future pregnancy,does abortion affect future pregnancy chances,3,3,google,2026-03-12 19:35:22.401715,abortion pill side effects,abortion pill side effects future pregnancy,does affect,chances +abortion,"('does abortion affect future pregnancy', 'does abortion affect next pregnancy')",does abortion affect future pregnancy,does abortion affect next pregnancy,4,3,google,2026-03-12 19:35:22.401715,abortion pill side effects,abortion pill side effects future pregnancy,does affect,next +abortion,"('does abortion affect future pregnancy', 'does abortion affect further pregnancy')",does abortion affect future pregnancy,does abortion affect further pregnancy,5,3,google,2026-03-12 19:35:22.401715,abortion pill side effects,abortion pill side effects future pregnancy,does affect,further +abortion,"('does abortion affect future pregnancy', 'can abortion affect future pregnancy forum')",does abortion affect future pregnancy,can abortion affect future pregnancy forum,6,3,google,2026-03-12 19:35:22.401715,abortion pill side effects,abortion pill side effects future pregnancy,does affect,can forum +abortion,"('does abortion affect future pregnancy', 'do abortions impact future pregnancy')",does abortion affect future pregnancy,do abortions impact future pregnancy,7,3,google,2026-03-12 19:35:22.401715,abortion pill side effects,abortion pill side effects future pregnancy,does affect,do abortions impact +abortion,"('does abortion affect future pregnancy', 'does abortion affect future fertility')",does abortion affect future pregnancy,does abortion affect future fertility,8,3,google,2026-03-12 19:35:22.401715,abortion pill side effects,abortion pill side effects future pregnancy,does affect,fertility +abortion,"('does abortion affect future pregnancy', 'does abortion affect future.fertility reddit')",does abortion affect future pregnancy,does abortion affect future.fertility reddit,9,3,google,2026-03-12 19:35:22.401715,abortion pill side effects,abortion pill side effects future pregnancy,does affect,future.fertility reddit +abortion,"('abortion pill effects on future pregnancy', 'morning after pill effects on future pregnancy')",abortion pill effects on future pregnancy,morning after pill effects on future pregnancy,1,3,google,2026-03-12 19:35:23.796486,abortion pill side effects,abortion pill side effects future pregnancy,on,morning after +abortion,"('abortion pill effects on future pregnancy', 'abortion side effects on future pregnancy')",abortion pill effects on future pregnancy,abortion side effects on future pregnancy,2,3,google,2026-03-12 19:35:23.796486,abortion pill side effects,abortion pill side effects future pregnancy,on,side +abortion,"('abortion pill effects on future pregnancy', 'does the abortion pill effects on future pregnancy')",abortion pill effects on future pregnancy,does the abortion pill effects on future pregnancy,3,3,google,2026-03-12 19:35:23.796486,abortion pill side effects,abortion pill side effects future pregnancy,on,does the +abortion,"('abortion pill effects on future pregnancy', 'abortion pill affect future pregnancy')",abortion pill effects on future pregnancy,abortion pill affect future pregnancy,4,3,google,2026-03-12 19:35:23.796486,abortion pill side effects,abortion pill side effects future pregnancy,on,affect +abortion,"('abortion pill effects on future pregnancy', 'abortion side effects future pregnancy in hindi')",abortion pill effects on future pregnancy,abortion side effects future pregnancy in hindi,5,3,google,2026-03-12 19:35:23.796486,abortion pill side effects,abortion pill side effects future pregnancy,on,side in hindi +abortion,"('abortion pill effects on future pregnancy', 'abortion pill side effects future pregnancy')",abortion pill effects on future pregnancy,abortion pill side effects future pregnancy,6,3,google,2026-03-12 19:35:23.796486,abortion pill side effects,abortion pill side effects future pregnancy,on,side +abortion,"('abortion pill effects on future pregnancy', 'abortion pill side effects future pregnancy in english')",abortion pill effects on future pregnancy,abortion pill side effects future pregnancy in english,7,3,google,2026-03-12 19:35:23.796486,abortion pill side effects,abortion pill side effects future pregnancy,on,side in english +abortion,"('abortion pill effects on future pregnancy', 'does abortion pill affect future pregnancy')",abortion pill effects on future pregnancy,does abortion pill affect future pregnancy,8,3,google,2026-03-12 19:35:23.796486,abortion pill side effects,abortion pill side effects future pregnancy,on,does affect +abortion,"('abortion pill effects on future pregnancy', 'morning after pill side effects future pregnancy')",abortion pill effects on future pregnancy,morning after pill side effects future pregnancy,9,3,google,2026-03-12 19:35:23.796486,abortion pill side effects,abortion pill side effects future pregnancy,on,morning after side +abortion,"('abortion pill affect future pregnancy', 'abortion pill effects future pregnancy')",abortion pill affect future pregnancy,abortion pill effects future pregnancy,1,3,google,2026-03-12 19:35:24.899530,abortion pill side effects,abortion pill side effects future pregnancy,affect,effects +abortion,"('abortion pill affect future pregnancy', 'morning after pill affect future pregnancy')",abortion pill affect future pregnancy,morning after pill affect future pregnancy,2,3,google,2026-03-12 19:35:24.899530,abortion pill side effects,abortion pill side effects future pregnancy,affect,morning after +abortion,"('abortion pill affect future pregnancy', 'does abortion pill affect future pregnancy')",abortion pill affect future pregnancy,does abortion pill affect future pregnancy,3,3,google,2026-03-12 19:35:24.899530,abortion pill side effects,abortion pill side effects future pregnancy,affect,does +abortion,"('abortion pill affect future pregnancy', 'will abortion pill affect future pregnancy')",abortion pill affect future pregnancy,will abortion pill affect future pregnancy,4,3,google,2026-03-12 19:35:24.899530,abortion pill side effects,abortion pill side effects future pregnancy,affect,will +abortion,"('abortion pill affect future pregnancy', 'does abortion pill affect future pregnancy quora')",abortion pill affect future pregnancy,does abortion pill affect future pregnancy quora,5,3,google,2026-03-12 19:35:24.899530,abortion pill side effects,abortion pill side effects future pregnancy,affect,does quora +abortion,"('abortion pill affect future pregnancy', 'morning after pill affect future fertility')",abortion pill affect future pregnancy,morning after pill affect future fertility,6,3,google,2026-03-12 19:35:24.899530,abortion pill side effects,abortion pill side effects future pregnancy,affect,morning after fertility +abortion,"('abortion pill affect future pregnancy', 'abortion pill side effects future pregnancy')",abortion pill affect future pregnancy,abortion pill side effects future pregnancy,7,3,google,2026-03-12 19:35:24.899530,abortion pill side effects,abortion pill side effects future pregnancy,affect,side effects +abortion,"('abortion pill affect future pregnancy', 'abortion pill side effects future pregnancy in english')",abortion pill affect future pregnancy,abortion pill side effects future pregnancy in english,8,3,google,2026-03-12 19:35:24.899530,abortion pill side effects,abortion pill side effects future pregnancy,affect,side effects in english +abortion,"('abortion pill affect future pregnancy', 'will morning after pill affect future pregnancy')",abortion pill affect future pregnancy,will morning after pill affect future pregnancy,9,3,google,2026-03-12 19:35:24.899530,abortion pill side effects,abortion pill side effects future pregnancy,affect,will morning after +abortion,"('morning after pill side effects mentally', 'morning after pill side effects emotional')",morning after pill side effects mentally,morning after pill side effects emotional,1,3,google,2026-03-12 19:35:26.012332,abortion pill side effects,abortion pill side effects mentally,morning after,emotional +abortion,"('morning after pill side effects mentally', 'morning after pill psychological side effects')",morning after pill side effects mentally,morning after pill psychological side effects,2,3,google,2026-03-12 19:35:26.012332,abortion pill side effects,abortion pill side effects mentally,morning after,psychological +abortion,"('morning after pill side effects mentally', 'morning after pill emotional side effects reddit')",morning after pill side effects mentally,morning after pill emotional side effects reddit,3,3,google,2026-03-12 19:35:26.012332,abortion pill side effects,abortion pill side effects mentally,morning after,emotional reddit +abortion,"('morning after pill side effects mentally', 'can the morning after pill affect your mood')",morning after pill side effects mentally,can the morning after pill affect your mood,4,3,google,2026-03-12 19:35:26.012332,abortion pill side effects,abortion pill side effects mentally,morning after,can the affect your mood +abortion,"('morning after pill side effects mentally', 'side effects of plan b mentally')",morning after pill side effects mentally,side effects of plan b mentally,5,3,google,2026-03-12 19:35:26.012332,abortion pill side effects,abortion pill side effects mentally,morning after,of plan b +abortion,"('morning after pill side effects mentally', 'how long does morning after pills side effects last')",morning after pill side effects mentally,how long does morning after pills side effects last,6,3,google,2026-03-12 19:35:26.012332,abortion pill side effects,abortion pill side effects mentally,morning after,how long does pills last +abortion,"('morning after pill side effects mentally', 'morning after pill depression anxiety')",morning after pill side effects mentally,morning after pill depression anxiety,7,3,google,2026-03-12 19:35:26.012332,abortion pill side effects,abortion pill side effects mentally,morning after,depression anxiety +abortion,"('abortion pill side effects emotional', 'morning after pill side effects emotional')",abortion pill side effects emotional,morning after pill side effects emotional,1,3,google,2026-03-12 19:35:27.206203,abortion pill side effects,abortion pill side effects mentally,emotional,morning after +abortion,"('abortion pill side effects emotional', 'abortion pill side effects mood')",abortion pill side effects emotional,abortion pill side effects mood,2,3,google,2026-03-12 19:35:27.206203,abortion pill side effects,abortion pill side effects mentally,emotional,mood +abortion,"('abortion pill side effects emotional', 'morning after pill side effects mood')",abortion pill side effects emotional,morning after pill side effects mood,3,3,google,2026-03-12 19:35:27.206203,abortion pill side effects,abortion pill side effects mentally,emotional,morning after mood +abortion,"('abortion pill side effects emotional', 'morning after pill side effects mood swings')",abortion pill side effects emotional,morning after pill side effects mood swings,4,3,google,2026-03-12 19:35:27.206203,abortion pill side effects,abortion pill side effects mentally,emotional,morning after mood swings +abortion,"('abortion pill side effects emotional', 'morning after pill side effects depression')",abortion pill side effects emotional,morning after pill side effects depression,5,3,google,2026-03-12 19:35:27.206203,abortion pill side effects,abortion pill side effects mentally,emotional,morning after depression +abortion,"('abortion pill side effects emotional', 'morning after pill side effects mental health')",abortion pill side effects emotional,morning after pill side effects mental health,6,3,google,2026-03-12 19:35:27.206203,abortion pill side effects,abortion pill side effects mentally,emotional,morning after mental health +abortion,"('abortion pill side effects emotional', 'morning after pill side effects low mood')",abortion pill side effects emotional,morning after pill side effects low mood,7,3,google,2026-03-12 19:35:27.206203,abortion pill side effects,abortion pill side effects mentally,emotional,morning after low mood +abortion,"('abortion pill side effects emotional', 'abortion side effects future pregnancy')",abortion pill side effects emotional,abortion side effects future pregnancy,8,3,google,2026-03-12 19:35:27.206203,abortion pill side effects,abortion pill side effects mentally,emotional,future pregnancy +abortion,"('abortion pill side effects emotional', 'abortion pill side effects future pregnancy')",abortion pill side effects emotional,abortion pill side effects future pregnancy,9,3,google,2026-03-12 19:35:27.206203,abortion pill side effects,abortion pill side effects mentally,emotional,future pregnancy +abortion,"('morning after pill side effects emotional', 'morning after pill side effects mood')",morning after pill side effects emotional,morning after pill side effects mood,1,3,google,2026-03-12 19:35:28.535299,abortion pill side effects,abortion pill side effects mentally,morning after emotional,mood +abortion,"('morning after pill side effects emotional', 'morning after pill side effects mood swings')",morning after pill side effects emotional,morning after pill side effects mood swings,2,3,google,2026-03-12 19:35:28.535299,abortion pill side effects,abortion pill side effects mentally,morning after emotional,mood swings +abortion,"('morning after pill side effects emotional', 'morning after pill side effects depression')",morning after pill side effects emotional,morning after pill side effects depression,3,3,google,2026-03-12 19:35:28.535299,abortion pill side effects,abortion pill side effects mentally,morning after emotional,depression +abortion,"('morning after pill side effects emotional', 'morning after pill side effects mental health')",morning after pill side effects emotional,morning after pill side effects mental health,4,3,google,2026-03-12 19:35:28.535299,abortion pill side effects,abortion pill side effects mentally,morning after emotional,mental health +abortion,"('morning after pill side effects emotional', 'morning after pill side effects low mood')",morning after pill side effects emotional,morning after pill side effects low mood,5,3,google,2026-03-12 19:35:28.535299,abortion pill side effects,abortion pill side effects mentally,morning after emotional,low mood +abortion,"('morning after pill side effects emotional', 'morning after pill emotional side effects reddit')",morning after pill side effects emotional,morning after pill emotional side effects reddit,6,3,google,2026-03-12 19:35:28.535299,abortion pill side effects,abortion pill side effects mentally,morning after emotional,reddit +abortion,"('morning after pill side effects emotional', 'plan b pill side effects emotional')",morning after pill side effects emotional,plan b pill side effects emotional,7,3,google,2026-03-12 19:35:28.535299,abortion pill side effects,abortion pill side effects mentally,morning after emotional,plan b +abortion,"('morning after pill side effects emotional', 'morning after pill psychological side effects')",morning after pill side effects emotional,morning after pill psychological side effects,8,3,google,2026-03-12 19:35:28.535299,abortion pill side effects,abortion pill side effects mentally,morning after emotional,psychological +abortion,"('morning after pill side effects emotional', 'does the morning after pill make you emotional')",morning after pill side effects emotional,does the morning after pill make you emotional,9,3,google,2026-03-12 19:35:28.535299,abortion pill side effects,abortion pill side effects mentally,morning after emotional,does the make you +abortion,"('mental health side effects of abortion', 'negative mental health effects of abortion')",mental health side effects of abortion,negative mental health effects of abortion,1,3,google,2026-03-12 19:35:29.743564,abortion pill side effects,abortion pill side effects mentally,mental health of,negative +abortion,"('mental health side effects of abortion', 'psychological side effects of abortion')",mental health side effects of abortion,psychological side effects of abortion,2,3,google,2026-03-12 19:35:29.743564,abortion pill side effects,abortion pill side effects mentally,mental health of,psychological +abortion,"('mental health side effects of abortion', 'mental health risks of abortion')",mental health side effects of abortion,mental health risks of abortion,3,3,google,2026-03-12 19:35:29.743564,abortion pill side effects,abortion pill side effects mentally,mental health of,risks +abortion,"('mental health side effects of abortion', 'mental health affects of abortion')",mental health side effects of abortion,mental health affects of abortion,4,3,google,2026-03-12 19:35:29.743564,abortion pill side effects,abortion pill side effects mentally,mental health of,affects +abortion,"('mental health side effects of abortion', 'long term effects of abortion')",mental health side effects of abortion,long term effects of abortion,5,3,google,2026-03-12 19:35:29.743564,abortion pill side effects,abortion pill side effects mentally,mental health of,long term +abortion,"('mental health side effects of abortion', 'abortion effects on health')",mental health side effects of abortion,abortion effects on health,6,3,google,2026-03-12 19:35:29.743564,abortion pill side effects,abortion pill side effects mentally,mental health of,on +abortion,"('mental health side effects of abortion', 'mental side effects of abortion')",mental health side effects of abortion,mental side effects of abortion,7,3,google,2026-03-12 19:35:29.743564,abortion pill side effects,abortion pill side effects mentally,mental health of,mental health of +abortion,"('abortion side effects mentally', 'abortion after effects mentally')",abortion side effects mentally,abortion after effects mentally,1,3,google,2026-03-12 19:35:31.235087,abortion pill side effects,abortion pill side effects mentally,mentally,after +abortion,"('abortion side effects mentally', 'abortion side effects mental health')",abortion side effects mentally,abortion side effects mental health,2,3,google,2026-03-12 19:35:31.235087,abortion pill side effects,abortion pill side effects mentally,mentally,mental health +abortion,"('abortion side effects mentally', 'abortion side effects emotionally')",abortion side effects mentally,abortion side effects emotionally,3,3,google,2026-03-12 19:35:31.235087,abortion pill side effects,abortion pill side effects mentally,mentally,emotionally +abortion,"('abortion side effects mentally', 'abortion pill side effects mentally')",abortion side effects mentally,abortion pill side effects mentally,4,3,google,2026-03-12 19:35:31.235087,abortion pill side effects,abortion pill side effects mentally,mentally,pill +abortion,"('abortion side effects mentally', 'abortion pill side effects emotional')",abortion side effects mentally,abortion pill side effects emotional,5,3,google,2026-03-12 19:35:31.235087,abortion pill side effects,abortion pill side effects mentally,mentally,pill emotional +abortion,"('abortion side effects mentally', 'abortion side effects future pregnancy')",abortion side effects mentally,abortion side effects future pregnancy,6,3,google,2026-03-12 19:35:31.235087,abortion pill side effects,abortion pill side effects mentally,mentally,future pregnancy +abortion,"('abortion side effects mentally', 'after abortion psychological effects')",abortion side effects mentally,after abortion psychological effects,7,3,google,2026-03-12 19:35:31.235087,abortion pill side effects,abortion pill side effects mentally,mentally,after psychological +abortion,"('abortion side effects mentally', 'abortion effects on health')",abortion side effects mentally,abortion effects on health,8,3,google,2026-03-12 19:35:31.235087,abortion pill side effects,abortion pill side effects mentally,mentally,on health +abortion,"('abortion side effects mentally', 'long term effects of abortion')",abortion side effects mentally,long term effects of abortion,9,3,google,2026-03-12 19:35:31.235087,abortion pill side effects,abortion pill side effects mentally,mentally,long term of +abortion,"('morning after pill side effects days later', 'morning after pill side effects weeks later')",morning after pill side effects days later,morning after pill side effects weeks later,1,3,google,2026-03-12 19:35:32.051926,abortion pill side effects,abortion pill side effects how many days,morning after later,weeks +abortion,"('morning after pill side effects days later', 'morning after pill side effects 3 days later')",morning after pill side effects days later,morning after pill side effects 3 days later,2,3,google,2026-03-12 19:35:32.051926,abortion pill side effects,abortion pill side effects how many days,morning after later,3 +abortion,"('morning after pill side effects days later', 'morning after pill side effects 2 days later')",morning after pill side effects days later,morning after pill side effects 2 days later,3,3,google,2026-03-12 19:35:32.051926,abortion pill side effects,abortion pill side effects how many days,morning after later,2 +abortion,"('morning after pill side effects days later', 'morning after pill side effects 4 days later')",morning after pill side effects days later,morning after pill side effects 4 days later,4,3,google,2026-03-12 19:35:32.051926,abortion pill side effects,abortion pill side effects how many days,morning after later,4 +abortion,"('morning after pill side effects days later', 'morning after pill side effects 2 weeks later')",morning after pill side effects days later,morning after pill side effects 2 weeks later,5,3,google,2026-03-12 19:35:32.051926,abortion pill side effects,abortion pill side effects how many days,morning after later,2 weeks +abortion,"('morning after pill side effects days later', 'morning after pill side effects 3 weeks later')",morning after pill side effects days later,morning after pill side effects 3 weeks later,6,3,google,2026-03-12 19:35:32.051926,abortion pill side effects,abortion pill side effects how many days,morning after later,3 weeks +abortion,"('morning after pill side effects days later', 'side effects of morning after pill 5 days later')",morning after pill side effects days later,side effects of morning after pill 5 days later,7,3,google,2026-03-12 19:35:32.051926,abortion pill side effects,abortion pill side effects how many days,morning after later,of 5 +abortion,"('morning after pill side effects days later', 'how many days do morning after pill side effects last')",morning after pill side effects days later,how many days do morning after pill side effects last,8,3,google,2026-03-12 19:35:32.051926,abortion pill side effects,abortion pill side effects how many days,morning after later,how many do last +abortion,"('morning after pill side effects days later', 'morning after pill side effects menstrual cycle')",morning after pill side effects days later,morning after pill side effects menstrual cycle,9,3,google,2026-03-12 19:35:32.051926,abortion pill side effects,abortion pill side effects how many days,morning after later,menstrual cycle +abortion,"('morning after pill side effects days', 'morning after pill side effects days later')",morning after pill side effects days,morning after pill side effects days later,1,3,google,2026-03-12 19:35:33.434051,abortion pill side effects,abortion pill side effects how many days,morning after,later +abortion,"('morning after pill side effects days', 'morning after pill side effects day 2')",morning after pill side effects days,morning after pill side effects day 2,2,3,google,2026-03-12 19:35:33.434051,abortion pill side effects,abortion pill side effects how many days,morning after,day 2 +abortion,"('morning after pill side effects days', 'morning after pill side effects 3 days later')",morning after pill side effects days,morning after pill side effects 3 days later,3,3,google,2026-03-12 19:35:33.434051,abortion pill side effects,abortion pill side effects how many days,morning after,3 later +abortion,"('morning after pill side effects days', 'morning after pill side effects 2 days later')",morning after pill side effects days,morning after pill side effects 2 days later,4,3,google,2026-03-12 19:35:33.434051,abortion pill side effects,abortion pill side effects how many days,morning after,2 later +abortion,"('morning after pill side effects days', 'morning after pill side effects 4 days later')",morning after pill side effects days,morning after pill side effects 4 days later,5,3,google,2026-03-12 19:35:33.434051,abortion pill side effects,abortion pill side effects how many days,morning after,4 later +abortion,"('morning after pill side effects days', 'morning after pill side effects after 5 days')",morning after pill side effects days,morning after pill side effects after 5 days,6,3,google,2026-03-12 19:35:33.434051,abortion pill side effects,abortion pill side effects how many days,morning after,5 +abortion,"('morning after pill side effects days', 'morning after pill side effects next day')",morning after pill side effects days,morning after pill side effects next day,7,3,google,2026-03-12 19:35:33.434051,abortion pill side effects,abortion pill side effects how many days,morning after,next day +abortion,"('morning after pill side effects days', 'how many days do morning after pill side effects last')",morning after pill side effects days,how many days do morning after pill side effects last,8,3,google,2026-03-12 19:35:33.434051,abortion pill side effects,abortion pill side effects how many days,morning after,how many do last +abortion,"('morning after pill side effects days', 'how long does morning after pills side effects last')",morning after pill side effects days,how long does morning after pills side effects last,9,3,google,2026-03-12 19:35:33.434051,abortion pill side effects,abortion pill side effects how many days,morning after,how long does pills last +abortion,"('how long do side effects of abortion pills last', 'how long do symptoms of abortion pills last')",how long do side effects of abortion pills last,how long do symptoms of abortion pills last,1,3,google,2026-03-12 19:35:34.273363,abortion pill side effects,abortion pill side effects how many days,long do of pills last,symptoms +abortion,"('how long do side effects of abortion pills last', 'what are the long term side effects of abortion pills')",how long do side effects of abortion pills last,what are the long term side effects of abortion pills,2,3,google,2026-03-12 19:35:34.273363,abortion pill side effects,abortion pill side effects how many days,long do of pills last,what are the term +abortion,"('bleeding 5 weeks after abortion pill', 'still bleeding 5 weeks after abortion pill')",bleeding 5 weeks after abortion pill,still bleeding 5 weeks after abortion pill,1,3,google,2026-03-12 19:35:35.601920,abortion pill side effects,abortion pill side effects 5 weeks,bleeding after,still +abortion,"('bleeding 5 weeks after abortion pill', 'heavy bleeding 5 weeks after abortion pill')",bleeding 5 weeks after abortion pill,heavy bleeding 5 weeks after abortion pill,2,3,google,2026-03-12 19:35:35.601920,abortion pill side effects,abortion pill side effects 5 weeks,bleeding after,heavy +abortion,"('bleeding 5 weeks after abortion pill', 'is it normal to bleed 5 weeks after abortion pill')",bleeding 5 weeks after abortion pill,is it normal to bleed 5 weeks after abortion pill,3,3,google,2026-03-12 19:35:35.601920,abortion pill side effects,abortion pill side effects 5 weeks,bleeding after,is it normal to bleed +abortion,"('bleeding 5 weeks after abortion pill', 'bleeding 5 weeks after abortion')",bleeding 5 weeks after abortion pill,bleeding 5 weeks after abortion,4,3,google,2026-03-12 19:35:35.601920,abortion pill side effects,abortion pill side effects 5 weeks,bleeding after,bleeding after +abortion,"('bleeding 5 weeks after abortion pill', 'spotting 5 weeks after abortion')",bleeding 5 weeks after abortion pill,spotting 5 weeks after abortion,5,3,google,2026-03-12 19:35:35.601920,abortion pill side effects,abortion pill side effects 5 weeks,bleeding after,spotting +abortion,"('bleeding 5 weeks after abortion pill', 'bleeding 5 weeks after misoprostol')",bleeding 5 weeks after abortion pill,bleeding 5 weeks after misoprostol,6,3,google,2026-03-12 19:35:35.601920,abortion pill side effects,abortion pill side effects 5 weeks,bleeding after,misoprostol +abortion,"('bleeding 5 weeks after abortion pill', 'bleeding 5 days after abortion')",bleeding 5 weeks after abortion pill,bleeding 5 days after abortion,7,3,google,2026-03-12 19:35:35.601920,abortion pill side effects,abortion pill side effects 5 weeks,bleeding after,days +abortion,"('bleeding 5 weeks after abortion pill', 'bleeding 5 days after misoprostol')",bleeding 5 weeks after abortion pill,bleeding 5 days after misoprostol,8,3,google,2026-03-12 19:35:35.601920,abortion pill side effects,abortion pill side effects 5 weeks,bleeding after,days misoprostol +abortion,"('bleeding 5 days after abortion pill', 'bleeding 5 days after morning after pill')",bleeding 5 days after abortion pill,bleeding 5 days after morning after pill,1,3,google,2026-03-12 19:35:37.085979,abortion pill side effects,abortion pill side effects 5 weeks,bleeding days after,morning +abortion,"('bleeding 5 days after abortion pill', 'spotting 5 days after morning after pill')",bleeding 5 days after abortion pill,spotting 5 days after morning after pill,2,3,google,2026-03-12 19:35:37.085979,abortion pill side effects,abortion pill side effects 5 weeks,bleeding days after,spotting morning +abortion,"('bleeding 5 days after abortion pill', 'heavy bleeding 5 days after abortion pill')",bleeding 5 days after abortion pill,heavy bleeding 5 days after abortion pill,3,3,google,2026-03-12 19:35:37.085979,abortion pill side effects,abortion pill side effects 5 weeks,bleeding days after,heavy +abortion,"('bleeding 5 days after abortion pill', 'still bleeding 5 days after abortion pill')",bleeding 5 days after abortion pill,still bleeding 5 days after abortion pill,4,3,google,2026-03-12 19:35:37.085979,abortion pill side effects,abortion pill side effects 5 weeks,bleeding days after,still +abortion,"('bleeding 5 days after abortion pill', 'light bleeding 5 days after morning after pill')",bleeding 5 days after abortion pill,light bleeding 5 days after morning after pill,5,3,google,2026-03-12 19:35:37.085979,abortion pill side effects,abortion pill side effects 5 weeks,bleeding days after,light morning +abortion,"('bleeding 5 days after abortion pill', 'heavy bleeding 5 days after morning after pill')",bleeding 5 days after abortion pill,heavy bleeding 5 days after morning after pill,6,3,google,2026-03-12 19:35:37.085979,abortion pill side effects,abortion pill side effects 5 weeks,bleeding days after,heavy morning +abortion,"('bleeding 5 days after abortion pill', 'brown blood 5 days after morning after pill')",bleeding 5 days after abortion pill,brown blood 5 days after morning after pill,7,3,google,2026-03-12 19:35:37.085979,abortion pill side effects,abortion pill side effects 5 weeks,bleeding days after,brown blood morning +abortion,"('bleeding 5 days after abortion pill', 'why am i bleeding 5 days after morning after pill')",bleeding 5 days after abortion pill,why am i bleeding 5 days after morning after pill,8,3,google,2026-03-12 19:35:37.085979,abortion pill side effects,abortion pill side effects 5 weeks,bleeding days after,why am i morning +abortion,"('bleeding 5 days after abortion pill', 'is it normal to stop bleeding 5 days after abortion pill')",bleeding 5 days after abortion pill,is it normal to stop bleeding 5 days after abortion pill,9,3,google,2026-03-12 19:35:37.085979,abortion pill side effects,abortion pill side effects 5 weeks,bleeding days after,is it normal to stop +abortion,"('abortion meaning in pregnancy kannada', 'abortion definition in obstetrics')",abortion meaning in pregnancy kannada,abortion definition in obstetrics,1,3,google,2026-03-12 19:35:38.437634,abortion meaning,abortion meaning in pregnancy,kannada,definition obstetrics +abortion,"('abortion meaning in pregnancy kannada', 'abortion meaning in telugu')",abortion meaning in pregnancy kannada,abortion meaning in telugu,2,3,google,2026-03-12 19:35:38.437634,abortion meaning,abortion meaning in pregnancy,kannada,telugu +abortion,"('abortion meaning in pregnancy kannada', 'abortion meaning in hindi definition')",abortion meaning in pregnancy kannada,abortion meaning in hindi definition,3,3,google,2026-03-12 19:35:38.437634,abortion meaning,abortion meaning in pregnancy,kannada,hindi definition +abortion,"('abortion meaning in pregnancy kannada', 'abortion meaning in sinhala')",abortion meaning in pregnancy kannada,abortion meaning in sinhala,4,3,google,2026-03-12 19:35:38.437634,abortion meaning,abortion meaning in pregnancy,kannada,sinhala +abortion,"('abortion meaning in pregnancy kannada', 'abortion meaning in hebrew')",abortion meaning in pregnancy kannada,abortion meaning in hebrew,5,3,google,2026-03-12 19:35:38.437634,abortion meaning,abortion meaning in pregnancy,kannada,hebrew +abortion,"('abortion meaning in pregnancy kannada', 'abortion meaning in english')",abortion meaning in pregnancy kannada,abortion meaning in english,6,3,google,2026-03-12 19:35:38.437634,abortion meaning,abortion meaning in pregnancy,kannada,english +abortion,"('abortion meaning in pregnancy kannada', 'abortion meaning in simple words')",abortion meaning in pregnancy kannada,abortion meaning in simple words,7,3,google,2026-03-12 19:35:38.437634,abortion meaning,abortion meaning in pregnancy,kannada,simple words +abortion,"('abortion meaning in pregnancy kannada', 'abortion meaning in farsi')",abortion meaning in pregnancy kannada,abortion meaning in farsi,8,3,google,2026-03-12 19:35:38.437634,abortion meaning,abortion meaning in pregnancy,kannada,farsi +abortion,"('abortion meaning in pregnancy kannada', 'abortion matra kannada')",abortion meaning in pregnancy kannada,abortion matra kannada,9,3,google,2026-03-12 19:35:38.437634,abortion meaning,abortion meaning in pregnancy,kannada,matra +abortion,"('abortion meaning in marathi pregnancy', 'missed abortion meaning in marathi pregnancy')",abortion meaning in marathi pregnancy,missed abortion meaning in marathi pregnancy,1,3,google,2026-03-12 19:35:39.869076,abortion meaning,abortion meaning in pregnancy,marathi,missed +abortion,"('abortion meaning in marathi pregnancy', 'abortion meaning in marathi')",abortion meaning in marathi pregnancy,abortion meaning in marathi,2,3,google,2026-03-12 19:35:39.869076,abortion meaning,abortion meaning in pregnancy,marathi,marathi +abortion,"('abortion meaning in marathi pregnancy', 'abortion definition in india')",abortion meaning in marathi pregnancy,abortion definition in india,3,3,google,2026-03-12 19:35:39.869076,abortion meaning,abortion meaning in pregnancy,marathi,definition india +abortion,"('abortion meaning in marathi pregnancy', 'abortion meaning in hindi definition')",abortion meaning in marathi pregnancy,abortion meaning in hindi definition,4,3,google,2026-03-12 19:35:39.869076,abortion meaning,abortion meaning in pregnancy,marathi,hindi definition +abortion,"('abortion meaning in marathi pregnancy', 'meaning of abortion in pregnancy')",abortion meaning in marathi pregnancy,meaning of abortion in pregnancy,5,3,google,2026-03-12 19:35:39.869076,abortion meaning,abortion meaning in pregnancy,marathi,of +abortion,"('abortion meaning in marathi pregnancy', 'abortion definition in obstetrics')",abortion meaning in marathi pregnancy,abortion definition in obstetrics,6,3,google,2026-03-12 19:35:39.869076,abortion meaning,abortion meaning in pregnancy,marathi,definition obstetrics +abortion,"('abortion meaning in marathi pregnancy', 'abortion meaning in marathi translation')",abortion meaning in marathi pregnancy,abortion meaning in marathi translation,7,3,google,2026-03-12 19:35:39.869076,abortion meaning,abortion meaning in pregnancy,marathi,translation +abortion,"('abortion meaning in marathi pregnancy', 'abortion meaning')",abortion meaning in marathi pregnancy,abortion meaning,8,3,google,2026-03-12 19:35:39.869076,abortion meaning,abortion meaning in pregnancy,marathi,marathi +abortion,"('abortion meaning in marathi pregnancy', 'abortion in marathi translation')",abortion meaning in marathi pregnancy,abortion in marathi translation,9,3,google,2026-03-12 19:35:39.869076,abortion meaning,abortion meaning in pregnancy,marathi,translation +abortion,"('complete abortion meaning in pregnancy', 'spontaneous abortion meaning in pregnancy')",complete abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,1,3,google,2026-03-12 19:35:41.203488,abortion meaning,abortion meaning in pregnancy,complete,spontaneous +abortion,"('complete abortion meaning in pregnancy', 'abortion meaning in pregnancy')",complete abortion meaning in pregnancy,abortion meaning in pregnancy,2,3,google,2026-03-12 19:35:41.203488,abortion meaning,abortion meaning in pregnancy,complete,complete +abortion,"('complete abortion meaning in pregnancy', 'abortion meaning in pregnancy kannada')",complete abortion meaning in pregnancy,abortion meaning in pregnancy kannada,3,3,google,2026-03-12 19:35:41.203488,abortion meaning,abortion meaning in pregnancy,complete,kannada +abortion,"('complete abortion meaning in pregnancy', 'what is the meaning of complete abortion')",complete abortion meaning in pregnancy,what is the meaning of complete abortion,4,3,google,2026-03-12 19:35:41.203488,abortion meaning,abortion meaning in pregnancy,complete,what is the of +abortion,"('complete abortion meaning in pregnancy', 'what are signs of a complete abortion')",complete abortion meaning in pregnancy,what are signs of a complete abortion,5,3,google,2026-03-12 19:35:41.203488,abortion meaning,abortion meaning in pregnancy,complete,what are signs of a +abortion,"('complete abortion meaning in pregnancy', 'complete abortion definition')",complete abortion meaning in pregnancy,complete abortion definition,6,3,google,2026-03-12 19:35:41.203488,abortion meaning,abortion meaning in pregnancy,complete,definition +abortion,"('complete abortion meaning in pregnancy', 'complete abortion vs missed abortion')",complete abortion meaning in pregnancy,complete abortion vs missed abortion,7,3,google,2026-03-12 19:35:41.203488,abortion meaning,abortion meaning in pregnancy,complete,vs missed +abortion,"('complete abortion meaning in pregnancy', 'complete abortion laws')",complete abortion meaning in pregnancy,complete abortion laws,8,3,google,2026-03-12 19:35:41.203488,abortion meaning,abortion meaning in pregnancy,complete,laws +abortion,"('complete abortion meaning in pregnancy', 'complete abortion wikem')",complete abortion meaning in pregnancy,complete abortion wikem,9,3,google,2026-03-12 19:35:41.203488,abortion meaning,abortion meaning in pregnancy,complete,wikem +abortion,"('induced abortion meaning in pregnancy', 'spontaneous abortion meaning in pregnancy')",induced abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,1,3,google,2026-03-12 19:35:42.216712,abortion meaning,abortion meaning in pregnancy,induced,spontaneous +abortion,"('induced abortion meaning in pregnancy', 'what is threatened abortion in pregnancy')",induced abortion meaning in pregnancy,what is threatened abortion in pregnancy,2,3,google,2026-03-12 19:35:42.216712,abortion meaning,abortion meaning in pregnancy,induced,what is threatened +abortion,"('induced abortion meaning in pregnancy', 'what does induced mean in pregnancy')",induced abortion meaning in pregnancy,what does induced mean in pregnancy,3,3,google,2026-03-12 19:35:42.216712,abortion meaning,abortion meaning in pregnancy,induced,what does mean +abortion,"('induced abortion meaning in pregnancy', 'what happens when a pregnant lady is induced')",induced abortion meaning in pregnancy,what happens when a pregnant lady is induced,4,3,google,2026-03-12 19:35:42.216712,abortion meaning,abortion meaning in pregnancy,induced,what happens when a pregnant lady is +abortion,"('induced abortion meaning in pregnancy', 'induced abortion medical definition')",induced abortion meaning in pregnancy,induced abortion medical definition,5,3,google,2026-03-12 19:35:42.216712,abortion meaning,abortion meaning in pregnancy,induced,medical definition +abortion,"('induced abortion meaning in pregnancy', 'induced abortions meaning')",induced abortion meaning in pregnancy,induced abortions meaning,6,3,google,2026-03-12 19:35:42.216712,abortion meaning,abortion meaning in pregnancy,induced,abortions +abortion,"('induced abortion meaning in pregnancy', 'induced abortion definition')",induced abortion meaning in pregnancy,induced abortion definition,7,3,google,2026-03-12 19:35:42.216712,abortion meaning,abortion meaning in pregnancy,induced,definition +abortion,"('induced abortion meaning in pregnancy', 'induced abortion def')",induced abortion meaning in pregnancy,induced abortion def,8,3,google,2026-03-12 19:35:42.216712,abortion meaning,abortion meaning in pregnancy,induced,def +abortion,"('induced abortion meaning in pregnancy', 'induced abortion definition dictionary')",induced abortion meaning in pregnancy,induced abortion definition dictionary,9,3,google,2026-03-12 19:35:42.216712,abortion meaning,abortion meaning in pregnancy,induced,definition dictionary +abortion,"('missed abortion meaning in pregnancy', 'spontaneous abortion meaning in pregnancy')",missed abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,1,3,google,2026-03-12 19:35:43.697473,abortion meaning,abortion meaning in pregnancy,missed,spontaneous +abortion,"('missed abortion meaning in pregnancy', 'incomplete abortion meaning in pregnancy')",missed abortion meaning in pregnancy,incomplete abortion meaning in pregnancy,2,3,google,2026-03-12 19:35:43.697473,abortion meaning,abortion meaning in pregnancy,missed,incomplete +abortion,"('missed abortion meaning in pregnancy', 'missed abortion meaning in telugu pregnancy')",missed abortion meaning in pregnancy,missed abortion meaning in telugu pregnancy,3,3,google,2026-03-12 19:35:43.697473,abortion meaning,abortion meaning in pregnancy,missed,telugu +abortion,"('missed abortion meaning in pregnancy', 'missed abortion meaning in marathi pregnancy')",missed abortion meaning in pregnancy,missed abortion meaning in marathi pregnancy,4,3,google,2026-03-12 19:35:43.697473,abortion meaning,abortion meaning in pregnancy,missed,marathi +abortion,"('missed abortion meaning in pregnancy', 'missed abortion means in pregnancy in hindi')",missed abortion meaning in pregnancy,missed abortion means in pregnancy in hindi,5,3,google,2026-03-12 19:35:43.697473,abortion meaning,abortion meaning in pregnancy,missed,means hindi +abortion,"('missed abortion meaning in pregnancy', 'what does missed ab mean in pregnancy')",missed abortion meaning in pregnancy,what does missed ab mean in pregnancy,6,3,google,2026-03-12 19:35:43.697473,abortion meaning,abortion meaning in pregnancy,missed,what does ab mean +abortion,"('missed abortion meaning in pregnancy', 'incomplete abortion meaning tagalog pregnancy')",missed abortion meaning in pregnancy,incomplete abortion meaning tagalog pregnancy,7,3,google,2026-03-12 19:35:43.697473,abortion meaning,abortion meaning in pregnancy,missed,incomplete tagalog +abortion,"('missed abortion meaning in pregnancy', 'what does missed abortion mean in pregnancy')",missed abortion meaning in pregnancy,what does missed abortion mean in pregnancy,8,3,google,2026-03-12 19:35:43.697473,abortion meaning,abortion meaning in pregnancy,missed,what does mean +abortion,"('missed abortion meaning in pregnancy', 'what causes missed abortion in early pregnancy')",missed abortion meaning in pregnancy,what causes missed abortion in early pregnancy,9,3,google,2026-03-12 19:35:43.697473,abortion meaning,abortion meaning in pregnancy,missed,what causes early +abortion,"('threatened abortion meaning in pregnancy', 'threatened abortion meaning tagalog pregnancy')",threatened abortion meaning in pregnancy,threatened abortion meaning tagalog pregnancy,1,3,google,2026-03-12 19:35:45.127464,abortion meaning,abortion meaning in pregnancy,threatened,tagalog +abortion,"('threatened abortion meaning in pregnancy', 'what is threatened abortion in pregnancy')",threatened abortion meaning in pregnancy,what is threatened abortion in pregnancy,2,3,google,2026-03-12 19:35:45.127464,abortion meaning,abortion meaning in pregnancy,threatened,what is +abortion,"('threatened abortion meaning in pregnancy', 'what is a threatened miscarriage')",threatened abortion meaning in pregnancy,what is a threatened miscarriage,3,3,google,2026-03-12 19:35:45.127464,abortion meaning,abortion meaning in pregnancy,threatened,what is a miscarriage +abortion,"('threatened abortion meaning in pregnancy', 'what is threatened abortion')",threatened abortion meaning in pregnancy,what is threatened abortion,4,3,google,2026-03-12 19:35:45.127464,abortion meaning,abortion meaning in pregnancy,threatened,what is +abortion,"('threatened abortion meaning in pregnancy', 'what is a threatened pregnancy')",threatened abortion meaning in pregnancy,what is a threatened pregnancy,5,3,google,2026-03-12 19:35:45.127464,abortion meaning,abortion meaning in pregnancy,threatened,what is a +abortion,"('threatened abortion meaning in pregnancy', 'whats a threatened miscarriage')",threatened abortion meaning in pregnancy,whats a threatened miscarriage,6,3,google,2026-03-12 19:35:45.127464,abortion meaning,abortion meaning in pregnancy,threatened,whats a miscarriage +abortion,"('threatened abortion meaning in pregnancy', 'threatened abortion in early pregnancy')",threatened abortion meaning in pregnancy,threatened abortion in early pregnancy,7,3,google,2026-03-12 19:35:45.127464,abortion meaning,abortion meaning in pregnancy,threatened,early +abortion,"('threatened abortion meaning in pregnancy', 'threatened abortion in first trimester')",threatened abortion meaning in pregnancy,threatened abortion in first trimester,8,3,google,2026-03-12 19:35:45.127464,abortion meaning,abortion meaning in pregnancy,threatened,first trimester +abortion,"('threatened abortion meaning in pregnancy', 'threatened abortion medical term')",threatened abortion meaning in pregnancy,threatened abortion medical term,9,3,google,2026-03-12 19:35:45.127464,abortion meaning,abortion meaning in pregnancy,threatened,medical term +abortion,"('spontaneous abortion meaning in pregnancy', 'induced abortion meaning in pregnancy')",spontaneous abortion meaning in pregnancy,induced abortion meaning in pregnancy,1,3,google,2026-03-12 19:35:46.157072,abortion meaning,abortion meaning in pregnancy,spontaneous,induced +abortion,"('spontaneous abortion meaning in pregnancy', 'what is a spontaneous abortion mean')",spontaneous abortion meaning in pregnancy,what is a spontaneous abortion mean,2,3,google,2026-03-12 19:35:46.157072,abortion meaning,abortion meaning in pregnancy,spontaneous,what is a mean +abortion,"('spontaneous abortion meaning in pregnancy', 'what is the definition of spontaneous abortion')",spontaneous abortion meaning in pregnancy,what is the definition of spontaneous abortion,3,3,google,2026-03-12 19:35:46.157072,abortion meaning,abortion meaning in pregnancy,spontaneous,what is the definition of +abortion,"('spontaneous abortion meaning in pregnancy', 'is spontaneous abortion the same as miscarriage')",spontaneous abortion meaning in pregnancy,is spontaneous abortion the same as miscarriage,4,3,google,2026-03-12 19:35:46.157072,abortion meaning,abortion meaning in pregnancy,spontaneous,is the same as miscarriage +abortion,"('spontaneous abortion meaning in pregnancy', 'spontaneous abortion medical definition')",spontaneous abortion meaning in pregnancy,spontaneous abortion medical definition,5,3,google,2026-03-12 19:35:46.157072,abortion meaning,abortion meaning in pregnancy,spontaneous,medical definition +abortion,"('spontaneous abortion meaning in pregnancy', 'spontaneous abortion vs induced abortion')",spontaneous abortion meaning in pregnancy,spontaneous abortion vs induced abortion,6,3,google,2026-03-12 19:35:46.157072,abortion meaning,abortion meaning in pregnancy,spontaneous,vs induced +abortion,"('spontaneous abortion meaning in pregnancy', 'spontaneous abortion or miscarriage definition')",spontaneous abortion meaning in pregnancy,spontaneous abortion or miscarriage definition,7,3,google,2026-03-12 19:35:46.157072,abortion meaning,abortion meaning in pregnancy,spontaneous,or miscarriage definition +abortion,"('abortion meaning in pregnancy in hindi', 'missed abortion means in pregnancy in hindi')",abortion meaning in pregnancy in hindi,missed abortion means in pregnancy in hindi,1,3,google,2026-03-12 19:35:46.978593,abortion meaning,abortion meaning in pregnancy,hindi,missed means +abortion,"('abortion meaning in pregnancy in hindi', 'abortion meaning in hindi definition')",abortion meaning in pregnancy in hindi,abortion meaning in hindi definition,2,3,google,2026-03-12 19:35:46.978593,abortion meaning,abortion meaning in pregnancy,hindi,definition +abortion,"('abortion meaning in pregnancy in hindi', 'abortion meaning in sinhala')",abortion meaning in pregnancy in hindi,abortion meaning in sinhala,3,3,google,2026-03-12 19:35:46.978593,abortion meaning,abortion meaning in pregnancy,hindi,sinhala +abortion,"('abortion meaning in pregnancy in hindi', 'definition of abortion in ethiopia')",abortion meaning in pregnancy in hindi,definition of abortion in ethiopia,4,3,google,2026-03-12 19:35:46.978593,abortion meaning,abortion meaning in pregnancy,hindi,definition of ethiopia +abortion,"('abortion meaning in pregnancy in hindi', 'meaning of abortion in pregnancy')",abortion meaning in pregnancy in hindi,meaning of abortion in pregnancy,5,3,google,2026-03-12 19:35:46.978593,abortion meaning,abortion meaning in pregnancy,hindi,of +abortion,"('abortion meaning in pregnancy in hindi', 'abortion definition in obstetrics')",abortion meaning in pregnancy in hindi,abortion definition in obstetrics,6,3,google,2026-03-12 19:35:46.978593,abortion meaning,abortion meaning in pregnancy,hindi,definition obstetrics +abortion,"('abortion meaning in pregnancy in hindi', 'abortion meaning in hebrew')",abortion meaning in pregnancy in hindi,abortion meaning in hebrew,7,3,google,2026-03-12 19:35:46.978593,abortion meaning,abortion meaning in pregnancy,hindi,hebrew +abortion,"('abortion meaning in pregnancy in hindi', 'abortion meaning in simple words')",abortion meaning in pregnancy in hindi,abortion meaning in simple words,8,3,google,2026-03-12 19:35:46.978593,abortion meaning,abortion meaning in pregnancy,hindi,simple words +abortion,"('abortion meaning in pregnancy in hindi', 'abortion meaning in farsi')",abortion meaning in pregnancy in hindi,abortion meaning in farsi,9,3,google,2026-03-12 19:35:46.978593,abortion meaning,abortion meaning in pregnancy,hindi,farsi +abortion,"('septic abortion meaning in pregnancy', 'what is threatened abortion in pregnancy')",septic abortion meaning in pregnancy,what is threatened abortion in pregnancy,1,3,google,2026-03-12 19:35:48.009472,abortion meaning,abortion meaning in pregnancy,septic,what is threatened +abortion,"('septic abortion meaning in pregnancy', 'what is sepsis when pregnant')",septic abortion meaning in pregnancy,what is sepsis when pregnant,2,3,google,2026-03-12 19:35:48.009472,abortion meaning,abortion meaning in pregnancy,septic,what is sepsis when pregnant +abortion,"('septic abortion meaning in pregnancy', 'septic abortion means')",septic abortion meaning in pregnancy,septic abortion means,3,3,google,2026-03-12 19:35:48.009472,abortion meaning,abortion meaning in pregnancy,septic,means +abortion,"('septic abortion meaning in pregnancy', 'septic pregnancy abortion')",septic abortion meaning in pregnancy,septic pregnancy abortion,4,3,google,2026-03-12 19:35:48.009472,abortion meaning,abortion meaning in pregnancy,septic,septic +abortion,"('septic abortion meaning in pregnancy', 'septic abortion ultrasound')",septic abortion meaning in pregnancy,septic abortion ultrasound,5,3,google,2026-03-12 19:35:48.009472,abortion meaning,abortion meaning in pregnancy,septic,ultrasound +abortion,"('septic abortion meaning in pregnancy', 'septic pregnancy definition')",septic abortion meaning in pregnancy,septic pregnancy definition,6,3,google,2026-03-12 19:35:48.009472,abortion meaning,abortion meaning in pregnancy,septic,definition +abortion,"('septic abortion meaning in pregnancy', 'septic abortion acog')",septic abortion meaning in pregnancy,septic abortion acog,7,3,google,2026-03-12 19:35:48.009472,abortion meaning,abortion meaning in pregnancy,septic,acog +abortion,"('septic abortion meaning in pregnancy', 'septic abortion symptoms')",septic abortion meaning in pregnancy,septic abortion symptoms,8,3,google,2026-03-12 19:35:48.009472,abortion meaning,abortion meaning in pregnancy,septic,symptoms +abortion,"('abortion meaning in english oxford', 'abortion definition oxford')",abortion meaning in english oxford,abortion definition oxford,1,3,google,2026-03-12 19:35:49.134301,abortion meaning,abortion meaning in english,oxford,definition +abortion,"('abortion meaning in english oxford', 'what is the meaning of abortion in english')",abortion meaning in english oxford,what is the meaning of abortion in english,2,3,google,2026-03-12 19:35:49.134301,abortion meaning,abortion meaning in english,oxford,what is the of +abortion,"('abortion meaning in english oxford', 'oxford dictionary abortion')",abortion meaning in english oxford,oxford dictionary abortion,3,3,google,2026-03-12 19:35:49.134301,abortion meaning,abortion meaning in english,oxford,dictionary +abortion,"('abortion meaning in english oxford', 'oxford dictionary definition of abortion')",abortion meaning in english oxford,oxford dictionary definition of abortion,4,3,google,2026-03-12 19:35:49.134301,abortion meaning,abortion meaning in english,oxford,dictionary definition of +abortion,"('abortion meaning in english grammar', 'what is the meaning of abortion in english')",abortion meaning in english grammar,what is the meaning of abortion in english,1,3,google,2026-03-12 19:35:49.952378,abortion meaning,abortion meaning in english,grammar,what is the of +abortion,"('abortion meaning in english grammar', 'abortion meaning in telugu')",abortion meaning in english grammar,abortion meaning in telugu,2,3,google,2026-03-12 19:35:49.952378,abortion meaning,abortion meaning in english,grammar,telugu +abortion,"('abortion meaning in english grammar', 'abortion meaning in simple words')",abortion meaning in english grammar,abortion meaning in simple words,3,3,google,2026-03-12 19:35:49.952378,abortion meaning,abortion meaning in english,grammar,simple words +abortion,"('abortion meaning in english grammar', 'abortion meaning in farsi')",abortion meaning in english grammar,abortion meaning in farsi,4,3,google,2026-03-12 19:35:49.952378,abortion meaning,abortion meaning in english,grammar,farsi +abortion,"('abortion meaning in english grammar', 'abortion meaning easy')",abortion meaning in english grammar,abortion meaning easy,5,3,google,2026-03-12 19:35:49.952378,abortion meaning,abortion meaning in english,grammar,easy +abortion,"('abortion meaning in english grammar', 'abortion in english grammar')",abortion meaning in english grammar,abortion in english grammar,6,3,google,2026-03-12 19:35:49.952378,abortion meaning,abortion meaning in english,grammar,grammar +abortion,"('abortion meaning in english with example', 'abortion meaning in english')",abortion meaning in english with example,abortion meaning in english,1,3,google,2026-03-12 19:35:51.033060,abortion meaning,abortion meaning in english,with example,with example +abortion,"('abortion meaning in english with example', 'abortion meaning in telugu')",abortion meaning in english with example,abortion meaning in telugu,2,3,google,2026-03-12 19:35:51.033060,abortion meaning,abortion meaning in english,with example,telugu +abortion,"('abortion meaning in english with example', 'abortion meaning in hindi definition')",abortion meaning in english with example,abortion meaning in hindi definition,3,3,google,2026-03-12 19:35:51.033060,abortion meaning,abortion meaning in english,with example,hindi definition +abortion,"('abortion meaning in english with example', 'abortion meaning in simple words')",abortion meaning in english with example,abortion meaning in simple words,4,3,google,2026-03-12 19:35:51.033060,abortion meaning,abortion meaning in english,with example,simple words +abortion,"('abortion meaning in english with example', 'abortion meaning easy')",abortion meaning in english with example,abortion meaning easy,5,3,google,2026-03-12 19:35:51.033060,abortion meaning,abortion meaning in english,with example,easy +abortion,"('abortion meaning in english with example', 'abortion meaning simple')",abortion meaning in english with example,abortion meaning simple,6,3,google,2026-03-12 19:35:51.033060,abortion meaning,abortion meaning in english,with example,simple +abortion,"('abortion meaning in english with example', 'abortion meaning in hebrew')",abortion meaning in english with example,abortion meaning in hebrew,7,3,google,2026-03-12 19:35:51.033060,abortion meaning,abortion meaning in english,with example,hebrew +abortion,"('abort meaning in english synonyms', 'stop meaning in english synonyms')",abort meaning in english synonyms,stop meaning in english synonyms,1,3,google,2026-03-12 19:35:51.862806,abortion meaning,abortion meaning in english,abort synonyms,stop +abortion,"('abort meaning in english synonyms', 'terminate meaning in english synonyms')",abort meaning in english synonyms,terminate meaning in english synonyms,2,3,google,2026-03-12 19:35:51.862806,abortion meaning,abortion meaning in english,abort synonyms,terminate +abortion,"('abort meaning in english synonyms', 'termination meaning in english')",abort meaning in english synonyms,termination meaning in english,3,3,google,2026-03-12 19:35:51.862806,abortion meaning,abortion meaning in english,abort synonyms,termination +abortion,"('abort meaning in english synonyms', 'terminated meaning synonym')",abort meaning in english synonyms,terminated meaning synonym,4,3,google,2026-03-12 19:35:51.862806,abortion meaning,abortion meaning in english,abort synonyms,terminated synonym +abortion,"('abort meaning in english synonyms', 'termination synonyms in english')",abort meaning in english synonyms,termination synonyms in english,5,3,google,2026-03-12 19:35:51.862806,abortion meaning,abortion meaning in english,abort synonyms,termination +abortion,"('abort meaning in english synonyms', 'abort synonyms and antonyms')",abort meaning in english synonyms,abort synonyms and antonyms,6,3,google,2026-03-12 19:35:51.862806,abortion meaning,abortion meaning in english,abort synonyms,and antonyms +abortion,"('abort meaning in english synonyms', 'abort synonyms')",abort meaning in english synonyms,abort synonyms,7,3,google,2026-03-12 19:35:51.862806,abortion meaning,abortion meaning in english,abort synonyms,abort synonyms +abortion,"('abort meaning in english synonyms', 'abort definition english')",abort meaning in english synonyms,abort definition english,8,3,google,2026-03-12 19:35:51.862806,abortion meaning,abortion meaning in english,abort synonyms,definition +abortion,"('abort meaning in english synonyms', 'abort meaning')",abort meaning in english synonyms,abort meaning,9,3,google,2026-03-12 19:35:51.862806,abortion meaning,abortion meaning in english,abort synonyms,abort synonyms +abortion,"('threatened abortion meaning in english', 'inevitable abortion meaning in english')",threatened abortion meaning in english,inevitable abortion meaning in english,1,3,google,2026-03-12 19:35:53.079724,abortion meaning,abortion meaning in english,threatened,inevitable +abortion,"('threatened abortion meaning in english', 'threatened abortion in hindi meaning in english')",threatened abortion meaning in english,threatened abortion in hindi meaning in english,2,3,google,2026-03-12 19:35:53.079724,abortion meaning,abortion meaning in english,threatened,hindi +abortion,"('threatened abortion meaning in english', 'what do you mean by threatened abortion')",threatened abortion meaning in english,what do you mean by threatened abortion,3,3,google,2026-03-12 19:35:53.079724,abortion meaning,abortion meaning in english,threatened,what do you mean by +abortion,"('threatened abortion meaning in english', 'what is threatened abortion')",threatened abortion meaning in english,what is threatened abortion,4,3,google,2026-03-12 19:35:53.079724,abortion meaning,abortion meaning in english,threatened,what is +abortion,"('threatened abortion meaning in english', 'threatened abortion meaning in tamil')",threatened abortion meaning in english,threatened abortion meaning in tamil,5,3,google,2026-03-12 19:35:53.079724,abortion meaning,abortion meaning in english,threatened,tamil +abortion,"('threatened abortion meaning in english', 'threatened abortion medical term')",threatened abortion meaning in english,threatened abortion medical term,6,3,google,2026-03-12 19:35:53.079724,abortion meaning,abortion meaning in english,threatened,medical term +abortion,"('threatened abortion meaning in english', 'threatened abortion definition')",threatened abortion meaning in english,threatened abortion definition,7,3,google,2026-03-12 19:35:53.079724,abortion meaning,abortion meaning in english,threatened,definition +abortion,"('threatened abortion meaning in english', 'threatened abortion in early pregnancy')",threatened abortion meaning in english,threatened abortion in early pregnancy,8,3,google,2026-03-12 19:35:53.079724,abortion meaning,abortion meaning in english,threatened,early pregnancy +abortion,"('threatened abortion meaning in english', 'threatening abortion meaning')",threatened abortion meaning in english,threatening abortion meaning,9,3,google,2026-03-12 19:35:53.079724,abortion meaning,abortion meaning in english,threatened,threatening +abortion,"('spontaneous abortion meaning in english', 'induced abortion meaning in english')",spontaneous abortion meaning in english,induced abortion meaning in english,1,3,google,2026-03-12 19:35:53.925327,abortion meaning,abortion meaning in english,spontaneous,induced +abortion,"('spontaneous abortion meaning in english', 'what is a spontaneous abortion mean')",spontaneous abortion meaning in english,what is a spontaneous abortion mean,2,3,google,2026-03-12 19:35:53.925327,abortion meaning,abortion meaning in english,spontaneous,what is a mean +abortion,"('spontaneous abortion meaning in english', 'what is the definition of spontaneous abortion')",spontaneous abortion meaning in english,what is the definition of spontaneous abortion,3,3,google,2026-03-12 19:35:53.925327,abortion meaning,abortion meaning in english,spontaneous,what is the definition of +abortion,"('spontaneous abortion meaning in english', 'what does a spontaneous abortion mean')",spontaneous abortion meaning in english,what does a spontaneous abortion mean,4,3,google,2026-03-12 19:35:53.925327,abortion meaning,abortion meaning in english,spontaneous,what does a mean +abortion,"('spontaneous abortion meaning in english', 'spontaneous abortion medical definition')",spontaneous abortion meaning in english,spontaneous abortion medical definition,5,3,google,2026-03-12 19:35:53.925327,abortion meaning,abortion meaning in english,spontaneous,medical definition +abortion,"('spontaneous abortion meaning in english', 'spontaneous abortion def')",spontaneous abortion meaning in english,spontaneous abortion def,6,3,google,2026-03-12 19:35:53.925327,abortion meaning,abortion meaning in english,spontaneous,def +abortion,"('spontaneous abortion meaning in english', 'spontaneous abortion synonyms')",spontaneous abortion meaning in english,spontaneous abortion synonyms,7,3,google,2026-03-12 19:35:53.925327,abortion meaning,abortion meaning in english,spontaneous,synonyms +abortion,"('spontaneous abortion meaning in english', 'spontaneous abortion terminology')",spontaneous abortion meaning in english,spontaneous abortion terminology,8,3,google,2026-03-12 19:35:53.925327,abortion meaning,abortion meaning in english,spontaneous,terminology +abortion,"('induced abortion meaning in english', 'spontaneous abortion meaning in english')",induced abortion meaning in english,spontaneous abortion meaning in english,1,3,google,2026-03-12 19:35:55.020161,abortion meaning,abortion meaning in english,induced,spontaneous +abortion,"('induced abortion meaning in english', 'induced abortion meaning')",induced abortion meaning in english,induced abortion meaning,2,3,google,2026-03-12 19:35:55.020161,abortion meaning,abortion meaning in english,induced,induced +abortion,"('induced abortion meaning in english', 'what is the meaning of abortion in english')",induced abortion meaning in english,what is the meaning of abortion in english,3,3,google,2026-03-12 19:35:55.020161,abortion meaning,abortion meaning in english,induced,what is the of +abortion,"('induced abortion meaning in english', 'induced abortion meaning in urdu')",induced abortion meaning in english,induced abortion meaning in urdu,4,3,google,2026-03-12 19:35:55.020161,abortion meaning,abortion meaning in english,induced,urdu +abortion,"('induced abortion meaning in english', 'induced abortion definition dictionary')",induced abortion meaning in english,induced abortion definition dictionary,5,3,google,2026-03-12 19:35:55.020161,abortion meaning,abortion meaning in english,induced,definition dictionary +abortion,"('induced abortion meaning in english', 'induced abortion medical definition')",induced abortion meaning in english,induced abortion medical definition,6,3,google,2026-03-12 19:35:55.020161,abortion meaning,abortion meaning in english,induced,medical definition +abortion,"('induced abortion meaning in english', 'induced abortion def')",induced abortion meaning in english,induced abortion def,7,3,google,2026-03-12 19:35:55.020161,abortion meaning,abortion meaning in english,induced,def +abortion,"('induced abortion meaning in english', 'induced abortion definition')",induced abortion meaning in english,induced abortion definition,8,3,google,2026-03-12 19:35:55.020161,abortion meaning,abortion meaning in english,induced,definition +abortion,"('missed abortion meaning in english', 'spontaneous abortion meaning in english')",missed abortion meaning in english,spontaneous abortion meaning in english,1,3,google,2026-03-12 19:35:55.842167,abortion meaning,abortion meaning in english,missed,spontaneous +abortion,"('missed abortion meaning in english', 'incomplete abortion meaning in english')",missed abortion meaning in english,incomplete abortion meaning in english,2,3,google,2026-03-12 19:35:55.842167,abortion meaning,abortion meaning in english,missed,incomplete +abortion,"('missed abortion meaning in english', 'missed abortion definition')",missed abortion meaning in english,missed abortion definition,3,3,google,2026-03-12 19:35:55.842167,abortion meaning,abortion meaning in english,missed,definition +abortion,"('missed abortion meaning in english', 'what is mean by missed abortion')",missed abortion meaning in english,what is mean by missed abortion,4,3,google,2026-03-12 19:35:55.842167,abortion meaning,abortion meaning in english,missed,what is mean by +abortion,"('missed abortion meaning in english', 'explain missed abortion')",missed abortion meaning in english,explain missed abortion,5,3,google,2026-03-12 19:35:55.842167,abortion meaning,abortion meaning in english,missed,explain +abortion,"('missed abortion meaning in english', 'what does it mean by missed abortion')",missed abortion meaning in english,what does it mean by missed abortion,6,3,google,2026-03-12 19:35:55.842167,abortion meaning,abortion meaning in english,missed,what does it mean by +abortion,"('missed abortion meaning in english', 'missed abortion medical definition')",missed abortion meaning in english,missed abortion medical definition,7,3,google,2026-03-12 19:35:55.842167,abortion meaning,abortion meaning in english,missed,medical definition +abortion,"('missed abortion meaning in english', 'missed abortion medical term')",missed abortion meaning in english,missed abortion medical term,8,3,google,2026-03-12 19:35:55.842167,abortion meaning,abortion meaning in english,missed,medical term +abortion,"('missed abortion meaning in english', 'missed abortion medical abbreviation')",missed abortion meaning in english,missed abortion medical abbreviation,9,3,google,2026-03-12 19:35:55.842167,abortion meaning,abortion meaning in english,missed,medical abbreviation +abortion,"('inevitable abortion meaning in english', 'threatened abortion meaning in english')",inevitable abortion meaning in english,threatened abortion meaning in english,1,3,google,2026-03-12 19:35:57.183761,abortion meaning,abortion meaning in english,inevitable,threatened +abortion,"('inevitable abortion meaning in english', 'missed abortion meaning in english')",inevitable abortion meaning in english,missed abortion meaning in english,2,3,google,2026-03-12 19:35:57.183761,abortion meaning,abortion meaning in english,inevitable,missed +abortion,"('inevitable abortion meaning in english', 'incomplete abortion meaning in english')",inevitable abortion meaning in english,incomplete abortion meaning in english,3,3,google,2026-03-12 19:35:57.183761,abortion meaning,abortion meaning in english,inevitable,incomplete +abortion,"('inevitable abortion meaning in english', 'threatened abortion in hindi meaning in english')",inevitable abortion meaning in english,threatened abortion in hindi meaning in english,4,3,google,2026-03-12 19:35:57.183761,abortion meaning,abortion meaning in english,inevitable,threatened hindi +abortion,"('inevitable abortion meaning in english', 'inevitable abortion definition')",inevitable abortion meaning in english,inevitable abortion definition,5,3,google,2026-03-12 19:35:57.183761,abortion meaning,abortion meaning in english,inevitable,definition +abortion,"('inevitable abortion meaning in english', 'what is the meaning of abortion in english')",inevitable abortion meaning in english,what is the meaning of abortion in english,6,3,google,2026-03-12 19:35:57.183761,abortion meaning,abortion meaning in english,inevitable,what is the of +abortion,"('inevitable abortion meaning in english', 'inevitable.abortion')",inevitable abortion meaning in english,inevitable.abortion,7,3,google,2026-03-12 19:35:57.183761,abortion meaning,abortion meaning in english,inevitable,inevitable.abortion +abortion,"('inevitable abortion meaning in english', 'inevitable abortion vs threatened abortion')",inevitable abortion meaning in english,inevitable abortion vs threatened abortion,8,3,google,2026-03-12 19:35:57.183761,abortion meaning,abortion meaning in english,inevitable,vs threatened +abortion,"('inevitable abortion meaning in english', 'inevitable ab')",inevitable abortion meaning in english,inevitable ab,9,3,google,2026-03-12 19:35:57.183761,abortion meaning,abortion meaning in english,inevitable,ab +abortion,"('abortion meaning for child', 'abortion meaning for kids')",abortion meaning for child,abortion meaning for kids,1,3,google,2026-03-12 19:35:58.142010,abortion meaning,abortion meaning for kids,child,kids +abortion,"('abortion meaning for child', 'abortion meaning in english')",abortion meaning for child,abortion meaning in english,2,3,google,2026-03-12 19:35:58.142010,abortion meaning,abortion meaning for kids,child,in english +abortion,"('abortion meaning for child', 'abortion meaning in simple words')",abortion meaning for child,abortion meaning in simple words,3,3,google,2026-03-12 19:35:58.142010,abortion meaning,abortion meaning for kids,child,in simple words +abortion,"('abortion meaning in simple words', 'what is called abortion')",abortion meaning in simple words,what is called abortion,1,3,google,2026-03-12 19:35:59.175733,abortion meaning,abortion meaning for kids,in simple words,what is called +abortion,"('abortion meaning in simple words', 'abortion meaning simple')",abortion meaning in simple words,abortion meaning simple,2,3,google,2026-03-12 19:35:59.175733,abortion meaning,abortion meaning for kids,in simple words,in simple words +abortion,"('abortion meaning in simple words', 'abortion meaning in english')",abortion meaning in simple words,abortion meaning in english,3,3,google,2026-03-12 19:35:59.175733,abortion meaning,abortion meaning for kids,in simple words,english +abortion,"('abortion meaning in simple words', 'abortion meaning easy')",abortion meaning in simple words,abortion meaning easy,4,3,google,2026-03-12 19:35:59.175733,abortion meaning,abortion meaning for kids,in simple words,easy +abortion,"('abortion baby meaning', 'baby abortion meaning in hindi')",abortion baby meaning,baby abortion meaning in hindi,1,3,google,2026-03-12 19:36:00.524460,abortion meaning,abortion meaning for kids,baby,in hindi +abortion,"('abortion baby meaning', 'baby abortion meaning in english')",abortion baby meaning,baby abortion meaning in english,2,3,google,2026-03-12 19:36:00.524460,abortion meaning,abortion meaning for kids,baby,in english +abortion,"('abortion baby meaning', 'miscarriage baby meaning')",abortion baby meaning,miscarriage baby meaning,3,3,google,2026-03-12 19:36:00.524460,abortion meaning,abortion meaning for kids,baby,miscarriage +abortion,"('abortion baby meaning', 'miscarriage baby meaning in hindi')",abortion baby meaning,miscarriage baby meaning in hindi,4,3,google,2026-03-12 19:36:00.524460,abortion meaning,abortion meaning for kids,baby,miscarriage in hindi +abortion,"('abortion baby meaning', 'miscarriage baby meaning in urdu')",abortion baby meaning,miscarriage baby meaning in urdu,5,3,google,2026-03-12 19:36:00.524460,abortion meaning,abortion meaning for kids,baby,miscarriage in urdu +abortion,"('abortion baby meaning', 'abortion child meaning')",abortion baby meaning,abortion child meaning,6,3,google,2026-03-12 19:36:00.524460,abortion meaning,abortion meaning for kids,baby,child +abortion,"('abortion baby meaning', 'aborted fetus meaning')",abortion baby meaning,aborted fetus meaning,7,3,google,2026-03-12 19:36:00.524460,abortion meaning,abortion meaning for kids,baby,aborted fetus +abortion,"('abortion baby meaning', 'aborted fetus meaning in hindi')",abortion baby meaning,aborted fetus meaning in hindi,8,3,google,2026-03-12 19:36:00.524460,abortion meaning,abortion meaning for kids,baby,aborted fetus in hindi +abortion,"('abortion baby meaning', 'aborted fetus meaning in tamil')",abortion baby meaning,aborted fetus meaning in tamil,9,3,google,2026-03-12 19:36:00.524460,abortion meaning,abortion meaning for kids,baby,aborted fetus in tamil +abortion,"('abortion meaning easy', 'abortion definition easy')",abortion meaning easy,abortion definition easy,1,3,google,2026-03-12 19:36:01.955847,abortion meaning,abortion meaning simple,easy,definition +abortion,"('abortion meaning easy', 'abortion meaning simple')",abortion meaning easy,abortion meaning simple,2,3,google,2026-03-12 19:36:01.955847,abortion meaning,abortion meaning simple,easy,simple +abortion,"('abortion meaning easy', 'anti abortion meaning')",abortion meaning easy,anti abortion meaning,3,3,google,2026-03-12 19:36:01.955847,abortion meaning,abortion meaning simple,easy,anti +abortion,"('abortion meaning easy', 'abortion meaning in simple words')",abortion meaning easy,abortion meaning in simple words,4,3,google,2026-03-12 19:36:01.955847,abortion meaning,abortion meaning simple,easy,in simple words +abortion,"('anti abortion meaning simple', 'anti abortion meaning')",anti abortion meaning simple,anti abortion meaning,1,3,google,2026-03-12 19:36:02.988828,abortion meaning,abortion meaning simple,anti,anti +abortion,"('anti abortion meaning simple', 'anti-abortion meaning example')",anti abortion meaning simple,anti-abortion meaning example,2,3,google,2026-03-12 19:36:02.988828,abortion meaning,abortion meaning simple,anti,anti-abortion example +abortion,"('anti abortion meaning simple', 'anti abortion meaning tagalog')",anti abortion meaning simple,anti abortion meaning tagalog,3,3,google,2026-03-12 19:36:02.988828,abortion meaning,abortion meaning simple,anti,tagalog +abortion,"('anti abortion meaning simple', 'anti-abortion definition simple')",anti abortion meaning simple,anti-abortion definition simple,4,3,google,2026-03-12 19:36:02.988828,abortion meaning,abortion meaning simple,anti,anti-abortion definition +abortion,"('threatened abortion simple meaning', 'what do you mean by threatened abortion')",threatened abortion simple meaning,what do you mean by threatened abortion,1,3,google,2026-03-12 19:36:03.816082,abortion meaning,abortion meaning simple,threatened,what do you mean by +abortion,"('threatened abortion simple meaning', 'what is threatened abortion')",threatened abortion simple meaning,what is threatened abortion,2,3,google,2026-03-12 19:36:03.816082,abortion meaning,abortion meaning simple,threatened,what is +abortion,"('threatened abortion simple meaning', 'what is threatened abortion in pregnancy')",threatened abortion simple meaning,what is threatened abortion in pregnancy,3,3,google,2026-03-12 19:36:03.816082,abortion meaning,abortion meaning simple,threatened,what is in pregnancy +abortion,"('threatened abortion simple meaning', 'types of abortion threatened')",threatened abortion simple meaning,types of abortion threatened,4,3,google,2026-03-12 19:36:03.816082,abortion meaning,abortion meaning simple,threatened,types of +abortion,"('threatened abortion simple meaning', 'threatened abortion definition')",threatened abortion simple meaning,threatened abortion definition,5,3,google,2026-03-12 19:36:03.816082,abortion meaning,abortion meaning simple,threatened,definition +abortion,"('threatened abortion simple meaning', 'threatened abortion medical term')",threatened abortion simple meaning,threatened abortion medical term,6,3,google,2026-03-12 19:36:03.816082,abortion meaning,abortion meaning simple,threatened,medical term +abortion,"('threatened abortion simple meaning', 'threatened abortion vs threatened miscarriage')",threatened abortion simple meaning,threatened abortion vs threatened miscarriage,7,3,google,2026-03-12 19:36:03.816082,abortion meaning,abortion meaning simple,threatened,vs miscarriage +abortion,"('threatened abortion simple meaning', 'threatened abortion vs spontaneous abortion')",threatened abortion simple meaning,threatened abortion vs spontaneous abortion,8,3,google,2026-03-12 19:36:03.816082,abortion meaning,abortion meaning simple,threatened,vs spontaneous +abortion,"('threatened abortion simple meaning', 'threatened abortion vs inevitable abortion')",threatened abortion simple meaning,threatened abortion vs inevitable abortion,9,3,google,2026-03-12 19:36:03.816082,abortion meaning,abortion meaning simple,threatened,vs inevitable +abortion,"('abortion simple terms', 'hyde amendment simple terms')",abortion simple terms,hyde amendment simple terms,1,3,google,2026-03-12 19:36:04.880599,abortion meaning,abortion meaning simple,terms,hyde amendment +abortion,"('abortion simple terms', 'miscarriage simple terms')",abortion simple terms,miscarriage simple terms,2,3,google,2026-03-12 19:36:04.880599,abortion meaning,abortion meaning simple,terms,miscarriage +abortion,"('abortion simple terms', 'abortion simple definition')",abortion simple terms,abortion simple definition,3,3,google,2026-03-12 19:36:04.880599,abortion meaning,abortion meaning simple,terms,definition +abortion,"('abortion simple terms', 'abortion simple explanation')",abortion simple terms,abortion simple explanation,4,3,google,2026-03-12 19:36:04.880599,abortion meaning,abortion meaning simple,terms,explanation +abortion,"('abortion simple terms', 'abortion simple meaning')",abortion simple terms,abortion simple meaning,5,3,google,2026-03-12 19:36:04.880599,abortion meaning,abortion meaning simple,terms,meaning +abortion,"('abortion simple explanation', 'abortion simple definition')",abortion simple explanation,abortion simple definition,1,3,google,2026-03-12 19:36:06.287698,abortion meaning,abortion meaning simple,explanation,definition +abortion,"('abortion simple explanation', 'abortion simple meaning')",abortion simple explanation,abortion simple meaning,2,3,google,2026-03-12 19:36:06.287698,abortion meaning,abortion meaning simple,explanation,meaning +abortion,"('abortion simple explanation', 'abortion simple terms')",abortion simple explanation,abortion simple terms,3,3,google,2026-03-12 19:36:06.287698,abortion meaning,abortion meaning simple,explanation,terms +abortion,"('what does the word abortion mean', 'what does the word abortion mean in greek')",what does the word abortion mean,what does the word abortion mean in greek,1,3,google,2026-03-12 19:36:07.348343,abortion meaning,abortion meaning in hebrew,what does the word mean,in greek +abortion,"('what does the word abortion mean', 'what does the word miscarriage mean')",what does the word abortion mean,what does the word miscarriage mean,2,3,google,2026-03-12 19:36:07.348343,abortion meaning,abortion meaning in hebrew,what does the word mean,miscarriage +abortion,"('what does the word abortion mean', 'what does the term abortion mean')",what does the word abortion mean,what does the term abortion mean,3,3,google,2026-03-12 19:36:07.348343,abortion meaning,abortion meaning in hebrew,what does the word mean,term +abortion,"('what does the word abortion mean', 'what does the term miscarriage mean')",what does the word abortion mean,what does the term miscarriage mean,4,3,google,2026-03-12 19:36:07.348343,abortion meaning,abortion meaning in hebrew,what does the word mean,term miscarriage +abortion,"('what does the word abortion mean', 'what does the term missed abortion mean')",what does the word abortion mean,what does the term missed abortion mean,5,3,google,2026-03-12 19:36:07.348343,abortion meaning,abortion meaning in hebrew,what does the word mean,term missed +abortion,"('what does the word abortion mean', 'what does the term threatened abortion mean')",what does the word abortion mean,what does the term threatened abortion mean,6,3,google,2026-03-12 19:36:07.348343,abortion meaning,abortion meaning in hebrew,what does the word mean,term threatened +abortion,"('what does the word abortion mean', 'what does the term.spontaneous abortion mean')",what does the word abortion mean,what does the term.spontaneous abortion mean,7,3,google,2026-03-12 19:36:07.348343,abortion meaning,abortion meaning in hebrew,what does the word mean,term.spontaneous +abortion,"('what does the word abortion mean', 'what does late term abortion mean')",what does the word abortion mean,what does late term abortion mean,8,3,google,2026-03-12 19:36:07.348343,abortion meaning,abortion meaning in hebrew,what does the word mean,late term +abortion,"('what does the word abortion mean', 'what does the medical term missed abortion mean')",what does the word abortion mean,what does the medical term missed abortion mean,9,3,google,2026-03-12 19:36:07.348343,abortion meaning,abortion meaning in hebrew,what does the word mean,medical term missed +abortion,"('abortion meaning in arabic', 'spontaneous abortion meaning in arabic')",abortion meaning in arabic,spontaneous abortion meaning in arabic,1,3,google,2026-03-12 19:36:08.475978,abortion meaning,abortion meaning in hebrew,arabic,spontaneous +abortion,"('abortion meaning in arabic', 'missed abortion meaning in arabic')",abortion meaning in arabic,missed abortion meaning in arabic,2,3,google,2026-03-12 19:36:08.475978,abortion meaning,abortion meaning in hebrew,arabic,missed +abortion,"('abortion meaning in arabic', 'abortion clinic meaning in arabic')",abortion meaning in arabic,abortion clinic meaning in arabic,3,3,google,2026-03-12 19:36:08.475978,abortion meaning,abortion meaning in hebrew,arabic,clinic +abortion,"('abortion meaning in arabic', 'abortion meaning in islam')",abortion meaning in arabic,abortion meaning in islam,4,3,google,2026-03-12 19:36:08.475978,abortion meaning,abortion meaning in hebrew,arabic,islam +abortion,"('abortion meaning in arabic', 'abortion in arabic translation')",abortion meaning in arabic,abortion in arabic translation,5,3,google,2026-03-12 19:36:08.475978,abortion meaning,abortion meaning in hebrew,arabic,translation +abortion,"('abortion meaning in arabic', 'termination meaning in arabic')",abortion meaning in arabic,termination meaning in arabic,6,3,google,2026-03-12 19:36:08.475978,abortion meaning,abortion meaning in hebrew,arabic,termination +abortion,"('abortion meaning in arabic', 'abortion in arabic')",abortion meaning in arabic,abortion in arabic,7,3,google,2026-03-12 19:36:08.475978,abortion meaning,abortion meaning in hebrew,arabic,arabic +abortion,"('abortion meaning in arabic', 'abortion meaning in farsi')",abortion meaning in arabic,abortion meaning in farsi,8,3,google,2026-03-12 19:36:08.475978,abortion meaning,abortion meaning in hebrew,arabic,farsi +abortion,"('abortion meaning in arabic', 'abortion meaning in hebrew')",abortion meaning in arabic,abortion meaning in hebrew,9,3,google,2026-03-12 19:36:08.475978,abortion meaning,abortion meaning in hebrew,arabic,hebrew +abortion,"('is elias a hebrew name', 'is elias a jewish name')",is elias a hebrew name,is elias a jewish name,1,3,google,2026-03-12 19:36:09.310289,abortion meaning,abortion meaning in hebrew,is elias a name,jewish +abortion,"('is elias a hebrew name', 'is elijah a hebrew name')",is elias a hebrew name,is elijah a hebrew name,2,3,google,2026-03-12 19:36:09.310289,abortion meaning,abortion meaning in hebrew,is elias a name,elijah +abortion,"('is elias a hebrew name', 'is elias a jewish name in the bible')",is elias a hebrew name,is elias a jewish name in the bible,3,3,google,2026-03-12 19:36:09.310289,abortion meaning,abortion meaning in hebrew,is elias a name,jewish in the bible +abortion,"('is elias a hebrew name', 'is ilyas a hebrew name')",is elias a hebrew name,is ilyas a hebrew name,4,3,google,2026-03-12 19:36:09.310289,abortion meaning,abortion meaning in hebrew,is elias a name,ilyas +abortion,"('is elias a hebrew name', 'is elias a jewish last name')",is elias a hebrew name,is elias a jewish last name,5,3,google,2026-03-12 19:36:09.310289,abortion meaning,abortion meaning in hebrew,is elias a name,jewish last +abortion,"('is elias a hebrew name', 'is elias a common jewish name')",is elias a hebrew name,is elias a common jewish name,6,3,google,2026-03-12 19:36:09.310289,abortion meaning,abortion meaning in hebrew,is elias a name,common jewish +abortion,"('is elias a hebrew name', 'is elias a jewish first name')",is elias a hebrew name,is elias a jewish first name,7,3,google,2026-03-12 19:36:09.310289,abortion meaning,abortion meaning in hebrew,is elias a name,jewish first +abortion,"('is elias a hebrew name', 'is elias rodriguez a jewish name')",is elias a hebrew name,is elias rodriguez a jewish name,8,3,google,2026-03-12 19:36:09.310289,abortion meaning,abortion meaning in hebrew,is elias a name,rodriguez jewish +abortion,"('is elias a hebrew name', 'is elias a biblical name')",is elias a hebrew name,is elias a biblical name,9,3,google,2026-03-12 19:36:09.310289,abortion meaning,abortion meaning in hebrew,is elias a name,biblical +abortion,"('abortion in hebrew bible', 'abortion in hebrew bible verse')",abortion in hebrew bible,abortion in hebrew bible verse,1,3,google,2026-03-12 19:36:10.800359,abortion meaning,abortion meaning in hebrew,bible,verse +abortion,"('abortion in hebrew bible', 'abortion in hebrew bibles')",abortion in hebrew bible,abortion in hebrew bibles,2,3,google,2026-03-12 19:36:10.800359,abortion meaning,abortion meaning in hebrew,bible,bibles +abortion,"('abortion in hebrew bible', 'abortion in hebrew bible translation')",abortion in hebrew bible,abortion in hebrew bible translation,3,3,google,2026-03-12 19:36:10.800359,abortion meaning,abortion meaning in hebrew,bible,translation +abortion,"('abortion in hebrew bible', 'abortion in hebrew bible meaning')",abortion in hebrew bible,abortion in hebrew bible meaning,4,3,google,2026-03-12 19:36:10.800359,abortion meaning,abortion meaning in hebrew,bible,meaning +abortion,"('abortion in hebrew bible', 'abortion in hebrew bible instructions')",abortion in hebrew bible,abortion in hebrew bible instructions,5,3,google,2026-03-12 19:36:10.800359,abortion meaning,abortion meaning in hebrew,bible,instructions +abortion,"('abortion in hebrew bible', 'abortion in hebrew bible leviticus')",abortion in hebrew bible,abortion in hebrew bible leviticus,6,3,google,2026-03-12 19:36:10.800359,abortion meaning,abortion meaning in hebrew,bible,leviticus +abortion,"('abortion in hebrew bible', 'abortion in hebrew bible times')",abortion in hebrew bible,abortion in hebrew bible times,7,3,google,2026-03-12 19:36:10.800359,abortion meaning,abortion meaning in hebrew,bible,times +abortion,"('abortion in hebrew bible', 'abortion in hebrew bible numbers 5')",abortion in hebrew bible,abortion in hebrew bible numbers 5,8,3,google,2026-03-12 19:36:10.800359,abortion meaning,abortion meaning in hebrew,bible,numbers 5 +abortion,"('abortion in hebrew bible', 'abortion in hebrew bible days')",abortion in hebrew bible,abortion in hebrew bible days,9,3,google,2026-03-12 19:36:10.800359,abortion meaning,abortion meaning in hebrew,bible,days +abortion,"('abortion in hebrew bible', 'abortion in hebrew bible book of numbers')",abortion in hebrew bible,abortion in hebrew bible book of numbers,10,3,google,2026-03-12 19:36:10.800359,abortion meaning,abortion meaning in hebrew,bible,book of numbers +abortion,"('abortion in hebrew', 'abortion in hebrew translation')",abortion in hebrew,abortion in hebrew translation,1,3,google,2026-03-12 19:36:11.940451,abortion meaning,abortion meaning in hebrew,in hebrew,translation +abortion,"('abortion in hebrew', 'abortion meaning in hebrew')",abortion in hebrew,abortion meaning in hebrew,2,3,google,2026-03-12 19:36:11.940451,abortion meaning,abortion meaning in hebrew,in hebrew,meaning +abortion,"('abortion in hebrew', 'how to say abortion in hebrew')",abortion in hebrew,how to say abortion in hebrew,3,3,google,2026-03-12 19:36:11.940451,abortion meaning,abortion meaning in hebrew,in hebrew,how to say +abortion,"('abortion in hebrew', 'is abortion mentioned in the bible')",abortion in hebrew,is abortion mentioned in the bible,4,3,google,2026-03-12 19:36:11.940451,abortion meaning,abortion meaning in hebrew,in hebrew,is mentioned the bible +abortion,"('abortion in hebrew', 'abortion in hebrew bible')",abortion in hebrew,abortion in hebrew bible,5,3,google,2026-03-12 19:36:11.940451,abortion meaning,abortion meaning in hebrew,in hebrew,bible +abortion,"('abortion in hebrew', 'abortion in halacha')",abortion in hebrew,abortion in halacha,6,3,google,2026-03-12 19:36:11.940451,abortion meaning,abortion meaning in hebrew,in hebrew,halacha +abortion,"('abortion meaning in farsi', 'abortion meaning in persian')",abortion meaning in farsi,abortion meaning in persian,1,3,google,2026-03-12 19:36:13.048190,abortion meaning,abortion meaning in hebrew,farsi,persian +abortion,"('abortion meaning in farsi', 'bay meaning in farsi')",abortion meaning in farsi,bay meaning in farsi,2,3,google,2026-03-12 19:36:13.048190,abortion meaning,abortion meaning in hebrew,farsi,bay +abortion,"('abortion meaning in farsi', 'abortion in farsi')",abortion meaning in farsi,abortion in farsi,3,3,google,2026-03-12 19:36:13.048190,abortion meaning,abortion meaning in hebrew,farsi,farsi +abortion,"('abortion meaning in farsi', 'abortion definition in farsi')",abortion meaning in farsi,abortion definition in farsi,4,3,google,2026-03-12 19:36:13.048190,abortion meaning,abortion meaning in hebrew,farsi,definition +abortion,"('abortion meaning in hindi with example', 'transaction aborted meaning in hindi with example')",abortion meaning in hindi with example,transaction aborted meaning in hindi with example,1,3,google,2026-03-12 19:36:13.905030,abortion meaning,abortion meaning in hindi,with example,transaction aborted +abortion,"('abortion meaning in hindi with example', 'call aborted meaning in hindi with example')",abortion meaning in hindi with example,call aborted meaning in hindi with example,2,3,google,2026-03-12 19:36:13.905030,abortion meaning,abortion meaning in hindi,with example,call aborted +abortion,"('abortion meaning in hindi with example', 'payment aborted meaning in hindi with example')",abortion meaning in hindi with example,payment aborted meaning in hindi with example,3,3,google,2026-03-12 19:36:13.905030,abortion meaning,abortion meaning in hindi,with example,payment aborted +abortion,"('abortion meaning in hindi with example', 'mission abort meaning in hindi with example')",abortion meaning in hindi with example,mission abort meaning in hindi with example,4,3,google,2026-03-12 19:36:13.905030,abortion meaning,abortion meaning in hindi,with example,mission abort +abortion,"('abortion meaning in hindi with example', 'abort meaning in hindi with example in english')",abortion meaning in hindi with example,abort meaning in hindi with example in english,5,3,google,2026-03-12 19:36:13.905030,abortion meaning,abortion meaning in hindi,with example,abort english +abortion,"('abortion meaning in hindi with example', 'your transaction is aborted meaning in hindi with example')",abortion meaning in hindi with example,your transaction is aborted meaning in hindi with example,6,3,google,2026-03-12 19:36:13.905030,abortion meaning,abortion meaning in hindi,with example,your transaction is aborted +abortion,"('abortion meaning in hindi with example', 'user aborted meaning in hindi example')",abortion meaning in hindi with example,user aborted meaning in hindi example,7,3,google,2026-03-12 19:36:13.905030,abortion meaning,abortion meaning in hindi,with example,user aborted +abortion,"('abortion meaning in hindi with example', 'spontaneous abortion meaning in hindi and examples')",abortion meaning in hindi with example,spontaneous abortion meaning in hindi and examples,8,3,google,2026-03-12 19:36:13.905030,abortion meaning,abortion meaning in hindi,with example,spontaneous and examples +abortion,"('abortion meaning in hindi with example', 'induced abortion meaning in hindi and examples')",abortion meaning in hindi with example,induced abortion meaning in hindi and examples,9,3,google,2026-03-12 19:36:13.905030,abortion meaning,abortion meaning in hindi,with example,induced and examples +abortion,"('abortion meaning in hindi and english', 'abort meaning in hindi with example in english')",abortion meaning in hindi and english,abort meaning in hindi with example in english,1,3,google,2026-03-12 19:36:15.164867,abortion meaning,abortion meaning in hindi,and english,abort with example +abortion,"('abortion meaning in hindi and english', 'abortion meaning in hindi definition')",abortion meaning in hindi and english,abortion meaning in hindi definition,2,3,google,2026-03-12 19:36:15.164867,abortion meaning,abortion meaning in hindi,and english,definition +abortion,"('abortion meaning in hindi and english', 'what is the meaning of abortion in english')",abortion meaning in hindi and english,what is the meaning of abortion in english,3,3,google,2026-03-12 19:36:15.164867,abortion meaning,abortion meaning in hindi,and english,what is the of +abortion,"('abortion meaning in hindi and english', 'abortion meaning in hebrew')",abortion meaning in hindi and english,abortion meaning in hebrew,4,3,google,2026-03-12 19:36:15.164867,abortion meaning,abortion meaning in hindi,and english,hebrew +abortion,"('abortion meaning in hindi and english', 'abortion meaning in simple words')",abortion meaning in hindi and english,abortion meaning in simple words,5,3,google,2026-03-12 19:36:15.164867,abortion meaning,abortion meaning in hindi,and english,simple words +abortion,"('abortion meaning in hindi and english', 'abortion meaning in farsi')",abortion meaning in hindi and english,abortion meaning in farsi,6,3,google,2026-03-12 19:36:15.164867,abortion meaning,abortion meaning in hindi,and english,farsi +abortion,"('abortion meaning in hindi and english', 'what does abortion mean in english')",abortion meaning in hindi and english,what does abortion mean in english,7,3,google,2026-03-12 19:36:15.164867,abortion meaning,abortion meaning in hindi,and english,what does mean +abortion,"('abortion meaning in hindi pdf', 'inevitable abortion meaning in hindi pdf')",abortion meaning in hindi pdf,inevitable abortion meaning in hindi pdf,1,3,google,2026-03-12 19:36:16.486731,abortion meaning,abortion meaning in hindi,pdf,inevitable +abortion,"('abortion meaning in hindi pdf', 'spontaneous abortion meaning in hindi pdf')",abortion meaning in hindi pdf,spontaneous abortion meaning in hindi pdf,2,3,google,2026-03-12 19:36:16.486731,abortion meaning,abortion meaning in hindi,pdf,spontaneous +abortion,"('abortion meaning in hindi pdf', 'induced abortion meaning in hindi pdf')",abortion meaning in hindi pdf,induced abortion meaning in hindi pdf,3,3,google,2026-03-12 19:36:16.486731,abortion meaning,abortion meaning in hindi,pdf,induced +abortion,"('abortion meaning in hindi pdf', 'incomplete abortion meaning in hindi pdf')",abortion meaning in hindi pdf,incomplete abortion meaning in hindi pdf,4,3,google,2026-03-12 19:36:16.486731,abortion meaning,abortion meaning in hindi,pdf,incomplete +abortion,"('abortion meaning in hindi pdf', 'abortion meaning in hindi definition')",abortion meaning in hindi pdf,abortion meaning in hindi definition,5,3,google,2026-03-12 19:36:16.486731,abortion meaning,abortion meaning in hindi,pdf,definition +abortion,"('abortion meaning in hindi pdf', 'abortion meaning in hebrew')",abortion meaning in hindi pdf,abortion meaning in hebrew,6,3,google,2026-03-12 19:36:16.486731,abortion meaning,abortion meaning in hindi,pdf,hebrew +abortion,"('abortion meaning in hindi pdf', 'abortion meaning in simple words')",abortion meaning in hindi pdf,abortion meaning in simple words,7,3,google,2026-03-12 19:36:16.486731,abortion meaning,abortion meaning in hindi,pdf,simple words +abortion,"('abortion meaning in hindi pdf', 'abortion meaning in farsi')",abortion meaning in hindi pdf,abortion meaning in farsi,8,3,google,2026-03-12 19:36:16.486731,abortion meaning,abortion meaning in hindi,pdf,farsi +abortion,"('abortion meaning in hindi pdf', 'abortion meaning in english')",abortion meaning in hindi pdf,abortion meaning in english,9,3,google,2026-03-12 19:36:16.486731,abortion meaning,abortion meaning in hindi,pdf,english +abortion,"('abortion meaning in hindi definition', 'abortion meaning in simple words')",abortion meaning in hindi definition,abortion meaning in simple words,1,3,google,2026-03-12 19:36:17.925719,abortion meaning,abortion meaning in hindi,definition,simple words +abortion,"('abortion meaning in hindi definition', 'abortion meaning in english')",abortion meaning in hindi definition,abortion meaning in english,2,3,google,2026-03-12 19:36:17.925719,abortion meaning,abortion meaning in hindi,definition,english +abortion,"('abortion meaning in hindi definition', 'abortion meaning in hebrew')",abortion meaning in hindi definition,abortion meaning in hebrew,3,3,google,2026-03-12 19:36:17.925719,abortion meaning,abortion meaning in hindi,definition,hebrew +abortion,"('abortion meaning in hindi definition', 'abortion meaning in farsi')",abortion meaning in hindi definition,abortion meaning in farsi,4,3,google,2026-03-12 19:36:17.925719,abortion meaning,abortion meaning in hindi,definition,farsi +abortion,"('abortion meaning in hindi definition', 'abortion meaning in the bible')",abortion meaning in hindi definition,abortion meaning in the bible,5,3,google,2026-03-12 19:36:17.925719,abortion meaning,abortion meaning in hindi,definition,the bible +abortion,"('abortion meaning in hindi medical', 'abortion meaning in hindi definition')",abortion meaning in hindi medical,abortion meaning in hindi definition,1,3,google,2026-03-12 19:36:19.329039,abortion meaning,abortion meaning in hindi,medical,definition +abortion,"('abortion meaning in hindi medical', 'abortion medical dictionary')",abortion meaning in hindi medical,abortion medical dictionary,2,3,google,2026-03-12 19:36:19.329039,abortion meaning,abortion meaning in hindi,medical,dictionary +abortion,"('abortion meaning in hindi medical', 'abortion medical meaning')",abortion meaning in hindi medical,abortion medical meaning,3,3,google,2026-03-12 19:36:19.329039,abortion meaning,abortion meaning in hindi,medical,medical +abortion,"('abortion meaning in hindi medical', 'abortion meaning in simple words')",abortion meaning in hindi medical,abortion meaning in simple words,4,3,google,2026-03-12 19:36:19.329039,abortion meaning,abortion meaning in hindi,medical,simple words +abortion,"('abortion meaning in hindi medical', 'abortion meaning in hebrew')",abortion meaning in hindi medical,abortion meaning in hebrew,5,3,google,2026-03-12 19:36:19.329039,abortion meaning,abortion meaning in hindi,medical,hebrew +abortion,"('abortion meaning in hindi medical', 'abortion meaning in english')",abortion meaning in hindi medical,abortion meaning in english,6,3,google,2026-03-12 19:36:19.329039,abortion meaning,abortion meaning in hindi,medical,english +abortion,"('abort meaning in hindi synonyms', 'what is another name for means')",abort meaning in hindi synonyms,what is another name for means,1,3,google,2026-03-12 19:36:20.329109,abortion meaning,abortion meaning in hindi,abort synonyms,what is another name for means +abortion,"('abort meaning in hindi synonyms', 'termination meaning in english')",abort meaning in hindi synonyms,termination meaning in english,2,3,google,2026-03-12 19:36:20.329109,abortion meaning,abortion meaning in hindi,abort synonyms,termination english +abortion,"('abort meaning in hindi synonyms', 'terminated meaning synonym')",abort meaning in hindi synonyms,terminated meaning synonym,3,3,google,2026-03-12 19:36:20.329109,abortion meaning,abortion meaning in hindi,abort synonyms,terminated synonym +abortion,"('abort meaning in hindi synonyms', 'termination meaning in urdu')",abort meaning in hindi synonyms,termination meaning in urdu,4,3,google,2026-03-12 19:36:20.329109,abortion meaning,abortion meaning in hindi,abort synonyms,termination urdu +abortion,"('abort meaning in hindi synonyms', 'abort synonyms and antonyms')",abort meaning in hindi synonyms,abort synonyms and antonyms,5,3,google,2026-03-12 19:36:20.329109,abortion meaning,abortion meaning in hindi,abort synonyms,and antonyms +abortion,"('abort meaning in hindi synonyms', 'abort synonyms')",abort meaning in hindi synonyms,abort synonyms,6,3,google,2026-03-12 19:36:20.329109,abortion meaning,abortion meaning in hindi,abort synonyms,abort synonyms +abortion,"('abort meaning in hindi synonyms', 'abort meaning')",abort meaning in hindi synonyms,abort meaning,7,3,google,2026-03-12 19:36:20.329109,abortion meaning,abortion meaning in hindi,abort synonyms,abort synonyms +abortion,"('abort meaning in hindi synonyms', 'abort definition verb')",abort meaning in hindi synonyms,abort definition verb,8,3,google,2026-03-12 19:36:20.329109,abortion meaning,abortion meaning in hindi,abort synonyms,definition verb +abortion,"('abortion translation in hindi', 'abortion meaning in hindi')",abortion translation in hindi,abortion meaning in hindi,1,3,google,2026-03-12 19:36:21.394048,abortion meaning,abortion meaning in hindi,translation,meaning +abortion,"('abortion translation in hindi', 'abortion meaning in hindi with example')",abortion translation in hindi,abortion meaning in hindi with example,2,3,google,2026-03-12 19:36:21.394048,abortion meaning,abortion meaning in hindi,translation,meaning with example +abortion,"('abortion translation in hindi', 'abortion meaning in hindi and english')",abortion translation in hindi,abortion meaning in hindi and english,3,3,google,2026-03-12 19:36:21.394048,abortion meaning,abortion meaning in hindi,translation,meaning and english +abortion,"('abortion translation in hindi', 'abortion meaning in hindi definition')",abortion translation in hindi,abortion meaning in hindi definition,4,3,google,2026-03-12 19:36:21.394048,abortion meaning,abortion meaning in hindi,translation,meaning definition +abortion,"('abortion translation in hindi', 'abortion meaning in hindi pdf')",abortion translation in hindi,abortion meaning in hindi pdf,5,3,google,2026-03-12 19:36:21.394048,abortion meaning,abortion meaning in hindi,translation,meaning pdf +abortion,"('abortion translation in hindi', 'abortion meaning in hindi medical')",abortion translation in hindi,abortion meaning in hindi medical,6,3,google,2026-03-12 19:36:21.394048,abortion meaning,abortion meaning in hindi,translation,meaning medical +abortion,"('abortion translation in hindi', 'missed abortion translate in hindi')",abortion translation in hindi,missed abortion translate in hindi,7,3,google,2026-03-12 19:36:21.394048,abortion meaning,abortion meaning in hindi,translation,missed translate +abortion,"('abortion translation in hindi', 'threatened abortion meaning in hindi')",abortion translation in hindi,threatened abortion meaning in hindi,8,3,google,2026-03-12 19:36:21.394048,abortion meaning,abortion meaning in hindi,translation,threatened meaning +abortion,"('abortion translation in hindi', 'spontaneous abortion meaning in hindi')",abortion translation in hindi,spontaneous abortion meaning in hindi,9,3,google,2026-03-12 19:36:21.394048,abortion meaning,abortion meaning in hindi,translation,spontaneous meaning +abortion,"('missed abortion meaning in hindi', 'spontaneous abortion meaning in hindi')",missed abortion meaning in hindi,spontaneous abortion meaning in hindi,1,3,google,2026-03-12 19:36:22.391971,abortion meaning,abortion meaning in hindi,missed,spontaneous +abortion,"('missed abortion meaning in hindi', 'incomplete abortion meaning in hindi')",missed abortion meaning in hindi,incomplete abortion meaning in hindi,2,3,google,2026-03-12 19:36:22.391971,abortion meaning,abortion meaning in hindi,missed,incomplete +abortion,"('missed abortion meaning in hindi', 'missed miscarriage meaning in hindi')",missed abortion meaning in hindi,missed miscarriage meaning in hindi,3,3,google,2026-03-12 19:36:22.391971,abortion meaning,abortion meaning in hindi,missed,miscarriage +abortion,"('missed abortion meaning in hindi', 'missed abortion definition in hindi')",missed abortion meaning in hindi,missed abortion definition in hindi,4,3,google,2026-03-12 19:36:22.391971,abortion meaning,abortion meaning in hindi,missed,definition +abortion,"('missed abortion meaning in hindi', 'spontaneous abortion meaning in hindi and examples')",missed abortion meaning in hindi,spontaneous abortion meaning in hindi and examples,5,3,google,2026-03-12 19:36:22.391971,abortion meaning,abortion meaning in hindi,missed,spontaneous and examples +abortion,"('missed abortion meaning in hindi', 'spontaneous abortion meaning in hindi pdf')",missed abortion meaning in hindi,spontaneous abortion meaning in hindi pdf,6,3,google,2026-03-12 19:36:22.391971,abortion meaning,abortion meaning in hindi,missed,spontaneous pdf +abortion,"('missed abortion meaning in hindi', 'incomplete abortion meaning in hindi pdf')",missed abortion meaning in hindi,incomplete abortion meaning in hindi pdf,7,3,google,2026-03-12 19:36:22.391971,abortion meaning,abortion meaning in hindi,missed,incomplete pdf +abortion,"('missed abortion meaning in hindi', 'likely missed abortion meaning in hindi')",missed abortion meaning in hindi,likely missed abortion meaning in hindi,8,3,google,2026-03-12 19:36:22.391971,abortion meaning,abortion meaning in hindi,missed,likely +abortion,"('missed abortion meaning in hindi', 'so missed abortion meaning in hindi')",missed abortion meaning in hindi,so missed abortion meaning in hindi,9,3,google,2026-03-12 19:36:22.391971,abortion meaning,abortion meaning in hindi,missed,so +abortion,"('threatened abortion meaning in hindi', 'inevitable abortion meaning in hindi')",threatened abortion meaning in hindi,inevitable abortion meaning in hindi,1,3,google,2026-03-12 19:36:23.225324,abortion meaning,abortion meaning in hindi,threatened,inevitable +abortion,"('threatened abortion meaning in hindi', 'inevitable abortion meaning in hindi pdf')",threatened abortion meaning in hindi,inevitable abortion meaning in hindi pdf,2,3,google,2026-03-12 19:36:23.225324,abortion meaning,abortion meaning in hindi,threatened,inevitable pdf +abortion,"('threatened abortion meaning in hindi', 'threatened abortion definition in hindi wikipedia')",threatened abortion meaning in hindi,threatened abortion definition in hindi wikipedia,3,3,google,2026-03-12 19:36:23.225324,abortion meaning,abortion meaning in hindi,threatened,definition wikipedia +abortion,"('threatened abortion meaning in hindi', 'threatened abortion in hindi meaning in english')",threatened abortion meaning in hindi,threatened abortion in hindi meaning in english,4,3,google,2026-03-12 19:36:23.225324,abortion meaning,abortion meaning in hindi,threatened,english +abortion,"('threatened abortion meaning in hindi', 'what do you mean by threatened abortion')",threatened abortion meaning in hindi,what do you mean by threatened abortion,5,3,google,2026-03-12 19:36:23.225324,abortion meaning,abortion meaning in hindi,threatened,what do you mean by +abortion,"('threatened abortion meaning in hindi', 'threatened abortion meaning in tamil')",threatened abortion meaning in hindi,threatened abortion meaning in tamil,6,3,google,2026-03-12 19:36:23.225324,abortion meaning,abortion meaning in hindi,threatened,tamil +abortion,"('threatened abortion meaning in hindi', 'apa itu threatened abortion')",threatened abortion meaning in hindi,apa itu threatened abortion,7,3,google,2026-03-12 19:36:23.225324,abortion meaning,abortion meaning in hindi,threatened,apa itu +abortion,"('threatened abortion meaning in hindi', 'what is threatened abortion')",threatened abortion meaning in hindi,what is threatened abortion,8,3,google,2026-03-12 19:36:23.225324,abortion meaning,abortion meaning in hindi,threatened,what is +abortion,"('threatened abortion meaning in hindi', 'types of abortion threatened')",threatened abortion meaning in hindi,types of abortion threatened,9,3,google,2026-03-12 19:36:23.225324,abortion meaning,abortion meaning in hindi,threatened,types of +abortion,"('is abortion mentioned in the bible', 'is abortion mentioned in the bible anywhere')",is abortion mentioned in the bible,is abortion mentioned in the bible anywhere,1,3,google,2026-03-12 19:36:24.498976,abortion meaning,abortion meaning in the bible,is mentioned,anywhere +abortion,"('is abortion mentioned in the bible', 'is abortion discussed in the bible')",is abortion mentioned in the bible,is abortion discussed in the bible,2,3,google,2026-03-12 19:36:24.498976,abortion meaning,abortion meaning in the bible,is mentioned,discussed +abortion,"('is abortion mentioned in the bible', 'is abortion referenced in the bible')",is abortion mentioned in the bible,is abortion referenced in the bible,3,3,google,2026-03-12 19:36:24.498976,abortion meaning,abortion meaning in the bible,is mentioned,referenced +abortion,"('is abortion mentioned in the bible', 'is abortion found in the bible')",is abortion mentioned in the bible,is abortion found in the bible,4,3,google,2026-03-12 19:36:24.498976,abortion meaning,abortion meaning in the bible,is mentioned,found +abortion,"('is abortion mentioned in the bible', 'is abortion referred to in the bible')",is abortion mentioned in the bible,is abortion referred to in the bible,5,3,google,2026-03-12 19:36:24.498976,abortion meaning,abortion meaning in the bible,is mentioned,referred to +abortion,"('is abortion mentioned in the bible', 'is abortion described in the bible')",is abortion mentioned in the bible,is abortion described in the bible,6,3,google,2026-03-12 19:36:24.498976,abortion meaning,abortion meaning in the bible,is mentioned,described +abortion,"('is abortion mentioned in the bible', 'where is abortion mentioned in the bible verse')",is abortion mentioned in the bible,where is abortion mentioned in the bible verse,7,3,google,2026-03-12 19:36:24.498976,abortion meaning,abortion meaning in the bible,is mentioned,where verse +abortion,"('is abortion mentioned in the bible', 'is abortion actually mentioned in the bible')",is abortion mentioned in the bible,is abortion actually mentioned in the bible,8,3,google,2026-03-12 19:36:24.498976,abortion meaning,abortion meaning in the bible,is mentioned,actually +abortion,"('is abortion mentioned in the bible', 'is abortion specifically mentioned in the bible')",is abortion mentioned in the bible,is abortion specifically mentioned in the bible,9,3,google,2026-03-12 19:36:24.498976,abortion meaning,abortion meaning in the bible,is mentioned,specifically +abortion,"('is abortion even mentioned in the bible', 'is abortion ever okay in the bible')",is abortion even mentioned in the bible,is abortion ever okay in the bible,1,3,google,2026-03-12 19:36:25.504022,abortion meaning,abortion meaning in the bible,is even mentioned,ever okay +abortion,"('is abortion even mentioned in the bible', 'is abortion ever justified in the bible')",is abortion even mentioned in the bible,is abortion ever justified in the bible,2,3,google,2026-03-12 19:36:25.504022,abortion meaning,abortion meaning in the bible,is even mentioned,ever justified +abortion,"('is abortion even mentioned in the bible', 'is abortion mentioned in the bible')",is abortion even mentioned in the bible,is abortion mentioned in the bible,3,3,google,2026-03-12 19:36:25.504022,abortion meaning,abortion meaning in the bible,is even mentioned,is even mentioned +abortion,"('is abortion even mentioned in the bible', 'is abortion legal in the bible')",is abortion even mentioned in the bible,is abortion legal in the bible,4,3,google,2026-03-12 19:36:25.504022,abortion meaning,abortion meaning in the bible,is even mentioned,legal +abortion,"('is abortion even mentioned in the bible', 'is abortion ever mentioned in the bible')",is abortion even mentioned in the bible,is abortion ever mentioned in the bible,5,3,google,2026-03-12 19:36:25.504022,abortion meaning,abortion meaning in the bible,is even mentioned,ever +abortion,"('what does abortion mean in the bible', 'what does abortion mean in hebrew')",what does abortion mean in the bible,what does abortion mean in hebrew,1,3,google,2026-03-12 19:36:26.708874,abortion meaning,abortion meaning in the bible,what does mean,hebrew +abortion,"('what does abortion mean in the bible', 'is abortion mentioned in the bible')",what does abortion mean in the bible,is abortion mentioned in the bible,2,3,google,2026-03-12 19:36:26.708874,abortion meaning,abortion meaning in the bible,what does mean,is mentioned +abortion,"('what does abortion mean in the bible', 'is abortion even mentioned in the bible')",what does abortion mean in the bible,is abortion even mentioned in the bible,3,3,google,2026-03-12 19:36:26.708874,abortion meaning,abortion meaning in the bible,what does mean,is even mentioned +abortion,"('what does abortion mean in the bible', 'what does the word abortion mean')",what does abortion mean in the bible,what does the word abortion mean,4,3,google,2026-03-12 19:36:26.708874,abortion meaning,abortion meaning in the bible,what does mean,word +abortion,"('what does abortion mean in the bible', 'what does abortion say in the bible')",what does abortion mean in the bible,what does abortion say in the bible,5,3,google,2026-03-12 19:36:26.708874,abortion meaning,abortion meaning in the bible,what does mean,say +abortion,"('definition of abortion in the bible', 'is abortion mentioned in the bible')",definition of abortion in the bible,is abortion mentioned in the bible,1,3,google,2026-03-12 19:36:28.160455,abortion meaning,abortion meaning in the bible,definition of,is mentioned +abortion,"('definition of abortion in the bible', 'definition of abortion in texas')",definition of abortion in the bible,definition of abortion in texas,2,3,google,2026-03-12 19:36:28.160455,abortion meaning,abortion meaning in the bible,definition of,texas +abortion,"('definition of abortion in the bible', 'abortion meaning in the bible')",definition of abortion in the bible,abortion meaning in the bible,3,3,google,2026-03-12 19:36:28.160455,abortion meaning,abortion meaning in the bible,definition of,meaning +abortion,"('definition of abortion in the bible', 'definition of abortion in kansas')",definition of abortion in the bible,definition of abortion in kansas,4,3,google,2026-03-12 19:36:28.160455,abortion meaning,abortion meaning in the bible,definition of,kansas +abortion,"('origin of abortion', 'origin of abortion in the united states')",origin of abortion,origin of abortion in the united states,1,3,google,2026-03-12 19:36:29.147538,abortion meaning,abortion meaning in greek,origin of,in the united states +abortion,"('origin of abortion', 'origin of abortion laws')",origin of abortion,origin of abortion laws,2,3,google,2026-03-12 19:36:29.147538,abortion meaning,abortion meaning in greek,origin of,laws +abortion,"('origin of abortion', 'origin of word abortion')",origin of abortion,origin of word abortion,3,3,google,2026-03-12 19:36:29.147538,abortion meaning,abortion meaning in greek,origin of,word +abortion,"('origin of abortion', 'origin of anti abortion movement')",origin of abortion,origin of anti abortion movement,4,3,google,2026-03-12 19:36:29.147538,abortion meaning,abortion meaning in greek,origin of,anti movement +abortion,"('origin of abortion', 'where did abortions originate')",origin of abortion,where did abortions originate,5,3,google,2026-03-12 19:36:29.147538,abortion meaning,abortion meaning in greek,origin of,where did abortions originate +abortion,"('origin of abortion', 'how long has abortion been around')",origin of abortion,how long has abortion been around,6,3,google,2026-03-12 19:36:29.147538,abortion meaning,abortion meaning in greek,origin of,how long has been around +abortion,"('origin of abortion', 'origin of abortion rights')",origin of abortion,origin of abortion rights,7,3,google,2026-03-12 19:36:29.147538,abortion meaning,abortion meaning in greek,origin of,rights +abortion,"('abortion in greek', 'abortion in greek mythology')",abortion in greek,abortion in greek mythology,1,3,google,2026-03-12 19:36:30.620466,abortion meaning,abortion meaning in greek,in greek,mythology +abortion,"('abortion in greek', 'abortion meaning in greek')",abortion in greek,abortion meaning in greek,2,3,google,2026-03-12 19:36:30.620466,abortion meaning,abortion meaning in greek,in greek,meaning +abortion,"('abortion in greek', 'abortion in ancient greek')",abortion in greek,abortion in ancient greek,3,3,google,2026-03-12 19:36:30.620466,abortion meaning,abortion meaning in greek,in greek,ancient +abortion,"('abortion in greek', 'abortion greek word')",abortion in greek,abortion greek word,4,3,google,2026-03-12 19:36:30.620466,abortion meaning,abortion meaning in greek,in greek,word +abortion,"('abortion in greek', 'abortion greek orthodox')",abortion in greek,abortion greek orthodox,5,3,google,2026-03-12 19:36:30.620466,abortion meaning,abortion meaning in greek,in greek,orthodox +abortion,"('abortion in greek', 'abortion greek translation')",abortion in greek,abortion greek translation,6,3,google,2026-03-12 19:36:30.620466,abortion meaning,abortion meaning in greek,in greek,translation +abortion,"('abortion in greek', 'is abortion legal in greece')",abortion in greek,is abortion legal in greece,7,3,google,2026-03-12 19:36:30.620466,abortion meaning,abortion meaning in greek,in greek,is legal greece +abortion,"('abortion in greek', 'abortion in greek and roman times')",abortion in greek,abortion in greek and roman times,8,3,google,2026-03-12 19:36:30.620466,abortion meaning,abortion meaning in greek,in greek,and roman times +abortion,"('abortion in greek', 'abortion law greece')",abortion in greek,abortion law greece,9,3,google,2026-03-12 19:36:30.620466,abortion meaning,abortion meaning in greek,in greek,law greece +abortion,"('abortion in greek and roman times', 'abortion in greek and roman times pdf')",abortion in greek and roman times,abortion in greek and roman times pdf,1,3,google,2026-03-12 19:36:31.612813,abortion meaning,abortion meaning in greek,and roman times,pdf +abortion,"('abortion in greek and roman times', 'abortion in greek and roman times book')",abortion in greek and roman times,abortion in greek and roman times book,2,3,google,2026-03-12 19:36:31.612813,abortion meaning,abortion meaning in greek,and roman times,book +abortion,"('abortion meaning oxford dictionary', 'abortion definition oxford')",abortion meaning oxford dictionary,abortion definition oxford,1,3,google,2026-03-12 19:36:32.464675,abortion meaning,abortion meaning dictionary,oxford,definition +abortion,"('abortion meaning oxford dictionary', 'abortion dictionary meaning')",abortion meaning oxford dictionary,abortion dictionary meaning,2,3,google,2026-03-12 19:36:32.464675,abortion meaning,abortion meaning dictionary,oxford,oxford +abortion,"('abortion meaning oxford dictionary', 'what is the meaning of abortion in english')",abortion meaning oxford dictionary,what is the meaning of abortion in english,3,3,google,2026-03-12 19:36:32.464675,abortion meaning,abortion meaning dictionary,oxford,what is the of in english +abortion,"('abortion meaning oxford dictionary', 'is abortion a bad word')",abortion meaning oxford dictionary,is abortion a bad word,4,3,google,2026-03-12 19:36:32.464675,abortion meaning,abortion meaning dictionary,oxford,is a bad word +abortion,"('abortion meaning oxford dictionary', 'oxford dictionary abortion')",abortion meaning oxford dictionary,oxford dictionary abortion,5,3,google,2026-03-12 19:36:32.464675,abortion meaning,abortion meaning dictionary,oxford,oxford +abortion,"('abortion meaning oxford dictionary', 'oxford dictionary definition of abortion')",abortion meaning oxford dictionary,oxford dictionary definition of abortion,6,3,google,2026-03-12 19:36:32.464675,abortion meaning,abortion meaning dictionary,oxford,definition of +abortion,"('is abortion a bad word', 'is abortion a swear word')",is abortion a bad word,is abortion a swear word,1,3,google,2026-03-12 19:36:33.708857,abortion meaning,abortion meaning dictionary,is a bad word,swear +abortion,"('is abortion a bad word', 'what does abortion ban mean')",is abortion a bad word,what does abortion ban mean,2,3,google,2026-03-12 19:36:33.708857,abortion meaning,abortion meaning dictionary,is a bad word,what does ban mean +abortion,"('is abortion a bad word', 'is abortion a bad choice')",is abortion a bad word,is abortion a bad choice,3,3,google,2026-03-12 19:36:33.708857,abortion meaning,abortion meaning dictionary,is a bad word,choice +abortion,"('is abortion a bad word', 'is abortion a verb')",is abortion a bad word,is abortion a verb,4,3,google,2026-03-12 19:36:33.708857,abortion meaning,abortion meaning dictionary,is a bad word,verb +abortion,"('is abortion a bad word', 'is a bad word bad')",is abortion a bad word,is a bad word bad,5,3,google,2026-03-12 19:36:33.708857,abortion meaning,abortion meaning dictionary,is a bad word,is a bad word +abortion,"('what is the meaning of abortion in english', 'what is the meaning of miscarriage in english')",what is the meaning of abortion in english,what is the meaning of miscarriage in english,1,3,google,2026-03-12 19:36:34.629355,abortion meaning,abortion meaning dictionary,what is the of in english,miscarriage +abortion,"('what is the meaning of abortion in english', 'what does the word abortion mean')",what is the meaning of abortion in english,what does the word abortion mean,2,3,google,2026-03-12 19:36:34.629355,abortion meaning,abortion meaning dictionary,what is the of in english,does word mean +abortion,"('what is the meaning of abortion in english', 'what the meaning of abortion')",what is the meaning of abortion in english,what the meaning of abortion,3,3,google,2026-03-12 19:36:34.629355,abortion meaning,abortion meaning dictionary,what is the of in english,what is the of in english +abortion,"('what is the meaning of abortion in english', 'what is the meaning of the word abortion')",what is the meaning of abortion in english,what is the meaning of the word abortion,4,3,google,2026-03-12 19:36:34.629355,abortion meaning,abortion meaning dictionary,what is the of in english,word +abortion,"('what is the meaning of abortion in english', 'what does abortion mean in english')",what is the meaning of abortion in english,what does abortion mean in english,5,3,google,2026-03-12 19:36:34.629355,abortion meaning,abortion meaning dictionary,what is the of in english,does mean +abortion,"('what is the meaning of abortion in english', 'what is the definition of the word abortion')",what is the meaning of abortion in english,what is the definition of the word abortion,6,3,google,2026-03-12 19:36:34.629355,abortion meaning,abortion meaning dictionary,what is the of in english,definition word +abortion,"('abortion dictionary definition', 'miscarriage definition dictionary')",abortion dictionary definition,miscarriage definition dictionary,1,3,google,2026-03-12 19:36:35.804114,abortion meaning,abortion meaning dictionary,definition,miscarriage +abortion,"('abortion dictionary definition', 'oxford dictionary abortion definition')",abortion dictionary definition,oxford dictionary abortion definition,2,3,google,2026-03-12 19:36:35.804114,abortion meaning,abortion meaning dictionary,definition,oxford +abortion,"('abortion dictionary definition', 'abortion dictionary meaning')",abortion dictionary definition,abortion dictionary meaning,3,3,google,2026-03-12 19:36:35.804114,abortion meaning,abortion meaning dictionary,definition,meaning +abortion,"('abortion dictionary definition', 'abortion dictionary')",abortion dictionary definition,abortion dictionary,4,3,google,2026-03-12 19:36:35.804114,abortion meaning,abortion meaning dictionary,definition,definition +abortion,"('abortion medical dictionary', 'abortion medical terminology')",abortion medical dictionary,abortion medical terminology,1,3,google,2026-03-12 19:36:37.235286,abortion meaning,abortion meaning dictionary,medical,terminology +abortion,"('abortion medical dictionary', 'abortion table name')",abortion medical dictionary,abortion table name,2,3,google,2026-03-12 19:36:37.235286,abortion meaning,abortion meaning dictionary,medical,table name +abortion,"('abortion medical dictionary', 'abortion dictionary meaning')",abortion medical dictionary,abortion dictionary meaning,3,3,google,2026-03-12 19:36:37.235286,abortion meaning,abortion meaning dictionary,medical,meaning +abortion,"('abortion medical dictionary', 'abortion dictionary definition')",abortion medical dictionary,abortion dictionary definition,4,3,google,2026-03-12 19:36:37.235286,abortion meaning,abortion meaning dictionary,medical,definition +abortion,"('abortion medical dictionary', 'abortion medical meaning')",abortion medical dictionary,abortion medical meaning,5,3,google,2026-03-12 19:36:37.235286,abortion meaning,abortion meaning dictionary,medical,meaning +abortion,"('abortion medical dictionary', 'abortion medical definition')",abortion medical dictionary,abortion medical definition,6,3,google,2026-03-12 19:36:37.235286,abortion meaning,abortion meaning dictionary,medical,definition +abortion,"('new abortion law in california 2025', 'abortion law in california 2025')",new abortion law in california 2025,abortion law in california 2025,1,3,google,2026-03-12 19:36:38.160886,abortion laws in california,abortion laws in california 2025,new law,new law +abortion,"('new abortion law in california 2025', 'new california abortion laws 2025 update')",new abortion law in california 2025,new california abortion laws 2025 update,2,3,google,2026-03-12 19:36:38.160886,abortion laws in california,abortion laws in california 2025,new law,laws update +abortion,"('new abortion law in california 2025', 'new california abortion laws 2025 update today')",new abortion law in california 2025,new california abortion laws 2025 update today,3,3,google,2026-03-12 19:36:38.160886,abortion laws in california,abortion laws in california 2025,new law,laws update today +abortion,"('new abortion law in california 2025', 'new abortion laws in california')",new abortion law in california 2025,new abortion laws in california,4,3,google,2026-03-12 19:36:38.160886,abortion laws in california,abortion laws in california 2025,new law,laws +abortion,"('new abortion law in california 2025', 'new abortion law in california 2023')",new abortion law in california 2025,new abortion law in california 2023,5,3,google,2026-03-12 19:36:38.160886,abortion laws in california,abortion laws in california 2025,new law,2023 +abortion,"('new abortion law in california 2025', 'new abortion law in california 2022')",new abortion law in california 2025,new abortion law in california 2022,6,3,google,2026-03-12 19:36:38.160886,abortion laws in california,abortion laws in california 2025,new law,2022 +abortion,"('new abortion law in california 2025', 'new abortion laws 2021 california')",new abortion law in california 2025,new abortion laws 2021 california,7,3,google,2026-03-12 19:36:38.160886,abortion laws in california,abortion laws in california 2025,new law,laws 2021 +abortion,"('abortion laws in california 2021', 'abortion laws in california 2021-2024')",abortion laws in california 2021,abortion laws in california 2021-2024,1,3,google,2026-03-12 19:36:39.475103,abortion laws in california,abortion laws in california 2025,2021,2021-2024 +abortion,"('abortion laws in california 2021', 'abortion laws in california 2021 california')",abortion laws in california 2021,abortion laws in california 2021 california,2,3,google,2026-03-12 19:36:39.475103,abortion laws in california,abortion laws in california 2025,2021,2021 +abortion,"('abortion laws in california 2021', 'abortion laws in california 2021 and 2022')",abortion laws in california 2021,abortion laws in california 2021 and 2022,3,3,google,2026-03-12 19:36:39.475103,abortion laws in california,abortion laws in california 2025,2021,and 2022 +abortion,"('abortion laws in california 2022', 'abortion laws in california 2022 california')",abortion laws in california 2022,abortion laws in california 2022 california,1,3,google,2026-03-12 19:36:40.464082,abortion laws in california,abortion laws in california 2025,2022,2022 +abortion,"('abortion laws in california 2022', 'abortion laws in california 2022 and 2023')",abortion laws in california 2022,abortion laws in california 2022 and 2023,2,3,google,2026-03-12 19:36:40.464082,abortion laws in california,abortion laws in california 2025,2022,and 2023 +abortion,"('abortion laws in california 2022', 'abortion laws in california 2022-2024')",abortion laws in california 2022,abortion laws in california 2022-2024,3,3,google,2026-03-12 19:36:40.464082,abortion laws in california,abortion laws in california 2025,2022,2022-2024 +abortion,"('abortion laws in california 2022', 'abortion laws in california 2022 how many weeks')",abortion laws in california 2022,abortion laws in california 2022 how many weeks,4,3,google,2026-03-12 19:36:40.464082,abortion laws in california,abortion laws in california 2025,2022,how many weeks +abortion,"('abortion laws in california 2022', 'abortion laws in california 2022 weeks')",abortion laws in california 2022,abortion laws in california 2022 weeks,5,3,google,2026-03-12 19:36:40.464082,abortion laws in california,abortion laws in california 2025,2022,weeks +abortion,"('abortion laws in california 2022', 'abortion laws in california 2022 text')",abortion laws in california 2022,abortion laws in california 2022 text,6,3,google,2026-03-12 19:36:40.464082,abortion laws in california,abortion laws in california 2025,2022,text +abortion,"('is abortion legal in california 2026', 'is abortion illegal in california 2026')",is abortion legal in california 2026,is abortion illegal in california 2026,1,3,google,2026-03-12 19:36:41.472727,abortion laws in california,abortion laws in california 2026,is legal,illegal +abortion,"('is abortion legal in california 2026', 'abortion laws in california 2026')",is abortion legal in california 2026,abortion laws in california 2026,2,3,google,2026-03-12 19:36:41.472727,abortion laws in california,abortion laws in california 2026,is legal,laws +abortion,"('is abortion legal in california 2026', 'is abortion legal in california')",is abortion legal in california 2026,is abortion legal in california,3,3,google,2026-03-12 19:36:41.472727,abortion laws in california,abortion laws in california 2026,is legal,is legal +abortion,"('is abortion legal in california 2026', 'when did abortion become legal in california')",is abortion legal in california 2026,when did abortion become legal in california,4,3,google,2026-03-12 19:36:41.472727,abortion laws in california,abortion laws in california 2026,is legal,when did become +abortion,"('is abortion legal in california 2026', 'is abortion legal in california 2023')",is abortion legal in california 2026,is abortion legal in california 2023,5,3,google,2026-03-12 19:36:41.472727,abortion laws in california,abortion laws in california 2026,is legal,2023 +abortion,"('is abortion legal in california 2026', 'is abortion legal in california 2021')",is abortion legal in california 2026,is abortion legal in california 2021,6,3,google,2026-03-12 19:36:41.472727,abortion laws in california,abortion laws in california 2026,is legal,2021 +abortion,"('is abortion legal in california 2026', 'is abortion legal in california 2022')",is abortion legal in california 2026,is abortion legal in california 2022,7,3,google,2026-03-12 19:36:41.472727,abortion laws in california,abortion laws in california 2026,is legal,2022 +abortion,"('is abortion legal in california 2026', 'is abortion illegal in california 2023')",is abortion legal in california 2026,is abortion illegal in california 2023,8,3,google,2026-03-12 19:36:41.472727,abortion laws in california,abortion laws in california 2026,is legal,illegal 2023 +abortion,"('is abortion illegal in california 2026', 'is abortion legal in california 2026')",is abortion illegal in california 2026,is abortion legal in california 2026,1,3,google,2026-03-12 19:36:42.388106,abortion laws in california,abortion laws in california 2026,is illegal,legal +abortion,"('is abortion illegal in california 2026', 'abortion laws in california 2026')",is abortion illegal in california 2026,abortion laws in california 2026,2,3,google,2026-03-12 19:36:42.388106,abortion laws in california,abortion laws in california 2026,is illegal,laws +abortion,"('is abortion illegal in california 2026', 'when did abortion become legal in california')",is abortion illegal in california 2026,when did abortion become legal in california,3,3,google,2026-03-12 19:36:42.388106,abortion laws in california,abortion laws in california 2026,is illegal,when did become legal +abortion,"('is abortion illegal in california 2026', 'is abortion legal in california')",is abortion illegal in california 2026,is abortion legal in california,4,3,google,2026-03-12 19:36:42.388106,abortion laws in california,abortion laws in california 2026,is illegal,legal +abortion,"('is abortion illegal in california 2026', 'is abortion illegal in california 2023')",is abortion illegal in california 2026,is abortion illegal in california 2023,5,3,google,2026-03-12 19:36:42.388106,abortion laws in california,abortion laws in california 2026,is illegal,2023 +abortion,"('is abortion illegal in california 2026', 'is abortion illegal in california 2022')",is abortion illegal in california 2026,is abortion illegal in california 2022,6,3,google,2026-03-12 19:36:42.388106,abortion laws in california,abortion laws in california 2026,is illegal,2022 +abortion,"('is abortion illegal in california 2026', 'is abortion illegal in california today')",is abortion illegal in california 2026,is abortion illegal in california today,7,3,google,2026-03-12 19:36:42.388106,abortion laws in california,abortion laws in california 2026,is illegal,today +abortion,"('is abortion illegal in california 2026', 'is abortion illegal in california now')",is abortion illegal in california 2026,is abortion illegal in california now,8,3,google,2026-03-12 19:36:42.388106,abortion laws in california,abortion laws in california 2026,is illegal,now +abortion,"('is abortion illegal in california 2026', 'is abortion legal in california 2023')",is abortion illegal in california 2026,is abortion legal in california 2023,9,3,google,2026-03-12 19:36:42.388106,abortion laws in california,abortion laws in california 2026,is illegal,legal 2023 +abortion,"('california abortion laws', 'california abortion laws 2024')",california abortion laws,california abortion laws 2024,1,3,google,2026-03-12 19:36:43.750579,abortion laws in california,abortion laws in california 2026,2026,2024 +abortion,"('california abortion laws', 'california abortion laws 2025')",california abortion laws,california abortion laws 2025,2,3,google,2026-03-12 19:36:43.750579,abortion laws in california,abortion laws in california 2026,2026,2025 +abortion,"('california abortion laws', 'california abortion laws weeks')",california abortion laws,california abortion laws weeks,3,3,google,2026-03-12 19:36:43.750579,abortion laws in california,abortion laws in california 2026,2026,weeks +abortion,"('california abortion laws', 'california abortion laws for minors')",california abortion laws,california abortion laws for minors,4,3,google,2026-03-12 19:36:43.750579,abortion laws in california,abortion laws in california 2026,2026,for minors +abortion,"('california abortion laws', 'california abortion laws 2026')",california abortion laws,california abortion laws 2026,5,3,google,2026-03-12 19:36:43.750579,abortion laws in california,abortion laws in california 2026,2026,2026 +abortion,"('california abortion laws', 'california abortion lawsuit')",california abortion laws,california abortion lawsuit,6,3,google,2026-03-12 19:36:43.750579,abortion laws in california,abortion laws in california 2026,2026,lawsuit +abortion,"('california abortion laws', 'california abortion laws 2024 how many months')",california abortion laws,california abortion laws 2024 how many months,7,3,google,2026-03-12 19:36:43.750579,abortion laws in california,abortion laws in california 2026,2026,2024 how many months +abortion,"('california abortion laws', 'california abortion laws 2024 weeks')",california abortion laws,california abortion laws 2024 weeks,8,3,google,2026-03-12 19:36:43.750579,abortion laws in california,abortion laws in california 2026,2026,2024 weeks +abortion,"('california abortion laws', 'california abortion laws 2022')",california abortion laws,california abortion laws 2022,9,3,google,2026-03-12 19:36:43.750579,abortion laws in california,abortion laws in california 2026,2026,2022 +abortion,"('abortion laws in california history', 'abortion laws in california history and background')",abortion laws in california history,abortion laws in california history and background,1,3,google,2026-03-12 19:36:44.744373,abortion laws in california,abortion laws in california 2026,history,and background +abortion,"('abortion laws in california history', 'abortion laws in california history of')",abortion laws in california history,abortion laws in california history of,2,3,google,2026-03-12 19:36:44.744373,abortion laws in california,abortion laws in california 2026,history,of +abortion,"('abortion laws in california history', 'abortion laws in california history timeline')",abortion laws in california history,abortion laws in california history timeline,3,3,google,2026-03-12 19:36:44.744373,abortion laws in california,abortion laws in california 2026,history,timeline +abortion,"('is abortion legal in california how many weeks', 'abortion law in california how many weeks')",is abortion legal in california how many weeks,abortion law in california how many weeks,1,3,google,2026-03-12 19:36:45.579688,abortion laws in california,abortion laws in california how many weeks,is legal,law +abortion,"('is abortion legal in california how many weeks', 'until how many weeks is abortion legal in california')",is abortion legal in california how many weeks,until how many weeks is abortion legal in california,2,3,google,2026-03-12 19:36:45.579688,abortion laws in california,abortion laws in california how many weeks,is legal,until +abortion,"('is abortion legal in california how many weeks', 'how many weeks can you have an abortion in california')",is abortion legal in california how many weeks,how many weeks can you have an abortion in california,3,3,google,2026-03-12 19:36:45.579688,abortion laws in california,abortion laws in california how many weeks,is legal,can you have an +abortion,"('is abortion legal in california how many weeks', 'how many weeks can you get an abortion california')",is abortion legal in california how many weeks,how many weeks can you get an abortion california,4,3,google,2026-03-12 19:36:45.579688,abortion laws in california,abortion laws in california how many weeks,is legal,can you get an +abortion,"('is abortion legal in california how many weeks', 'california abortion laws how many weeks 2021')",is abortion legal in california how many weeks,california abortion laws how many weeks 2021,5,3,google,2026-03-12 19:36:45.579688,abortion laws in california,abortion laws in california how many weeks,is legal,laws 2021 +abortion,"('is abortion legal in california how many weeks', 'california abortion laws how many weeks 2020')",is abortion legal in california how many weeks,california abortion laws how many weeks 2020,6,3,google,2026-03-12 19:36:45.579688,abortion laws in california,abortion laws in california how many weeks,is legal,laws 2020 +abortion,"('is abortion legal in california how many weeks', 'california abortion laws how many weeks 2022')",is abortion legal in california how many weeks,california abortion laws how many weeks 2022,7,3,google,2026-03-12 19:36:45.579688,abortion laws in california,abortion laws in california how many weeks,is legal,laws 2022 +abortion,"('how many weeks can you have an abortion in california', 'how many weeks can you get an abortion in california 2024')",how many weeks can you have an abortion in california,how many weeks can you get an abortion in california 2024,1,3,google,2026-03-12 19:36:46.562570,abortion laws in california,abortion laws in california how many weeks,can you have an,get 2024 +abortion,"('how many weeks can you have an abortion in california', 'how many weeks can you get an abortion in california 2022')",how many weeks can you have an abortion in california,how many weeks can you get an abortion in california 2022,2,3,google,2026-03-12 19:36:46.562570,abortion laws in california,abortion laws in california how many weeks,can you have an,get 2022 +abortion,"('how many weeks can you have an abortion in california', 'until how many weeks can you have an abortion in california')",how many weeks can you have an abortion in california,until how many weeks can you have an abortion in california,3,3,google,2026-03-12 19:36:46.562570,abortion laws in california,abortion laws in california how many weeks,can you have an,until +abortion,"('how many weeks can you have an abortion in california', 'how many weeks can you not have an abortion in california')",how many weeks can you have an abortion in california,how many weeks can you not have an abortion in california,4,3,google,2026-03-12 19:36:46.562570,abortion laws in california,abortion laws in california how many weeks,can you have an,not +abortion,"('how many weeks can you have an abortion in california', 'after how many weeks can you have an abortion in california')",how many weeks can you have an abortion in california,after how many weeks can you have an abortion in california,5,3,google,2026-03-12 19:36:46.562570,abortion laws in california,abortion laws in california how many weeks,can you have an,after +abortion,"('how many weeks can you have an abortion in california', 'how many weeks can you get an abortion pill in california')",how many weeks can you have an abortion in california,how many weeks can you get an abortion pill in california,6,3,google,2026-03-12 19:36:46.562570,abortion laws in california,abortion laws in california how many weeks,can you have an,get pill +abortion,"('how many weeks can you have an abortion in california', 'how many weeks can you not get an abortion in california')",how many weeks can you have an abortion in california,how many weeks can you not get an abortion in california,7,3,google,2026-03-12 19:36:46.562570,abortion laws in california,abortion laws in california how many weeks,can you have an,not get +abortion,"('how many weeks can you have an abortion in california', 'after how many weeks can you get an abortion in california')",how many weeks can you have an abortion in california,after how many weeks can you get an abortion in california,8,3,google,2026-03-12 19:36:46.562570,abortion laws in california,abortion laws in california how many weeks,can you have an,after get +abortion,"('how many weeks can you have an abortion in california', 'how many weeks can you wait to get an abortion in california')",how many weeks can you have an abortion in california,how many weeks can you wait to get an abortion in california,9,3,google,2026-03-12 19:36:46.562570,abortion laws in california,abortion laws in california how many weeks,can you have an,wait to get +abortion,"('how many weeks can you get an abortion california', 'how many weeks can you get an abortion in california 2024')",how many weeks can you get an abortion california,how many weeks can you get an abortion in california 2024,1,3,google,2026-03-12 19:36:47.913353,abortion laws in california,abortion laws in california how many weeks,can you get an,in 2024 +abortion,"('how many weeks can you get an abortion california', 'how many weeks can you get an abortion in california 2022')",how many weeks can you get an abortion california,how many weeks can you get an abortion in california 2022,2,3,google,2026-03-12 19:36:47.913353,abortion laws in california,abortion laws in california how many weeks,can you get an,in 2022 +abortion,"('how many weeks can you get an abortion california', 'how many weeks can you get an abortion pill in california')",how many weeks can you get an abortion california,how many weeks can you get an abortion pill in california,3,3,google,2026-03-12 19:36:47.913353,abortion laws in california,abortion laws in california how many weeks,can you get an,pill in +abortion,"('how many weeks can you get an abortion california', 'up to how many weeks can you get an abortion california')",how many weeks can you get an abortion california,up to how many weeks can you get an abortion california,4,3,google,2026-03-12 19:36:47.913353,abortion laws in california,abortion laws in california how many weeks,can you get an,up to +abortion,"('how many weeks can you get an abortion california', 'how many weeks can you not get an abortion in california')",how many weeks can you get an abortion california,how many weeks can you not get an abortion in california,5,3,google,2026-03-12 19:36:47.913353,abortion laws in california,abortion laws in california how many weeks,can you get an,not in +abortion,"('how many weeks can you get an abortion california', 'after how many weeks can you get an abortion in california')",how many weeks can you get an abortion california,after how many weeks can you get an abortion in california,6,3,google,2026-03-12 19:36:47.913353,abortion laws in california,abortion laws in california how many weeks,can you get an,after in +abortion,"('how many weeks can you get an abortion california', 'how many weeks do you have to get an abortion california')",how many weeks can you get an abortion california,how many weeks do you have to get an abortion california,7,3,google,2026-03-12 19:36:47.913353,abortion laws in california,abortion laws in california how many weeks,can you get an,do have to +abortion,"('how many weeks can you get an abortion california', ""how many weeks until you can't get an abortion in california"")",how many weeks can you get an abortion california,how many weeks until you can't get an abortion in california,8,3,google,2026-03-12 19:36:47.913353,abortion laws in california,abortion laws in california how many weeks,can you get an,until can't in +abortion,"('how many weeks can you get an abortion california', 'how many weeks can you not have an abortion in california')",how many weeks can you get an abortion california,how many weeks can you not have an abortion in california,9,3,google,2026-03-12 19:36:47.913353,abortion laws in california,abortion laws in california how many weeks,can you get an,not have in +abortion,"('california abortion laws how many weeks 2021', 'california abortion laws how many weeks 2021 california')",california abortion laws how many weeks 2021,california abortion laws how many weeks 2021 california,1,3,google,2026-03-12 19:36:49.225212,abortion laws in california,abortion laws in california how many weeks,2021,2021 +abortion,"('california abortion laws how many weeks 2021', 'california abortion laws how many weeks 2021 law')",california abortion laws how many weeks 2021,california abortion laws how many weeks 2021 law,2,3,google,2026-03-12 19:36:49.225212,abortion laws in california,abortion laws in california how many weeks,2021,law +abortion,"('california abortion laws how many weeks 2021', 'california abortion laws how many weeks 2021 to present')",california abortion laws how many weeks 2021,california abortion laws how many weeks 2021 to present,3,3,google,2026-03-12 19:36:49.225212,abortion laws in california,abortion laws in california how many weeks,2021,to present +abortion,"('california abortion laws how many weeks 2021', 'california abortion laws how many weeks 2021-2024')",california abortion laws how many weeks 2021,california abortion laws how many weeks 2021-2024,4,3,google,2026-03-12 19:36:49.225212,abortion laws in california,abortion laws in california how many weeks,2021,2021-2024 +abortion,"('california abortion laws how many weeks 2020', 'california abortion laws how many weeks 2020 to present')",california abortion laws how many weeks 2020,california abortion laws how many weeks 2020 to present,1,3,google,2026-03-12 19:36:50.582836,abortion laws in california,abortion laws in california how many weeks,2020,to present +abortion,"('california abortion laws how many weeks 2020', 'california abortion laws how many weeks 2020-2024')",california abortion laws how many weeks 2020,california abortion laws how many weeks 2020-2024,2,3,google,2026-03-12 19:36:50.582836,abortion laws in california,abortion laws in california how many weeks,2020,2020-2024 +abortion,"('california abortion laws how many weeks 2020', 'california abortion laws how many weeks 2020 california')",california abortion laws how many weeks 2020,california abortion laws how many weeks 2020 california,3,3,google,2026-03-12 19:36:50.582836,abortion laws in california,abortion laws in california how many weeks,2020,2020 +abortion,"('california abortion laws how many weeks 2020', 'california abortion laws how many weeks 2020 law')",california abortion laws how many weeks 2020,california abortion laws how many weeks 2020 law,4,3,google,2026-03-12 19:36:50.582836,abortion laws in california,abortion laws in california how many weeks,2020,law +abortion,"('california abortion laws how many weeks 2022', 'california abortion laws how many weeks 2022 california')",california abortion laws how many weeks 2022,california abortion laws how many weeks 2022 california,1,3,google,2026-03-12 19:36:51.441261,abortion laws in california,abortion laws in california how many weeks,2022,2022 +abortion,"('california abortion laws how many weeks 2022', 'california abortion laws how many weeks 2022-2023')",california abortion laws how many weeks 2022,california abortion laws how many weeks 2022-2023,2,3,google,2026-03-12 19:36:51.441261,abortion laws in california,abortion laws in california how many weeks,2022,2022-2023 +abortion,"('california abortion laws how many weeks 2022', 'california abortion laws how many weeks 2022 to present')",california abortion laws how many weeks 2022,california abortion laws how many weeks 2022 to present,3,3,google,2026-03-12 19:36:51.441261,abortion laws in california,abortion laws in california how many weeks,2022,to present +abortion,"('california abortion laws how many weeks 2022', 'california abortion laws how many weeks 20224')",california abortion laws how many weeks 2022,california abortion laws how many weeks 20224,4,3,google,2026-03-12 19:36:51.441261,abortion laws in california,abortion laws in california how many weeks,2022,20224 +abortion,"('california abortion laws how many weeks 2022', 'california abortion laws how many weeks 2022 text')",california abortion laws how many weeks 2022,california abortion laws how many weeks 2022 text,5,3,google,2026-03-12 19:36:51.441261,abortion laws in california,abortion laws in california how many weeks,2022,text +abortion,"('abortion legal in california 2024', 'abortion law in california 2024')",abortion legal in california 2024,abortion law in california 2024,1,3,google,2026-03-12 19:36:52.410045,abortion laws in california,abortion laws in california 2024,legal,law +abortion,"('abortion legal in california 2024', 'abortion laws in california 2024 how many weeks')",abortion legal in california 2024,abortion laws in california 2024 how many weeks,2,3,google,2026-03-12 19:36:52.410045,abortion laws in california,abortion laws in california 2024,legal,laws how many weeks +abortion,"('abortion legal in california 2024', 'new abortion law in california 2024')",abortion legal in california 2024,new abortion law in california 2024,3,3,google,2026-03-12 19:36:52.410045,abortion laws in california,abortion laws in california 2024,legal,new law +abortion,"('abortion legal in california 2024', 'abortion law california 2024 update today')",abortion legal in california 2024,abortion law california 2024 update today,4,3,google,2026-03-12 19:36:52.410045,abortion laws in california,abortion laws in california 2024,legal,law update today +abortion,"('abortion legal in california 2024', 'is abortion illegal in california 2024')",abortion legal in california 2024,is abortion illegal in california 2024,5,3,google,2026-03-12 19:36:52.410045,abortion laws in california,abortion laws in california 2024,legal,is illegal +abortion,"('abortion legal in california 2024', 'is abortion banned in california 2024')",abortion legal in california 2024,is abortion banned in california 2024,6,3,google,2026-03-12 19:36:52.410045,abortion laws in california,abortion laws in california 2024,legal,is banned +abortion,"('abortion legal in california 2024', 'new abortion laws in california 2024 update')",abortion legal in california 2024,new abortion laws in california 2024 update,7,3,google,2026-03-12 19:36:52.410045,abortion laws in california,abortion laws in california 2024,legal,new laws update +abortion,"('abortion legal in california 2024', 'is abortion legal in california 2023')",abortion legal in california 2024,is abortion legal in california 2023,8,3,google,2026-03-12 19:36:52.410045,abortion laws in california,abortion laws in california 2024,legal,is 2023 +abortion,"('abortion legal in california 2024', 'abortion legal in california 2022')",abortion legal in california 2024,abortion legal in california 2022,9,3,google,2026-03-12 19:36:52.410045,abortion laws in california,abortion laws in california 2024,legal,2022 +abortion,"('new abortion laws in california 2024 update', 'new california abortion laws 2024 update today')",new abortion laws in california 2024 update,new california abortion laws 2024 update today,1,3,google,2026-03-12 19:36:53.438805,abortion laws in california,abortion laws in california 2024,new update,today +abortion,"('new abortion laws in california 2024 update', 'new abortion laws in california')",new abortion laws in california 2024 update,new abortion laws in california,2,3,google,2026-03-12 19:36:53.438805,abortion laws in california,abortion laws in california 2024,new update,new update +abortion,"('new abortion laws in california 2024 update', 'new abortion laws 2021 california')",new abortion laws in california 2024 update,new abortion laws 2021 california,3,3,google,2026-03-12 19:36:53.438805,abortion laws in california,abortion laws in california 2024,new update,2021 +abortion,"('new abortion laws in california 2024 update', 'new abortion law in california 2023')",new abortion laws in california 2024 update,new abortion law in california 2023,4,3,google,2026-03-12 19:36:53.438805,abortion laws in california,abortion laws in california 2024,new update,law 2023 +abortion,"('new abortion laws in california 2024 update', 'new abortion laws in california 2022')",new abortion laws in california 2024 update,new abortion laws in california 2022,5,3,google,2026-03-12 19:36:53.438805,abortion laws in california,abortion laws in california 2024,new update,2022 +abortion,"('new abortion law in california 2024', 'new abortion laws in california 2024 update')",new abortion law in california 2024,new abortion laws in california 2024 update,1,3,google,2026-03-12 19:36:54.454465,abortion laws in california,abortion laws in california 2024,new law,laws update +abortion,"('new abortion law in california 2024', 'abortion law in california 2024')",new abortion law in california 2024,abortion law in california 2024,2,3,google,2026-03-12 19:36:54.454465,abortion laws in california,abortion laws in california 2024,new law,new law +abortion,"('new abortion law in california 2024', 'abortion legal in california 2024')",new abortion law in california 2024,abortion legal in california 2024,3,3,google,2026-03-12 19:36:54.454465,abortion laws in california,abortion laws in california 2024,new law,legal +abortion,"('new abortion law in california 2024', 'abortion laws in california 2024 how many weeks')",new abortion law in california 2024,abortion laws in california 2024 how many weeks,4,3,google,2026-03-12 19:36:54.454465,abortion laws in california,abortion laws in california 2024,new law,laws how many weeks +abortion,"('new abortion law in california 2024', 'new california abortion laws 2024 update today')",new abortion law in california 2024,new california abortion laws 2024 update today,5,3,google,2026-03-12 19:36:54.454465,abortion laws in california,abortion laws in california 2024,new law,laws update today +abortion,"('new abortion law in california 2024', 'new abortion laws in california')",new abortion law in california 2024,new abortion laws in california,6,3,google,2026-03-12 19:36:54.454465,abortion laws in california,abortion laws in california 2024,new law,laws +abortion,"('new abortion law in california 2024', 'new abortion law in california 2023')",new abortion law in california 2024,new abortion law in california 2023,7,3,google,2026-03-12 19:36:54.454465,abortion laws in california,abortion laws in california 2024,new law,2023 +abortion,"('new abortion law in california 2024', 'new abortion laws 2021 california')",new abortion law in california 2024,new abortion laws 2021 california,8,3,google,2026-03-12 19:36:54.454465,abortion laws in california,abortion laws in california 2024,new law,laws 2021 +abortion,"('new abortion law in california 2024', 'new abortion law in california 2022')",new abortion law in california 2024,new abortion law in california 2022,9,3,google,2026-03-12 19:36:54.454465,abortion laws in california,abortion laws in california 2024,new law,2022 +abortion,"('abortion law california 2024 update today', 'abortion law california 2023')",abortion law california 2024 update today,abortion law california 2023,1,3,google,2026-03-12 19:36:55.896547,abortion laws in california,abortion laws in california 2024,law update today,2023 +abortion,"('abortion law california 2024 update today', 'abortion law california 2021')",abortion law california 2024 update today,abortion law california 2021,2,3,google,2026-03-12 19:36:55.896547,abortion laws in california,abortion laws in california 2024,law update today,2021 +abortion,"('abortion law california 2024 update today', 'abortion law california 28 days')",abortion law california 2024 update today,abortion law california 28 days,3,3,google,2026-03-12 19:36:55.896547,abortion laws in california,abortion laws in california 2024,law update today,28 days +abortion,"('is abortion illegal in california 2024', 'is abortion legal in california 2024')",is abortion illegal in california 2024,is abortion legal in california 2024,1,3,google,2026-03-12 19:36:57.180712,abortion laws in california,abortion laws in california 2024,is illegal,legal +abortion,"('is abortion illegal in california 2024', 'is abortion banned in california 2024')",is abortion illegal in california 2024,is abortion banned in california 2024,2,3,google,2026-03-12 19:36:57.180712,abortion laws in california,abortion laws in california 2024,is illegal,banned +abortion,"('is abortion illegal in california 2024', 'what is the abortion law in california 2024')",is abortion illegal in california 2024,what is the abortion law in california 2024,3,3,google,2026-03-12 19:36:57.180712,abortion laws in california,abortion laws in california 2024,is illegal,what the law +abortion,"('is abortion illegal in california 2024', 'abortion laws in california 2024 how many weeks')",is abortion illegal in california 2024,abortion laws in california 2024 how many weeks,4,3,google,2026-03-12 19:36:57.180712,abortion laws in california,abortion laws in california 2024,is illegal,laws how many weeks +abortion,"('is abortion illegal in california 2024', 'when did abortion become legal in california')",is abortion illegal in california 2024,when did abortion become legal in california,5,3,google,2026-03-12 19:36:57.180712,abortion laws in california,abortion laws in california 2024,is illegal,when did become legal +abortion,"('is abortion illegal in california 2024', 'is abortion illegal in california 2023')",is abortion illegal in california 2024,is abortion illegal in california 2023,6,3,google,2026-03-12 19:36:57.180712,abortion laws in california,abortion laws in california 2024,is illegal,2023 +abortion,"('is abortion illegal in california 2024', 'is abortion illegal in california 2022')",is abortion illegal in california 2024,is abortion illegal in california 2022,7,3,google,2026-03-12 19:36:57.180712,abortion laws in california,abortion laws in california 2024,is illegal,2022 +abortion,"('is abortion illegal in california 2024', 'is abortion illegal in california today')",is abortion illegal in california 2024,is abortion illegal in california today,8,3,google,2026-03-12 19:36:57.180712,abortion laws in california,abortion laws in california 2024,is illegal,today +abortion,"('is abortion illegal in california 2024', 'is abortion illegal in california now')",is abortion illegal in california 2024,is abortion illegal in california now,9,3,google,2026-03-12 19:36:57.180712,abortion laws in california,abortion laws in california 2024,is illegal,now +abortion,"('abortion limits california 2024', 'abortion law california 2024')",abortion limits california 2024,abortion law california 2024,1,3,google,2026-03-12 19:36:58.358734,abortion laws in california,abortion laws in california 2024,limits,law +abortion,"('abortion limits california 2024', 'abortion law california 2024 update today')",abortion limits california 2024,abortion law california 2024 update today,2,3,google,2026-03-12 19:36:58.358734,abortion laws in california,abortion laws in california 2024,limits,law update today +abortion,"('abortion limits california 2024', 'new abortion law california 2024')",abortion limits california 2024,new abortion law california 2024,3,3,google,2026-03-12 19:36:58.358734,abortion laws in california,abortion laws in california 2024,limits,new law +abortion,"('abortion limits california 2024', 'abortion laws in california 2024 how many weeks')",abortion limits california 2024,abortion laws in california 2024 how many weeks,4,3,google,2026-03-12 19:36:58.358734,abortion laws in california,abortion laws in california 2024,limits,laws in how many weeks +abortion,"('abortion limits california 2024', 'california abortion limit')",abortion limits california 2024,california abortion limit,5,3,google,2026-03-12 19:36:58.358734,abortion laws in california,abortion laws in california 2024,limits,limit +abortion,"('abortion limits california 2024', 'what is the legal abortion limit in california')",abortion limits california 2024,what is the legal abortion limit in california,6,3,google,2026-03-12 19:36:58.358734,abortion laws in california,abortion laws in california 2024,limits,what is the legal limit in +abortion,"('abortion limits california 2024', 'abortion laws california 2023')",abortion limits california 2024,abortion laws california 2023,7,3,google,2026-03-12 19:36:58.358734,abortion laws in california,abortion laws in california 2024,limits,laws 2023 +abortion,"('abortion limits california 2024', 'california abortion limits 2022')",abortion limits california 2024,california abortion limits 2022,8,3,google,2026-03-12 19:36:58.358734,abortion laws in california,abortion laws in california 2024,limits,2022 +abortion,"('abortion limits california 2024', 'abortion limit ca')",abortion limits california 2024,abortion limit ca,9,3,google,2026-03-12 19:36:58.358734,abortion laws in california,abortion laws in california 2024,limits,limit ca +abortion,"('is abortion legal in california for minors', 'abortion laws in california for minors')",is abortion legal in california for minors,abortion laws in california for minors,1,3,google,2026-03-12 19:36:59.523389,abortion laws in california,abortion laws in california for minors,is legal,laws +abortion,"('is abortion legal in california for minors', 'what age can you abort a baby in california')",is abortion legal in california for minors,what age can you abort a baby in california,2,3,google,2026-03-12 19:36:59.523389,abortion laws in california,abortion laws in california for minors,is legal,what age can you abort a baby +abortion,"('age limit for abortion in california', 'what is the legal age for abortion in california')",age limit for abortion in california,what is the legal age for abortion in california,1,3,google,2026-03-12 19:37:00.493118,abortion laws in california,abortion laws in california for minors,age limit,what is the legal +abortion,"('age limit for abortion in california', 'age for abortion in california')",age limit for abortion in california,age for abortion in california,2,3,google,2026-03-12 19:37:00.493118,abortion laws in california,abortion laws in california for minors,age limit,age limit +abortion,"('new abortion law in california 2023', 'new abortion law in california 2023 overturned')",new abortion law in california 2023,new abortion law in california 2023 overturned,1,3,google,2026-03-12 19:37:01.331498,abortion laws in california,abortion laws in california 2023,new law,overturned +abortion,"('new abortion law in california 2023', 'abortion laws in california 2023')",new abortion law in california 2023,abortion laws in california 2023,2,3,google,2026-03-12 19:37:01.331498,abortion laws in california,abortion laws in california 2023,new law,laws +abortion,"('new abortion law in california 2023', 'new abortion laws in california')",new abortion law in california 2023,new abortion laws in california,3,3,google,2026-03-12 19:37:01.331498,abortion laws in california,abortion laws in california 2023,new law,laws +abortion,"('new abortion law in california 2023', 'when did abortion become legal in california')",new abortion law in california 2023,when did abortion become legal in california,4,3,google,2026-03-12 19:37:01.331498,abortion laws in california,abortion laws in california 2023,new law,when did become legal +abortion,"('new abortion law in california 2023', 'new abortion law in california 2022')",new abortion law in california 2023,new abortion law in california 2022,5,3,google,2026-03-12 19:37:01.331498,abortion laws in california,abortion laws in california 2023,new law,2022 +abortion,"('new abortion law in california 2023 overturned', 'new abortion laws in california')",new abortion law in california 2023 overturned,new abortion laws in california,1,3,google,2026-03-12 19:37:02.343139,abortion laws in california,abortion laws in california 2023,new law overturned,laws +abortion,"('new abortion law in california 2023 overturned', 'new abortion law in california 2023')",new abortion law in california 2023 overturned,new abortion law in california 2023,2,3,google,2026-03-12 19:37:02.343139,abortion laws in california,abortion laws in california 2023,new law overturned,new law overturned +abortion,"('new abortion law in california 2023 overturned', 'new abortion law in california 2022')",new abortion law in california 2023 overturned,new abortion law in california 2022,3,3,google,2026-03-12 19:37:02.343139,abortion laws in california,abortion laws in california 2023,new law overturned,2022 +abortion,"('new abortion law in california 2023 overturned', 'new abortion laws 2021 california')",new abortion law in california 2023 overturned,new abortion laws 2021 california,4,3,google,2026-03-12 19:37:02.343139,abortion laws in california,abortion laws in california 2023,new law overturned,laws 2021 +abortion,"('california abortion laws how many weeks', 'ca abortion laws how many weeks')",california abortion laws how many weeks,ca abortion laws how many weeks,1,3,google,2026-03-12 19:37:03.572424,abortion laws in california,abortion laws in california 2024 how many weeks,2024 how many weeks,ca +abortion,"('california abortion laws how many weeks', 'california abortion law up to how many weeks')",california abortion laws how many weeks,california abortion law up to how many weeks,2,3,google,2026-03-12 19:37:03.572424,abortion laws in california,abortion laws in california 2024 how many weeks,2024 how many weeks,law up to +abortion,"('california abortion laws how many weeks', 'california legal abortion up to how many weeks')",california abortion laws how many weeks,california legal abortion up to how many weeks,3,3,google,2026-03-12 19:37:03.572424,abortion laws in california,abortion laws in california 2024 how many weeks,2024 how many weeks,legal up to +abortion,"('california abortion laws how many weeks', 'abortion laws in california 2024 how many weeks')",california abortion laws how many weeks,abortion laws in california 2024 how many weeks,4,3,google,2026-03-12 19:37:03.572424,abortion laws in california,abortion laws in california 2024 how many weeks,2024 how many weeks,in 2024 +abortion,"('california abortion laws how many weeks', 'how many weeks can you get an abortion california')",california abortion laws how many weeks,how many weeks can you get an abortion california,5,3,google,2026-03-12 19:37:03.572424,abortion laws in california,abortion laws in california 2024 how many weeks,2024 how many weeks,can you get an +abortion,"('california abortion laws how many weeks', 'california abortion laws how many weeks 2021')",california abortion laws how many weeks,california abortion laws how many weeks 2021,6,3,google,2026-03-12 19:37:03.572424,abortion laws in california,abortion laws in california 2024 how many weeks,2024 how many weeks,2021 +abortion,"('california abortion laws how many weeks', 'california abortion laws how many weeks 2020')",california abortion laws how many weeks,california abortion laws how many weeks 2020,7,3,google,2026-03-12 19:37:03.572424,abortion laws in california,abortion laws in california 2024 how many weeks,2024 how many weeks,2020 +abortion,"('california abortion laws how many weeks', 'california abortion laws how many weeks 2022')",california abortion laws how many weeks,california abortion laws how many weeks 2022,8,3,google,2026-03-12 19:37:03.572424,abortion laws in california,abortion laws in california 2024 how many weeks,2024 how many weeks,2022 +abortion,"('abortion laws california 2023', 'abortion laws in california 2023')",abortion laws california 2023,abortion laws in california 2023,1,3,google,2026-03-12 19:37:04.872175,abortion laws in california,abortion laws in california 2024 how many weeks,2023,in +abortion,"('abortion laws california 2023', 'abortion laws california 2021')",abortion laws california 2023,abortion laws california 2021,2,3,google,2026-03-12 19:37:04.872175,abortion laws in california,abortion laws in california 2024 how many weeks,2023,2021 +abortion,"('abortion laws california 2023', 'abortion laws california 2022')",abortion laws california 2023,abortion laws california 2022,3,3,google,2026-03-12 19:37:04.872175,abortion laws in california,abortion laws in california 2024 how many weeks,2023,2022 +abortion,"('abortion law in california', 'abortion law in california 2025')",abortion law in california,abortion law in california 2025,1,3,google,2026-03-12 19:37:06.354994,abortion laws in california,abortion legal in california,law,2025 +abortion,"('abortion law in california', 'abortion law in california how many weeks')",abortion law in california,abortion law in california how many weeks,2,3,google,2026-03-12 19:37:06.354994,abortion laws in california,abortion legal in california,law,how many weeks +abortion,"('abortion law in california', 'abortion law in california 2024')",abortion law in california,abortion law in california 2024,3,3,google,2026-03-12 19:37:06.354994,abortion laws in california,abortion legal in california,law,2024 +abortion,"('abortion law in california', 'abortion legal in california')",abortion law in california,abortion legal in california,4,3,google,2026-03-12 19:37:06.354994,abortion laws in california,abortion legal in california,law,legal +abortion,"('abortion law in california', 'abortion legal in california 2024')",abortion law in california,abortion legal in california 2024,5,3,google,2026-03-12 19:37:06.354994,abortion laws in california,abortion legal in california,law,legal 2024 +abortion,"('abortion law in california', 'abortion laws in california for minors')",abortion law in california,abortion laws in california for minors,6,3,google,2026-03-12 19:37:06.354994,abortion laws in california,abortion legal in california,law,laws for minors +abortion,"('abortion law in california', 'abortion laws in california 2023')",abortion law in california,abortion laws in california 2023,7,3,google,2026-03-12 19:37:06.354994,abortion laws in california,abortion legal in california,law,laws 2023 +abortion,"('abortion law in california', 'abortion laws in california 2024 how many weeks')",abortion law in california,abortion laws in california 2024 how many weeks,8,3,google,2026-03-12 19:37:06.354994,abortion laws in california,abortion legal in california,law,laws 2024 how many weeks +abortion,"('abortion law in california', 'abortion laws in california 2026')",abortion law in california,abortion laws in california 2026,9,3,google,2026-03-12 19:37:06.354994,abortion laws in california,abortion legal in california,law,laws 2026 +abortion,"('abortion law in california 2025', 'new abortion law in california 2025')",abortion law in california 2025,new abortion law in california 2025,1,3,google,2026-03-12 19:37:07.392319,abortion laws in california,abortion legal in california,law 2025,new +abortion,"('abortion law in california 2025', 'abortion law in california 2023')",abortion law in california 2025,abortion law in california 2023,2,3,google,2026-03-12 19:37:07.392319,abortion laws in california,abortion legal in california,law 2025,2023 +abortion,"('abortion law in california 2025', 'abortion law in california 2021')",abortion law in california 2025,abortion law in california 2021,3,3,google,2026-03-12 19:37:07.392319,abortion laws in california,abortion legal in california,law 2025,2021 +abortion,"('abortion law in california 2025', 'abortion law in california 2022')",abortion law in california 2025,abortion law in california 2022,4,3,google,2026-03-12 19:37:07.392319,abortion laws in california,abortion legal in california,law 2025,2022 +abortion,"('abortion law in california 2024', 'abortion legal in california 2024')",abortion law in california 2024,abortion legal in california 2024,1,3,google,2026-03-12 19:37:08.531365,abortion laws in california,abortion legal in california,law 2024,legal +abortion,"('abortion law in california 2024', 'abortion laws in california 2024 how many weeks')",abortion law in california 2024,abortion laws in california 2024 how many weeks,2,3,google,2026-03-12 19:37:08.531365,abortion laws in california,abortion legal in california,law 2024,laws how many weeks +abortion,"('abortion law in california 2024', 'new abortion law in california 2024')",abortion law in california 2024,new abortion law in california 2024,3,3,google,2026-03-12 19:37:08.531365,abortion laws in california,abortion legal in california,law 2024,new +abortion,"('abortion law in california 2024', 'new abortion laws in california 2024 update')",abortion law in california 2024,new abortion laws in california 2024 update,4,3,google,2026-03-12 19:37:08.531365,abortion laws in california,abortion legal in california,law 2024,new laws update +abortion,"('abortion law in california 2024', 'abortion law california 2024 update today')",abortion law in california 2024,abortion law california 2024 update today,5,3,google,2026-03-12 19:37:08.531365,abortion laws in california,abortion legal in california,law 2024,update today +abortion,"('abortion law in california 2024', 'is abortion illegal in california 2024')",abortion law in california 2024,is abortion illegal in california 2024,6,3,google,2026-03-12 19:37:08.531365,abortion laws in california,abortion legal in california,law 2024,is illegal +abortion,"('abortion law in california 2024', 'abortion limits california 2024')",abortion law in california 2024,abortion limits california 2024,7,3,google,2026-03-12 19:37:08.531365,abortion laws in california,abortion legal in california,law 2024,limits +abortion,"('abortion law in california 2024', 'abortion law in california 2023')",abortion law in california 2024,abortion law in california 2023,8,3,google,2026-03-12 19:37:08.531365,abortion laws in california,abortion legal in california,law 2024,2023 +abortion,"('abortion law in california 2024', 'abortion law in california 2021')",abortion law in california 2024,abortion law in california 2021,9,3,google,2026-03-12 19:37:08.531365,abortion laws in california,abortion legal in california,law 2024,2021 +abortion,"('abortion law in california how many weeks', 'is abortion legal in california how many weeks')",abortion law in california how many weeks,is abortion legal in california how many weeks,1,3,google,2026-03-12 19:37:09.806647,abortion laws in california,abortion legal in california,law how many weeks,is legal +abortion,"('abortion law in california how many weeks', 'abortion laws in california 2024 how many weeks')",abortion law in california how many weeks,abortion laws in california 2024 how many weeks,2,3,google,2026-03-12 19:37:09.806647,abortion laws in california,abortion legal in california,law how many weeks,laws 2024 +abortion,"('abortion law in california how many weeks', 'how many weeks can you get an abortion california')",abortion law in california how many weeks,how many weeks can you get an abortion california,3,3,google,2026-03-12 19:37:09.806647,abortion laws in california,abortion legal in california,law how many weeks,can you get an +abortion,"('abortion law in california how many weeks', 'how many weeks can you have an abortion in california')",abortion law in california how many weeks,how many weeks can you have an abortion in california,4,3,google,2026-03-12 19:37:09.806647,abortion laws in california,abortion legal in california,law how many weeks,can you have an +abortion,"('abortion law in california how many weeks', 'california abortion laws how many weeks 2021')",abortion law in california how many weeks,california abortion laws how many weeks 2021,5,3,google,2026-03-12 19:37:09.806647,abortion laws in california,abortion legal in california,law how many weeks,laws 2021 +abortion,"('abortion law in california how many weeks', 'california abortion laws how many weeks 2020')",abortion law in california how many weeks,california abortion laws how many weeks 2020,6,3,google,2026-03-12 19:37:09.806647,abortion laws in california,abortion legal in california,law how many weeks,laws 2020 +abortion,"('legal abortion in california weeks', 'how many weeks can you have an abortion in california')",legal abortion in california weeks,how many weeks can you have an abortion in california,1,3,google,2026-03-12 19:37:11.187178,abortion laws in california,abortion legal in california,weeks,how many can you have an +abortion,"('legal abortion in california weeks', 'how late can you have an abortion in california')",legal abortion in california weeks,how late can you have an abortion in california,2,3,google,2026-03-12 19:37:11.187178,abortion laws in california,abortion legal in california,weeks,how late can you have an +abortion,"('legal abortion in california weeks', 'california abortion laws how many weeks')",legal abortion in california weeks,california abortion laws how many weeks,3,3,google,2026-03-12 19:37:11.187178,abortion laws in california,abortion legal in california,weeks,laws how many +abortion,"('legal abortion in california weeks', 'legal abortion in ca')",legal abortion in california weeks,legal abortion in ca,4,3,google,2026-03-12 19:37:11.187178,abortion laws in california,abortion legal in california,weeks,ca +abortion,"('legal abortion in california weeks', 'how many weeks is it legal to have an abortion in california')",legal abortion in california weeks,how many weeks is it legal to have an abortion in california,5,3,google,2026-03-12 19:37:11.187178,abortion laws in california,abortion legal in california,weeks,how many is it to have an +abortion,"('abortion rules in california', 'abortion laws in california')",abortion rules in california,abortion laws in california,1,3,google,2026-03-12 19:37:12.625859,abortion laws in california,abortion legal in california,rules,laws +abortion,"('abortion rules in california', 'abortion legal in california')",abortion rules in california,abortion legal in california,2,3,google,2026-03-12 19:37:12.625859,abortion laws in california,abortion legal in california,rules,legal +abortion,"('abortion rules in california', 'abortion limit in california')",abortion rules in california,abortion limit in california,3,3,google,2026-03-12 19:37:12.625859,abortion laws in california,abortion legal in california,rules,limit +abortion,"('abortion rules in california', 'abortion laws in california 2025')",abortion rules in california,abortion laws in california 2025,4,3,google,2026-03-12 19:37:12.625859,abortion laws in california,abortion legal in california,rules,laws 2025 +abortion,"('abortion rules in california', 'abortion illegal in california')",abortion rules in california,abortion illegal in california,5,3,google,2026-03-12 19:37:12.625859,abortion laws in california,abortion legal in california,rules,illegal +abortion,"('abortion rules in california', 'abortion laws in california 2024')",abortion rules in california,abortion laws in california 2024,6,3,google,2026-03-12 19:37:12.625859,abortion laws in california,abortion legal in california,rules,laws 2024 +abortion,"('abortion rules in california', 'abortion age in california')",abortion rules in california,abortion age in california,7,3,google,2026-03-12 19:37:12.625859,abortion laws in california,abortion legal in california,rules,age +abortion,"('abortion rules in california', 'abortion laws in california how many weeks')",abortion rules in california,abortion laws in california how many weeks,8,3,google,2026-03-12 19:37:12.625859,abortion laws in california,abortion legal in california,rules,laws how many weeks +abortion,"('abortion rules in california', 'abortion limit in california 2024')",abortion rules in california,abortion limit in california 2024,9,3,google,2026-03-12 19:37:12.625859,abortion laws in california,abortion legal in california,rules,limit 2024 +abortion,"('abortion banned in california', 'abortion laws in california')",abortion banned in california,abortion laws in california,1,3,google,2026-03-12 19:37:13.950832,abortion laws in california,abortion legal in california,banned,laws +abortion,"('abortion banned in california', 'abortion legal in california')",abortion banned in california,abortion legal in california,2,3,google,2026-03-12 19:37:13.950832,abortion laws in california,abortion legal in california,banned,legal +abortion,"('abortion banned in california', 'abortion laws in california 2025')",abortion banned in california,abortion laws in california 2025,3,3,google,2026-03-12 19:37:13.950832,abortion laws in california,abortion legal in california,banned,laws 2025 +abortion,"('abortion banned in california', 'abortion illegal in california')",abortion banned in california,abortion illegal in california,4,3,google,2026-03-12 19:37:13.950832,abortion laws in california,abortion legal in california,banned,illegal +abortion,"('abortion banned in california', 'abortion laws in california 2024')",abortion banned in california,abortion laws in california 2024,5,3,google,2026-03-12 19:37:13.950832,abortion laws in california,abortion legal in california,banned,laws 2024 +abortion,"('abortion banned in california', 'abortion laws in california how many weeks')",abortion banned in california,abortion laws in california how many weeks,6,3,google,2026-03-12 19:37:13.950832,abortion laws in california,abortion legal in california,banned,laws how many weeks +abortion,"('abortion banned in california', 'abortion restrictions in california')",abortion banned in california,abortion restrictions in california,7,3,google,2026-03-12 19:37:13.950832,abortion laws in california,abortion legal in california,banned,restrictions +abortion,"('abortion banned in california', 'abortion legal in california 2024')",abortion banned in california,abortion legal in california 2024,8,3,google,2026-03-12 19:37:13.950832,abortion laws in california,abortion legal in california,banned,legal 2024 +abortion,"('abortion banned in california', 'abortion laws in california for minors')",abortion banned in california,abortion laws in california for minors,9,3,google,2026-03-12 19:37:13.950832,abortion laws in california,abortion legal in california,banned,laws for minors +abortion,"('abortion restrictions in california', 'abortion laws in california')",abortion restrictions in california,abortion laws in california,1,3,google,2026-03-12 19:37:15.308092,abortion laws in california,abortion illegal in california,restrictions,laws +abortion,"('abortion restrictions in california', 'abortion legal in california')",abortion restrictions in california,abortion legal in california,2,3,google,2026-03-12 19:37:15.308092,abortion laws in california,abortion illegal in california,restrictions,legal +abortion,"('abortion restrictions in california', 'abortion limit in california')",abortion restrictions in california,abortion limit in california,3,3,google,2026-03-12 19:37:15.308092,abortion laws in california,abortion illegal in california,restrictions,limit +abortion,"('abortion restrictions in california', 'abortion laws in california 2025')",abortion restrictions in california,abortion laws in california 2025,4,3,google,2026-03-12 19:37:15.308092,abortion laws in california,abortion illegal in california,restrictions,laws 2025 +abortion,"('abortion restrictions in california', 'abortion rules in california')",abortion restrictions in california,abortion rules in california,5,3,google,2026-03-12 19:37:15.308092,abortion laws in california,abortion illegal in california,restrictions,rules +abortion,"('abortion restrictions in california', 'abortion laws in california 2024')",abortion restrictions in california,abortion laws in california 2024,6,3,google,2026-03-12 19:37:15.308092,abortion laws in california,abortion illegal in california,restrictions,laws 2024 +abortion,"('abortion restrictions in california', 'abortion ban in california')",abortion restrictions in california,abortion ban in california,7,3,google,2026-03-12 19:37:15.308092,abortion laws in california,abortion illegal in california,restrictions,ban +abortion,"('abortion restrictions in california', 'abortion laws in california how many weeks')",abortion restrictions in california,abortion laws in california how many weeks,8,3,google,2026-03-12 19:37:15.308092,abortion laws in california,abortion illegal in california,restrictions,laws how many weeks +abortion,"('abortion restrictions in california', 'abortion limit in california 2024')",abortion restrictions in california,abortion limit in california 2024,9,3,google,2026-03-12 19:37:15.308092,abortion laws in california,abortion illegal in california,restrictions,limit 2024 +abortion,"('abortion clinics in bay area', 'abortion clinics in the bay area')",abortion clinics in bay area,abortion clinics in the bay area,1,4,google,2026-03-12 19:37:16.421701,abortion clinic san francisco ca,abortion clinics in san francisco,bay area,the +abortion,"('abortion clinics in bay area', 'abortion clinics in san francisco')",abortion clinics in bay area,abortion clinics in san francisco,2,4,google,2026-03-12 19:37:16.421701,abortion clinic san francisco ca,abortion clinics in san francisco,bay area,san francisco +abortion,"('abortion clinics in bay area', 'abortion options in california')",abortion clinics in bay area,abortion options in california,3,4,google,2026-03-12 19:37:16.421701,abortion clinic san francisco ca,abortion clinics in san francisco,bay area,options california +abortion,"('abortion clinics in bay area', 'abortion in bay area')",abortion clinics in bay area,abortion in bay area,4,4,google,2026-03-12 19:37:16.421701,abortion clinic san francisco ca,abortion clinics in san francisco,bay area,bay area +abortion,"('are there free abortion clinics in california', 'free abortion clinics near me')",are there free abortion clinics in california,free abortion clinics near me,1,4,google,2026-03-12 19:37:17.908306,abortion clinic san francisco ca,free abortion clinics in california,are there,near me +abortion,"('are there free abortion clinics in california', 'abortion free in california')",are there free abortion clinics in california,abortion free in california,2,4,google,2026-03-12 19:37:17.908306,abortion clinic san francisco ca,free abortion clinics in california,are there,are there +abortion,"('are there free abortion clinics in california', 'is abortion free in california 2021')",are there free abortion clinics in california,is abortion free in california 2021,3,4,google,2026-03-12 19:37:17.908306,abortion clinic san francisco ca,free abortion clinics in california,are there,is 2021 +abortion,"('free abortion clinics near me', 'free abortion clinics near me open now')",free abortion clinics near me,free abortion clinics near me open now,1,4,google,2026-03-12 19:37:19.047555,abortion clinic san francisco ca,free abortion clinics in california,near me,open now +abortion,"('free abortion clinics near me', 'free abortion clinic near me volunteer')",free abortion clinics near me,free abortion clinic near me volunteer,2,4,google,2026-03-12 19:37:19.047555,abortion clinic san francisco ca,free abortion clinics in california,near me,clinic volunteer +abortion,"('free abortion clinics near me', 'free abortion clinic near me within 5 mi')",free abortion clinics near me,free abortion clinic near me within 5 mi,3,4,google,2026-03-12 19:37:19.047555,abortion clinic san francisco ca,free abortion clinics in california,near me,clinic within 5 mi +abortion,"('free abortion clinics near me', 'free abortion clinic near me within 20 mi')",free abortion clinics near me,free abortion clinic near me within 20 mi,4,4,google,2026-03-12 19:37:19.047555,abortion clinic san francisco ca,free abortion clinics in california,near me,clinic within 20 mi +abortion,"('free abortion clinics near me', 'free abortion clinic near me within 8.1 km')",free abortion clinics near me,free abortion clinic near me within 8.1 km,5,4,google,2026-03-12 19:37:19.047555,abortion clinic san francisco ca,free abortion clinics in california,near me,clinic within 8.1 km +abortion,"('free abortion clinics near me', 'free abortion centers near me')",free abortion clinics near me,free abortion centers near me,6,4,google,2026-03-12 19:37:19.047555,abortion clinic san francisco ca,free abortion clinics in california,near me,centers +abortion,"('free abortion clinics near me', 'free government abortion clinic near me')",free abortion clinics near me,free government abortion clinic near me,7,4,google,2026-03-12 19:37:19.047555,abortion clinic san francisco ca,free abortion clinics in california,near me,government clinic +abortion,"('free abortion clinics near me', 'free cat abortion clinic near me')",free abortion clinics near me,free cat abortion clinic near me,8,4,google,2026-03-12 19:37:19.047555,abortion clinic san francisco ca,free abortion clinics in california,near me,cat clinic +abortion,"('free abortion clinics near me', 'is there free abortion clinics near me')",free abortion clinics near me,is there free abortion clinics near me,9,4,google,2026-03-12 19:37:19.047555,abortion clinic san francisco ca,free abortion clinics in california,near me,is there +abortion,"(""women's clinic free near me"", 'woman free clinic near me')",women's clinic free near me,woman free clinic near me,1,4,google,2026-03-12 19:37:20.244075,abortion clinic san francisco ca,abortion clinic for free near me,women's,woman +abortion,"(""women's clinic free near me"", ""women's clinic free ultrasound near me"")",women's clinic free near me,women's clinic free ultrasound near me,2,4,google,2026-03-12 19:37:20.244075,abortion clinic san francisco ca,abortion clinic for free near me,women's,ultrasound +abortion,"(""women's clinic free near me"", ""women's health clinic free near me"")",women's clinic free near me,women's health clinic free near me,3,4,google,2026-03-12 19:37:20.244075,abortion clinic san francisco ca,abortion clinic for free near me,women's,health +abortion,"(""women's clinic free near me"", ""women's clinic free pregnancy test near me"")",women's clinic free near me,women's clinic free pregnancy test near me,4,4,google,2026-03-12 19:37:20.244075,abortion clinic san francisco ca,abortion clinic for free near me,women's,pregnancy test +abortion,"(""women's clinic free near me"", ""women's center free ultrasound near me"")",women's clinic free near me,women's center free ultrasound near me,5,4,google,2026-03-12 19:37:20.244075,abortion clinic san francisco ca,abortion clinic for free near me,women's,center ultrasound +abortion,"(""women's clinic free near me"", ""free women's clinic near me no insurance"")",women's clinic free near me,free women's clinic near me no insurance,6,4,google,2026-03-12 19:37:20.244075,abortion clinic san francisco ca,abortion clinic for free near me,women's,no insurance +abortion,"(""women's clinic free near me"", ""free women's clinic near me open now"")",women's clinic free near me,free women's clinic near me open now,7,4,google,2026-03-12 19:37:20.244075,abortion clinic san francisco ca,abortion clinic for free near me,women's,open now +abortion,"(""women's clinic free near me"", ""free women's clinic near me within 5 mi"")",women's clinic free near me,free women's clinic near me within 5 mi,8,4,google,2026-03-12 19:37:20.244075,abortion clinic san francisco ca,abortion clinic for free near me,women's,within 5 mi +abortion,"(""women's clinic free near me"", ""free women's clinic near me walk in"")",women's clinic free near me,free women's clinic near me walk in,9,4,google,2026-03-12 19:37:20.244075,abortion clinic san francisco ca,abortion clinic for free near me,women's,walk in +abortion,"('free abortion clinic near me within 8.1 km', 'free abortion clinic near me')",free abortion clinic near me within 8.1 km,free abortion clinic near me,1,4,google,2026-03-12 19:37:21.091227,abortion clinic san francisco ca,abortion clinic for free near me,within 8.1 km,within 8.1 km +abortion,"('free abortion clinic near me within 8.1 km', 'free abortion centers near me')",free abortion clinic near me within 8.1 km,free abortion centers near me,2,4,google,2026-03-12 19:37:21.091227,abortion clinic san francisco ca,abortion clinic for free near me,within 8.1 km,centers +abortion,"('free abortion clinic near me within 8.1 km', 'free abortion clinic near washington dc')",free abortion clinic near me within 8.1 km,free abortion clinic near washington dc,3,4,google,2026-03-12 19:37:21.091227,abortion clinic san francisco ca,abortion clinic for free near me,within 8.1 km,washington dc +abortion,"(""women's clinic free ultrasound near me"", ""women's clinic free pregnancy test near me"")",women's clinic free ultrasound near me,women's clinic free pregnancy test near me,1,4,google,2026-03-12 19:37:22.086557,abortion clinic san francisco ca,abortion clinic for free near me,women's ultrasound,pregnancy test +abortion,"(""women's clinic free ultrasound near me"", ""women's center free ultrasound near me"")",women's clinic free ultrasound near me,women's center free ultrasound near me,2,4,google,2026-03-12 19:37:22.086557,abortion clinic san francisco ca,abortion clinic for free near me,women's ultrasound,center +abortion,"(""women's clinic free ultrasound near me"", 'free ultrasound clinic near me')",women's clinic free ultrasound near me,free ultrasound clinic near me,3,4,google,2026-03-12 19:37:22.086557,abortion clinic san francisco ca,abortion clinic for free near me,women's ultrasound,women's ultrasound +abortion,"(""women's clinic free ultrasound near me"", 'where can i go get a free ultrasound')",women's clinic free ultrasound near me,where can i go get a free ultrasound,4,4,google,2026-03-12 19:37:22.086557,abortion clinic san francisco ca,abortion clinic for free near me,women's ultrasound,where can i go get a +abortion,"(""women's clinic free ultrasound near me"", ""women's clinic near me for ultrasound"")",women's clinic free ultrasound near me,women's clinic near me for ultrasound,5,4,google,2026-03-12 19:37:22.086557,abortion clinic san francisco ca,abortion clinic for free near me,women's ultrasound,for +abortion,"(""women's clinic free ultrasound near me"", ""women's free ultrasound"")",women's clinic free ultrasound near me,women's free ultrasound,6,4,google,2026-03-12 19:37:22.086557,abortion clinic san francisco ca,abortion clinic for free near me,women's ultrasound,women's ultrasound +abortion,"(""women's clinic free ultrasound near me"", ""women's clinic free near me"")",women's clinic free ultrasound near me,women's clinic free near me,7,4,google,2026-03-12 19:37:22.086557,abortion clinic san francisco ca,abortion clinic for free near me,women's ultrasound,women's ultrasound +abortion,"(""women's health clinic free near me"", ""free women's health clinic near me open now"")",women's health clinic free near me,free women's health clinic near me open now,1,4,google,2026-03-12 19:37:23.498539,abortion clinic san francisco ca,abortion clinic for free near me,women's health,open now +abortion,"(""women's health clinic free near me"", ""free women's health care near me"")",women's health clinic free near me,free women's health care near me,2,4,google,2026-03-12 19:37:23.498539,abortion clinic san francisco ca,abortion clinic for free near me,women's health,care +abortion,"(""women's health clinic free near me"", ""free women's health services near me"")",women's health clinic free near me,free women's health services near me,3,4,google,2026-03-12 19:37:23.498539,abortion clinic san francisco ca,abortion clinic for free near me,women's health,services +abortion,"(""women's health clinic free near me"", ""free women's health center near me"")",women's health clinic free near me,free women's health center near me,4,4,google,2026-03-12 19:37:23.498539,abortion clinic san francisco ca,abortion clinic for free near me,women's health,center +abortion,"(""women's health clinic free near me"", 'list of free clinics near me')",women's health clinic free near me,list of free clinics near me,5,4,google,2026-03-12 19:37:23.498539,abortion clinic san francisco ca,abortion clinic for free near me,women's health,list of clinics +abortion,"(""women's health clinic free near me"", ""women's clinic near me without insurance"")",women's health clinic free near me,women's clinic near me without insurance,6,4,google,2026-03-12 19:37:23.498539,abortion clinic san francisco ca,abortion clinic for free near me,women's health,without insurance +abortion,"(""women's health clinic free near me"", ""free women's clinic near me no insurance"")",women's health clinic free near me,free women's clinic near me no insurance,7,4,google,2026-03-12 19:37:23.498539,abortion clinic san francisco ca,abortion clinic for free near me,women's health,no insurance +abortion,"(""women's health clinic free near me"", ""women's free clinic near me"")",women's health clinic free near me,women's free clinic near me,8,4,google,2026-03-12 19:37:23.498539,abortion clinic san francisco ca,abortion clinic for free near me,women's health,women's health +abortion,"('which clinic do abortion for free near me', 'clinic that do abortion near me')",which clinic do abortion for free near me,clinic that do abortion near me,1,4,google,2026-03-12 19:37:24.788517,abortion clinic san francisco ca,abortion clinic for free near me,which do,that +abortion,"('which clinic do abortion for free near me', 'abortion clinic for free near me')",which clinic do abortion for free near me,abortion clinic for free near me,2,4,google,2026-03-12 19:37:24.788517,abortion clinic san francisco ca,abortion clinic for free near me,which do,which do +abortion,"('which clinic do abortion for free near me', ""women's clinic for abortion near me"")",which clinic do abortion for free near me,women's clinic for abortion near me,3,4,google,2026-03-12 19:37:24.788517,abortion clinic san francisco ca,abortion clinic for free near me,which do,women's +abortion,"('which clinic do abortion for free near me', 'clinic for abortion near me')",which clinic do abortion for free near me,clinic for abortion near me,4,4,google,2026-03-12 19:37:24.788517,abortion clinic san francisco ca,abortion clinic for free near me,which do,which do +abortion,"('abortion options in california', 'abortion clinics in california')",abortion options in california,abortion clinics in california,1,4,google,2026-03-12 19:37:25.961236,abortion clinic san francisco ca,abortion clinics san francisco california,options in,clinics +abortion,"('abortion options in california', 'abortion methods in california')",abortion options in california,abortion methods in california,2,4,google,2026-03-12 19:37:25.961236,abortion clinic san francisco ca,abortion clinics san francisco california,options in,methods +abortion,"('abortion options in california', 'free abortion clinics in california')",abortion options in california,free abortion clinics in california,3,4,google,2026-03-12 19:37:25.961236,abortion clinic san francisco ca,abortion clinics san francisco california,options in,free clinics +abortion,"('abortion options in california', 'abortion pill legal in california')",abortion options in california,abortion pill legal in california,4,4,google,2026-03-12 19:37:25.961236,abortion clinic san francisco ca,abortion clinics san francisco california,options in,pill legal +abortion,"('abortion options in california', 'abortion clinics in southern california')",abortion options in california,abortion clinics in southern california,5,4,google,2026-03-12 19:37:25.961236,abortion clinic san francisco ca,abortion clinics san francisco california,options in,clinics southern +abortion,"('abortion options in california', 'best abortion clinics in california')",abortion options in california,best abortion clinics in california,6,4,google,2026-03-12 19:37:25.961236,abortion clinic san francisco ca,abortion clinics san francisco california,options in,best clinics +abortion,"('abortion options in california', 'abortion clinics in anaheim california')",abortion options in california,abortion clinics in anaheim california,7,4,google,2026-03-12 19:37:25.961236,abortion clinic san francisco ca,abortion clinics san francisco california,options in,clinics anaheim +abortion,"('abortion options in california', 'abortion clinics in northern california')",abortion options in california,abortion clinics in northern california,8,4,google,2026-03-12 19:37:25.961236,abortion clinic san francisco ca,abortion clinics san francisco california,options in,clinics northern +abortion,"('abortion options in california', 'abortion clinics in fresno california')",abortion options in california,abortion clinics in fresno california,9,4,google,2026-03-12 19:37:25.961236,abortion clinic san francisco ca,abortion clinics san francisco california,options in,clinics fresno +abortion,"('abortion cut off in california', 'abortion cut off date california')",abortion cut off in california,abortion cut off date california,1,4,google,2026-03-12 19:37:27.139685,abortion clinic san francisco ca,abortion clinics san francisco california,cut off in,date +abortion,"(""ucsf radiology at the women's health center san francisco"", ""ucsf women's health center san francisco ca"")",ucsf radiology at the women's health center san francisco,ucsf women's health center san francisco ca,1,4,google,2026-03-12 19:37:28.578365,women's clinic san francisco,women's health center san francisco,ucsf radiology at the,ca +abortion,"(""ucsf radiology at the women's health center san francisco"", ""UCSF Radiology at the Women's Health Center, and J, San Francisco, CA"")",ucsf radiology at the women's health center san francisco,"UCSF Radiology at the Women's Health Center, and J, San Francisco, CA",2,4,google,2026-03-12 19:37:28.578365,women's clinic san francisco,women's health center san francisco,ucsf radiology at the,"UCSF Radiology Women's Health Center, and J, San Francisco, CA" +abortion,"(""ucsf radiology at the women's health center san francisco"", ""ucsf women's health radiology"")",ucsf radiology at the women's health center san francisco,ucsf women's health radiology,3,4,google,2026-03-12 19:37:28.578365,women's clinic san francisco,women's health center san francisco,ucsf radiology at the,ucsf radiology at the +abortion,"(""ucsf radiology at the women's health center san francisco"", ""ucsf radiology women's health mammography"")",ucsf radiology at the women's health center san francisco,ucsf radiology women's health mammography,4,4,google,2026-03-12 19:37:28.578365,women's clinic san francisco,women's health center san francisco,ucsf radiology at the,mammography +abortion,"(""ucsf radiology at the women's health center san francisco"", ""ucsf women's health mammography"")",ucsf radiology at the women's health center san francisco,ucsf women's health mammography,5,4,google,2026-03-12 19:37:28.578365,women's clinic san francisco,women's health center san francisco,ucsf radiology at the,mammography +abortion,"(""ucsf radiology at the women's health center san francisco"", 'ucsf health radiology')",ucsf radiology at the women's health center san francisco,ucsf health radiology,6,4,google,2026-03-12 19:37:28.578365,women's clinic san francisco,women's health center san francisco,ucsf radiology at the,ucsf radiology at the +abortion,"(""women's health resource center california pacific medical center san francisco"", ""Women's Health Resource Center: California Pacific Medical Center, Buchanan Street, San Francisco, CA"")",women's health resource center california pacific medical center san francisco,"Women's Health Resource Center: California Pacific Medical Center, Buchanan Street, San Francisco, CA",1,4,google,2026-03-12 19:37:29.722258,women's clinic san francisco,women's health center san francisco,resource california pacific medical,"Women's Health Resource Center: California Pacific Medical Center, Buchanan Street, San Francisco, CA" +abortion,"(""general hospital san francisco women's clinic"", ""san francisco general women's health center"")",general hospital san francisco women's clinic,san francisco general women's health center,1,4,google,2026-03-12 19:37:31.113356,women's clinic san francisco,women's hospital san francisco,general clinic,health center +abortion,"(""general hospital san francisco women's clinic"", ""general hospital women's clinic"")",general hospital san francisco women's clinic,general hospital women's clinic,2,4,google,2026-03-12 19:37:31.113356,women's clinic san francisco,women's hospital san francisco,general clinic,general clinic +abortion,"(""general hospital san francisco women's clinic"", ""women's clinic general hospital sf"")",general hospital san francisco women's clinic,women's clinic general hospital sf,3,4,google,2026-03-12 19:37:31.113356,women's clinic san francisco,women's hospital san francisco,general clinic,sf +abortion,"(""women's hospital san diego"", ""women's healthcare san diego"")",women's hospital san diego,women's healthcare san diego,1,4,google,2026-03-12 19:37:32.581174,women's clinic san francisco,women's hospital san francisco,diego,healthcare +abortion,"(""women's hospital san diego"", ""women's hospital san antonio"")",women's hospital san diego,women's hospital san antonio,2,4,google,2026-03-12 19:37:32.581174,women's clinic san francisco,women's hospital san francisco,diego,antonio +abortion,"(""women's hospital san diego"", ""sharp women's hospital san diego"")",women's hospital san diego,sharp women's hospital san diego,3,4,google,2026-03-12 19:37:32.581174,women's clinic san francisco,women's hospital san francisco,diego,sharp +abortion,"(""women's hospital san diego"", ""mary birch women's hospital san diego"")",women's hospital san diego,mary birch women's hospital san diego,4,4,google,2026-03-12 19:37:32.581174,women's clinic san francisco,women's hospital san francisco,diego,mary birch +abortion,"(""women's hospital san diego"", 'womens and childrens hospital san diego')",women's hospital san diego,womens and childrens hospital san diego,5,4,google,2026-03-12 19:37:32.581174,women's clinic san francisco,women's hospital san francisco,diego,womens and childrens +abortion,"(""women's hospital san diego"", ""methodist women's hospital san antonio"")",women's hospital san diego,methodist women's hospital san antonio,6,4,google,2026-03-12 19:37:32.581174,women's clinic san francisco,women's hospital san francisco,diego,methodist antonio +abortion,"(""women's hospital san diego"", ""methodist women's hospital san antonio tx"")",women's hospital san diego,methodist women's hospital san antonio tx,7,4,google,2026-03-12 19:37:32.581174,women's clinic san francisco,women's hospital san francisco,diego,methodist antonio tx +abortion,"(""women's hospital san diego"", ""women's hospital in san antonio texas"")",women's hospital san diego,women's hospital in san antonio texas,8,4,google,2026-03-12 19:37:32.581174,women's clinic san francisco,women's hospital san francisco,diego,in antonio texas +abortion,"(""women's hospital san diego"", ""humana women's hospital san antonio"")",women's hospital san diego,humana women's hospital san antonio,9,4,google,2026-03-12 19:37:32.581174,women's clinic san francisco,women's hospital san francisco,diego,humana antonio +abortion,"(""women's hospital san antonio"", ""methodist women's hospital san antonio"")",women's hospital san antonio,methodist women's hospital san antonio,1,4,google,2026-03-12 19:37:33.452150,women's clinic san francisco,women's hospital san francisco,antonio,methodist +abortion,"(""women's hospital san antonio"", ""methodist women's hospital san antonio tx"")",women's hospital san antonio,methodist women's hospital san antonio tx,2,4,google,2026-03-12 19:37:33.452150,women's clinic san francisco,women's hospital san francisco,antonio,methodist tx +abortion,"(""women's hospital san antonio"", ""women's hospital in san antonio texas"")",women's hospital san antonio,women's hospital in san antonio texas,3,4,google,2026-03-12 19:37:33.452150,women's clinic san francisco,women's hospital san francisco,antonio,in texas +abortion,"(""women's hospital san antonio"", ""humana women's hospital san antonio"")",women's hospital san antonio,humana women's hospital san antonio,4,4,google,2026-03-12 19:37:33.452150,women's clinic san francisco,women's hospital san francisco,antonio,humana +abortion,"(""women's hospital san antonio"", ""baptist women's hospital san antonio"")",women's hospital san antonio,baptist women's hospital san antonio,5,4,google,2026-03-12 19:37:33.452150,women's clinic san francisco,women's hospital san francisco,antonio,baptist +abortion,"(""women's hospital san antonio"", ""women's center university hospital san antonio reviews"")",women's hospital san antonio,women's center university hospital san antonio reviews,6,4,google,2026-03-12 19:37:33.452150,women's clinic san francisco,women's hospital san francisco,antonio,center university reviews +abortion,"(""women's hospital san antonio"", ""women and children's hospital san antonio"")",women's hospital san antonio,women and children's hospital san antonio,7,4,google,2026-03-12 19:37:33.452150,women's clinic san francisco,women's hospital san francisco,antonio,women and children's +abortion,"(""women's hospital san antonio"", ""women's and children's hospital san antonio texas"")",women's hospital san antonio,women's and children's hospital san antonio texas,8,4,google,2026-03-12 19:37:33.452150,women's clinic san francisco,women's hospital san francisco,antonio,and children's texas +abortion,"(""women's hospital san antonio"", ""unified women's healthcare san antonio"")",women's hospital san antonio,unified women's healthcare san antonio,9,4,google,2026-03-12 19:37:33.452150,women's clinic san francisco,women's hospital san francisco,antonio,unified healthcare +abortion,"(""women's clinic general hospital sf"", ""general hospital sf women's clinic"")",women's clinic general hospital sf,general hospital sf women's clinic,1,4,google,2026-03-12 19:37:34.318913,women's clinic san francisco,women's hospital san francisco,clinic general sf,clinic general sf +abortion,"(""women's clinic general hospital sf"", ""women's clinic sf general"")",women's clinic general hospital sf,women's clinic sf general,2,4,google,2026-03-12 19:37:34.318913,women's clinic san francisco,women's hospital san francisco,clinic general sf,clinic general sf +abortion,"(""women's clinic general hospital sf"", ""general hospital san francisco women's clinic"")",women's clinic general hospital sf,general hospital san francisco women's clinic,3,4,google,2026-03-12 19:37:34.318913,women's clinic san francisco,women's hospital san francisco,clinic general sf,san francisco +abortion,"(""UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA"", ""UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, California"")","UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA","UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, California",1,4,google,2026-03-12 19:37:35.379387,women's clinic san francisco,sutter women's health center san francisco,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA",California +abortion,"('sutter health san francisco locations', 'sutter health lab locations san francisco')",sutter health san francisco locations,sutter health lab locations san francisco,1,4,google,2026-03-12 19:37:36.374818,women's clinic san francisco,sutter women's health center san francisco,locations,lab +abortion,"('sutter health san francisco locations', 'sutter health san francisco address')",sutter health san francisco locations,sutter health san francisco address,2,4,google,2026-03-12 19:37:36.374818,women's clinic san francisco,sutter women's health center san francisco,locations,address +abortion,"('sutter health san francisco locations', 'sutter health san francisco phone number')",sutter health san francisco locations,sutter health san francisco phone number,3,4,google,2026-03-12 19:37:36.374818,women's clinic san francisco,sutter women's health center san francisco,locations,phone number +abortion,"('sutter health san francisco locations', 'sutter health northern california locations')",sutter health san francisco locations,sutter health northern california locations,4,4,google,2026-03-12 19:37:36.374818,women's clinic san francisco,sutter women's health center san francisco,locations,northern california +abortion,"('sutter health san francisco locations', 'sutter health san francisco california')",sutter health san francisco locations,sutter health san francisco california,5,4,google,2026-03-12 19:37:36.374818,women's clinic san francisco,sutter women's health center san francisco,locations,california +abortion,"('sutter health san francisco phone number', 'sutter hospital san francisco phone number')",sutter health san francisco phone number,sutter hospital san francisco phone number,1,4,google,2026-03-12 19:37:37.293420,women's clinic san francisco,sutter women's health center san francisco,phone number,hospital +abortion,"('sutter health san francisco phone number', 'sutter health california phone number')",sutter health san francisco phone number,sutter health california phone number,2,4,google,2026-03-12 19:37:37.293420,women's clinic san francisco,sutter women's health center san francisco,phone number,california +abortion,"('sutter health san francisco phone number', 'sutter health san francisco address')",sutter health san francisco phone number,sutter health san francisco address,3,4,google,2026-03-12 19:37:37.293420,women's clinic san francisco,sutter women's health center san francisco,phone number,address +abortion,"('sutter health san francisco phone number', 'phone number sutter health')",sutter health san francisco phone number,phone number sutter health,4,4,google,2026-03-12 19:37:37.293420,women's clinic san francisco,sutter women's health center san francisco,phone number,phone number +abortion,"('sutter health san francisco phone number', 'sutter health san carlos phone number')",sutter health san francisco phone number,sutter health san carlos phone number,5,4,google,2026-03-12 19:37:37.293420,women's clinic san francisco,sutter women's health center san francisco,phone number,carlos +abortion,"('sutter health san francisco phone number', 'sutter health san francisco fax number')",sutter health san francisco phone number,sutter health san francisco fax number,6,4,google,2026-03-12 19:37:37.293420,women's clinic san francisco,sutter women's health center san francisco,phone number,fax +abortion,"('sutter health san francisco address', 'sutter hospital san francisco address')",sutter health san francisco address,sutter hospital san francisco address,1,4,google,2026-03-12 19:37:38.333821,women's clinic san francisco,sutter women's health center san francisco,address,hospital +abortion,"('sutter health san francisco address', 'sutter health san francisco location')",sutter health san francisco address,sutter health san francisco location,2,4,google,2026-03-12 19:37:38.333821,women's clinic san francisco,sutter women's health center san francisco,address,location +abortion,"('sutter health san francisco address', 'sutter health san francisco phone number')",sutter health san francisco address,sutter health san francisco phone number,3,4,google,2026-03-12 19:37:38.333821,women's clinic san francisco,sutter women's health center san francisco,address,phone number +abortion,"('sutter health san francisco address', 'sutter health san francisco fax number')",sutter health san francisco address,sutter health san francisco fax number,4,4,google,2026-03-12 19:37:38.333821,women's clinic san francisco,sutter women's health center san francisco,address,fax number +abortion,"('sutter health san francisco address', 'sutter health san francisco california street')",sutter health san francisco address,sutter health san francisco california street,5,4,google,2026-03-12 19:37:38.333821,women's clinic san francisco,sutter women's health center san francisco,address,california street +abortion,"(""sutter health women's health san francisco"", ""sutter women's health san francisco"")",sutter health women's health san francisco,sutter women's health san francisco,1,4,google,2026-03-12 19:37:39.770528,women's clinic san francisco,sutter women's health center san francisco,sutter health center,sutter health center +abortion,"(""sutter health women's health san francisco"", 'sutter health san francisco locations')",sutter health women's health san francisco,sutter health san francisco locations,2,4,google,2026-03-12 19:37:39.770528,women's clinic san francisco,sutter women's health center san francisco,sutter health center,locations +abortion,"(""sutter health women's health san francisco"", 'sutter health san francisco address')",sutter health women's health san francisco,sutter health san francisco address,3,4,google,2026-03-12 19:37:39.770528,women's clinic san francisco,sutter women's health center san francisco,sutter health center,address +abortion,"(""sutter health women's health san francisco"", ""sutter women's health center san francisco"")",sutter health women's health san francisco,sutter women's health center san francisco,4,4,google,2026-03-12 19:37:39.770528,women's clinic san francisco,sutter women's health center san francisco,sutter health center,center +abortion,"(""sutter health women's health san francisco"", ""sutter health women's center san mateo"")",sutter health women's health san francisco,sutter health women's center san mateo,5,4,google,2026-03-12 19:37:39.770528,women's clinic san francisco,sutter women's health center san francisco,sutter health center,center mateo +abortion,"(""sutter health women's health san francisco"", ""sutter health women's health"")",sutter health women's health san francisco,sutter health women's health,6,4,google,2026-03-12 19:37:39.770528,women's clinic san francisco,sutter women's health center san francisco,sutter health center,sutter health center +abortion,"(""sutter health women's health san francisco"", ""sutter women's health center santa rosa"")",sutter health women's health san francisco,sutter women's health center santa rosa,7,4,google,2026-03-12 19:37:39.770528,women's clinic san francisco,sutter women's health center san francisco,sutter health center,center santa rosa +abortion,"(""sutter health women's center san mateo"", ""sutter women's health center san francisco"")",sutter health women's center san mateo,sutter women's health center san francisco,1,4,google,2026-03-12 19:37:40.615826,women's clinic san francisco,sutter women's health center san francisco,mateo,francisco +abortion,"(""sutter health women's center san mateo"", ""sutter health women's health san francisco"")",sutter health women's center san mateo,sutter health women's health san francisco,2,4,google,2026-03-12 19:37:40.615826,women's clinic san francisco,sutter women's health center san francisco,mateo,francisco +abortion,"(""sutter health women's center san mateo"", ""sutter women's health center santa rosa"")",sutter health women's center san mateo,sutter women's health center santa rosa,3,4,google,2026-03-12 19:37:40.615826,women's clinic san francisco,sutter women's health center san francisco,mateo,santa rosa +abortion,"(""sutter health women's center san mateo"", ""san mateo women's center"")",sutter health women's center san mateo,san mateo women's center,4,4,google,2026-03-12 19:37:40.615826,women's clinic san francisco,sutter women's health center san francisco,mateo,mateo +abortion,"(""sutter women's health center sacramento"", ""sutter women's health center sacramento ca"")",sutter women's health center sacramento,sutter women's health center sacramento ca,1,4,google,2026-03-12 19:37:41.751138,women's clinic san francisco,sutter women's health center san francisco,sacramento,ca +abortion,"(""sutter women's health center sacramento"", ""sutter women's health center sacramento fax number"")",sutter women's health center sacramento,sutter women's health center sacramento fax number,2,4,google,2026-03-12 19:37:41.751138,women's clinic san francisco,sutter women's health center san francisco,sacramento,fax number +abortion,"(""sutter women's health center sacramento"", ""sutter women's health center sacramento california"")",sutter women's health center sacramento,sutter women's health center sacramento california,3,4,google,2026-03-12 19:37:41.751138,women's clinic san francisco,sutter women's health center san francisco,sacramento,california +abortion,"(""sutter women's health center sacramento"", ""sutter women's health center sacramento fax"")",sutter women's health center sacramento,sutter women's health center sacramento fax,4,4,google,2026-03-12 19:37:41.751138,women's clinic san francisco,sutter women's health center san francisco,sacramento,fax +abortion,"(""sutter women's health center sacramento"", ""sutter women's health center sacramento medical records"")",sutter women's health center sacramento,sutter women's health center sacramento medical records,5,4,google,2026-03-12 19:37:41.751138,women's clinic san francisco,sutter women's health center san francisco,sacramento,medical records +abortion,"(""sutter women's health center santa rosa"", ""sutter women's health center sutter pacific medical foundation santa rosa"")",sutter women's health center santa rosa,sutter women's health center sutter pacific medical foundation santa rosa,1,4,google,2026-03-12 19:37:42.727984,women's clinic san francisco,sutter women's health center san francisco,santa rosa,pacific medical foundation +abortion,"(""sutter women's health center santa rosa"", 'sutter health customer care')",sutter women's health center santa rosa,sutter health customer care,2,4,google,2026-03-12 19:37:42.727984,women's clinic san francisco,sutter women's health center san francisco,santa rosa,customer care +abortion,"(""sutter women's health center santa rosa"", 'sutter health near me')",sutter women's health center santa rosa,sutter health near me,3,4,google,2026-03-12 19:37:42.727984,women's clinic san francisco,sutter women's health center san francisco,santa rosa,near me +abortion,"(""sutter women's health center santa rosa"", ""sutter women's health santa rosa"")",sutter women's health center santa rosa,sutter women's health santa rosa,4,4,google,2026-03-12 19:37:42.727984,women's clinic san francisco,sutter women's health center san francisco,santa rosa,santa rosa +abortion,"(""sutter women's health center santa rosa"", ""sutter women's health center roseville"")",sutter women's health center santa rosa,sutter women's health center roseville,5,4,google,2026-03-12 19:37:42.727984,women's clinic san francisco,sutter women's health center san francisco,santa rosa,roseville +abortion,"(""sutter women's health center santa rosa"", ""sutter women's health center san francisco"")",sutter women's health center santa rosa,sutter women's health center san francisco,6,4,google,2026-03-12 19:37:42.727984,women's clinic san francisco,sutter women's health center san francisco,santa rosa,san francisco +abortion,"(""sutter women's health center santa rosa"", ""sutter women's health center sacramento"")",sutter women's health center santa rosa,sutter women's health center sacramento,7,4,google,2026-03-12 19:37:42.727984,women's clinic san francisco,sutter women's health center san francisco,santa rosa,sacramento +abortion,"('abortion care near me', 'abortion clinic near me')",abortion care near me,abortion clinic near me,1,4,google,2026-03-12 19:37:43.730890,abortion services san francisco,abortion treatment near me,care,clinic +abortion,"('abortion care near me', 'abortion clinic near me open now')",abortion care near me,abortion clinic near me open now,2,4,google,2026-03-12 19:37:43.730890,abortion services san francisco,abortion treatment near me,care,clinic open now +abortion,"('abortion care near me', 'abortion clinic near me prices')",abortion care near me,abortion clinic near me prices,3,4,google,2026-03-12 19:37:43.730890,abortion services san francisco,abortion treatment near me,care,clinic prices +abortion,"('abortion care near me', 'abortion clinic near me for free')",abortion care near me,abortion clinic near me for free,4,4,google,2026-03-12 19:37:43.730890,abortion services san francisco,abortion treatment near me,care,clinic for free +abortion,"('abortion care near me', 'abortion clinic near me bulk bill')",abortion care near me,abortion clinic near me bulk bill,5,4,google,2026-03-12 19:37:43.730890,abortion services san francisco,abortion treatment near me,care,clinic bulk bill +abortion,"('abortion care near me', 'abortion clinic near me walk in')",abortion care near me,abortion clinic near me walk in,6,4,google,2026-03-12 19:37:43.730890,abortion services san francisco,abortion treatment near me,care,clinic walk in +abortion,"('abortion care near me', 'abortion clinic near me now')",abortion care near me,abortion clinic near me now,7,4,google,2026-03-12 19:37:43.730890,abortion services san francisco,abortion treatment near me,care,clinic now +abortion,"('abortion care near me', 'abortion clinic near me nhs')",abortion care near me,abortion clinic near me nhs,8,4,google,2026-03-12 19:37:43.730890,abortion services san francisco,abortion treatment near me,care,clinic nhs +abortion,"('abortion care near me', 'abortion clinic near me within 20 mi')",abortion care near me,abortion clinic near me within 20 mi,9,4,google,2026-03-12 19:37:43.730890,abortion services san francisco,abortion treatment near me,care,clinic within 20 mi +abortion,"('miscarriage treatment near me', 'miscarriage therapy near me')",miscarriage treatment near me,miscarriage therapy near me,1,4,google,2026-03-12 19:37:44.566466,abortion services san francisco,abortion treatment near me,miscarriage,therapy +abortion,"('miscarriage treatment near me', 'abortion treatment near me')",miscarriage treatment near me,abortion treatment near me,2,4,google,2026-03-12 19:37:44.566466,abortion services san francisco,abortion treatment near me,miscarriage,abortion +abortion,"('miscarriage treatment near me', 'miscarriage care near me')",miscarriage treatment near me,miscarriage care near me,3,4,google,2026-03-12 19:37:44.566466,abortion services san francisco,abortion treatment near me,miscarriage,care +abortion,"('miscarriage treatment near me', 'recurrent miscarriage treatment near me')",miscarriage treatment near me,recurrent miscarriage treatment near me,4,4,google,2026-03-12 19:37:44.566466,abortion services san francisco,abortion treatment near me,miscarriage,recurrent +abortion,"('miscarriage treatment near me', 'miscarriage group therapy near me')",miscarriage treatment near me,miscarriage group therapy near me,5,4,google,2026-03-12 19:37:44.566466,abortion services san francisco,abortion treatment near me,miscarriage,group therapy +abortion,"('miscarriage treatment near me', 'miscarriage specialist near me')",miscarriage treatment near me,miscarriage specialist near me,6,4,google,2026-03-12 19:37:44.566466,abortion services san francisco,abortion treatment near me,miscarriage,specialist +abortion,"('miscarriage treatment near me', 'cost of miscarriage treatment')",miscarriage treatment near me,cost of miscarriage treatment,7,4,google,2026-03-12 19:37:44.566466,abortion services san francisco,abortion treatment near me,miscarriage,cost of +abortion,"('miscarriage treatment near me', 'miscarriage surgery cost')",miscarriage treatment near me,miscarriage surgery cost,8,4,google,2026-03-12 19:37:44.566466,abortion services san francisco,abortion treatment near me,miscarriage,surgery cost +abortion,"('miscarriage treatment near me', 'miscarriage near me')",miscarriage treatment near me,miscarriage near me,9,4,google,2026-03-12 19:37:44.566466,abortion services san francisco,abortion treatment near me,miscarriage,miscarriage +abortion,"('post abortion care near me', 'post abortion care meaning')",post abortion care near me,post abortion care meaning,1,4,google,2026-03-12 19:37:45.373882,abortion services san francisco,abortion treatment near me,post care,meaning +abortion,"('post abortion care near me', 'post abortion care medication')",post abortion care near me,post abortion care medication,2,4,google,2026-03-12 19:37:45.373882,abortion services san francisco,abortion treatment near me,post care,medication +abortion,"('post abortion care near me', 'post abortion care medscape')",post abortion care near me,post abortion care medscape,3,4,google,2026-03-12 19:37:45.373882,abortion services san francisco,abortion treatment near me,post care,medscape +abortion,"('post abortion care near me', 'post abortion care medicine')",post abortion care near me,post abortion care medicine,4,4,google,2026-03-12 19:37:45.373882,abortion services san francisco,abortion treatment near me,post care,medicine +abortion,"('post abortion care near me', 'types of post abortion care')",post abortion care near me,types of post abortion care,5,4,google,2026-03-12 19:37:45.373882,abortion services san francisco,abortion treatment near me,post care,types of +abortion,"('post abortion care near me', 'post abortion clinic')",post abortion care near me,post abortion clinic,6,4,google,2026-03-12 19:37:45.373882,abortion services san francisco,abortion treatment near me,post care,clinic +abortion,"('post abortion care near me', 'post abortion care planned parenthood')",post abortion care near me,post abortion care planned parenthood,7,4,google,2026-03-12 19:37:45.373882,abortion services san francisco,abortion treatment near me,post care,planned parenthood +abortion,"('post abortion care near me', 'post abortion care packages')",post abortion care near me,post abortion care packages,8,4,google,2026-03-12 19:37:45.373882,abortion services san francisco,abortion treatment near me,post care,packages +abortion,"('post abortion care near me', 'post abortion support near me')",post abortion care near me,post abortion support near me,9,4,google,2026-03-12 19:37:45.373882,abortion services san francisco,abortion treatment near me,post care,support +abortion,"('post abortion therapy near me', 'post abortion counseling near me')",post abortion therapy near me,post abortion counseling near me,1,4,google,2026-03-12 19:37:46.657853,abortion services san francisco,abortion treatment near me,post therapy,counseling +abortion,"('post abortion therapy near me', 'post abortion counseling christian near me')",post abortion therapy near me,post abortion counseling christian near me,2,4,google,2026-03-12 19:37:46.657853,abortion services san francisco,abortion treatment near me,post therapy,counseling christian +abortion,"('post abortion therapy near me', 'post abortion therapist near me')",post abortion therapy near me,post abortion therapist near me,3,4,google,2026-03-12 19:37:46.657853,abortion services san francisco,abortion treatment near me,post therapy,therapist +abortion,"('post abortion therapy near me', 'treatment of post abortion care')",post abortion therapy near me,treatment of post abortion care,4,4,google,2026-03-12 19:37:46.657853,abortion services san francisco,abortion treatment near me,post therapy,treatment of care +abortion,"('post abortion therapy near me', 'post abortion counseling services near me')",post abortion therapy near me,post abortion counseling services near me,5,4,google,2026-03-12 19:37:46.657853,abortion services san francisco,abortion treatment near me,post therapy,counseling services +abortion,"('free abortion care near me', 'free abortion clinic near me')",free abortion care near me,free abortion clinic near me,1,4,google,2026-03-12 19:37:48.010792,abortion services san francisco,abortion treatment near me,free care,clinic +abortion,"('free abortion care near me', 'free abortion clinic near me open now')",free abortion care near me,free abortion clinic near me open now,2,4,google,2026-03-12 19:37:48.010792,abortion services san francisco,abortion treatment near me,free care,clinic open now +abortion,"('free abortion care near me', 'free abortion clinic near me volunteer')",free abortion care near me,free abortion clinic near me volunteer,3,4,google,2026-03-12 19:37:48.010792,abortion services san francisco,abortion treatment near me,free care,clinic volunteer +abortion,"('free abortion care near me', 'free abortion clinic near me within 5 mi')",free abortion care near me,free abortion clinic near me within 5 mi,4,4,google,2026-03-12 19:37:48.010792,abortion services san francisco,abortion treatment near me,free care,clinic within 5 mi +abortion,"('free abortion care near me', 'free abortion clinic near me within 20 mi')",free abortion care near me,free abortion clinic near me within 20 mi,5,4,google,2026-03-12 19:37:48.010792,abortion services san francisco,abortion treatment near me,free care,clinic within 20 mi +abortion,"('free abortion care near me', 'free abortion clinic near me within 8.1 km')",free abortion care near me,free abortion clinic near me within 8.1 km,6,4,google,2026-03-12 19:37:48.010792,abortion services san francisco,abortion treatment near me,free care,clinic within 8.1 km +abortion,"('free abortion care near me', 'free government abortion clinic near me')",free abortion care near me,free government abortion clinic near me,7,4,google,2026-03-12 19:37:48.010792,abortion services san francisco,abortion treatment near me,free care,government clinic +abortion,"('free abortion care near me', 'free cat abortion clinic near me')",free abortion care near me,free cat abortion clinic near me,8,4,google,2026-03-12 19:37:48.010792,abortion services san francisco,abortion treatment near me,free care,cat clinic +abortion,"('free abortion care near me', 'free miscarriage care package near me')",free abortion care near me,free miscarriage care package near me,9,4,google,2026-03-12 19:37:48.010792,abortion services san francisco,abortion treatment near me,free care,miscarriage package +abortion,"('abortion care jobs near me', 'abortion clinic jobs near me')",abortion care jobs near me,abortion clinic jobs near me,1,4,google,2026-03-12 19:37:48.999051,abortion services san francisco,abortion treatment near me,care jobs,clinic +abortion,"('abortion care jobs near me', 'abortion care network jobs')",abortion care jobs near me,abortion care network jobs,2,4,google,2026-03-12 19:37:48.999051,abortion services san francisco,abortion treatment near me,care jobs,network +abortion,"('abortion care jobs near me', 'abortion care network careers')",abortion care jobs near me,abortion care network careers,3,4,google,2026-03-12 19:37:48.999051,abortion services san francisco,abortion treatment near me,care jobs,network careers +abortion,"('abortion care jobs near me', 'abortion clinic nurse jobs near me')",abortion care jobs near me,abortion clinic nurse jobs near me,4,4,google,2026-03-12 19:37:48.999051,abortion services san francisco,abortion treatment near me,care jobs,clinic nurse +abortion,"('recurrent miscarriage treatment near me', 'recurrent miscarriage treatment melbourne')",recurrent miscarriage treatment near me,recurrent miscarriage treatment melbourne,1,4,google,2026-03-12 19:37:50.046320,abortion services san francisco,abortion treatment near me,recurrent miscarriage,melbourne +abortion,"('recurrent miscarriage treatment near me', 'recurrent miscarriage clinic near me')",recurrent miscarriage treatment near me,recurrent miscarriage clinic near me,2,4,google,2026-03-12 19:37:50.046320,abortion services san francisco,abortion treatment near me,recurrent miscarriage,clinic +abortion,"('recurrent miscarriage treatment near me', 'recurrent miscarriage doctors near me')",recurrent miscarriage treatment near me,recurrent miscarriage doctors near me,3,4,google,2026-03-12 19:37:50.046320,abortion services san francisco,abortion treatment near me,recurrent miscarriage,doctors +abortion,"('recurrent miscarriage treatment near me', 'recurrent miscarriage specialist near me')",recurrent miscarriage treatment near me,recurrent miscarriage specialist near me,4,4,google,2026-03-12 19:37:50.046320,abortion services san francisco,abortion treatment near me,recurrent miscarriage,specialist +abortion,"('recurrent miscarriage treatment near me', 'miscarriage treatment near me')",recurrent miscarriage treatment near me,miscarriage treatment near me,5,4,google,2026-03-12 19:37:50.046320,abortion services san francisco,abortion treatment near me,recurrent miscarriage,recurrent miscarriage +abortion,"('recurrent miscarriage treatment near me', 'recurrent pregnancy loss clinic near me')",recurrent miscarriage treatment near me,recurrent pregnancy loss clinic near me,6,4,google,2026-03-12 19:37:50.046320,abortion services san francisco,abortion treatment near me,recurrent miscarriage,pregnancy loss clinic +abortion,"('abortion care clinic near me', 'abortion health clinic near me')",abortion care clinic near me,abortion health clinic near me,1,4,google,2026-03-12 19:37:51.200376,abortion services san francisco,abortion treatment near me,care clinic,health +abortion,"('abortion care clinic near me', ""women's health abortion clinic near me"")",abortion care clinic near me,women's health abortion clinic near me,2,4,google,2026-03-12 19:37:51.200376,abortion services san francisco,abortion treatment near me,care clinic,women's health +abortion,"('abortion care clinic near me', 'abortion clinic near me for free')",abortion care clinic near me,abortion clinic near me for free,3,4,google,2026-03-12 19:37:51.200376,abortion services san francisco,abortion treatment near me,care clinic,for free +abortion,"('abortion care clinic near me', 'abortion clinic near me now')",abortion care clinic near me,abortion clinic near me now,4,4,google,2026-03-12 19:37:51.200376,abortion services san francisco,abortion treatment near me,care clinic,now +abortion,"('abortion care clinic near me', 'abortion clinic near me and prices')",abortion care clinic near me,abortion clinic near me and prices,5,4,google,2026-03-12 19:37:51.200376,abortion services san francisco,abortion treatment near me,care clinic,and prices +abortion,"('abortion care clinic near me', 'abortion care near me')",abortion care clinic near me,abortion care near me,6,4,google,2026-03-12 19:37:51.200376,abortion services san francisco,abortion treatment near me,care clinic,care clinic +abortion,"('abortion care clinic near me', ""women's care abortion clinic"")",abortion care clinic near me,women's care abortion clinic,7,4,google,2026-03-12 19:37:51.200376,abortion services san francisco,abortion treatment near me,care clinic,women's +abortion,"('abortion care clinic near me', 'abortion care services')",abortion care clinic near me,abortion care services,8,4,google,2026-03-12 19:37:51.200376,abortion services san francisco,abortion treatment near me,care clinic,services +abortion,"('abortion care clinic near me', 'abortion care providers')",abortion care clinic near me,abortion care providers,9,4,google,2026-03-12 19:37:51.200376,abortion services san francisco,abortion treatment near me,care clinic,providers +abortion,"('abortion treatment cost', 'abortion treatment cost in india')",abortion treatment cost,abortion treatment cost in india,1,4,google,2026-03-12 19:37:52.232264,abortion services san francisco,abortion treatment near me,cost,in india +abortion,"('abortion treatment cost', 'abortion treatment cost in pakistan')",abortion treatment cost,abortion treatment cost in pakistan,2,4,google,2026-03-12 19:37:52.232264,abortion services san francisco,abortion treatment near me,cost,in pakistan +abortion,"('abortion treatment cost', 'abortion treatment cost in malaysia')",abortion treatment cost,abortion treatment cost in malaysia,3,4,google,2026-03-12 19:37:52.232264,abortion services san francisco,abortion treatment near me,cost,in malaysia +abortion,"('abortion treatment cost', 'miscarriage treatment cost')",abortion treatment cost,miscarriage treatment cost,4,4,google,2026-03-12 19:37:52.232264,abortion services san francisco,abortion treatment near me,cost,miscarriage +abortion,"('abortion treatment cost', 'abortion surgery cost nc')",abortion treatment cost,abortion surgery cost nc,5,4,google,2026-03-12 19:37:52.232264,abortion services san francisco,abortion treatment near me,cost,surgery nc +abortion,"('abortion treatment cost', 'miscarriage treatment cost in india')",abortion treatment cost,miscarriage treatment cost in india,6,4,google,2026-03-12 19:37:52.232264,abortion services san francisco,abortion treatment near me,cost,miscarriage in india +abortion,"('abortion treatment cost', 'miscarriage treatment cost in malaysia')",abortion treatment cost,miscarriage treatment cost in malaysia,7,4,google,2026-03-12 19:37:52.232264,abortion services san francisco,abortion treatment near me,cost,miscarriage in malaysia +abortion,"('abortion treatment cost', 'abortion surgery cost in illinois')",abortion treatment cost,abortion surgery cost in illinois,8,4,google,2026-03-12 19:37:52.232264,abortion services san francisco,abortion treatment near me,cost,surgery in illinois +abortion,"('abortion treatment cost', 'abortion treatment price')",abortion treatment cost,abortion treatment price,9,4,google,2026-03-12 19:37:52.232264,abortion services san francisco,abortion treatment near me,cost,price +abortion,"('abortion pill san francisco', 'abortion pill san francisco price')",abortion pill san francisco,abortion pill san francisco price,1,4,google,2026-03-12 19:37:53.369866,abortion services san francisco,abortion san francisco,pill,price +abortion,"('abortion pill san francisco', 'abortion clinic san francisco')",abortion pill san francisco,abortion clinic san francisco,2,4,google,2026-03-12 19:37:53.369866,abortion services san francisco,abortion san francisco,pill,clinic +abortion,"('abortion pill san francisco', 'abortion clinic san francisco ca')",abortion pill san francisco,abortion clinic san francisco ca,3,4,google,2026-03-12 19:37:53.369866,abortion services san francisco,abortion san francisco,pill,clinic ca +abortion,"('abortion pill san francisco', 'abortion pill under 9 weeks')",abortion pill san francisco,abortion pill under 9 weeks,4,4,google,2026-03-12 19:37:53.369866,abortion services san francisco,abortion san francisco,pill,under 9 weeks +abortion,"('abortion pill san francisco', 'abortion pill san jose')",abortion pill san francisco,abortion pill san jose,5,4,google,2026-03-12 19:37:53.369866,abortion services san francisco,abortion san francisco,pill,jose +abortion,"('abortion pill san francisco', 'abortion pill sacramento ca')",abortion pill san francisco,abortion pill sacramento ca,6,4,google,2026-03-12 19:37:53.369866,abortion services san francisco,abortion san francisco,pill,sacramento ca +abortion,"('abortion pill san francisco', 'abortion pill san diego')",abortion pill san francisco,abortion pill san diego,7,4,google,2026-03-12 19:37:53.369866,abortion services san francisco,abortion san francisco,pill,diego +abortion,"('abortion pill san francisco', 'abortion pill sacramento')",abortion pill san francisco,abortion pill sacramento,8,4,google,2026-03-12 19:37:53.369866,abortion services san francisco,abortion san francisco,pill,sacramento +abortion,"('abortion protest san francisco', 'pro life protest san francisco')",abortion protest san francisco,pro life protest san francisco,1,4,google,2026-03-12 19:37:54.757942,abortion services san francisco,abortion san francisco,protest,pro life +abortion,"('abortion protest san francisco', 'abortion rally san francisco')",abortion protest san francisco,abortion rally san francisco,2,4,google,2026-03-12 19:37:54.757942,abortion services san francisco,abortion san francisco,protest,rally +abortion,"('abortion protest san francisco', 'anti abortion protest san francisco')",abortion protest san francisco,anti abortion protest san francisco,3,4,google,2026-03-12 19:37:54.757942,abortion services san francisco,abortion san francisco,protest,anti +abortion,"('abortion protest san francisco', 'anti abortion rally san francisco')",abortion protest san francisco,anti abortion rally san francisco,4,4,google,2026-03-12 19:37:54.757942,abortion services san francisco,abortion san francisco,protest,anti rally +abortion,"('abortion protest san francisco', 'abortion protests near me')",abortion protest san francisco,abortion protests near me,5,4,google,2026-03-12 19:37:54.757942,abortion services san francisco,abortion san francisco,protest,protests near me +abortion,"('abortion protest san francisco', 'anti abortion protests near me')",abortion protest san francisco,anti abortion protests near me,6,4,google,2026-03-12 19:37:54.757942,abortion services san francisco,abortion san francisco,protest,anti protests near me +abortion,"('abortion protest san francisco', 'are there protests going on in san francisco')",abortion protest san francisco,are there protests going on in san francisco,7,4,google,2026-03-12 19:37:54.757942,abortion services san francisco,abortion san francisco,protest,are there protests going on in +abortion,"('abortion protest san francisco', 'abortion protest sf')",abortion protest san francisco,abortion protest sf,8,4,google,2026-03-12 19:37:54.757942,abortion services san francisco,abortion san francisco,protest,sf +abortion,"('anti abortion san francisco', 'anti abortion protest san francisco')",anti abortion san francisco,anti abortion protest san francisco,1,4,google,2026-03-12 19:37:55.980412,abortion services san francisco,abortion san francisco,anti,protest +abortion,"('anti abortion san francisco', 'anti abortion march san francisco')",anti abortion san francisco,anti abortion march san francisco,2,4,google,2026-03-12 19:37:55.980412,abortion services san francisco,abortion san francisco,anti,march +abortion,"('anti abortion san francisco', 'anti abortion rally san francisco')",anti abortion san francisco,anti abortion rally san francisco,3,4,google,2026-03-12 19:37:55.980412,abortion services san francisco,abortion san francisco,anti,rally +abortion,"('anti abortion san francisco', 'anti abortion laws')",anti abortion san francisco,anti abortion laws,4,4,google,2026-03-12 19:37:55.980412,abortion services san francisco,abortion san francisco,anti,laws +abortion,"('anti abortion san francisco', 'anti abortion protests near me')",anti abortion san francisco,anti abortion protests near me,5,4,google,2026-03-12 19:37:55.980412,abortion services san francisco,abortion san francisco,anti,protests near me +abortion,"('anti abortion san francisco', 'anti abortion jobs')",anti abortion san francisco,anti abortion jobs,6,4,google,2026-03-12 19:37:55.980412,abortion services san francisco,abortion san francisco,anti,jobs +abortion,"('anti abortion san francisco', 'anti abortion protest sf')",anti abortion san francisco,anti abortion protest sf,7,4,google,2026-03-12 19:37:55.980412,abortion services san francisco,abortion san francisco,anti,protest sf +abortion,"('surgical abortion san francisco', 'surgical abortion san diego')",surgical abortion san francisco,surgical abortion san diego,1,4,google,2026-03-12 19:37:57.415420,abortion services san francisco,abortion san francisco,surgical,diego +abortion,"('surgical abortion san francisco', 'surgical abortion california')",surgical abortion san francisco,surgical abortion california,2,4,google,2026-03-12 19:37:57.415420,abortion services san francisco,abortion san francisco,surgical,california +abortion,"('san francisco abortion law', 'san francisco abortion laws')",san francisco abortion law,san francisco abortion laws,1,4,google,2026-03-12 19:37:58.848292,abortion services san francisco,abortion san francisco,law,laws +abortion,"('san francisco abortion law', 'is abortion legal in california')",san francisco abortion law,is abortion legal in california,2,4,google,2026-03-12 19:37:58.848292,abortion services san francisco,abortion san francisco,law,is legal in california +abortion,"('san francisco abortion law', 'san francisco abortion rights')",san francisco abortion law,san francisco abortion rights,3,4,google,2026-03-12 19:37:58.848292,abortion services san francisco,abortion san francisco,law,rights +abortion,"('san francisco abortion law', 'san francisco abortion protests')",san francisco abortion law,san francisco abortion protests,4,4,google,2026-03-12 19:37:58.848292,abortion services san francisco,abortion san francisco,law,protests +abortion,"('abortion rally san francisco', 'pro life rally san francisco')",abortion rally san francisco,pro life rally san francisco,1,4,google,2026-03-12 19:38:00.189382,abortion services san francisco,abortion san francisco,rally,pro life +abortion,"('abortion rally san francisco', 'abortion protest san francisco')",abortion rally san francisco,abortion protest san francisco,2,4,google,2026-03-12 19:38:00.189382,abortion services san francisco,abortion san francisco,rally,protest +abortion,"('abortion rally san francisco', 'anti abortion rally san francisco')",abortion rally san francisco,anti abortion rally san francisco,3,4,google,2026-03-12 19:38:00.189382,abortion services san francisco,abortion san francisco,rally,anti +abortion,"('abortion rally san francisco', 'anti abortion protest san francisco')",abortion rally san francisco,anti abortion protest san francisco,4,4,google,2026-03-12 19:38:00.189382,abortion services san francisco,abortion san francisco,rally,anti protest +abortion,"('abortion rally san francisco', 'abortion clinics in san francisco')",abortion rally san francisco,abortion clinics in san francisco,5,4,google,2026-03-12 19:38:00.189382,abortion services san francisco,abortion san francisco,rally,clinics in +abortion,"('abortion rally san francisco', 'abortion rally sf today')",abortion rally san francisco,abortion rally sf today,6,4,google,2026-03-12 19:38:00.189382,abortion services san francisco,abortion san francisco,rally,sf today +abortion,"('abortion rally san francisco', 'abortion rally sf')",abortion rally san francisco,abortion rally sf,7,4,google,2026-03-12 19:38:00.189382,abortion services san francisco,abortion san francisco,rally,sf +abortion,"('abortion rally san francisco', 'abortion rally bay area')",abortion rally san francisco,abortion rally bay area,8,4,google,2026-03-12 19:38:00.189382,abortion services san francisco,abortion san francisco,rally,bay area +abortion,"('abortion clinic near me surgical', 'surgical abortion clinics near me open now')",abortion clinic near me surgical,surgical abortion clinics near me open now,1,4,google,2026-03-12 19:38:01.661913,abortion services san francisco,abortion clinics sf,clinic near me surgical,clinics open now +abortion,"('abortion clinic near me surgical', 'private surgical abortion clinic near me')",abortion clinic near me surgical,private surgical abortion clinic near me,2,4,google,2026-03-12 19:38:01.661913,abortion services san francisco,abortion clinics sf,clinic near me surgical,private +abortion,"('abortion clinic near me surgical', 'abortion clinic near me for free')",abortion clinic near me surgical,abortion clinic near me for free,3,4,google,2026-03-12 19:38:01.661913,abortion services san francisco,abortion clinics sf,clinic near me surgical,for free +abortion,"('abortion clinic near me surgical', 'abortion clinic near me and prices')",abortion clinic near me surgical,abortion clinic near me and prices,4,4,google,2026-03-12 19:38:01.661913,abortion services san francisco,abortion clinics sf,clinic near me surgical,and prices +abortion,"('abortion clinic near me surgical', 'abortion clinic near me open sunday')",abortion clinic near me surgical,abortion clinic near me open sunday,5,4,google,2026-03-12 19:38:01.661913,abortion services san francisco,abortion clinics sf,clinic near me surgical,open sunday +abortion,"('abortion clinic near me surgical', 'abortion clinic near me same day')",abortion clinic near me surgical,abortion clinic near me same day,6,4,google,2026-03-12 19:38:01.661913,abortion services san francisco,abortion clinics sf,clinic near me surgical,same day +abortion,"('abortion clinic near me surgical', 'abortion clinic near me open saturday')",abortion clinic near me surgical,abortion clinic near me open saturday,7,4,google,2026-03-12 19:38:01.661913,abortion services san francisco,abortion clinics sf,clinic near me surgical,open saturday +abortion,"(""Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA"", ""Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, California"")","Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA","Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, California",1,4,google,2026-03-12 19:38:02.529235,women's health clinic san francisco,tia women's health clinic san francisco,"Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA",California +abortion,"(""tia women's health locations"", ""tia women's health clinic"")",tia women's health locations,tia women's health clinic,1,4,google,2026-03-12 19:38:03.793519,women's health clinic san francisco,tia women's health clinic san francisco,locations,clinic +abortion,"(""tia women's health locations"", ""tia women's health los angeles"")",tia women's health locations,tia women's health los angeles,2,4,google,2026-03-12 19:38:03.793519,women's health clinic san francisco,tia women's health clinic san francisco,locations,los angeles +abortion,"(""tia women's health locations"", ""tia women's wellness"")",tia women's health locations,tia women's wellness,3,4,google,2026-03-12 19:38:03.793519,women's health clinic san francisco,tia women's health clinic san francisco,locations,wellness +abortion,"(""tia women's health locations"", ""tia women's health"")",tia women's health locations,tia women's health,4,4,google,2026-03-12 19:38:03.793519,women's health clinic san francisco,tia women's health clinic san francisco,locations,locations +abortion,"(""tia women's health clinic"", ""tia women's health clinic san francisco"")",tia women's health clinic,tia women's health clinic san francisco,1,4,google,2026-03-12 19:38:05.165865,women's health clinic san francisco,tia women's health clinic san francisco,tia,san francisco +abortion,"(""tia women's health clinic"", ""tia women's health clinic culver city"")",tia women's health clinic,tia women's health clinic culver city,2,4,google,2026-03-12 19:38:05.165865,women's health clinic san francisco,tia women's health clinic san francisco,tia,culver city +abortion,"(""tia women's health clinic"", ""tia women's health clinic pasadena"")",tia women's health clinic,tia women's health clinic pasadena,3,4,google,2026-03-12 19:38:05.165865,women's health clinic san francisco,tia women's health clinic san francisco,tia,pasadena +abortion,"(""tia women's health clinic"", ""tia women's health clinic williamsburg reviews"")",tia women's health clinic,tia women's health clinic williamsburg reviews,4,4,google,2026-03-12 19:38:05.165865,women's health clinic san francisco,tia women's health clinic san francisco,tia,williamsburg reviews +abortion,"(""tia women's health clinic"", ""tia women's health clinic san francisco reviews"")",tia women's health clinic,tia women's health clinic san francisco reviews,5,4,google,2026-03-12 19:38:05.165865,women's health clinic san francisco,tia women's health clinic san francisco,tia,san francisco reviews +abortion,"(""tia women's health clinic"", ""tia women's health clinic williamsburg"")",tia women's health clinic,tia women's health clinic williamsburg,6,4,google,2026-03-12 19:38:05.165865,women's health clinic san francisco,tia women's health clinic san francisco,tia,williamsburg +abortion,"(""tia women's health clinic"", ""tia women's health clinic scottsdale"")",tia women's health clinic,tia women's health clinic scottsdale,7,4,google,2026-03-12 19:38:05.165865,women's health clinic san francisco,tia women's health clinic san francisco,tia,scottsdale +abortion,"(""tia women's health clinic"", ""tia women's health clinic studio city studio city"")",tia women's health clinic,tia women's health clinic studio city studio city,8,4,google,2026-03-12 19:38:05.165865,women's health clinic san francisco,tia women's health clinic san francisco,tia,studio city studio city +abortion,"(""tia women's health clinic"", ""tia women's health clinic silver lake"")",tia women's health clinic,tia women's health clinic silver lake,9,4,google,2026-03-12 19:38:05.165865,women's health clinic san francisco,tia women's health clinic san francisco,tia,silver lake +abortion,"('tia health san francisco', 'tia health san francisco reddit')",tia health san francisco,tia health san francisco reddit,1,4,google,2026-03-12 19:38:06.400246,women's health clinic san francisco,tia women's health clinic san francisco,tia,reddit +abortion,"('tia health san francisco', 'tia healthcare san francisco')",tia health san francisco,tia healthcare san francisco,2,4,google,2026-03-12 19:38:06.400246,women's health clinic san francisco,tia women's health clinic san francisco,tia,healthcare +abortion,"('tia health san francisco', 'tia medical san francisco')",tia health san francisco,tia medical san francisco,3,4,google,2026-03-12 19:38:06.400246,women's health clinic san francisco,tia women's health clinic san francisco,tia,medical +abortion,"('tia health san francisco', ""tia women's health san francisco"")",tia health san francisco,tia women's health san francisco,4,4,google,2026-03-12 19:38:06.400246,women's health clinic san francisco,tia women's health clinic san francisco,tia,women's +abortion,"('tia health san francisco', ""tia women's health clinic san francisco"")",tia health san francisco,tia women's health clinic san francisco,5,4,google,2026-03-12 19:38:06.400246,women's health clinic san francisco,tia women's health clinic san francisco,tia,women's clinic +abortion,"('tia health san francisco', ""tia women's health clinic san francisco reviews"")",tia health san francisco,tia women's health clinic san francisco reviews,6,4,google,2026-03-12 19:38:06.400246,women's health clinic san francisco,tia women's health clinic san francisco,tia,women's clinic reviews +abortion,"('tia health san francisco', ""Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA"")",tia health san francisco,"Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA",7,4,google,2026-03-12 19:38:06.400246,women's health clinic san francisco,tia women's health clinic san francisco,tia,"Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA" +abortion,"('tia health san francisco', 'tia health sf')",tia health san francisco,tia health sf,8,4,google,2026-03-12 19:38:06.400246,women's health clinic san francisco,tia women's health clinic san francisco,tia,sf +abortion,"('tia health san francisco', 'tia san francisco')",tia health san francisco,tia san francisco,9,4,google,2026-03-12 19:38:06.400246,women's health clinic san francisco,tia women's health clinic san francisco,tia,tia +abortion,"('tia sf clinic', 'tia clinic sf')",tia sf clinic,tia clinic sf,1,4,google,2026-03-12 19:38:07.665887,women's health clinic san francisco,tia women's health clinic san francisco,sf,sf +abortion,"('tia sf clinic', 'tia sf reviews')",tia sf clinic,tia sf reviews,2,4,google,2026-03-12 19:38:07.665887,women's health clinic san francisco,tia women's health clinic san francisco,sf,reviews +abortion,"('tia sf clinic', 'tia sf')",tia sf clinic,tia sf,3,4,google,2026-03-12 19:38:07.665887,women's health clinic san francisco,tia women's health clinic san francisco,sf,sf +abortion,"('tia sf clinic', 'tia clinic san francisco')",tia sf clinic,tia clinic san francisco,4,4,google,2026-03-12 19:38:07.665887,women's health clinic san francisco,tia women's health clinic san francisco,sf,san francisco +abortion,"(""tia women's health los angeles"", ""tia women's health clinic silver lake los angeles"")",tia women's health los angeles,tia women's health clinic silver lake los angeles,1,4,google,2026-03-12 19:38:09.022289,women's health clinic san francisco,tia women's health clinic san francisco,los angeles,clinic silver lake +abortion,"(""tia women's health los angeles"", ""tia women's health clinic playa vista los angeles"")",tia women's health los angeles,tia women's health clinic playa vista los angeles,2,4,google,2026-03-12 19:38:09.022289,women's health clinic san francisco,tia women's health clinic san francisco,los angeles,clinic playa vista +abortion,"(""tia women's health los angeles"", ""tia women's health locations"")",tia women's health los angeles,tia women's health locations,3,4,google,2026-03-12 19:38:09.022289,women's health clinic san francisco,tia women's health clinic san francisco,los angeles,locations +abortion,"(""tia women's health los angeles"", 'tia health los angeles')",tia women's health los angeles,tia health los angeles,4,4,google,2026-03-12 19:38:09.022289,women's health clinic san francisco,tia women's health clinic san francisco,los angeles,los angeles +abortion,"(""tia women's health los angeles"", ""tia women's health reviews"")",tia women's health los angeles,tia women's health reviews,5,4,google,2026-03-12 19:38:09.022289,women's health clinic san francisco,tia women's health clinic san francisco,los angeles,reviews +abortion,"(""tia women's health los angeles"", ""tia women's wellness"")",tia women's health los angeles,tia women's wellness,6,4,google,2026-03-12 19:38:09.022289,women's health clinic san francisco,tia women's health clinic san francisco,los angeles,wellness +abortion,"('tia san francisco reviews', ""tia women's health clinic san francisco reviews"")",tia san francisco reviews,tia women's health clinic san francisco reviews,1,4,google,2026-03-12 19:38:10.285469,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,women's health clinic +abortion,"('tia san francisco reviews', 'tia sf reviews')",tia san francisco reviews,tia sf reviews,2,4,google,2026-03-12 19:38:10.285469,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,sf +abortion,"('tia san francisco reviews', 'tia san francisco')",tia san francisco reviews,tia san francisco,3,4,google,2026-03-12 19:38:10.285469,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,tia reviews +abortion,"('tia san francisco reviews', 'tia mission sf reviews')",tia san francisco reviews,tia mission sf reviews,4,4,google,2026-03-12 19:38:10.285469,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,mission sf +abortion,"('tia sf reviews', 'tia health sf reviews')",tia sf reviews,tia health sf reviews,1,4,google,2026-03-12 19:38:11.205319,women's health clinic san francisco,tia women's health clinic san francisco reviews,sf,health +abortion,"('tia sf reviews', 'tia san francisco reviews')",tia sf reviews,tia san francisco reviews,2,4,google,2026-03-12 19:38:11.205319,women's health clinic san francisco,tia women's health clinic san francisco reviews,sf,san francisco +abortion,"('tia sf reviews', 'tia sf clinic')",tia sf reviews,tia sf clinic,3,4,google,2026-03-12 19:38:11.205319,women's health clinic san francisco,tia women's health clinic san francisco reviews,sf,clinic +abortion,"('tia sf reviews', 'tia sf')",tia sf reviews,tia sf,4,4,google,2026-03-12 19:38:11.205319,women's health clinic san francisco,tia women's health clinic san francisco reviews,sf,sf +abortion,"('tia sf reviews', 'tia mission sf reviews')",tia sf reviews,tia mission sf reviews,5,4,google,2026-03-12 19:38:11.205319,women's health clinic san francisco,tia women's health clinic san francisco reviews,sf,mission +abortion,"(""tia women's health reviews"", ""tia women's health clinic reviews"")",tia women's health reviews,tia women's health clinic reviews,1,4,google,2026-03-12 19:38:12.070676,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,clinic +abortion,"(""tia women's health reviews"", ""tia women's health clinic scottsdale reviews"")",tia women's health reviews,tia women's health clinic scottsdale reviews,2,4,google,2026-03-12 19:38:12.070676,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,clinic scottsdale +abortion,"(""tia women's health reviews"", ""tia women's health clinic williamsburg reviews"")",tia women's health reviews,tia women's health clinic williamsburg reviews,3,4,google,2026-03-12 19:38:12.070676,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,clinic williamsburg +abortion,"(""tia women's health reviews"", ""tia women's health clinic pasadena reviews"")",tia women's health reviews,tia women's health clinic pasadena reviews,4,4,google,2026-03-12 19:38:12.070676,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,clinic pasadena +abortion,"(""tia women's health reviews"", ""tia women's health clinic gilbert reviews"")",tia women's health reviews,tia women's health clinic gilbert reviews,5,4,google,2026-03-12 19:38:12.070676,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,clinic gilbert +abortion,"(""tia women's health reviews"", ""tia women's health clinic studio city reviews"")",tia women's health reviews,tia women's health clinic studio city reviews,6,4,google,2026-03-12 19:38:12.070676,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,clinic studio city +abortion,"(""tia women's health reviews"", ""tia women's health clinic silver lake reviews"")",tia women's health reviews,tia women's health clinic silver lake reviews,7,4,google,2026-03-12 19:38:12.070676,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,clinic silver lake +abortion,"(""tia women's health reviews"", ""tia women's health clinic san francisco reviews"")",tia women's health reviews,tia women's health clinic san francisco reviews,8,4,google,2026-03-12 19:38:12.070676,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,clinic san francisco +abortion,"(""tia women's health reviews"", ""tia women's health clinic west hollywood reviews"")",tia women's health reviews,tia women's health clinic west hollywood reviews,9,4,google,2026-03-12 19:38:12.070676,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,clinic west hollywood +abortion,"('tia clinic san francisco', ""tia women's health clinic san francisco"")",tia clinic san francisco,tia women's health clinic san francisco,1,4,google,2026-03-12 19:38:13.147188,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,women's health +abortion,"('tia clinic san francisco', ""tia women's health clinic san francisco reviews"")",tia clinic san francisco,tia women's health clinic san francisco reviews,2,4,google,2026-03-12 19:38:13.147188,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,women's health reviews +abortion,"('tia clinic san francisco', ""Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA"")",tia clinic san francisco,"Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA",3,4,google,2026-03-12 19:38:13.147188,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,"Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA" +abortion,"('tia clinic san francisco', 'tia clinic near me')",tia clinic san francisco,tia clinic near me,4,4,google,2026-03-12 19:38:13.147188,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,near me +abortion,"('tia clinic san francisco', 'tia clinic sf')",tia clinic san francisco,tia clinic sf,5,4,google,2026-03-12 19:38:13.147188,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,sf +abortion,"('tia clinic san francisco', 'tia san francisco')",tia clinic san francisco,tia san francisco,6,4,google,2026-03-12 19:38:13.147188,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,tia reviews +abortion,"('tia clinic san francisco', 'tia san francisco reviews')",tia clinic san francisco,tia san francisco reviews,7,4,google,2026-03-12 19:38:13.147188,women's health clinic san francisco,tia women's health clinic san francisco reviews,tia reviews,reviews +abortion,"(""women's breast center san mateo"", ""women's breast center san mateo ca"")",women's breast center san mateo,women's breast center san mateo ca,1,4,google,2026-03-12 19:38:14.056311,women's health clinic san francisco,women's breast health center san francisco,mateo,ca +abortion,"(""women's breast center san mateo"", ""women's center san mateo ca"")",women's breast center san mateo,women's center san mateo ca,2,4,google,2026-03-12 19:38:14.056311,women's health clinic san francisco,women's breast health center san francisco,mateo,ca +abortion,"(""women's breast center san mateo"", ""women's center san mateo"")",women's breast center san mateo,women's center san mateo,3,4,google,2026-03-12 19:38:14.056311,women's health clinic san francisco,women's breast health center san francisco,mateo,mateo +abortion,"(""women's breast center san mateo"", ""women's breast center santa monica"")",women's breast center san mateo,women's breast center santa monica,4,4,google,2026-03-12 19:38:14.056311,women's health clinic san francisco,women's breast health center san francisco,mateo,santa monica +abortion,"(""women's breast center san mateo ca"", ""women's breast center san mateo california"")",women's breast center san mateo ca,women's breast center san mateo california,1,4,google,2026-03-12 19:38:15.480147,women's health clinic san francisco,women's breast health center san francisco,mateo ca,california +abortion,"(""women's breast center san mateo ca"", ""women's breast center san mateo ca fax number"")",women's breast center san mateo ca,women's breast center san mateo ca fax number,2,4,google,2026-03-12 19:38:15.480147,women's health clinic san francisco,women's breast health center san francisco,mateo ca,fax number +abortion,"(""women's breast center san mateo ca"", ""women's breast center san mateo ca fax"")",women's breast center san mateo ca,women's breast center san mateo ca fax,3,4,google,2026-03-12 19:38:15.480147,women's health clinic san francisco,women's breast health center san francisco,mateo ca,fax +abortion,"(""women's breast center san mateo ca"", ""women's breast center san mateo ca npi"")",women's breast center san mateo ca,women's breast center san mateo ca npi,4,4,google,2026-03-12 19:38:15.480147,women's health clinic san francisco,women's breast health center san francisco,mateo ca,npi +abortion,"(""women's breast center san mateo ca"", ""women's breast center san mateo ca 94402"")",women's breast center san mateo ca,women's breast center san mateo ca 94402,5,4,google,2026-03-12 19:38:15.480147,women's health clinic san francisco,women's breast health center san francisco,mateo ca,94402 +abortion,"(""women's breast center san mateo ca"", ""women's breast center san mateo ca 94403"")",women's breast center san mateo ca,women's breast center san mateo ca 94403,6,4,google,2026-03-12 19:38:15.480147,women's health clinic san francisco,women's breast health center san francisco,mateo ca,94403 +abortion,"('sf breast health center', ""san francisco women's health center"")",sf breast health center,san francisco women's health center,1,4,google,2026-03-12 19:38:16.475610,women's health clinic san francisco,women's breast health center san francisco,sf,san francisco women's +abortion,"('sf breast health center', ""san francisco general women's health center"")",sf breast health center,san francisco general women's health center,2,4,google,2026-03-12 19:38:16.475610,women's health clinic san francisco,women's breast health center san francisco,sf,san francisco general women's +abortion,"('sf breast health center', 'cpmc breast health center sf')",sf breast health center,cpmc breast health center sf,3,4,google,2026-03-12 19:38:16.475610,women's health clinic san francisco,women's breast health center san francisco,sf,cpmc +abortion,"('sf breast health center', 'sutter health breast center sf')",sf breast health center,sutter health breast center sf,4,4,google,2026-03-12 19:38:16.475610,women's health clinic san francisco,women's breast health center san francisco,sf,sutter +abortion,"('sf breast health center', 'SPMF Breast Health Center, Mission Bernal Campus | 1580 Valencia Street, Valencia Street, SF, CA')",sf breast health center,"SPMF Breast Health Center, Mission Bernal Campus | 1580 Valencia Street, Valencia Street, SF, CA",5,4,google,2026-03-12 19:38:16.475610,women's health clinic san francisco,women's breast health center san francisco,sf,"SPMF Breast Health Center, Mission Bernal Campus | 1580 Valencia Street, Valencia Street, SF, CA" +abortion,"('sf breast health center', 'Breast Health Center: California Pacific Medical Center, Valencia Street, SF, CA')",sf breast health center,"Breast Health Center: California Pacific Medical Center, Valencia Street, SF, CA",6,4,google,2026-03-12 19:38:16.475610,women's health clinic san francisco,women's breast health center san francisco,sf,"Breast Health Center: California Pacific Medical Center, Valencia Street, SF, CA" +abortion,"('sf breast health center', 'UCSF Breast Care Center, 4th Street, SF, CA')",sf breast health center,"UCSF Breast Care Center, 4th Street, SF, CA",7,4,google,2026-03-12 19:38:16.475610,women's health clinic san francisco,women's breast health center san francisco,sf,"UCSF Breast Care Center, 4th Street, SF, CA" +abortion,"('sf breast health center', 'san francisco breast health center')",sf breast health center,san francisco breast health center,8,4,google,2026-03-12 19:38:16.475610,women's health clinic san francisco,women's breast health center san francisco,sf,san francisco +abortion,"('sf breast health center', ""women's breast health center san francisco"")",sf breast health center,women's breast health center san francisco,9,4,google,2026-03-12 19:38:16.475610,women's health clinic san francisco,women's breast health center san francisco,sf,women's san francisco +abortion,"('san francisco breast health center', ""san francisco women's health center"")",san francisco breast health center,san francisco women's health center,1,4,google,2026-03-12 19:38:17.863923,women's health clinic san francisco,women's breast health center san francisco,breast center,women's +abortion,"('san francisco breast health center', ""san francisco women's health clinic"")",san francisco breast health center,san francisco women's health clinic,2,4,google,2026-03-12 19:38:17.863923,women's health clinic san francisco,women's breast health center san francisco,breast center,women's clinic +abortion,"('san francisco breast health center', ""san francisco general women's health center"")",san francisco breast health center,san francisco general women's health center,3,4,google,2026-03-12 19:38:17.863923,women's health clinic san francisco,women's breast health center san francisco,breast center,general women's +abortion,"('san francisco breast health center', 'sutter breast health center san francisco')",san francisco breast health center,sutter breast health center san francisco,4,4,google,2026-03-12 19:38:17.863923,women's health clinic san francisco,women's breast health center san francisco,breast center,sutter +abortion,"('san francisco breast health center', ""women's breast health center san francisco"")",san francisco breast health center,women's breast health center san francisco,5,4,google,2026-03-12 19:38:17.863923,women's health clinic san francisco,women's breast health center san francisco,breast center,women's +abortion,"('san francisco breast health center', 'cpmc breast health center san francisco')",san francisco breast health center,cpmc breast health center san francisco,6,4,google,2026-03-12 19:38:17.863923,women's health clinic san francisco,women's breast health center san francisco,breast center,cpmc +abortion,"('san francisco breast health center', 'SPMF Breast Health Center, Mission Bernal Campus | 1580 Valencia Street, Valencia Street, San Francisco, CA')",san francisco breast health center,"SPMF Breast Health Center, Mission Bernal Campus | 1580 Valencia Street, Valencia Street, San Francisco, CA",7,4,google,2026-03-12 19:38:17.863923,women's health clinic san francisco,women's breast health center san francisco,breast center,"SPMF Breast Health Center, Mission Bernal Campus | 1580 Valencia Street, Valencia Street, San Francisco, CA" +abortion,"('san francisco breast health center', 'Breast Health Center: California Pacific Medical Center, Valencia Street, San Francisco, CA')",san francisco breast health center,"Breast Health Center: California Pacific Medical Center, Valencia Street, San Francisco, CA",8,4,google,2026-03-12 19:38:17.863923,women's health clinic san francisco,women's breast health center san francisco,breast center,"Breast Health Center: California Pacific Medical Center, Valencia Street, San Francisco, CA" +abortion,"('san francisco breast health center', 'UCSF Breast Care Center, 4th Street, San Francisco, CA')",san francisco breast health center,"UCSF Breast Care Center, 4th Street, San Francisco, CA",9,4,google,2026-03-12 19:38:17.863923,women's health clinic san francisco,women's breast health center san francisco,breast center,"UCSF Breast Care Center, 4th Street, San Francisco, CA" +abortion,"(""ucsf women's health sutter street"", ""UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA"")",ucsf women's health sutter street,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA",1,4,google,2026-03-12 19:38:19.080582,women's health clinic san francisco,ucsf women's health center san francisco ca,sutter street,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA" +abortion,"(""ucsf women's health sutter street"", ""ucsf women's health sutter"")",ucsf women's health sutter street,ucsf women's health sutter,2,4,google,2026-03-12 19:38:19.080582,women's health clinic san francisco,ucsf women's health center san francisco ca,sutter street,sutter street +abortion,"(""ucsf women's health sutter street"", ""ucsf women's health center san francisco ca"")",ucsf women's health sutter street,ucsf women's health center san francisco ca,3,4,google,2026-03-12 19:38:19.080582,women's health clinic san francisco,ucsf women's health center san francisco ca,sutter street,center san francisco ca +abortion,"(""ucsf women's health sutter street"", 'ucsf sutter street')",ucsf women's health sutter street,ucsf sutter street,4,4,google,2026-03-12 19:38:19.080582,women's health clinic san francisco,ucsf women's health center san francisco ca,sutter street,sutter street +abortion,"(""ucsf women's health sutter street"", ""ucsf women's health center"")",ucsf women's health sutter street,ucsf women's health center,5,4,google,2026-03-12 19:38:19.080582,women's health clinic san francisco,ucsf women's health center san francisco ca,sutter street,center +abortion,"(""st. mary's medical center san francisco photos"", ""st mary's medical center san francisco photos"")",st. mary's medical center san francisco photos,st mary's medical center san francisco photos,1,4,google,2026-03-12 19:38:19.978355,women's health clinic san francisco,st mary's women's health center san francisco,st. medical photos,st +abortion,"(""st. mary's medical center san francisco photos"", ""St Mary's Medical Center, San Francisco, Stanyan Street, San Francisco, CA"")",st. mary's medical center san francisco photos,"St Mary's Medical Center, San Francisco, Stanyan Street, San Francisco, CA",2,4,google,2026-03-12 19:38:19.978355,women's health clinic san francisco,st mary's women's health center san francisco,st. medical photos,"St Mary's Medical Center, San Francisco, Stanyan Street, San Francisco, CA" +abortion,"(""st. mary's medical center san francisco photos"", ""st. mary's medical center san francisco map"")",st. mary's medical center san francisco photos,st. mary's medical center san francisco map,3,4,google,2026-03-12 19:38:19.978355,women's health clinic san francisco,st mary's women's health center san francisco,st. medical photos,map +abortion,"(""st. mary's medical center san francisco photos"", ""st. mary's medical center san francisco ca"")",st. mary's medical center san francisco photos,st. mary's medical center san francisco ca,4,4,google,2026-03-12 19:38:19.978355,women's health clinic san francisco,st mary's women's health center san francisco,st. medical photos,ca +abortion,"(""st. mary's medical center san francisco photos"", 'st. mary’s medical center san francisco ca')",st. mary's medical center san francisco photos,st. mary’s medical center san francisco ca,5,4,google,2026-03-12 19:38:19.978355,women's health clinic san francisco,st mary's women's health center san francisco,st. medical photos,mary’s ca +abortion,"(""st mary's women's health center"", ""st mary's women's health center san francisco"")",st mary's women's health center,st mary's women's health center san francisco,1,4,google,2026-03-12 19:38:20.874761,women's health clinic san francisco,st mary's women's health center san francisco,st mary's center,san francisco +abortion,"(""st mary's women's health center"", ""st mary's women's health center troy ny"")",st mary's women's health center,st mary's women's health center troy ny,2,4,google,2026-03-12 19:38:20.874761,women's health clinic san francisco,st mary's women's health center san francisco,st mary's center,troy ny +abortion,"(""st mary's women's health center"", ""saint mary's women's health center harold chotiner md"")",st mary's women's health center,saint mary's women's health center harold chotiner md,3,4,google,2026-03-12 19:38:20.874761,women's health clinic san francisco,st mary's women's health center san francisco,st mary's center,saint harold chotiner md +abortion,"(""st mary's women's health center"", ""st mary's women's medical center"")",st mary's women's health center,st mary's women's medical center,4,4,google,2026-03-12 19:38:20.874761,women's health clinic san francisco,st mary's women's health center san francisco,st mary's center,medical +abortion,"(""st mary's women's health center"", ""st mary's women's wellness center"")",st mary's women's health center,st mary's women's wellness center,5,4,google,2026-03-12 19:38:20.874761,women's health clinic san francisco,st mary's women's health center san francisco,st mary's center,wellness +abortion,"(""st mary's women's health center"", ""st mary's women's health clinic"")",st mary's women's health center,st mary's women's health clinic,6,4,google,2026-03-12 19:38:20.874761,women's health clinic san francisco,st mary's women's health center san francisco,st mary's center,clinic +abortion,"(""st mary's women's health center"", ""columbia st. mary's women's medical center"")",st mary's women's health center,columbia st. mary's women's medical center,7,4,google,2026-03-12 19:38:20.874761,women's health clinic san francisco,st mary's women's health center san francisco,st mary's center,columbia st. medical +abortion,"(""st mary's women's health center"", ""ascension columbia st mary's women's medical center"")",st mary's women's health center,ascension columbia st mary's women's medical center,8,4,google,2026-03-12 19:38:20.874761,women's health clinic san francisco,st mary's women's health center san francisco,st mary's center,ascension columbia medical +abortion,"(""st mary's women's health center"", ""ascension columbia st mary's women's medical center photos"")",st mary's women's health center,ascension columbia st mary's women's medical center photos,9,4,google,2026-03-12 19:38:20.874761,women's health clinic san francisco,st mary's women's health center san francisco,st mary's center,ascension columbia medical photos +abortion,"(""st mary's medical center san francisco services"", ""services offered by st mary's medical center san francisco"")",st mary's medical center san francisco services,services offered by st mary's medical center san francisco,1,4,google,2026-03-12 19:38:21.900954,women's health clinic san francisco,st mary's women's health center san francisco,medical services,offered by +abortion,"(""st mary's medical center san francisco services"", ""ucsf health st mary's medical center laboratory services san francisco"")",st mary's medical center san francisco services,ucsf health st mary's medical center laboratory services san francisco,2,4,google,2026-03-12 19:38:21.900954,women's health clinic san francisco,st mary's women's health center san francisco,medical services,ucsf health laboratory +abortion,"(""st mary's medical center san francisco services"", ""st mary's medical center san francisco photos"")",st mary's medical center san francisco services,st mary's medical center san francisco photos,3,4,google,2026-03-12 19:38:21.900954,women's health clinic san francisco,st mary's women's health center san francisco,medical services,photos +abortion,"(""st mary's medical center san francisco services"", ""st mary's medical center san francisco ca"")",st mary's medical center san francisco services,st mary's medical center san francisco ca,4,4,google,2026-03-12 19:38:21.900954,women's health clinic san francisco,st mary's women's health center san francisco,medical services,ca +abortion,"(""st mary's medical center san francisco services"", ""st. mary's medical center san francisco map"")",st mary's medical center san francisco services,st. mary's medical center san francisco map,5,4,google,2026-03-12 19:38:21.900954,women's health clinic san francisco,st mary's women's health center san francisco,medical services,st. map +abortion,"(""pacific women's health san francisco"", ""pacific women's health sf"")",pacific women's health san francisco,pacific women's health sf,1,4,google,2026-03-12 19:38:22.734663,women's health clinic san francisco,women's health san francisco,pacific,sf +abortion,"(""pacific women's health san francisco"", ""pacific women's ob gyn san francisco"")",pacific women's health san francisco,pacific women's ob gyn san francisco,2,4,google,2026-03-12 19:38:22.734663,women's health clinic san francisco,women's health san francisco,pacific,ob gyn +abortion,"(""pacific women's health san francisco"", ""pacific women's ob/gyn medical group san francisco ca"")",pacific women's health san francisco,pacific women's ob/gyn medical group san francisco ca,3,4,google,2026-03-12 19:38:22.734663,women's health clinic san francisco,women's health san francisco,pacific,ob/gyn medical group ca +abortion,"(""pacific women's health san francisco"", ""pacific women's health clinic"")",pacific women's health san francisco,pacific women's health clinic,4,4,google,2026-03-12 19:38:22.734663,women's health clinic san francisco,women's health san francisco,pacific,clinic +abortion,"(""tia women's health san francisco"", ""tia women's health clinic san francisco"")",tia women's health san francisco,tia women's health clinic san francisco,1,4,google,2026-03-12 19:38:23.596675,women's health clinic san francisco,women's health san francisco,tia,clinic +abortion,"(""tia women's health san francisco"", ""tia women's health clinic san francisco reviews"")",tia women's health san francisco,tia women's health clinic san francisco reviews,2,4,google,2026-03-12 19:38:23.596675,women's health clinic san francisco,women's health san francisco,tia,clinic reviews +abortion,"(""tia women's health san francisco"", ""Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA"")",tia women's health san francisco,"Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA",3,4,google,2026-03-12 19:38:23.596675,women's health clinic san francisco,women's health san francisco,tia,"Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA" +abortion,"(""tia women's health san francisco"", ""tia women's health locations"")",tia women's health san francisco,tia women's health locations,4,4,google,2026-03-12 19:38:23.596675,women's health clinic san francisco,women's health san francisco,tia,locations +abortion,"(""tia women's health san francisco"", ""tia women's health los angeles"")",tia women's health san francisco,tia women's health los angeles,5,4,google,2026-03-12 19:38:23.596675,women's health clinic san francisco,women's health san francisco,tia,los angeles +abortion,"(""tia women's health san francisco"", ""tia women's health clinic"")",tia women's health san francisco,tia women's health clinic,6,4,google,2026-03-12 19:38:23.596675,women's health clinic san francisco,women's health san francisco,tia,clinic +abortion,"(""tia women's health san francisco"", ""tia women's health"")",tia women's health san francisco,tia women's health,7,4,google,2026-03-12 19:38:23.596675,women's health clinic san francisco,women's health san francisco,tia,tia +abortion,"(""tia women's health san francisco"", ""tia women's health reviews"")",tia women's health san francisco,tia women's health reviews,8,4,google,2026-03-12 19:38:23.596675,women's health clinic san francisco,women's health san francisco,tia,reviews +abortion,"(""ucsf women's health san francisco"", ""ucsf women's health center san francisco ca"")",ucsf women's health san francisco,ucsf women's health center san francisco ca,1,4,google,2026-03-12 19:38:24.504844,women's health clinic san francisco,women's health san francisco,ucsf,center ca +abortion,"(""ucsf women's health san francisco"", ""ucsf radiology at the women's health center san francisco"")",ucsf women's health san francisco,ucsf radiology at the women's health center san francisco,2,4,google,2026-03-12 19:38:24.504844,women's health clinic san francisco,women's health san francisco,ucsf,radiology at the center +abortion,"(""ucsf women's health san francisco"", ""ucsf center for urogynecology and women's pelvic health san francisco"")",ucsf women's health san francisco,ucsf center for urogynecology and women's pelvic health san francisco,3,4,google,2026-03-12 19:38:24.504844,women's health clinic san francisco,women's health san francisco,ucsf,center for urogynecology and pelvic +abortion,"(""ucsf women's health san francisco"", ""UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA"")",ucsf women's health san francisco,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA",4,4,google,2026-03-12 19:38:24.504844,women's health clinic san francisco,women's health san francisco,ucsf,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA" +abortion,"(""ucsf women's health san francisco"", ""ucsf women's health sutter"")",ucsf women's health san francisco,ucsf women's health sutter,5,4,google,2026-03-12 19:38:24.504844,women's health clinic san francisco,women's health san francisco,ucsf,sutter +abortion,"(""ucsf women's health san francisco"", ""ucsf women's health sutter street"")",ucsf women's health san francisco,ucsf women's health sutter street,6,4,google,2026-03-12 19:38:24.504844,women's health clinic san francisco,women's health san francisco,ucsf,sutter street +abortion,"(""ucsf women's health san francisco"", ""ucsf women's health center"")",ucsf women's health san francisco,ucsf women's health center,7,4,google,2026-03-12 19:38:24.504844,women's health clinic san francisco,women's health san francisco,ucsf,center +abortion,"(""ucsf women's health san francisco"", ""ucsf women's health clinic"")",ucsf women's health san francisco,ucsf women's health clinic,8,4,google,2026-03-12 19:38:24.504844,women's health clinic san francisco,women's health san francisco,ucsf,clinic +abortion,"(""women's health startups san francisco"", ""women's health startups"")",women's health startups san francisco,women's health startups,1,4,google,2026-03-12 19:38:25.554204,women's health clinic san francisco,women's health san francisco,startups,startups +abortion,"(""women's health startups san francisco"", ""women's healthcare startups"")",women's health startups san francisco,women's healthcare startups,2,4,google,2026-03-12 19:38:25.554204,women's health clinic san francisco,women's health san francisco,startups,healthcare +abortion,"(""women's health startups san francisco"", ""women's health startups nyc"")",women's health startups san francisco,women's health startups nyc,3,4,google,2026-03-12 19:38:25.554204,women's health clinic san francisco,women's health san francisco,startups,nyc +abortion,"(""women's health startups san francisco"", ""women's health startups hiring"")",women's health startups san francisco,women's health startups hiring,4,4,google,2026-03-12 19:38:25.554204,women's health clinic san francisco,women's health san francisco,startups,hiring +abortion,"(""women's health companies san francisco"", ""largest women's health companies"")",women's health companies san francisco,largest women's health companies,1,4,google,2026-03-12 19:38:26.498516,women's health clinic san francisco,women's health san francisco,companies,largest +abortion,"(""women's health companies san francisco"", ""women's health san francisco"")",women's health companies san francisco,women's health san francisco,2,4,google,2026-03-12 19:38:26.498516,women's health clinic san francisco,women's health san francisco,companies,companies +abortion,"(""women's health companies san francisco"", ""women's health clinic san francisco"")",women's health companies san francisco,women's health clinic san francisco,3,4,google,2026-03-12 19:38:26.498516,women's health clinic san francisco,women's health san francisco,companies,clinic +abortion,"(""women's health companies san francisco"", ""women's health center san francisco"")",women's health companies san francisco,women's health center san francisco,4,4,google,2026-03-12 19:38:26.498516,women's health clinic san francisco,women's health san francisco,companies,center +abortion,"(""women's health companies san francisco"", 'san francisco women’s healthcare')",women's health companies san francisco,san francisco women’s healthcare,5,4,google,2026-03-12 19:38:26.498516,women's health clinic san francisco,women's health san francisco,companies,women’s healthcare +abortion,"(""women's health companies san francisco"", ""san francisco women's healthcare inc"")",women's health companies san francisco,san francisco women's healthcare inc,6,4,google,2026-03-12 19:38:26.498516,women's health clinic san francisco,women's health san francisco,companies,healthcare inc +abortion,"(""sutter women's health san francisco"", ""sutter women's health center san francisco"")",sutter women's health san francisco,sutter women's health center san francisco,1,4,google,2026-03-12 19:38:27.661857,women's health clinic san francisco,women's health san francisco,sutter,center +abortion,"(""sutter women's health san francisco"", ""Ucsf Women's Health Obstetrics: Chen Joyce D MD, Sutter Street, San Francisco, CA"")",sutter women's health san francisco,"Ucsf Women's Health Obstetrics: Chen Joyce D MD, Sutter Street, San Francisco, CA",2,4,google,2026-03-12 19:38:27.661857,women's health clinic san francisco,women's health san francisco,sutter,"Ucsf Women's Health Obstetrics: Chen Joyce D MD, Sutter Street, San Francisco, CA" +abortion,"(""sutter women's health san francisco"", ""UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA"")",sutter women's health san francisco,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA",3,4,google,2026-03-12 19:38:27.661857,women's health clinic san francisco,women's health san francisco,sutter,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA" +abortion,"(""sutter women's health san francisco"", 'sutter health san francisco locations')",sutter women's health san francisco,sutter health san francisco locations,4,4,google,2026-03-12 19:38:27.661857,women's health clinic san francisco,women's health san francisco,sutter,locations +abortion,"(""sutter women's health san francisco"", 'sutter health san francisco address')",sutter women's health san francisco,sutter health san francisco address,5,4,google,2026-03-12 19:38:27.661857,women's health clinic san francisco,women's health san francisco,sutter,address +abortion,"(""sutter women's health san francisco"", 'sutter health san francisco phone number')",sutter women's health san francisco,sutter health san francisco phone number,6,4,google,2026-03-12 19:38:27.661857,women's health clinic san francisco,women's health san francisco,sutter,phone number +abortion,"(""sutter women's health san francisco"", 'sutter health san francisco jobs')",sutter women's health san francisco,sutter health san francisco jobs,7,4,google,2026-03-12 19:38:27.661857,women's health clinic san francisco,women's health san francisco,sutter,jobs +abortion,"(""sutter women's health san francisco"", ""sutter health women's health san francisco"")",sutter women's health san francisco,sutter health women's health san francisco,8,4,google,2026-03-12 19:38:27.661857,women's health clinic san francisco,women's health san francisco,sutter,sutter +abortion,"(""sutter women's health san francisco"", ""sutter health women's center san mateo"")",sutter women's health san francisco,sutter health women's center san mateo,9,4,google,2026-03-12 19:38:27.661857,women's health clinic san francisco,women's health san francisco,sutter,center mateo +abortion,"(""myriad women's health san francisco"", ""myriad women's health south san francisco"")",myriad women's health san francisco,myriad women's health south san francisco,1,4,google,2026-03-12 19:38:29.050731,women's health clinic san francisco,women's health san francisco,myriad,south +abortion,"(""myriad women's health san francisco"", ""myriad women's health fax number"")",myriad women's health san francisco,myriad women's health fax number,2,4,google,2026-03-12 19:38:29.050731,women's health clinic san francisco,women's health san francisco,myriad,fax number +abortion,"(""myriad women's health san francisco"", 'myriad women’s health inc')",myriad women's health san francisco,myriad women’s health inc,3,4,google,2026-03-12 19:38:29.050731,women's health clinic san francisco,women's health san francisco,myriad,women’s inc +abortion,"(""myriad women's health san francisco"", ""myriad women's health contact"")",myriad women's health san francisco,myriad women's health contact,4,4,google,2026-03-12 19:38:29.050731,women's health clinic san francisco,women's health san francisco,myriad,contact +abortion,"(""myriad women's health san francisco"", ""myriad women's health phone number"")",myriad women's health san francisco,myriad women's health phone number,5,4,google,2026-03-12 19:38:29.050731,women's health clinic san francisco,women's health san francisco,myriad,phone number +abortion,"(""free women's clinic near me"", ""free women's clinic near me no insurance"")",free women's clinic near me,free women's clinic near me no insurance,1,4,google,2026-03-12 19:38:29.859579,free women's clinic san francisco,free women's pregnancy clinic near me,pregnancy near me,no insurance +abortion,"(""free women's clinic near me"", ""free women's clinic near me within 5 mi"")",free women's clinic near me,free women's clinic near me within 5 mi,2,4,google,2026-03-12 19:38:29.859579,free women's clinic san francisco,free women's pregnancy clinic near me,pregnancy near me,within 5 mi +abortion,"(""free women's clinic near me"", ""free women's clinic near me open now"")",free women's clinic near me,free women's clinic near me open now,3,4,google,2026-03-12 19:38:29.859579,free women's clinic san francisco,free women's pregnancy clinic near me,pregnancy near me,open now +abortion,"(""free women's clinic near me"", ""free women's clinic near me walk in"")",free women's clinic near me,free women's clinic near me walk in,4,4,google,2026-03-12 19:38:29.859579,free women's clinic san francisco,free women's pregnancy clinic near me,pregnancy near me,walk in +abortion,"(""free women's clinic near me"", ""free women's clinic near me within 1 mi"")",free women's clinic near me,free women's clinic near me within 1 mi,5,4,google,2026-03-12 19:38:29.859579,free women's clinic san francisco,free women's pregnancy clinic near me,pregnancy near me,within 1 mi +abortion,"(""free women's clinic near me"", ""free women's clinic near mesquite tx"")",free women's clinic near me,free women's clinic near mesquite tx,6,4,google,2026-03-12 19:38:29.859579,free women's clinic san francisco,free women's pregnancy clinic near me,pregnancy near me,mesquite tx +abortion,"(""free women's clinic near me"", 'free obgyn clinic near me')",free women's clinic near me,free obgyn clinic near me,7,4,google,2026-03-12 19:38:29.859579,free women's clinic san francisco,free women's pregnancy clinic near me,pregnancy near me,obgyn +abortion,"(""free women's clinic near me"", 'free female clinic near me')",free women's clinic near me,free female clinic near me,8,4,google,2026-03-12 19:38:29.859579,free women's clinic san francisco,free women's pregnancy clinic near me,pregnancy near me,female +abortion,"(""free women's clinic near me"", ""free women's center near me"")",free women's clinic near me,free women's center near me,9,4,google,2026-03-12 19:38:29.859579,free women's clinic san francisco,free women's pregnancy clinic near me,pregnancy near me,center +abortion,"(""free women's clinic near me no insurance"", 'free obgyn clinics near me no insurance')",free women's clinic near me no insurance,free obgyn clinics near me no insurance,1,4,google,2026-03-12 19:38:30.833003,free women's clinic san francisco,free women's pregnancy clinic near me,no insurance,obgyn clinics +abortion,"(""free women's clinic near me no insurance"", 'free clinics near me no insurance for pregnant woman')",free women's clinic near me no insurance,free clinics near me no insurance for pregnant woman,2,4,google,2026-03-12 19:38:30.833003,free women's clinic san francisco,free women's pregnancy clinic near me,no insurance,clinics for pregnant woman +abortion,"(""free women's clinic near me no insurance"", ""women's clinic near me no insurance"")",free women's clinic near me no insurance,women's clinic near me no insurance,3,4,google,2026-03-12 19:38:30.833003,free women's clinic san francisco,free women's pregnancy clinic near me,no insurance,no insurance +abortion,"(""free women's clinic near me no insurance"", 'no insurance needed clinic near me')",free women's clinic near me no insurance,no insurance needed clinic near me,4,4,google,2026-03-12 19:38:30.833003,free women's clinic san francisco,free women's pregnancy clinic near me,no insurance,needed +abortion,"(""free women's clinic near me no insurance"", 'are free clinics really free')",free women's clinic near me no insurance,are free clinics really free,5,4,google,2026-03-12 19:38:30.833003,free women's clinic san francisco,free women's pregnancy clinic near me,no insurance,are clinics really +abortion,"(""free women's clinic near me no insurance"", ""free women's clinics near me"")",free women's clinic near me no insurance,free women's clinics near me,6,4,google,2026-03-12 19:38:30.833003,free women's clinic san francisco,free women's pregnancy clinic near me,no insurance,clinics +abortion,"(""free women's clinic near me open now"", 'free obgyn clinic near me open now')",free women's clinic near me open now,free obgyn clinic near me open now,1,4,google,2026-03-12 19:38:32.198759,free women's clinic san francisco,free women's pregnancy clinic near me,open now,obgyn +abortion,"(""free women's clinic near me open now"", ""free women's health clinic near me open now"")",free women's clinic near me open now,free women's health clinic near me open now,2,4,google,2026-03-12 19:38:32.198759,free women's clinic san francisco,free women's pregnancy clinic near me,open now,health +abortion,"(""free women's clinic near me open now"", 'free obgyn walk in clinic near me open now')",free women's clinic near me open now,free obgyn walk in clinic near me open now,3,4,google,2026-03-12 19:38:32.198759,free women's clinic san francisco,free women's pregnancy clinic near me,open now,obgyn walk in +abortion,"(""free women's clinic near me open now"", ""free women's clinic near me no insurance"")",free women's clinic near me open now,free women's clinic near me no insurance,4,4,google,2026-03-12 19:38:32.198759,free women's clinic san francisco,free women's pregnancy clinic near me,open now,no insurance +abortion,"(""free women's clinic near me open now"", ""women's clinic near me no insurance"")",free women's clinic near me open now,women's clinic near me no insurance,5,4,google,2026-03-12 19:38:32.198759,free women's clinic san francisco,free women's pregnancy clinic near me,open now,no insurance +abortion,"(""free women's clinic near me open now"", ""free walk in women's clinic near me"")",free women's clinic near me open now,free walk in women's clinic near me,6,4,google,2026-03-12 19:38:32.198759,free women's clinic san francisco,free women's pregnancy clinic near me,open now,walk in +abortion,"(""free women's clinic near me open now"", ""women's clinic open near me"")",free women's clinic near me open now,women's clinic open near me,7,4,google,2026-03-12 19:38:32.198759,free women's clinic san francisco,free women's pregnancy clinic near me,open now,open now +abortion,"(""free women's clinic near me open now"", ""free women's clinic near me"")",free women's clinic near me open now,free women's clinic near me,8,4,google,2026-03-12 19:38:32.198759,free women's clinic san francisco,free women's pregnancy clinic near me,open now,open now +abortion,"(""free women's clinic near me within 5 mi"", ""free women's clinic near me no insurance"")",free women's clinic near me within 5 mi,free women's clinic near me no insurance,1,4,google,2026-03-12 19:38:33.592753,free women's clinic san francisco,free women's pregnancy clinic near me,within 5 mi,no insurance +abortion,"(""free women's clinic near me within 5 mi"", ""free walk in women's clinic near me"")",free women's clinic near me within 5 mi,free walk in women's clinic near me,2,4,google,2026-03-12 19:38:33.592753,free women's clinic san francisco,free women's pregnancy clinic near me,within 5 mi,walk in +abortion,"(""free women's clinic near me within 5 mi"", ""women's clinic near me no insurance"")",free women's clinic near me within 5 mi,women's clinic near me no insurance,3,4,google,2026-03-12 19:38:33.592753,free women's clinic san francisco,free women's pregnancy clinic near me,within 5 mi,no insurance +abortion,"(""free women's clinic near me within 5 mi"", ""free women's clinics near me"")",free women's clinic near me within 5 mi,free women's clinics near me,4,4,google,2026-03-12 19:38:33.592753,free women's clinic san francisco,free women's pregnancy clinic near me,within 5 mi,clinics +abortion,"(""free women's clinic near me within 5 mi"", ""low cost women's clinic near me"")",free women's clinic near me within 5 mi,low cost women's clinic near me,5,4,google,2026-03-12 19:38:33.592753,free women's clinic san francisco,free women's pregnancy clinic near me,within 5 mi,low cost +abortion,"(""free women's clinic near me within 5 mi"", ""free women's medical clinic"")",free women's clinic near me within 5 mi,free women's medical clinic,6,4,google,2026-03-12 19:38:33.592753,free women's clinic san francisco,free women's pregnancy clinic near me,within 5 mi,medical +abortion,"(""free women's clinic near me within 5 mi"", ""free women's clinic minneapolis"")",free women's clinic near me within 5 mi,free women's clinic minneapolis,7,4,google,2026-03-12 19:38:33.592753,free women's clinic san francisco,free women's pregnancy clinic near me,within 5 mi,minneapolis +abortion,"(""free women's pregnancy center near me"", ""free women's pregnancy clinic near me"")",free women's pregnancy center near me,free women's pregnancy clinic near me,1,4,google,2026-03-12 19:38:34.810317,free women's clinic san francisco,free women's pregnancy clinic near me,center,clinic +abortion,"(""free women's pregnancy center near me"", ""free women's center near me"")",free women's pregnancy center near me,free women's center near me,2,4,google,2026-03-12 19:38:34.810317,free women's clinic san francisco,free women's pregnancy clinic near me,center,center +abortion,"(""free women's pregnancy center near me"", ""free women's clinic near me"")",free women's pregnancy center near me,free women's clinic near me,3,4,google,2026-03-12 19:38:34.810317,free women's clinic san francisco,free women's pregnancy clinic near me,center,clinic +abortion,"(""free women's pregnancy center near me"", ""free women's clinic near me no insurance"")",free women's pregnancy center near me,free women's clinic near me no insurance,4,4,google,2026-03-12 19:38:34.810317,free women's clinic san francisco,free women's pregnancy clinic near me,center,clinic no insurance +abortion,"(""free women's pregnancy center near me"", ""free women's clinic near me open now"")",free women's pregnancy center near me,free women's clinic near me open now,5,4,google,2026-03-12 19:38:34.810317,free women's clinic san francisco,free women's pregnancy clinic near me,center,clinic open now +abortion,"(""free women's pregnancy center near me"", ""free women's clinic near me within 5 mi"")",free women's pregnancy center near me,free women's clinic near me within 5 mi,6,4,google,2026-03-12 19:38:34.810317,free women's clinic san francisco,free women's pregnancy clinic near me,center,clinic within 5 mi +abortion,"(""free women's pregnancy center near me"", ""free women's clinic near me walk in"")",free women's pregnancy center near me,free women's clinic near me walk in,7,4,google,2026-03-12 19:38:34.810317,free women's clinic san francisco,free women's pregnancy clinic near me,center,clinic walk in +abortion,"(""free women's pregnancy center near me"", ""free women's clinic near me within 1 mi"")",free women's pregnancy center near me,free women's clinic near me within 1 mi,8,4,google,2026-03-12 19:38:34.810317,free women's clinic san francisco,free women's pregnancy clinic near me,center,clinic within 1 mi +abortion,"(""free women's pregnancy center near me"", ""free women's clinic near mesquite tx"")",free women's pregnancy center near me,free women's clinic near mesquite tx,9,4,google,2026-03-12 19:38:34.810317,free women's clinic san francisco,free women's pregnancy clinic near me,center,clinic mesquite tx +abortion,"(""free women's clinic near me within 1 mi"", ""free women's clinic near me no insurance"")",free women's clinic near me within 1 mi,free women's clinic near me no insurance,1,4,google,2026-03-12 19:38:36.354392,free women's clinic san francisco,free women's pregnancy clinic near me,within 1 mi,no insurance +abortion,"(""free women's clinic near me within 1 mi"", ""free walk in women's clinic near me"")",free women's clinic near me within 1 mi,free walk in women's clinic near me,2,4,google,2026-03-12 19:38:36.354392,free women's clinic san francisco,free women's pregnancy clinic near me,within 1 mi,walk in +abortion,"(""free women's clinic near me within 1 mi"", ""free women's clinics near me"")",free women's clinic near me within 1 mi,free women's clinics near me,3,4,google,2026-03-12 19:38:36.354392,free women's clinic san francisco,free women's pregnancy clinic near me,within 1 mi,clinics +abortion,"(""free women's clinic near me within 1 mi"", ""women's clinic near me no insurance"")",free women's clinic near me within 1 mi,women's clinic near me no insurance,4,4,google,2026-03-12 19:38:36.354392,free women's clinic san francisco,free women's pregnancy clinic near me,within 1 mi,no insurance +abortion,"(""free women's clinic near me within 1 mi"", ""low cost women's clinic near me"")",free women's clinic near me within 1 mi,low cost women's clinic near me,5,4,google,2026-03-12 19:38:36.354392,free women's clinic san francisco,free women's pregnancy clinic near me,within 1 mi,low cost +abortion,"(""free women's clinic near me within 1 mi"", ""free women's medical clinic"")",free women's clinic near me within 1 mi,free women's medical clinic,6,4,google,2026-03-12 19:38:36.354392,free women's clinic san francisco,free women's pregnancy clinic near me,within 1 mi,medical +abortion,"(""free women's clinic near mesquite tx"", ""women's clinic mesquite tx"")",free women's clinic near mesquite tx,women's clinic mesquite tx,1,4,google,2026-03-12 19:38:37.418569,free women's clinic san francisco,free women's pregnancy clinic near me,mesquite tx,mesquite tx +abortion,"(""free women's clinic near mesquite tx"", ""women's clinic mesquite nevada"")",free women's clinic near mesquite tx,women's clinic mesquite nevada,2,4,google,2026-03-12 19:38:37.418569,free women's clinic san francisco,free women's pregnancy clinic near me,mesquite tx,nevada +abortion,"(""free women's clinic near mesquite tx"", ""women's clinic mesquite"")",free women's clinic near mesquite tx,women's clinic mesquite,3,4,google,2026-03-12 19:38:37.418569,free women's clinic san francisco,free women's pregnancy clinic near me,mesquite tx,mesquite tx +abortion,"(""free women's services near me"", ""free women's health services near me"")",free women's services near me,free women's health services near me,1,4,google,2026-03-12 19:38:38.359461,free women's clinic san francisco,free women's pregnancy clinic near me,services,health +abortion,"(""free women's services near me"", 'free female handyman services near me')",free women's services near me,free female handyman services near me,2,4,google,2026-03-12 19:38:38.359461,free women's clinic san francisco,free women's pregnancy clinic near me,services,female handyman +abortion,"(""free women's services near me"", 'free services for pregnant women near me')",free women's services near me,free services for pregnant women near me,3,4,google,2026-03-12 19:38:38.359461,free women's clinic san francisco,free women's pregnancy clinic near me,services,for pregnant women +abortion,"(""free women's services near me"", ""free women's clinics near me"")",free women's services near me,free women's clinics near me,4,4,google,2026-03-12 19:38:38.359461,free women's clinic san francisco,free women's pregnancy clinic near me,services,clinics +abortion,"(""free women's services near me"", ""free women's center near me"")",free women's services near me,free women's center near me,5,4,google,2026-03-12 19:38:38.359461,free women's clinic san francisco,free women's pregnancy clinic near me,services,center +abortion,"(""free women's services near me"", 'free female clinic near me')",free women's services near me,free female clinic near me,6,4,google,2026-03-12 19:38:38.359461,free women's clinic san francisco,free women's pregnancy clinic near me,services,female clinic +abortion,"(""free women's clinics near me no insurance"", 'free clinics near me no insurance for pregnant woman')",free women's clinics near me no insurance,free clinics near me no insurance for pregnant woman,1,4,google,2026-03-12 19:38:39.849865,free women's clinic san francisco,free women's clinics near me,no insurance,for pregnant woman +abortion,"(""free women's clinics near me no insurance"", ""women's clinic near me no insurance"")",free women's clinics near me no insurance,women's clinic near me no insurance,2,4,google,2026-03-12 19:38:39.849865,free women's clinic san francisco,free women's clinics near me,no insurance,clinic +abortion,"(""free women's clinics near me no insurance"", 'list of free clinics near me')",free women's clinics near me no insurance,list of free clinics near me,3,4,google,2026-03-12 19:38:39.849865,free women's clinic san francisco,free women's clinics near me,no insurance,list of +abortion,"(""free women's clinics near me no insurance"", 'no insurance needed clinic near me')",free women's clinics near me no insurance,no insurance needed clinic near me,4,4,google,2026-03-12 19:38:39.849865,free women's clinic san francisco,free women's clinics near me,no insurance,needed clinic +abortion,"(""free women's clinics near me no insurance"", 'are free clinics really free')",free women's clinics near me no insurance,are free clinics really free,5,4,google,2026-03-12 19:38:39.849865,free women's clinic san francisco,free women's clinics near me,no insurance,are really +abortion,"(""free women's clinics near me no insurance"", ""free women's clinics near me"")",free women's clinics near me no insurance,free women's clinics near me,6,4,google,2026-03-12 19:38:39.849865,free women's clinic san francisco,free women's clinics near me,no insurance,no insurance +abortion,"('free gynecologist clinics near me', 'free gyn clinics near me')",free gynecologist clinics near me,free gyn clinics near me,1,4,google,2026-03-12 19:38:40.944122,free women's clinic san francisco,free women's clinics near me,gynecologist,gyn +abortion,"('free gynecologist clinics near me', 'free gynecology clinic near me')",free gynecologist clinics near me,free gynecology clinic near me,2,4,google,2026-03-12 19:38:40.944122,free women's clinic san francisco,free women's clinics near me,gynecologist,gynecology clinic +abortion,"('free gynecologist clinics near me', 'free obgyn clinics near me')",free gynecologist clinics near me,free obgyn clinics near me,3,4,google,2026-03-12 19:38:40.944122,free women's clinic san francisco,free women's clinics near me,gynecologist,obgyn +abortion,"('free gynecologist clinics near me', 'free obgyn clinics near me no insurance')",free gynecologist clinics near me,free obgyn clinics near me no insurance,4,4,google,2026-03-12 19:38:40.944122,free women's clinic san francisco,free women's clinics near me,gynecologist,obgyn no insurance +abortion,"('free gynecologist clinics near me', 'free obgyn clinic near me open now')",free gynecologist clinics near me,free obgyn clinic near me open now,5,4,google,2026-03-12 19:38:40.944122,free women's clinic san francisco,free women's clinics near me,gynecologist,obgyn clinic open now +abortion,"('free gynecologist clinics near me', ""women's free clinic near me"")",free gynecologist clinics near me,women's free clinic near me,6,4,google,2026-03-12 19:38:40.944122,free women's clinic san francisco,free women's clinics near me,gynecologist,women's clinic +abortion,"('free gynecologist clinics near me', ""free women's health clinics near me"")",free gynecologist clinics near me,free women's health clinics near me,7,4,google,2026-03-12 19:38:40.944122,free women's clinic san francisco,free women's clinics near me,gynecologist,women's health +abortion,"('free gynecologist clinics near me', 'free obgyn walk in clinic near me')",free gynecologist clinics near me,free obgyn walk in clinic near me,8,4,google,2026-03-12 19:38:40.944122,free women's clinic san francisco,free women's clinics near me,gynecologist,obgyn walk in clinic +abortion,"('free gynecologist clinics near me', 'free obgyn walk in clinic near me open now')",free gynecologist clinics near me,free obgyn walk in clinic near me open now,9,4,google,2026-03-12 19:38:40.944122,free women's clinic san francisco,free women's clinics near me,gynecologist,obgyn walk in clinic open now +abortion,"('free female clinic near me', ""free women's clinic near me"")",free female clinic near me,free women's clinic near me,1,4,google,2026-03-12 19:38:42.193265,free women's clinic san francisco,free women's clinics near me,female clinic,women's +abortion,"('free female clinic near me', ""free women's clinic near me no insurance"")",free female clinic near me,free women's clinic near me no insurance,2,4,google,2026-03-12 19:38:42.193265,free women's clinic san francisco,free women's clinics near me,female clinic,women's no insurance +abortion,"('free female clinic near me', ""free women's clinic near me open now"")",free female clinic near me,free women's clinic near me open now,3,4,google,2026-03-12 19:38:42.193265,free women's clinic san francisco,free women's clinics near me,female clinic,women's open now +abortion,"('free female clinic near me', ""free women's clinic near me within 5 mi"")",free female clinic near me,free women's clinic near me within 5 mi,4,4,google,2026-03-12 19:38:42.193265,free women's clinic san francisco,free women's clinics near me,female clinic,women's within 5 mi +abortion,"('free female clinic near me', ""free women's clinic near me walk in"")",free female clinic near me,free women's clinic near me walk in,5,4,google,2026-03-12 19:38:42.193265,free women's clinic san francisco,free women's clinics near me,female clinic,women's walk in +abortion,"('free female clinic near me', ""free women's clinic near me within 1 mi"")",free female clinic near me,free women's clinic near me within 1 mi,6,4,google,2026-03-12 19:38:42.193265,free women's clinic san francisco,free women's clinics near me,female clinic,women's within 1 mi +abortion,"('free female clinic near me', ""free women's clinic near mesquite tx"")",free female clinic near me,free women's clinic near mesquite tx,7,4,google,2026-03-12 19:38:42.193265,free women's clinic san francisco,free women's clinics near me,female clinic,women's mesquite tx +abortion,"('free female clinic near me', ""free women's center near me"")",free female clinic near me,free women's center near me,8,4,google,2026-03-12 19:38:42.193265,free women's clinic san francisco,free women's clinics near me,female clinic,women's center +abortion,"('free female clinic near me', ""free women's doctor near me"")",free female clinic near me,free women's doctor near me,9,4,google,2026-03-12 19:38:42.193265,free women's clinic san francisco,free women's clinics near me,female clinic,women's doctor +abortion,"('are free clinics free', 'are free clinics actually free')",are free clinics free,are free clinics actually free,1,4,google,2026-03-12 19:38:43.371310,free women's clinic san francisco,are free clinics really free,are clinics really,actually +abortion,"('are free clinics free', 'is hassle free clinic free')",are free clinics free,is hassle free clinic free,2,4,google,2026-03-12 19:38:43.371310,free women's clinic san francisco,are free clinics really free,are clinics really,is hassle clinic +abortion,"('are free clinics free', 'are free clinics really free')",are free clinics free,are free clinics really free,3,4,google,2026-03-12 19:38:43.371310,free women's clinic san francisco,are free clinics really free,are clinics really,really +abortion,"('are free clinics free', 'can you go to a free clinic without insurance')",are free clinics free,can you go to a free clinic without insurance,4,4,google,2026-03-12 19:38:43.371310,free women's clinic san francisco,are free clinics really free,are clinics really,can you go to a clinic without insurance +abortion,"('are free clinics free', 'are free clinics good')",are free clinics free,are free clinics good,5,4,google,2026-03-12 19:38:43.371310,free women's clinic san francisco,are free clinics really free,are clinics really,good +abortion,"('are free clinics free', 'are free clinics subject to hipaa')",are free clinics free,are free clinics subject to hipaa,6,4,google,2026-03-12 19:38:43.371310,free women's clinic san francisco,are free clinics really free,are clinics really,subject to hipaa +abortion,"('are free clinics free', 'are clinics free')",are free clinics free,are clinics free,7,4,google,2026-03-12 19:38:43.371310,free women's clinic san francisco,are free clinics really free,are clinics really,are clinics really +abortion,"('can you go to a free clinic without insurance', 'can you go to a free clinic if you have insurance')",can you go to a free clinic without insurance,can you go to a free clinic if you have insurance,1,4,google,2026-03-12 19:38:44.605447,free women's clinic san francisco,are free clinics really free,can you go to a clinic without insurance,if have +abortion,"('can you go to a free clinic without insurance', 'can i go to a clinic without insurance')",can you go to a free clinic without insurance,can i go to a clinic without insurance,2,4,google,2026-03-12 19:38:44.605447,free women's clinic san francisco,are free clinics really free,can you go to a clinic without insurance,i +abortion,"('can you go to a free clinic without insurance', 'can i go to a walk in clinic without insurance')",can you go to a free clinic without insurance,can i go to a walk in clinic without insurance,3,4,google,2026-03-12 19:38:44.605447,free women's clinic san francisco,are free clinics really free,can you go to a clinic without insurance,i walk in +abortion,"('are free clinics good', 'are free clinics really free')",are free clinics good,are free clinics really free,1,4,google,2026-03-12 19:38:45.598255,free women's clinic san francisco,are free clinics really free,good,really +abortion,"('are free clinics good', 'can you go to a free clinic without insurance')",are free clinics good,can you go to a free clinic without insurance,2,4,google,2026-03-12 19:38:45.598255,free women's clinic san francisco,are free clinics really free,good,can you go to a clinic without insurance +abortion,"('are free clinics good', 'are free clinics actually free')",are free clinics good,are free clinics actually free,3,4,google,2026-03-12 19:38:45.598255,free women's clinic san francisco,are free clinics really free,good,actually +abortion,"('are free clinics good', 'are clinics free')",are free clinics good,are clinics free,4,4,google,2026-03-12 19:38:45.598255,free women's clinic san francisco,are free clinics really free,good,good +abortion,"('are free clinics good', 'are health clinics free')",are free clinics good,are health clinics free,5,4,google,2026-03-12 19:38:45.598255,free women's clinic san francisco,are free clinics really free,good,health +abortion,"('are free clinics actually free', 'are free clinics free')",are free clinics actually free,are free clinics free,1,4,google,2026-03-12 19:38:46.774961,free women's clinic san francisco,are free clinics really free,actually,actually +abortion,"('are free clinics actually free', 'are free clinics really free')",are free clinics actually free,are free clinics really free,2,4,google,2026-03-12 19:38:46.774961,free women's clinic san francisco,are free clinics really free,actually,really +abortion,"('are free clinics actually free', 'can you go to a free clinic without insurance')",are free clinics actually free,can you go to a free clinic without insurance,3,4,google,2026-03-12 19:38:46.774961,free women's clinic san francisco,are free clinics really free,actually,can you go to a clinic without insurance +abortion,"('are free clinics actually free', 'are free clinics good')",are free clinics actually free,are free clinics good,4,4,google,2026-03-12 19:38:46.774961,free women's clinic san francisco,are free clinics really free,actually,good +abortion,"('are free clinics actually free', 'are clinics free')",are free clinics actually free,are clinics free,5,4,google,2026-03-12 19:38:46.774961,free women's clinic san francisco,are free clinics really free,actually,actually +abortion,"('are free clinics actually free', 'are free clinics subject to hipaa')",are free clinics actually free,are free clinics subject to hipaa,6,4,google,2026-03-12 19:38:46.774961,free women's clinic san francisco,are free clinics really free,actually,subject to hipaa +abortion,"('are clinics free', 'are clinics free in south africa')",are clinics free,are clinics free in south africa,1,4,google,2026-03-12 19:38:48.126571,free women's clinic san francisco,are free clinics really free,are clinics really,in south africa +abortion,"('are clinics free', 'are hospitals free')",are clinics free,are hospitals free,2,4,google,2026-03-12 19:38:48.126571,free women's clinic san francisco,are free clinics really free,are clinics really,hospitals +abortion,"('are clinics free', 'are methadone clinics free')",are clinics free,are methadone clinics free,3,4,google,2026-03-12 19:38:48.126571,free women's clinic san francisco,are free clinics really free,are clinics really,methadone +abortion,"('are clinics free', 'are health clinics free')",are clinics free,are health clinics free,4,4,google,2026-03-12 19:38:48.126571,free women's clinic san francisco,are free clinics really free,are clinics really,health +abortion,"('are clinics free', 'are legal clinics free')",are clinics free,are legal clinics free,5,4,google,2026-03-12 19:38:48.126571,free women's clinic san francisco,are free clinics really free,are clinics really,legal +abortion,"('are clinics free', 'are dental clinics free')",are clinics free,are dental clinics free,6,4,google,2026-03-12 19:38:48.126571,free women's clinic san francisco,are free clinics really free,are clinics really,dental +abortion,"('are clinics free', 'are medical clinics free')",are clinics free,are medical clinics free,7,4,google,2026-03-12 19:38:48.126571,free women's clinic san francisco,are free clinics really free,are clinics really,medical +abortion,"('are clinics free', 'are vaccine clinics free')",are clinics free,are vaccine clinics free,8,4,google,2026-03-12 19:38:48.126571,free women's clinic san francisco,are free clinics really free,are clinics really,vaccine +abortion,"('are clinics free', 'are tax clinics free')",are clinics free,are tax clinics free,9,4,google,2026-03-12 19:38:48.126571,free women's clinic san francisco,are free clinics really free,are clinics really,tax +abortion,"(""free women's health clinic near me open now"", 'free obgyn clinic near me open now')",free women's health clinic near me open now,free obgyn clinic near me open now,1,4,google,2026-03-12 19:38:49.391881,free women's clinic san francisco,free women's health clinics near me,clinic open now,obgyn +abortion,"(""free women's health clinic near me open now"", ""free women's clinic near me no insurance"")",free women's health clinic near me open now,free women's clinic near me no insurance,2,4,google,2026-03-12 19:38:49.391881,free women's clinic san francisco,free women's health clinics near me,clinic open now,no insurance +abortion,"(""free women's health clinic near me open now"", ""free women's health clinics near me"")",free women's health clinic near me open now,free women's health clinics near me,3,4,google,2026-03-12 19:38:49.391881,free women's clinic san francisco,free women's health clinics near me,clinic open now,clinics +abortion,"(""free women's health clinic near me open now"", 'list of free clinics near me')",free women's health clinic near me open now,list of free clinics near me,4,4,google,2026-03-12 19:38:49.391881,free women's clinic san francisco,free women's health clinics near me,clinic open now,list of clinics +abortion,"(""free women's health clinic near me open now"", ""free women's health center near me"")",free women's health clinic near me open now,free women's health center near me,5,4,google,2026-03-12 19:38:49.391881,free women's clinic san francisco,free women's health clinics near me,clinic open now,center +abortion,"(""free women's health clinic near me open now"", ""free women's health near me"")",free women's health clinic near me open now,free women's health near me,6,4,google,2026-03-12 19:38:49.391881,free women's clinic san francisco,free women's health clinics near me,clinic open now,clinic open now +abortion,"(""free women's health clinic near me open now"", ""free women's health services near me"")",free women's health clinic near me open now,free women's health services near me,7,4,google,2026-03-12 19:38:49.391881,free women's clinic san francisco,free women's health clinics near me,clinic open now,services +abortion,"(""free women's health services near me"", ""free women's health clinic near me"")",free women's health services near me,free women's health clinic near me,1,4,google,2026-03-12 19:38:50.321124,free women's clinic san francisco,free women's health clinics near me,services,clinic +abortion,"(""free women's health services near me"", ""free women's health care near me"")",free women's health services near me,free women's health care near me,2,4,google,2026-03-12 19:38:50.321124,free women's clinic san francisco,free women's health clinics near me,services,care +abortion,"(""free women's health services near me"", ""free women's health center near me"")",free women's health services near me,free women's health center near me,3,4,google,2026-03-12 19:38:50.321124,free women's clinic san francisco,free women's health clinics near me,services,center +abortion,"(""free women's health services near me"", ""free women's health clinic near me open now"")",free women's health services near me,free women's health clinic near me open now,4,4,google,2026-03-12 19:38:50.321124,free women's clinic san francisco,free women's health clinics near me,services,clinic open now +abortion,"(""free women's health services near me"", ""free women's care near me"")",free women's health services near me,free women's care near me,5,4,google,2026-03-12 19:38:50.321124,free women's clinic san francisco,free women's health clinics near me,services,care +abortion,"(""free women's health services near me"", ""free women's health clinic melbourne"")",free women's health services near me,free women's health clinic melbourne,6,4,google,2026-03-12 19:38:50.321124,free women's clinic san francisco,free women's health clinics near me,services,clinic melbourne +abortion,"(""free women's health services near me"", ""free women's care clinic near me"")",free women's health services near me,free women's care clinic near me,7,4,google,2026-03-12 19:38:50.321124,free women's clinic san francisco,free women's health clinics near me,services,care clinic +abortion,"(""free women's health services near me"", ""free women's care center near me"")",free women's health services near me,free women's care center near me,8,4,google,2026-03-12 19:38:50.321124,free women's clinic san francisco,free women's health clinics near me,services,care center +abortion,"(""free women's health services near me"", ""free women's clinic near me no insurance"")",free women's health services near me,free women's clinic near me no insurance,9,4,google,2026-03-12 19:38:50.321124,free women's clinic san francisco,free women's health clinics near me,services,clinic no insurance +abortion,"(""free women's care clinic near me"", ""free women's health clinic near me"")",free women's care clinic near me,free women's health clinic near me,1,4,google,2026-03-12 19:38:51.501141,free women's clinic san francisco,free women's health clinics near me,care clinic,health +abortion,"(""free women's care clinic near me"", ""free women's health clinic near me open now"")",free women's care clinic near me,free women's health clinic near me open now,2,4,google,2026-03-12 19:38:51.501141,free women's clinic san francisco,free women's health clinics near me,care clinic,health open now +abortion,"(""free women's care clinic near me"", ""free women's health clinic melbourne"")",free women's care clinic near me,free women's health clinic melbourne,3,4,google,2026-03-12 19:38:51.501141,free women's clinic san francisco,free women's health clinics near me,care clinic,health melbourne +abortion,"(""free women's care clinic near me"", ""free women's clinic near me no insurance"")",free women's care clinic near me,free women's clinic near me no insurance,4,4,google,2026-03-12 19:38:51.501141,free women's clinic san francisco,free women's health clinics near me,care clinic,no insurance +abortion,"(""free women's care clinic near me"", ""free women's clinics near me"")",free women's care clinic near me,free women's clinics near me,5,4,google,2026-03-12 19:38:51.501141,free women's clinic san francisco,free women's health clinics near me,care clinic,clinics +abortion,"(""free women's care clinic near me"", ""free walk in women's clinic near me"")",free women's care clinic near me,free walk in women's clinic near me,6,4,google,2026-03-12 19:38:51.501141,free women's clinic san francisco,free women's health clinics near me,care clinic,walk in +abortion,"(""free women's care clinic near me"", 'list of free clinics near me')",free women's care clinic near me,list of free clinics near me,7,4,google,2026-03-12 19:38:51.501141,free women's clinic san francisco,free women's health clinics near me,care clinic,list of clinics +abortion,"(""free women's care clinic near me"", ""free women's care near me"")",free women's care clinic near me,free women's care near me,8,4,google,2026-03-12 19:38:51.501141,free women's clinic san francisco,free women's health clinics near me,care clinic,care clinic +abortion,"(""free women's care clinic near me"", ""free women's health care clinics near me"")",free women's care clinic near me,free women's health care clinics near me,9,4,google,2026-03-12 19:38:51.501141,free women's clinic san francisco,free women's health clinics near me,care clinic,health clinics +abortion,"(""free women's health clinic melbourne"", ""free women's health clinics near me"")",free women's health clinic melbourne,free women's health clinics near me,1,4,google,2026-03-12 19:38:52.681821,free women's clinic san francisco,free women's health clinics near me,clinic melbourne,clinics near me +abortion,"(""free women's health clinic melbourne"", ""free women's pregnancy clinic near me"")",free women's health clinic melbourne,free women's pregnancy clinic near me,2,4,google,2026-03-12 19:38:52.681821,free women's clinic san francisco,free women's health clinics near me,clinic melbourne,pregnancy near me +abortion,"(""free women's health clinic melbourne"", ""free women's clinics near me"")",free women's health clinic melbourne,free women's clinics near me,3,4,google,2026-03-12 19:38:52.681821,free women's clinic san francisco,free women's health clinics near me,clinic melbourne,clinics near me +abortion,"(""free women's health clinic melbourne"", ""free women's clinic near me no insurance"")",free women's health clinic melbourne,free women's clinic near me no insurance,4,4,google,2026-03-12 19:38:52.681821,free women's clinic san francisco,free women's health clinics near me,clinic melbourne,near me no insurance +abortion,"(""free women's health clinic melbourne"", ""women's health clinic melbourne cbd"")",free women's health clinic melbourne,women's health clinic melbourne cbd,5,4,google,2026-03-12 19:38:52.681821,free women's clinic san francisco,free women's health clinics near me,clinic melbourne,cbd +abortion,"(""free women's health clinic melbourne"", ""free women's medical clinic"")",free women's health clinic melbourne,free women's medical clinic,6,4,google,2026-03-12 19:38:52.681821,free women's clinic san francisco,free women's health clinics near me,clinic melbourne,medical +abortion,"(""free women's health clinic melbourne"", ""women's health clinic melbourne bulk bill"")",free women's health clinic melbourne,women's health clinic melbourne bulk bill,7,4,google,2026-03-12 19:38:52.681821,free women's clinic san francisco,free women's health clinics near me,clinic melbourne,bulk bill +abortion,"(""free women's health clinic melbourne"", ""women's clinic melbourne fl"")",free women's health clinic melbourne,women's clinic melbourne fl,8,4,google,2026-03-12 19:38:52.681821,free women's clinic san francisco,free women's health clinics near me,clinic melbourne,fl +abortion,"(""free women's health clinic melbourne"", ""melbourne women's center"")",free women's health clinic melbourne,melbourne women's center,9,4,google,2026-03-12 19:38:52.681821,free women's clinic san francisco,free women's health clinics near me,clinic melbourne,center +abortion,"('list of free clinics near me', 'clinics free near me')",list of free clinics near me,clinics free near me,1,4,google,2026-03-12 19:38:53.559975,free women's clinic san francisco,free women's health clinics near me,list of,list of +abortion,"('list of free clinics near me', 'list of clinics near me')",list of free clinics near me,list of clinics near me,2,4,google,2026-03-12 19:38:53.559975,free women's clinic san francisco,free women's health clinics near me,list of,list of +abortion,"('list of free clinics near me', 'local free clinics near me')",list of free clinics near me,local free clinics near me,3,4,google,2026-03-12 19:38:53.559975,free women's clinic san francisco,free women's health clinics near me,list of,local +abortion,"(""free women's health center near me"", ""free women's health clinic near me"")",free women's health center near me,free women's health clinic near me,1,4,google,2026-03-12 19:38:54.848175,free women's clinic san francisco,free women's health clinics near me,center,clinic +abortion,"(""free women's health center near me"", ""free women's health care near me"")",free women's health center near me,free women's health care near me,2,4,google,2026-03-12 19:38:54.848175,free women's clinic san francisco,free women's health clinics near me,center,care +abortion,"(""free women's health center near me"", ""free women's health services near me"")",free women's health center near me,free women's health services near me,3,4,google,2026-03-12 19:38:54.848175,free women's clinic san francisco,free women's health clinics near me,center,services +abortion,"(""free women's health center near me"", ""free women's health clinic near me open now"")",free women's health center near me,free women's health clinic near me open now,4,4,google,2026-03-12 19:38:54.848175,free women's clinic san francisco,free women's health clinics near me,center,clinic open now +abortion,"(""free women's health center near me"", ""free women's care center near me"")",free women's health center near me,free women's care center near me,5,4,google,2026-03-12 19:38:54.848175,free women's clinic san francisco,free women's health clinics near me,center,care +abortion,"(""free women's health center near me"", ""free women's clinics near me"")",free women's health center near me,free women's clinics near me,6,4,google,2026-03-12 19:38:54.848175,free women's clinic san francisco,free women's health clinics near me,center,clinics +abortion,"(""free women's health center near me"", ""free women's care near me"")",free women's health center near me,free women's care near me,7,4,google,2026-03-12 19:38:54.848175,free women's clinic san francisco,free women's health clinics near me,center,care +abortion,"(""free women's health center near me"", ""free women's clinics near me no insurance"")",free women's health center near me,free women's clinics near me no insurance,8,4,google,2026-03-12 19:38:54.848175,free women's clinic san francisco,free women's health clinics near me,center,clinics no insurance +abortion,"(""free women's health center near me"", ""free women's health clinic melbourne"")",free women's health center near me,free women's health clinic melbourne,9,4,google,2026-03-12 19:38:54.848175,free women's clinic san francisco,free women's health clinics near me,center,clinic melbourne +abortion,"(""free women's health care clinics near me"", ""women's health free clinic near me"")",free women's health care clinics near me,women's health free clinic near me,1,4,google,2026-03-12 19:38:55.871700,free women's clinic san francisco,free women's health clinics near me,care,clinic +abortion,"(""free women's health care clinics near me"", 'list of free clinics near me')",free women's health care clinics near me,list of free clinics near me,2,4,google,2026-03-12 19:38:55.871700,free women's clinic san francisco,free women's health clinics near me,care,list of +abortion,"(""free women's health care clinics near me"", ""free women's clinic near me no insurance"")",free women's health care clinics near me,free women's clinic near me no insurance,3,4,google,2026-03-12 19:38:55.871700,free women's clinic san francisco,free women's health clinics near me,care,clinic no insurance +abortion,"(""free women's health care clinics near me"", 'are free clinics really free')",free women's health care clinics near me,are free clinics really free,4,4,google,2026-03-12 19:38:55.871700,free women's clinic san francisco,free women's health clinics near me,care,are really +abortion,"(""free women's health care clinics near me"", ""free women's health care near me"")",free women's health care clinics near me,free women's health care near me,5,4,google,2026-03-12 19:38:55.871700,free women's clinic san francisco,free women's health clinics near me,care,care +abortion,"(""free women's health care clinics near me"", ""free women's health center near me"")",free women's health care clinics near me,free women's health center near me,6,4,google,2026-03-12 19:38:55.871700,free women's clinic san francisco,free women's health clinics near me,care,center +abortion,"('obgyn free clinic san diego', 'ob gyn free clinic near me')",obgyn free clinic san diego,ob gyn free clinic near me,1,4,google,2026-03-12 19:38:57.070122,free women's clinic san francisco,free women's clinic san diego,obgyn,ob gyn near me +abortion,"('obgyn free clinic san diego', 'obgyn near me free consultation')",obgyn free clinic san diego,obgyn near me free consultation,2,4,google,2026-03-12 19:38:57.070122,free women's clinic san francisco,free women's clinic san diego,obgyn,near me consultation +abortion,"('obgyn free clinic san diego', 'how much does obgyn cost without insurance')",obgyn free clinic san diego,how much does obgyn cost without insurance,3,4,google,2026-03-12 19:38:57.070122,free women's clinic san francisco,free women's clinic san diego,obgyn,how much does cost without insurance +abortion,"('obgyn free clinic san diego', 'where to see a gynecologist for free')",obgyn free clinic san diego,where to see a gynecologist for free,4,4,google,2026-03-12 19:38:57.070122,free women's clinic san francisco,free women's clinic san diego,obgyn,where to see a gynecologist for +abortion,"('obgyn free clinic san diego', 'obgyn clinic san diego')",obgyn free clinic san diego,obgyn clinic san diego,5,4,google,2026-03-12 19:38:57.070122,free women's clinic san francisco,free women's clinic san diego,obgyn,obgyn +abortion,"('obgyn free clinic san diego', 'san diego free clinics')",obgyn free clinic san diego,san diego free clinics,6,4,google,2026-03-12 19:38:57.070122,free women's clinic san francisco,free women's clinic san diego,obgyn,clinics +abortion,"(""free women's health clinic san antonio"", ""free women's health clinics near me"")",free women's health clinic san antonio,free women's health clinics near me,1,4,google,2026-03-12 19:38:58.549145,free women's clinic san francisco,free women's clinic san diego,health antonio,clinics near me +abortion,"(""free women's health clinic san antonio"", 'are free clinics really free')",free women's health clinic san antonio,are free clinics really free,2,4,google,2026-03-12 19:38:58.549145,free women's clinic san francisco,free women's clinic san diego,health antonio,are clinics really +abortion,"(""free women's health clinic san antonio"", ""free women's clinics near me"")",free women's health clinic san antonio,free women's clinics near me,3,4,google,2026-03-12 19:38:58.549145,free women's clinic san francisco,free women's clinic san diego,health antonio,clinics near me +abortion,"(""free women's health clinic san antonio"", ""free women's clinic san antonio"")",free women's health clinic san antonio,free women's clinic san antonio,4,4,google,2026-03-12 19:38:58.549145,free women's clinic san francisco,free women's clinic san diego,health antonio,health antonio +abortion,"(""free women's health clinic san antonio"", ""free women's health clinic austin tx"")",free women's health clinic san antonio,free women's health clinic austin tx,5,4,google,2026-03-12 19:38:58.549145,free women's clinic san francisco,free women's clinic san diego,health antonio,austin tx +abortion,"(""free women's health clinic san antonio"", ""women's health clinic san antonio tx"")",free women's health clinic san antonio,women's health clinic san antonio tx,6,4,google,2026-03-12 19:38:58.549145,free women's clinic san francisco,free women's clinic san diego,health antonio,tx +abortion,"(""free walk in women's clinic near me"", ""walk-in women's clinic near me"")",free walk in women's clinic near me,walk-in women's clinic near me,1,4,google,2026-03-12 19:38:59.830546,free women's clinic san francisco,free women's clinic san diego,walk in near me,walk-in +abortion,"(""free walk in women's clinic near me"", ""free women's clinic near me no insurance"")",free walk in women's clinic near me,free women's clinic near me no insurance,2,4,google,2026-03-12 19:38:59.830546,free women's clinic san francisco,free women's clinic san diego,walk in near me,no insurance +abortion,"(""free walk in women's clinic near me"", 'free walk in clinic near me open now')",free walk in women's clinic near me,free walk in clinic near me open now,3,4,google,2026-03-12 19:38:59.830546,free women's clinic san francisco,free women's clinic san diego,walk in near me,open now +abortion,"(""sacramento women's clinic"", ""sacramento women's health center"")",sacramento women's clinic,sacramento women's health center,1,4,google,2026-03-12 19:39:01.019545,free women's clinic san francisco,free women's clinic sacramento,sacramento,health center +abortion,"(""sacramento women's clinic"", ""sacramento women's health clinic"")",sacramento women's clinic,sacramento women's health clinic,2,4,google,2026-03-12 19:39:01.019545,free women's clinic san francisco,free women's clinic sacramento,sacramento,health +abortion,"(""sacramento women's clinic"", ""sacramento street medicine women's clinic"")",sacramento women's clinic,sacramento street medicine women's clinic,3,4,google,2026-03-12 19:39:01.019545,free women's clinic san francisco,free women's clinic sacramento,sacramento,street medicine +abortion,"(""sacramento women's clinic"", ""sacramento women's center"")",sacramento women's clinic,sacramento women's center,4,4,google,2026-03-12 19:39:01.019545,free women's clinic san francisco,free women's clinic sacramento,sacramento,center +abortion,"(""sacramento women's clinic"", ""sacramento women's health"")",sacramento women's clinic,sacramento women's health,5,4,google,2026-03-12 19:39:01.019545,free women's clinic san francisco,free women's clinic sacramento,sacramento,health +abortion,"(""free women's clinic austin"", ""free women's clinic austin tx"")",free women's clinic austin,free women's clinic austin tx,1,4,google,2026-03-12 19:39:02.142534,free women's clinic san francisco,free women's clinic san antonio,austin,tx +abortion,"(""free women's clinic austin"", ""free women's health clinic austin tx"")",free women's clinic austin,free women's health clinic austin tx,2,4,google,2026-03-12 19:39:02.142534,free women's clinic san francisco,free women's clinic san antonio,austin,health tx +abortion,"(""free women's clinic austin"", ""women's clinic austin texas"")",free women's clinic austin,women's clinic austin texas,3,4,google,2026-03-12 19:39:02.142534,free women's clinic san francisco,free women's clinic san antonio,austin,texas +abortion,"(""free women's clinic austin"", ""free women's clinic - houston"")",free women's clinic austin,free women's clinic - houston,4,4,google,2026-03-12 19:39:02.142534,free women's clinic san francisco,free women's clinic san antonio,austin,- houston +abortion,"(""free women's clinic austin"", ""women's clinic austin tx"")",free women's clinic austin,women's clinic austin tx,5,4,google,2026-03-12 19:39:02.142534,free women's clinic san francisco,free women's clinic san antonio,austin,tx +abortion,"(""free women's clinic san bernardino california"", ""free women's clinic san bernardino california free"")",free women's clinic san bernardino california,free women's clinic san bernardino california free,1,4,google,2026-03-12 19:39:03.147057,free women's clinic san francisco,free women's clinic san bernardino ca,california,california +abortion,"(""free women's clinic san bernardino california"", ""free women's clinic san bernardino california 2024"")",free women's clinic san bernardino california,free women's clinic san bernardino california 2024,2,4,google,2026-03-12 19:39:03.147057,free women's clinic san francisco,free women's clinic san bernardino ca,california,2024 +abortion,"(""free women's clinic san bernardino california"", ""free women's clinic san bernardino california 2023"")",free women's clinic san bernardino california,free women's clinic san bernardino california 2023,3,4,google,2026-03-12 19:39:03.147057,free women's clinic san francisco,free women's clinic san bernardino ca,california,2023 +abortion,"(""free women's clinic san bernardino california"", ""free women's clinic san bernardino california free clinic"")",free women's clinic san bernardino california,free women's clinic san bernardino california free clinic,4,4,google,2026-03-12 19:39:03.147057,free women's clinic san francisco,free women's clinic san bernardino ca,california,california +abortion,"(""free women's clinic san bernardino california"", ""free women's clinic san bernardino california 92407"")",free women's clinic san bernardino california,free women's clinic san bernardino california 92407,5,4,google,2026-03-12 19:39:03.147057,free women's clinic san francisco,free women's clinic san bernardino ca,california,92407 +abortion,"(""free women's clinic san bernardino california"", ""free women's clinic san bernardino ca"")",free women's clinic san bernardino california,free women's clinic san bernardino ca,6,4,google,2026-03-12 19:39:03.147057,free women's clinic san francisco,free women's clinic san bernardino ca,california,ca +abortion,"(""free women's clinic san bernardino ca 92407"", ""free women's clinic san bernardino ca 92407 zip"")",free women's clinic san bernardino ca 92407,free women's clinic san bernardino ca 92407 zip,1,4,google,2026-03-12 19:39:04.518002,free women's clinic san francisco,free women's clinic san bernardino ca,92407,zip +abortion,"(""free women's clinic san bernardino ca 92407"", ""free women's clinic san bernardino ca 92407 free"")",free women's clinic san bernardino ca 92407,free women's clinic san bernardino ca 92407 free,2,4,google,2026-03-12 19:39:04.518002,free women's clinic san francisco,free women's clinic san bernardino ca,92407,92407 +abortion,"(""free women's clinic san bernardino ca 92407"", ""free women's clinic san bernardino ca 92407 area"")",free women's clinic san bernardino ca 92407,free women's clinic san bernardino ca 92407 area,3,4,google,2026-03-12 19:39:04.518002,free women's clinic san francisco,free women's clinic san bernardino ca,92407,area +abortion,"(""free women's clinic san bernardino ca 92407"", ""free women's clinic san bernardino ca 92407 united"")",free women's clinic san bernardino ca 92407,free women's clinic san bernardino ca 92407 united,4,4,google,2026-03-12 19:39:04.518002,free women's clinic san francisco,free women's clinic san bernardino ca,92407,united +abortion,"(""free women's clinic san bernardino ca 92407"", ""free women's clinic san bernardino ca 92407 ca"")",free women's clinic san bernardino ca 92407,free women's clinic san bernardino ca 92407 ca,5,4,google,2026-03-12 19:39:04.518002,free women's clinic san francisco,free women's clinic san bernardino ca,92407,92407 +abortion,"(""free women's clinic san bernardino ca 92404"", ""free women's clinic san bernardino ca 92404 zip"")",free women's clinic san bernardino ca 92404,free women's clinic san bernardino ca 92404 zip,1,4,google,2026-03-12 19:39:05.696408,free women's clinic san francisco,free women's clinic san bernardino ca,92404,zip +abortion,"(""free women's clinic san bernardino ca 92404"", ""free women's clinic san bernardino ca 92404 free"")",free women's clinic san bernardino ca 92404,free women's clinic san bernardino ca 92404 free,2,4,google,2026-03-12 19:39:05.696408,free women's clinic san francisco,free women's clinic san bernardino ca,92404,92404 +abortion,"(""free women's clinic san bernardino ca 92404"", ""free women's clinic san bernardino ca 92404 area"")",free women's clinic san bernardino ca 92404,free women's clinic san bernardino ca 92404 area,3,4,google,2026-03-12 19:39:05.696408,free women's clinic san francisco,free women's clinic san bernardino ca,92404,area +abortion,"(""free women's clinic san bernardino ca 92404"", ""free women's clinic san bernardino ca 92404 united"")",free women's clinic san bernardino ca 92404,free women's clinic san bernardino ca 92404 united,4,4,google,2026-03-12 19:39:05.696408,free women's clinic san francisco,free women's clinic san bernardino ca,92404,united +abortion,"(""free women's clinic san bernardino ca 92404"", ""free women's clinic san bernardino ca 92404 phone"")",free women's clinic san bernardino ca 92404,free women's clinic san bernardino ca 92404 phone,5,4,google,2026-03-12 19:39:05.696408,free women's clinic san francisco,free women's clinic san bernardino ca,92404,phone +abortion,"(""free women's clinic san bernardino ca 2024"", ""free women's clinic san bernardino ca 2024 schedule"")",free women's clinic san bernardino ca 2024,free women's clinic san bernardino ca 2024 schedule,1,4,google,2026-03-12 19:39:06.670463,free women's clinic san francisco,free women's clinic san bernardino ca,2024,schedule +abortion,"(""free women's clinic san bernardino ca 2024"", ""free women's clinic san bernardino ca 2024 free"")",free women's clinic san bernardino ca 2024,free women's clinic san bernardino ca 2024 free,2,4,google,2026-03-12 19:39:06.670463,free women's clinic san francisco,free women's clinic san bernardino ca,2024,2024 +abortion,"(""free women's clinic san bernardino ca 2024"", ""free women's clinic san bernardino ca 2024 free clinic"")",free women's clinic san bernardino ca 2024,free women's clinic san bernardino ca 2024 free clinic,3,4,google,2026-03-12 19:39:06.670463,free women's clinic san francisco,free women's clinic san bernardino ca,2024,2024 +abortion,"(""free women's clinic san bernardino ca 2024"", ""free women's clinic san bernardino ca 2024 dates"")",free women's clinic san bernardino ca 2024,free women's clinic san bernardino ca 2024 dates,4,4,google,2026-03-12 19:39:06.670463,free women's clinic san francisco,free women's clinic san bernardino ca,2024,dates +abortion,"(""free women's clinic san bernardino ca 2024"", ""free women's clinic san bernardino ca 2024 application"")",free women's clinic san bernardino ca 2024,free women's clinic san bernardino ca 2024 application,5,4,google,2026-03-12 19:39:06.670463,free women's clinic san francisco,free women's clinic san bernardino ca,2024,application +abortion,"(""free women's clinic san bernardino ca area"", ""free women's clinic san bernardino ca area free"")",free women's clinic san bernardino ca area,free women's clinic san bernardino ca area free,1,4,google,2026-03-12 19:39:07.552663,free women's clinic san francisco,free women's clinic san bernardino ca,area,area +abortion,"(""free women's clinic san bernardino ca area"", ""free women's clinic san bernardino ca area free clinic"")",free women's clinic san bernardino ca area,free women's clinic san bernardino ca area free clinic,2,4,google,2026-03-12 19:39:07.552663,free women's clinic san francisco,free women's clinic san bernardino ca,area,area +abortion,"(""free women's clinic san bernardino ca area"", ""free women's clinic san bernardino ca area 2024"")",free women's clinic san bernardino ca area,free women's clinic san bernardino ca area 2024,3,4,google,2026-03-12 19:39:07.552663,free women's clinic san francisco,free women's clinic san bernardino ca,area,2024 +abortion,"(""free women's clinic san bernardino ca area"", ""free women's clinic san bernardino ca area california"")",free women's clinic san bernardino ca area,free women's clinic san bernardino ca area california,4,4,google,2026-03-12 19:39:07.552663,free women's clinic san francisco,free women's clinic san bernardino ca,area,california +abortion,"(""free women's clinic san bernardino ca area"", ""free women's clinic san bernardino ca area code"")",free women's clinic san bernardino ca area,free women's clinic san bernardino ca area code,5,4,google,2026-03-12 19:39:07.552663,free women's clinic san francisco,free women's clinic san bernardino ca,area,code +abortion,"('mission community center san francisco', 'mission recreation center san francisco')",mission community center san francisco,mission recreation center san francisco,1,4,google,2026-03-12 19:39:10.282308,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",mission community center san francisco,recreation +abortion,"('mission community center san francisco', 'Filipino Community Center, Mission Street, San Francisco, CA')",mission community center san francisco,"Filipino Community Center, Mission Street, San Francisco, CA",2,4,google,2026-03-12 19:39:10.282308,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",mission community center san francisco,"Filipino Community Center, Mission Street, San Francisco, CA" +abortion,"('mission community center san francisco', 'Excelsior Community Center, Mission Street, San Francisco, CA')",mission community center san francisco,"Excelsior Community Center, Mission Street, San Francisco, CA",3,4,google,2026-03-12 19:39:10.282308,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",mission community center san francisco,"Excelsior Community Center, Mission Street, San Francisco, CA" +abortion,"('mission community center san francisco', 'Mission Recreation Center, Harrison Street, San Francisco, CA')",mission community center san francisco,"Mission Recreation Center, Harrison Street, San Francisco, CA",4,4,google,2026-03-12 19:39:10.282308,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",mission community center san francisco,"Mission Recreation Center, Harrison Street, San Francisco, CA" +abortion,"('mission community center san francisco', 'The Salvation Army Mission Corps Community Center, Valencia Street, Mission, San Francisco, CA')",mission community center san francisco,"The Salvation Army Mission Corps Community Center, Valencia Street, Mission, San Francisco, CA",5,4,google,2026-03-12 19:39:10.282308,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",mission community center san francisco,"The Salvation Army Mission Corps Community Center, Valencia Street, Mission, San Francisco, CA" +abortion,"('mission community center san francisco', 'BAAITS Community Center and Office, Valencia Street, Mission, San Francisco, CA')",mission community center san francisco,"BAAITS Community Center and Office, Valencia Street, Mission, San Francisco, CA",6,4,google,2026-03-12 19:39:10.282308,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",mission community center san francisco,"BAAITS Community Center and Office, Valencia Street, Mission, San Francisco, CA" +abortion,"('mission community center san francisco', 'mission bay community center')",mission community center san francisco,mission bay community center,7,4,google,2026-03-12 19:39:10.282308,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",mission community center san francisco,bay +abortion,"('mission community center san francisco', 'mission community music center')",mission community center san francisco,mission community music center,8,4,google,2026-03-12 19:39:10.282308,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",mission community center san francisco,music +abortion,"('mission community center san francisco', 'mission neighborhood centers san francisco')",mission community center san francisco,mission neighborhood centers san francisco,9,4,google,2026-03-12 19:39:10.282308,women's community clinic san francisco,"Women's Community Clinic, Mission Street, San Francisco, CA",mission community center san francisco,neighborhood centers +abortion,"(""Women's Community Clinic, Mission Street, SF, CA"", ""Women's Community Clinic, Mission Street, SF, California"")","Women's Community Clinic, Mission Street, SF, CA","Women's Community Clinic, Mission Street, SF, California",1,4,google,2026-03-12 19:39:11.239957,women's community clinic san francisco,women's community clinic sf,"Women's Community Clinic, Mission Street, SF, CA",California +abortion,"(""Women's Community Clinic, Mission Street, SF, CA"", ""women's community clinic san francisco"")","Women's Community Clinic, Mission Street, SF, CA",women's community clinic san francisco,2,4,google,2026-03-12 19:39:11.239957,women's community clinic san francisco,women's community clinic sf,"Women's Community Clinic, Mission Street, SF, CA",women's community clinic san francisco +abortion,"(""Women's Community Clinic, Mission Street, SF, CA"", ""women's community clinic sf"")","Women's Community Clinic, Mission Street, SF, CA",women's community clinic sf,3,4,google,2026-03-12 19:39:11.239957,women's community clinic san francisco,women's community clinic sf,"Women's Community Clinic, Mission Street, SF, CA",women's community clinic sf +abortion,"(""Women's Community Clinic, Mission Street, SF, CA"", ""women's community clinic"")","Women's Community Clinic, Mission Street, SF, CA",women's community clinic,4,4,google,2026-03-12 19:39:11.239957,women's community clinic san francisco,women's community clinic sf,"Women's Community Clinic, Mission Street, SF, CA",women's community clinic +abortion,"(""Women's Community Clinic, Mission Street, SF, CA"", 'mission community center san francisco')","Women's Community Clinic, Mission Street, SF, CA",mission community center san francisco,5,4,google,2026-03-12 19:39:11.239957,women's community clinic san francisco,women's community clinic sf,"Women's Community Clinic, Mission Street, SF, CA",mission community center san francisco +abortion,"(""Women's Community Clinic, Mission Street, SF, CA"", ""women's clinic mission beach"")","Women's Community Clinic, Mission Street, SF, CA",women's clinic mission beach,6,4,google,2026-03-12 19:39:11.239957,women's community clinic san francisco,women's community clinic sf,"Women's Community Clinic, Mission Street, SF, CA",women's clinic mission beach +abortion,"(""women's community clinic near me"", ""women's community health center near me"")",women's community clinic near me,women's community health center near me,1,4,google,2026-03-12 19:39:12.196241,women's community clinic san francisco,women's community clinic sf,near me,health center +abortion,"(""women's community clinic near me"", ""women's health free clinic near me"")",women's community clinic near me,women's health free clinic near me,2,4,google,2026-03-12 19:39:12.196241,women's community clinic san francisco,women's community clinic sf,near me,health free +abortion,"(""women's community clinic near me"", 'are community clinics free')",women's community clinic near me,are community clinics free,3,4,google,2026-03-12 19:39:12.196241,women's community clinic san francisco,women's community clinic sf,near me,are clinics free +abortion,"(""women's community clinic near me"", ""women's clinic near me without insurance"")",women's community clinic near me,women's clinic near me without insurance,4,4,google,2026-03-12 19:39:12.196241,women's community clinic san francisco,women's community clinic sf,near me,without insurance +abortion,"(""women's community clinic near me"", ""women's health community clinics"")",women's community clinic near me,women's health community clinics,5,4,google,2026-03-12 19:39:12.196241,women's community clinic san francisco,women's community clinic sf,near me,health clinics +abortion,"('sf community clinic', 'sf community clinic consortium')",sf community clinic,sf community clinic consortium,1,4,google,2026-03-12 19:39:13.128880,women's community clinic san francisco,women's community clinic sf,sf,consortium +abortion,"('sf community clinic', 'sf city clinic')",sf community clinic,sf city clinic,2,4,google,2026-03-12 19:39:13.128880,women's community clinic san francisco,women's community clinic sf,sf,city +abortion,"('sf community clinic', 'sf city clinic hours')",sf community clinic,sf city clinic hours,3,4,google,2026-03-12 19:39:13.128880,women's community clinic san francisco,women's community clinic sf,sf,city hours +abortion,"('sf community clinic', 'sf city clinic prep')",sf community clinic,sf city clinic prep,4,4,google,2026-03-12 19:39:13.128880,women's community clinic san francisco,women's community clinic sf,sf,city prep +abortion,"('sf community clinic', 'san francisco community clinic springdale')",sf community clinic,san francisco community clinic springdale,5,4,google,2026-03-12 19:39:13.128880,women's community clinic san francisco,women's community clinic sf,sf,san francisco springdale +abortion,"('sf community clinic', 'san francisco community clinic consortium sfccc')",sf community clinic,san francisco community clinic consortium sfccc,6,4,google,2026-03-12 19:39:13.128880,women's community clinic san francisco,women's community clinic sf,sf,san francisco consortium sfccc +abortion,"('sf community clinic', 'sf city clinic jobs')",sf community clinic,sf city clinic jobs,7,4,google,2026-03-12 19:39:13.128880,women's community clinic san francisco,women's community clinic sf,sf,city jobs +abortion,"('sf community clinic', 'sf city clinic mychart')",sf community clinic,sf city clinic mychart,8,4,google,2026-03-12 19:39:13.128880,women's community clinic san francisco,women's community clinic sf,sf,city mychart +abortion,"('sf community clinic', 'sf city clinic volunteer')",sf community clinic,sf city clinic volunteer,9,4,google,2026-03-12 19:39:13.128880,women's community clinic san francisco,women's community clinic sf,sf,city volunteer +abortion,"(""women's clinic sf"", ""women's clinic sf general"")",women's clinic sf,women's clinic sf general,1,4,google,2026-03-12 19:39:14.210469,women's community clinic san francisco,women's community clinic sf,sf,general +abortion,"(""women's clinic sf"", ""women's clinic sfgh"")",women's clinic sf,women's clinic sfgh,2,4,google,2026-03-12 19:39:14.210469,women's community clinic san francisco,women's community clinic sf,sf,sfgh +abortion,"(""women's clinic sf"", ""women's health center sf"")",women's clinic sf,women's health center sf,3,4,google,2026-03-12 19:39:14.210469,women's community clinic san francisco,women's community clinic sf,sf,health center +abortion,"(""women's clinic sf"", ""women's health center sfgh"")",women's clinic sf,women's health center sfgh,4,4,google,2026-03-12 19:39:14.210469,women's community clinic san francisco,women's community clinic sf,sf,health center sfgh +abortion,"(""women's clinic sf"", ""women's community clinic sf"")",women's clinic sf,women's community clinic sf,5,4,google,2026-03-12 19:39:14.210469,women's community clinic san francisco,women's community clinic sf,sf,community +abortion,"(""women's clinic sf"", ""women's health clinic sf"")",women's clinic sf,women's health clinic sf,6,4,google,2026-03-12 19:39:14.210469,women's community clinic san francisco,women's community clinic sf,sf,health +abortion,"(""women's clinic sf"", ""women's clinic peterson afb"")",women's clinic sf,women's clinic peterson afb,7,4,google,2026-03-12 19:39:14.210469,women's community clinic san francisco,women's community clinic sf,sf,peterson afb +abortion,"(""women's clinic sf"", ""Mission Bernal Women's Clinic, Valencia Street, SF, CA"")",women's clinic sf,"Mission Bernal Women's Clinic, Valencia Street, SF, CA",8,4,google,2026-03-12 19:39:14.210469,women's community clinic san francisco,women's community clinic sf,sf,"Mission Bernal Women's Clinic, Valencia Street, SF, CA" +abortion,"(""women's clinic sf"", ""women's clinic san francisco"")",women's clinic sf,women's clinic san francisco,9,4,google,2026-03-12 19:39:14.210469,women's community clinic san francisco,women's community clinic sf,sf,san francisco +abortion,"(""women's community clinic photos"", ""leichhardt women's community health centre photos"")",women's community clinic photos,leichhardt women's community health centre photos,1,4,google,2026-03-12 19:39:15.284146,women's community clinic san francisco,women's community clinic,photos,leichhardt health centre +abortion,"(""women's community clinic photos"", ""women's community clinic near me"")",women's community clinic photos,women's community clinic near me,2,4,google,2026-03-12 19:39:15.284146,women's community clinic san francisco,women's community clinic,photos,near me +abortion,"(""women's community clinic photos"", ""women's health community clinic"")",women's community clinic photos,women's health community clinic,3,4,google,2026-03-12 19:39:15.284146,women's community clinic san francisco,women's community clinic,photos,health +abortion,"(""women's community clinic reviews"", ""leichhardt women's community health centre reviews"")",women's community clinic reviews,leichhardt women's community health centre reviews,1,4,google,2026-03-12 19:39:16.335654,women's community clinic san francisco,women's community clinic,reviews,leichhardt health centre +abortion,"(""women's community clinic reviews"", ""women's community clinic near me"")",women's community clinic reviews,women's community clinic near me,2,4,google,2026-03-12 19:39:16.335654,women's community clinic san francisco,women's community clinic,reviews,near me +abortion,"(""women's community clinic reviews"", ""women's health community clinic"")",women's community clinic reviews,women's health community clinic,3,4,google,2026-03-12 19:39:16.335654,women's community clinic san francisco,women's community clinic,reviews,health +abortion,"(""women's community clinic reviews"", ""women's clinic reviews"")",women's community clinic reviews,women's clinic reviews,4,4,google,2026-03-12 19:39:16.335654,women's community clinic san francisco,women's community clinic,reviews,reviews +abortion,"(""women's community clinic a program of healthright 360"", ""women's community clinic near me"")",women's community clinic a program of healthright 360,women's community clinic near me,1,4,google,2026-03-12 19:39:17.692539,women's community clinic san francisco,women's community clinic,a program of healthright 360,near me +abortion,"(""women's community clinic a program of healthright 360"", ""women's health program-1350"")",women's community clinic a program of healthright 360,women's health program-1350,2,4,google,2026-03-12 19:39:17.692539,women's community clinic san francisco,women's community clinic,a program of healthright 360,health program-1350 +abortion,"(""women's community clinic a program of healthright 360"", ""women's community health clinic"")",women's community clinic a program of healthright 360,women's community health clinic,3,4,google,2026-03-12 19:39:17.692539,women's community clinic san francisco,women's community clinic,a program of healthright 360,health +abortion,"(""women's community health center"", ""women's community health center near me"")",women's community health center,women's community health center near me,1,4,google,2026-03-12 19:39:18.780533,women's community clinic san francisco,women's community clinic,health center,near me +abortion,"(""women's community health center"", ""women's community health clinic"")",women's community health center,women's community health clinic,2,4,google,2026-03-12 19:39:18.780533,women's community clinic san francisco,women's community clinic,health center,clinic +abortion,"(""women's community health center"", ""women's community health services"")",women's community health center,women's community health services,3,4,google,2026-03-12 19:39:18.780533,women's community clinic san francisco,women's community clinic,health center,services +abortion,"(""women's community health center"", ""women's community health centre leichhardt"")",women's community health center,women's community health centre leichhardt,4,4,google,2026-03-12 19:39:18.780533,women's community clinic san francisco,women's community clinic,health center,centre leichhardt +abortion,"(""women's community health center"", ""women's health community hospital"")",women's community health center,women's health community hospital,5,4,google,2026-03-12 19:39:18.780533,women's community clinic san francisco,women's community clinic,health center,hospital +abortion,"(""women's community health center"", ""community women's health clinic tauranga"")",women's community health center,community women's health clinic tauranga,6,4,google,2026-03-12 19:39:18.780533,women's community clinic san francisco,women's community clinic,health center,clinic tauranga +abortion,"(""women's community health center"", ""community women's health centre mile end"")",women's community health center,community women's health centre mile end,7,4,google,2026-03-12 19:39:18.780533,women's community clinic san francisco,women's community clinic,health center,centre mile end +abortion,"(""women's community health center"", ""community women's health clinic te puke"")",women's community health center,community women's health clinic te puke,8,4,google,2026-03-12 19:39:18.780533,women's community clinic san francisco,women's community clinic,health center,clinic te puke +abortion,"(""women's community health center"", ""community women's health clinic papamoa"")",women's community health center,community women's health clinic papamoa,9,4,google,2026-03-12 19:39:18.780533,women's community clinic san francisco,women's community clinic,health center,clinic papamoa +abortion,"(""women's health community clinic"", ""community women's health clinic tauranga"")",women's health community clinic,community women's health clinic tauranga,1,4,google,2026-03-12 19:39:19.939944,women's community clinic san francisco,women's community clinic,health,tauranga +abortion,"(""women's health community clinic"", ""community women's health clinic te puke"")",women's health community clinic,community women's health clinic te puke,2,4,google,2026-03-12 19:39:19.939944,women's community clinic san francisco,women's community clinic,health,te puke +abortion,"(""women's health community clinic"", ""community women's health clinic papamoa"")",women's health community clinic,community women's health clinic papamoa,3,4,google,2026-03-12 19:39:19.939944,women's community clinic san francisco,women's community clinic,health,papamoa +abortion,"(""women's health community clinic"", ""community care women's health clinic"")",women's health community clinic,community care women's health clinic,4,4,google,2026-03-12 19:39:19.939944,women's community clinic san francisco,women's community clinic,health,care +abortion,"(""women's health community clinic"", ""boulder community health women's clinic"")",women's health community clinic,boulder community health women's clinic,5,4,google,2026-03-12 19:39:19.939944,women's community clinic san francisco,women's community clinic,health,boulder +abortion,"(""women's health community clinic"", ""bendigo community health women's clinic"")",women's health community clinic,bendigo community health women's clinic,6,4,google,2026-03-12 19:39:19.939944,women's community clinic san francisco,women's community clinic,health,bendigo +abortion,"(""women's health community clinic"", ""women's health clinic helping the community meridian idaho"")",women's health community clinic,women's health clinic helping the community meridian idaho,7,4,google,2026-03-12 19:39:19.939944,women's community clinic san francisco,women's community clinic,health,helping the meridian idaho +abortion,"(""women's health community clinic"", ""women's community clinic near me"")",women's health community clinic,women's community clinic near me,8,4,google,2026-03-12 19:39:19.939944,women's community clinic san francisco,women's community clinic,health,near me +abortion,"(""women's health community clinic"", ""women's community health center near me"")",women's health community clinic,women's community health center near me,9,4,google,2026-03-12 19:39:19.939944,women's community clinic san francisco,women's community clinic,health,center near me +abortion,"(""community women's health clinic tauranga"", ""women's community clinic near me"")",community women's health clinic tauranga,women's community clinic near me,1,4,google,2026-03-12 19:39:22.218448,women's community clinic san francisco,women's community clinic,health tauranga,near me +abortion,"(""community women's health clinic tauranga"", ""community health centers women's health"")",community women's health clinic tauranga,community health centers women's health,2,4,google,2026-03-12 19:39:22.218448,women's community clinic san francisco,women's community clinic,health tauranga,centers +abortion,"(""community women's health clinic tauranga"", ""community health women's care"")",community women's health clinic tauranga,community health women's care,3,4,google,2026-03-12 19:39:22.218448,women's community clinic san francisco,women's community clinic,health tauranga,care +abortion,"(""community women's health clinic tauranga"", ""community health women's clinic"")",community women's health clinic tauranga,community health women's clinic,4,4,google,2026-03-12 19:39:22.218448,women's community clinic san francisco,women's community clinic,health tauranga,health tauranga +abortion,"(""community women's health clinic tauranga"", ""community health women's"")",community women's health clinic tauranga,community health women's,5,4,google,2026-03-12 19:39:22.218448,women's community clinic san francisco,women's community clinic,health tauranga,health tauranga +abortion,"(""community women's health clinic tauranga"", ""community health women's center"")",community women's health clinic tauranga,community health women's center,6,4,google,2026-03-12 19:39:22.218448,women's community clinic san francisco,women's community clinic,health tauranga,center +abortion,"(""christ community women's clinic"", ""christ community women's clinic jackson tn"")",christ community women's clinic,christ community women's clinic jackson tn,1,4,google,2026-03-12 19:39:23.454038,women's community clinic san francisco,women's community clinic,christ,jackson tn +abortion,"(""christ community women's clinic"", ""christ community women's health center"")",christ community women's clinic,christ community women's health center,2,4,google,2026-03-12 19:39:23.454038,women's community clinic san francisco,women's community clinic,christ,health center +abortion,"(""christ community women's clinic"", ""christ community health services women's clinic"")",christ community women's clinic,christ community health services women's clinic,3,4,google,2026-03-12 19:39:23.454038,women's community clinic san francisco,women's community clinic,christ,health services +abortion,"(""christ community women's clinic"", ""christ community women's health center jackson tn"")",christ community women's clinic,christ community women's health center jackson tn,4,4,google,2026-03-12 19:39:23.454038,women's community clinic san francisco,women's community clinic,christ,health center jackson tn +abortion,"(""christ community women's clinic"", ""christ community women's center"")",christ community women's clinic,christ community women's center,5,4,google,2026-03-12 19:39:23.454038,women's community clinic san francisco,women's community clinic,christ,center +abortion,"(""christ community women's clinic"", ""christ community women's health"")",christ community women's clinic,christ community women's health,6,4,google,2026-03-12 19:39:23.454038,women's community clinic san francisco,women's community clinic,christ,health +abortion,"(""christ community women's clinic"", ""christ community broad women's clinic"")",christ community women's clinic,christ community broad women's clinic,7,4,google,2026-03-12 19:39:23.454038,women's community clinic san francisco,women's community clinic,christ,broad +abortion,"(""ucsf women's hospital"", ""ucsf medical center women's health"")",ucsf women's hospital,ucsf medical center women's health,1,4,google,2026-03-12 19:39:24.446403,ucsf women's clinic san francisco,ucsf women's clinic,hospital,medical center health +abortion,"(""ucsf women's hospital"", ""ucsf mission bay women's hospital"")",ucsf women's hospital,ucsf mission bay women's hospital,2,4,google,2026-03-12 19:39:24.446403,ucsf women's clinic san francisco,ucsf women's clinic,hospital,mission bay +abortion,"(""ucsf women's hospital"", ""ucsf women's and children's hospital"")",ucsf women's hospital,ucsf women's and children's hospital,3,4,google,2026-03-12 19:39:24.446403,ucsf women's clinic san francisco,ucsf women's clinic,hospital,and children's +abortion,"(""ucsf women's hospital"", ""ucsf betty irene moore women's hospital"")",ucsf women's hospital,ucsf betty irene moore women's hospital,4,4,google,2026-03-12 19:39:24.446403,ucsf women's clinic san francisco,ucsf women's clinic,hospital,betty irene moore +abortion,"(""ucsf women's hospital"", ""UCSF Betty Irene Moore Women's Hospital, 4th Street, San Francisco, CA"")",ucsf women's hospital,"UCSF Betty Irene Moore Women's Hospital, 4th Street, San Francisco, CA",5,4,google,2026-03-12 19:39:24.446403,ucsf women's clinic san francisco,ucsf women's clinic,hospital,"UCSF Betty Irene Moore Women's Hospital, 4th Street, San Francisco, CA" +abortion,"(""ucsf women's hospital"", ""UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA"")",ucsf women's hospital,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA",6,4,google,2026-03-12 19:39:24.446403,ucsf women's clinic san francisco,ucsf women's clinic,hospital,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA" +abortion,"(""ucsf women's hospital"", ""ucsf women's health center"")",ucsf women's hospital,ucsf women's health center,7,4,google,2026-03-12 19:39:24.446403,ucsf women's clinic san francisco,ucsf women's clinic,hospital,health center +abortion,"(""ucsf women's hospital"", ""ucsf women's health"")",ucsf women's hospital,ucsf women's health,8,4,google,2026-03-12 19:39:24.446403,ucsf women's clinic san francisco,ucsf women's clinic,hospital,health +abortion,"(""ucsf women's hospital"", ""ucsf women's health clinic"")",ucsf women's hospital,ucsf women's health clinic,9,4,google,2026-03-12 19:39:24.446403,ucsf women's clinic san francisco,ucsf women's clinic,hospital,health clinic +abortion,"(""ucsf women's health clinical research center"", ""ucsf women's health resource center"")",ucsf women's health clinical research center,ucsf women's health resource center,1,4,google,2026-03-12 19:39:25.837089,ucsf women's clinic san francisco,ucsf women's clinic,health clinical research center,resource +abortion,"(""ucsf women's health clinical research center"", ""ucsf women's health center san francisco ca"")",ucsf women's health clinical research center,ucsf women's health center san francisco ca,2,4,google,2026-03-12 19:39:25.837089,ucsf women's clinic san francisco,ucsf women's clinic,health clinical research center,san francisco ca +abortion,"(""ucsf women's health clinical research center"", ""ucsf women's health center"")",ucsf women's health clinical research center,ucsf women's health center,3,4,google,2026-03-12 19:39:25.837089,ucsf women's clinic san francisco,ucsf women's clinic,health clinical research center,health clinical research center +abortion,"(""ucsf women's health clinical research center"", ""ucsf women's health clinic"")",ucsf women's health clinical research center,ucsf women's health clinic,4,4,google,2026-03-12 19:39:25.837089,ucsf women's clinic san francisco,ucsf women's clinic,health clinical research center,clinic +abortion,"(""ucsf women's health clinical research center"", ""ucsf women's resource center"")",ucsf women's health clinical research center,ucsf women's resource center,5,4,google,2026-03-12 19:39:25.837089,ucsf women's clinic san francisco,ucsf women's clinic,health clinical research center,resource +abortion,"(""ucsf women's specialty clinic"", ""ucsf women's clinic"")",ucsf women's specialty clinic,ucsf women's clinic,1,4,google,2026-03-12 19:39:26.730784,ucsf women's clinic san francisco,ucsf women's clinic,specialty,specialty +abortion,"(""ucsf women's specialty clinic"", ""ucsf women's center"")",ucsf women's specialty clinic,ucsf women's center,2,4,google,2026-03-12 19:39:26.730784,ucsf women's clinic san francisco,ucsf women's clinic,specialty,center +abortion,"(""ucsf women's specialty clinic"", ""ucsf women's health clinic"")",ucsf women's specialty clinic,ucsf women's health clinic,3,4,google,2026-03-12 19:39:26.730784,ucsf women's clinic san francisco,ucsf women's clinic,specialty,health +abortion,"(""ucsf women's specialty clinic"", ""ucsf women's health"")",ucsf women's specialty clinic,ucsf women's health,4,4,google,2026-03-12 19:39:26.730784,ucsf women's clinic san francisco,ucsf women's clinic,specialty,health +abortion,"(""ucsf women's specialty clinic"", ""ucsf women's health center"")",ucsf women's specialty clinic,ucsf women's health center,5,4,google,2026-03-12 19:39:26.730784,ucsf women's clinic san francisco,ucsf women's clinic,specialty,health center +abortion,"(""ucsf women's hiv clinic"", ""ucsf women's hiv program"")",ucsf women's hiv clinic,ucsf women's hiv program,1,4,google,2026-03-12 19:39:28.011010,ucsf women's clinic san francisco,ucsf women's clinic,hiv,program +abortion,"(""ucsf women's hiv clinic"", 'ucsf hiv clinic')",ucsf women's hiv clinic,ucsf hiv clinic,2,4,google,2026-03-12 19:39:28.011010,ucsf women's clinic san francisco,ucsf women's clinic,hiv,hiv +abortion,"(""ucsf women's hiv clinic"", 'ucsf hiv hotline')",ucsf women's hiv clinic,ucsf hiv hotline,3,4,google,2026-03-12 19:39:28.011010,ucsf women's clinic san francisco,ucsf women's clinic,hiv,hotline +abortion,"(""ucsf women's hiv clinic"", 'ucsf hiv care')",ucsf women's hiv clinic,ucsf hiv care,4,4,google,2026-03-12 19:39:28.011010,ucsf women's clinic san francisco,ucsf women's clinic,hiv,care +abortion,"(""ucsf women's hiv clinic"", 'ucsf hiv testing')",ucsf women's hiv clinic,ucsf hiv testing,5,4,google,2026-03-12 19:39:28.011010,ucsf women's clinic san francisco,ucsf women's clinic,hiv,testing +abortion,"(""ucsf young women's clinic"", ""young women's program ucsf"")",ucsf young women's clinic,young women's program ucsf,1,4,google,2026-03-12 19:39:29.435275,ucsf women's clinic san francisco,ucsf women's clinic,young,program +abortion,"(""ucsf young women's clinic"", 'ucsf young adolescent clinic')",ucsf young women's clinic,ucsf young adolescent clinic,2,4,google,2026-03-12 19:39:29.435275,ucsf women's clinic san francisco,ucsf women's clinic,young,adolescent +abortion,"(""ucsf young women's clinic"", 'ucsf young adult clinic')",ucsf young women's clinic,ucsf young adult clinic,3,4,google,2026-03-12 19:39:29.435275,ucsf women's clinic san francisco,ucsf women's clinic,young,adult +abortion,"(""ucsf young women's clinic"", ""ucsf women's clinic"")",ucsf young women's clinic,ucsf women's clinic,4,4,google,2026-03-12 19:39:29.435275,ucsf women's clinic san francisco,ucsf women's clinic,young,young +abortion,"(""ucsf women's options clinic"", ""ucsf women's options center"")",ucsf women's options clinic,ucsf women's options center,1,4,google,2026-03-12 19:39:30.304555,ucsf women's clinic san francisco,ucsf women's clinic,options,center +abortion,"(""ucsf women's options clinic"", ""ucsf women's options"")",ucsf women's options clinic,ucsf women's options,2,4,google,2026-03-12 19:39:30.304555,ucsf women's clinic san francisco,ucsf women's clinic,options,options +abortion,"(""ucsf women's options clinic"", ""ucsf clinic women's options center"")",ucsf women's options clinic,ucsf clinic women's options center,3,4,google,2026-03-12 19:39:30.304555,ucsf women's clinic san francisco,ucsf women's clinic,options,center +abortion,"(""ucsf women's options clinic"", ""ucsf women's clinic"")",ucsf women's options clinic,ucsf women's clinic,4,4,google,2026-03-12 19:39:30.304555,ucsf women's clinic san francisco,ucsf women's clinic,options,options +abortion,"(""ucsf women's options clinic"", ""ucsf women's health clinic"")",ucsf women's options clinic,ucsf women's health clinic,5,4,google,2026-03-12 19:39:30.304555,ucsf women's clinic san francisco,ucsf women's clinic,options,health +abortion,"(""ucsf women's center for bladder and pelvic health"", 'UCSF Women’s Center for Bladder & Pelvic Health, Illinois Street, San Francisco, CA')",ucsf women's center for bladder and pelvic health,"UCSF Women’s Center for Bladder & Pelvic Health, Illinois Street, San Francisco, CA",1,4,google,2026-03-12 19:39:31.730358,ucsf women's clinic san francisco,ucsf women's center,for bladder and pelvic health,"UCSF Women’s Center Bladder & Pelvic Health, Illinois Street, San Francisco, CA" +abortion,"(""ucsf women's center for bladder and pelvic health"", ""what is a women's pelvic floor"")",ucsf women's center for bladder and pelvic health,what is a women's pelvic floor,2,4,google,2026-03-12 19:39:31.730358,ucsf women's clinic san francisco,ucsf women's center,for bladder and pelvic health,what is a floor +abortion,"(""ucsf women's center for bladder and pelvic health"", 'does pelvic us show bladder')",ucsf women's center for bladder and pelvic health,does pelvic us show bladder,3,4,google,2026-03-12 19:39:31.730358,ucsf women's clinic san francisco,ucsf women's center,for bladder and pelvic health,does us show +abortion,"(""ucsf women's center for bladder and pelvic health"", ""how big is a women's bladder"")",ucsf women's center for bladder and pelvic health,how big is a women's bladder,4,4,google,2026-03-12 19:39:31.730358,ucsf women's clinic san francisco,ucsf women's center,for bladder and pelvic health,how big is a +abortion,"(""ucsf women's center for bladder and pelvic health"", ""ucsf center for urogynecology and women's pelvic health"")",ucsf women's center for bladder and pelvic health,ucsf center for urogynecology and women's pelvic health,5,4,google,2026-03-12 19:39:31.730358,ucsf women's clinic san francisco,ucsf women's center,for bladder and pelvic health,urogynecology +abortion,"(""ucsf women's center for bladder and pelvic health"", 'ucsf pelvic floor clinic')",ucsf women's center for bladder and pelvic health,ucsf pelvic floor clinic,6,4,google,2026-03-12 19:39:31.730358,ucsf women's clinic san francisco,ucsf women's center,for bladder and pelvic health,floor clinic +abortion,"(""ucsf women's center for bladder and pelvic health"", 'ucsf pelvic health')",ucsf women's center for bladder and pelvic health,ucsf pelvic health,7,4,google,2026-03-12 19:39:31.730358,ucsf women's clinic san francisco,ucsf women's center,for bladder and pelvic health,for bladder and pelvic health +abortion,"(""ucsf women's center for bladder and pelvic health"", ""ucsf women's urology"")",ucsf women's center for bladder and pelvic health,ucsf women's urology,8,4,google,2026-03-12 19:39:31.730358,ucsf women's clinic san francisco,ucsf women's center,for bladder and pelvic health,urology +abortion,"(""ucsf women's center for bladder and pelvic health"", 'ucsf pelvic floor')",ucsf women's center for bladder and pelvic health,ucsf pelvic floor,9,4,google,2026-03-12 19:39:31.730358,ucsf women's clinic san francisco,ucsf women's center,for bladder and pelvic health,floor +abortion,"(""ucsf women's health center mount zion"", ""ucsf women's health center mount zion reviews"")",ucsf women's health center mount zion,ucsf women's health center mount zion reviews,1,4,google,2026-03-12 19:39:32.798336,ucsf women's clinic san francisco,ucsf women's center,health mount zion,reviews +abortion,"(""ucsf women's health center mount zion"", ""ucsf women's health center mount zion photos"")",ucsf women's health center mount zion,ucsf women's health center mount zion photos,2,4,google,2026-03-12 19:39:32.798336,ucsf women's clinic san francisco,ucsf women's center,health mount zion,photos +abortion,"(""ucsf women's health center mount zion"", ""ucsf women's health obstetrics and gynecology services mount zion"")",ucsf women's health center mount zion,ucsf women's health obstetrics and gynecology services mount zion,3,4,google,2026-03-12 19:39:32.798336,ucsf women's clinic san francisco,ucsf women's center,health mount zion,obstetrics and gynecology services +abortion,"(""ucsf women's health center mount zion"", ""UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA"")",ucsf women's health center mount zion,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA",4,4,google,2026-03-12 19:39:32.798336,ucsf women's clinic san francisco,ucsf women's center,health mount zion,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA" +abortion,"(""ucsf women's health center mount zion"", ""ucsf mount zion women's health clinic"")",ucsf women's health center mount zion,ucsf mount zion women's health clinic,5,4,google,2026-03-12 19:39:32.798336,ucsf women's clinic san francisco,ucsf women's center,health mount zion,clinic +abortion,"(""ucsf women's health center mount zion"", ""ucsf women's health mt zion"")",ucsf women's health center mount zion,ucsf women's health mt zion,6,4,google,2026-03-12 19:39:32.798336,ucsf women's clinic san francisco,ucsf women's center,health mount zion,mt +abortion,"(""ucsf women's health center mount zion"", 'ucsf mount zion gynecology')",ucsf women's health center mount zion,ucsf mount zion gynecology,7,4,google,2026-03-12 19:39:32.798336,ucsf women's clinic san francisco,ucsf women's center,health mount zion,gynecology +abortion,"(""ucsf women's options center"", ""ucsf women's options center photos"")",ucsf women's options center,ucsf women's options center photos,1,4,google,2026-03-12 19:39:34.079998,ucsf women's clinic san francisco,ucsf women's center,options,photos +abortion,"(""ucsf women's options center"", ""UCSF Women's Options Center, Sutter Street, San Francisco, CA"")",ucsf women's options center,"UCSF Women's Options Center, Sutter Street, San Francisco, CA",2,4,google,2026-03-12 19:39:34.079998,ucsf women's clinic san francisco,ucsf women's center,options,"UCSF Women's Options Center, Sutter Street, San Francisco, CA" +abortion,"(""ucsf women's options center"", ""ucsf women's options"")",ucsf women's options center,ucsf women's options,3,4,google,2026-03-12 19:39:34.079998,ucsf women's clinic san francisco,ucsf women's center,options,options +abortion,"(""ucsf women's options center"", ""ucsf women's center"")",ucsf women's options center,ucsf women's center,4,4,google,2026-03-12 19:39:34.079998,ucsf women's clinic san francisco,ucsf women's center,options,options +abortion,"(""ucsf women's options center"", ""ucsf women's health center"")",ucsf women's options center,ucsf women's health center,5,4,google,2026-03-12 19:39:34.079998,ucsf women's clinic san francisco,ucsf women's center,options,health +abortion,"(""ucsf women's resource center"", ""ucsf women's health resource center"")",ucsf women's resource center,ucsf women's health resource center,1,4,google,2026-03-12 19:39:35.353506,ucsf women's clinic san francisco,ucsf women's center,resource,health +abortion,"(""ucsf women's resource center"", ""ucsf women's center"")",ucsf women's resource center,ucsf women's center,2,4,google,2026-03-12 19:39:35.353506,ucsf women's clinic san francisco,ucsf women's center,resource,resource +abortion,"(""ucsf women's resource center"", ""ucsf women's health center"")",ucsf women's resource center,ucsf women's health center,3,4,google,2026-03-12 19:39:35.353506,ucsf women's clinic san francisco,ucsf women's center,resource,health +abortion,"(""ucsf women's resource center"", ""ucsf women's hospital"")",ucsf women's resource center,ucsf women's hospital,4,4,google,2026-03-12 19:39:35.353506,ucsf women's clinic san francisco,ucsf women's center,resource,hospital +abortion,"(""ucsf women's options center photos"", ""ucsf women's options center"")",ucsf women's options center photos,ucsf women's options center,1,4,google,2026-03-12 19:39:36.220028,ucsf women's clinic san francisco,ucsf women's center,options photos,options photos +abortion,"(""ucsf women's options center photos"", ""ucsf women's center"")",ucsf women's options center photos,ucsf women's center,2,4,google,2026-03-12 19:39:36.220028,ucsf women's clinic san francisco,ucsf women's center,options photos,options photos +abortion,"(""ucsf women's options center photos"", ""ucsf women's health center"")",ucsf women's options center photos,ucsf women's health center,3,4,google,2026-03-12 19:39:36.220028,ucsf women's clinic san francisco,ucsf women's center,options photos,health +abortion,"(""ucsf women's options center photos"", ""ucsf women's options"")",ucsf women's options center photos,ucsf women's options,4,4,google,2026-03-12 19:39:36.220028,ucsf women's clinic san francisco,ucsf women's center,options photos,options photos +abortion,"(""ucsf women's options center photos"", ""ucsf women's health center san francisco ca"")",ucsf women's options center photos,ucsf women's health center san francisco ca,5,4,google,2026-03-12 19:39:36.220028,ucsf women's clinic san francisco,ucsf women's center,options photos,health san francisco ca +abortion,"(""ucsf women's cancer center"", ""ucsf women's center"")",ucsf women's cancer center,ucsf women's center,1,4,google,2026-03-12 19:39:37.141728,ucsf women's clinic san francisco,ucsf women's center,cancer,cancer +abortion,"(""ucsf women's cancer center"", ""ucsf women's health center"")",ucsf women's cancer center,ucsf women's health center,2,4,google,2026-03-12 19:39:37.141728,ucsf women's clinic san francisco,ucsf women's center,cancer,health +abortion,"(""ucsf women's cancer center"", ""ucsf women's health center san francisco ca"")",ucsf women's cancer center,ucsf women's health center san francisco ca,3,4,google,2026-03-12 19:39:37.141728,ucsf women's clinic san francisco,ucsf women's center,cancer,health san francisco ca +abortion,"(""ucsf women's cancer center"", ""ucsf women's clinic"")",ucsf women's cancer center,ucsf women's clinic,4,4,google,2026-03-12 19:39:37.141728,ucsf women's clinic san francisco,ucsf women's center,cancer,clinic +abortion,"(""ucsf women's cancer center"", ""ucsf women's health clinic"")",ucsf women's cancer center,ucsf women's health clinic,5,4,google,2026-03-12 19:39:37.141728,ucsf women's clinic san francisco,ucsf women's center,cancer,health clinic +abortion,"(""ucsf women's health center mount zion reviews"", ""ucsf women's health center mount zion"")",ucsf women's health center mount zion reviews,ucsf women's health center mount zion,1,4,google,2026-03-12 19:39:38.560259,ucsf women's clinic san francisco,ucsf women's health clinic,center mount zion reviews,center mount zion reviews +abortion,"(""ucsf women's health center mount zion reviews"", ""ucsf mount zion women's health clinic"")",ucsf women's health center mount zion reviews,ucsf mount zion women's health clinic,2,4,google,2026-03-12 19:39:38.560259,ucsf women's clinic san francisco,ucsf women's health clinic,center mount zion reviews,clinic +abortion,"(""ucsf women's health center mount zion reviews"", ""ucsf women's health mt zion"")",ucsf women's health center mount zion reviews,ucsf women's health mt zion,3,4,google,2026-03-12 19:39:38.560259,ucsf women's clinic san francisco,ucsf women's health clinic,center mount zion reviews,mt +abortion,"(""ucsf women's health center mount zion reviews"", 'ucsf mount zion gynecology')",ucsf women's health center mount zion reviews,ucsf mount zion gynecology,4,4,google,2026-03-12 19:39:38.560259,ucsf women's clinic san francisco,ucsf women's health clinic,center mount zion reviews,gynecology +abortion,"(""ucsf women's health center mount zion photos"", ""UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA"")",ucsf women's health center mount zion photos,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA",1,4,google,2026-03-12 19:39:39.417101,ucsf women's clinic san francisco,ucsf women's health clinic,center mount zion photos,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA" +abortion,"(""ucsf women's health center mount zion photos"", ""ucsf women's health center mount zion"")",ucsf women's health center mount zion photos,ucsf women's health center mount zion,2,4,google,2026-03-12 19:39:39.417101,ucsf women's clinic san francisco,ucsf women's health clinic,center mount zion photos,center mount zion photos +abortion,"(""ucsf women's health center mount zion photos"", ""ucsf mount zion women's health clinic"")",ucsf women's health center mount zion photos,ucsf mount zion women's health clinic,3,4,google,2026-03-12 19:39:39.417101,ucsf women's clinic san francisco,ucsf women's health clinic,center mount zion photos,clinic +abortion,"(""ucsf women's health center mount zion photos"", ""ucsf women's health mt zion"")",ucsf women's health center mount zion photos,ucsf women's health mt zion,4,4,google,2026-03-12 19:39:39.417101,ucsf women's clinic san francisco,ucsf women's health clinic,center mount zion photos,mt +abortion,"(""ucsf women's health center mount zion photos"", 'ucsf mount zion gynecology')",ucsf women's health center mount zion photos,ucsf mount zion gynecology,5,4,google,2026-03-12 19:39:39.417101,ucsf women's clinic san francisco,ucsf women's health clinic,center mount zion photos,gynecology +abortion,"(""ucsf women's mental health clinic"", ""ucsf women's health center"")",ucsf women's mental health clinic,ucsf women's health center,1,4,google,2026-03-12 19:39:40.226219,ucsf women's clinic san francisco,ucsf women's health clinic,mental,center +abortion,"(""ucsf women's mental health clinic"", 'ucsf mental health clinic')",ucsf women's mental health clinic,ucsf mental health clinic,2,4,google,2026-03-12 19:39:40.226219,ucsf women's clinic san francisco,ucsf women's health clinic,mental,mental +abortion,"(""ucsf women's mental health clinic"", ""ucsf women's health clinic"")",ucsf women's mental health clinic,ucsf women's health clinic,3,4,google,2026-03-12 19:39:40.226219,ucsf women's clinic san francisco,ucsf women's health clinic,mental,mental +abortion,"(""ucsf women's mental health clinic"", ""ucsf women's center"")",ucsf women's mental health clinic,ucsf women's center,4,4,google,2026-03-12 19:39:40.226219,ucsf women's clinic san francisco,ucsf women's health clinic,mental,center +abortion,"(""ucsf women's mental health clinic"", ""ucsf women's health physical therapy"")",ucsf women's mental health clinic,ucsf women's health physical therapy,5,4,google,2026-03-12 19:39:40.226219,ucsf women's clinic san francisco,ucsf women's health clinic,mental,physical therapy +abortion,"(""ucsf women's health primary care clinic"", ""ucsf women's health primary care center"")",ucsf women's health primary care clinic,ucsf women's health primary care center,1,4,google,2026-03-12 19:39:41.605124,ucsf women's clinic san francisco,ucsf women's health clinic,primary care,center +abortion,"(""ucsf women's health primary care clinic"", ""ucsf women's health primary care"")",ucsf women's health primary care clinic,ucsf women's health primary care,2,4,google,2026-03-12 19:39:41.605124,ucsf women's clinic san francisco,ucsf women's health clinic,primary care,primary care +abortion,"(""ucsf women's health primary care clinic"", ""ucsf women's primary care"")",ucsf women's health primary care clinic,ucsf women's primary care,3,4,google,2026-03-12 19:39:41.605124,ucsf women's clinic san francisco,ucsf women's health clinic,primary care,primary care +abortion,"(""ucsf mount zion women's health clinic"", ""ucsf mt zion women's health center"")",ucsf mount zion women's health clinic,ucsf mt zion women's health center,1,4,google,2026-03-12 19:39:42.454126,ucsf women's clinic san francisco,ucsf women's health clinic,mount zion,mt center +abortion,"(""ucsf mount zion women's health clinic"", ""UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA"")",ucsf mount zion women's health clinic,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA",2,4,google,2026-03-12 19:39:42.454126,ucsf women's clinic san francisco,ucsf women's health clinic,mount zion,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA" +abortion,"(""ucsf mount zion women's health clinic"", ""ucsf women's health center mount zion"")",ucsf mount zion women's health clinic,ucsf women's health center mount zion,3,4,google,2026-03-12 19:39:42.454126,ucsf women's clinic san francisco,ucsf women's health clinic,mount zion,center +abortion,"(""ucsf mount zion women's health clinic"", ""ucsf mt zion women's health"")",ucsf mount zion women's health clinic,ucsf mt zion women's health,4,4,google,2026-03-12 19:39:42.454126,ucsf women's clinic san francisco,ucsf women's health clinic,mount zion,mt +abortion,"(""ucsf mount zion women's health clinic"", 'ucsf mount zion gynecology')",ucsf mount zion women's health clinic,ucsf mount zion gynecology,5,4,google,2026-03-12 19:39:42.454126,ucsf women's clinic san francisco,ucsf women's health clinic,mount zion,gynecology +abortion,"(""ucsf mount zion women's health clinic"", 'ucsf mount zion obgyn')",ucsf mount zion women's health clinic,ucsf mount zion obgyn,6,4,google,2026-03-12 19:39:42.454126,ucsf women's clinic san francisco,ucsf women's health clinic,mount zion,obgyn +abortion,"(""ucsf women's health resource center"", ""ucsf women's health clinical research center"")",ucsf women's health resource center,ucsf women's health clinical research center,1,4,google,2026-03-12 19:39:43.827846,ucsf women's clinic san francisco,ucsf women's health center,resource,clinical research +abortion,"(""ucsf women's health resource center"", ""ucsf women's resource center"")",ucsf women's health resource center,ucsf women's resource center,2,4,google,2026-03-12 19:39:43.827846,ucsf women's clinic san francisco,ucsf women's health center,resource,resource +abortion,"(""ucsf women's health resource center"", ""ucsf women's health center"")",ucsf women's health resource center,ucsf women's health center,3,4,google,2026-03-12 19:39:43.827846,ucsf women's clinic san francisco,ucsf women's health center,resource,resource +abortion,"(""ucsf women's health resource center"", ""ucsf women's health center san francisco ca"")",ucsf women's health resource center,ucsf women's health center san francisco ca,4,4,google,2026-03-12 19:39:43.827846,ucsf women's clinic san francisco,ucsf women's health center,resource,san francisco ca +abortion,"(""ucsf women's health resource center"", ""ucsf women's health mission bay"")",ucsf women's health resource center,ucsf women's health mission bay,5,4,google,2026-03-12 19:39:43.827846,ucsf women's clinic san francisco,ucsf women's health center,resource,mission bay +abortion,"(""ucsf women's health primary care center"", ""ucsf women's health primary care clinic"")",ucsf women's health primary care center,ucsf women's health primary care clinic,1,4,google,2026-03-12 19:39:44.931950,ucsf women's clinic san francisco,ucsf women's health center,primary care,clinic +abortion,"(""ucsf women's health primary care center"", ""ucsf women's health primary care"")",ucsf women's health primary care center,ucsf women's health primary care,2,4,google,2026-03-12 19:39:44.931950,ucsf women's clinic san francisco,ucsf women's health center,primary care,primary care +abortion,"(""ucsf women's health primary care center"", ""ucsf women's primary care"")",ucsf women's health primary care center,ucsf women's primary care,3,4,google,2026-03-12 19:39:44.931950,ucsf women's clinic san francisco,ucsf women's health center,primary care,primary care +abortion,"(""ucsf women's health primary care"", ""ucsf women's health primary care clinic"")",ucsf women's health primary care,ucsf women's health primary care clinic,1,4,google,2026-03-12 19:39:46.021016,ucsf women's clinic san francisco,ucsf women's health center,primary care,clinic +abortion,"(""ucsf women's health primary care"", ""ucsf women's health primary care center"")",ucsf women's health primary care,ucsf women's health primary care center,2,4,google,2026-03-12 19:39:46.021016,ucsf women's clinic san francisco,ucsf women's health center,primary care,center +abortion,"(""ucsf women's health primary care"", ""UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA"")",ucsf women's health primary care,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA",3,4,google,2026-03-12 19:39:46.021016,ucsf women's clinic san francisco,ucsf women's health center,primary care,"UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA" +abortion,"(""ucsf women's health primary care"", ""ucsf women's primary care"")",ucsf women's health primary care,ucsf women's primary care,4,4,google,2026-03-12 19:39:46.021016,ucsf women's clinic san francisco,ucsf women's health center,primary care,primary care +abortion,"(""women's options center san francisco ca"", ""women's options center san francisco general hospital campus"")",women's options center san francisco ca,women's options center san francisco general hospital campus,1,4,google,2026-03-12 19:39:47.473102,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',options center ca,general hospital campus +abortion,"(""women's options center san francisco ca"", ""Women's Options Center At San Francisco General Hospital, Potrero Avenue, San Francisco, CA"")",women's options center san francisco ca,"Women's Options Center At San Francisco General Hospital, Potrero Avenue, San Francisco, CA",2,4,google,2026-03-12 19:39:47.473102,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',options center ca,"Women's Options Center At San Francisco General Hospital, Potrero Avenue, San Francisco, CA" +abortion,"(""women's options center san francisco ca"", 'UCSF Center for Pregnancy Options, Sutter Street, San Francisco, California')",women's options center san francisco ca,"UCSF Center for Pregnancy Options, Sutter Street, San Francisco, California",3,4,google,2026-03-12 19:39:47.473102,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',options center ca,"UCSF Center for Pregnancy Options, Sutter Street, San Francisco, California" +abortion,"(""women's options center san francisco ca"", ""women's options center at san francisco general hospital"")",women's options center san francisco ca,women's options center at san francisco general hospital,4,4,google,2026-03-12 19:39:47.473102,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',options center ca,at general hospital +abortion,"(""women's options center san francisco ca"", ""women's option center san francisco"")",women's options center san francisco ca,women's option center san francisco,5,4,google,2026-03-12 19:39:47.473102,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',options center ca,option +abortion,"(""women's options center san francisco ca"", ""women's options center ucsf"")",women's options center san francisco ca,women's options center ucsf,6,4,google,2026-03-12 19:39:47.473102,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',options center ca,ucsf +abortion,"(""women's options center san francisco ca"", ""women's center san francisco"")",women's options center san francisco ca,women's center san francisco,7,4,google,2026-03-12 19:39:47.473102,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',options center ca,options center ca +abortion,"(""women's options center at san francisco general hospital"", ""women's options center at san francisco general hospital reviews"")",women's options center at san francisco general hospital,women's options center at san francisco general hospital reviews,1,4,google,2026-03-12 19:39:48.976426,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',options center at general hospital,reviews +abortion,"(""women's options center at san francisco general hospital"", ""Women's Options Center At San Francisco General Hospital, Potrero Avenue, San Francisco, CA"")",women's options center at san francisco general hospital,"Women's Options Center At San Francisco General Hospital, Potrero Avenue, San Francisco, CA",2,4,google,2026-03-12 19:39:48.976426,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',options center at general hospital,"Women's Options Center At San Francisco General Hospital, Potrero Avenue, San Francisco, CA" +abortion,"(""women's options center at san francisco general hospital"", ""women's options center san francisco ca"")",women's options center at san francisco general hospital,women's options center san francisco ca,3,4,google,2026-03-12 19:39:48.976426,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',options center at general hospital,ca +abortion,"(""women's options center at san francisco general hospital"", ""san francisco general women's options center"")",women's options center at san francisco general hospital,san francisco general women's options center,4,4,google,2026-03-12 19:39:48.976426,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',options center at general hospital,options center at general hospital +abortion,"(""women's options center at san francisco general hospital"", ""women's option center san francisco"")",women's options center at san francisco general hospital,women's option center san francisco,5,4,google,2026-03-12 19:39:48.976426,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',options center at general hospital,option +abortion,"(""women's options center at san francisco general hospital"", ""sf general women's options center"")",women's options center at san francisco general hospital,sf general women's options center,6,4,google,2026-03-12 19:39:48.976426,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',options center at general hospital,sf +abortion,"(""women's center san francisco"", ""women's clinic san francisco"")",women's center san francisco,women's clinic san francisco,1,4,google,2026-03-12 19:39:50.331457,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',center,clinic +abortion,"(""women's center san francisco"", ""women's health center san francisco"")",women's center san francisco,women's health center san francisco,2,4,google,2026-03-12 19:39:50.331457,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',center,health +abortion,"(""women's center san francisco"", ""women's resource center san francisco"")",women's center san francisco,women's resource center san francisco,3,4,google,2026-03-12 19:39:50.331457,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',center,resource +abortion,"(""women's center san francisco"", ""women's option center san francisco"")",women's center san francisco,women's option center san francisco,4,4,google,2026-03-12 19:39:50.331457,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',center,option +abortion,"(""women's center san francisco"", ""women's center south san francisco"")",women's center san francisco,women's center south san francisco,5,4,google,2026-03-12 19:39:50.331457,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',center,south +abortion,"(""women's center san francisco"", 'women resource center san francisco photos')",women's center san francisco,women resource center san francisco photos,6,4,google,2026-03-12 19:39:50.331457,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',center,women resource photos +abortion,"(""women's center san francisco"", ""women's business center san francisco"")",women's center san francisco,women's business center san francisco,7,4,google,2026-03-12 19:39:50.331457,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',center,business +abortion,"(""women's center san francisco"", ""women's options center san francisco general hospital campus"")",women's center san francisco,women's options center san francisco general hospital campus,8,4,google,2026-03-12 19:39:50.331457,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',center,options general hospital campus +abortion,"(""women's center san francisco"", 'women resource center san francisco reviews')",women's center san francisco,women resource center san francisco reviews,9,4,google,2026-03-12 19:39:50.331457,va women's clinic san francisco,women's clinic equity boost san francisco va medical center',center,women resource reviews +abortion,"(""va women's center near me"", ""va women's clinic near me"")",va women's center near me,va women's clinic near me,1,4,google,2026-03-12 19:39:51.817433,va women's clinic san francisco,va women's clinic near me,center,clinic +abortion,"(""va women's center near me"", ""virginia women's center near mechanicsville va"")",va women's center near me,virginia women's center near mechanicsville va,2,4,google,2026-03-12 19:39:51.817433,va women's clinic san francisco,va women's clinic near me,center,virginia mechanicsville +abortion,"(""va women's center near me"", ""va women's center mechanicsville"")",va women's center near me,va women's center mechanicsville,3,4,google,2026-03-12 19:39:51.817433,va women's clinic san francisco,va women's clinic near me,center,mechanicsville +abortion,"(""va women's center near me"", ""va women's center mech"")",va women's center near me,va women's center mech,4,4,google,2026-03-12 19:39:51.817433,va women's clinic san francisco,va women's clinic near me,center,mech +abortion,"(""va women's center near me"", ""virginia women's center mechanicsville reviews"")",va women's center near me,virginia women's center mechanicsville reviews,5,4,google,2026-03-12 19:39:51.817433,va women's clinic san francisco,va women's clinic near me,center,virginia mechanicsville reviews +abortion,"(""va women's center near me"", ""virginia women's center mechanicsville photos"")",va women's center near me,virginia women's center mechanicsville photos,6,4,google,2026-03-12 19:39:51.817433,va women's clinic san francisco,va women's clinic near me,center,virginia mechanicsville photos +abortion,"(""va women's center near me"", ""virginia women's center mechanicsville doctors"")",va women's center near me,virginia women's center mechanicsville doctors,7,4,google,2026-03-12 19:39:51.817433,va women's clinic san francisco,va women's clinic near me,center,virginia mechanicsville doctors +abortion,"(""va women's center near me"", ""virginia women's center medical records"")",va women's center near me,virginia women's center medical records,8,4,google,2026-03-12 19:39:51.817433,va women's clinic san francisco,va women's clinic near me,center,virginia medical records +abortion,"(""va women's center near me"", ""virginia women's center medical records fax number"")",va women's center near me,virginia women's center medical records fax number,9,4,google,2026-03-12 19:39:51.817433,va women's clinic san francisco,va women's clinic near me,center,virginia medical records fax number +abortion,"(""virginia women's center near mechanicsville va"", ""virginia women's center mechanicsville va united states"")",virginia women's center near mechanicsville va,virginia women's center mechanicsville va united states,1,4,google,2026-03-12 19:39:53.263647,va women's clinic san francisco,va women's clinic near me,virginia center mechanicsville,united states +abortion,"(""virginia women's center near mechanicsville va"", ""virginia women's center locations"")",virginia women's center near mechanicsville va,virginia women's center locations,2,4,google,2026-03-12 19:39:53.263647,va women's clinic san francisco,va women's clinic near me,virginia center mechanicsville,locations +abortion,"(""virginia women's center near mechanicsville va"", 'closest part of virginia to me')",virginia women's center near mechanicsville va,closest part of virginia to me,3,4,google,2026-03-12 19:39:53.263647,va women's clinic san francisco,va women's clinic near me,virginia center mechanicsville,closest part of to me +abortion,"(""virginia women's center near mechanicsville va"", 'virginia workforce center near me')",virginia women's center near mechanicsville va,virginia workforce center near me,4,4,google,2026-03-12 19:39:53.263647,va women's clinic san francisco,va women's clinic near me,virginia center mechanicsville,workforce me +abortion,"(""virginia women's center near mechanicsville va"", ""virginia women's center mechanicsville virginia"")",virginia women's center near mechanicsville va,virginia women's center mechanicsville virginia,5,4,google,2026-03-12 19:39:53.263647,va women's clinic san francisco,va women's clinic near me,virginia center mechanicsville,virginia center mechanicsville +abortion,"(""virginia women's center near mechanicsville va"", ""virginia women's center mechanicsville doctors"")",virginia women's center near mechanicsville va,virginia women's center mechanicsville doctors,6,4,google,2026-03-12 19:39:53.263647,va women's clinic san francisco,va women's clinic near me,virginia center mechanicsville,doctors +abortion,"(""virginia women's center near mechanicsville va"", ""virginia women's center mechanicsville"")",virginia women's center near mechanicsville va,virginia women's center mechanicsville,7,4,google,2026-03-12 19:39:53.263647,va women's clinic san francisco,va women's clinic near me,virginia center mechanicsville,virginia center mechanicsville +abortion,"(""va women's clinic memphis tn"", ""va women's clinic near me"")",va women's clinic memphis tn,va women's clinic near me,1,4,google,2026-03-12 19:39:54.412700,va women's clinic san francisco,va women's clinic near me,memphis tn,near me +abortion,"(""va women's clinic memphis tn"", ""va women's clinic phone number"")",va women's clinic memphis tn,va women's clinic phone number,2,4,google,2026-03-12 19:39:54.412700,va women's clinic san francisco,va women's clinic near me,memphis tn,phone number +abortion,"(""va women's clinic memphis tn"", ""va women's clinic murfreesboro tn"")",va women's clinic memphis tn,va women's clinic murfreesboro tn,3,4,google,2026-03-12 19:39:54.412700,va women's clinic san francisco,va women's clinic near me,memphis tn,murfreesboro +abortion,"(""va women's clinic memphis tn"", ""va women's clinic nashville"")",va women's clinic memphis tn,va women's clinic nashville,4,4,google,2026-03-12 19:39:54.412700,va women's clinic san francisco,va women's clinic near me,memphis tn,nashville +abortion,"(""va women's clinic memphis tn"", ""memphis va women's clinic"")",va women's clinic memphis tn,memphis va women's clinic,5,4,google,2026-03-12 19:39:54.412700,va women's clinic san francisco,va women's clinic near me,memphis tn,memphis tn +abortion,"(""va women's clinic memphis tn"", ""va women's clinic nashville tn"")",va women's clinic memphis tn,va women's clinic nashville tn,6,4,google,2026-03-12 19:39:54.412700,va women's clinic san francisco,va women's clinic near me,memphis tn,nashville +abortion,"(""virginia women's clinic mechanicsville"", ""virginia women's health center mechanicsville"")",virginia women's clinic mechanicsville,virginia women's health center mechanicsville,1,4,google,2026-03-12 19:39:55.278993,va women's clinic san francisco,va women's clinic near me,virginia mechanicsville,health center +abortion,"(""virginia women's clinic mechanicsville"", ""virginia women's center mechanicsville doctors"")",virginia women's clinic mechanicsville,virginia women's center mechanicsville doctors,2,4,google,2026-03-12 19:39:55.278993,va women's clinic san francisco,va women's clinic near me,virginia mechanicsville,center doctors +abortion,"(""virginia women's clinic mechanicsville"", ""virginia women's center mechanicsville virginia"")",virginia women's clinic mechanicsville,virginia women's center mechanicsville virginia,3,4,google,2026-03-12 19:39:55.278993,va women's clinic san francisco,va women's clinic near me,virginia mechanicsville,center +abortion,"(""virginia women's clinic mechanicsville"", ""virginia women's center mechanicsville va"")",virginia women's clinic mechanicsville,virginia women's center mechanicsville va,4,4,google,2026-03-12 19:39:55.278993,va women's clinic san francisco,va women's clinic near me,virginia mechanicsville,center va +abortion,"(""virginia women's clinic mechanicsville"", ""virginia women's center mechanicsville"")",virginia women's clinic mechanicsville,virginia women's center mechanicsville,5,4,google,2026-03-12 19:39:55.278993,va women's clinic san francisco,va women's clinic near me,virginia mechanicsville,center +abortion,"(""virginia women's clinic mechanicsville"", ""virginia women's center mechanicsville va united states"")",virginia women's clinic mechanicsville,virginia women's center mechanicsville va united states,6,4,google,2026-03-12 19:39:55.278993,va women's clinic san francisco,va women's clinic near me,virginia mechanicsville,center va united states +abortion,"('va medical clinic near me', 'va outpatient clinic near me')",va medical clinic near me,va outpatient clinic near me,1,4,google,2026-03-12 19:39:56.411323,va women's clinic san francisco,va women's clinic near me,medical,outpatient +abortion,"('va medical clinic near me', 'va walk in clinic near me')",va medical clinic near me,va walk in clinic near me,2,4,google,2026-03-12 19:39:56.411323,va women's clinic san francisco,va women's clinic near me,medical,walk in +abortion,"('va medical clinic near me', 'va health clinic near me')",va medical clinic near me,va health clinic near me,3,4,google,2026-03-12 19:39:56.411323,va women's clinic san francisco,va women's clinic near me,medical,health +abortion,"('va medical clinic near me', 'va medical facility near me')",va medical clinic near me,va medical facility near me,4,4,google,2026-03-12 19:39:56.411323,va women's clinic san francisco,va women's clinic near me,medical,facility +abortion,"('va medical clinic near me', 'va hospital clinic near me')",va medical clinic near me,va hospital clinic near me,5,4,google,2026-03-12 19:39:56.411323,va women's clinic san francisco,va women's clinic near me,medical,hospital +abortion,"('va medical clinic near me', 'va walk in clinic near me open now')",va medical clinic near me,va walk in clinic near me open now,6,4,google,2026-03-12 19:39:56.411323,va women's clinic san francisco,va women's clinic near me,medical,walk in open now +abortion,"('va medical clinic near me', 'veterans affairs outpatient clinic near me')",va medical clinic near me,veterans affairs outpatient clinic near me,7,4,google,2026-03-12 19:39:56.411323,va women's clinic san francisco,va women's clinic near me,medical,veterans affairs outpatient +abortion,"('va medical clinic near me', 'va hospital urgent care near me')",va medical clinic near me,va hospital urgent care near me,8,4,google,2026-03-12 19:39:56.411323,va women's clinic san francisco,va women's clinic near me,medical,hospital urgent care +abortion,"('va medical clinic near me', 'va health urgent care near me')",va medical clinic near me,va health urgent care near me,9,4,google,2026-03-12 19:39:56.411323,va women's clinic san francisco,va women's clinic near me,medical,health urgent care +abortion,"('va walk-in clinic near me', 'va walk in clinic near me open now')",va walk-in clinic near me,va walk in clinic near me open now,1,4,google,2026-03-12 19:39:57.455905,va women's clinic san francisco,va women's clinic near me,walk-in,walk in open now +abortion,"('va walk-in clinic near me', 'veterans walk in clinic near me')",va walk-in clinic near me,veterans walk in clinic near me,2,4,google,2026-03-12 19:39:57.455905,va women's clinic san francisco,va women's clinic near me,walk-in,veterans walk in +abortion,"('va walk-in clinic near me', 'va walk in clinic hours near me')",va walk-in clinic near me,va walk in clinic hours near me,3,4,google,2026-03-12 19:39:57.455905,va women's clinic san francisco,va women's clinic near me,walk-in,walk in hours +abortion,"('va walk-in clinic near me', 'virginia mason walk in clinic near me')",va walk-in clinic near me,virginia mason walk in clinic near me,4,4,google,2026-03-12 19:39:57.455905,va women's clinic san francisco,va women's clinic near me,walk-in,virginia mason walk in +abortion,"('va walk-in clinic near me', 'va approved walk in clinics near me')",va walk-in clinic near me,va approved walk in clinics near me,5,4,google,2026-03-12 19:39:57.455905,va women's clinic san francisco,va women's clinic near me,walk-in,approved walk in clinics +abortion,"('va walk-in clinic near me', 'va audiology walk in clinic hours near me')",va walk-in clinic near me,va audiology walk in clinic hours near me,6,4,google,2026-03-12 19:39:57.455905,va women's clinic san francisco,va women's clinic near me,walk-in,audiology walk in hours +abortion,"('va walk-in clinic near me', 'is there a va walk in clinic near me')",va walk-in clinic near me,is there a va walk in clinic near me,7,4,google,2026-03-12 19:39:57.455905,va women's clinic san francisco,va women's clinic near me,walk-in,is there a walk in +abortion,"('va walk-in clinic near me', 'va walk in clinic mental health')",va walk-in clinic near me,va walk in clinic mental health,8,4,google,2026-03-12 19:39:57.455905,va women's clinic san francisco,va women's clinic near me,walk-in,walk in mental health +abortion,"('va walk-in clinic near me', 'does the va have a walk in clinic')",va walk-in clinic near me,does the va have a walk in clinic,9,4,google,2026-03-12 19:39:57.455905,va women's clinic san francisco,va women's clinic near me,walk-in,does the have a walk in +abortion,"(""va women's clinic phone number"", ""temple va women's clinic phone number"")",va women's clinic phone number,temple va women's clinic phone number,1,4,google,2026-03-12 19:39:58.539593,va women's clinic san francisco,va women's clinic near me,phone number,temple +abortion,"(""va women's clinic phone number"", ""dayton va women's clinic phone number"")",va women's clinic phone number,dayton va women's clinic phone number,2,4,google,2026-03-12 19:39:58.539593,va women's clinic san francisco,va women's clinic near me,phone number,dayton +abortion,"(""va women's clinic phone number"", ""va women's health clinic phone number"")",va women's clinic phone number,va women's health clinic phone number,3,4,google,2026-03-12 19:39:58.539593,va women's clinic san francisco,va women's clinic near me,phone number,health +abortion,"(""va women's clinic phone number"", ""birmingham va women's clinic phone number"")",va women's clinic phone number,birmingham va women's clinic phone number,4,4,google,2026-03-12 19:39:58.539593,va women's clinic san francisco,va women's clinic near me,phone number,birmingham +abortion,"(""va women's clinic phone number"", ""miami va women's clinic phone number"")",va women's clinic phone number,miami va women's clinic phone number,5,4,google,2026-03-12 19:39:58.539593,va women's clinic san francisco,va women's clinic near me,phone number,miami +abortion,"(""va women's clinic phone number"", ""va loma linda women's clinic phone number"")",va women's clinic phone number,va loma linda women's clinic phone number,6,4,google,2026-03-12 19:39:58.539593,va women's clinic san francisco,va women's clinic near me,phone number,loma linda +abortion,"(""va women's clinic phone number"", ""va women's clinic near me"")",va women's clinic phone number,va women's clinic near me,7,4,google,2026-03-12 19:39:58.539593,va women's clinic san francisco,va women's clinic near me,phone number,near me +abortion,"(""va women's clinic phone number"", ""va women's center phone number"")",va women's clinic phone number,va women's center phone number,8,4,google,2026-03-12 19:39:58.539593,va women's clinic san francisco,va women's clinic near me,phone number,center +abortion,"(""va women's clinic phone number"", ""va women's center fax number"")",va women's clinic phone number,va women's center fax number,9,4,google,2026-03-12 19:39:58.539593,va women's clinic san francisco,va women's clinic near me,phone number,center fax +abortion,"('va approved doctors near me', 'va doctors near me')",va approved doctors near me,va doctors near me,1,4,google,2026-03-12 19:39:59.909396,va women's clinic san francisco,va approved clinics near me,doctors,doctors +abortion,"('va approved doctors near me', 'virginia doctors near me')",va approved doctors near me,virginia doctors near me,2,4,google,2026-03-12 19:39:59.909396,va women's clinic san francisco,va approved clinics near me,doctors,virginia +abortion,"('va approved doctors near me', 'va approved clinics near me')",va approved doctors near me,va approved clinics near me,3,4,google,2026-03-12 19:39:59.909396,va women's clinic san francisco,va approved clinics near me,doctors,clinics +abortion,"('va approved doctors near me', 'va medical clinic near me')",va approved doctors near me,va medical clinic near me,4,4,google,2026-03-12 19:39:59.909396,va women's clinic san francisco,va approved clinics near me,doctors,medical clinic +abortion,"('va approved doctors near me', 'find a va doctor near me')",va approved doctors near me,find a va doctor near me,5,4,google,2026-03-12 19:39:59.909396,va women's clinic san francisco,va approved clinics near me,doctors,find a doctor +abortion,"('va approved doctors near me', 'va approved dermatologist near me')",va approved doctors near me,va approved dermatologist near me,6,4,google,2026-03-12 19:39:59.909396,va women's clinic san francisco,va approved clinics near me,doctors,dermatologist +abortion,"('va clinics near me', 'va clinics near me within 20 mi')",va clinics near me,va clinics near me within 20 mi,1,4,google,2026-03-12 19:40:00.835739,va women's clinic san francisco,va approved clinics near me,approved clinics near me,within 20 mi +abortion,"('va clinics near me', 'va clinic near me now')",va clinics near me,va clinic near me now,2,4,google,2026-03-12 19:40:00.835739,va women's clinic san francisco,va approved clinics near me,approved clinics near me,clinic now +abortion,"('va clinics near me', 'veteran clinics near me')",va clinics near me,veteran clinics near me,3,4,google,2026-03-12 19:40:00.835739,va women's clinic san francisco,va approved clinics near me,approved clinics near me,veteran +abortion,"('va clinics near me', 'va clinic near me location')",va clinics near me,va clinic near me location,4,4,google,2026-03-12 19:40:00.835739,va women's clinic san francisco,va approved clinics near me,approved clinics near me,clinic location +abortion,"('va clinics near me', 'va clinic near me jobs')",va clinics near me,va clinic near me jobs,5,4,google,2026-03-12 19:40:00.835739,va women's clinic san francisco,va approved clinics near me,approved clinics near me,clinic jobs +abortion,"('va clinics near me', 'va clinic near me walk in')",va clinics near me,va clinic near me walk in,6,4,google,2026-03-12 19:40:00.835739,va women's clinic san francisco,va approved clinics near me,approved clinics near me,clinic walk in +abortion,"('va clinics near me', 'va clinic nearest me')",va clinics near me,va clinic nearest me,7,4,google,2026-03-12 19:40:00.835739,va women's clinic san francisco,va approved clinics near me,approved clinics near me,clinic nearest +abortion,"('va clinics near me', 'va hospital near me')",va clinics near me,va hospital near me,8,4,google,2026-03-12 19:40:00.835739,va women's clinic san francisco,va approved clinics near me,approved clinics near me,hospital +abortion,"('va clinics near me', 'va medical center near me')",va clinics near me,va medical center near me,9,4,google,2026-03-12 19:40:00.835739,va women's clinic san francisco,va approved clinics near me,approved clinics near me,medical center +abortion,"('va clinic near me walk in', 'va walk in clinic near me open now')",va clinic near me walk in,va walk in clinic near me open now,1,4,google,2026-03-12 19:40:01.879548,va women's clinic san francisco,va approved clinics near me,clinic walk in,open now +abortion,"('va clinic near me walk in', 'va walk in clinic hours near me')",va clinic near me walk in,va walk in clinic hours near me,2,4,google,2026-03-12 19:40:01.879548,va women's clinic san francisco,va approved clinics near me,clinic walk in,hours +abortion,"('va clinic near me walk in', 'va audiology walk in clinic hours near me')",va clinic near me walk in,va audiology walk in clinic hours near me,3,4,google,2026-03-12 19:40:01.879548,va women's clinic san francisco,va approved clinics near me,clinic walk in,audiology hours +abortion,"('va clinic near me walk in', 'does the va have a walk in clinic')",va clinic near me walk in,does the va have a walk in clinic,4,4,google,2026-03-12 19:40:01.879548,va women's clinic san francisco,va approved clinics near me,clinic walk in,does the have a +abortion,"('va clinic near me walk in', 'does the va clinic take walk ins')",va clinic near me walk in,does the va clinic take walk ins,5,4,google,2026-03-12 19:40:01.879548,va women's clinic san francisco,va approved clinics near me,clinic walk in,does the take ins +abortion,"('va clinic near me walk in', 'does the va cover walk in clinics')",va clinic near me walk in,does the va cover walk in clinics,6,4,google,2026-03-12 19:40:01.879548,va women's clinic san francisco,va approved clinics near me,clinic walk in,does the cover clinics +abortion,"('va clinic near me walk in', 'va clinic near me')",va clinic near me walk in,va clinic near me,7,4,google,2026-03-12 19:40:01.879548,va women's clinic san francisco,va approved clinics near me,clinic walk in,clinic walk in +abortion,"('va clinic near me walk in', 'va clinic walk ins')",va clinic near me walk in,va clinic walk ins,8,4,google,2026-03-12 19:40:01.879548,va women's clinic san francisco,va approved clinics near me,clinic walk in,ins +abortion,"('va clinic nearest me', 'va clinic palo alto')",va clinic nearest me,va clinic palo alto,1,4,google,2026-03-12 19:40:02.724913,va women's clinic san francisco,va approved clinics near me,clinic nearest,palo alto +abortion,"('va clinic nearest me', 'va clinic san francisco')",va clinic nearest me,va clinic san francisco,2,4,google,2026-03-12 19:40:02.724913,va women's clinic san francisco,va approved clinics near me,clinic nearest,san francisco +abortion,"('va clinic nearest me', 'va hospital nearest me')",va clinic nearest me,va hospital nearest me,3,4,google,2026-03-12 19:40:02.724913,va women's clinic san francisco,va approved clinics near me,clinic nearest,hospital +abortion,"('va clinic nearest me', 'va clinic around me')",va clinic nearest me,va clinic around me,4,4,google,2026-03-12 19:40:02.724913,va women's clinic san francisco,va approved clinics near me,clinic nearest,around +abortion,"('va clinic nearest me', 'va medical center nearest me')",va clinic nearest me,va medical center nearest me,5,4,google,2026-03-12 19:40:02.724913,va women's clinic san francisco,va approved clinics near me,clinic nearest,medical center +abortion,"('va clinic nearest me', 'va clinic near me')",va clinic nearest me,va clinic near me,6,4,google,2026-03-12 19:40:02.724913,va women's clinic san francisco,va approved clinics near me,clinic nearest,near +abortion,"('va clinic nearest me', 'va clinic near me now')",va clinic nearest me,va clinic near me now,7,4,google,2026-03-12 19:40:02.724913,va women's clinic san francisco,va approved clinics near me,clinic nearest,near now +abortion,"('va clinic nearest me', 'va clinic near me open now')",va clinic nearest me,va clinic near me open now,8,4,google,2026-03-12 19:40:02.724913,va women's clinic san francisco,va approved clinics near me,clinic nearest,near open now +abortion,"('va clinic nearest me', 'va clinic near me within 20 mi')",va clinic nearest me,va clinic near me within 20 mi,9,4,google,2026-03-12 19:40:02.724913,va women's clinic san francisco,va approved clinics near me,clinic nearest,near within 20 mi +abortion,"('va approved urgent care clinics near me', 'va urgent care clinics near me')",va approved urgent care clinics near me,va urgent care clinics near me,1,4,google,2026-03-12 19:40:04.108677,va women's clinic san francisco,va approved clinics near me,urgent care,urgent care +abortion,"('va approved urgent care clinics near me', 'va urgent care centers near me')",va approved urgent care clinics near me,va urgent care centers near me,2,4,google,2026-03-12 19:40:04.108677,va women's clinic san francisco,va approved clinics near me,urgent care,centers +abortion,"('va approved urgent care clinics near me', 'va approved walk in clinics near me')",va approved urgent care clinics near me,va approved walk in clinics near me,3,4,google,2026-03-12 19:40:04.108677,va women's clinic san francisco,va approved clinics near me,urgent care,walk in +abortion,"('va approved urgent care clinics near me', 'va urgent cares near me')",va approved urgent care clinics near me,va urgent cares near me,4,4,google,2026-03-12 19:40:04.108677,va women's clinic san francisco,va approved clinics near me,urgent care,cares +abortion,"('va approved urgent care clinics near me', 'va approved urgent care locations')",va approved urgent care clinics near me,va approved urgent care locations,5,4,google,2026-03-12 19:40:04.108677,va women's clinic san francisco,va approved clinics near me,urgent care,locations +abortion,"('va approved urgent care clinics near me', 'does the va have urgent care')",va approved urgent care clinics near me,does the va have urgent care,6,4,google,2026-03-12 19:40:04.108677,va women's clinic san francisco,va approved clinics near me,urgent care,does the have +abortion,"('va approved urgent care clinics near me', 'va approved urgent care near me')",va approved urgent care clinics near me,va approved urgent care near me,7,4,google,2026-03-12 19:40:04.108677,va women's clinic san francisco,va approved clinics near me,urgent care,urgent care +abortion,"('va approved urgent care clinics near me', 'va approved urgent care centers')",va approved urgent care clinics near me,va approved urgent care centers,8,4,google,2026-03-12 19:40:04.108677,va women's clinic san francisco,va approved clinics near me,urgent care,centers +abortion,"('va approved urgent care near me', 'va approved urgent care near me within 5 mi')",va approved urgent care near me,va approved urgent care near me within 5 mi,1,4,google,2026-03-12 19:40:04.966777,va women's clinic san francisco,va approved clinics near me,urgent care,within 5 mi +abortion,"('va approved urgent care near me', 'va approved urgent care near me open now')",va approved urgent care near me,va approved urgent care near me open now,2,4,google,2026-03-12 19:40:04.966777,va women's clinic san francisco,va approved clinics near me,urgent care,open now +abortion,"('va approved urgent care near me', 'va authorized urgent care near me')",va approved urgent care near me,va authorized urgent care near me,3,4,google,2026-03-12 19:40:04.966777,va women's clinic san francisco,va approved clinics near me,urgent care,authorized +abortion,"('va approved urgent care near me', 'va accepted urgent care near me')",va approved urgent care near me,va accepted urgent care near me,4,4,google,2026-03-12 19:40:04.966777,va women's clinic san francisco,va approved clinics near me,urgent care,accepted +abortion,"('va approved urgent care near me', 'va urgent care near me')",va approved urgent care near me,va urgent care near me,5,4,google,2026-03-12 19:40:04.966777,va women's clinic san francisco,va approved clinics near me,urgent care,urgent care +abortion,"('va approved urgent care near me', 'va urgent care near me open now')",va approved urgent care near me,va urgent care near me open now,6,4,google,2026-03-12 19:40:04.966777,va women's clinic san francisco,va approved clinics near me,urgent care,open now +abortion,"('va approved urgent care near me', 'veterans affairs urgent care near me')",va approved urgent care near me,veterans affairs urgent care near me,7,4,google,2026-03-12 19:40:04.966777,va women's clinic san francisco,va approved clinics near me,urgent care,veterans affairs +abortion,"('va approved urgent care near me', 'va covered urgent care near me')",va approved urgent care near me,va covered urgent care near me,8,4,google,2026-03-12 19:40:04.966777,va women's clinic san francisco,va approved clinics near me,urgent care,covered +abortion,"('va approved urgent care near me', 'va hospital urgent care near me')",va approved urgent care near me,va hospital urgent care near me,9,4,google,2026-03-12 19:40:04.966777,va women's clinic san francisco,va approved clinics near me,urgent care,hospital +abortion,"('va-approved urgent care locator', 'va authorized urgent care locations')",va-approved urgent care locator,va authorized urgent care locations,1,4,google,2026-03-12 19:40:06.358076,va women's clinic san francisco,va approved clinics near me,va-approved urgent care locator,va authorized locations +abortion,"('va-approved urgent care locator', 'va urgent care locator')",va-approved urgent care locator,va urgent care locator,2,4,google,2026-03-12 19:40:06.358076,va women's clinic san francisco,va approved clinics near me,va-approved urgent care locator,va +abortion,"('va-approved urgent care locator', 'va urgent care locator triwest')",va-approved urgent care locator,va urgent care locator triwest,3,4,google,2026-03-12 19:40:06.358076,va women's clinic san francisco,va approved clinics near me,va-approved urgent care locator,va triwest +abortion,"('va-approved urgent care locator', 'va urgent care locator tool')",va-approved urgent care locator,va urgent care locator tool,4,4,google,2026-03-12 19:40:06.358076,va women's clinic san francisco,va approved clinics near me,va-approved urgent care locator,va tool +abortion,"('va-approved urgent care locator', 'va urgent care locator open now')",va-approved urgent care locator,va urgent care locator open now,5,4,google,2026-03-12 19:40:06.358076,va women's clinic san francisco,va approved clinics near me,va-approved urgent care locator,va open now +abortion,"('va-approved urgent care locator', 'veterans affairs urgent care locator')",va-approved urgent care locator,veterans affairs urgent care locator,6,4,google,2026-03-12 19:40:06.358076,va women's clinic san francisco,va approved clinics near me,va-approved urgent care locator,veterans affairs +abortion,"('va-approved urgent care locator', 'va approved urgent care near me')",va-approved urgent care locator,va approved urgent care near me,7,4,google,2026-03-12 19:40:06.358076,va women's clinic san francisco,va approved clinics near me,va-approved urgent care locator,va approved near me +abortion,"('va-approved urgent care locator', 'va approved urgent care clinics near me')",va-approved urgent care locator,va approved urgent care clinics near me,8,4,google,2026-03-12 19:40:06.358076,va women's clinic san francisco,va approved clinics near me,va-approved urgent care locator,va approved clinics near me +abortion,"('veterans doctors office near me', 'veterans medical office near me')",veterans doctors office near me,veterans medical office near me,1,4,google,2026-03-12 19:40:07.351917,va women's clinic san francisco,va doctors office near me,veterans,medical +abortion,"('veterans doctors office near me', 'doctors office closed on veterans day near me')",veterans doctors office near me,doctors office closed on veterans day near me,2,4,google,2026-03-12 19:40:07.351917,va women's clinic san francisco,va doctors office near me,veterans,closed on day +abortion,"('veterans doctors office near me', 'doctors office open on veterans day near me')",veterans doctors office near me,doctors office open on veterans day near me,3,4,google,2026-03-12 19:40:07.351917,va women's clinic san francisco,va doctors office near me,veterans,open on day +abortion,"('veterans doctors office near me', 'va doctors office near me')",veterans doctors office near me,va doctors office near me,4,4,google,2026-03-12 19:40:07.351917,va women's clinic san francisco,va doctors office near me,veterans,va +abortion,"('veterans doctors office near me', 'find a va doctor near me')",veterans doctors office near me,find a va doctor near me,5,4,google,2026-03-12 19:40:07.351917,va women's clinic san francisco,va doctors office near me,veterans,find a va doctor +abortion,"('veterans doctors office near me', 'veterans doctors near me')",veterans doctors office near me,veterans doctors near me,6,4,google,2026-03-12 19:40:07.351917,va women's clinic san francisco,va doctors office near me,veterans,veterans +abortion,"('va medical office near me', 'va medical center near me')",va medical office near me,va medical center near me,1,4,google,2026-03-12 19:40:08.260130,va women's clinic san francisco,va doctors office near me,medical,center +abortion,"('va medical office near me', 'va medical clinic near me')",va medical office near me,va medical clinic near me,2,4,google,2026-03-12 19:40:08.260130,va women's clinic san francisco,va doctors office near me,medical,clinic +abortion,"('va medical office near me', 'va doctors office near me')",va medical office near me,va doctors office near me,3,4,google,2026-03-12 19:40:08.260130,va women's clinic san francisco,va doctors office near me,medical,doctors +abortion,"('va medical office near me', 'veterans affairs medical center near me')",va medical office near me,veterans affairs medical center near me,4,4,google,2026-03-12 19:40:08.260130,va women's clinic san francisco,va doctors office near me,medical,veterans affairs center +abortion,"('va medical office near me', 'va hospital clinic near me')",va medical office near me,va hospital clinic near me,5,4,google,2026-03-12 19:40:08.260130,va women's clinic san francisco,va doctors office near me,medical,hospital clinic +abortion,"('va medical office near me', 'va medical center jobs near me')",va medical office near me,va medical center jobs near me,6,4,google,2026-03-12 19:40:08.260130,va women's clinic san francisco,va doctors office near me,medical,center jobs +abortion,"('va medical office near me', 'closest va medical center near me')",va medical office near me,closest va medical center near me,7,4,google,2026-03-12 19:40:08.260130,va women's clinic san francisco,va doctors office near me,medical,closest center +abortion,"('va medical office near me', 'local va medical center near me')",va medical office near me,local va medical center near me,8,4,google,2026-03-12 19:40:08.260130,va women's clinic san francisco,va doctors office near me,medical,local center +abortion,"('va medical office near me', 'va medical facility near me')",va medical office near me,va medical facility near me,9,4,google,2026-03-12 19:40:08.260130,va women's clinic san francisco,va doctors office near me,medical,facility +abortion,"('va doctors near me', 'virginia doctors near me')",va doctors near me,virginia doctors near me,1,4,google,2026-03-12 19:40:09.257063,va women's clinic san francisco,va doctors office near me,doctors office near me,virginia +abortion,"('va doctors near me', 'va healthcare near me')",va doctors near me,va healthcare near me,2,4,google,2026-03-12 19:40:09.257063,va women's clinic san francisco,va doctors office near me,doctors office near me,healthcare +abortion,"('va doctors near me', 'va specialist near me')",va doctors near me,va specialist near me,3,4,google,2026-03-12 19:40:09.257063,va women's clinic san francisco,va doctors office near me,doctors office near me,specialist +abortion,"('va doctors near me', 'veterans affairs doctors near me')",va doctors near me,veterans affairs doctors near me,4,4,google,2026-03-12 19:40:09.257063,va women's clinic san francisco,va doctors office near me,doctors office near me,veterans affairs +abortion,"('va doctors near me', 'virginia physicians near me')",va doctors near me,virginia physicians near me,5,4,google,2026-03-12 19:40:09.257063,va women's clinic san francisco,va doctors office near me,doctors office near me,virginia physicians +abortion,"('va doctors near me', 'va approved doctors near me')",va doctors near me,va approved doctors near me,6,4,google,2026-03-12 19:40:09.257063,va women's clinic san francisco,va doctors office near me,doctors office near me,approved +abortion,"('va doctors near me', 'va disability doctors near me')",va doctors near me,va disability doctors near me,7,4,google,2026-03-12 19:40:09.257063,va women's clinic san francisco,va doctors office near me,doctors office near me,disability +abortion,"('va doctors near me', 'va doctors office near me')",va doctors near me,va doctors office near me,8,4,google,2026-03-12 19:40:09.257063,va women's clinic san francisco,va doctors office near me,doctors office near me,office +abortion,"('va doctors near me', 'va friendly doctors near me')",va doctors near me,va friendly doctors near me,9,4,google,2026-03-12 19:40:09.257063,va women's clinic san francisco,va doctors office near me,doctors office near me,friendly +abortion,"('find a va doctor near me', 'find a va clinic near me')",find a va doctor near me,find a va clinic near me,1,4,google,2026-03-12 19:40:10.511908,va women's clinic san francisco,va doctors office near me,find a doctor,clinic +abortion,"('find a va doctor near me', 'find a va dental clinic near me')",find a va doctor near me,find a va dental clinic near me,2,4,google,2026-03-12 19:40:10.511908,va women's clinic san francisco,va doctors office near me,find a doctor,dental clinic +abortion,"('find a va doctor near me', 'find a va near me')",find a va doctor near me,find a va near me,3,4,google,2026-03-12 19:40:10.511908,va women's clinic san francisco,va doctors office near me,find a doctor,find a doctor +abortion,"('find a va doctor near me', 'find a doctor near me')",find a va doctor near me,find a doctor near me,4,4,google,2026-03-12 19:40:10.511908,va women's clinic san francisco,va doctors office near me,find a doctor,find a doctor +abortion,"('va primary care physician near me', 'va primary care provider near me')",va primary care physician near me,va primary care provider near me,1,4,google,2026-03-12 19:40:11.700768,va women's clinic san francisco,va doctors office near me,primary care physician,provider +abortion,"('va primary care physician near me', 'primary care physician near mechanicsville va')",va primary care physician near me,primary care physician near mechanicsville va,2,4,google,2026-03-12 19:40:11.700768,va women's clinic san francisco,va doctors office near me,primary care physician,mechanicsville +abortion,"('va primary care physician near me', 'primary care physician richmond va near me')",va primary care physician near me,primary care physician richmond va near me,3,4,google,2026-03-12 19:40:11.700768,va women's clinic san francisco,va doctors office near me,primary care physician,richmond +abortion,"('va primary care physician near me', 'va primary care near me')",va primary care physician near me,va primary care near me,4,4,google,2026-03-12 19:40:11.700768,va women's clinic san francisco,va doctors office near me,primary care physician,primary care physician +abortion,"('va primary care physician near me', 'va health care providers near me')",va primary care physician near me,va health care providers near me,5,4,google,2026-03-12 19:40:11.700768,va women's clinic san francisco,va doctors office near me,primary care physician,health providers +abortion,"('va primary care physician near me', 'va doctors near me')",va primary care physician near me,va doctors near me,6,4,google,2026-03-12 19:40:11.700768,va women's clinic san francisco,va doctors office near me,primary care physician,doctors +abortion,"('va primary care physician near me', 'va primary care physician salary')",va primary care physician near me,va primary care physician salary,7,4,google,2026-03-12 19:40:11.700768,va women's clinic san francisco,va doctors office near me,primary care physician,salary +abortion,"('va clinic palo alto', 'va clinic palo alto ca')",va clinic palo alto,va clinic palo alto ca,1,4,google,2026-03-12 19:40:12.649069,va women's clinic san francisco,va clinic near me,palo alto,ca +abortion,"('va clinic palo alto', 'va hospital palo alto')",va clinic palo alto,va hospital palo alto,2,4,google,2026-03-12 19:40:12.649069,va women's clinic san francisco,va clinic near me,palo alto,hospital +abortion,"('va clinic palo alto', 'va medical center palo alto')",va clinic palo alto,va medical center palo alto,3,4,google,2026-03-12 19:40:12.649069,va women's clinic san francisco,va clinic near me,palo alto,medical center +abortion,"('va clinic palo alto', 'va hospital palo alto ca')",va clinic palo alto,va hospital palo alto ca,4,4,google,2026-03-12 19:40:12.649069,va women's clinic san francisco,va clinic near me,palo alto,hospital ca +abortion,"('va clinic palo alto', 'va hospital palo alto jobs')",va clinic palo alto,va hospital palo alto jobs,5,4,google,2026-03-12 19:40:12.649069,va women's clinic san francisco,va clinic near me,palo alto,hospital jobs +abortion,"('va clinic palo alto', 'va hospital palo alto volunteer')",va clinic palo alto,va hospital palo alto volunteer,6,4,google,2026-03-12 19:40:12.649069,va women's clinic san francisco,va clinic near me,palo alto,hospital volunteer +abortion,"('va clinic palo alto', 'va medical center palo alto california')",va clinic palo alto,va medical center palo alto california,7,4,google,2026-03-12 19:40:12.649069,va women's clinic san francisco,va clinic near me,palo alto,medical center california +abortion,"('va clinic palo alto', 'va hospital palo alto address')",va clinic palo alto,va hospital palo alto address,8,4,google,2026-03-12 19:40:12.649069,va women's clinic san francisco,va clinic near me,palo alto,hospital address +abortion,"('va clinic palo alto', 'va hospital palo alto phone number')",va clinic palo alto,va hospital palo alto phone number,9,4,google,2026-03-12 19:40:12.649069,va women's clinic san francisco,va clinic near me,palo alto,hospital phone number +abortion,"('va clinic san francisco', 'va clinic san francisco ca')",va clinic san francisco,va clinic san francisco ca,1,4,google,2026-03-12 19:40:13.740458,va women's clinic san francisco,va clinic near me,san francisco,ca +abortion,"('va clinic san francisco', 'va hospital san francisco')",va clinic san francisco,va hospital san francisco,2,4,google,2026-03-12 19:40:13.740458,va women's clinic san francisco,va clinic near me,san francisco,hospital +abortion,"('va clinic san francisco', 'va medical center san francisco')",va clinic san francisco,va medical center san francisco,3,4,google,2026-03-12 19:40:13.740458,va women's clinic san francisco,va clinic near me,san francisco,medical center +abortion,"('va clinic san francisco', 'va hospital san francisco california')",va clinic san francisco,va hospital san francisco california,4,4,google,2026-03-12 19:40:13.740458,va women's clinic san francisco,va clinic near me,san francisco,hospital california +abortion,"('va clinic san francisco', 'va hospital san francisco jobs')",va clinic san francisco,va hospital san francisco jobs,5,4,google,2026-03-12 19:40:13.740458,va women's clinic san francisco,va clinic near me,san francisco,hospital jobs +abortion,"('va clinic san francisco', 'va hospital san francisco address')",va clinic san francisco,va hospital san francisco address,6,4,google,2026-03-12 19:40:13.740458,va women's clinic san francisco,va clinic near me,san francisco,hospital address +abortion,"('va clinic san francisco', 'va hospital san francisco volunteer')",va clinic san francisco,va hospital san francisco volunteer,7,4,google,2026-03-12 19:40:13.740458,va women's clinic san francisco,va clinic near me,san francisco,hospital volunteer +abortion,"('va clinic san francisco', 'va hospital san francisco cafeteria')",va clinic san francisco,va hospital san francisco cafeteria,8,4,google,2026-03-12 19:40:13.740458,va women's clinic san francisco,va clinic near me,san francisco,hospital cafeteria +abortion,"('va clinic san francisco', 'va medical center san francisco ca')",va clinic san francisco,va medical center san francisco ca,9,4,google,2026-03-12 19:40:13.740458,va women's clinic san francisco,va clinic near me,san francisco,medical center ca +abortion,"('va clinic near me now', 'va clinic palo alto')",va clinic near me now,va clinic palo alto,1,4,google,2026-03-12 19:40:14.685280,va women's clinic san francisco,va clinic near me,now,palo alto +abortion,"('va clinic near me now', 'va clinic san francisco')",va clinic near me now,va clinic san francisco,2,4,google,2026-03-12 19:40:14.685280,va women's clinic san francisco,va clinic near me,now,san francisco +abortion,"('va clinic near me now', 'va hospital near me now')",va clinic near me now,va hospital near me now,3,4,google,2026-03-12 19:40:14.685280,va women's clinic san francisco,va clinic near me,now,hospital +abortion,"('va clinic near me now', 'va clinic near me open now')",va clinic near me now,va clinic near me open now,4,4,google,2026-03-12 19:40:14.685280,va women's clinic san francisco,va clinic near me,now,open +abortion,"('va clinic near me now', 'va hospital near me open now')",va clinic near me now,va hospital near me open now,5,4,google,2026-03-12 19:40:14.685280,va women's clinic san francisco,va clinic near me,now,hospital open +abortion,"('va clinic near me now', 'veteran hospital near me open now')",va clinic near me now,veteran hospital near me open now,6,4,google,2026-03-12 19:40:14.685280,va women's clinic san francisco,va clinic near me,now,veteran hospital open +abortion,"('va clinic near me now', 'va dental clinic near me open now')",va clinic near me now,va dental clinic near me open now,7,4,google,2026-03-12 19:40:14.685280,va women's clinic san francisco,va clinic near me,now,dental open +abortion,"('va clinic near me now', 'va audiology clinic near me open now')",va clinic near me now,va audiology clinic near me open now,8,4,google,2026-03-12 19:40:14.685280,va women's clinic san francisco,va clinic near me,now,audiology open +abortion,"('va clinic near me now', 'va walk in clinic near me open now')",va clinic near me now,va walk in clinic near me open now,9,4,google,2026-03-12 19:40:14.685280,va women's clinic san francisco,va clinic near me,now,walk in open +abortion,"('va clinic near me open now', 'va hospital near me open now')",va clinic near me open now,va hospital near me open now,1,4,google,2026-03-12 19:40:15.750905,va women's clinic san francisco,va clinic near me,open now,hospital +abortion,"('va clinic near me open now', 'veteran hospital near me open now')",va clinic near me open now,veteran hospital near me open now,2,4,google,2026-03-12 19:40:15.750905,va women's clinic san francisco,va clinic near me,open now,veteran hospital +abortion,"('va clinic near me open now', 'va dental clinic near me open now')",va clinic near me open now,va dental clinic near me open now,3,4,google,2026-03-12 19:40:15.750905,va women's clinic san francisco,va clinic near me,open now,dental +abortion,"('va clinic near me open now', 'va audiology clinic near me open now')",va clinic near me open now,va audiology clinic near me open now,4,4,google,2026-03-12 19:40:15.750905,va women's clinic san francisco,va clinic near me,open now,audiology +abortion,"('va clinic near me open now', 'va walk in clinic near me open now')",va clinic near me open now,va walk in clinic near me open now,5,4,google,2026-03-12 19:40:15.750905,va women's clinic san francisco,va clinic near me,open now,walk in +abortion,"('va clinic near me open now', 'va clinic near me')",va clinic near me open now,va clinic near me,6,4,google,2026-03-12 19:40:15.750905,va women's clinic san francisco,va clinic near me,open now,open now +abortion,"('va clinic near me open now', 'va medical clinic near me')",va clinic near me open now,va medical clinic near me,7,4,google,2026-03-12 19:40:15.750905,va women's clinic san francisco,va clinic near me,open now,medical +abortion,"('va clinic near me open now', 'va outpatient clinic near me')",va clinic near me open now,va outpatient clinic near me,8,4,google,2026-03-12 19:40:15.750905,va women's clinic san francisco,va clinic near me,open now,outpatient +abortion,"('va clinic near me open now', 'va walk-in clinic near me')",va clinic near me open now,va walk-in clinic near me,9,4,google,2026-03-12 19:40:15.750905,va women's clinic san francisco,va clinic near me,open now,walk-in +abortion,"('va clinic near me phone number', 'va hospital near me phone number')",va clinic near me phone number,va hospital near me phone number,1,4,google,2026-03-12 19:40:16.660045,va women's clinic san francisco,va clinic near me,phone number,hospital +abortion,"('va clinic near me phone number', 'va audiology clinic near me phone number')",va clinic near me phone number,va audiology clinic near me phone number,2,4,google,2026-03-12 19:40:16.660045,va women's clinic san francisco,va clinic near me,phone number,audiology +abortion,"('va clinic near me phone number', 'va dental clinic near me phone number')",va clinic near me phone number,va dental clinic near me phone number,3,4,google,2026-03-12 19:40:16.660045,va women's clinic san francisco,va clinic near me,phone number,dental +abortion,"('va clinic near me phone number', 'va clinic near me')",va clinic near me phone number,va clinic near me,4,4,google,2026-03-12 19:40:16.660045,va women's clinic san francisco,va clinic near me,phone number,phone number +abortion,"('va clinic near me phone number', 'va phone number near me')",va clinic near me phone number,va phone number near me,5,4,google,2026-03-12 19:40:16.660045,va women's clinic san francisco,va clinic near me,phone number,phone number +abortion,"('va clinic near me phone number', 'va clinic near me now')",va clinic near me phone number,va clinic near me now,6,4,google,2026-03-12 19:40:16.660045,va women's clinic san francisco,va clinic near me,phone number,now +abortion,"('va clinic near me phone number', 'va clinic near my location')",va clinic near me phone number,va clinic near my location,7,4,google,2026-03-12 19:40:16.660045,va women's clinic san francisco,va clinic near me,phone number,my location +abortion,"('va clinic near me phone number', 'va clinic number')",va clinic near me phone number,va clinic number,8,4,google,2026-03-12 19:40:16.660045,va women's clinic san francisco,va clinic near me,phone number,phone number +abortion,"('va clinic near me within 20 mi', 'va hospital near me within 20 mi')",va clinic near me within 20 mi,va hospital near me within 20 mi,1,4,google,2026-03-12 19:40:18.062531,va women's clinic san francisco,va clinic near me,within 20 mi,hospital +abortion,"('va clinic near me within 20 mi', 'va dental clinic near me within 20 mi')",va clinic near me within 20 mi,va dental clinic near me within 20 mi,2,4,google,2026-03-12 19:40:18.062531,va women's clinic san francisco,va clinic near me,within 20 mi,dental +abortion,"('va clinic near me within 20 mi', 'va hospital locations within 20 mi')",va clinic near me within 20 mi,va hospital locations within 20 mi,3,4,google,2026-03-12 19:40:18.062531,va women's clinic san francisco,va clinic near me,within 20 mi,hospital locations +abortion,"('va clinic near me within 20 mi', 'va clinic locations')",va clinic near me within 20 mi,va clinic locations,4,4,google,2026-03-12 19:40:18.062531,va women's clinic san francisco,va clinic near me,within 20 mi,locations +abortion,"('va clinic near me within 20 mi', 'va clinic near me')",va clinic near me within 20 mi,va clinic near me,5,4,google,2026-03-12 19:40:18.062531,va women's clinic san francisco,va clinic near me,within 20 mi,within 20 mi +abortion,"('va clinic near me within 20 mi', 'va clinic near me now')",va clinic near me within 20 mi,va clinic near me now,6,4,google,2026-03-12 19:40:18.062531,va women's clinic san francisco,va clinic near me,within 20 mi,now +abortion,"('va clinic near me within 20 mi', 'va walk-in clinic near me')",va clinic near me within 20 mi,va walk-in clinic near me,7,4,google,2026-03-12 19:40:18.062531,va women's clinic san francisco,va clinic near me,within 20 mi,walk-in +abortion,"('va clinic near me within 20 mi', 'va clinic near me phone number')",va clinic near me within 20 mi,va clinic near me phone number,8,4,google,2026-03-12 19:40:18.062531,va women's clinic san francisco,va clinic near me,within 20 mi,phone number +abortion,"('va clinic near me within 20 mi', 'va clinic nearby')",va clinic near me within 20 mi,va clinic nearby,9,4,google,2026-03-12 19:40:18.062531,va women's clinic san francisco,va clinic near me,within 20 mi,nearby +abortion,"('va clinic near me within 5 mi', 'va hospital near me within 5 mi')",va clinic near me within 5 mi,va hospital near me within 5 mi,1,4,google,2026-03-12 19:40:19.316365,va women's clinic san francisco,va clinic near me,within 5 mi,hospital +abortion,"('va clinic near me within 5 mi', 'va clinic locations')",va clinic near me within 5 mi,va clinic locations,2,4,google,2026-03-12 19:40:19.316365,va women's clinic san francisco,va clinic near me,within 5 mi,locations +abortion,"('va clinic near me within 5 mi', 'va clinic near me')",va clinic near me within 5 mi,va clinic near me,3,4,google,2026-03-12 19:40:19.316365,va women's clinic san francisco,va clinic near me,within 5 mi,within 5 mi +abortion,"('va clinic near me within 5 mi', 'va outpatient clinic near me')",va clinic near me within 5 mi,va outpatient clinic near me,4,4,google,2026-03-12 19:40:19.316365,va women's clinic san francisco,va clinic near me,within 5 mi,outpatient +abortion,"('va clinic near me within 5 mi', 'va clinic near me now')",va clinic near me within 5 mi,va clinic near me now,5,4,google,2026-03-12 19:40:19.316365,va women's clinic san francisco,va clinic near me,within 5 mi,now +abortion,"('va clinic near me within 5 mi', 'va clinic near milton fl')",va clinic near me within 5 mi,va clinic near milton fl,6,4,google,2026-03-12 19:40:19.316365,va women's clinic san francisco,va clinic near me,within 5 mi,milton fl +abortion,"('va clinic near me within 5 mi', 'va clinic near me phone number')",va clinic near me within 5 mi,va clinic near me phone number,7,4,google,2026-03-12 19:40:19.316365,va women's clinic san francisco,va clinic near me,within 5 mi,phone number +abortion,"('va clinic near me within 5 mi', 'va clinic near mesa az')",va clinic near me within 5 mi,va clinic near mesa az,8,4,google,2026-03-12 19:40:19.316365,va women's clinic san francisco,va clinic near me,within 5 mi,mesa az +abortion,"('va clinic near me location', 'va clinic near my location')",va clinic near me location,va clinic near my location,1,4,google,2026-03-12 19:40:20.430919,va women's clinic san francisco,va clinic near me,location,my +abortion,"('va clinic near me location', 'va clinic palo alto')",va clinic near me location,va clinic palo alto,2,4,google,2026-03-12 19:40:20.430919,va women's clinic san francisco,va clinic near me,location,palo alto +abortion,"('va clinic near me location', 'va clinic san francisco')",va clinic near me location,va clinic san francisco,3,4,google,2026-03-12 19:40:20.430919,va women's clinic san francisco,va clinic near me,location,san francisco +abortion,"('va clinic near me location', 'va hospital near my location')",va clinic near me location,va hospital near my location,4,4,google,2026-03-12 19:40:20.430919,va women's clinic san francisco,va clinic near me,location,hospital my +abortion,"('va clinic near me location', 'va hospital nearest my location')",va clinic near me location,va hospital nearest my location,5,4,google,2026-03-12 19:40:20.430919,va women's clinic san francisco,va clinic near me,location,hospital nearest my +abortion,"('va clinic near me location', 'closest va hospital near my location')",va clinic near me location,closest va hospital near my location,6,4,google,2026-03-12 19:40:20.430919,va women's clinic san francisco,va clinic near me,location,closest hospital my +abortion,"('va clinic near me location', 'va hospital near my current location')",va clinic near me location,va hospital near my current location,7,4,google,2026-03-12 19:40:20.430919,va women's clinic san francisco,va clinic near me,location,hospital my current +abortion,"('va clinic near me location', 'va clinic near me')",va clinic near me location,va clinic near me,8,4,google,2026-03-12 19:40:20.430919,va women's clinic san francisco,va clinic near me,location,location +abortion,"('va clinic near me location', 'va medical clinic near me')",va clinic near me location,va medical clinic near me,9,4,google,2026-03-12 19:40:20.430919,va women's clinic san francisco,va clinic near me,location,medical +abortion,"('va clinic near me jobs', 'va hospital near me jobs')",va clinic near me jobs,va hospital near me jobs,1,4,google,2026-03-12 19:40:21.757568,va women's clinic san francisco,va clinic near me,jobs,hospital +abortion,"('va clinic near me jobs', 'veteran hospital near me jobs')",va clinic near me jobs,veteran hospital near me jobs,2,4,google,2026-03-12 19:40:21.757568,va women's clinic san francisco,va clinic near me,jobs,veteran hospital +abortion,"('va clinic near me jobs', 'va hospital near me hiring')",va clinic near me jobs,va hospital near me hiring,3,4,google,2026-03-12 19:40:21.757568,va women's clinic san francisco,va clinic near me,jobs,hospital hiring +abortion,"('va clinic near me jobs', 'veteran clinic jobs near me')",va clinic near me jobs,veteran clinic jobs near me,4,4,google,2026-03-12 19:40:21.757568,va women's clinic san francisco,va clinic near me,jobs,veteran +abortion,"('va clinic near me jobs', 'va clinic rn jobs near me')",va clinic near me jobs,va clinic rn jobs near me,5,4,google,2026-03-12 19:40:21.757568,va women's clinic san francisco,va clinic near me,jobs,rn +abortion,"('va clinic near me jobs', 'va clinic nursing jobs near me')",va clinic near me jobs,va clinic nursing jobs near me,6,4,google,2026-03-12 19:40:21.757568,va women's clinic san francisco,va clinic near me,jobs,nursing +abortion,"('va clinic near me jobs', 'va clinic garner nc jobs near me')",va clinic near me jobs,va clinic garner nc jobs near me,7,4,google,2026-03-12 19:40:21.757568,va women's clinic san francisco,va clinic near me,jobs,garner nc +abortion,"('va clinic near me jobs', 'va clinic near me')",va clinic near me jobs,va clinic near me,8,4,google,2026-03-12 19:40:21.757568,va women's clinic san francisco,va clinic near me,jobs,jobs +abortion,"('va clinic near me jobs', 'va clinic locations')",va clinic near me jobs,va clinic locations,9,4,google,2026-03-12 19:40:21.757568,va women's clinic san francisco,va clinic near me,jobs,locations +abortion,"('vet clinic. near me', 'vet clinic near me open now')",vet clinic. near me,vet clinic near me open now,1,4,google,2026-03-12 19:40:22.990853,va women's clinic san francisco,va animal clinic near me,vet clinic.,clinic open now +abortion,"('vet clinic. near me', 'vet clinic near me for dogs')",vet clinic. near me,vet clinic near me for dogs,2,4,google,2026-03-12 19:40:22.990853,va women's clinic san francisco,va animal clinic near me,vet clinic.,clinic for dogs +abortion,"('vet clinic. near me', 'vet clinic near me within 1.6 km')",vet clinic. near me,vet clinic near me within 1.6 km,3,4,google,2026-03-12 19:40:22.990853,va women's clinic san francisco,va animal clinic near me,vet clinic.,clinic within 1.6 km +abortion,"('vet clinic. near me', 'vet clinic near me for cats')",vet clinic. near me,vet clinic near me for cats,4,4,google,2026-03-12 19:40:22.990853,va women's clinic san francisco,va animal clinic near me,vet clinic.,clinic for cats +abortion,"('vet clinic. near me', 'vet clinic near me open')",vet clinic. near me,vet clinic near me open,5,4,google,2026-03-12 19:40:22.990853,va women's clinic san francisco,va animal clinic near me,vet clinic.,clinic open +abortion,"('vet clinic. near me', 'vet clinic near me affordable')",vet clinic. near me,vet clinic near me affordable,6,4,google,2026-03-12 19:40:22.990853,va women's clinic san francisco,va animal clinic near me,vet clinic.,clinic affordable +abortion,"('vet clinic. near me', 'vet clinic near me within 5 mi')",vet clinic. near me,vet clinic near me within 5 mi,7,4,google,2026-03-12 19:40:22.990853,va women's clinic san francisco,va animal clinic near me,vet clinic.,clinic within 5 mi +abortion,"('vet clinic. near me', 'vet clinic near me 24 hours')",vet clinic. near me,vet clinic near me 24 hours,8,4,google,2026-03-12 19:40:22.990853,va women's clinic san francisco,va animal clinic near me,vet clinic.,clinic 24 hours +abortion,"('vet clinic. near me', 'vet clinic near me low cost')",vet clinic. near me,vet clinic near me low cost,9,4,google,2026-03-12 19:40:22.990853,va women's clinic san francisco,va animal clinic near me,vet clinic.,clinic low cost +abortion,"('virginia animal clinic', 'va animal clinic')",virginia animal clinic,va animal clinic,1,4,google,2026-03-12 19:40:24.176995,va women's clinic san francisco,va animal clinic near me,virginia,va +abortion,"('virginia animal clinic', 'va animal clinic near me')",virginia animal clinic,va animal clinic near me,2,4,google,2026-03-12 19:40:24.176995,va women's clinic san francisco,va animal clinic near me,virginia,va near me +abortion,"('virginia animal clinic', 'virginia vet clinic')",virginia animal clinic,virginia vet clinic,3,4,google,2026-03-12 19:40:24.176995,va women's clinic san francisco,va animal clinic near me,virginia,vet +abortion,"('virginia animal clinic', 'virginia pet clinic')",virginia animal clinic,virginia pet clinic,4,4,google,2026-03-12 19:40:24.176995,va women's clinic san francisco,va animal clinic near me,virginia,pet +abortion,"('virginia animal clinic', 'virginia vet clinic sa')",virginia animal clinic,virginia vet clinic sa,5,4,google,2026-03-12 19:40:24.176995,va women's clinic san francisco,va animal clinic near me,virginia,vet sa +abortion,"('virginia animal clinic', 'virginia animal hospital')",virginia animal clinic,virginia animal hospital,6,4,google,2026-03-12 19:40:24.176995,va women's clinic san francisco,va animal clinic near me,virginia,hospital +abortion,"('virginia animal clinic', 'va pet clinic')",virginia animal clinic,va pet clinic,7,4,google,2026-03-12 19:40:24.176995,va women's clinic san francisco,va animal clinic near me,virginia,va pet +abortion,"('virginia animal clinic', 'va vet clinic')",virginia animal clinic,va vet clinic,8,4,google,2026-03-12 19:40:24.176995,va women's clinic san francisco,va animal clinic near me,virginia,va vet +abortion,"('virginia animal clinic', 'va vet clinic near me')",virginia animal clinic,va vet clinic near me,9,4,google,2026-03-12 19:40:24.176995,va women's clinic san francisco,va animal clinic near me,virginia,va vet near me +abortion,"('walk-in animal clinic near me', 'walk in animal clinic near me for dogs')",walk-in animal clinic near me,walk in animal clinic near me for dogs,1,4,google,2026-03-12 19:40:25.001772,va women's clinic san francisco,va animal clinic near me,walk-in,walk in for dogs +abortion,"('walk-in animal clinic near me', 'walk in animal clinic near me open now')",walk-in animal clinic near me,walk in animal clinic near me open now,2,4,google,2026-03-12 19:40:25.001772,va women's clinic san francisco,va animal clinic near me,walk-in,walk in open now +abortion,"('walk-in animal clinic near me', 'walk in animal clinic near me for cats')",walk-in animal clinic near me,walk in animal clinic near me for cats,3,4,google,2026-03-12 19:40:25.001772,va women's clinic san francisco,va animal clinic near me,walk-in,walk in for cats +abortion,"('walk-in animal clinic near me', 'walk in veterinary clinic near me')",walk-in animal clinic near me,walk in veterinary clinic near me,4,4,google,2026-03-12 19:40:25.001772,va women's clinic san francisco,va animal clinic near me,walk-in,walk in veterinary +abortion,"('walk-in animal clinic near me', 'walk in animal hospital near me')",walk-in animal clinic near me,walk in animal hospital near me,5,4,google,2026-03-12 19:40:25.001772,va women's clinic san francisco,va animal clinic near me,walk-in,walk in hospital +abortion,"('walk-in animal clinic near me', 'walk in veterinarian clinic near me')",walk-in animal clinic near me,walk in veterinarian clinic near me,6,4,google,2026-03-12 19:40:25.001772,va women's clinic san francisco,va animal clinic near me,walk-in,walk in veterinarian +abortion,"('walk-in animal clinic near me', 'walk in animal vet near me')",walk-in animal clinic near me,walk in animal vet near me,7,4,google,2026-03-12 19:40:25.001772,va women's clinic san francisco,va animal clinic near me,walk-in,walk in vet +abortion,"('walk-in animal clinic near me', 'walk in veterinary clinic near me open now')",walk-in animal clinic near me,walk in veterinary clinic near me open now,8,4,google,2026-03-12 19:40:25.001772,va women's clinic san francisco,va animal clinic near me,walk-in,walk in veterinary open now +abortion,"('walk-in animal clinic near me', 'walk in animal hospital near me open now')",walk-in animal clinic near me,walk in animal hospital near me open now,9,4,google,2026-03-12 19:40:25.001772,va women's clinic san francisco,va animal clinic near me,walk-in,walk in hospital open now +abortion,"('va animal control', 'va animal control association')",va animal control,va animal control association,1,4,google,2026-03-12 19:40:26.192143,va women's clinic san francisco,va animal clinic near me,control,association +abortion,"('va animal control', 'va animal control phone number')",va animal control,va animal control phone number,2,4,google,2026-03-12 19:40:26.192143,va women's clinic san francisco,va animal clinic near me,control,phone number +abortion,"('va animal control', 'virginia animal control laws')",va animal control,virginia animal control laws,3,4,google,2026-03-12 19:40:26.192143,va women's clinic san francisco,va animal clinic near me,control,virginia laws +abortion,"('va animal control', 'virginia animal control laws for dogs')",va animal control,virginia animal control laws for dogs,4,4,google,2026-03-12 19:40:26.192143,va women's clinic san francisco,va animal clinic near me,control,virginia laws for dogs +abortion,"('va animal control', 'virginia animal control association conference')",va animal control,virginia animal control association conference,5,4,google,2026-03-12 19:40:26.192143,va women's clinic san francisco,va animal clinic near me,control,virginia association conference +abortion,"('va animal control', 'virginia animal control academy')",va animal control,virginia animal control academy,6,4,google,2026-03-12 19:40:26.192143,va women's clinic san francisco,va animal clinic near me,control,virginia academy +abortion,"('va animal control', 'virginia animal control jobs')",va animal control,virginia animal control jobs,7,4,google,2026-03-12 19:40:26.192143,va women's clinic san francisco,va animal clinic near me,control,virginia jobs +abortion,"('va animal control', 'va animal shelter')",va animal control,va animal shelter,8,4,google,2026-03-12 19:40:26.192143,va women's clinic san francisco,va animal clinic near me,control,shelter +abortion,"('va animal control', 'va animal rescue')",va animal control,va animal rescue,9,4,google,2026-03-12 19:40:26.192143,va women's clinic san francisco,va animal clinic near me,control,rescue +abortion,"(""va women's clinic near st louis mo"", ""va women's clinic near me"")",va women's clinic near st louis mo,va women's clinic near me,1,4,google,2026-03-12 19:40:27.014198,va women's clinic san francisco,va women's clinic st louis,near mo,me +abortion,"(""va women's clinic near st louis mo"", 'va clinic near me')",va women's clinic near st louis mo,va clinic near me,2,4,google,2026-03-12 19:40:27.014198,va women's clinic san francisco,va women's clinic st louis,near mo,me +abortion,"(""va women's clinic near st louis mo"", 'va medical clinic near me')",va women's clinic near st louis mo,va medical clinic near me,3,4,google,2026-03-12 19:40:27.014198,va women's clinic san francisco,va women's clinic st louis,near mo,medical me +abortion,"(""va women's clinic near st louis mo"", 'va animal clinic near me')",va women's clinic near st louis mo,va animal clinic near me,4,4,google,2026-03-12 19:40:27.014198,va women's clinic san francisco,va women's clinic st louis,near mo,animal me +abortion,"(""va women's clinic near st louis mo"", 'va walk-in clinic near me')",va women's clinic near st louis mo,va walk-in clinic near me,5,4,google,2026-03-12 19:40:27.014198,va women's clinic san francisco,va women's clinic st louis,near mo,walk-in me +abortion,"(""va women's clinic near st louis mo"", ""va women's clinic st louis"")",va women's clinic near st louis mo,va women's clinic st louis,6,4,google,2026-03-12 19:40:27.014198,va women's clinic san francisco,va women's clinic st louis,near mo,near mo +abortion,"(""va women's clinic near st louis mo"", ""va women's clinic louisville ky"")",va women's clinic near st louis mo,va women's clinic louisville ky,7,4,google,2026-03-12 19:40:27.014198,va women's clinic san francisco,va women's clinic st louis,near mo,louisville ky +abortion,"(""va women's clinic louisville ky"", ""va women's clinic near me"")",va women's clinic louisville ky,va women's clinic near me,1,4,google,2026-03-12 19:40:28.004116,va women's clinic san francisco,va women's clinic st louis,louisville ky,near me +abortion,"(""va women's clinic louisville ky"", ""va women's clinic phone number"")",va women's clinic louisville ky,va women's clinic phone number,2,4,google,2026-03-12 19:40:28.004116,va women's clinic san francisco,va women's clinic st louis,louisville ky,phone number +abortion,"(""va women's clinic louisville ky"", ""va women's clinic st louis"")",va women's clinic louisville ky,va women's clinic st louis,3,4,google,2026-03-12 19:40:28.004116,va women's clinic san francisco,va women's clinic st louis,louisville ky,st louis +abortion,"(""va women's clinic louisville ky"", ""va women's clinic birmingham al"")",va women's clinic louisville ky,va women's clinic birmingham al,4,4,google,2026-03-12 19:40:28.004116,va women's clinic san francisco,va women's clinic st louis,louisville ky,birmingham al +abortion,"(""seattle va women's clinic"", ""va puget sound women's clinic"")",seattle va women's clinic,va puget sound women's clinic,1,4,google,2026-03-12 19:40:29.499075,va women's clinic san francisco,va women's clinic seattle,seattle,puget sound +abortion,"(""seattle va women's clinic"", ""va women's clinic near me"")",seattle va women's clinic,va women's clinic near me,2,4,google,2026-03-12 19:40:29.499075,va women's clinic san francisco,va women's clinic seattle,seattle,near me +abortion,"(""seattle va women's clinic"", ""seattle women's clinic"")",seattle va women's clinic,seattle women's clinic,3,4,google,2026-03-12 19:40:29.499075,va women's clinic san francisco,va women's clinic seattle,seattle,seattle +abortion,"(""seattle va women's clinic"", ""seattle women's health clinic"")",seattle va women's clinic,seattle women's health clinic,4,4,google,2026-03-12 19:40:29.499075,va women's clinic san francisco,va women's clinic seattle,seattle,health +abortion,"(""seattle va women's clinic"", ""seattle women's health and wellness clinic"")",seattle va women's clinic,seattle women's health and wellness clinic,5,4,google,2026-03-12 19:40:29.499075,va women's clinic san francisco,va women's clinic seattle,seattle,health and wellness +abortion,"(""va women's clinic american lake"", ""american lake va women's health clinic"")",va women's clinic american lake,american lake va women's health clinic,1,4,google,2026-03-12 19:40:30.660648,va women's clinic san francisco,va women's clinic seattle,american lake,health +abortion,"(""va women's clinic american lake"", ""va women's clinic near me"")",va women's clinic american lake,va women's clinic near me,2,4,google,2026-03-12 19:40:30.660648,va women's clinic san francisco,va women's clinic seattle,american lake,near me +abortion,"(""va women's clinic american lake"", ""va women's clinic phone number"")",va women's clinic american lake,va women's clinic phone number,3,4,google,2026-03-12 19:40:30.660648,va women's clinic san francisco,va women's clinic seattle,american lake,phone number +abortion,"(""va women's clinic american lake"", ""va women's health benefits"")",va women's clinic american lake,va women's health benefits,4,4,google,2026-03-12 19:40:30.660648,va women's clinic san francisco,va women's clinic seattle,american lake,health benefits +abortion,"(""va women's clinic american lake"", ""va women's clinic lake city fl"")",va women's clinic american lake,va women's clinic lake city fl,5,4,google,2026-03-12 19:40:30.660648,va women's clinic san francisco,va women's clinic seattle,american lake,city fl +abortion,"(""virginia women's center st francis hospital"", ""virginia women's center st. francis"")",virginia women's center st francis hospital,virginia women's center st. francis,1,4,google,2026-03-12 19:40:31.486849,va women's clinic san francisco,va women's center st francis,virginia hospital,st. +abortion,"(""virginia women's center st francis hospital"", ""virginia women's center saint francis boulevard midlothian va"")",virginia women's center st francis hospital,virginia women's center saint francis boulevard midlothian va,2,4,google,2026-03-12 19:40:31.486849,va women's clinic san francisco,va women's center st francis,virginia hospital,saint boulevard midlothian va +abortion,"(""virginia women's center st francis hospital"", ""virginia women's center saint francis"")",virginia women's center st francis hospital,virginia women's center saint francis,3,4,google,2026-03-12 19:40:31.486849,va women's clinic san francisco,va women's center st francis,virginia hospital,saint +abortion,"(""virginia women's center st francis hospital"", ""virginia women's center flank road"")",virginia women's center st francis hospital,virginia women's center flank road,4,4,google,2026-03-12 19:40:31.486849,va women's clinic san francisco,va women's center st francis,virginia hospital,flank road +abortion,"(""virginia women's center st francis boulevard"", ""virginia women's center - 13801 saint francis boulevard"")",virginia women's center st francis boulevard,virginia women's center - 13801 saint francis boulevard,1,4,google,2026-03-12 19:40:32.875589,va women's clinic san francisco,va women's center st francis,virginia boulevard,- 13801 saint +abortion,"(""virginia women's center st francis boulevard"", ""virginia women's center saint francis boulevard midlothian va"")",virginia women's center st francis boulevard,virginia women's center saint francis boulevard midlothian va,2,4,google,2026-03-12 19:40:32.875589,va women's clinic san francisco,va women's center st francis,virginia boulevard,saint midlothian va +abortion,"(""virginia women's center st francis boulevard"", ""virginia women's center st. francis"")",virginia women's center st francis boulevard,virginia women's center st. francis,3,4,google,2026-03-12 19:40:32.875589,va women's clinic san francisco,va women's center st francis,virginia boulevard,st. +abortion,"(""virginia women's center st francis boulevard"", ""virginia women's center saint francis"")",virginia women's center st francis boulevard,virginia women's center saint francis,4,4,google,2026-03-12 19:40:32.875589,va women's clinic san francisco,va women's center st francis,virginia boulevard,saint +abortion,"(""virginia women's center st francis boulevard"", ""virginia women's center flank road"")",virginia women's center st francis boulevard,virginia women's center flank road,5,4,google,2026-03-12 19:40:32.875589,va women's clinic san francisco,va women's center st francis,virginia boulevard,flank road +abortion,"(""virginia women's center - 13801 saint francis boulevard"", ""virginia women's center 13801 st francis blvd midlothian va 23114"")",virginia women's center - 13801 saint francis boulevard,virginia women's center 13801 st francis blvd midlothian va 23114,1,4,google,2026-03-12 19:40:33.703728,va women's clinic san francisco,va women's center st francis,virginia - 13801 saint boulevard,st blvd midlothian va 23114 +abortion,"(""virginia women's center - 13801 saint francis boulevard"", 'state of virginia vital statistics')",virginia women's center - 13801 saint francis boulevard,state of virginia vital statistics,2,4,google,2026-03-12 19:40:33.703728,va women's clinic san francisco,va women's center st francis,virginia - 13801 saint boulevard,state of vital statistics +abortion,"(""virginia women's center - 13801 saint francis boulevard"", ""virginia women's center saint francis boulevard midlothian va"")",virginia women's center - 13801 saint francis boulevard,virginia women's center saint francis boulevard midlothian va,3,4,google,2026-03-12 19:40:33.703728,va women's clinic san francisco,va women's center st francis,virginia - 13801 saint boulevard,midlothian va +abortion,"(""virginia women's center - 13801 saint francis boulevard"", ""virginia women's center saint francis"")",virginia women's center - 13801 saint francis boulevard,virginia women's center saint francis,4,4,google,2026-03-12 19:40:33.703728,va women's clinic san francisco,va women's center st francis,virginia - 13801 saint boulevard,virginia - 13801 saint boulevard +abortion,"(""virginia women's center - 13801 saint francis boulevard"", ""virginia women's center st. francis"")",virginia women's center - 13801 saint francis boulevard,virginia women's center st. francis,5,4,google,2026-03-12 19:40:33.703728,va women's clinic san francisco,va women's center st francis,virginia - 13801 saint boulevard,st. +abortion,"(""virginia women's center - 13801 saint francis boulevard"", ""virginia women's center locations"")",virginia women's center - 13801 saint francis boulevard,virginia women's center locations,6,4,google,2026-03-12 19:40:33.703728,va women's clinic san francisco,va women's center st francis,virginia - 13801 saint boulevard,locations +abortion,"(""virginia women's center saint francis boulevard midlothian va"", ""virginia women's center 13801 st francis blvd midlothian va 23114"")",virginia women's center saint francis boulevard midlothian va,virginia women's center 13801 st francis blvd midlothian va 23114,1,4,google,2026-03-12 19:40:34.633666,va women's clinic san francisco,va women's center st francis,virginia saint boulevard midlothian,13801 st blvd 23114 +abortion,"(""va women's center locations"", ""virginia women's center locations"")",va women's center locations,virginia women's center locations,1,4,google,2026-03-12 19:40:36.910992,va women's clinic san francisco,va women's center st francis,locations,virginia +abortion,"(""va women's center locations"", 'va medical center locations usa')",va women's center locations,va medical center locations usa,2,4,google,2026-03-12 19:40:36.910992,va women's clinic san francisco,va women's center st francis,locations,medical usa +abortion,"(""va women's center locations"", 'va locations')",va women's center locations,va locations,3,4,google,2026-03-12 19:40:36.910992,va women's clinic san francisco,va women's center st francis,locations,locations +abortion,"(""va women's center locations"", ""va women's center near me"")",va women's center locations,va women's center near me,4,4,google,2026-03-12 19:40:36.910992,va women's clinic san francisco,va women's center st francis,locations,near me +abortion,"(""va women's center locations"", ""va women's center phone number"")",va women's center locations,va women's center phone number,5,4,google,2026-03-12 19:40:36.910992,va women's clinic san francisco,va women's center st francis,locations,phone number +abortion,"(""va women's center fax number"", ""va women's center phone number"")",va women's center fax number,va women's center phone number,1,4,google,2026-03-12 19:40:37.951652,va women's clinic san francisco,va women's center st francis,fax number,phone +abortion,"(""va women's center fax number"", ""va women's clinic fax number"")",va women's center fax number,va women's clinic fax number,2,4,google,2026-03-12 19:40:37.951652,va women's clinic san francisco,va women's center st francis,fax number,clinic +abortion,"(""va women's center fax number"", ""virginia women's center phone number"")",va women's center fax number,virginia women's center phone number,3,4,google,2026-03-12 19:40:37.951652,va women's clinic san francisco,va women's center st francis,fax number,virginia phone +abortion,"(""va women's center fax number"", ""va women's clinic phone number"")",va women's center fax number,va women's clinic phone number,4,4,google,2026-03-12 19:40:37.951652,va women's clinic san francisco,va women's center st francis,fax number,clinic phone +abortion,"(""va women's center fax number"", ""virginia women's center mechanicsville fax number"")",va women's center fax number,virginia women's center mechanicsville fax number,5,4,google,2026-03-12 19:40:37.951652,va women's clinic san francisco,va women's center st francis,fax number,virginia mechanicsville +abortion,"(""va women's center fax number"", ""virginia women's center medical records fax number"")",va women's center fax number,virginia women's center medical records fax number,6,4,google,2026-03-12 19:40:37.951652,va women's clinic san francisco,va women's center st francis,fax number,virginia medical records +abortion,"(""va women's center fax number"", ""virginia women's center short pump fax number"")",va women's center fax number,virginia women's center short pump fax number,7,4,google,2026-03-12 19:40:37.951652,va women's clinic san francisco,va women's center st francis,fax number,virginia short pump +abortion,"(""va women's center fax number"", ""temple va women's clinic phone number"")",va women's center fax number,temple va women's clinic phone number,8,4,google,2026-03-12 19:40:37.951652,va women's clinic san francisco,va women's center st francis,fax number,temple clinic phone +abortion,"(""va women's center fax number"", ""dayton va women's clinic phone number"")",va women's center fax number,dayton va women's clinic phone number,9,4,google,2026-03-12 19:40:37.951652,va women's clinic san francisco,va women's center st francis,fax number,dayton clinic phone +abortion,"(""virginia women's center st. francis"", ""virginia women's center st francis"")",virginia women's center st. francis,virginia women's center st francis,1,4,google,2026-03-12 19:40:38.835738,va women's clinic san francisco,va women's center st francis,virginia st.,st +abortion,"(""virginia women's center st. francis"", ""virginia women's center st francis hospital"")",virginia women's center st. francis,virginia women's center st francis hospital,2,4,google,2026-03-12 19:40:38.835738,va women's clinic san francisco,va women's center st francis,virginia st.,st hospital +abortion,"(""virginia women's center st. francis"", ""virginia women's center st francis boulevard"")",virginia women's center st. francis,virginia women's center st francis boulevard,3,4,google,2026-03-12 19:40:38.835738,va women's clinic san francisco,va women's center st francis,virginia st.,st boulevard +abortion,"(""virginia women's center st. francis"", ""virginia women's center - 13801 saint francis boulevard"")",virginia women's center st. francis,virginia women's center - 13801 saint francis boulevard,4,4,google,2026-03-12 19:40:38.835738,va women's clinic san francisco,va women's center st francis,virginia st.,- 13801 saint boulevard +abortion,"(""virginia women's center st. francis"", ""virginia women's center saint francis boulevard midlothian va"")",virginia women's center st. francis,virginia women's center saint francis boulevard midlothian va,5,4,google,2026-03-12 19:40:38.835738,va women's clinic san francisco,va women's center st francis,virginia st.,saint boulevard midlothian va +abortion,"(""virginia women's center st. francis"", ""virginia women's center 13801 st francis blvd midlothian va 23114"")",virginia women's center st. francis,virginia women's center 13801 st francis blvd midlothian va 23114,6,4,google,2026-03-12 19:40:38.835738,va women's clinic san francisco,va women's center st francis,virginia st.,13801 st blvd midlothian va 23114 +abortion,"(""virginia women's center st. francis"", ""virginia women's center saint francis"")",virginia women's center st. francis,virginia women's center saint francis,7,4,google,2026-03-12 19:40:38.835738,va women's clinic san francisco,va women's center st francis,virginia st.,saint +abortion,"(""virginia women's center st. francis"", ""virginia women's center st mary's"")",virginia women's center st. francis,virginia women's center st mary's,8,4,google,2026-03-12 19:40:38.835738,va women's clinic san francisco,va women's center st francis,virginia st.,st mary's +abortion,"(""women's golf lessons san diego"", ""women's golf lessons san antonio"")",women's golf lessons san diego,women's golf lessons san antonio,1,4,google,2026-03-12 19:40:39.838561,women's golf clinic san francisco,women's golf lessons san francisco,diego,antonio +abortion,"(""women's golf lessons san diego"", 'female golf instructors san diego')",women's golf lessons san diego,female golf instructors san diego,2,4,google,2026-03-12 19:40:39.838561,women's golf clinic san francisco,women's golf lessons san francisco,diego,female instructors +abortion,"(""women's golf lessons san diego"", ""women's golf league san diego"")",women's golf lessons san diego,women's golf league san diego,3,4,google,2026-03-12 19:40:39.838561,women's golf clinic san francisco,women's golf lessons san francisco,diego,league +abortion,"(""women's golf lessons san diego"", ""women's golf club san diego"")",women's golf lessons san diego,women's golf club san diego,4,4,google,2026-03-12 19:40:39.838561,women's golf clinic san francisco,women's golf lessons san francisco,diego,club +abortion,"(""women's golf lessons san diego"", ""women's golf lessons sacramento"")",women's golf lessons san diego,women's golf lessons sacramento,5,4,google,2026-03-12 19:40:39.838561,women's golf clinic san francisco,women's golf lessons san francisco,diego,sacramento +abortion,"(""women's golf lessons san antonio"", ""women's golf san antonio"")",women's golf lessons san antonio,women's golf san antonio,1,4,google,2026-03-12 19:40:41.084603,women's golf clinic san francisco,women's golf lessons san francisco,antonio,antonio +abortion,"(""women's golf lessons san antonio"", ""women's golf lessons austin"")",women's golf lessons san antonio,women's golf lessons austin,2,4,google,2026-03-12 19:40:41.084603,women's golf clinic san francisco,women's golf lessons san francisco,antonio,austin +abortion,"(""women's golf lessons san antonio"", ""women's golf lessons san diego"")",women's golf lessons san antonio,women's golf lessons san diego,3,4,google,2026-03-12 19:40:41.084603,women's golf clinic san francisco,women's golf lessons san francisco,antonio,diego +abortion,"(""women's golf lessons san antonio"", ""women's golf lessons austin tx"")",women's golf lessons san antonio,women's golf lessons austin tx,4,4,google,2026-03-12 19:40:41.084603,women's golf clinic san francisco,women's golf lessons san francisco,antonio,austin tx +abortion,"(""women's golf lessons sacramento"", ""women's golf lessons san diego"")",women's golf lessons sacramento,women's golf lessons san diego,1,4,google,2026-03-12 19:40:42.362686,women's golf clinic san francisco,women's golf lessons san francisco,sacramento,san diego +abortion,"(""women's golf lessons sacramento"", ""women's golf lessons los angeles"")",women's golf lessons sacramento,women's golf lessons los angeles,2,4,google,2026-03-12 19:40:42.362686,women's golf clinic san francisco,women's golf lessons san francisco,sacramento,los angeles +abortion,"(""women's golf lessons sacramento"", ""women's golf lessons san antonio"")",women's golf lessons sacramento,women's golf lessons san antonio,3,4,google,2026-03-12 19:40:42.362686,women's golf clinic san francisco,women's golf lessons san francisco,sacramento,san antonio +abortion,"(""women's golf lessons sacramento"", 'sacramento golf lessons')",women's golf lessons sacramento,sacramento golf lessons,4,4,google,2026-03-12 19:40:42.362686,women's golf clinic san francisco,women's golf lessons san francisco,sacramento,sacramento +abortion,"(""women's golf lessons los angeles"", 'female golf instructors los angeles')",women's golf lessons los angeles,female golf instructors los angeles,1,4,google,2026-03-12 19:40:43.702601,women's golf clinic san francisco,women's golf lessons san francisco,los angeles,female instructors +abortion,"(""women's golf lessons los angeles"", ""women's golf los angeles"")",women's golf lessons los angeles,women's golf los angeles,2,4,google,2026-03-12 19:40:43.702601,women's golf clinic san francisco,women's golf lessons san francisco,los angeles,los angeles +abortion,"(""women's golf lessons los angeles"", ""women's golf club los angeles"")",women's golf lessons los angeles,women's golf club los angeles,3,4,google,2026-03-12 19:40:43.702601,women's golf clinic san francisco,women's golf lessons san francisco,los angeles,club +abortion,"(""women's golf lessons los angeles"", ""women's golf lessons sacramento"")",women's golf lessons los angeles,women's golf lessons sacramento,4,4,google,2026-03-12 19:40:43.702601,women's golf clinic san francisco,women's golf lessons san francisco,los angeles,sacramento +abortion,"(""women's golf lessons los angeles"", ""women's golf league los angeles"")",women's golf lessons los angeles,women's golf league los angeles,5,4,google,2026-03-12 19:40:43.702601,women's golf clinic san francisco,women's golf lessons san francisco,los angeles,league +abortion,"(""women's golf lessons st louis"", ""women's golf league st louis"")",women's golf lessons st louis,women's golf league st louis,1,4,google,2026-03-12 19:40:44.521375,women's golf clinic san francisco,women's golf lessons san francisco,st louis,league +abortion,"(""women's golf lessons st louis"", ""women's golf lessons louisville ky"")",women's golf lessons st louis,women's golf lessons louisville ky,2,4,google,2026-03-12 19:40:44.521375,women's golf clinic san francisco,women's golf lessons san francisco,st louis,louisville ky +abortion,"(""women's golf lessons st louis"", ""women's golf lessons san antonio"")",women's golf lessons st louis,women's golf lessons san antonio,3,4,google,2026-03-12 19:40:44.521375,women's golf clinic san francisco,women's golf lessons san francisco,st louis,san antonio +abortion,"(""women's golf clinic near me"", ""women's golf lessons near me"")",women's golf clinic near me,women's golf lessons near me,1,4,google,2026-03-12 19:40:45.444618,women's golf clinic san francisco,women's golf clinic,near me,lessons +abortion,"(""women's golf clinic near me"", 'ladies golf clinic near me')",women's golf clinic near me,ladies golf clinic near me,2,4,google,2026-03-12 19:40:45.444618,women's golf clinic san francisco,women's golf clinic,near me,ladies +abortion,"(""women's golf clinic near me"", ""women's golf lessons near me for beginners"")",women's golf clinic near me,women's golf lessons near me for beginners,3,4,google,2026-03-12 19:40:45.444618,women's golf clinic san francisco,women's golf clinic,near me,lessons for beginners +abortion,"(""women's golf clinic near me"", ""women's golf lessons near me for adults"")",women's golf clinic near me,women's golf lessons near me for adults,4,4,google,2026-03-12 19:40:45.444618,women's golf clinic san francisco,women's golf clinic,near me,lessons for adults +abortion,"(""women's golf clinic near me"", ""women's golf lessons near me for seniors"")",women's golf clinic near me,women's golf lessons near me for seniors,5,4,google,2026-03-12 19:40:45.444618,women's golf clinic san francisco,women's golf clinic,near me,lessons for seniors +abortion,"(""women's golf clinic near me"", ""women's golf camp near me"")",women's golf clinic near me,women's golf camp near me,6,4,google,2026-03-12 19:40:45.444618,women's golf clinic san francisco,women's golf clinic,near me,camp +abortion,"(""women's golf clinic near me"", 'woman golf lessons near me')",women's golf clinic near me,woman golf lessons near me,7,4,google,2026-03-12 19:40:45.444618,women's golf clinic san francisco,women's golf clinic,near me,woman lessons +abortion,"(""women's golf clinic near me"", ""women's beginner golf clinic near me"")",women's golf clinic near me,women's beginner golf clinic near me,8,4,google,2026-03-12 19:40:45.444618,women's golf clinic san francisco,women's golf clinic,near me,beginner +abortion,"(""women's golf clinic near me"", ""women's golf clinic 2025 near me"")",women's golf clinic near me,women's golf clinic 2025 near me,9,4,google,2026-03-12 19:40:45.444618,women's golf clinic san francisco,women's golf clinic,near me,2025 +abortion,"(""women's golf clinics 2026"", ""women's golf clinics near me"")",women's golf clinics 2026,women's golf clinics near me,1,4,google,2026-03-12 19:40:46.316112,women's golf clinic san francisco,women's golf clinic,clinics 2026,near me +abortion,"(""women's golf clinics 2026"", ""women's golf clinics arizona"")",women's golf clinics 2026,women's golf clinics arizona,2,4,google,2026-03-12 19:40:46.316112,women's golf clinic san francisco,women's golf clinic,clinics 2026,arizona +abortion,"(""women's golf clinics melbourne"", ""women's golf clinics"")",women's golf clinics melbourne,women's golf clinics,1,4,google,2026-03-12 19:40:47.532934,women's golf clinic san francisco,women's golf clinic,clinics melbourne,clinics melbourne +abortion,"(""women's golf clinics melbourne"", ""women's golf melbourne"")",women's golf clinics melbourne,women's golf melbourne,2,4,google,2026-03-12 19:40:47.532934,women's golf clinic san francisco,women's golf clinic,clinics melbourne,clinics melbourne +abortion,"(""women's golf clinics 2025"", ""women's golf clinics 2025 near me"")",women's golf clinics 2025,women's golf clinics 2025 near me,1,4,google,2026-03-12 19:40:48.915595,women's golf clinic san francisco,women's golf clinic,clinics 2025,near me +abortion,"(""women's golf clinics 2025"", ""best women's golf clinics 2025"")",women's golf clinics 2025,best women's golf clinics 2025,2,4,google,2026-03-12 19:40:48.915595,women's golf clinic san francisco,women's golf clinic,clinics 2025,best +abortion,"(""women's golf clinics 2025"", ""women's golf q school 2025"")",women's golf clinics 2025,women's golf q school 2025,3,4,google,2026-03-12 19:40:48.915595,women's golf clinic san francisco,women's golf clinic,clinics 2025,q school +abortion,"(""women's golf clinics 2025"", ""women's golf clinics"")",women's golf clinics 2025,women's golf clinics,4,4,google,2026-03-12 19:40:48.915595,women's golf clinic san francisco,women's golf clinic,clinics 2025,clinics 2025 +abortion,"(""women's golf clinics 2025"", ""women's golf clinics arizona"")",women's golf clinics 2025,women's golf clinics arizona,5,4,google,2026-03-12 19:40:48.915595,women's golf clinic san francisco,women's golf clinic,clinics 2025,arizona +abortion,"(""women's golf clinics 2025"", ""women's golf clinic ideas"")",women's golf clinics 2025,women's golf clinic ideas,6,4,google,2026-03-12 19:40:48.915595,women's golf clinic san francisco,women's golf clinic,clinics 2025,clinic ideas +abortion,"(""women's golf clinics 2025 near me"", ""latest women's golf results"")",women's golf clinics 2025 near me,latest women's golf results,1,4,google,2026-03-12 19:40:50.009981,women's golf clinic san francisco,women's golf clinic,clinics 2025 near me,latest results +abortion,"(""women's golf clinics 2025 near me"", ""women's golf clinics near me"")",women's golf clinics 2025 near me,women's golf clinics near me,2,4,google,2026-03-12 19:40:50.009981,women's golf clinic san francisco,women's golf clinic,clinics 2025 near me,clinics 2025 near me +abortion,"(""women's golf clinics 2025 near me"", ""women's golf clinics arizona"")",women's golf clinics 2025 near me,women's golf clinics arizona,3,4,google,2026-03-12 19:40:50.009981,women's golf clinic san francisco,women's golf clinic,clinics 2025 near me,arizona +abortion,"(""women's golf clinic boston"", ""women's golf lessons boston"")",women's golf clinic boston,women's golf lessons boston,1,4,google,2026-03-12 19:40:51.241676,women's golf clinic san francisco,women's golf clinic,boston,lessons +abortion,"(""women's golf clinic boston"", ""women's golf clinic"")",women's golf clinic boston,women's golf clinic,2,4,google,2026-03-12 19:40:51.241676,women's golf clinic san francisco,women's golf clinic,boston,boston +abortion,"(""women's golf clinic boston"", ""women's golf boston"")",women's golf clinic boston,women's golf boston,3,4,google,2026-03-12 19:40:51.241676,women's golf clinic san francisco,women's golf clinic,boston,boston +abortion,"(""women's golf clinic boston"", ""women's golf clinic ideas"")",women's golf clinic boston,women's golf clinic ideas,4,4,google,2026-03-12 19:40:51.241676,women's golf clinic san francisco,women's golf clinic,boston,ideas +abortion,"(""denver women's golf clinic"", ""denver women's golf lessons"")",denver women's golf clinic,denver women's golf lessons,1,4,google,2026-03-12 19:40:52.412215,women's golf clinic san francisco,women's golf clinic,denver,lessons +abortion,"(""denver women's golf clinic"", ""denver women's clinic"")",denver women's golf clinic,denver women's clinic,2,4,google,2026-03-12 19:40:52.412215,women's golf clinic san francisco,women's golf clinic,denver,denver +abortion,"(""denver women's golf clinic"", ""denver women's golf"")",denver women's golf clinic,denver women's golf,3,4,google,2026-03-12 19:40:52.412215,women's golf clinic san francisco,women's golf clinic,denver,denver +abortion,"(""denver women's golf clinic"", ""denver women's health clinic"")",denver women's golf clinic,denver women's health clinic,4,4,google,2026-03-12 19:40:52.412215,women's golf clinic san francisco,women's golf clinic,denver,health +abortion,"(""denver women's golf clinic"", ""denver women's golf schedule"")",denver women's golf clinic,denver women's golf schedule,5,4,google,2026-03-12 19:40:52.412215,women's golf clinic san francisco,women's golf clinic,denver,schedule +abortion,"(""denver women's golf clinic"", ""denver women's health center"")",denver women's golf clinic,denver women's health center,6,4,google,2026-03-12 19:40:52.412215,women's golf clinic san francisco,women's golf clinic,denver,health center +abortion,"(""women's golf clinic perth"", ""women's golf lessons perth"")",women's golf clinic perth,women's golf lessons perth,1,4,google,2026-03-12 19:40:53.507809,women's golf clinic san francisco,women's golf clinic,perth,lessons +abortion,"(""women's golf clinic perth"", 'ladies golf clinic perth')",women's golf clinic perth,ladies golf clinic perth,2,4,google,2026-03-12 19:40:53.507809,women's golf clinic san francisco,women's golf clinic,perth,ladies +abortion,"(""women's golf clinic perth"", ""women's golf clinic"")",women's golf clinic perth,women's golf clinic,3,4,google,2026-03-12 19:40:53.507809,women's golf clinic san francisco,women's golf clinic,perth,perth +abortion,"(""women's golf clinic perth"", ""women's golf clinic ideas"")",women's golf clinic perth,women's golf clinic ideas,4,4,google,2026-03-12 19:40:53.507809,women's golf clinic san francisco,women's golf clinic,perth,ideas +abortion,"(""women's wellness workshop ideas"", ""women's workshop ideas"")",women's wellness workshop ideas,women's workshop ideas,1,4,google,2026-03-12 19:40:54.672135,women's golf clinic san francisco,women's golf clinic ideas,wellness workshop,wellness workshop +abortion,"(""women's wellness workshop ideas"", ""women's wellness activities"")",women's wellness workshop ideas,women's wellness activities,2,4,google,2026-03-12 19:40:54.672135,women's golf clinic san francisco,women's golf clinic ideas,wellness workshop,activities +abortion,"(""women's wellness workshop ideas"", 'wellness workshop ideas')",women's wellness workshop ideas,wellness workshop ideas,3,4,google,2026-03-12 19:40:54.672135,women's golf clinic san francisco,women's golf clinic ideas,wellness workshop,wellness workshop +abortion,"(""women's wellness workshop ideas"", 'health and wellness workshop ideas')",women's wellness workshop ideas,health and wellness workshop ideas,4,4,google,2026-03-12 19:40:54.672135,women's golf clinic san francisco,women's golf clinic ideas,wellness workshop,health and +abortion,"(""women's wellness workshop ideas"", ""women's wellness workshop"")",women's wellness workshop ideas,women's wellness workshop,5,4,google,2026-03-12 19:40:54.672135,women's golf clinic san francisco,women's golf clinic ideas,wellness workshop,wellness workshop +abortion,"(""women's wellness workshop ideas"", ""women's wellness ideas"")",women's wellness workshop ideas,women's wellness ideas,6,4,google,2026-03-12 19:40:54.672135,women's golf clinic san francisco,women's golf clinic ideas,wellness workshop,wellness workshop +abortion,"(""women's wellness workshop ideas"", ""women's empowerment workshop ideas"")",women's wellness workshop ideas,women's empowerment workshop ideas,7,4,google,2026-03-12 19:40:54.672135,women's golf clinic san francisco,women's golf clinic ideas,wellness workshop,empowerment +abortion,"('ladies golf clinic ideas', ""women's golf clinic ideas"")",ladies golf clinic ideas,women's golf clinic ideas,1,4,google,2026-03-12 19:40:56.114526,women's golf clinic san francisco,women's golf clinic ideas,ladies,women's +abortion,"('ladies golf clinic ideas', 'ladies clinic golf')",ladies golf clinic ideas,ladies clinic golf,2,4,google,2026-03-12 19:40:56.114526,women's golf clinic san francisco,women's golf clinic ideas,ladies,ladies +abortion,"('abortion clinic open near me', ""women's clinic open near me"")",abortion clinic open near me,women's clinic open near me,1,4,google,2026-03-12 19:40:57.550545,abortion clinic near me open now,abortion clinic near me open now within 8.1 km,within 8.1 km,women's +abortion,"('abortion clinic open near me', 'abortion clinic open sunday near me')",abortion clinic open near me,abortion clinic open sunday near me,2,4,google,2026-03-12 19:40:57.550545,abortion clinic near me open now,abortion clinic near me open now within 8.1 km,within 8.1 km,sunday +abortion,"('abortion clinic open near me', 'abortion clinic open now near me')",abortion clinic open near me,abortion clinic open now near me,3,4,google,2026-03-12 19:40:57.550545,abortion clinic near me open now,abortion clinic near me open now within 8.1 km,within 8.1 km,now +abortion,"('abortion clinic open near me', 'abortion clinic open today near me')",abortion clinic open near me,abortion clinic open today near me,4,4,google,2026-03-12 19:40:57.550545,abortion clinic near me open now,abortion clinic near me open now within 8.1 km,within 8.1 km,today +abortion,"('abortion clinic open near me', 'abortion clinic open saturday near me')",abortion clinic open near me,abortion clinic open saturday near me,5,4,google,2026-03-12 19:40:57.550545,abortion clinic near me open now,abortion clinic near me open now within 8.1 km,within 8.1 km,saturday +abortion,"('abortion clinic open near me', 'abortion clinics still open near me')",abortion clinic open near me,abortion clinics still open near me,6,4,google,2026-03-12 19:40:57.550545,abortion clinic near me open now,abortion clinic near me open now within 8.1 km,within 8.1 km,clinics still +abortion,"('abortion clinic open near me', ""women's clinic open saturday near me"")",abortion clinic open near me,women's clinic open saturday near me,7,4,google,2026-03-12 19:40:57.550545,abortion clinic near me open now,abortion clinic near me open now within 8.1 km,within 8.1 km,women's saturday +abortion,"('abortion clinic open near me', ""women's health clinic open near me"")",abortion clinic open near me,women's health clinic open near me,8,4,google,2026-03-12 19:40:57.550545,abortion clinic near me open now,abortion clinic near me open now within 8.1 km,within 8.1 km,women's health +abortion,"('abortion clinic open near me', ""women's clinic open now near me"")",abortion clinic open near me,women's clinic open now near me,9,4,google,2026-03-12 19:40:57.550545,abortion clinic near me open now,abortion clinic near me open now within 8.1 km,within 8.1 km,women's now +abortion,"('abortion clinic open on weekends near me', 'abortion clinic open on saturday near me')",abortion clinic open on weekends near me,abortion clinic open on saturday near me,1,4,google,2026-03-12 19:40:58.427894,abortion clinic near me open now,abortion clinic near me open now within 8.1 km,on weekends,saturday +abortion,"('abortion clinic open on weekends near me', 'abortion clinic open near me')",abortion clinic open on weekends near me,abortion clinic open near me,2,4,google,2026-03-12 19:40:58.427894,abortion clinic near me open now,abortion clinic near me open now within 8.1 km,on weekends,on weekends +abortion,"('abortion clinic open on weekends near me', 'abortion clinic open now near me')",abortion clinic open on weekends near me,abortion clinic open now near me,3,4,google,2026-03-12 19:40:58.427894,abortion clinic near me open now,abortion clinic near me open now within 8.1 km,on weekends,now +abortion,"('abortion clinic open on weekends near me', ""women's clinic open near me"")",abortion clinic open on weekends near me,women's clinic open near me,4,4,google,2026-03-12 19:40:58.427894,abortion clinic near me open now,abortion clinic near me open now within 8.1 km,on weekends,women's +abortion,"('abortion clinic open on weekends near me', 'abortion clinic open sunday near me')",abortion clinic open on weekends near me,abortion clinic open sunday near me,5,4,google,2026-03-12 19:40:58.427894,abortion clinic near me open now,abortion clinic near me open now within 8.1 km,on weekends,sunday +abortion,"('abortion clinic near me open on saturday', 'abortion clinic near me open on weekends')",abortion clinic near me open on saturday,abortion clinic near me open on weekends,1,4,google,2026-03-12 19:40:59.685248,abortion clinic near me open now,abortion clinic near me open now within 20 mi,on saturday,weekends +abortion,"('abortion clinic near me open on saturday', 'abortion clinic near me open saturday')",abortion clinic near me open on saturday,abortion clinic near me open saturday,2,4,google,2026-03-12 19:40:59.685248,abortion clinic near me open now,abortion clinic near me open now within 20 mi,on saturday,on saturday +abortion,"('abortion clinic near me open on saturday', ""women's clinic near me open on weekends"")",abortion clinic near me open on saturday,women's clinic near me open on weekends,3,4,google,2026-03-12 19:40:59.685248,abortion clinic near me open now,abortion clinic near me open now within 20 mi,on saturday,women's weekends +abortion,"('abortion clinic near me open on saturday', ""women's clinic near me open saturday"")",abortion clinic near me open on saturday,women's clinic near me open saturday,4,4,google,2026-03-12 19:40:59.685248,abortion clinic near me open now,abortion clinic near me open now within 20 mi,on saturday,women's +abortion,"('abortion clinic near me open on saturday', 'abortion clinic open near me')",abortion clinic near me open on saturday,abortion clinic open near me,5,4,google,2026-03-12 19:40:59.685248,abortion clinic near me open now,abortion clinic near me open now within 20 mi,on saturday,on saturday +abortion,"('abortion clinic near me open on saturday', 'abortion clinic near me open sunday')",abortion clinic near me open on saturday,abortion clinic near me open sunday,6,4,google,2026-03-12 19:40:59.685248,abortion clinic near me open now,abortion clinic near me open now within 20 mi,on saturday,sunday +abortion,"('abortion clinic near me up to 20 weeks', 'abortion clinic near me 20 weeks')",abortion clinic near me up to 20 weeks,abortion clinic near me 20 weeks,1,4,google,2026-03-12 19:41:00.993892,abortion clinic near me open now,abortion clinic near me open now within 20 mi,up to weeks,up to weeks +abortion,"('abortion clinic near me up to 20 weeks', 'abortion clinic up to 20 weeks')",abortion clinic near me up to 20 weeks,abortion clinic up to 20 weeks,2,4,google,2026-03-12 19:41:00.993892,abortion clinic near me open now,abortion clinic near me open now within 20 mi,up to weeks,up to weeks +abortion,"('abortion clinic near me up to 20 weeks', 'can you get an abortion at 20 weeks in illinois')",abortion clinic near me up to 20 weeks,can you get an abortion at 20 weeks in illinois,3,4,google,2026-03-12 19:41:00.993892,abortion clinic near me open now,abortion clinic near me open now within 20 mi,up to weeks,can you get an at in illinois +abortion,"('abortion clinic near me up to 20 weeks', 'abortion clinic near me 15 weeks')",abortion clinic near me up to 20 weeks,abortion clinic near me 15 weeks,4,4,google,2026-03-12 19:41:00.993892,abortion clinic near me open now,abortion clinic near me open now within 20 mi,up to weeks,15 +abortion,"('abortion clinic near me up to 20 weeks', 'abortion clinic near me 24 hours')",abortion clinic near me up to 20 weeks,abortion clinic near me 24 hours,5,4,google,2026-03-12 19:41:00.993892,abortion clinic near me open now,abortion clinic near me open now within 20 mi,up to weeks,24 hours +abortion,"('abortion clinic near me up to 20 weeks', 'abortion clinic near me 13 weeks')",abortion clinic near me up to 20 weeks,abortion clinic near me 13 weeks,6,4,google,2026-03-12 19:41:00.993892,abortion clinic near me open now,abortion clinic near me open now within 20 mi,up to weeks,13 +abortion,"('women hospital near me open now', 'open hospital near me now')",women hospital near me open now,open hospital near me now,1,4,google,2026-03-12 19:41:01.823929,abortion clinic near me open now,women's clinic near me open now,women hospital,women hospital +abortion,"('women hospital near me open now', ""women's clinic open near me"")",women hospital near me open now,women's clinic open near me,2,4,google,2026-03-12 19:41:01.823929,abortion clinic near me open now,women's clinic near me open now,women hospital,women's clinic +abortion,"('women hospital near me open now', 'are there any walk in clinics open near me')",women hospital near me open now,are there any walk in clinics open near me,3,4,google,2026-03-12 19:41:01.823929,abortion clinic near me open now,women's clinic near me open now,women hospital,are there any walk in clinics +abortion,"('women hospital near me open now', ""women's hospital near me"")",women hospital near me open now,women's hospital near me,4,4,google,2026-03-12 19:41:01.823929,abortion clinic near me open now,women's clinic near me open now,women hospital,women's +abortion,"('women hospital near me open now', 'woman hospital near me')",women hospital near me open now,woman hospital near me,5,4,google,2026-03-12 19:41:01.823929,abortion clinic near me open now,women's clinic near me open now,women hospital,woman +abortion,"('women hospital near me open now', ""women's hospital emergency room near me"")",women hospital near me open now,women's hospital emergency room near me,6,4,google,2026-03-12 19:41:01.823929,abortion clinic near me open now,women's clinic near me open now,women hospital,women's emergency room +abortion,"('women hospital near me open now', ""women's clinic near me open on weekends"")",women hospital near me open now,women's clinic near me open on weekends,7,4,google,2026-03-12 19:41:01.823929,abortion clinic near me open now,women's clinic near me open now,women hospital,women's clinic on weekends +abortion,"('women doctor near me open now', 'woman doctor near me open now')",women doctor near me open now,woman doctor near me open now,1,4,google,2026-03-12 19:41:03.054104,abortion clinic near me open now,women's clinic near me open now,women doctor,woman +abortion,"('women doctor near me open now', 'women dr near me open now')",women doctor near me open now,women dr near me open now,2,4,google,2026-03-12 19:41:03.054104,abortion clinic near me open now,women's clinic near me open now,women doctor,dr +abortion,"('women doctor near me open now', ""women's clinic near me open now"")",women doctor near me open now,women's clinic near me open now,3,4,google,2026-03-12 19:41:03.054104,abortion clinic near me open now,women's clinic near me open now,women doctor,women's clinic +abortion,"('women doctor near me open now', 'women specialist near me open now')",women doctor near me open now,women specialist near me open now,4,4,google,2026-03-12 19:41:03.054104,abortion clinic near me open now,women's clinic near me open now,women doctor,specialist +abortion,"('women doctor near me open now', 'lady doctor near me open now within 1.6 km')",women doctor near me open now,lady doctor near me open now within 1.6 km,5,4,google,2026-03-12 19:41:03.054104,abortion clinic near me open now,women's clinic near me open now,women doctor,lady within 1.6 km +abortion,"('women doctor near me open now', ""women's clinic near me open now within 5 mi"")",women doctor near me open now,women's clinic near me open now within 5 mi,6,4,google,2026-03-12 19:41:03.054104,abortion clinic near me open now,women's clinic near me open now,women doctor,women's clinic within 5 mi +abortion,"('women doctor near me open now', 'lady doctor near me open now within 800m')",women doctor near me open now,lady doctor near me open now within 800m,7,4,google,2026-03-12 19:41:03.054104,abortion clinic near me open now,women's clinic near me open now,women doctor,lady within 800m +abortion,"('women doctor near me open now', 'female physician near me open now')",women doctor near me open now,female physician near me open now,8,4,google,2026-03-12 19:41:03.054104,abortion clinic near me open now,women's clinic near me open now,women doctor,female physician +abortion,"('women doctor near me open now', 'lady doctor clinic near me open now')",women doctor near me open now,lady doctor clinic near me open now,9,4,google,2026-03-12 19:41:03.054104,abortion clinic near me open now,women's clinic near me open now,women doctor,lady clinic +abortion,"('women center near me open now', ""women's clinic near me open now"")",women center near me open now,women's clinic near me open now,1,4,google,2026-03-12 19:41:04.559303,abortion clinic near me open now,women's clinic near me open now,women center,women's clinic +abortion,"('women center near me open now', ""women's clinic near me open now within 5 mi"")",women center near me open now,women's clinic near me open now within 5 mi,2,4,google,2026-03-12 19:41:04.559303,abortion clinic near me open now,women's clinic near me open now,women center,women's clinic within 5 mi +abortion,"('women center near me open now', ""women's health center near me open now"")",women center near me open now,women's health center near me open now,3,4,google,2026-03-12 19:41:04.559303,abortion clinic near me open now,women's clinic near me open now,women center,women's health +abortion,"('women center near me open now', ""women's care center near me open now"")",women center near me open now,women's care center near me open now,4,4,google,2026-03-12 19:41:04.559303,abortion clinic near me open now,women's clinic near me open now,women center,women's care +abortion,"('women center near me open now', ""women's pregnancy center near me open now"")",women center near me open now,women's pregnancy center near me open now,5,4,google,2026-03-12 19:41:04.559303,abortion clinic near me open now,women's clinic near me open now,women center,women's pregnancy +abortion,"('women center near me open now', ""women's health clinic near me open now"")",women center near me open now,women's health clinic near me open now,6,4,google,2026-03-12 19:41:04.559303,abortion clinic near me open now,women's clinic near me open now,women center,women's health clinic +abortion,"('women center near me open now', ""free women's clinic near me open now"")",women center near me open now,free women's clinic near me open now,7,4,google,2026-03-12 19:41:04.559303,abortion clinic near me open now,women's clinic near me open now,women center,free women's clinic +abortion,"('women center near me open now', 'women specialist clinic near me open now')",women center near me open now,women specialist clinic near me open now,8,4,google,2026-03-12 19:41:04.559303,abortion clinic near me open now,women's clinic near me open now,women center,specialist clinic +abortion,"('women center near me open now', 'women police station near me open now')",women center near me open now,women police station near me open now,9,4,google,2026-03-12 19:41:04.559303,abortion clinic near me open now,women's clinic near me open now,women center,police station +abortion,"('woman doctor near me open now', 'women doctor near me open now')",woman doctor near me open now,women doctor near me open now,1,4,google,2026-03-12 19:41:05.766731,abortion clinic near me open now,women's clinic near me open now,woman doctor,women +abortion,"('woman doctor near me open now', 'women dr near me open now')",woman doctor near me open now,women dr near me open now,2,4,google,2026-03-12 19:41:05.766731,abortion clinic near me open now,women's clinic near me open now,woman doctor,women dr +abortion,"('woman doctor near me open now', 'women clinic near me open now')",woman doctor near me open now,women clinic near me open now,3,4,google,2026-03-12 19:41:05.766731,abortion clinic near me open now,women's clinic near me open now,woman doctor,women clinic +abortion,"('woman doctor near me open now', 'lady doctor near me open now within 1.6 km')",woman doctor near me open now,lady doctor near me open now within 1.6 km,4,4,google,2026-03-12 19:41:05.766731,abortion clinic near me open now,women's clinic near me open now,woman doctor,lady within 1.6 km +abortion,"('woman doctor near me open now', 'lady doctor near me open now within 800m')",woman doctor near me open now,lady doctor near me open now within 800m,5,4,google,2026-03-12 19:41:05.766731,abortion clinic near me open now,women's clinic near me open now,woman doctor,lady within 800m +abortion,"('woman doctor near me open now', 'women specialist near me open now')",woman doctor near me open now,women specialist near me open now,6,4,google,2026-03-12 19:41:05.766731,abortion clinic near me open now,women's clinic near me open now,woman doctor,women specialist +abortion,"('woman doctor near me open now', ""women's clinic near me open now within 5 mi"")",woman doctor near me open now,women's clinic near me open now within 5 mi,7,4,google,2026-03-12 19:41:05.766731,abortion clinic near me open now,women's clinic near me open now,woman doctor,women's clinic within 5 mi +abortion,"('woman doctor near me open now', 'female physician near me open now')",woman doctor near me open now,female physician near me open now,8,4,google,2026-03-12 19:41:05.766731,abortion clinic near me open now,women's clinic near me open now,woman doctor,female physician +abortion,"('woman doctor near me open now', 'lady doctor clinic near me open now')",woman doctor near me open now,lady doctor clinic near me open now,9,4,google,2026-03-12 19:41:05.766731,abortion clinic near me open now,women's clinic near me open now,woman doctor,lady clinic +abortion,"(""women's health clinic near me open now"", ""women's health center near me open now"")",women's health clinic near me open now,women's health center near me open now,1,4,google,2026-03-12 19:41:07.133242,abortion clinic near me open now,women's clinic near me open now,health,center +abortion,"(""women's health clinic near me open now"", ""free women's health clinic near me open now"")",women's health clinic near me open now,free women's health clinic near me open now,2,4,google,2026-03-12 19:41:07.133242,abortion clinic near me open now,women's clinic near me open now,health,free +abortion,"(""women's health clinic near me open now"", 'health clinic near me open now')",women's health clinic near me open now,health clinic near me open now,3,4,google,2026-03-12 19:41:07.133242,abortion clinic near me open now,women's clinic near me open now,health,health +abortion,"(""women's health clinic near me open now"", ""women's clinic open near me"")",women's health clinic near me open now,women's clinic open near me,4,4,google,2026-03-12 19:41:07.133242,abortion clinic near me open now,women's clinic near me open now,health,health +abortion,"(""women's health clinic near me open now"", 'are there any medical clinics open today near me')",women's health clinic near me open now,are there any medical clinics open today near me,5,4,google,2026-03-12 19:41:07.133242,abortion clinic near me open now,women's clinic near me open now,health,are there any medical clinics today +abortion,"(""women's health clinic near me open now"", 'public clinic near me open')",women's health clinic near me open now,public clinic near me open,6,4,google,2026-03-12 19:41:07.133242,abortion clinic near me open now,women's clinic near me open now,health,public +abortion,"(""women's health clinic near me open now"", ""women's clinic near me open on weekends"")",women's health clinic near me open now,women's clinic near me open on weekends,7,4,google,2026-03-12 19:41:07.133242,abortion clinic near me open now,women's clinic near me open now,health,on weekends +abortion,"(""women's health clinic near me open now"", ""women's health clinic near me free"")",women's health clinic near me open now,women's health clinic near me free,8,4,google,2026-03-12 19:41:07.133242,abortion clinic near me open now,women's clinic near me open now,health,free +abortion,"(""women's health clinic near me open now"", ""women's health clinic near me no insurance"")",women's health clinic near me open now,women's health clinic near me no insurance,9,4,google,2026-03-12 19:41:07.133242,abortion clinic near me open now,women's clinic near me open now,health,no insurance +abortion,"('women specialist clinic near me open now', 'women specialist doctor near me open now')",women specialist clinic near me open now,women specialist doctor near me open now,1,4,google,2026-03-12 19:41:08.487661,abortion clinic near me open now,women's clinic near me open now,women specialist,doctor +abortion,"('women specialist clinic near me open now', 'female breast doctor specialist near me open now')",women specialist clinic near me open now,female breast doctor specialist near me open now,2,4,google,2026-03-12 19:41:08.487661,abortion clinic near me open now,women's clinic near me open now,women specialist,female breast doctor +abortion,"('women specialist clinic near me open now', 'public clinic near me open')",women specialist clinic near me open now,public clinic near me open,3,4,google,2026-03-12 19:41:08.487661,abortion clinic near me open now,women's clinic near me open now,women specialist,public +abortion,"('women specialist clinic near me open now', ""women's clinic open near me"")",women specialist clinic near me open now,women's clinic open near me,4,4,google,2026-03-12 19:41:08.487661,abortion clinic near me open now,women's clinic near me open now,women specialist,women's +abortion,"('women specialist clinic near me open now', 'open doctors clinic near me')",women specialist clinic near me open now,open doctors clinic near me,5,4,google,2026-03-12 19:41:08.487661,abortion clinic near me open now,women's clinic near me open now,women specialist,doctors +abortion,"('women specialist clinic near me open now', ""women's specialist clinic"")",women specialist clinic near me open now,women's specialist clinic,6,4,google,2026-03-12 19:41:08.487661,abortion clinic near me open now,women's clinic near me open now,women specialist,women's +abortion,"('women specialist clinic near me open now', ""women's clinic near me open on weekends"")",women specialist clinic near me open now,women's clinic near me open on weekends,7,4,google,2026-03-12 19:41:08.487661,abortion clinic near me open now,women's clinic near me open now,women specialist,women's on weekends +abortion,"('women specialist clinic near me open now', 'woman specialist clinic')",women specialist clinic near me open now,woman specialist clinic,8,4,google,2026-03-12 19:41:08.487661,abortion clinic near me open now,women's clinic near me open now,women specialist,woman +abortion,"('women specialist clinic near me open now', ""women's clinic near me walk-in"")",women specialist clinic near me open now,women's clinic near me walk-in,9,4,google,2026-03-12 19:41:08.487661,abortion clinic near me open now,women's clinic near me open now,women specialist,women's walk-in +abortion,"(""walk in women's clinic near me open now"", ""walk in women's clinic open now"")",walk in women's clinic near me open now,walk in women's clinic open now,1,4,google,2026-03-12 19:41:09.513879,abortion clinic near me open now,women's clinic near me open now,walk in,walk in +abortion,"(""walk in women's clinic near me open now"", ""walk-in women's clinic near me"")",walk in women's clinic near me open now,walk-in women's clinic near me,2,4,google,2026-03-12 19:41:09.513879,abortion clinic near me open now,women's clinic near me open now,walk in,walk-in +abortion,"(""walk in women's clinic near me open now"", 'are there any walk in clinics open near me')",walk in women's clinic near me open now,are there any walk in clinics open near me,3,4,google,2026-03-12 19:41:09.513879,abortion clinic near me open now,women's clinic near me open now,walk in,are there any clinics +abortion,"(""walk in women's clinic near me open now"", 'what walk in clinics are open today')",walk in women's clinic near me open now,what walk in clinics are open today,4,4,google,2026-03-12 19:41:09.513879,abortion clinic near me open now,women's clinic near me open now,walk in,what clinics are today +abortion,"(""walk in women's clinic near me open now"", 'walk in medical clinic near me open now')",walk in women's clinic near me open now,walk in medical clinic near me open now,5,4,google,2026-03-12 19:41:09.513879,abortion clinic near me open now,women's clinic near me open now,walk in,medical +abortion,"('private abortion clinic near me open now', 'private abortion clinic near me')",private abortion clinic near me open now,private abortion clinic near me,1,4,google,2026-03-12 19:41:10.663834,abortion clinic near me open now,abortion hospital near me open now,private clinic,private clinic +abortion,"('private abortion clinic near me open now', 'private abortion clinic cost')",private abortion clinic near me open now,private abortion clinic cost,2,4,google,2026-03-12 19:41:10.663834,abortion clinic near me open now,abortion hospital near me open now,private clinic,cost +abortion,"('private abortion clinic near me open now', 'abortion clinic near me open on saturday')",private abortion clinic near me open now,abortion clinic near me open on saturday,3,4,google,2026-03-12 19:41:10.663834,abortion clinic near me open now,abortion hospital near me open now,private clinic,on saturday +abortion,"('private abortion clinic near me open now', 'abortion clinic near me online appointment')",private abortion clinic near me open now,abortion clinic near me online appointment,4,4,google,2026-03-12 19:41:10.663834,abortion clinic near me open now,abortion hospital near me open now,private clinic,online appointment +abortion,"('private abortion clinic near me open now', 'abortion clinic near me open sunday')",private abortion clinic near me open now,abortion clinic near me open sunday,5,4,google,2026-03-12 19:41:10.663834,abortion clinic near me open now,abortion hospital near me open now,private clinic,sunday +abortion,"('cheap abortion clinics near me open now', 'free abortion clinics near me open now')",cheap abortion clinics near me open now,free abortion clinics near me open now,1,4,google,2026-03-12 19:41:11.980385,abortion clinic near me open now,abortion hospital near me open now,cheap clinics,free +abortion,"('cheap abortion clinics near me open now', 'abortion clinics near me open now')",cheap abortion clinics near me open now,abortion clinics near me open now,2,4,google,2026-03-12 19:41:11.980385,abortion clinic near me open now,abortion hospital near me open now,cheap clinics,cheap clinics +abortion,"('cheap abortion clinics near me open now', 'abortion clinic near me open now within 8.1 km')",cheap abortion clinics near me open now,abortion clinic near me open now within 8.1 km,3,4,google,2026-03-12 19:41:11.980385,abortion clinic near me open now,abortion hospital near me open now,cheap clinics,clinic within 8.1 km +abortion,"('cheap abortion clinics near me open now', 'abortion clinic near me open now within 20 mi')",cheap abortion clinics near me open now,abortion clinic near me open now within 20 mi,4,4,google,2026-03-12 19:41:11.980385,abortion clinic near me open now,abortion hospital near me open now,cheap clinics,clinic within 20 mi +abortion,"('cheap abortion clinics near me open now', 'abortion clinic near me open now within 5 mi')",cheap abortion clinics near me open now,abortion clinic near me open now within 5 mi,5,4,google,2026-03-12 19:41:11.980385,abortion clinic near me open now,abortion hospital near me open now,cheap clinics,clinic within 5 mi +abortion,"('cheap abortion clinics near me open now', 'abortion doctors near me open now')",cheap abortion clinics near me open now,abortion doctors near me open now,6,4,google,2026-03-12 19:41:11.980385,abortion clinic near me open now,abortion hospital near me open now,cheap clinics,doctors +abortion,"('cheap abortion clinics near me open now', 'surgical abortion clinics near me open now')",cheap abortion clinics near me open now,surgical abortion clinics near me open now,7,4,google,2026-03-12 19:41:11.980385,abortion clinic near me open now,abortion hospital near me open now,cheap clinics,surgical +abortion,"('cheap abortion clinics near me open now', 'termination clinics near me open now')",cheap abortion clinics near me open now,termination clinics near me open now,8,4,google,2026-03-12 19:41:11.980385,abortion clinic near me open now,abortion hospital near me open now,cheap clinics,termination +abortion,"('cheap abortion clinics near me open now', 'private abortion clinic near me open now')",cheap abortion clinics near me open now,private abortion clinic near me open now,9,4,google,2026-03-12 19:41:11.980385,abortion clinic near me open now,abortion hospital near me open now,cheap clinics,private clinic +abortion,"('safe abortion clinic near me open now', 'abortion clinic near me now')",safe abortion clinic near me open now,abortion clinic near me now,1,4,google,2026-03-12 19:41:13.453674,abortion clinic near me open now,abortion hospital near me open now,safe clinic,safe clinic +abortion,"('safe abortion clinic near me open now', 'abortion clinic open near me')",safe abortion clinic near me open now,abortion clinic open near me,2,4,google,2026-03-12 19:41:13.453674,abortion clinic near me open now,abortion hospital near me open now,safe clinic,safe clinic +abortion,"('safe abortion clinic near me open now', 'abortion clinic open on saturday near me')",safe abortion clinic near me open now,abortion clinic open on saturday near me,3,4,google,2026-03-12 19:41:13.453674,abortion clinic near me open now,abortion hospital near me open now,safe clinic,on saturday +abortion,"('safe abortion clinic near me open now', 'abortion clinic for free near me')",safe abortion clinic near me open now,abortion clinic for free near me,4,4,google,2026-03-12 19:41:13.453674,abortion clinic near me open now,abortion hospital near me open now,safe clinic,for free +abortion,"('safe abortion clinic near me open now', 'abortion clinic near me open sunday')",safe abortion clinic near me open now,abortion clinic near me open sunday,5,4,google,2026-03-12 19:41:13.453674,abortion clinic near me open now,abortion hospital near me open now,safe clinic,sunday +abortion,"('free abortion center near me open now', 'free abortion centers near me')",free abortion center near me open now,free abortion centers near me,1,4,google,2026-03-12 19:41:14.421842,abortion clinic near me open now,abortion centers near me open now,free center,centers +abortion,"('free abortion center near me open now', 'free abortion clinics near me')",free abortion center near me open now,free abortion clinics near me,2,4,google,2026-03-12 19:41:14.421842,abortion clinic near me open now,abortion centers near me open now,free center,clinics +abortion,"('abortion center near me open now', 'abortion clinic near me open now')",abortion center near me open now,abortion clinic near me open now,1,4,google,2026-03-12 19:41:15.773331,abortion clinic near me open now,abortion services near me open now,center,clinic +abortion,"('abortion center near me open now', 'abortion hospital near me open now')",abortion center near me open now,abortion hospital near me open now,2,4,google,2026-03-12 19:41:15.773331,abortion clinic near me open now,abortion services near me open now,center,hospital +abortion,"('abortion center near me open now', 'abortion clinic near me open now within 8.1 km')",abortion center near me open now,abortion clinic near me open now within 8.1 km,3,4,google,2026-03-12 19:41:15.773331,abortion clinic near me open now,abortion services near me open now,center,clinic within 8.1 km +abortion,"('abortion center near me open now', 'abortion services near me open now')",abortion center near me open now,abortion services near me open now,4,4,google,2026-03-12 19:41:15.773331,abortion clinic near me open now,abortion services near me open now,center,services +abortion,"('abortion center near me open now', 'abortion clinic near me open now within 20 mi')",abortion center near me open now,abortion clinic near me open now within 20 mi,5,4,google,2026-03-12 19:41:15.773331,abortion clinic near me open now,abortion services near me open now,center,clinic within 20 mi +abortion,"('abortion center near me open now', 'abortion clinic near me open now within 5 mi')",abortion center near me open now,abortion clinic near me open now within 5 mi,6,4,google,2026-03-12 19:41:15.773331,abortion clinic near me open now,abortion services near me open now,center,clinic within 5 mi +abortion,"('abortion center near me open now', 'free abortion center near me open now')",abortion center near me open now,free abortion center near me open now,7,4,google,2026-03-12 19:41:15.773331,abortion clinic near me open now,abortion services near me open now,center,free +abortion,"('abortion center near me open now', 'abortion clinic near me open today')",abortion center near me open now,abortion clinic near me open today,8,4,google,2026-03-12 19:41:15.773331,abortion clinic near me open now,abortion services near me open now,center,clinic today +abortion,"('abortion center near me open now', 'private abortion clinic near me open now')",abortion center near me open now,private abortion clinic near me open now,9,4,google,2026-03-12 19:41:15.773331,abortion clinic near me open now,abortion services near me open now,center,private clinic +abortion,"(""women's clinic open near me"", ""women's clinic open saturday near me"")",women's clinic open near me,women's clinic open saturday near me,1,4,google,2026-03-12 19:41:16.843536,abortion clinic near me open now,women's clinic near me open now within 5 mi,women's within 5 mi,saturday +abortion,"(""women's clinic open near me"", ""women's health clinic open near me"")",women's clinic open near me,women's health clinic open near me,2,4,google,2026-03-12 19:41:16.843536,abortion clinic near me open now,women's clinic near me open now within 5 mi,women's within 5 mi,health +abortion,"(""women's clinic open near me"", ""women's clinic open now near me"")",women's clinic open near me,women's clinic open now near me,3,4,google,2026-03-12 19:41:16.843536,abortion clinic near me open now,women's clinic near me open now within 5 mi,women's within 5 mi,now +abortion,"(""women's clinic open near me"", ""women's clinic open on sunday near me"")",women's clinic open near me,women's clinic open on sunday near me,4,4,google,2026-03-12 19:41:16.843536,abortion clinic near me open now,women's clinic near me open now within 5 mi,women's within 5 mi,on sunday +abortion,"(""women's clinic open near me"", ""women's clinics open on weekends near me"")",women's clinic open near me,women's clinics open on weekends near me,5,4,google,2026-03-12 19:41:16.843536,abortion clinic near me open now,women's clinic near me open now within 5 mi,women's within 5 mi,clinics on weekends +abortion,"(""women's clinic open near me"", ""women's clinic near me open now within 5 mi"")",women's clinic open near me,women's clinic near me open now within 5 mi,6,4,google,2026-03-12 19:41:16.843536,abortion clinic near me open now,women's clinic near me open now within 5 mi,women's within 5 mi,now within 5 mi +abortion,"(""women's clinic open near me"", ""women's health clinic near me open now"")",women's clinic open near me,women's health clinic near me open now,7,4,google,2026-03-12 19:41:16.843536,abortion clinic near me open now,women's clinic near me open now within 5 mi,women's within 5 mi,health now +abortion,"(""women's clinic open near me"", ""free women's clinic near me open now"")",women's clinic open near me,free women's clinic near me open now,8,4,google,2026-03-12 19:41:16.843536,abortion clinic near me open now,women's clinic near me open now within 5 mi,women's within 5 mi,free now +abortion,"(""women's clinic open near me"", 'women specialist clinic near me open now')",women's clinic open near me,women specialist clinic near me open now,9,4,google,2026-03-12 19:41:16.843536,abortion clinic near me open now,women's clinic near me open now within 5 mi,women's within 5 mi,women specialist now +abortion,"(""24 hour women's clinic near me"", '24 hour clinic near me')",24 hour women's clinic near me,24 hour clinic near me,1,4,google,2026-03-12 19:41:18.141840,abortion clinic near me open now,women's clinic near me open now within 5 mi,24 hour,24 hour +abortion,"(""24 hour women's clinic near me"", ""same day women's clinic near me"")",24 hour women's clinic near me,same day women's clinic near me,2,4,google,2026-03-12 19:41:18.141840,abortion clinic near me open now,women's clinic near me open now within 5 mi,24 hour,same day +abortion,"(""24 hour women's clinic near me"", '24 clinic near me')",24 hour women's clinic near me,24 clinic near me,3,4,google,2026-03-12 19:41:18.141840,abortion clinic near me open now,women's clinic near me open now within 5 mi,24 hour,24 hour +abortion,"(""24 hour women's clinic near me"", ""24/7 women's clinic"")",24 hour women's clinic near me,24/7 women's clinic,4,4,google,2026-03-12 19:41:18.141840,abortion clinic near me open now,women's clinic near me open now within 5 mi,24 hour,24/7 +abortion,"(""24 hour women's clinic near me"", ""walk-in women's clinic near me"")",24 hour women's clinic near me,walk-in women's clinic near me,5,4,google,2026-03-12 19:41:18.141840,abortion clinic near me open now,women's clinic near me open now within 5 mi,24 hour,walk-in +abortion,"(""24 hour women's clinic near me"", '24 hour gynecologist clinic')",24 hour women's clinic near me,24 hour gynecologist clinic,6,4,google,2026-03-12 19:41:18.141840,abortion clinic near me open now,women's clinic near me open now within 5 mi,24 hour,gynecologist +abortion,"(""women's clinic near me no insurance"", ""free women's clinic near me no insurance"")",women's clinic near me no insurance,free women's clinic near me no insurance,1,4,google,2026-03-12 19:41:19.387477,abortion clinic near me open now,women's clinic near me open now within 5 mi,no insurance,free +abortion,"(""women's clinic near me no insurance"", ""women's health clinic near me no insurance"")",women's clinic near me no insurance,women's health clinic near me no insurance,2,4,google,2026-03-12 19:41:19.387477,abortion clinic near me open now,women's clinic near me open now within 5 mi,no insurance,health +abortion,"(""women's clinic near me no insurance"", 'what clinic can i go to without insurance')",women's clinic near me no insurance,what clinic can i go to without insurance,3,4,google,2026-03-12 19:41:19.387477,abortion clinic near me open now,women's clinic near me open now within 5 mi,no insurance,what can i go to without +abortion,"(""women's clinic near me open on weekends"", ""women's clinic near me open saturday"")",women's clinic near me open on weekends,women's clinic near me open saturday,1,4,google,2026-03-12 19:41:20.269308,abortion clinic near me open now,women's clinic near me open now within 5 mi,on weekends,saturday +abortion,"(""women's clinic near me open on weekends"", ""women's clinic open near me"")",women's clinic near me open on weekends,women's clinic open near me,2,4,google,2026-03-12 19:41:20.269308,abortion clinic near me open now,women's clinic near me open now within 5 mi,on weekends,on weekends +abortion,"(""women's clinic near me open on weekends"", 'are clinics open on weekends')",women's clinic near me open on weekends,are clinics open on weekends,3,4,google,2026-03-12 19:41:20.269308,abortion clinic near me open now,women's clinic near me open now within 5 mi,on weekends,are clinics +abortion,"(""women's clinic open on saturday near me"", ""women's clinic open near me"")",women's clinic open on saturday near me,women's clinic open near me,1,4,google,2026-03-12 19:41:21.113960,abortion clinic near me open now,women's clinic near me open now within 5 mi,on saturday,on saturday +abortion,"(""women's clinic open on saturday near me"", ""women's clinic open now near me"")",women's clinic open on saturday near me,women's clinic open now near me,2,4,google,2026-03-12 19:41:21.113960,abortion clinic near me open now,women's clinic near me open now within 5 mi,on saturday,now +abortion,"(""women's clinic open on saturday near me"", ""women's clinics open on weekends near me"")",women's clinic open on saturday near me,women's clinics open on weekends near me,3,4,google,2026-03-12 19:41:21.113960,abortion clinic near me open now,women's clinic near me open now within 5 mi,on saturday,clinics weekends +abortion,"(""women's clinic open on saturday near me"", 'what clinic is open on saturday')",women's clinic open on saturday near me,what clinic is open on saturday,4,4,google,2026-03-12 19:41:21.113960,abortion clinic near me open now,women's clinic near me open now within 5 mi,on saturday,what is +abortion,"('abortion clinic near me price', 'abortion clinic near me prices')",abortion clinic near me price,abortion clinic near me prices,1,4,google,2026-03-12 19:41:22.467230,abortion clinic near me prices,abortion clinic near me prices open now,price,prices +abortion,"('abortion clinic near me price', 'abortion clinic near me prices open now')",abortion clinic near me price,abortion clinic near me prices open now,2,4,google,2026-03-12 19:41:22.467230,abortion clinic near me prices,abortion clinic near me prices open now,price,prices open now +abortion,"('abortion clinic near me price', 'cat abortion clinic near me prices')",abortion clinic near me price,cat abortion clinic near me prices,3,4,google,2026-03-12 19:41:22.467230,abortion clinic near me prices,abortion clinic near me prices open now,price,cat prices +abortion,"('abortion clinic near me price', 'abortion clinics near me and prices within 8.1 km')",abortion clinic near me price,abortion clinics near me and prices within 8.1 km,4,4,google,2026-03-12 19:41:22.467230,abortion clinic near me prices,abortion clinic near me prices open now,price,clinics and prices within 8.1 km +abortion,"('abortion clinic near me price', 'abortion clinics near me and prices within 32.2 km')",abortion clinic near me price,abortion clinics near me and prices within 32.2 km,5,4,google,2026-03-12 19:41:22.467230,abortion clinic near me prices,abortion clinic near me prices open now,price,clinics and prices within 32.2 km +abortion,"('abortion clinic near me price', ""women's clinic near me cheap"")",abortion clinic near me price,women's clinic near me cheap,6,4,google,2026-03-12 19:41:22.467230,abortion clinic near me prices,abortion clinic near me prices open now,price,women's cheap +abortion,"('abortion clinic near me price', 'abortion clinic near me low cost')",abortion clinic near me price,abortion clinic near me low cost,7,4,google,2026-03-12 19:41:22.467230,abortion clinic near me prices,abortion clinic near me prices open now,price,low cost +abortion,"('abortion clinic near me price', ""women's clinic near me low cost"")",abortion clinic near me price,women's clinic near me low cost,8,4,google,2026-03-12 19:41:22.467230,abortion clinic near me prices,abortion clinic near me prices open now,price,women's low cost +abortion,"('abortion clinic near me price', 'unjani clinic near me abortion price')",abortion clinic near me price,unjani clinic near me abortion price,9,4,google,2026-03-12 19:41:22.467230,abortion clinic near me prices,abortion clinic near me prices open now,price,unjani +abortion,"('abortion clinic near me price', 'private abortion clinic in kl price near me')",abortion clinic near me price,private abortion clinic in kl price near me,10,4,google,2026-03-12 19:41:22.467230,abortion clinic near me prices,abortion clinic near me prices open now,price,private in kl +abortion,"('cat abortion clinic near me', 'cat abortion clinic near me prices')",cat abortion clinic near me,cat abortion clinic near me prices,1,4,google,2026-03-12 19:41:23.998509,abortion clinic near me prices,cat abortion clinic near me prices,cat,prices +abortion,"('cat abortion clinic near me', 'free cat abortion clinic near me')",cat abortion clinic near me,free cat abortion clinic near me,2,4,google,2026-03-12 19:41:23.998509,abortion clinic near me prices,cat abortion clinic near me prices,cat,free +abortion,"('abortion clinic near me and prices', 'abortion clinics near me and prices open now')",abortion clinic near me and prices,abortion clinics near me and prices open now,1,4,google,2026-03-12 19:41:25.438447,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,clinic,clinics open now +abortion,"('abortion clinic near me and prices', 'abortion clinics near me and prices within 8.1 km')",abortion clinic near me and prices,abortion clinics near me and prices within 8.1 km,2,4,google,2026-03-12 19:41:25.438447,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,clinic,clinics within 8.1 km +abortion,"('abortion clinic near me and prices', 'abortion clinics near me and prices within 32.2 km')",abortion clinic near me and prices,abortion clinics near me and prices within 32.2 km,3,4,google,2026-03-12 19:41:25.438447,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,clinic,clinics within 32.2 km +abortion,"('abortion clinic near me and prices', 'cat abortion clinic near me prices')",abortion clinic near me and prices,cat abortion clinic near me prices,4,4,google,2026-03-12 19:41:25.438447,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,clinic,cat +abortion,"('abortion clinic near me and prices', 'abortion clinic near me low cost')",abortion clinic near me and prices,abortion clinic near me low cost,5,4,google,2026-03-12 19:41:25.438447,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,clinic,low cost +abortion,"('abortion clinic near me and prices', 'abortion clinic near me for free')",abortion clinic near me and prices,abortion clinic near me for free,6,4,google,2026-03-12 19:41:25.438447,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,clinic,for free +abortion,"('abortion clinic near me and prices', 'abortion clinic near me how much')",abortion clinic near me and prices,abortion clinic near me how much,7,4,google,2026-03-12 19:41:25.438447,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,clinic,how much +abortion,"('abortion clinic near me and prices', 'abortion clinic near me cost')",abortion clinic near me and prices,abortion clinic near me cost,8,4,google,2026-03-12 19:41:25.438447,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,clinic,cost +abortion,"('abortion clinic near me and prices', 'abortion clinic near me same day')",abortion clinic near me and prices,abortion clinic near me same day,9,4,google,2026-03-12 19:41:25.438447,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,clinic,same day +abortion,"('abortion clinics near me cost', 'abortion clinic near me prices open now')",abortion clinics near me cost,abortion clinic near me prices open now,1,4,google,2026-03-12 19:41:26.519391,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,cost,clinic prices open now +abortion,"('abortion clinics near me cost', 'abortion clinics near me and prices within 8.1 km')",abortion clinics near me cost,abortion clinics near me and prices within 8.1 km,2,4,google,2026-03-12 19:41:26.519391,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,cost,and prices within 8.1 km +abortion,"('abortion clinics near me cost', 'abortion clinics near me and prices within 32.2 km')",abortion clinics near me cost,abortion clinics near me and prices within 32.2 km,3,4,google,2026-03-12 19:41:26.519391,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,cost,and prices within 32.2 km +abortion,"('abortion clinics near me cost', 'cat abortion clinic near me prices')",abortion clinics near me cost,cat abortion clinic near me prices,4,4,google,2026-03-12 19:41:26.519391,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,cost,cat clinic prices +abortion,"('abortion clinics near me cost', 'abortion clinics near me and prices')",abortion clinics near me cost,abortion clinics near me and prices,5,4,google,2026-03-12 19:41:26.519391,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,cost,and prices +abortion,"('abortion clinics near me cost', 'abortion clinic near me for free')",abortion clinics near me cost,abortion clinic near me for free,6,4,google,2026-03-12 19:41:26.519391,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,cost,clinic for free +abortion,"('abortion clinics near me cost', 'abortion clinics near me no insurance')",abortion clinics near me cost,abortion clinics near me no insurance,7,4,google,2026-03-12 19:41:26.519391,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,cost,no insurance +abortion,"('abortion clinics near me cost', 'abortion clinics near me that accept insurance')",abortion clinics near me cost,abortion clinics near me that accept insurance,8,4,google,2026-03-12 19:41:26.519391,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,cost,that accept insurance +abortion,"('abortion clinics near me cost', 'abortion clinics near me open')",abortion clinics near me cost,abortion clinics near me open,9,4,google,2026-03-12 19:41:26.519391,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,cost,open +abortion,"('abortion clinics near me that accept insurance', 'abortion clinic near me insurance')",abortion clinics near me that accept insurance,abortion clinic near me insurance,1,4,google,2026-03-12 19:41:27.614433,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,that accept insurance,clinic +abortion,"('abortion clinics near me that accept insurance', 'abortion clinics near me no insurance')",abortion clinics near me that accept insurance,abortion clinics near me no insurance,2,4,google,2026-03-12 19:41:27.614433,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,that accept insurance,no +abortion,"('abortion clinics near me that accept insurance', 'do abortion clinics take insurance')",abortion clinics near me that accept insurance,do abortion clinics take insurance,3,4,google,2026-03-12 19:41:27.614433,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,that accept insurance,do take +abortion,"('abortion clinics near me that accept insurance', 'abortion clinics near me that take medicaid')",abortion clinics near me that accept insurance,abortion clinics near me that take medicaid,4,4,google,2026-03-12 19:41:27.614433,abortion clinic near me prices,abortion clinics near me and prices within 8.1 km,that accept insurance,take medicaid +abortion,"('abortion clinics near me and prices', 'abortion clinics near me and prices open now')",abortion clinics near me and prices,abortion clinics near me and prices open now,1,4,google,2026-03-12 19:41:28.695409,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,clinics and within 32.2 km,open now +abortion,"('abortion clinics near me and prices', 'abortion clinics near me and prices within 8.1 km')",abortion clinics near me and prices,abortion clinics near me and prices within 8.1 km,2,4,google,2026-03-12 19:41:28.695409,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,clinics and within 32.2 km,within 8.1 km +abortion,"('abortion clinics near me and prices', 'abortion clinics near me and prices within 32.2 km')",abortion clinics near me and prices,abortion clinics near me and prices within 32.2 km,3,4,google,2026-03-12 19:41:28.695409,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,clinics and within 32.2 km,within 32.2 km +abortion,"('abortion clinics near me and prices', 'cat abortion clinic near me prices')",abortion clinics near me and prices,cat abortion clinic near me prices,4,4,google,2026-03-12 19:41:28.695409,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,clinics and within 32.2 km,cat clinic +abortion,"('abortion clinics near me and prices', 'abortion clinic near me for free')",abortion clinics near me and prices,abortion clinic near me for free,5,4,google,2026-03-12 19:41:28.695409,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,clinics and within 32.2 km,clinic for free +abortion,"('abortion clinics near me and prices', 'abortion clinics near me cost')",abortion clinics near me and prices,abortion clinics near me cost,6,4,google,2026-03-12 19:41:28.695409,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,clinics and within 32.2 km,cost +abortion,"('abortion clinics near me and prices', 'abortion clinics near me no insurance')",abortion clinics near me and prices,abortion clinics near me no insurance,7,4,google,2026-03-12 19:41:28.695409,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,clinics and within 32.2 km,no insurance +abortion,"('abortion clinics near me and prices', 'abortion clinics near me that accept insurance')",abortion clinics near me and prices,abortion clinics near me that accept insurance,8,4,google,2026-03-12 19:41:28.695409,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,clinics and within 32.2 km,that accept insurance +abortion,"('abortion clinics near me free', 'abortion pill clinic near me free')",abortion clinics near me free,abortion pill clinic near me free,1,4,google,2026-03-12 19:41:29.714508,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,free,pill clinic +abortion,"('abortion clinics near me free', 'free abortion clinics near me open now')",abortion clinics near me free,free abortion clinics near me open now,2,4,google,2026-03-12 19:41:29.714508,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,free,open now +abortion,"('abortion clinics near me free', 'free abortion clinic near me volunteer')",abortion clinics near me free,free abortion clinic near me volunteer,3,4,google,2026-03-12 19:41:29.714508,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,free,clinic volunteer +abortion,"('abortion clinics near me free', 'free abortion clinic near me within 5 mi')",abortion clinics near me free,free abortion clinic near me within 5 mi,4,4,google,2026-03-12 19:41:29.714508,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,free,clinic within 5 mi +abortion,"('abortion clinics near me free', 'free abortion clinic near me within 20 mi')",abortion clinics near me free,free abortion clinic near me within 20 mi,5,4,google,2026-03-12 19:41:29.714508,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,free,clinic within 20 mi +abortion,"('abortion clinics near me free', 'abortion clinic near freeport il')",abortion clinics near me free,abortion clinic near freeport il,6,4,google,2026-03-12 19:41:29.714508,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,free,clinic freeport il +abortion,"('abortion clinics near me free', 'free abortion clinic near me within 8.1 km')",abortion clinics near me free,free abortion clinic near me within 8.1 km,7,4,google,2026-03-12 19:41:29.714508,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,free,clinic within 8.1 km +abortion,"('abortion clinics near me free', 'is there free abortion clinics near me')",abortion clinics near me free,is there free abortion clinics near me,8,4,google,2026-03-12 19:41:29.714508,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,free,is there +abortion,"('abortion clinics near me free', 'abortion clinics near me no insurance')",abortion clinics near me free,abortion clinics near me no insurance,9,4,google,2026-03-12 19:41:29.714508,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,free,no insurance +abortion,"('abortion clinics near me now', 'abortion clinics san francisco')",abortion clinics near me now,abortion clinics san francisco,1,4,google,2026-03-12 19:41:31.013605,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,now,san francisco +abortion,"('abortion clinics near me now', 'abortion clinic near me today')",abortion clinics near me now,abortion clinic near me today,2,4,google,2026-03-12 19:41:31.013605,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,now,clinic today +abortion,"('abortion clinics near me now', 'abortion clinics near me open now')",abortion clinics near me now,abortion clinics near me open now,3,4,google,2026-03-12 19:41:31.013605,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,now,open +abortion,"('abortion clinics near me now', 'abortion clinic near me open now within 8.1 km')",abortion clinics near me now,abortion clinic near me open now within 8.1 km,4,4,google,2026-03-12 19:41:31.013605,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,now,clinic open within 8.1 km +abortion,"('abortion clinics near me now', 'abortion clinic near me open now within 20 mi')",abortion clinics near me now,abortion clinic near me open now within 20 mi,5,4,google,2026-03-12 19:41:31.013605,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,now,clinic open within 20 mi +abortion,"('abortion clinics near me now', 'abortion clinic near me open now within 5 mi')",abortion clinics near me now,abortion clinic near me open now within 5 mi,6,4,google,2026-03-12 19:41:31.013605,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,now,clinic open within 5 mi +abortion,"('abortion clinics near me now', 'abortion centers near me open now')",abortion clinics near me now,abortion centers near me open now,7,4,google,2026-03-12 19:41:31.013605,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,now,centers open +abortion,"('abortion clinics near me now', 'abortion doctors near me open now')",abortion clinics near me now,abortion doctors near me open now,8,4,google,2026-03-12 19:41:31.013605,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,now,doctors open +abortion,"('abortion clinics near me now', 'abortion clinic near me prices open now')",abortion clinics near me now,abortion clinic near me prices open now,9,4,google,2026-03-12 19:41:31.013605,abortion clinic near me prices,abortion clinics near me and prices within 32.2 km,now,clinic prices open +abortion,"('cheap abortion clinics near me', 'cheap abortion clinics near me open now')",cheap abortion clinics near me,cheap abortion clinics near me open now,1,4,google,2026-03-12 19:41:32.416604,abortion clinic near me prices,abortion clinic near me low cost,cheap clinics,open now +abortion,"('cheap abortion clinics near me', 'free abortion clinics near me')",cheap abortion clinics near me,free abortion clinics near me,2,4,google,2026-03-12 19:41:32.416604,abortion clinic near me prices,abortion clinic near me low cost,cheap clinics,free +abortion,"('cheap abortion clinics near me', 'abortion clinics near me')",cheap abortion clinics near me,abortion clinics near me,3,4,google,2026-03-12 19:41:32.416604,abortion clinic near me prices,abortion clinic near me low cost,cheap clinics,cheap clinics +abortion,"('cheap abortion clinics near me', 'abortion clinics near me and prices')",cheap abortion clinics near me,abortion clinics near me and prices,4,4,google,2026-03-12 19:41:32.416604,abortion clinic near me prices,abortion clinic near me low cost,cheap clinics,and prices +abortion,"('cheap abortion clinics near me', 'abortion clinics near me open now')",cheap abortion clinics near me,abortion clinics near me open now,5,4,google,2026-03-12 19:41:32.416604,abortion clinic near me prices,abortion clinic near me low cost,cheap clinics,open now +abortion,"('cheap abortion clinics near me', 'abortion clinics near me nhs')",cheap abortion clinics near me,abortion clinics near me nhs,6,4,google,2026-03-12 19:41:32.416604,abortion clinic near me prices,abortion clinic near me low cost,cheap clinics,nhs +abortion,"('cheap abortion clinics near me', 'abortion clinics near me same day')",cheap abortion clinics near me,abortion clinics near me same day,7,4,google,2026-03-12 19:41:32.416604,abortion clinic near me prices,abortion clinic near me low cost,cheap clinics,same day +abortion,"('cheap abortion clinics near me', 'abortion clinics near me legal')",cheap abortion clinics near me,abortion clinics near me legal,8,4,google,2026-03-12 19:41:32.416604,abortion clinic near me prices,abortion clinic near me low cost,cheap clinics,legal +abortion,"('cheap abortion clinics near me', 'abortion clinic near me bulk bill')",cheap abortion clinics near me,abortion clinic near me bulk bill,9,4,google,2026-03-12 19:41:32.416604,abortion clinic near me prices,abortion clinic near me low cost,cheap clinics,clinic bulk bill +abortion,"(""low cost women's health clinic near me"", ""low cost women's clinic near me"")",low cost women's health clinic near me,low cost women's clinic near me,1,4,google,2026-03-12 19:41:33.707351,abortion clinic near me prices,women's clinic near me low cost,health,health +abortion,"(""low cost women's health clinic near me"", ""women's clinic near me no insurance"")",low cost women's health clinic near me,women's clinic near me no insurance,2,4,google,2026-03-12 19:41:33.707351,abortion clinic near me prices,women's clinic near me low cost,health,no insurance +abortion,"(""low cost women's health clinic near me"", ""women's health free clinic near me"")",low cost women's health clinic near me,women's health free clinic near me,3,4,google,2026-03-12 19:41:33.707351,abortion clinic near me prices,women's clinic near me low cost,health,free +abortion,"(""low cost women's health clinic near me"", ""low income women's health clinic near me"")",low cost women's health clinic near me,low income women's health clinic near me,4,4,google,2026-03-12 19:41:33.707351,abortion clinic near me prices,women's clinic near me low cost,health,income +abortion,"(""free or low cost women's clinic near me"", ""low cost women's clinic near me"")",free or low cost women's clinic near me,low cost women's clinic near me,1,4,google,2026-03-12 19:41:34.579153,abortion clinic near me prices,women's clinic near me low cost,free or,free or +abortion,"(""free or low cost women's clinic near me"", ""free women's clinic near me no insurance"")",free or low cost women's clinic near me,free women's clinic near me no insurance,2,4,google,2026-03-12 19:41:34.579153,abortion clinic near me prices,women's clinic near me low cost,free or,no insurance +abortion,"(""free or low cost women's clinic near me"", 'clinic with low cost')",free or low cost women's clinic near me,clinic with low cost,3,4,google,2026-03-12 19:41:34.579153,abortion clinic near me prices,women's clinic near me low cost,free or,with +abortion,"(""free or low cost women's clinic near me"", 'free or low cost gynecologist near me')",free or low cost women's clinic near me,free or low cost gynecologist near me,4,4,google,2026-03-12 19:41:34.579153,abortion clinic near me prices,women's clinic near me low cost,free or,gynecologist +abortion,"(""free or low cost women's clinic near me"", 'free or low cost obgyn')",free or low cost women's clinic near me,free or low cost obgyn,5,4,google,2026-03-12 19:41:34.579153,abortion clinic near me prices,women's clinic near me low cost,free or,obgyn +abortion,"(""free or low cost women's clinic near me"", 'free or low cost clinics near me')",free or low cost women's clinic near me,free or low cost clinics near me,6,4,google,2026-03-12 19:41:34.579153,abortion clinic near me prices,women's clinic near me low cost,free or,clinics +abortion,"(""free or low cost women's clinic near me"", 'free or low cost doctors near me')",free or low cost women's clinic near me,free or low cost doctors near me,7,4,google,2026-03-12 19:41:34.579153,abortion clinic near me prices,women's clinic near me low cost,free or,doctors +abortion,"('no cost abortion clinic near me', 'abortion clinic near me for free')",no cost abortion clinic near me,abortion clinic near me for free,1,4,google,2026-03-12 19:41:35.478136,abortion clinic near me prices,abortion clinic near me cost,no,for free +abortion,"('no cost abortion clinic near me', 'cheap abortion clinics near me')",no cost abortion clinic near me,cheap abortion clinics near me,2,4,google,2026-03-12 19:41:35.478136,abortion clinic near me prices,abortion clinic near me cost,no,cheap clinics +abortion,"('no cost abortion clinic near me', 'closest abortion clinic near me')",no cost abortion clinic near me,closest abortion clinic near me,3,4,google,2026-03-12 19:41:35.478136,abortion clinic near me prices,abortion clinic near me cost,no,closest +abortion,"('no cost abortion clinic near me', 'abortion clinics near me no insurance')",no cost abortion clinic near me,abortion clinics near me no insurance,4,4,google,2026-03-12 19:41:35.478136,abortion clinic near me prices,abortion clinic near me cost,no,clinics insurance +abortion,"(""women's health clinic near me free"", ""free women's health clinic near me open now"")",women's health clinic near me free,free women's health clinic near me open now,1,4,google,2026-03-12 19:41:36.964676,abortion clinic near me for free,women clinic near me for free,women's health,open now +abortion,"(""women's health clinic near me free"", ""free women's health care near me"")",women's health clinic near me free,free women's health care near me,2,4,google,2026-03-12 19:41:36.964676,abortion clinic near me for free,women clinic near me for free,women's health,care +abortion,"(""women's health clinic near me free"", ""free women's health services near me"")",women's health clinic near me free,free women's health services near me,3,4,google,2026-03-12 19:41:36.964676,abortion clinic near me for free,women clinic near me for free,women's health,services +abortion,"(""women's health clinic near me free"", ""free women's health center near me"")",women's health clinic near me free,free women's health center near me,4,4,google,2026-03-12 19:41:36.964676,abortion clinic near me for free,women clinic near me for free,women's health,center +abortion,"(""women's health clinic near me free"", 'list of free clinics near me')",women's health clinic near me free,list of free clinics near me,5,4,google,2026-03-12 19:41:36.964676,abortion clinic near me for free,women clinic near me for free,women's health,list of clinics +abortion,"(""women's health clinic near me free"", ""free women's clinic near me no insurance"")",women's health clinic near me free,free women's clinic near me no insurance,6,4,google,2026-03-12 19:41:36.964676,abortion clinic near me for free,women clinic near me for free,women's health,no insurance +abortion,"(""women's health clinic near me free"", 'are free clinics really free')",women's health clinic near me free,are free clinics really free,7,4,google,2026-03-12 19:41:36.964676,abortion clinic near me for free,women clinic near me for free,women's health,are clinics really +abortion,"(""women's health clinic near me free"", ""women's health clinic near me no insurance"")",women's health clinic near me free,women's health clinic near me no insurance,8,4,google,2026-03-12 19:41:36.964676,abortion clinic near me for free,women clinic near me for free,women's health,no insurance +abortion,"(""women's health clinic near me free"", ""women's clinic near me free"")",women's health clinic near me free,women's clinic near me free,9,4,google,2026-03-12 19:41:36.964676,abortion clinic near me for free,women clinic near me for free,women's health,women's health +abortion,"(""women's clinic near me for ultrasound"", ""women's clinic near me free ultrasound"")",women's clinic near me for ultrasound,women's clinic near me free ultrasound,1,4,google,2026-03-12 19:41:38.118302,abortion clinic near me for free,women's clinic near me free ultrasound,for,free +abortion,"(""women's clinic near me for ultrasound"", ""women's center near me free ultrasound"")",women's clinic near me for ultrasound,women's center near me free ultrasound,2,4,google,2026-03-12 19:41:38.118302,abortion clinic near me for free,women's clinic near me free ultrasound,for,center free +abortion,"(""women's clinic near me for ultrasound"", 'open ultrasound clinic near me')",women's clinic near me for ultrasound,open ultrasound clinic near me,3,4,google,2026-03-12 19:41:38.118302,abortion clinic near me for free,women's clinic near me free ultrasound,for,open +abortion,"(""women's clinic near me for ultrasound"", 'do free clinics do ultrasounds')",women's clinic near me for ultrasound,do free clinics do ultrasounds,4,4,google,2026-03-12 19:41:38.118302,abortion clinic near me for free,women's clinic near me free ultrasound,for,do free clinics do ultrasounds +abortion,"(""women's clinic near me for ultrasound"", 'can i open my own ultrasound clinic')",women's clinic near me for ultrasound,can i open my own ultrasound clinic,5,4,google,2026-03-12 19:41:38.118302,abortion clinic near me for free,women's clinic near me free ultrasound,for,can i open my own +abortion,"(""women's clinic near me for ultrasound"", ""women's clinic near me walk-in"")",women's clinic near me for ultrasound,women's clinic near me walk-in,6,4,google,2026-03-12 19:41:38.118302,abortion clinic near me for free,women's clinic near me free ultrasound,for,walk-in +abortion,"('free ultrasound clinic near me', 'free ultrasound clinic near me without insurance')",free ultrasound clinic near me,free ultrasound clinic near me without insurance,1,4,google,2026-03-12 19:41:38.946656,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,without insurance +abortion,"('free ultrasound clinic near me', 'free ultrasound clinic near me open now')",free ultrasound clinic near me,free ultrasound clinic near me open now,2,4,google,2026-03-12 19:41:38.946656,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,open now +abortion,"('free ultrasound clinic near me', 'free ultrasound clinic near me within 5 mi')",free ultrasound clinic near me,free ultrasound clinic near me within 5 mi,3,4,google,2026-03-12 19:41:38.946656,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,within 5 mi +abortion,"('free ultrasound clinic near me', 'free pregnancy test clinic near me')",free ultrasound clinic near me,free pregnancy test clinic near me,4,4,google,2026-03-12 19:41:38.946656,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,pregnancy test +abortion,"('free ultrasound clinic near me', 'free ultrasound places near me')",free ultrasound clinic near me,free ultrasound places near me,5,4,google,2026-03-12 19:41:38.946656,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,places +abortion,"('free ultrasound clinic near me', 'free pregnancy test clinic near me open now')",free ultrasound clinic near me,free pregnancy test clinic near me open now,6,4,google,2026-03-12 19:41:38.946656,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,pregnancy test open now +abortion,"('free ultrasound clinic near me', 'free pregnancy test clinic near me within 5 mi')",free ultrasound clinic near me,free pregnancy test clinic near me within 5 mi,7,4,google,2026-03-12 19:41:38.946656,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,pregnancy test within 5 mi +abortion,"('free ultrasound clinic near me', 'free pregnancy test clinics near me open on saturday')",free ultrasound clinic near me,free pregnancy test clinics near me open on saturday,8,4,google,2026-03-12 19:41:38.946656,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,pregnancy test clinics open on saturday +abortion,"('free ultrasound clinic near me', 'free pregnancy test center near me')",free ultrasound clinic near me,free pregnancy test center near me,9,4,google,2026-03-12 19:41:38.946656,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,pregnancy test center +abortion,"('where can i go get a free ultrasound', 'where can i go to get a free ultrasound near me')",where can i go get a free ultrasound,where can i go to get a free ultrasound near me,1,4,google,2026-03-12 19:41:39.801625,abortion clinic near me for free,women's clinic near me free ultrasound,where can i go get a,to near me +abortion,"('where can i go get a free ultrasound', 'where can i go get a free pregnancy test')",where can i go get a free ultrasound,where can i go get a free pregnancy test,2,4,google,2026-03-12 19:41:39.801625,abortion clinic near me for free,women's clinic near me free ultrasound,where can i go get a,pregnancy test +abortion,"('where can i go get a free ultrasound', 'where can i go to get a free pregnancy test and ultrasound')",where can i go get a free ultrasound,where can i go to get a free pregnancy test and ultrasound,3,4,google,2026-03-12 19:41:39.801625,abortion clinic near me for free,women's clinic near me free ultrasound,where can i go get a,to pregnancy test and +abortion,"('where can i go get a free ultrasound', 'where can i get a free ultrasound today')",where can i go get a free ultrasound,where can i get a free ultrasound today,4,4,google,2026-03-12 19:41:39.801625,abortion clinic near me for free,women's clinic near me free ultrasound,where can i go get a,today +abortion,"('where can i go get a free ultrasound', 'where can i get a free ultrasound to confirm pregnancy')",where can i go get a free ultrasound,where can i get a free ultrasound to confirm pregnancy,5,4,google,2026-03-12 19:41:39.801625,abortion clinic near me for free,women's clinic near me free ultrasound,where can i go get a,to confirm pregnancy +abortion,"('where can i go get a free ultrasound', 'where can i get a free ultrasound without insurance')",where can i go get a free ultrasound,where can i get a free ultrasound without insurance,6,4,google,2026-03-12 19:41:39.801625,abortion clinic near me for free,women's clinic near me free ultrasound,where can i go get a,without insurance +abortion,"('where can i go get a free ultrasound', 'where can i get a free ultrasound done near me')",where can i go get a free ultrasound,where can i get a free ultrasound done near me,7,4,google,2026-03-12 19:41:39.801625,abortion clinic near me for free,women's clinic near me free ultrasound,where can i go get a,done near me +abortion,"('where can i go get a free ultrasound', 'where can i go for a free blood pregnancy test')",where can i go get a free ultrasound,where can i go for a free blood pregnancy test,8,4,google,2026-03-12 19:41:39.801625,abortion clinic near me for free,women's clinic near me free ultrasound,where can i go get a,for blood pregnancy test +abortion,"('where can i go get a free ultrasound', 'where can i go to get a free pregnancy test near me')",where can i go get a free ultrasound,where can i go to get a free pregnancy test near me,9,4,google,2026-03-12 19:41:39.801625,abortion clinic near me for free,women's clinic near me free ultrasound,where can i go get a,to pregnancy test near me +abortion,"(""women's free ultrasound"", ""women's free pregnancy test"")",women's free ultrasound,women's free pregnancy test,1,4,google,2026-03-12 19:41:40.749212,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,pregnancy test +abortion,"(""women's free ultrasound"", ""women's center free ultrasound"")",women's free ultrasound,women's center free ultrasound,2,4,google,2026-03-12 19:41:40.749212,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,center +abortion,"(""women's free ultrasound"", ""women's clinic free ultrasound"")",women's free ultrasound,women's clinic free ultrasound,3,4,google,2026-03-12 19:41:40.749212,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,clinic +abortion,"(""women's free ultrasound"", ""women's clinic free ultrasound near me"")",women's free ultrasound,women's clinic free ultrasound near me,4,4,google,2026-03-12 19:41:40.749212,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,clinic near me +abortion,"(""women's free ultrasound"", ""women's health free ultrasound"")",women's free ultrasound,women's health free ultrasound,5,4,google,2026-03-12 19:41:40.749212,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,health +abortion,"(""women's free ultrasound"", ""women's care free ultrasound"")",women's free ultrasound,women's care free ultrasound,6,4,google,2026-03-12 19:41:40.749212,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,care +abortion,"(""women's free ultrasound"", ""women's center free ultrasound near me"")",women's free ultrasound,women's center free ultrasound near me,7,4,google,2026-03-12 19:41:40.749212,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,center near me +abortion,"(""women's free ultrasound"", ""women's care center free ultrasound"")",women's free ultrasound,women's care center free ultrasound,8,4,google,2026-03-12 19:41:40.749212,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,care center +abortion,"(""women's free ultrasound"", ""women's health center free ultrasound"")",women's free ultrasound,women's health center free ultrasound,9,4,google,2026-03-12 19:41:40.749212,abortion clinic near me for free,women's clinic near me free ultrasound,women's ultrasound,health center +abortion,"('where can i get an ultrasound near me for free', 'where to get an ultrasound near me free')",where can i get an ultrasound near me for free,where to get an ultrasound near me free,1,4,google,2026-03-12 19:41:41.996499,abortion clinic near me for free,women's center near me free ultrasound,where can i get an for,to +abortion,"('where can i get an ultrasound near me for free', 'where can i get a free pregnancy ultrasound near me')",where can i get an ultrasound near me for free,where can i get a free pregnancy ultrasound near me,2,4,google,2026-03-12 19:41:41.996499,abortion clinic near me for free,women's center near me free ultrasound,where can i get an for,a pregnancy +abortion,"('where can i get an ultrasound near me for free', 'where can i get a free sonogram near me')",where can i get an ultrasound near me for free,where can i get a free sonogram near me,3,4,google,2026-03-12 19:41:41.996499,abortion clinic near me for free,women's center near me free ultrasound,where can i get an for,a sonogram +abortion,"('where can i get an ultrasound near me for free', 'where can i go to get an ultrasound for free')",where can i get an ultrasound near me for free,where can i go to get an ultrasound for free,4,4,google,2026-03-12 19:41:41.996499,abortion clinic near me for free,women's center near me free ultrasound,where can i get an for,go to +abortion,"('where can i get an ultrasound near me for free', 'where can i get an ultrasound without insurance near me')",where can i get an ultrasound near me for free,where can i get an ultrasound without insurance near me,5,4,google,2026-03-12 19:41:41.996499,abortion clinic near me for free,women's center near me free ultrasound,where can i get an for,without insurance +abortion,"('where can i get an ultrasound near me for free', 'where can i get an ultrasound near me today')",where can i get an ultrasound near me for free,where can i get an ultrasound near me today,6,4,google,2026-03-12 19:41:41.996499,abortion clinic near me for free,women's center near me free ultrasound,where can i get an for,today +abortion,"('where can i get an ultrasound near me for free', 'where can i get an ultrasound without a referral near me')",where can i get an ultrasound near me for free,where can i get an ultrasound without a referral near me,7,4,google,2026-03-12 19:41:41.996499,abortion clinic near me for free,women's center near me free ultrasound,where can i get an for,without a referral +abortion,"(""women's center ultrasound"", ""women's center ultrasound near me"")",women's center ultrasound,women's center ultrasound near me,1,4,google,2026-03-12 19:41:43.509666,abortion clinic near me for free,women's center near me free ultrasound,women's center ultrasound,near me +abortion,"(""women's center ultrasound"", ""women's ultrasound center photos"")",women's center ultrasound,women's ultrasound center photos,2,4,google,2026-03-12 19:41:43.509666,abortion clinic near me for free,women's center near me free ultrasound,women's center ultrasound,photos +abortion,"(""women's center ultrasound"", ""women's ultrasound center laoag city"")",women's center ultrasound,women's ultrasound center laoag city,3,4,google,2026-03-12 19:41:43.509666,abortion clinic near me for free,women's center near me free ultrasound,women's center ultrasound,laoag city +abortion,"(""women's center ultrasound"", ""women's ultrasound center reviews"")",women's center ultrasound,women's ultrasound center reviews,4,4,google,2026-03-12 19:41:43.509666,abortion clinic near me for free,women's center near me free ultrasound,women's center ultrasound,reviews +abortion,"(""women's center ultrasound"", ""women's ultrasound center cdo"")",women's center ultrasound,women's ultrasound center cdo,5,4,google,2026-03-12 19:41:43.509666,abortion clinic near me for free,women's center near me free ultrasound,women's center ultrasound,cdo +abortion,"(""women's center ultrasound"", ""women's clinic ultrasound"")",women's center ultrasound,women's clinic ultrasound,6,4,google,2026-03-12 19:41:43.509666,abortion clinic near me for free,women's center near me free ultrasound,women's center ultrasound,clinic +abortion,"(""women's center ultrasound"", ""women's clinic ultrasound near me"")",women's center ultrasound,women's clinic ultrasound near me,7,4,google,2026-03-12 19:41:43.509666,abortion clinic near me for free,women's center near me free ultrasound,women's center ultrasound,clinic near me +abortion,"(""women's center ultrasound"", ""women's center imaging"")",women's center ultrasound,women's center imaging,8,4,google,2026-03-12 19:41:43.509666,abortion clinic near me for free,women's center near me free ultrasound,women's center ultrasound,imaging +abortion,"(""women's center ultrasound"", ""women's center free ultrasound"")",women's center ultrasound,women's center free ultrasound,9,4,google,2026-03-12 19:41:43.509666,abortion clinic near me for free,women's center near me free ultrasound,women's center ultrasound,free +abortion,"(""women's health center free ultrasound"", ""women's health center free pregnancy test"")",women's health center free ultrasound,women's health center free pregnancy test,1,4,google,2026-03-12 19:41:44.805951,abortion clinic near me for free,women's center near me free ultrasound,health,pregnancy test +abortion,"(""women's health center free ultrasound"", ""women's health clinic free pregnancy test"")",women's health center free ultrasound,women's health clinic free pregnancy test,2,4,google,2026-03-12 19:41:44.805951,abortion clinic near me for free,women's center near me free ultrasound,health,clinic pregnancy test +abortion,"(""women's health center free ultrasound"", ""women's care center free ultrasound"")",women's health center free ultrasound,women's care center free ultrasound,3,4,google,2026-03-12 19:41:44.805951,abortion clinic near me for free,women's center near me free ultrasound,health,care +abortion,"(""women's health center free ultrasound"", ""women's clinic near me for ultrasound"")",women's health center free ultrasound,women's clinic near me for ultrasound,4,4,google,2026-03-12 19:41:44.805951,abortion clinic near me for free,women's center near me free ultrasound,health,clinic near me for +abortion,"(""women's health center free ultrasound"", 'can i get a free ultrasound')",women's health center free ultrasound,can i get a free ultrasound,5,4,google,2026-03-12 19:41:44.805951,abortion clinic near me for free,women's center near me free ultrasound,health,can i get a +abortion,"(""women's health center free ultrasound"", 'where can i go get a free ultrasound')",women's health center free ultrasound,where can i go get a free ultrasound,6,4,google,2026-03-12 19:41:44.805951,abortion clinic near me for free,women's center near me free ultrasound,health,where can i go get a +abortion,"(""women's health center free ultrasound"", 'how to get a free ultrasound')",women's health center free ultrasound,how to get a free ultrasound,7,4,google,2026-03-12 19:41:44.805951,abortion clinic near me for free,women's center near me free ultrasound,health,how to get a +abortion,"(""women's health center free ultrasound"", ""women's center free ultrasound"")",women's health center free ultrasound,women's center free ultrasound,8,4,google,2026-03-12 19:41:44.805951,abortion clinic near me for free,women's center near me free ultrasound,health,health +abortion,"(""women's health center free ultrasound"", ""women's health center ultrasound"")",women's health center free ultrasound,women's health center ultrasound,9,4,google,2026-03-12 19:41:44.805951,abortion clinic near me for free,women's center near me free ultrasound,health,health +abortion,"('women clinic near me free', ""women's clinic near me free ultrasound"")",women clinic near me free,women's clinic near me free ultrasound,1,4,google,2026-03-12 19:41:45.773523,abortion clinic near me for free,women center near me free,clinic,women's ultrasound +abortion,"('women clinic near me free', ""women's center near me free ultrasound"")",women clinic near me free,women's center near me free ultrasound,2,4,google,2026-03-12 19:41:45.773523,abortion clinic near me for free,women center near me free,clinic,women's center ultrasound +abortion,"('women clinic near me free', 'women center near me free')",women clinic near me free,women center near me free,3,4,google,2026-03-12 19:41:45.773523,abortion clinic near me for free,women center near me free,clinic,center +abortion,"('women clinic near me free', ""women's health clinic near me free"")",women clinic near me free,women's health clinic near me free,4,4,google,2026-03-12 19:41:45.773523,abortion clinic near me for free,women center near me free,clinic,women's health +abortion,"('women clinic near me free', ""walk in women's clinic near me free"")",women clinic near me free,walk in women's clinic near me free,5,4,google,2026-03-12 19:41:45.773523,abortion clinic near me for free,women center near me free,clinic,walk in women's +abortion,"('women clinic near me free', ""free women's clinic near me no insurance"")",women clinic near me free,free women's clinic near me no insurance,6,4,google,2026-03-12 19:41:45.773523,abortion clinic near me for free,women center near me free,clinic,women's no insurance +abortion,"('women clinic near me free', ""free women's clinic near me open now"")",women clinic near me free,free women's clinic near me open now,7,4,google,2026-03-12 19:41:45.773523,abortion clinic near me for free,women center near me free,clinic,women's open now +abortion,"('women clinic near me free', ""free women's clinic near me within 5 mi"")",women clinic near me free,free women's clinic near me within 5 mi,8,4,google,2026-03-12 19:41:45.773523,abortion clinic near me for free,women center near me free,clinic,women's within 5 mi +abortion,"('women clinic near me free', ""free women's clinic near me within 1 mi"")",women clinic near me free,free women's clinic near me within 1 mi,9,4,google,2026-03-12 19:41:45.773523,abortion clinic near me for free,women center near me free,clinic,women's within 1 mi +abortion,"(""walk in women's clinic near me free"", ""walk-in women's clinic near me"")",walk in women's clinic near me free,walk-in women's clinic near me,1,4,google,2026-03-12 19:41:46.766178,abortion clinic near me for free,women center near me free,walk in women's clinic,walk-in +abortion,"(""walk in women's clinic near me free"", ""free women's clinic near me no insurance"")",walk in women's clinic near me free,free women's clinic near me no insurance,2,4,google,2026-03-12 19:41:46.766178,abortion clinic near me for free,women center near me free,walk in women's clinic,no insurance +abortion,"(""walk in women's clinic near me free"", 'what clinic can i go to without insurance')",walk in women's clinic near me free,what clinic can i go to without insurance,3,4,google,2026-03-12 19:41:46.766178,abortion clinic near me for free,women center near me free,walk in women's clinic,what can i go to without insurance +abortion,"(""walk in women's clinic near me free"", ""walk-in women's clinic no insurance"")",walk in women's clinic near me free,walk-in women's clinic no insurance,4,4,google,2026-03-12 19:41:46.766178,abortion clinic near me for free,women center near me free,walk in women's clinic,walk-in no insurance +abortion,"(""free women's donation center near me"", ""free women's clothing donation center near me"")",free women's donation center near me,free women's clothing donation center near me,1,4,google,2026-03-12 19:41:47.884115,abortion clinic near me for free,women center near me free,women's donation,clothing +abortion,"(""free women's donation center near me"", ""free women's refuge donation drop off near me"")",free women's donation center near me,free women's refuge donation drop off near me,2,4,google,2026-03-12 19:41:47.884115,abortion clinic near me for free,women center near me free,women's donation,refuge drop off +abortion,"(""free women's donation center near me"", ""free women's shelter donation drop off near me"")",free women's donation center near me,free women's shelter donation drop off near me,3,4,google,2026-03-12 19:41:47.884115,abortion clinic near me for free,women center near me free,women's donation,shelter drop off +abortion,"(""free women's donation center near me"", ""women's donation center near me"")",free women's donation center near me,women's donation center near me,4,4,google,2026-03-12 19:41:47.884115,abortion clinic near me for free,women center near me free,women's donation,women's donation +abortion,"(""free women's donation center near me"", 'where can i get free donated clothes')",free women's donation center near me,where can i get free donated clothes,5,4,google,2026-03-12 19:41:47.884115,abortion clinic near me for free,women center near me free,women's donation,where can i get donated clothes +abortion,"(""free women's donation center near me"", 'where to get donated clothes for free')",free women's donation center near me,where to get donated clothes for free,6,4,google,2026-03-12 19:41:47.884115,abortion clinic near me for free,women center near me free,women's donation,where to get donated clothes for +abortion,"(""free women's donation center near me"", ""women's shelters near me that accept clothing donations"")",free women's donation center near me,women's shelters near me that accept clothing donations,7,4,google,2026-03-12 19:41:47.884115,abortion clinic near me for free,women center near me free,women's donation,shelters that accept clothing donations +abortion,"(""free women's donation center near me"", ""free women's center near me"")",free women's donation center near me,free women's center near me,8,4,google,2026-03-12 19:41:47.884115,abortion clinic near me for free,women center near me free,women's donation,women's donation +abortion,"(""free women's donation center near me"", ""donation center for women's shelter near me"")",free women's donation center near me,donation center for women's shelter near me,9,4,google,2026-03-12 19:41:47.884115,abortion clinic near me for free,women center near me free,women's donation,for shelter +abortion,"(""free women's care center near me"", ""free women's health center near me"")",free women's care center near me,free women's health center near me,1,4,google,2026-03-12 19:41:49.369377,abortion clinic near me for free,women center near me free,women's care,health +abortion,"(""free women's care center near me"", ""free women's care clinic near me"")",free women's care center near me,free women's care clinic near me,2,4,google,2026-03-12 19:41:49.369377,abortion clinic near me for free,women center near me free,women's care,clinic +abortion,"(""free women's care center near me"", ""free women's health clinic near me"")",free women's care center near me,free women's health clinic near me,3,4,google,2026-03-12 19:41:49.369377,abortion clinic near me for free,women center near me free,women's care,health clinic +abortion,"(""free women's care center near me"", ""free women's health clinic near me open now"")",free women's care center near me,free women's health clinic near me open now,4,4,google,2026-03-12 19:41:49.369377,abortion clinic near me for free,women center near me free,women's care,health clinic open now +abortion,"(""free women's care center near me"", ""free women's center near me"")",free women's care center near me,free women's center near me,5,4,google,2026-03-12 19:41:49.369377,abortion clinic near me for free,women center near me free,women's care,women's care +abortion,"(""free women's care center near me"", ""free women's clinic near me no insurance"")",free women's care center near me,free women's clinic near me no insurance,6,4,google,2026-03-12 19:41:49.369377,abortion clinic near me for free,women center near me free,women's care,clinic no insurance +abortion,"(""free women's care center near me"", ""free women's clinics near me"")",free women's care center near me,free women's clinics near me,7,4,google,2026-03-12 19:41:49.369377,abortion clinic near me for free,women center near me free,women's care,clinics +abortion,"(""free women's care center near me"", ""free women's care near me"")",free women's care center near me,free women's care near me,8,4,google,2026-03-12 19:41:49.369377,abortion clinic near me for free,women center near me free,women's care,women's care +abortion,"(""free women's care center near me"", ""free women's health care clinics near me"")",free women's care center near me,free women's health care clinics near me,9,4,google,2026-03-12 19:41:49.369377,abortion clinic near me for free,women center near me free,women's care,health clinics +abortion,"('free abortion center near me', 'free abortion center near me open now')",free abortion center near me,free abortion center near me open now,1,4,google,2026-03-12 19:41:50.734168,abortion clinic near me for free,free abortion clinic near me open now,center,open now +abortion,"('free abortion center near me', 'free abortion clinic near me')",free abortion center near me,free abortion clinic near me,2,4,google,2026-03-12 19:41:50.734168,abortion clinic near me for free,free abortion clinic near me open now,center,clinic +abortion,"('free abortion center near me', 'free abortion hospital near me')",free abortion center near me,free abortion hospital near me,3,4,google,2026-03-12 19:41:50.734168,abortion clinic near me for free,free abortion clinic near me open now,center,hospital +abortion,"('free abortion center near me', 'free abortion clinic near me volunteer')",free abortion center near me,free abortion clinic near me volunteer,4,4,google,2026-03-12 19:41:50.734168,abortion clinic near me for free,free abortion clinic near me open now,center,clinic volunteer +abortion,"('free abortion center near me', 'free abortion clinic near me within 5 mi')",free abortion center near me,free abortion clinic near me within 5 mi,5,4,google,2026-03-12 19:41:50.734168,abortion clinic near me for free,free abortion clinic near me open now,center,clinic within 5 mi +abortion,"('free abortion center near me', 'free abortion clinic near me within 20 mi')",free abortion center near me,free abortion clinic near me within 20 mi,6,4,google,2026-03-12 19:41:50.734168,abortion clinic near me for free,free abortion clinic near me open now,center,clinic within 20 mi +abortion,"('free abortion center near me', 'free abortion clinic near me within 8.1 km')",free abortion center near me,free abortion clinic near me within 8.1 km,7,4,google,2026-03-12 19:41:50.734168,abortion clinic near me for free,free abortion clinic near me open now,center,clinic within 8.1 km +abortion,"('free abortion center near me', 'free abortion pill center near me')",free abortion center near me,free abortion pill center near me,8,4,google,2026-03-12 19:41:50.734168,abortion clinic near me for free,free abortion clinic near me open now,center,pill +abortion,"('free abortion center near me', 'free government abortion clinic near me')",free abortion center near me,free government abortion clinic near me,9,4,google,2026-03-12 19:41:50.734168,abortion clinic near me for free,free abortion clinic near me open now,center,government clinic +abortion,"('free abortion clinics near fort lauderdale fl', 'free abortion clinics near fort lauderdale florida')",free abortion clinics near fort lauderdale fl,free abortion clinics near fort lauderdale florida,1,4,google,2026-03-12 19:41:52.095590,abortion clinic near me for free,free abortion clinic near me open now,clinics fort lauderdale fl,florida +abortion,"('abortion clinic volunteer opportunities near me', ""women's health volunteer opportunities near me"")",abortion clinic volunteer opportunities near me,women's health volunteer opportunities near me,1,4,google,2026-03-12 19:41:54.408858,abortion clinic near me for free,free abortion clinic near me volunteer,opportunities,women's health +abortion,"('abortion clinic volunteer opportunities near me', 'abortion clinic volunteer near me')",abortion clinic volunteer opportunities near me,abortion clinic volunteer near me,2,4,google,2026-03-12 19:41:54.408858,abortion clinic near me for free,free abortion clinic near me volunteer,opportunities,opportunities +abortion,"('abortion clinic volunteer opportunities near me', ""women's clinic volunteer near me"")",abortion clinic volunteer opportunities near me,women's clinic volunteer near me,3,4,google,2026-03-12 19:41:54.408858,abortion clinic near me for free,free abortion clinic near me volunteer,opportunities,women's +abortion,"('abortion clinic volunteer opportunities near me', 'abortion volunteer opportunities near me')",abortion clinic volunteer opportunities near me,abortion volunteer opportunities near me,4,4,google,2026-03-12 19:41:54.408858,abortion clinic near me for free,free abortion clinic near me volunteer,opportunities,opportunities +abortion,"('free abortion centers near me', 'free abortion center near me open now')",free abortion centers near me,free abortion center near me open now,1,4,google,2026-03-12 19:41:55.436831,abortion clinic near me for free,free abortion clinic near me within 5 mi,centers,center open now +abortion,"('free abortion centers near me', 'free abortion clinic near me')",free abortion centers near me,free abortion clinic near me,2,4,google,2026-03-12 19:41:55.436831,abortion clinic near me for free,free abortion clinic near me within 5 mi,centers,clinic +abortion,"('free abortion centers near me', 'free abortion clinic near me volunteer')",free abortion centers near me,free abortion clinic near me volunteer,3,4,google,2026-03-12 19:41:55.436831,abortion clinic near me for free,free abortion clinic near me within 5 mi,centers,clinic volunteer +abortion,"('free abortion centers near me', 'free abortion clinic near me within 5 mi')",free abortion centers near me,free abortion clinic near me within 5 mi,4,4,google,2026-03-12 19:41:55.436831,abortion clinic near me for free,free abortion clinic near me within 5 mi,centers,clinic within 5 mi +abortion,"('free abortion centers near me', 'free abortion clinic near me within 20 mi')",free abortion centers near me,free abortion clinic near me within 20 mi,5,4,google,2026-03-12 19:41:55.436831,abortion clinic near me for free,free abortion clinic near me within 5 mi,centers,clinic within 20 mi +abortion,"('free abortion centers near me', 'free abortion clinic near me within 8.1 km')",free abortion centers near me,free abortion clinic near me within 8.1 km,6,4,google,2026-03-12 19:41:55.436831,abortion clinic near me for free,free abortion clinic near me within 5 mi,centers,clinic within 8.1 km +abortion,"('free abortion centers near me', 'free abortion pill center near me')",free abortion centers near me,free abortion pill center near me,7,4,google,2026-03-12 19:41:55.436831,abortion clinic near me for free,free abortion clinic near me within 5 mi,centers,pill center +abortion,"('free abortion centers near me', 'free government abortion clinic near me')",free abortion centers near me,free government abortion clinic near me,8,4,google,2026-03-12 19:41:55.436831,abortion clinic near me for free,free abortion clinic near me within 5 mi,centers,government clinic +abortion,"('free abortion centers near me', 'free cat abortion clinic near me')",free abortion centers near me,free cat abortion clinic near me,9,4,google,2026-03-12 19:41:55.436831,abortion clinic near me for free,free abortion clinic near me within 5 mi,centers,cat clinic +abortion,"('free abortion clinic near washington dc', 'free abortion clinic washington dc')",free abortion clinic near washington dc,free abortion clinic washington dc,1,4,google,2026-03-12 19:41:56.793902,abortion clinic near me for free,free abortion clinic near me within 5 mi,washington dc,washington dc +abortion,"('free abortion clinic near washington dc', 'free abortion clinic near me')",free abortion clinic near washington dc,free abortion clinic near me,2,4,google,2026-03-12 19:41:56.793902,abortion clinic near me for free,free abortion clinic near me within 5 mi,washington dc,me +abortion,"('free abortion clinic near washington dc', 'free abortion centers near me')",free abortion clinic near washington dc,free abortion centers near me,3,4,google,2026-03-12 19:41:56.793902,abortion clinic near me for free,free abortion clinic near me within 5 mi,washington dc,centers me +abortion,"('free abortion clinic near washington dc', 'free abortion clinic dc')",free abortion clinic near washington dc,free abortion clinic dc,4,4,google,2026-03-12 19:41:56.793902,abortion clinic near me for free,free abortion clinic near me within 5 mi,washington dc,washington dc +abortion,"('free abortion clinic near washington dc', 'abortion clinic near me washington dc')",free abortion clinic near washington dc,abortion clinic near me washington dc,5,4,google,2026-03-12 19:41:56.793902,abortion clinic near me for free,free abortion clinic near me within 5 mi,washington dc,me +abortion,"('free abortion clinic near washington dc', 'free abortion dc')",free abortion clinic near washington dc,free abortion dc,6,4,google,2026-03-12 19:41:56.793902,abortion clinic near me for free,free abortion clinic near me within 5 mi,washington dc,washington dc +abortion,"('free abortion clinic minnesota', 'free abortion clinics near me')",free abortion clinic minnesota,free abortion clinics near me,1,4,google,2026-03-12 19:41:57.879027,abortion clinic near me for free,free abortion clinic near me within 5 mi,minnesota,clinics near me +abortion,"('free abortion clinic minnesota', 'free abortion centers near me')",free abortion clinic minnesota,free abortion centers near me,2,4,google,2026-03-12 19:41:57.879027,abortion clinic near me for free,free abortion clinic near me within 5 mi,minnesota,centers near me +abortion,"('free abortion clinic minnesota', 'free abortion pill mn')",free abortion clinic minnesota,free abortion pill mn,3,4,google,2026-03-12 19:41:57.879027,abortion clinic near me for free,free abortion clinic near me within 5 mi,minnesota,pill mn +abortion,"('free abortion clinic minnesota', 'free abortion clinics in wisconsin')",free abortion clinic minnesota,free abortion clinics in wisconsin,4,4,google,2026-03-12 19:41:57.879027,abortion clinic near me for free,free abortion clinic near me within 5 mi,minnesota,clinics in wisconsin +abortion,"('free abortion clinic miami', ""free women's clinic miami"")",free abortion clinic miami,free women's clinic miami,1,4,google,2026-03-12 19:41:58.948839,abortion clinic near me for free,free abortion clinic near me within 5 mi,miami,women's +abortion,"('free abortion clinic miami', 'free abortion clinic near me')",free abortion clinic miami,free abortion clinic near me,2,4,google,2026-03-12 19:41:58.948839,abortion clinic near me for free,free abortion clinic near me within 5 mi,miami,near me +abortion,"('free abortion clinic miami', 'free abortion clinic in florida')",free abortion clinic miami,free abortion clinic in florida,3,4,google,2026-03-12 19:41:58.948839,abortion clinic near me for free,free abortion clinic near me within 5 mi,miami,in florida +abortion,"('female doctor near me walk in', 'female doctor near me walk in clinic')",female doctor near me walk in,female doctor near me walk in clinic,1,4,google,2026-03-12 19:41:59.764112,abortion clinic near me walk in,women clinic near me walk in,female doctor,clinic +abortion,"('female doctor near me walk in', 'women clinic near me walk in')",female doctor near me walk in,women clinic near me walk in,2,4,google,2026-03-12 19:41:59.764112,abortion clinic near me walk in,women clinic near me walk in,female doctor,women clinic +abortion,"('female doctor near me walk in', ""women's health clinic near me walk in"")",female doctor near me walk in,women's health clinic near me walk in,3,4,google,2026-03-12 19:41:59.764112,abortion clinic near me walk in,women clinic near me walk in,female doctor,women's health clinic +abortion,"('female doctor near me walk in', ""free women's clinic near me walk in"")",female doctor near me walk in,free women's clinic near me walk in,4,4,google,2026-03-12 19:41:59.764112,abortion clinic near me walk in,women clinic near me walk in,female doctor,free women's clinic +abortion,"('female doctor near me walk in', 'female doctors in my area')",female doctor near me walk in,female doctors in my area,5,4,google,2026-03-12 19:41:59.764112,abortion clinic near me walk in,women clinic near me walk in,female doctor,doctors my area +abortion,"('female doctor near me walk in', 'walk in gynecologist near me no insurance')",female doctor near me walk in,walk in gynecologist near me no insurance,6,4,google,2026-03-12 19:41:59.764112,abortion clinic near me walk in,women clinic near me walk in,female doctor,gynecologist no insurance +abortion,"('female doctor near me walk in', 'gynecologist near me female walk in clinic')",female doctor near me walk in,gynecologist near me female walk in clinic,7,4,google,2026-03-12 19:41:59.764112,abortion clinic near me walk in,women clinic near me walk in,female doctor,gynecologist clinic +abortion,"('female doctor near me walk in', 'walk in female clinic near me')",female doctor near me walk in,walk in female clinic near me,8,4,google,2026-03-12 19:41:59.764112,abortion clinic near me walk in,women clinic near me walk in,female doctor,clinic +abortion,"('female doctor near me walk in clinic', 'where can i see a doctor without insurance near me')",female doctor near me walk in clinic,where can i see a doctor without insurance near me,1,4,google,2026-03-12 19:42:00.850974,abortion clinic near me walk in,women clinic near me walk in,female doctor,where can i see a without insurance +abortion,"('female doctor near me walk in clinic', 'can you request a female doctor at urgent care')",female doctor near me walk in clinic,can you request a female doctor at urgent care,2,4,google,2026-03-12 19:42:00.850974,abortion clinic near me walk in,women clinic near me walk in,female doctor,can you request a at urgent care +abortion,"('female doctor near me walk in clinic', 'gynecologist near me female walk in clinic')",female doctor near me walk in clinic,gynecologist near me female walk in clinic,3,4,google,2026-03-12 19:42:00.850974,abortion clinic near me walk in,women clinic near me walk in,female doctor,gynecologist +abortion,"('female doctor near me walk in clinic', 'walk in female clinic near me')",female doctor near me walk in clinic,walk in female clinic near me,4,4,google,2026-03-12 19:42:00.850974,abortion clinic near me walk in,women clinic near me walk in,female doctor,female doctor +abortion,"('female doctor near me walk in clinic', ""women's clinic near me walk-in"")",female doctor near me walk in clinic,women's clinic near me walk-in,5,4,google,2026-03-12 19:42:00.850974,abortion clinic near me walk in,women clinic near me walk in,female doctor,women's walk-in +abortion,"('female doctor near me walk in clinic', ""walk in clinic near me women's health"")",female doctor near me walk in clinic,walk in clinic near me women's health,6,4,google,2026-03-12 19:42:00.850974,abortion clinic near me walk in,women clinic near me walk in,female doctor,women's health +abortion,"(""walk in women's clinic near me within 5 mi"", ""walk-in women's clinic near me"")",walk in women's clinic near me within 5 mi,walk-in women's clinic near me,1,4,google,2026-03-12 19:42:02.000955,abortion clinic near me walk in,women clinic near me walk in,women's within 5 mi,walk-in +abortion,"(""walk in women's clinic near me within 5 mi"", 'does walgreens clinic take walk ins')",walk in women's clinic near me within 5 mi,does walgreens clinic take walk ins,2,4,google,2026-03-12 19:42:02.000955,abortion clinic near me walk in,women clinic near me walk in,women's within 5 mi,does walgreens take ins +abortion,"(""walk in women's clinic near me within 5 mi"", 'does walmart have a walk in clinic')",walk in women's clinic near me within 5 mi,does walmart have a walk in clinic,3,4,google,2026-03-12 19:42:02.000955,abortion clinic near me walk in,women clinic near me walk in,women's within 5 mi,does walmart have a +abortion,"(""walk in women's clinic near me within 5 mi"", ""walk in clinic near me women's health"")",walk in women's clinic near me within 5 mi,walk in clinic near me women's health,4,4,google,2026-03-12 19:42:02.000955,abortion clinic near me walk in,women clinic near me walk in,women's within 5 mi,health +abortion,"(""women's clinic near me without insurance"", ""free women's clinic near me no insurance"")",women's clinic near me without insurance,free women's clinic near me no insurance,1,4,google,2026-03-12 19:42:03.413445,abortion clinic near me walk in,women clinic near me walk in,women's without insurance,free no +abortion,"(""women's clinic near me without insurance"", ""women's health clinic near me no insurance"")",women's clinic near me without insurance,women's health clinic near me no insurance,2,4,google,2026-03-12 19:42:03.413445,abortion clinic near me walk in,women clinic near me walk in,women's without insurance,health no +abortion,"(""women's clinic near me without insurance"", 'what clinic can i go to without insurance')",women's clinic near me without insurance,what clinic can i go to without insurance,3,4,google,2026-03-12 19:42:03.413445,abortion clinic near me walk in,women clinic near me walk in,women's without insurance,what can i go to +abortion,"(""walk-in women's clinic near me"", ""walk in women's clinic near me open now"")",walk-in women's clinic near me,walk in women's clinic near me open now,1,4,google,2026-03-12 19:42:04.858014,abortion clinic near me walk in,women's health clinic near me walk in,walk-in,walk in open now +abortion,"(""walk-in women's clinic near me"", ""walk in women's clinic near me free"")",walk-in women's clinic near me,walk in women's clinic near me free,2,4,google,2026-03-12 19:42:04.858014,abortion clinic near me walk in,women's health clinic near me walk in,walk-in,walk in free +abortion,"(""walk-in women's clinic near me"", ""walk in women's clinic near me within 5 mi"")",walk-in women's clinic near me,walk in women's clinic near me within 5 mi,3,4,google,2026-03-12 19:42:04.858014,abortion clinic near me walk in,women's health clinic near me walk in,walk-in,walk in within 5 mi +abortion,"(""walk-in women's clinic near me"", ""walk in women's health clinic near me"")",walk-in women's clinic near me,walk in women's health clinic near me,4,4,google,2026-03-12 19:42:04.858014,abortion clinic near me walk in,women's health clinic near me walk in,walk-in,walk in health +abortion,"(""walk-in women's clinic near me"", 'walk in female doctor near me')",walk-in women's clinic near me,walk in female doctor near me,5,4,google,2026-03-12 19:42:04.858014,abortion clinic near me walk in,women's health clinic near me walk in,walk-in,walk in female doctor +abortion,"(""walk-in women's clinic near me"", 'walk in clinic female doctor near me')",walk-in women's clinic near me,walk in clinic female doctor near me,6,4,google,2026-03-12 19:42:04.858014,abortion clinic near me walk in,women's health clinic near me walk in,walk-in,walk in female doctor +abortion,"(""walk-in women's clinic near me"", 'walk in clinic for pregnant women near me')",walk-in women's clinic near me,walk in clinic for pregnant women near me,7,4,google,2026-03-12 19:42:04.858014,abortion clinic near me walk in,women's health clinic near me walk in,walk-in,walk in for pregnant women +abortion,"(""walk-in women's clinic near me"", 'does walmart have a walk in clinic')",walk-in women's clinic near me,does walmart have a walk in clinic,8,4,google,2026-03-12 19:42:04.858014,abortion clinic near me walk in,women's health clinic near me walk in,walk-in,does walmart have a walk in +abortion,"(""walk-in women's clinic near me"", 'walk in gyn clinic near me')",walk-in women's clinic near me,walk in gyn clinic near me,9,4,google,2026-03-12 19:42:04.858014,abortion clinic near me walk in,women's health clinic near me walk in,walk-in,walk in gyn +abortion,"('does walmart have a walk in clinic', 'does walmart have a walk in clinic near me')",does walmart have a walk in clinic,does walmart have a walk in clinic near me,1,4,google,2026-03-12 19:42:05.688502,abortion clinic near me walk in,women's health clinic near me walk in,does walmart have a,near me +abortion,"('does walmart have a walk in clinic', 'does walmart still have a walk in clinic')",does walmart have a walk in clinic,does walmart still have a walk in clinic,2,4,google,2026-03-12 19:42:05.688502,abortion clinic near me walk in,women's health clinic near me walk in,does walmart have a,still +abortion,"('does walmart have a walk in clinic', 'is walmart walk in clinic open')",does walmart have a walk in clinic,is walmart walk in clinic open,3,4,google,2026-03-12 19:42:05.688502,abortion clinic near me walk in,women's health clinic near me walk in,does walmart have a,is open +abortion,"('does walmart have a walk in clinic', 'walk in clinic near me in walmart')",does walmart have a walk in clinic,walk in clinic near me in walmart,4,4,google,2026-03-12 19:42:05.688502,abortion clinic near me walk in,women's health clinic near me walk in,does walmart have a,near me +abortion,"('does walmart have a walk in clinic', 'does walgreens still have walk in clinics')",does walmart have a walk in clinic,does walgreens still have walk in clinics,5,4,google,2026-03-12 19:42:05.688502,abortion clinic near me walk in,women's health clinic near me walk in,does walmart have a,walgreens still clinics +abortion,"('does walmart have a walk in clinic', 'does walmart auto center take walk ins')",does walmart have a walk in clinic,does walmart auto center take walk ins,6,4,google,2026-03-12 19:42:05.688502,abortion clinic near me walk in,women's health clinic near me walk in,does walmart have a,auto center take ins +abortion,"('does walmart have a walk in clinic', 'does walmart have a clinic')",does walmart have a walk in clinic,does walmart have a clinic,7,4,google,2026-03-12 19:42:05.688502,abortion clinic near me walk in,women's health clinic near me walk in,does walmart have a,does walmart have a +abortion,"('does walmart have a walk in clinic', 'does walmart have a health clinic')",does walmart have a walk in clinic,does walmart have a health clinic,8,4,google,2026-03-12 19:42:05.688502,abortion clinic near me walk in,women's health clinic near me walk in,does walmart have a,health +abortion,"('does walmart have a walk in clinic', 'does walmart have a medical clinic')",does walmart have a walk in clinic,does walmart have a medical clinic,9,4,google,2026-03-12 19:42:05.688502,abortion clinic near me walk in,women's health clinic near me walk in,does walmart have a,medical +abortion,"(""women's check up clinic near me"", ""women's check up doctor near me"")",women's check up clinic near me,women's check up doctor near me,1,4,google,2026-03-12 19:42:07.080467,abortion clinic near me walk in,women's health clinic near me walk in,check up,doctor +abortion,"(""women's check up clinic near me"", ""where can i get a women's check up"")",women's check up clinic near me,where can i get a women's check up,2,4,google,2026-03-12 19:42:07.080467,abortion clinic near me walk in,women's health clinic near me walk in,check up,where can i get a +abortion,"(""women's check up clinic near me"", 'health check up clinic near me')",women's check up clinic near me,health check up clinic near me,3,4,google,2026-03-12 19:42:07.080467,abortion clinic near me walk in,women's health clinic near me walk in,check up,health +abortion,"(""women's check up clinic near me"", ""women's health check-up near me"")",women's check up clinic near me,women's health check-up near me,4,4,google,2026-03-12 19:42:07.080467,abortion clinic near me walk in,women's health clinic near me walk in,check up,health check-up +abortion,"(""women's check up clinic near me"", ""women's check up near me"")",women's check up clinic near me,women's check up near me,5,4,google,2026-03-12 19:42:07.080467,abortion clinic near me walk in,women's health clinic near me walk in,check up,check up +abortion,"('walk in abortion clinic near me nhs london', 'nhs walk in clinic near me open now')",walk in abortion clinic near me nhs london,nhs walk in clinic near me open now,1,4,google,2026-03-12 19:42:08.599759,abortion clinic near me walk in,walk in abortion clinic near me nhs,london,open now +abortion,"('walk in abortion clinic near me nhs london', 'nhs walk in clinic near me open today')",walk in abortion clinic near me nhs london,nhs walk in clinic near me open today,2,4,google,2026-03-12 19:42:08.599759,abortion clinic near me walk in,walk in abortion clinic near me nhs,london,open today +abortion,"('walk in abortion clinic near me nhs london', 'nhs walk in centre london near me')",walk in abortion clinic near me nhs london,nhs walk in centre london near me,3,4,google,2026-03-12 19:42:08.599759,abortion clinic near me walk in,walk in abortion clinic near me nhs,london,centre +abortion,"('walk in abortion clinic near me nhs london', 'abortion walk in clinic london')",walk in abortion clinic near me nhs london,abortion walk in clinic london,4,4,google,2026-03-12 19:42:08.599759,abortion clinic near me walk in,walk in abortion clinic near me nhs,london,london +abortion,"('walk in abortion clinic near me nhs london', 'walk-in abortion clinic near me')",walk in abortion clinic near me nhs london,walk-in abortion clinic near me,5,4,google,2026-03-12 19:42:08.599759,abortion clinic near me walk in,walk in abortion clinic near me nhs,london,walk-in +abortion,"('walk in abortion clinic near me nhs scotland', 'nhs walk in clinic near me open now')",walk in abortion clinic near me nhs scotland,nhs walk in clinic near me open now,1,4,google,2026-03-12 19:42:09.734706,abortion clinic near me walk in,walk in abortion clinic near me nhs,scotland,open now +abortion,"('walk in abortion clinic near me nhs scotland', 'nhs walk in clinic near me open today')",walk in abortion clinic near me nhs scotland,nhs walk in clinic near me open today,2,4,google,2026-03-12 19:42:09.734706,abortion clinic near me walk in,walk in abortion clinic near me nhs,scotland,open today +abortion,"('walk in abortion clinic near me nhs scotland', 'walk in abortion clinic near me')",walk in abortion clinic near me nhs scotland,walk in abortion clinic near me,3,4,google,2026-03-12 19:42:09.734706,abortion clinic near me walk in,walk in abortion clinic near me nhs,scotland,scotland +abortion,"('walk in abortion clinic near me nhs scotland', 'do abortion clinics take walk ins')",walk in abortion clinic near me nhs scotland,do abortion clinics take walk ins,4,4,google,2026-03-12 19:42:09.734706,abortion clinic near me walk in,walk in abortion clinic near me nhs,scotland,do clinics take ins +abortion,"('walk in abortion clinic near me nhs within 5 mi', 'walk in abortion clinic near me')",walk in abortion clinic near me nhs within 5 mi,walk in abortion clinic near me,1,4,google,2026-03-12 19:42:10.907465,abortion clinic near me walk in,walk in abortion clinic near me nhs,within 5 mi,within 5 mi +abortion,"('walk in abortion clinic near me nhs within 5 mi', 'do abortion clinics take walk ins')",walk in abortion clinic near me nhs within 5 mi,do abortion clinics take walk ins,2,4,google,2026-03-12 19:42:10.907465,abortion clinic near me walk in,walk in abortion clinic near me nhs,within 5 mi,do clinics take ins +abortion,"('walk in abortion clinic near me nhs within 5 mi', 'do abortion clinics do walk ins')",walk in abortion clinic near me nhs within 5 mi,do abortion clinics do walk ins,3,4,google,2026-03-12 19:42:10.907465,abortion clinic near me walk in,walk in abortion clinic near me nhs,within 5 mi,do clinics do ins +abortion,"('walk in abortion clinic near me nhs within 5 mi', 'walk in clinics with appointments near me')",walk in abortion clinic near me nhs within 5 mi,walk in clinics with appointments near me,4,4,google,2026-03-12 19:42:10.907465,abortion clinic near me walk in,walk in abortion clinic near me nhs,within 5 mi,clinics with appointments +abortion,"('walk-in abortion clinic near me nhs birmingham', 'nhs walk in clinic near me open now')",walk-in abortion clinic near me nhs birmingham,nhs walk in clinic near me open now,1,4,google,2026-03-12 19:42:11.807699,abortion clinic near me walk in,walk in abortion clinic near me nhs,walk-in birmingham,walk in open now +abortion,"('walk-in abortion clinic near me nhs birmingham', 'nhs walk in clinic near me open today')",walk-in abortion clinic near me nhs birmingham,nhs walk in clinic near me open today,2,4,google,2026-03-12 19:42:11.807699,abortion clinic near me walk in,walk in abortion clinic near me nhs,walk-in birmingham,walk in open today +abortion,"('walk-in abortion clinic near me nhs birmingham', 'can i go to any nhs walk in centre')",walk-in abortion clinic near me nhs birmingham,can i go to any nhs walk in centre,3,4,google,2026-03-12 19:42:11.807699,abortion clinic near me walk in,walk in abortion clinic near me nhs,walk-in birmingham,can i go to any walk in centre +abortion,"('walk-in abortion clinic near me nhs birmingham', 'nhs walk in centre near me')",walk-in abortion clinic near me nhs birmingham,nhs walk in centre near me,4,4,google,2026-03-12 19:42:11.807699,abortion clinic near me walk in,walk in abortion clinic near me nhs,walk-in birmingham,walk in centre +abortion,"('walk-in abortion clinic near me nhs birmingham', 'walk-in abortion clinic near me')",walk-in abortion clinic near me nhs birmingham,walk-in abortion clinic near me,5,4,google,2026-03-12 19:42:11.807699,abortion clinic near me walk in,walk in abortion clinic near me nhs,walk-in birmingham,walk-in birmingham +abortion,"('top rated walk in abortion clinic near me nhs', 'walk in abortion clinic near me')",top rated walk in abortion clinic near me nhs,walk in abortion clinic near me,1,4,google,2026-03-12 19:42:13.179413,abortion clinic near me walk in,walk in abortion clinic near me nhs,top rated,top rated +abortion,"('top rated walk in abortion clinic near me nhs', 'nhs walk in clinic near me open now')",top rated walk in abortion clinic near me nhs,nhs walk in clinic near me open now,2,4,google,2026-03-12 19:42:13.179413,abortion clinic near me walk in,walk in abortion clinic near me nhs,top rated,open now +abortion,"('top rated walk in abortion clinic near me nhs', 'walk in clinic near kensington')",top rated walk in abortion clinic near me nhs,walk in clinic near kensington,3,4,google,2026-03-12 19:42:13.179413,abortion clinic near me walk in,walk in abortion clinic near me nhs,top rated,kensington +abortion,"('top rated walk in abortion clinic near me nhs', 'top rated abortion clinics near me')",top rated walk in abortion clinic near me nhs,top rated abortion clinics near me,4,4,google,2026-03-12 19:42:13.179413,abortion clinic near me walk in,walk in abortion clinic near me nhs,top rated,clinics +abortion,"('top rated walk in abortion clinic near me nhs', 'best rated abortion clinics near me')",top rated walk in abortion clinic near me nhs,best rated abortion clinics near me,5,4,google,2026-03-12 19:42:13.179413,abortion clinic near me walk in,walk in abortion clinic near me nhs,top rated,best clinics +abortion,"('top rated walk in abortion clinic near me nhs', 'top rated abortion clinics in michigan')",top rated walk in abortion clinic near me nhs,top rated abortion clinics in michigan,6,4,google,2026-03-12 19:42:13.179413,abortion clinic near me walk in,walk in abortion clinic near me nhs,top rated,clinics michigan +abortion,"('walk in abortion clinic near me', 'walk in abortion clinic near me within 20 mi')",walk in abortion clinic near me,walk in abortion clinic near me within 20 mi,1,4,google,2026-03-12 19:42:14.348758,abortion clinic near me walk in,walk in abortion clinic near me nhs,nhs,within 20 mi +abortion,"('walk in abortion clinic near me', 'walk in abortion clinic near me open now')",walk in abortion clinic near me,walk in abortion clinic near me open now,2,4,google,2026-03-12 19:42:14.348758,abortion clinic near me walk in,walk in abortion clinic near me nhs,nhs,open now +abortion,"('walk in abortion clinic near me', 'walk in abortion clinic near me nhs')",walk in abortion clinic near me,walk in abortion clinic near me nhs,3,4,google,2026-03-12 19:42:14.348758,abortion clinic near me walk in,walk in abortion clinic near me nhs,nhs,nhs +abortion,"('walk in abortion clinic near me', 'walk in abortion clinic near me private')",walk in abortion clinic near me,walk in abortion clinic near me private,4,4,google,2026-03-12 19:42:14.348758,abortion clinic near me walk in,walk in abortion clinic near me nhs,nhs,private +abortion,"('walk in abortion clinic near me', 'walk in abortion clinic near me within 5 mi')",walk in abortion clinic near me,walk in abortion clinic near me within 5 mi,5,4,google,2026-03-12 19:42:14.348758,abortion clinic near me walk in,walk in abortion clinic near me nhs,nhs,within 5 mi +abortion,"('walk in abortion clinic near me', 'walk in abortion clinic near me nhs open now')",walk in abortion clinic near me,walk in abortion clinic near me nhs open now,6,4,google,2026-03-12 19:42:14.348758,abortion clinic near me walk in,walk in abortion clinic near me nhs,nhs,nhs open now +abortion,"('walk in abortion clinic near me', 'walk in abortion clinic near me nhs london')",walk in abortion clinic near me,walk in abortion clinic near me nhs london,7,4,google,2026-03-12 19:42:14.348758,abortion clinic near me walk in,walk in abortion clinic near me nhs,nhs,nhs london +abortion,"('walk in abortion clinic near me', 'walk in abortion clinic near me nhs scotland')",walk in abortion clinic near me,walk in abortion clinic near me nhs scotland,8,4,google,2026-03-12 19:42:14.348758,abortion clinic near me walk in,walk in abortion clinic near me nhs,nhs,nhs scotland +abortion,"('walk in abortion clinic near me', 'walk in abortion clinic near me nhs within 5 mi')",walk in abortion clinic near me,walk in abortion clinic near me nhs within 5 mi,9,4,google,2026-03-12 19:42:14.348758,abortion clinic near me walk in,walk in abortion clinic near me nhs,nhs,nhs within 5 mi +abortion,"('nhs walk in clinic near me open now', 'nhs walk in clinic near me open now within 5 mi')",nhs walk in clinic near me open now,nhs walk in clinic near me open now within 5 mi,1,4,google,2026-03-12 19:42:15.638743,abortion clinic near me walk in,walk in abortion clinic near me nhs,open now,within 5 mi +abortion,"('nhs walk in clinic near me open now', 'nhs walk in clinic near me open today')",nhs walk in clinic near me open now,nhs walk in clinic near me open today,2,4,google,2026-03-12 19:42:15.638743,abortion clinic near me walk in,walk in abortion clinic near me nhs,open now,today +abortion,"('nhs walk in clinic near me open now', 'walk in abortion clinic near me nhs open now')",nhs walk in clinic near me open now,walk in abortion clinic near me nhs open now,3,4,google,2026-03-12 19:42:15.638743,abortion clinic near me walk in,walk in abortion clinic near me nhs,open now,abortion +abortion,"('nhs walk in clinic near me open now', 'nhs walk in clinic open now')",nhs walk in clinic near me open now,nhs walk in clinic open now,4,4,google,2026-03-12 19:42:15.638743,abortion clinic near me walk in,walk in abortion clinic near me nhs,open now,open now +abortion,"('nhs walk in clinic near me open now', 'can i go to any nhs walk in centre')",nhs walk in clinic near me open now,can i go to any nhs walk in centre,5,4,google,2026-03-12 19:42:15.638743,abortion clinic near me walk in,walk in abortion clinic near me nhs,open now,can i go to any centre +abortion,"('nhs walk in clinic near me open now', 'nhs walk in centre near me')",nhs walk in clinic near me open now,nhs walk in centre near me,6,4,google,2026-03-12 19:42:15.638743,abortion clinic near me walk in,walk in abortion clinic near me nhs,open now,centre +abortion,"('nhs walk in clinic near me open now', 'is there any walk-in clinics open today')",nhs walk in clinic near me open now,is there any walk-in clinics open today,7,4,google,2026-03-12 19:42:15.638743,abortion clinic near me walk in,walk in abortion clinic near me nhs,open now,is there any walk-in clinics today +abortion,"('nhs walk in clinic near me open now', 'nhs healthcare near me')",nhs walk in clinic near me open now,nhs healthcare near me,8,4,google,2026-03-12 19:42:15.638743,abortion clinic near me walk in,walk in abortion clinic near me nhs,open now,healthcare +abortion,"('nhs walk in clinic near me open now', 'walk in health clinic near me open now')",nhs walk in clinic near me open now,walk in health clinic near me open now,9,4,google,2026-03-12 19:42:15.638743,abortion clinic near me walk in,walk in abortion clinic near me nhs,open now,health +abortion,"('do abortion clinics take walk ins', 'do abortion clinics do walk ins')",do abortion clinics take walk ins,do abortion clinics do walk ins,1,4,google,2026-03-12 19:42:16.572869,abortion clinic near me walk in,walk in abortion clinic near me nhs,do clinics take ins,do clinics take ins +abortion,"('do abortion clinics take walk ins', 'does planned parenthood take walk ins for abortions')",do abortion clinics take walk ins,does planned parenthood take walk ins for abortions,2,4,google,2026-03-12 19:42:16.572869,abortion clinic near me walk in,walk in abortion clinic near me nhs,do clinics take ins,does planned parenthood for abortions +abortion,"('do abortion clinics take walk ins', 'do you need an appointment for an abortion at planned parenthood')",do abortion clinics take walk ins,do you need an appointment for an abortion at planned parenthood,3,4,google,2026-03-12 19:42:16.572869,abortion clinic near me walk in,walk in abortion clinic near me nhs,do clinics take ins,you need an appointment for an at planned parenthood +abortion,"('do abortion clinics take walk ins', 'walk in abortion clinic near me')",do abortion clinics take walk ins,walk in abortion clinic near me,4,4,google,2026-03-12 19:42:16.572869,abortion clinic near me walk in,walk in abortion clinic near me nhs,do clinics take ins,in clinic near me +abortion,"('do abortion clinics take walk ins', 'do abortion clinics take insurance')",do abortion clinics take walk ins,do abortion clinics take insurance,5,4,google,2026-03-12 19:42:16.572869,abortion clinic near me walk in,walk in abortion clinic near me nhs,do clinics take ins,insurance +abortion,"('do abortion clinics take walk ins', 'do abortion clinics take cash')",do abortion clinics take walk ins,do abortion clinics take cash,6,4,google,2026-03-12 19:42:16.572869,abortion clinic near me walk in,walk in abortion clinic near me nhs,do clinics take ins,cash +abortion,"('do abortion clinics take walk ins', 'do abortion clinics take credit cards')",do abortion clinics take walk ins,do abortion clinics take credit cards,7,4,google,2026-03-12 19:42:16.572869,abortion clinic near me walk in,walk in abortion clinic near me nhs,do clinics take ins,credit cards +abortion,"('top rated walk in abortion clinic near me open now', 'walk in abortion clinic near me')",top rated walk in abortion clinic near me open now,walk in abortion clinic near me,1,4,google,2026-03-12 19:42:18.094774,abortion clinic near me walk in,walk in abortion clinic near me open now,top rated,top rated +abortion,"('top rated walk in abortion clinic near me open now', 'abortion clinic open on saturday near me')",top rated walk in abortion clinic near me open now,abortion clinic open on saturday near me,2,4,google,2026-03-12 19:42:18.094774,abortion clinic near me walk in,walk in abortion clinic near me open now,top rated,on saturday +abortion,"('top rated walk in abortion clinic near me open now', 'walk in medical clinic near me open now')",top rated walk in abortion clinic near me open now,walk in medical clinic near me open now,3,4,google,2026-03-12 19:42:18.094774,abortion clinic near me walk in,walk in abortion clinic near me open now,top rated,medical +abortion,"('top rated walk in abortion clinic near me open now', 'closest walk in clinic open near me')",top rated walk in abortion clinic near me open now,closest walk in clinic open near me,4,4,google,2026-03-12 19:42:18.094774,abortion clinic near me walk in,walk in abortion clinic near me open now,top rated,closest +abortion,"('top rated walk in abortion clinic near me open now', 'top rated abortion clinics near me')",top rated walk in abortion clinic near me open now,top rated abortion clinics near me,5,4,google,2026-03-12 19:42:18.094774,abortion clinic near me walk in,walk in abortion clinic near me open now,top rated,clinics +abortion,"('walk in abortion clinic open now', ""walk in women's clinic open now"")",walk in abortion clinic open now,walk in women's clinic open now,1,4,google,2026-03-12 19:42:19.061714,abortion clinic near me walk in,walk in abortion clinic near me open now,open now,women's +abortion,"('walk in abortion clinic open now', 'walk in abortion clinic near me open now')",walk in abortion clinic open now,walk in abortion clinic near me open now,2,4,google,2026-03-12 19:42:19.061714,abortion clinic near me walk in,walk in abortion clinic near me open now,open now,near me +abortion,"('walk in abortion clinic open now', 'walk in abortion clinic near me nhs open now')",walk in abortion clinic open now,walk in abortion clinic near me nhs open now,3,4,google,2026-03-12 19:42:19.061714,abortion clinic near me walk in,walk in abortion clinic near me open now,open now,near me nhs +abortion,"('walk in abortion clinic open now', ""walk in women's clinic near me open now"")",walk in abortion clinic open now,walk in women's clinic near me open now,4,4,google,2026-03-12 19:42:19.061714,abortion clinic near me walk in,walk in abortion clinic near me open now,open now,women's near me +abortion,"('walk in abortion clinic open now', 'top rated walk in abortion clinic near me open now')",walk in abortion clinic open now,top rated walk in abortion clinic near me open now,5,4,google,2026-03-12 19:42:19.061714,abortion clinic near me walk in,walk in abortion clinic near me open now,open now,top rated near me +abortion,"('walk in abortion clinic open now', 'walk in abortion clinic near me')",walk in abortion clinic open now,walk in abortion clinic near me,6,4,google,2026-03-12 19:42:19.061714,abortion clinic near me walk in,walk in abortion clinic near me open now,open now,near me +abortion,"('walk in abortion clinic open now', 'do abortion clinics take walk ins')",walk in abortion clinic open now,do abortion clinics take walk ins,7,4,google,2026-03-12 19:42:19.061714,abortion clinic near me walk in,walk in abortion clinic near me open now,open now,do clinics take ins +abortion,"('walk in abortion clinic open now', 'abortion clinic open near me')",walk in abortion clinic open now,abortion clinic open near me,8,4,google,2026-03-12 19:42:19.061714,abortion clinic near me walk in,walk in abortion clinic near me open now,open now,near me +abortion,"('walk in abortion clinic open now', 'do abortion clinics do walk ins')",walk in abortion clinic open now,do abortion clinics do walk ins,9,4,google,2026-03-12 19:42:19.061714,abortion clinic near me walk in,walk in abortion clinic near me open now,open now,do clinics do ins +abortion,"('do abortion clinics do walk ins', 'do abortion clinics take walk ins')",do abortion clinics do walk ins,do abortion clinics take walk ins,1,4,google,2026-03-12 19:42:20.227855,abortion clinic near me walk in,walk in abortion clinic near me open now,do clinics do ins,take +abortion,"('do abortion clinics do walk ins', 'does planned parenthood take walk ins for abortions')",do abortion clinics do walk ins,does planned parenthood take walk ins for abortions,2,4,google,2026-03-12 19:42:20.227855,abortion clinic near me walk in,walk in abortion clinic near me open now,do clinics do ins,does planned parenthood take for abortions +abortion,"('do abortion clinics do walk ins', 'do you need an appointment for an abortion at planned parenthood')",do abortion clinics do walk ins,do you need an appointment for an abortion at planned parenthood,3,4,google,2026-03-12 19:42:20.227855,abortion clinic near me walk in,walk in abortion clinic near me open now,do clinics do ins,you need an appointment for an at planned parenthood +abortion,"('do abortion clinics do walk ins', 'does planned parenthood take walk ins')",do abortion clinics do walk ins,does planned parenthood take walk ins,4,4,google,2026-03-12 19:42:20.227855,abortion clinic near me walk in,walk in abortion clinic near me open now,do clinics do ins,does planned parenthood take +abortion,"('do abortion clinics do walk ins', 'do abortion clinics do ultrasounds')",do abortion clinics do walk ins,do abortion clinics do ultrasounds,5,4,google,2026-03-12 19:42:20.227855,abortion clinic near me walk in,walk in abortion clinic near me open now,do clinics do ins,ultrasounds +abortion,"('do abortion clinics do walk ins', 'do abortion clinics give doctors notes')",do abortion clinics do walk ins,do abortion clinics give doctors notes,6,4,google,2026-03-12 19:42:20.227855,abortion clinic near me walk in,walk in abortion clinic near me open now,do clinics do ins,give doctors notes +abortion,"('do abortion clinics do walk ins', 'do abortion clinics take insurance')",do abortion clinics do walk ins,do abortion clinics take insurance,7,4,google,2026-03-12 19:42:20.227855,abortion clinic near me walk in,walk in abortion clinic near me open now,do clinics do ins,take insurance +abortion,"('do abortion clinics do walk ins', 'does planned parenthood do walk in abortions')",do abortion clinics do walk ins,does planned parenthood do walk in abortions,8,4,google,2026-03-12 19:42:20.227855,abortion clinic near me walk in,walk in abortion clinic near me open now,do clinics do ins,does planned parenthood in abortions +abortion,"('are there any walk in clinics open near me', 'are there any walk in clinics open near me today')",are there any walk in clinics open near me,are there any walk in clinics open near me today,1,4,google,2026-03-12 19:42:21.624934,abortion clinic near me walk in,walk in abortion clinic near me open now,are there any clinics,today +abortion,"('are there any walk in clinics open near me', 'are there any urgent care open near me')",are there any walk in clinics open near me,are there any urgent care open near me,2,4,google,2026-03-12 19:42:21.624934,abortion clinic near me walk in,walk in abortion clinic near me open now,are there any clinics,urgent care +abortion,"('are there any walk in clinics open near me', 'are walk in clinics open near me')",are there any walk in clinics open near me,are walk in clinics open near me,3,4,google,2026-03-12 19:42:21.624934,abortion clinic near me walk in,walk in abortion clinic near me open now,are there any clinics,are there any clinics +abortion,"('are there any walk in clinics open near me', 'are any clinics open near me')",are there any walk in clinics open near me,are any clinics open near me,4,4,google,2026-03-12 19:42:21.624934,abortion clinic near me walk in,walk in abortion clinic near me open now,are there any clinics,are there any clinics +abortion,"('are there any walk in clinics open near me', 'are there any clinics open on saturday')",are there any walk in clinics open near me,are there any clinics open on saturday,5,4,google,2026-03-12 19:42:21.624934,abortion clinic near me walk in,walk in abortion clinic near me open now,are there any clinics,on saturday +abortion,"('are there any walk in clinics open near me', 'are there any clinics open on sunday')",are there any walk in clinics open near me,are there any clinics open on sunday,6,4,google,2026-03-12 19:42:21.624934,abortion clinic near me walk in,walk in abortion clinic near me open now,are there any clinics,on sunday +abortion,"('private abortion clinic near me', 'private abortion clinic near me open now')",private abortion clinic near me,private abortion clinic near me open now,1,4,google,2026-03-12 19:42:22.723881,abortion clinic near me walk in,walk in abortion clinic near me private,private,open now +abortion,"('private abortion clinic near me', 'private abortion clinic near me within 5 mi')",private abortion clinic near me,private abortion clinic near me within 5 mi,2,4,google,2026-03-12 19:42:22.723881,abortion clinic near me walk in,walk in abortion clinic near me private,private,within 5 mi +abortion,"('private abortion clinic near me', ""private women's clinic near me"")",private abortion clinic near me,private women's clinic near me,3,4,google,2026-03-12 19:42:22.723881,abortion clinic near me walk in,walk in abortion clinic near me private,private,women's +abortion,"('private abortion clinic near me', 'private abortion hospital near me')",private abortion clinic near me,private abortion hospital near me,4,4,google,2026-03-12 19:42:22.723881,abortion clinic near me walk in,walk in abortion clinic near me private,private,hospital +abortion,"('private abortion clinic near me', 'private abortion centre near me')",private abortion clinic near me,private abortion centre near me,5,4,google,2026-03-12 19:42:22.723881,abortion clinic near me walk in,walk in abortion clinic near me private,private,centre +abortion,"('private abortion clinic near me', 'private surgical abortion clinic near me')",private abortion clinic near me,private surgical abortion clinic near me,6,4,google,2026-03-12 19:42:22.723881,abortion clinic near me walk in,walk in abortion clinic near me private,private,surgical +abortion,"('private abortion clinic near me', ""private women's hospital near me"")",private abortion clinic near me,private women's hospital near me,7,4,google,2026-03-12 19:42:22.723881,abortion clinic near me walk in,walk in abortion clinic near me private,private,women's hospital +abortion,"('private abortion clinic near me', 'private doctor abortion near me')",private abortion clinic near me,private doctor abortion near me,8,4,google,2026-03-12 19:42:22.723881,abortion clinic near me walk in,walk in abortion clinic near me private,private,doctor +abortion,"('private abortion clinic near me', ""private women's doctor near me"")",private abortion clinic near me,private women's doctor near me,9,4,google,2026-03-12 19:42:22.723881,abortion clinic near me walk in,walk in abortion clinic near me private,private,women's doctor +abortion,"('closest abortion clinic near me', 'closest abortion clinic near me open now')",closest abortion clinic near me,closest abortion clinic near me open now,1,4,google,2026-03-12 19:42:23.819150,abortion clinic near me walk in,walk in abortion clinic near me within 5 mi,closest,open now +abortion,"('closest abortion clinic near me', 'closest abortion clinic near me in illinois')",closest abortion clinic near me,closest abortion clinic near me in illinois,2,4,google,2026-03-12 19:42:23.819150,abortion clinic near me walk in,walk in abortion clinic near me within 5 mi,closest,in illinois +abortion,"('closest abortion clinic near me', 'closest legal abortion clinic near me')",closest abortion clinic near me,closest legal abortion clinic near me,3,4,google,2026-03-12 19:42:23.819150,abortion clinic near me walk in,walk in abortion clinic near me within 5 mi,closest,legal +abortion,"('closest abortion clinic near me', 'abortion clinic nearest me')",closest abortion clinic near me,abortion clinic nearest me,4,4,google,2026-03-12 19:42:23.819150,abortion clinic near me walk in,walk in abortion clinic near me within 5 mi,closest,nearest +abortion,"('nhs walk in clinic near me open today', 'nhs walk in clinic near me open now')",nhs walk in clinic near me open today,nhs walk in clinic near me open now,1,4,google,2026-03-12 19:42:24.655083,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,today,now +abortion,"('nhs walk in clinic near me open today', 'can i go to any nhs walk in centre')",nhs walk in clinic near me open today,can i go to any nhs walk in centre,2,4,google,2026-03-12 19:42:24.655083,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,today,can i go to any centre +abortion,"('nhs walk in clinic near me open today', 'what walk in clinics are open today')",nhs walk in clinic near me open today,what walk in clinics are open today,3,4,google,2026-03-12 19:42:24.655083,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,today,what clinics are +abortion,"('nhs walk in clinic near me open today', 'are there any walk in clinics open near me')",nhs walk in clinic near me open today,are there any walk in clinics open near me,4,4,google,2026-03-12 19:42:24.655083,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,today,are there any clinics +abortion,"('nhs walk in clinic near me open today', 'walk in health clinic near me open now')",nhs walk in clinic near me open today,walk in health clinic near me open now,5,4,google,2026-03-12 19:42:24.655083,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,today,health now +abortion,"('nhs walk in clinic near me open today', 'nhs healthcare near me')",nhs walk in clinic near me open today,nhs healthcare near me,6,4,google,2026-03-12 19:42:24.655083,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,today,healthcare +abortion,"('nhs walk in clinic near me open today', 'nearest walk in clinic open today')",nhs walk in clinic near me open today,nearest walk in clinic open today,7,4,google,2026-03-12 19:42:24.655083,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,today,nearest +abortion,"('nearest walk in clinic open now', 'nearest walk in clinic open now within 5 mi')",nearest walk in clinic open now,nearest walk in clinic open now within 5 mi,1,4,google,2026-03-12 19:42:25.531469,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,nearest,within 5 mi +abortion,"('nearest walk in clinic open now', 'nearby walk in clinic open now')",nearest walk in clinic open now,nearby walk in clinic open now,2,4,google,2026-03-12 19:42:25.531469,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,nearest,nearby +abortion,"('nearest walk in clinic open now', 'closest walk in clinic open now')",nearest walk in clinic open now,closest walk in clinic open now,3,4,google,2026-03-12 19:42:25.531469,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,nearest,closest +abortion,"('nearest walk in clinic open now', 'nearest walk in clinic to me open now')",nearest walk in clinic open now,nearest walk in clinic to me open now,4,4,google,2026-03-12 19:42:25.531469,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,nearest,to me +abortion,"('nearest walk in clinic open now', 'closest walk in clinic near me open now')",nearest walk in clinic open now,closest walk in clinic near me open now,5,4,google,2026-03-12 19:42:25.531469,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,nearest,closest near me +abortion,"('nearest walk in clinic open now', 'what walk in clinics are open today')",nearest walk in clinic open now,what walk in clinics are open today,6,4,google,2026-03-12 19:42:25.531469,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,nearest,what clinics are today +abortion,"('nearest walk in clinic open now', 'closest walk in clinic open near me')",nearest walk in clinic open now,closest walk in clinic open near me,7,4,google,2026-03-12 19:42:25.531469,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,nearest,closest near me +abortion,"('nearest walk in clinic open now', 'walk in medical clinic near me open now')",nearest walk in clinic open now,walk in medical clinic near me open now,8,4,google,2026-03-12 19:42:25.531469,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,nearest,medical near me +abortion,"('nearest walk in clinic open now', 'nearest walk in clinic open today')",nearest walk in clinic open now,nearest walk in clinic open today,9,4,google,2026-03-12 19:42:25.531469,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,nearest,today +abortion,"('walk in medical clinic near me open now', 'walk in health clinic near me open now')",walk in medical clinic near me open now,walk in health clinic near me open now,1,4,google,2026-03-12 19:42:26.757101,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,medical,health +abortion,"('walk in medical clinic near me open now', 'drop in medical clinic near me open now')",walk in medical clinic near me open now,drop in medical clinic near me open now,2,4,google,2026-03-12 19:42:26.757101,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,medical,drop +abortion,"('walk in medical clinic near me open now', 'walk in medical clinic near me open today')",walk in medical clinic near me open now,walk in medical clinic near me open today,3,4,google,2026-03-12 19:42:26.757101,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,medical,today +abortion,"('walk in medical clinic near me open now', 'top rated walk in medical clinic near me open now')",walk in medical clinic near me open now,top rated walk in medical clinic near me open now,4,4,google,2026-03-12 19:42:26.757101,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,medical,top rated +abortion,"('walk in medical clinic near me open now', 'walk in mental health clinic near me open now')",walk in medical clinic near me open now,walk in mental health clinic near me open now,5,4,google,2026-03-12 19:42:26.757101,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,medical,mental health +abortion,"('walk in medical clinic near me open now', 'walk in clinic urgent care near me open now')",walk in medical clinic near me open now,walk in clinic urgent care near me open now,6,4,google,2026-03-12 19:42:26.757101,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,medical,urgent care +abortion,"('walk in medical clinic near me open now', 'walk in doctor clinic near me open now')",walk in medical clinic near me open now,walk in doctor clinic near me open now,7,4,google,2026-03-12 19:42:26.757101,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,medical,doctor +abortion,"('walk in medical clinic near me open now', 'walk in sexual health clinic near me open today')",walk in medical clinic near me open now,walk in sexual health clinic near me open today,8,4,google,2026-03-12 19:42:26.757101,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,medical,sexual health today +abortion,"('walk in medical clinic near me open now', 'walk in medical center near me open now')",walk in medical clinic near me open now,walk in medical center near me open now,9,4,google,2026-03-12 19:42:26.757101,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,medical,center +abortion,"('walk-in abortion clinic near me', 'walk-in abortion clinic near me nhs')",walk-in abortion clinic near me,walk-in abortion clinic near me nhs,1,4,google,2026-03-12 19:42:27.604627,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,walk-in,nhs +abortion,"('walk-in abortion clinic near me', 'walk in abortion clinic near me open now')",walk-in abortion clinic near me,walk in abortion clinic near me open now,2,4,google,2026-03-12 19:42:27.604627,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,walk-in,walk in open now +abortion,"('walk-in abortion clinic near me', 'walk in abortion clinic near me private')",walk-in abortion clinic near me,walk in abortion clinic near me private,3,4,google,2026-03-12 19:42:27.604627,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,walk-in,walk in private +abortion,"('walk-in abortion clinic near me', 'walk in abortion clinic near me within 5 mi')",walk-in abortion clinic near me,walk in abortion clinic near me within 5 mi,4,4,google,2026-03-12 19:42:27.604627,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,walk-in,walk in within 5 mi +abortion,"('walk-in abortion clinic near me', 'walk in abortion clinic near me within 20 mi')",walk-in abortion clinic near me,walk in abortion clinic near me within 20 mi,5,4,google,2026-03-12 19:42:27.604627,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,walk-in,walk in within 20 mi +abortion,"('walk-in abortion clinic near me', 'walk in abortion clinic near me nhs open now')",walk-in abortion clinic near me,walk in abortion clinic near me nhs open now,6,4,google,2026-03-12 19:42:27.604627,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,walk-in,walk in nhs open now +abortion,"('walk-in abortion clinic near me', 'walk in abortion clinic near me nhs london')",walk-in abortion clinic near me,walk in abortion clinic near me nhs london,7,4,google,2026-03-12 19:42:27.604627,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,walk-in,walk in nhs london +abortion,"('walk-in abortion clinic near me', 'walk in abortion clinic near me nhs scotland')",walk-in abortion clinic near me,walk in abortion clinic near me nhs scotland,8,4,google,2026-03-12 19:42:27.604627,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,walk-in,walk in nhs scotland +abortion,"('walk-in abortion clinic near me', 'walk in abortion clinic near me nhs within 5 mi')",walk-in abortion clinic near me,walk in abortion clinic near me nhs within 5 mi,9,4,google,2026-03-12 19:42:27.604627,abortion clinic near me walk in,walk in abortion clinic near me nhs open now,walk-in,walk in nhs within 5 mi +abortion,"('female doctor near me now', 'female doctor near me open now')",female doctor near me now,female doctor near me open now,1,4,google,2026-03-12 19:42:28.890446,abortion clinic near me now,women's clinic near me now,female doctor,open +abortion,"('female doctor near me now', ""women's clinic near me now"")",female doctor near me now,women's clinic near me now,2,4,google,2026-03-12 19:42:28.890446,abortion clinic near me now,women's clinic near me now,female doctor,women's clinic +abortion,"('female doctor near me now', 'women doctor near me open now')",female doctor near me now,women doctor near me open now,3,4,google,2026-03-12 19:42:28.890446,abortion clinic near me now,women's clinic near me now,female doctor,women open +abortion,"('female doctor near me now', 'female clinic near me open now')",female doctor near me now,female clinic near me open now,4,4,google,2026-03-12 19:42:28.890446,abortion clinic near me now,women's clinic near me now,female doctor,clinic open +abortion,"('female doctor near me now', 'lady doctor near me open now within 1.6 km')",female doctor near me now,lady doctor near me open now within 1.6 km,5,4,google,2026-03-12 19:42:28.890446,abortion clinic near me now,women's clinic near me now,female doctor,lady open within 1.6 km +abortion,"('female doctor near me now', 'female physician near me open now')",female doctor near me now,female physician near me open now,6,4,google,2026-03-12 19:42:28.890446,abortion clinic near me now,women's clinic near me now,female doctor,physician open +abortion,"('female doctor near me now', 'lady doctor near me open now within 800m')",female doctor near me now,lady doctor near me open now within 800m,7,4,google,2026-03-12 19:42:28.890446,abortion clinic near me now,women's clinic near me now,female doctor,lady open within 800m +abortion,"('female doctor near me now', 'women dr near me open now')",female doctor near me now,women dr near me open now,8,4,google,2026-03-12 19:42:28.890446,abortion clinic near me now,women's clinic near me now,female doctor,women dr open +abortion,"('female doctor near me now', 'female skin doctor near me open now')",female doctor near me now,female skin doctor near me open now,9,4,google,2026-03-12 19:42:28.890446,abortion clinic near me now,women's clinic near me now,female doctor,skin open +abortion,"('abortion clinic near me today san jose', 'abortion clinic near me today san jose ca')",abortion clinic near me today san jose,abortion clinic near me today san jose ca,1,4,google,2026-03-12 19:42:30.288757,abortion clinic near me now,abortion clinic near me today,san jose,ca +abortion,"('abortion clinic near me today san jose', 'abortion clinic near me today san jose california')",abortion clinic near me today san jose,abortion clinic near me today san jose california,2,4,google,2026-03-12 19:42:30.288757,abortion clinic near me now,abortion clinic near me today,san jose,california +abortion,"('abortion clinic near me today san jose', 'abortion clinic near me today san jose reddit')",abortion clinic near me today san jose,abortion clinic near me today san jose reddit,3,4,google,2026-03-12 19:42:30.288757,abortion clinic near me now,abortion clinic near me today,san jose,reddit +abortion,"('abortion clinic near me today san jose', 'abortion clinic near me today san jose area')",abortion clinic near me today san jose,abortion clinic near me today san jose area,4,4,google,2026-03-12 19:42:30.288757,abortion clinic near me now,abortion clinic near me today,san jose,area +abortion,"('abortion clinic near me today palo alto', 'abortion clinic near me today palo alto ca')",abortion clinic near me today palo alto,abortion clinic near me today palo alto ca,1,4,google,2026-03-12 19:42:31.694493,abortion clinic near me now,abortion clinic near me today,palo alto,ca +abortion,"('abortion clinic near me today palo alto', 'abortion clinic near me today palo alto california')",abortion clinic near me today palo alto,abortion clinic near me today palo alto california,2,4,google,2026-03-12 19:42:31.694493,abortion clinic near me now,abortion clinic near me today,palo alto,california +abortion,"('abortion clinic near me today palo alto', 'abortion clinic near me today palo alto today')",abortion clinic near me today palo alto,abortion clinic near me today palo alto today,3,4,google,2026-03-12 19:42:31.694493,abortion clinic near me now,abortion clinic near me today,palo alto,palo alto +abortion,"('abortion clinic near me today palo alto', 'abortion clinic near me today palo alto reddit')",abortion clinic near me today palo alto,abortion clinic near me today palo alto reddit,4,4,google,2026-03-12 19:42:31.694493,abortion clinic near me now,abortion clinic near me today,palo alto,reddit +abortion,"('abortion clinic near me today open', 'abortion clinic near me open today')",abortion clinic near me today open,abortion clinic near me open today,1,4,google,2026-03-12 19:42:33.062266,abortion clinic near me now,abortion clinic near me today,open,open +abortion,"('abortion clinic near me today open', 'abortion clinic near me open now')",abortion clinic near me today open,abortion clinic near me open now,2,4,google,2026-03-12 19:42:33.062266,abortion clinic near me now,abortion clinic near me today,open,now +abortion,"('abortion clinic near me today open', 'abortion clinic near me open')",abortion clinic near me today open,abortion clinic near me open,3,4,google,2026-03-12 19:42:33.062266,abortion clinic near me now,abortion clinic near me today,open,open +abortion,"('abortion clinic near me today open', 'abortion clinic near me open saturday')",abortion clinic near me today open,abortion clinic near me open saturday,4,4,google,2026-03-12 19:42:33.062266,abortion clinic near me now,abortion clinic near me today,open,saturday +abortion,"('abortion clinic near me today open', 'abortion clinic near me open on weekends')",abortion clinic near me today open,abortion clinic near me open on weekends,5,4,google,2026-03-12 19:42:33.062266,abortion clinic near me now,abortion clinic near me today,open,on weekends +abortion,"('abortion clinic near me today open', 'abortion clinic near me open sunday')",abortion clinic near me today open,abortion clinic near me open sunday,6,4,google,2026-03-12 19:42:33.062266,abortion clinic near me now,abortion clinic near me today,open,sunday +abortion,"('abortion clinic near me today open', 'abortion clinic near me open tomorrow')",abortion clinic near me today open,abortion clinic near me open tomorrow,7,4,google,2026-03-12 19:42:33.062266,abortion clinic near me now,abortion clinic near me today,open,tomorrow +abortion,"('abortion clinic near me today open', 'abortion clinic near me open now within 8.1 km')",abortion clinic near me today open,abortion clinic near me open now within 8.1 km,8,4,google,2026-03-12 19:42:33.062266,abortion clinic near me now,abortion clinic near me today,open,now within 8.1 km +abortion,"('abortion clinic near me today open', 'abortion clinic near me open now within 20 mi')",abortion clinic near me today open,abortion clinic near me open now within 20 mi,9,4,google,2026-03-12 19:42:33.062266,abortion clinic near me now,abortion clinic near me today,open,now within 20 mi +abortion,"('abortion clinic near me today open', 'abortion clinic near me open now within 5 mi')",abortion clinic near me today open,abortion clinic near me open now within 5 mi,10,4,google,2026-03-12 19:42:33.062266,abortion clinic near me now,abortion clinic near me today,open,now within 5 mi +abortion,"('abortion clinic near me today san jose ca', 'abortion clinic near me today san jose california')",abortion clinic near me today san jose ca,abortion clinic near me today san jose california,1,4,google,2026-03-12 19:42:34.171681,abortion clinic near me now,abortion clinic near me today,san jose ca,california +abortion,"('abortion clinic near me today palo alto ca', 'abortion clinic near me today palo alto california')",abortion clinic near me today palo alto ca,abortion clinic near me today palo alto california,1,4,google,2026-03-12 19:42:35.676685,abortion clinic near me now,abortion clinic near me today,palo alto ca,california +abortion,"('abortion clinic near me today palo alto ca', 'abortion clinic near me today palo alto ca 94306')",abortion clinic near me today palo alto ca,abortion clinic near me today palo alto ca 94306,2,4,google,2026-03-12 19:42:35.676685,abortion clinic near me now,abortion clinic near me today,palo alto ca,94306 +abortion,"('abortion clinic near me today san francisco', 'abortion clinic near me today san francisco ca')",abortion clinic near me today san francisco,abortion clinic near me today san francisco ca,1,4,google,2026-03-12 19:42:36.508778,abortion clinic near me now,abortion clinic near me today,san francisco,ca +abortion,"('abortion clinic near me today san francisco', 'abortion clinic near me today san francisco bay area')",abortion clinic near me today san francisco,abortion clinic near me today san francisco bay area,2,4,google,2026-03-12 19:42:36.508778,abortion clinic near me now,abortion clinic near me today,san francisco,bay area +abortion,"('abortion clinic near me today san francisco', 'abortion clinic near me today san francisco california')",abortion clinic near me today san francisco,abortion clinic near me today san francisco california,3,4,google,2026-03-12 19:42:36.508778,abortion clinic near me now,abortion clinic near me today,san francisco,california +abortion,"('abortion clinic near me today san francisco', 'abortion clinic near me today san francisco reddit')",abortion clinic near me today san francisco,abortion clinic near me today san francisco reddit,4,4,google,2026-03-12 19:42:36.508778,abortion clinic near me now,abortion clinic near me today,san francisco,reddit +abortion,"('abortion clinic near me today san francisco', 'abortion clinic near me today san francisco bay area ca')",abortion clinic near me today san francisco,abortion clinic near me today san francisco bay area ca,5,4,google,2026-03-12 19:42:36.508778,abortion clinic near me now,abortion clinic near me today,san francisco,bay area ca +abortion,"('abortion clinic near me today san francisco', 'abortion clinic near me today san francisco protest')",abortion clinic near me today san francisco,abortion clinic near me today san francisco protest,6,4,google,2026-03-12 19:42:36.508778,abortion clinic near me now,abortion clinic near me today,san francisco,protest +abortion,"('abortion clinic near me today menlo park', 'abortion clinic near me today menlo park ca')",abortion clinic near me today menlo park,abortion clinic near me today menlo park ca,1,4,google,2026-03-12 19:42:37.843567,abortion clinic near me now,abortion clinic near me today,menlo park,ca +abortion,"('abortion clinic near me today menlo park', 'abortion clinic near me today menlo park california')",abortion clinic near me today menlo park,abortion clinic near me today menlo park california,2,4,google,2026-03-12 19:42:37.843567,abortion clinic near me now,abortion clinic near me today,menlo park,california +abortion,"('abortion clinic near me today menlo park', 'abortion clinic near me today menlo park ca 94025')",abortion clinic near me today menlo park,abortion clinic near me today menlo park ca 94025,3,4,google,2026-03-12 19:42:37.843567,abortion clinic near me now,abortion clinic near me today,menlo park,ca 94025 +abortion,"('abortion clinic near me today redwood city', 'abortion clinic near me today redwood city ca')",abortion clinic near me today redwood city,abortion clinic near me today redwood city ca,1,4,google,2026-03-12 19:42:38.987605,abortion clinic near me now,abortion clinic near me today,redwood city,ca +abortion,"('abortion clinic near me today redwood city', 'abortion clinic near me today redwood city california')",abortion clinic near me today redwood city,abortion clinic near me today redwood city california,2,4,google,2026-03-12 19:42:38.987605,abortion clinic near me now,abortion clinic near me today,redwood city,california +abortion,"('abortion clinic near me today redwood city', 'abortion clinic near me today redwood city ca 94063')",abortion clinic near me today redwood city,abortion clinic near me today redwood city ca 94063,3,4,google,2026-03-12 19:42:38.987605,abortion clinic near me now,abortion clinic near me today,redwood city,ca 94063 +abortion,"('abortion clinic near me today redwood city', 'abortion clinic near me today redwood city health')",abortion clinic near me today redwood city,abortion clinic near me today redwood city health,4,4,google,2026-03-12 19:42:38.987605,abortion clinic near me now,abortion clinic near me today,redwood city,health +abortion,"('abortion clinic near me today stanford', 'abortion clinic near me today stanford hospital')",abortion clinic near me today stanford,abortion clinic near me today stanford hospital,1,4,google,2026-03-12 19:42:39.921591,abortion clinic near me now,abortion clinic near me today,stanford,hospital +abortion,"('abortion clinic near me today stanford', 'abortion clinic near me today stanford ca')",abortion clinic near me today stanford,abortion clinic near me today stanford ca,2,4,google,2026-03-12 19:42:39.921591,abortion clinic near me now,abortion clinic near me today,stanford,ca +abortion,"('abortion clinic near me today stanford', 'abortion clinic near me today stanford medical center')",abortion clinic near me today stanford,abortion clinic near me today stanford medical center,3,4,google,2026-03-12 19:42:39.921591,abortion clinic near me now,abortion clinic near me today,stanford,medical center +abortion,"('abortion clinic near me today stanford', 'abortion clinic near me today stanford campus')",abortion clinic near me today stanford,abortion clinic near me today stanford campus,4,4,google,2026-03-12 19:42:39.921591,abortion clinic near me now,abortion clinic near me today,stanford,campus +abortion,"('abortion clinic near me today stanford', 'abortion clinic near me today stanford health care')",abortion clinic near me today stanford,abortion clinic near me today stanford health care,5,4,google,2026-03-12 19:42:39.921591,abortion clinic near me now,abortion clinic near me today,stanford,health care +abortion,"('abortion clinic near me accepts medicaid', 'abortion clinic near me accept medicaid')",abortion clinic near me accepts medicaid,abortion clinic near me accept medicaid,1,4,google,2026-03-12 19:42:40.945739,abortion clinic near me that takes insurance,abortion clinic near me insurance,accepts medicaid,accept +abortion,"('abortion clinic near me accepts medicaid', ""women's clinic near me that accepts medicaid"")",abortion clinic near me accepts medicaid,women's clinic near me that accepts medicaid,2,4,google,2026-03-12 19:42:40.945739,abortion clinic near me that takes insurance,abortion clinic near me insurance,accepts medicaid,women's that +abortion,"('abortion clinic near me accepts medicaid', ""women's health clinic near me that accept medicaid"")",abortion clinic near me accepts medicaid,women's health clinic near me that accept medicaid,3,4,google,2026-03-12 19:42:40.945739,abortion clinic near me that takes insurance,abortion clinic near me insurance,accepts medicaid,women's health that accept +abortion,"('abortion clinic near me accepts medicaid', 'abortion clinic near me medicaid')",abortion clinic near me accepts medicaid,abortion clinic near me medicaid,4,4,google,2026-03-12 19:42:40.945739,abortion clinic near me that takes insurance,abortion clinic near me insurance,accepts medicaid,accepts medicaid +abortion,"('abortion clinic near me accepts medicaid', 'abortion clinics near me that take medicaid')",abortion clinic near me accepts medicaid,abortion clinics near me that take medicaid,5,4,google,2026-03-12 19:42:40.945739,abortion clinic near me that takes insurance,abortion clinic near me insurance,accepts medicaid,clinics that take +abortion,"('abortion clinic near me medicaid', 'abortion clinic near me medicaid discount')",abortion clinic near me medicaid,abortion clinic near me medicaid discount,1,4,google,2026-03-12 19:42:41.842659,abortion clinic near me that takes insurance,abortion clinic near me insurance,medicaid,discount +abortion,"('abortion clinic near me medicaid', ""women's clinic near me medicaid"")",abortion clinic near me medicaid,women's clinic near me medicaid,2,4,google,2026-03-12 19:42:41.842659,abortion clinic near me that takes insurance,abortion clinic near me insurance,medicaid,women's +abortion,"('abortion clinic near me medicaid', 'abortion clinic near me accept medicaid')",abortion clinic near me medicaid,abortion clinic near me accept medicaid,3,4,google,2026-03-12 19:42:41.842659,abortion clinic near me that takes insurance,abortion clinic near me insurance,medicaid,accept +abortion,"('abortion clinic near me medicaid', ""women's clinic near me that accept medicaid"")",abortion clinic near me medicaid,women's clinic near me that accept medicaid,4,4,google,2026-03-12 19:42:41.842659,abortion clinic near me that takes insurance,abortion clinic near me insurance,medicaid,women's that accept +abortion,"('abortion clinic near me medicaid', 'are abortions covered by medicaid')",abortion clinic near me medicaid,are abortions covered by medicaid,5,4,google,2026-03-12 19:42:41.842659,abortion clinic near me that takes insurance,abortion clinic near me insurance,medicaid,are abortions covered by +abortion,"('abortion clinic near me medicaid', 'abortion clinics near me that take medicaid')",abortion clinic near me medicaid,abortion clinics near me that take medicaid,6,4,google,2026-03-12 19:42:41.842659,abortion clinic near me that takes insurance,abortion clinic near me insurance,medicaid,clinics that take +abortion,"('do abortion clinics accept insurance', 'do abortion clinics take insurance')",do abortion clinics accept insurance,do abortion clinics take insurance,1,4,google,2026-03-12 19:42:42.893262,abortion clinic near me that takes insurance,do abortion clinics take insurance,accept,take +abortion,"('do abortion clinics accept insurance', 'abortion clinic accept insurance')",do abortion clinics accept insurance,abortion clinic accept insurance,2,4,google,2026-03-12 19:42:42.893262,abortion clinic near me that takes insurance,do abortion clinics take insurance,accept,clinic +abortion,"('do abortion clinics accept insurance', 'what insurance cover abortion')",do abortion clinics accept insurance,what insurance cover abortion,3,4,google,2026-03-12 19:42:42.893262,abortion clinic near me that takes insurance,do abortion clinics take insurance,accept,what cover +abortion,"('do abortion clinics accept insurance', 'do abortion clinics accept medicaid')",do abortion clinics accept insurance,do abortion clinics accept medicaid,4,4,google,2026-03-12 19:42:42.893262,abortion clinic near me that takes insurance,do abortion clinics take insurance,accept,medicaid +abortion,"('do abortion clinics accept insurance', 'do abortion clinics take credit cards')",do abortion clinics accept insurance,do abortion clinics take credit cards,5,4,google,2026-03-12 19:42:42.893262,abortion clinic near me that takes insurance,do abortion clinics take insurance,accept,take credit cards +abortion,"('do abortion clinics accept insurance', 'do insurance cover abortions')",do abortion clinics accept insurance,do insurance cover abortions,6,4,google,2026-03-12 19:42:42.893262,abortion clinic near me that takes insurance,do abortion clinics take insurance,accept,cover abortions +abortion,"('abortion clinics take insurance', 'do abortion clinics take insurance')",abortion clinics take insurance,do abortion clinics take insurance,1,4,google,2026-03-12 19:42:43.721454,abortion clinic near me that takes insurance,do abortion clinics take insurance,do clinics take,do +abortion,"('abortion clinics take insurance', 'abortion clinics that take insurance near me')",abortion clinics take insurance,abortion clinics that take insurance near me,2,4,google,2026-03-12 19:42:43.721454,abortion clinic near me that takes insurance,do abortion clinics take insurance,do clinics take,that near me +abortion,"('abortion clinics take insurance', 'do abortion clinics accept insurance')",abortion clinics take insurance,do abortion clinics accept insurance,3,4,google,2026-03-12 19:42:43.721454,abortion clinic near me that takes insurance,do abortion clinics take insurance,do clinics take,do accept +abortion,"('abortion clinics take insurance', 'abortion clinics that take cigna insurance')",abortion clinics take insurance,abortion clinics that take cigna insurance,4,4,google,2026-03-12 19:42:43.721454,abortion clinic near me that takes insurance,do abortion clinics take insurance,do clinics take,that cigna +abortion,"('abortion clinics take insurance', 'abortion clinics that take private insurance')",abortion clinics take insurance,abortion clinics that take private insurance,5,4,google,2026-03-12 19:42:43.721454,abortion clinic near me that takes insurance,do abortion clinics take insurance,do clinics take,that private +abortion,"('abortion clinics take insurance', 'abortion clinics that take aetna insurance')",abortion clinics take insurance,abortion clinics that take aetna insurance,6,4,google,2026-03-12 19:42:43.721454,abortion clinic near me that takes insurance,do abortion clinics take insurance,do clinics take,that aetna +abortion,"('abortion clinics take insurance', 'what insurance cover abortion')",abortion clinics take insurance,what insurance cover abortion,7,4,google,2026-03-12 19:42:43.721454,abortion clinic near me that takes insurance,do abortion clinics take insurance,do clinics take,what cover +abortion,"('abortion clinics take insurance', 'abortion clinics that accept insurance')",abortion clinics take insurance,abortion clinics that accept insurance,8,4,google,2026-03-12 19:42:43.721454,abortion clinic near me that takes insurance,do abortion clinics take insurance,do clinics take,that accept +abortion,"('abortion clinics take insurance', 'abortion clinic take medicaid')",abortion clinics take insurance,abortion clinic take medicaid,9,4,google,2026-03-12 19:42:43.721454,abortion clinic near me that takes insurance,do abortion clinics take insurance,do clinics take,clinic medicaid +abortion,"('do abortion clinics take cash', 'do abortion clinics take credit cards')",do abortion clinics take cash,do abortion clinics take credit cards,1,4,google,2026-03-12 19:42:44.985880,abortion clinic near me that takes insurance,do abortion clinics take insurance,cash,credit cards +abortion,"('do abortion clinics take cash', 'do abortion clinics take insurance')",do abortion clinics take cash,do abortion clinics take insurance,2,4,google,2026-03-12 19:42:44.985880,abortion clinic near me that takes insurance,do abortion clinics take insurance,cash,insurance +abortion,"('do abortion clinics take credit cards', 'does planned parenthood take credit cards')",do abortion clinics take credit cards,does planned parenthood take credit cards,1,4,google,2026-03-12 19:42:46.159448,abortion clinic near me that takes insurance,do abortion clinics take insurance,credit cards,does planned parenthood +abortion,"('do abortion clinics take credit cards', 'do abortion clinics take cash')",do abortion clinics take credit cards,do abortion clinics take cash,2,4,google,2026-03-12 19:42:46.159448,abortion clinic near me that takes insurance,do abortion clinics take insurance,credit cards,cash +abortion,"('do abortion clinics take credit cards', 'do abortion clinics take insurance')",do abortion clinics take credit cards,do abortion clinics take insurance,3,4,google,2026-03-12 19:42:46.159448,abortion clinic near me that takes insurance,do abortion clinics take insurance,credit cards,insurance +abortion,"('do abortion clinics take credit cards', 'do abortion clinics accept medicaid')",do abortion clinics take credit cards,do abortion clinics accept medicaid,4,4,google,2026-03-12 19:42:46.159448,abortion clinic near me that takes insurance,do abortion clinics take insurance,credit cards,accept medicaid +abortion,"('do abortion clinics accept medicaid', 'abortion clinics accept medicaid')",do abortion clinics accept medicaid,abortion clinics accept medicaid,1,4,google,2026-03-12 19:42:47.145045,abortion clinic near me that takes insurance,do abortion clinics take insurance,accept medicaid,accept medicaid +abortion,"('do abortion clinics accept medicaid', 'are abortions covered by medicaid')",do abortion clinics accept medicaid,are abortions covered by medicaid,2,4,google,2026-03-12 19:42:47.145045,abortion clinic near me that takes insurance,do abortion clinics take insurance,accept medicaid,are abortions covered by +abortion,"('do abortion clinics accept medicaid', 'does medicaid cover abortions')",do abortion clinics accept medicaid,does medicaid cover abortions,3,4,google,2026-03-12 19:42:47.145045,abortion clinic near me that takes insurance,do abortion clinics take insurance,accept medicaid,does cover abortions +abortion,"('do abortion clinics accept medicaid', 'what abortion clinics take medicaid')",do abortion clinics accept medicaid,what abortion clinics take medicaid,4,4,google,2026-03-12 19:42:47.145045,abortion clinic near me that takes insurance,do abortion clinics take insurance,accept medicaid,what take +abortion,"('do abortion clinics accept medicaid', 'do abortion clinics take insurance')",do abortion clinics accept medicaid,do abortion clinics take insurance,5,4,google,2026-03-12 19:42:47.145045,abortion clinic near me that takes insurance,do abortion clinics take insurance,accept medicaid,take insurance +abortion,"('do abortion clinics accept medicaid', 'do abortion clinics take credit cards')",do abortion clinics accept medicaid,do abortion clinics take credit cards,6,4,google,2026-03-12 19:42:47.145045,abortion clinic near me that takes insurance,do abortion clinics take insurance,accept medicaid,take credit cards +abortion,"('do abortion clinics accept medicaid', 'do abortion clinics take cash')",do abortion clinics accept medicaid,do abortion clinics take cash,7,4,google,2026-03-12 19:42:47.145045,abortion clinic near me that takes insurance,do abortion clinics take insurance,accept medicaid,take cash +abortion,"('what insurance covers abortion pill', 'does health insurance cover morning after pill')",what insurance covers abortion pill,does health insurance cover morning after pill,1,4,google,2026-03-12 19:42:48.199155,abortion clinic near me that takes insurance,what insurance cover abortion,covers pill,does health cover morning after +abortion,"('what insurance covers abortion pill', 'does aetna health insurance cover abortion pill')",what insurance covers abortion pill,does aetna health insurance cover abortion pill,2,4,google,2026-03-12 19:42:48.199155,abortion clinic near me that takes insurance,what insurance cover abortion,covers pill,does aetna health cover +abortion,"('what insurance covers abortion pill', 'what insurance cover abortion')",what insurance covers abortion pill,what insurance cover abortion,3,4,google,2026-03-12 19:42:48.199155,abortion clinic near me that takes insurance,what insurance cover abortion,covers pill,cover +abortion,"('does insurance cover abortion', 'does insurance cover abortion pill')",does insurance cover abortion,does insurance cover abortion pill,1,4,google,2026-03-12 19:42:49.648337,abortion clinic near me that takes insurance,what insurance cover abortion,does,pill +abortion,"('does insurance cover abortion', 'does insurance cover abortion in california')",does insurance cover abortion,does insurance cover abortion in california,2,4,google,2026-03-12 19:42:49.648337,abortion clinic near me that takes insurance,what insurance cover abortion,does,in california +abortion,"('does insurance cover abortion', 'does insurance cover abortions in ny')",does insurance cover abortion,does insurance cover abortions in ny,3,4,google,2026-03-12 19:42:49.648337,abortion clinic near me that takes insurance,what insurance cover abortion,does,abortions in ny +abortion,"('does insurance cover abortion', 'does insurance cover abortion in illinois')",does insurance cover abortion,does insurance cover abortion in illinois,4,4,google,2026-03-12 19:42:49.648337,abortion clinic near me that takes insurance,what insurance cover abortion,does,in illinois +abortion,"('does insurance cover abortion', 'does insurance cover abortion in michigan')",does insurance cover abortion,does insurance cover abortion in michigan,5,4,google,2026-03-12 19:42:49.648337,abortion clinic near me that takes insurance,what insurance cover abortion,does,in michigan +abortion,"('does insurance cover abortion', 'does insurance cover abortion in ohio')",does insurance cover abortion,does insurance cover abortion in ohio,6,4,google,2026-03-12 19:42:49.648337,abortion clinic near me that takes insurance,what insurance cover abortion,does,in ohio +abortion,"('does insurance cover abortion', 'does insurance cover abortion in nc')",does insurance cover abortion,does insurance cover abortion in nc,7,4,google,2026-03-12 19:42:49.648337,abortion clinic near me that takes insurance,what insurance cover abortion,does,in nc +abortion,"('does insurance cover abortion', 'does insurance cover abortion pill in pa')",does insurance cover abortion,does insurance cover abortion pill in pa,8,4,google,2026-03-12 19:42:49.648337,abortion clinic near me that takes insurance,what insurance cover abortion,does,pill in pa +abortion,"('does insurance cover abortion', 'does insurance cover abortion in nj')",does insurance cover abortion,does insurance cover abortion in nj,9,4,google,2026-03-12 19:42:49.648337,abortion clinic near me that takes insurance,what insurance cover abortion,does,in nj +abortion,"('does insurance cover abortion pill', 'does insurance cover abortion pill in pa')",does insurance cover abortion pill,does insurance cover abortion pill in pa,1,4,google,2026-03-12 19:42:50.674933,abortion clinic near me that takes insurance,what insurance cover abortion,does pill,in pa +abortion,"('does insurance cover abortion pill', 'does insurance cover abortion pill at planned parenthood')",does insurance cover abortion pill,does insurance cover abortion pill at planned parenthood,2,4,google,2026-03-12 19:42:50.674933,abortion clinic near me that takes insurance,what insurance cover abortion,does pill,at planned parenthood +abortion,"('does insurance cover abortion pill', 'does insurance cover abortion pill illinois')",does insurance cover abortion pill,does insurance cover abortion pill illinois,3,4,google,2026-03-12 19:42:50.674933,abortion clinic near me that takes insurance,what insurance cover abortion,does pill,illinois +abortion,"('does insurance cover abortion pill', 'does insurance cover abortion pill nj')",does insurance cover abortion pill,does insurance cover abortion pill nj,4,4,google,2026-03-12 19:42:50.674933,abortion clinic near me that takes insurance,what insurance cover abortion,does pill,nj +abortion,"('does insurance cover abortion pill', 'does insurance cover abortion pill florida')",does insurance cover abortion pill,does insurance cover abortion pill florida,5,4,google,2026-03-12 19:42:50.674933,abortion clinic near me that takes insurance,what insurance cover abortion,does pill,florida +abortion,"('does insurance cover abortion pill', 'does insurance cover abortion pill ny')",does insurance cover abortion pill,does insurance cover abortion pill ny,6,4,google,2026-03-12 19:42:50.674933,abortion clinic near me that takes insurance,what insurance cover abortion,does pill,ny +abortion,"('does insurance cover abortion pill', 'does insurance cover abortion pill nyc')",does insurance cover abortion pill,does insurance cover abortion pill nyc,7,4,google,2026-03-12 19:42:50.674933,abortion clinic near me that takes insurance,what insurance cover abortion,does pill,nyc +abortion,"('does insurance cover abortion pill', 'does insurance cover abortion pill california')",does insurance cover abortion pill,does insurance cover abortion pill california,8,4,google,2026-03-12 19:42:50.674933,abortion clinic near me that takes insurance,what insurance cover abortion,does pill,california +abortion,"('does insurance cover abortion pill', 'does insurance cover abortion pill washington')",does insurance cover abortion pill,does insurance cover abortion pill washington,9,4,google,2026-03-12 19:42:50.674933,abortion clinic near me that takes insurance,what insurance cover abortion,does pill,washington +abortion,"('does insurance cover abortion at planned parenthood', 'does insurance cover abortion pill at planned parenthood')",does insurance cover abortion at planned parenthood,does insurance cover abortion pill at planned parenthood,1,4,google,2026-03-12 19:42:51.876654,abortion clinic near me that takes insurance,what insurance cover abortion,does at planned parenthood,pill +abortion,"('does insurance cover abortion at planned parenthood', 'does kaiser insurance cover abortions at planned parenthood')",does insurance cover abortion at planned parenthood,does kaiser insurance cover abortions at planned parenthood,2,4,google,2026-03-12 19:42:51.876654,abortion clinic near me that takes insurance,what insurance cover abortion,does at planned parenthood,kaiser abortions +abortion,"('does insurance cover abortion at planned parenthood', 'does anthem blue cross cover abortions at planned parenthood')",does insurance cover abortion at planned parenthood,does anthem blue cross cover abortions at planned parenthood,3,4,google,2026-03-12 19:42:51.876654,abortion clinic near me that takes insurance,what insurance cover abortion,does at planned parenthood,anthem blue cross abortions +abortion,"('does insurance cover abortion at planned parenthood', 'do you need insurance for an abortion at planned parenthood')",does insurance cover abortion at planned parenthood,do you need insurance for an abortion at planned parenthood,4,4,google,2026-03-12 19:42:51.876654,abortion clinic near me that takes insurance,what insurance cover abortion,does at planned parenthood,do you need for an +abortion,"('does insurance cover abortion at planned parenthood', 'how much is an abortion at planned parenthood with insurance')",does insurance cover abortion at planned parenthood,how much is an abortion at planned parenthood with insurance,5,4,google,2026-03-12 19:42:51.876654,abortion clinic near me that takes insurance,what insurance cover abortion,does at planned parenthood,how much is an with +abortion,"('does insurance cover abortion at planned parenthood', 'do you need insurance to get an abortion at planned parenthood')",does insurance cover abortion at planned parenthood,do you need insurance to get an abortion at planned parenthood,6,4,google,2026-03-12 19:42:51.876654,abortion clinic near me that takes insurance,what insurance cover abortion,does at planned parenthood,do you need to get an +abortion,"('does insurance cover abortion at planned parenthood', 'does planned parenthood take insurance for abortions')",does insurance cover abortion at planned parenthood,does planned parenthood take insurance for abortions,7,4,google,2026-03-12 19:42:51.876654,abortion clinic near me that takes insurance,what insurance cover abortion,does at planned parenthood,take for abortions +abortion,"('does insurance cover abortion at planned parenthood', 'does insurance cover planned parenthood')",does insurance cover abortion at planned parenthood,does insurance cover planned parenthood,8,4,google,2026-03-12 19:42:51.876654,abortion clinic near me that takes insurance,what insurance cover abortion,does at planned parenthood,does at planned parenthood +abortion,"('does insurance cover abortion at planned parenthood', 'does insurance cover an abortion')",does insurance cover abortion at planned parenthood,does insurance cover an abortion,9,4,google,2026-03-12 19:42:51.876654,abortion clinic near me that takes insurance,what insurance cover abortion,does at planned parenthood,an +abortion,"('does insurance cover abortion costs', 'how much does insurance cover for abortions')",does insurance cover abortion costs,how much does insurance cover for abortions,1,4,google,2026-03-12 19:42:53.168979,abortion clinic near me that takes insurance,what insurance cover abortion,does costs,how much for abortions +abortion,"('does insurance cover abortion costs', 'what insurance cover abortion')",does insurance cover abortion costs,what insurance cover abortion,2,4,google,2026-03-12 19:42:53.168979,abortion clinic near me that takes insurance,what insurance cover abortion,does costs,what +abortion,"('does insurance cover abortion costs', 'does insurance cover abortion pill')",does insurance cover abortion costs,does insurance cover abortion pill,3,4,google,2026-03-12 19:42:53.168979,abortion clinic near me that takes insurance,what insurance cover abortion,does costs,pill +abortion,"('does insurance cover abortion california', 'does insurance cover abortion pill california')",does insurance cover abortion california,does insurance cover abortion pill california,1,4,google,2026-03-12 19:42:54.388178,abortion clinic near me that takes insurance,what insurance cover abortion,does california,pill +abortion,"('does insurance cover abortion california', 'does insurance cover abortion in ca')",does insurance cover abortion california,does insurance cover abortion in ca,2,4,google,2026-03-12 19:42:54.388178,abortion clinic near me that takes insurance,what insurance cover abortion,does california,in ca +abortion,"('does insurance cover abortion california', 'does blue cross cover abortion pill in california')",does insurance cover abortion california,does blue cross cover abortion pill in california,3,4,google,2026-03-12 19:42:54.388178,abortion clinic near me that takes insurance,what insurance cover abortion,does california,blue cross pill in +abortion,"('does insurance cover abortion california', 'does health insurance cover abortion in california')",does insurance cover abortion california,does health insurance cover abortion in california,4,4,google,2026-03-12 19:42:54.388178,abortion clinic near me that takes insurance,what insurance cover abortion,does california,health in +abortion,"('does insurance cover abortion california', 'does kaiser insurance cover abortion in california')",does insurance cover abortion california,does kaiser insurance cover abortion in california,5,4,google,2026-03-12 19:42:54.388178,abortion clinic near me that takes insurance,what insurance cover abortion,does california,kaiser in +abortion,"('does insurance cover abortion california', 'does blue cross insurance cover abortions in california')",does insurance cover abortion california,does blue cross insurance cover abortions in california,6,4,google,2026-03-12 19:42:54.388178,abortion clinic near me that takes insurance,what insurance cover abortion,does california,blue cross abortions in +abortion,"('does insurance cover abortion california', 'what insurance cover abortion')",does insurance cover abortion california,what insurance cover abortion,7,4,google,2026-03-12 19:42:54.388178,abortion clinic near me that takes insurance,what insurance cover abortion,does california,what +abortion,"('does insurance cover abortion california', 'california insurance abortion')",does insurance cover abortion california,california insurance abortion,8,4,google,2026-03-12 19:42:54.388178,abortion clinic near me that takes insurance,what insurance cover abortion,does california,does california +abortion,"('does insurance cover abortion california', 'are abortions covered by insurance in california')",does insurance cover abortion california,are abortions covered by insurance in california,9,4,google,2026-03-12 19:42:54.388178,abortion clinic near me that takes insurance,what insurance cover abortion,does california,are abortions covered by in +abortion,"('does insurance cover abortion florida', 'does insurance cover abortion pill florida')",does insurance cover abortion florida,does insurance cover abortion pill florida,1,4,google,2026-03-12 19:42:55.429823,abortion clinic near me that takes insurance,what insurance cover abortion,does florida,pill +abortion,"('does insurance cover abortion florida', 'do insurance cover abortions in florida')",does insurance cover abortion florida,do insurance cover abortions in florida,2,4,google,2026-03-12 19:42:55.429823,abortion clinic near me that takes insurance,what insurance cover abortion,does florida,do abortions in +abortion,"('does insurance cover abortion florida', 'does health insurance cover abortion in florida')",does insurance cover abortion florida,does health insurance cover abortion in florida,3,4,google,2026-03-12 19:42:55.429823,abortion clinic near me that takes insurance,what insurance cover abortion,does florida,health in +abortion,"('does insurance cover abortion florida', 'does blue cross insurance cover abortions in florida')",does insurance cover abortion florida,does blue cross insurance cover abortions in florida,4,4,google,2026-03-12 19:42:55.429823,abortion clinic near me that takes insurance,what insurance cover abortion,does florida,blue cross abortions in +abortion,"('does insurance cover abortion florida', 'what insurance cover abortion')",does insurance cover abortion florida,what insurance cover abortion,5,4,google,2026-03-12 19:42:55.429823,abortion clinic near me that takes insurance,what insurance cover abortion,does florida,what +abortion,"('does insurance cover abortion florida', 'does florida blue insurance cover abortion')",does insurance cover abortion florida,does florida blue insurance cover abortion,6,4,google,2026-03-12 19:42:55.429823,abortion clinic near me that takes insurance,what insurance cover abortion,does florida,blue +abortion,"('does insurance cover abortion florida', 'does insurance cover abortion pill')",does insurance cover abortion florida,does insurance cover abortion pill,7,4,google,2026-03-12 19:42:55.429823,abortion clinic near me that takes insurance,what insurance cover abortion,does florida,pill +abortion,"('does insurance cover abortion nj', 'does insurance cover abortion pill nj')",does insurance cover abortion nj,does insurance cover abortion pill nj,1,4,google,2026-03-12 19:42:56.559810,abortion clinic near me that takes insurance,what insurance cover abortion,does nj,pill +abortion,"('does insurance cover abortion nj', 'does health insurance cover abortion nj')",does insurance cover abortion nj,does health insurance cover abortion nj,2,4,google,2026-03-12 19:42:56.559810,abortion clinic near me that takes insurance,what insurance cover abortion,does nj,health +abortion,"('does insurance cover abortion nj', 'what insurance cover abortion')",does insurance cover abortion nj,what insurance cover abortion,3,4,google,2026-03-12 19:42:56.559810,abortion clinic near me that takes insurance,what insurance cover abortion,does nj,what +abortion,"('does insurance cover abortion nj', 'does insurance cover abortion in new jersey')",does insurance cover abortion nj,does insurance cover abortion in new jersey,4,4,google,2026-03-12 19:42:56.559810,abortion clinic near me that takes insurance,what insurance cover abortion,does nj,in new jersey +abortion,"('does insurance cover abortion pill at planned parenthood', 'how much is an abortion at planned parenthood with insurance')",does insurance cover abortion pill at planned parenthood,how much is an abortion at planned parenthood with insurance,1,4,google,2026-03-12 19:42:57.952646,abortion clinic near me that takes insurance,what insurance cover abortion,does pill at planned parenthood,how much is an with +abortion,"('does insurance cover abortion pill at planned parenthood', 'does planned parenthood insurance cover abortions')",does insurance cover abortion pill at planned parenthood,does planned parenthood insurance cover abortions,2,4,google,2026-03-12 19:42:57.952646,abortion clinic near me that takes insurance,what insurance cover abortion,does pill at planned parenthood,abortions +abortion,"('does insurance cover abortion pill at planned parenthood', 'does planned parenthood take insurance for abortions')",does insurance cover abortion pill at planned parenthood,does planned parenthood take insurance for abortions,3,4,google,2026-03-12 19:42:57.952646,abortion clinic near me that takes insurance,what insurance cover abortion,does pill at planned parenthood,take for abortions +abortion,"('does insurance cover abortion pill at planned parenthood', 'do you need insurance to get an abortion at planned parenthood')",does insurance cover abortion pill at planned parenthood,do you need insurance to get an abortion at planned parenthood,4,4,google,2026-03-12 19:42:57.952646,abortion clinic near me that takes insurance,what insurance cover abortion,does pill at planned parenthood,do you need to get an +abortion,"(""women's clinic near me that accepts medicaid"", ""women's health clinic near me that accept medicaid"")",women's clinic near me that accepts medicaid,women's health clinic near me that accept medicaid,1,4,google,2026-03-12 19:42:59.421304,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,women's,health accept +abortion,"(""women's clinic near me that accepts medicaid"", ""women's clinic near me medicaid"")",women's clinic near me that accepts medicaid,women's clinic near me medicaid,2,4,google,2026-03-12 19:42:59.421304,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,women's,women's +abortion,"(""women's clinic near me that accepts medicaid"", 'female doctors near me that accept medicaid')",women's clinic near me that accepts medicaid,female doctors near me that accept medicaid,3,4,google,2026-03-12 19:42:59.421304,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,women's,female doctors accept +abortion,"(""women's clinic near me that accepts medicaid"", ""does the women's clinic take medicaid"")",women's clinic near me that accepts medicaid,does the women's clinic take medicaid,4,4,google,2026-03-12 19:42:59.421304,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,women's,does the take +abortion,"(""women's clinic near me that accepts medicaid"", 'clinic near me that accepts medicaid')",women's clinic near me that accepts medicaid,clinic near me that accepts medicaid,5,4,google,2026-03-12 19:42:59.421304,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,women's,women's +abortion,"(""women's health clinic near me that accept medicaid"", 'female doctors near me that accept medicaid')",women's health clinic near me that accept medicaid,female doctors near me that accept medicaid,1,4,google,2026-03-12 19:43:00.669678,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,women's health accept,female doctors +abortion,"(""women's health clinic near me that accept medicaid"", 'how do i find a doctor who accepts medicaid')",women's health clinic near me that accept medicaid,how do i find a doctor who accepts medicaid,2,4,google,2026-03-12 19:43:00.669678,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,women's health accept,how do i find a doctor who accepts +abortion,"(""women's health clinic near me that accept medicaid"", ""women's clinics that accept medicaid near me"")",women's health clinic near me that accept medicaid,women's clinics that accept medicaid near me,3,4,google,2026-03-12 19:43:00.669678,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,women's health accept,clinics +abortion,"(""women's health clinic near me that accept medicaid"", ""what does women's health medicaid cover"")",women's health clinic near me that accept medicaid,what does women's health medicaid cover,4,4,google,2026-03-12 19:43:00.669678,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,women's health accept,what does cover +abortion,"('abortion clinic near me medicaid discount', 'abortion clinic near me medicaid')",abortion clinic near me medicaid discount,abortion clinic near me medicaid,1,4,google,2026-03-12 19:43:01.900842,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,discount,discount +abortion,"('abortion clinic near me medicaid discount', 'are abortions covered by medicaid')",abortion clinic near me medicaid discount,are abortions covered by medicaid,2,4,google,2026-03-12 19:43:01.900842,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,discount,are abortions covered by +abortion,"('abortion clinic near me medicaid discount', 'abortion clinic near me accepts medicaid')",abortion clinic near me medicaid discount,abortion clinic near me accepts medicaid,3,4,google,2026-03-12 19:43:01.900842,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,discount,accepts +abortion,"('abortion clinic near me medicaid discount', 'abortion clinics near me that take medicaid')",abortion clinic near me medicaid discount,abortion clinics near me that take medicaid,4,4,google,2026-03-12 19:43:01.900842,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,discount,clinics that take +abortion,"(""women's clinic near me medicaid"", ""women's clinic near me that accept medicaid"")",women's clinic near me medicaid,women's clinic near me that accept medicaid,1,4,google,2026-03-12 19:43:02.814949,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,women's,that accept +abortion,"(""women's clinic near me medicaid"", ""women's health clinic near me that accept medicaid"")",women's clinic near me medicaid,women's health clinic near me that accept medicaid,2,4,google,2026-03-12 19:43:02.814949,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,women's,health that accept +abortion,"(""women's clinic near me medicaid"", ""women's clinic near me without insurance"")",women's clinic near me medicaid,women's clinic near me without insurance,3,4,google,2026-03-12 19:43:02.814949,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,women's,without insurance +abortion,"(""women's clinic near me medicaid"", ""does the women's clinic take medicaid"")",women's clinic near me medicaid,does the women's clinic take medicaid,4,4,google,2026-03-12 19:43:02.814949,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,women's,does the take +abortion,"(""women's clinic near me medicaid"", ""women's health clinic medicaid"")",women's clinic near me medicaid,women's health clinic medicaid,5,4,google,2026-03-12 19:43:02.814949,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,women's,health +abortion,"('abortion clinics near me that take medicaid', 'abortion clinic near me medicaid')",abortion clinics near me that take medicaid,abortion clinic near me medicaid,1,4,google,2026-03-12 19:43:03.651621,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,clinics take,clinic +abortion,"('abortion clinics near me that take medicaid', 'abortion clinic near me medicaid discount')",abortion clinics near me that take medicaid,abortion clinic near me medicaid discount,2,4,google,2026-03-12 19:43:03.651621,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,clinics take,clinic discount +abortion,"('abortion clinics near me that take medicaid', 'abortion clinic near me that accepts medicaid')",abortion clinics near me that take medicaid,abortion clinic near me that accepts medicaid,3,4,google,2026-03-12 19:43:03.651621,abortion clinic near me that takes insurance,abortion clinic near me that accepts medicaid,clinics take,clinic accepts +abortion,"('abortion clinic near me open on sunday', 'abortion clinic near me open saturday')",abortion clinic near me open on sunday,abortion clinic near me open saturday,1,4,google,2026-03-12 19:43:04.989057,abortion clinic near me open,abortion clinic near me open on weekends,sunday,saturday +abortion,"('abortion clinic near me open on sunday', ""women's clinic near me open saturday"")",abortion clinic near me open on sunday,women's clinic near me open saturday,2,4,google,2026-03-12 19:43:04.989057,abortion clinic near me open,abortion clinic near me open on weekends,sunday,women's saturday +abortion,"('abortion clinic near me open on sunday', 'abortion clinic open near me')",abortion clinic near me open on sunday,abortion clinic open near me,3,4,google,2026-03-12 19:43:04.989057,abortion clinic near me open,abortion clinic near me open on weekends,sunday,sunday +abortion,"(""women's clinic near me open saturday"", ""women's clinics open on weekends near me"")",women's clinic near me open saturday,women's clinics open on weekends near me,1,4,google,2026-03-12 19:43:06.153782,abortion clinic near me open,abortion clinic near me open on weekends,women's saturday,clinics on weekends +abortion,"(""women's clinic near me open saturday"", 'what clinic is open on saturday')",women's clinic near me open saturday,what clinic is open on saturday,2,4,google,2026-03-12 19:43:06.153782,abortion clinic near me open,abortion clinic near me open on weekends,women's saturday,what is on +abortion,"(""women's clinic near me open saturday"", 'is the health clinic open on saturday')",women's clinic near me open saturday,is the health clinic open on saturday,3,4,google,2026-03-12 19:43:06.153782,abortion clinic near me open,abortion clinic near me open on weekends,women's saturday,is the health on +abortion,"('abortion clinic open sunday near me', 'abortion clinic open today near me')",abortion clinic open sunday near me,abortion clinic open today near me,1,4,google,2026-03-12 19:43:07.444553,abortion clinic near me open,abortion clinic near me open saturday,sunday,today +abortion,"('abortion clinic open sunday near me', ""women's clinic open on sunday near me"")",abortion clinic open sunday near me,women's clinic open on sunday near me,2,4,google,2026-03-12 19:43:07.444553,abortion clinic near me open,abortion clinic near me open saturday,sunday,women's on +abortion,"('abortion clinic open sunday near me', 'abortion clinic open near me')",abortion clinic open sunday near me,abortion clinic open near me,3,4,google,2026-03-12 19:43:07.444553,abortion clinic near me open,abortion clinic near me open saturday,sunday,sunday +abortion,"('abortion clinic open sunday near me', ""women's clinic open near me"")",abortion clinic open sunday near me,women's clinic open near me,4,4,google,2026-03-12 19:43:07.444553,abortion clinic near me open,abortion clinic near me open saturday,sunday,women's +abortion,"('abortion clinic open sunday near me', 'abortion clinic open now near me')",abortion clinic open sunday near me,abortion clinic open now near me,5,4,google,2026-03-12 19:43:07.444553,abortion clinic near me open,abortion clinic near me open saturday,sunday,now +abortion,"('abortion clinic open sunday near me', 'abortion clinic open saturday near me')",abortion clinic open sunday near me,abortion clinic open saturday near me,6,4,google,2026-03-12 19:43:07.444553,abortion clinic near me open,abortion clinic near me open saturday,sunday,saturday +abortion,"('abortion clinic open sunday near me', 'abortion clinic hours near me')",abortion clinic open sunday near me,abortion clinic hours near me,7,4,google,2026-03-12 19:43:07.444553,abortion clinic near me open,abortion clinic near me open saturday,sunday,hours +abortion,"('abortion clinic open sunday near me', 'abortion clinic open on weekends near me')",abortion clinic open sunday near me,abortion clinic open on weekends near me,8,4,google,2026-03-12 19:43:07.444553,abortion clinic near me open,abortion clinic near me open saturday,sunday,on weekends +abortion,"('abortion clinic near me online appointment', 'appointment for abortion near me')",abortion clinic near me online appointment,appointment for abortion near me,1,4,google,2026-03-12 19:43:08.389677,abortion clinic near me open,abortion clinic near me open today,online appointment,for +abortion,"('abortion clinic near me online appointment', 'abortion clinic open on saturday near me')",abortion clinic near me online appointment,abortion clinic open on saturday near me,2,4,google,2026-03-12 19:43:08.389677,abortion clinic near me open,abortion clinic near me open today,online appointment,open on saturday +abortion,"('abortion clinic near me online appointment', 'abortion clinic near me for free')",abortion clinic near me online appointment,abortion clinic near me for free,3,4,google,2026-03-12 19:43:08.389677,abortion clinic near me open,abortion clinic near me open today,online appointment,for free +abortion,"('abortion clinic near me online appointment', 'abortion clinic near me open sunday')",abortion clinic near me online appointment,abortion clinic near me open sunday,4,4,google,2026-03-12 19:43:08.389677,abortion clinic near me open,abortion clinic near me open today,online appointment,open sunday +abortion,"('abortion clinic near me open tomorrow morning', 'abortion clinic near me open tomorrow morning palo alto')",abortion clinic near me open tomorrow morning,abortion clinic near me open tomorrow morning palo alto,1,4,google,2026-03-12 19:43:09.390576,abortion clinic near me open,abortion clinic near me open tomorrow,morning,palo alto +abortion,"('abortion clinic near me open tomorrow morning', 'abortion clinic near me open tomorrow mornings')",abortion clinic near me open tomorrow morning,abortion clinic near me open tomorrow mornings,2,4,google,2026-03-12 19:43:09.390576,abortion clinic near me open,abortion clinic near me open tomorrow,morning,mornings +abortion,"('abortion clinic near me open tomorrow morning', 'abortion clinic near me open tomorrow morning san jose')",abortion clinic near me open tomorrow morning,abortion clinic near me open tomorrow morning san jose,3,4,google,2026-03-12 19:43:09.390576,abortion clinic near me open,abortion clinic near me open tomorrow,morning,san jose +abortion,"('abortion clinic near me open tomorrow morning', 'abortion clinic near me open tomorrow morning 2024')",abortion clinic near me open tomorrow morning,abortion clinic near me open tomorrow morning 2024,4,4,google,2026-03-12 19:43:09.390576,abortion clinic near me open,abortion clinic near me open tomorrow,morning,2024 +abortion,"('abortion clinic near me open tomorrow near me', 'abortion clinic near me open tomorrow near me palo alto')",abortion clinic near me open tomorrow near me,abortion clinic near me open tomorrow near me palo alto,1,4,google,2026-03-12 19:43:10.444276,abortion clinic near me open,abortion clinic near me open tomorrow,tomorrow,palo alto +abortion,"('abortion clinic near me open tomorrow near me', 'abortion clinic near me open tomorrow near me san jose')",abortion clinic near me open tomorrow near me,abortion clinic near me open tomorrow near me san jose,2,4,google,2026-03-12 19:43:10.444276,abortion clinic near me open,abortion clinic near me open tomorrow,tomorrow,san jose +abortion,"('abortion clinic near me open tomorrow near me', 'abortion clinic near me open tomorrow near menlo park ca')",abortion clinic near me open tomorrow near me,abortion clinic near me open tomorrow near menlo park ca,3,4,google,2026-03-12 19:43:10.444276,abortion clinic near me open,abortion clinic near me open tomorrow,tomorrow,menlo park ca +abortion,"('abortion clinic near me open tomorrow near me', 'abortion clinic near me open tomorrow near menlo park')",abortion clinic near me open tomorrow near me,abortion clinic near me open tomorrow near menlo park,4,4,google,2026-03-12 19:43:10.444276,abortion clinic near me open,abortion clinic near me open tomorrow,tomorrow,menlo park +abortion,"('abortion clinic near me open tomorrow near me', 'abortion clinic near me open tomorrow near me sunnyvale')",abortion clinic near me open tomorrow near me,abortion clinic near me open tomorrow near me sunnyvale,5,4,google,2026-03-12 19:43:10.444276,abortion clinic near me open,abortion clinic near me open tomorrow,tomorrow,sunnyvale +abortion,"('abortion clinic near me open tomorrow near me', 'abortion clinic near me open tomorrow near me stanford')",abortion clinic near me open tomorrow near me,abortion clinic near me open tomorrow near me stanford,6,4,google,2026-03-12 19:43:10.444276,abortion clinic near me open,abortion clinic near me open tomorrow,tomorrow,stanford +abortion,"('abortion clinic near me open tomorrow near me', 'abortion clinic near me open tomorrow near me east palo alto')",abortion clinic near me open tomorrow near me,abortion clinic near me open tomorrow near me east palo alto,7,4,google,2026-03-12 19:43:10.444276,abortion clinic near me open,abortion clinic near me open tomorrow,tomorrow,east palo alto +abortion,"('abortion clinic near me open tomorrow near me', 'abortion clinic near me open tomorrow near me san carlos')",abortion clinic near me open tomorrow near me,abortion clinic near me open tomorrow near me san carlos,8,4,google,2026-03-12 19:43:10.444276,abortion clinic near me open,abortion clinic near me open tomorrow,tomorrow,san carlos +abortion,"('abortion clinic near me open tomorrow near me', 'abortion clinic near me open tomorrow near medicaid')",abortion clinic near me open tomorrow near me,abortion clinic near me open tomorrow near medicaid,9,4,google,2026-03-12 19:43:10.444276,abortion clinic near me open,abortion clinic near me open tomorrow,tomorrow,medicaid +abortion,"('abortion clinic near me open tomorrow san jose', 'abortion clinic near me open tomorrow san jose ca')",abortion clinic near me open tomorrow san jose,abortion clinic near me open tomorrow san jose ca,1,4,google,2026-03-12 19:43:11.455104,abortion clinic near me open,abortion clinic near me open tomorrow,san jose,ca +abortion,"('abortion clinic near me open tomorrow san jose', 'abortion clinic near me open tomorrow san jose california')",abortion clinic near me open tomorrow san jose,abortion clinic near me open tomorrow san jose california,2,4,google,2026-03-12 19:43:11.455104,abortion clinic near me open,abortion clinic near me open tomorrow,san jose,california +abortion,"('abortion clinic near me open tomorrow san jose', 'abortion clinic near me open tomorrow san jose reddit')",abortion clinic near me open tomorrow san jose,abortion clinic near me open tomorrow san jose reddit,3,4,google,2026-03-12 19:43:11.455104,abortion clinic near me open,abortion clinic near me open tomorrow,san jose,reddit +abortion,"('abortion clinic near me open tomorrow san jose', 'abortion clinic near me open tomorrow san jose area')",abortion clinic near me open tomorrow san jose,abortion clinic near me open tomorrow san jose area,4,4,google,2026-03-12 19:43:11.455104,abortion clinic near me open,abortion clinic near me open tomorrow,san jose,area +abortion,"('abortion clinic near me open tomorrow 2024', 'abortion clinic near me open tomorrow 2024 california')",abortion clinic near me open tomorrow 2024,abortion clinic near me open tomorrow 2024 california,1,4,google,2026-03-12 19:43:12.728179,abortion clinic near me open,abortion clinic near me open tomorrow,2024,california +abortion,"('abortion clinic near me open tomorrow 2024', 'abortion clinic near me open tomorrow 2024 schedule')",abortion clinic near me open tomorrow 2024,abortion clinic near me open tomorrow 2024 schedule,2,4,google,2026-03-12 19:43:12.728179,abortion clinic near me open,abortion clinic near me open tomorrow,2024,schedule +abortion,"('abortion clinic near me open tomorrow 2024', 'abortion clinic near me open tomorrow 2024 san jose')",abortion clinic near me open tomorrow 2024,abortion clinic near me open tomorrow 2024 san jose,3,4,google,2026-03-12 19:43:12.728179,abortion clinic near me open,abortion clinic near me open tomorrow,2024,san jose +abortion,"('abortion clinic near me open tomorrow 2024', 'abortion clinic near me open tomorrow 2024 palo alto')",abortion clinic near me open tomorrow 2024,abortion clinic near me open tomorrow 2024 palo alto,4,4,google,2026-03-12 19:43:12.728179,abortion clinic near me open,abortion clinic near me open tomorrow,2024,palo alto +abortion,"('abortion clinic near me open tomorrow 2024', 'abortion clinic near me open tomorrow 2024 near me')",abortion clinic near me open tomorrow 2024,abortion clinic near me open tomorrow 2024 near me,5,4,google,2026-03-12 19:43:12.728179,abortion clinic near me open,abortion clinic near me open tomorrow,2024,2024 +abortion,"('abortion clinic near me open tomorrow san jose ca', 'abortion clinic near me open tomorrow san jose california')",abortion clinic near me open tomorrow san jose ca,abortion clinic near me open tomorrow san jose california,1,4,google,2026-03-12 19:43:14.017645,abortion clinic near me open,abortion clinic near me open tomorrow,san jose ca,california +abortion,"('same day appointment clinic near me', 'same day appointment doctor near me')",same day appointment clinic near me,same day appointment doctor near me,1,4,google,2026-03-12 19:43:14.890600,abortion clinic near me same day,abortion clinic near me same day appointment,appointment,doctor +abortion,"('same day appointment clinic near me', 'same day appointment dental clinic near me')",same day appointment clinic near me,same day appointment dental clinic near me,2,4,google,2026-03-12 19:43:14.890600,abortion clinic near me same day,abortion clinic near me same day appointment,appointment,dental +abortion,"('same day appointment clinic near me', 'same day appointment eye doctor near me')",same day appointment clinic near me,same day appointment eye doctor near me,3,4,google,2026-03-12 19:43:14.890600,abortion clinic near me same day,abortion clinic near me same day appointment,appointment,eye doctor +abortion,"('same day appointment clinic near me', 'vet clinic same day appointment near me')",same day appointment clinic near me,vet clinic same day appointment near me,4,4,google,2026-03-12 19:43:14.890600,abortion clinic near me same day,abortion clinic near me same day appointment,appointment,vet +abortion,"('same day appointment clinic near me', 'abortion clinic near me same day appointment')",same day appointment clinic near me,abortion clinic near me same day appointment,5,4,google,2026-03-12 19:43:14.890600,abortion clinic near me same day,abortion clinic near me same day appointment,appointment,abortion +abortion,"('same day appointment clinic near me', ""can you get a doctor's appointment the same day"")",same day appointment clinic near me,can you get a doctor's appointment the same day,6,4,google,2026-03-12 19:43:14.890600,abortion clinic near me same day,abortion clinic near me same day appointment,appointment,can you get a doctor's the +abortion,"('same day appointment clinic near me', 'same day clinic near me')",same day appointment clinic near me,same day clinic near me,7,4,google,2026-03-12 19:43:14.890600,abortion clinic near me same day,abortion clinic near me same day appointment,appointment,appointment +abortion,"('same day appointment clinic near me', 'how to get a same day doctor appointment')",same day appointment clinic near me,how to get a same day doctor appointment,8,4,google,2026-03-12 19:43:14.890600,abortion clinic near me same day,abortion clinic near me same day appointment,appointment,how to get a doctor +abortion,"('same day appointment clinic near me', 'same-day appointment near me')",same day appointment clinic near me,same-day appointment near me,9,4,google,2026-03-12 19:43:14.890600,abortion clinic near me same day,abortion clinic near me same day appointment,appointment,same-day +abortion,"('same day abortion clinics near me', 'same day abortion clinics near me open now')",same day abortion clinics near me,same day abortion clinics near me open now,1,4,google,2026-03-12 19:43:16.221013,abortion clinic near me same day,same day private abortion clinic near me,clinics,open now +abortion,"('same day abortion clinics near me', 'same day private abortion clinic near me')",same day abortion clinics near me,same day private abortion clinic near me,2,4,google,2026-03-12 19:43:16.221013,abortion clinic near me same day,same day private abortion clinic near me,clinics,private clinic +abortion,"('same day abortion clinics near me', '24 hour abortion clinic near me')",same day abortion clinics near me,24 hour abortion clinic near me,3,4,google,2026-03-12 19:43:16.221013,abortion clinic near me same day,same day private abortion clinic near me,clinics,24 hour clinic +abortion,"('same day abortion clinics near me', 'same day abortion clinics in illinois')",same day abortion clinics near me,same day abortion clinics in illinois,4,4,google,2026-03-12 19:43:16.221013,abortion clinic near me same day,same day private abortion clinic near me,clinics,in illinois +abortion,"('abortion clinic open now near me', 'abortion clinic open today near me')",abortion clinic open now near me,abortion clinic open today near me,1,4,google,2026-03-12 19:43:17.245892,abortion clinic near me same day,abortion clinic open on saturday near me,now,today +abortion,"('abortion clinic open now near me', ""women's clinic open now near me"")",abortion clinic open now near me,women's clinic open now near me,2,4,google,2026-03-12 19:43:17.245892,abortion clinic near me same day,abortion clinic open on saturday near me,now,women's +abortion,"('abortion clinic open now near me', 'abortion clinic near me open now within 8.1 km')",abortion clinic open now near me,abortion clinic near me open now within 8.1 km,3,4,google,2026-03-12 19:43:17.245892,abortion clinic near me same day,abortion clinic open on saturday near me,now,within 8.1 km +abortion,"('abortion clinic open now near me', 'abortion clinic near me open now within 20 mi')",abortion clinic open now near me,abortion clinic near me open now within 20 mi,4,4,google,2026-03-12 19:43:17.245892,abortion clinic near me same day,abortion clinic open on saturday near me,now,within 20 mi +abortion,"('abortion clinic open now near me', 'abortion clinic near me open now within 5 mi')",abortion clinic open now near me,abortion clinic near me open now within 5 mi,5,4,google,2026-03-12 19:43:17.245892,abortion clinic near me same day,abortion clinic open on saturday near me,now,within 5 mi +abortion,"('abortion clinic open now near me', 'abortion clinic near me prices open now')",abortion clinic open now near me,abortion clinic near me prices open now,6,4,google,2026-03-12 19:43:17.245892,abortion clinic near me same day,abortion clinic open on saturday near me,now,prices +abortion,"('abortion clinic open now near me', 'free abortion clinic near me open now')",abortion clinic open now near me,free abortion clinic near me open now,7,4,google,2026-03-12 19:43:17.245892,abortion clinic near me same day,abortion clinic open on saturday near me,now,free +abortion,"('abortion clinic open now near me', 'private abortion clinic near me open now')",abortion clinic open now near me,private abortion clinic near me open now,8,4,google,2026-03-12 19:43:17.245892,abortion clinic near me same day,abortion clinic open on saturday near me,now,private +abortion,"('abortion clinic open now near me', 'safe abortion clinic near me open now')",abortion clinic open now near me,safe abortion clinic near me open now,9,4,google,2026-03-12 19:43:17.245892,abortion clinic near me same day,abortion clinic open on saturday near me,now,safe +abortion,"('pregnancy clinic open on saturday near me', 'pregnancy test open near me')",pregnancy clinic open on saturday near me,pregnancy test open near me,1,4,google,2026-03-12 19:43:18.639527,abortion clinic near me same day,abortion clinic open on saturday near me,pregnancy,test +abortion,"('pregnancy clinic open on saturday near me', 'is the little clinic open on saturday')",pregnancy clinic open on saturday near me,is the little clinic open on saturday,2,4,google,2026-03-12 19:43:18.639527,abortion clinic near me same day,abortion clinic open on saturday near me,pregnancy,is the little +abortion,"('pregnancy clinic open on saturday near me', 'is the health clinic open on saturday')",pregnancy clinic open on saturday near me,is the health clinic open on saturday,3,4,google,2026-03-12 19:43:18.639527,abortion clinic near me same day,abortion clinic open on saturday near me,pregnancy,is the health +abortion,"('pregnancy clinic open on saturday near me', 'what clinic is open on saturday')",pregnancy clinic open on saturday near me,what clinic is open on saturday,4,4,google,2026-03-12 19:43:18.639527,abortion clinic near me same day,abortion clinic open on saturday near me,pregnancy,what is +abortion,"('pregnancy clinic open on saturday near me', 'pregnancy clinic open on sunday')",pregnancy clinic open on saturday near me,pregnancy clinic open on sunday,5,4,google,2026-03-12 19:43:18.639527,abortion clinic near me same day,abortion clinic open on saturday near me,pregnancy,sunday +abortion,"('pregnancy clinic open on saturday near me', 'pregnancy clinic open today')",pregnancy clinic open on saturday near me,pregnancy clinic open today,6,4,google,2026-03-12 19:43:18.639527,abortion clinic near me same day,abortion clinic open on saturday near me,pregnancy,today +abortion,"('pregnancy clinic open on saturday near me', 'pregnancy clinic open near me')",pregnancy clinic open on saturday near me,pregnancy clinic open near me,7,4,google,2026-03-12 19:43:18.639527,abortion clinic near me same day,abortion clinic open on saturday near me,pregnancy,pregnancy +abortion,"('abortion clinic near me 24 hours san jose', 'abortion clinic near me 24 hours san jose ca')",abortion clinic near me 24 hours san jose,abortion clinic near me 24 hours san jose ca,1,4,google,2026-03-12 19:43:19.722566,abortion clinic near me same day,abortion clinic near me 24 hours,san jose,ca +abortion,"('abortion clinic near me 24 hours san jose', 'abortion clinic near me 24 hours san jose california')",abortion clinic near me 24 hours san jose,abortion clinic near me 24 hours san jose california,2,4,google,2026-03-12 19:43:19.722566,abortion clinic near me same day,abortion clinic near me 24 hours,san jose,california +abortion,"('abortion clinic near me 24 hours san jose', 'abortion clinic near me 24 hours san jose reddit')",abortion clinic near me 24 hours san jose,abortion clinic near me 24 hours san jose reddit,3,4,google,2026-03-12 19:43:19.722566,abortion clinic near me same day,abortion clinic near me 24 hours,san jose,reddit +abortion,"('abortion clinic near me 24 hours open', 'abortion clinic near me 24 hours open now')",abortion clinic near me 24 hours open,abortion clinic near me 24 hours open now,1,4,google,2026-03-12 19:43:20.581326,abortion clinic near me same day,abortion clinic near me 24 hours,open,now +abortion,"('abortion clinic near me 24 hours open', 'abortion clinic near me 24 hours open today')",abortion clinic near me 24 hours open,abortion clinic near me 24 hours open today,2,4,google,2026-03-12 19:43:20.581326,abortion clinic near me same day,abortion clinic near me 24 hours,open,today +abortion,"('abortion clinic near me 24 hours open', 'abortion clinic near me 24 hours open near me')",abortion clinic near me 24 hours open,abortion clinic near me 24 hours open near me,3,4,google,2026-03-12 19:43:20.581326,abortion clinic near me same day,abortion clinic near me 24 hours,open,open +abortion,"('abortion clinic near me 24 hours open', 'abortion clinic near me 24 hours open on saturday')",abortion clinic near me 24 hours open,abortion clinic near me 24 hours open on saturday,4,4,google,2026-03-12 19:43:20.581326,abortion clinic near me same day,abortion clinic near me 24 hours,open,on saturday +abortion,"('abortion clinic near me 24 hours open', 'abortion clinic near me 24 hours open on sunday')",abortion clinic near me 24 hours open,abortion clinic near me 24 hours open on sunday,5,4,google,2026-03-12 19:43:20.581326,abortion clinic near me same day,abortion clinic near me 24 hours,open,on sunday +abortion,"('abortion clinic near me 24 hours near me', 'abortion clinic near me 24 hours near me palo alto')",abortion clinic near me 24 hours near me,abortion clinic near me 24 hours near me palo alto,1,4,google,2026-03-12 19:43:21.530438,abortion clinic near me same day,abortion clinic near me 24 hours,24 hours,palo alto +abortion,"('abortion clinic near me 24 hours near me', 'abortion clinic near me 24 hours near me san jose')",abortion clinic near me 24 hours near me,abortion clinic near me 24 hours near me san jose,2,4,google,2026-03-12 19:43:21.530438,abortion clinic near me same day,abortion clinic near me 24 hours,24 hours,san jose +abortion,"('abortion clinic near me 24 hours near me', 'abortion clinic near me 24 hours near menlo park ca')",abortion clinic near me 24 hours near me,abortion clinic near me 24 hours near menlo park ca,3,4,google,2026-03-12 19:43:21.530438,abortion clinic near me same day,abortion clinic near me 24 hours,24 hours,menlo park ca +abortion,"('abortion clinic near me 24 hours near me', 'abortion clinic near me 24 hours near menlo park')",abortion clinic near me 24 hours near me,abortion clinic near me 24 hours near menlo park,4,4,google,2026-03-12 19:43:21.530438,abortion clinic near me same day,abortion clinic near me 24 hours,24 hours,menlo park +abortion,"('abortion clinic near me 24 hours near me', 'abortion clinic near me 24 hours near me stanford')",abortion clinic near me 24 hours near me,abortion clinic near me 24 hours near me stanford,5,4,google,2026-03-12 19:43:21.530438,abortion clinic near me same day,abortion clinic near me 24 hours,24 hours,stanford +abortion,"('abortion clinic near me 24 hours near me', 'abortion clinic near me 24 hours near me east palo alto')",abortion clinic near me 24 hours near me,abortion clinic near me 24 hours near me east palo alto,6,4,google,2026-03-12 19:43:21.530438,abortion clinic near me same day,abortion clinic near me 24 hours,24 hours,east palo alto +abortion,"('abortion clinic near me 24 hours near me', 'abortion clinic near me 24 hours near me san carlos')",abortion clinic near me 24 hours near me,abortion clinic near me 24 hours near me san carlos,7,4,google,2026-03-12 19:43:21.530438,abortion clinic near me same day,abortion clinic near me 24 hours,24 hours,san carlos +abortion,"('abortion clinic near me 24 hours no insurance', 'abortion clinic near me 24 hours no insurance san jose')",abortion clinic near me 24 hours no insurance,abortion clinic near me 24 hours no insurance san jose,1,4,google,2026-03-12 19:43:22.664363,abortion clinic near me same day,abortion clinic near me 24 hours,no insurance,san jose +abortion,"('abortion clinic near me 24 hours no insurance', 'abortion clinic near me 24 hours no insurance needed')",abortion clinic near me 24 hours no insurance,abortion clinic near me 24 hours no insurance needed,2,4,google,2026-03-12 19:43:22.664363,abortion clinic near me same day,abortion clinic near me 24 hours,no insurance,needed +abortion,"('abortion clinic near me 24 hours no insurance', 'abortion clinic near me 24 hours no insurance california')",abortion clinic near me 24 hours no insurance,abortion clinic near me 24 hours no insurance california,3,4,google,2026-03-12 19:43:22.664363,abortion clinic near me same day,abortion clinic near me 24 hours,no insurance,california +abortion,"('abortion clinic near me 24 hours no insurance', 'abortion clinic near me 24 hours no insurance near me')",abortion clinic near me 24 hours no insurance,abortion clinic near me 24 hours no insurance near me,4,4,google,2026-03-12 19:43:22.664363,abortion clinic near me same day,abortion clinic near me 24 hours,no insurance,no insurance +abortion,"('abortion clinic near me 24 hours no insurance', 'abortion clinic near me 24 hours no insurance bay area')",abortion clinic near me 24 hours no insurance,abortion clinic near me 24 hours no insurance bay area,5,4,google,2026-03-12 19:43:22.664363,abortion clinic near me same day,abortion clinic near me 24 hours,no insurance,bay area +abortion,"('abortion clinic near me 24 hours san jose ca', 'abortion clinic near me 24 hours san jose california')",abortion clinic near me 24 hours san jose ca,abortion clinic near me 24 hours san jose california,1,4,google,2026-03-12 19:43:23.751976,abortion clinic near me same day,abortion clinic near me 24 hours,san jose ca,california +abortion,"('abortion clinic near me 24 hours san jose ca', 'abortion clinic near me 24 hours san jose ca reddit')",abortion clinic near me 24 hours san jose ca,abortion clinic near me 24 hours san jose ca reddit,2,4,google,2026-03-12 19:43:23.751976,abortion clinic near me same day,abortion clinic near me 24 hours,san jose ca,reddit +abortion,"('is abortion pill legal in texas', 'is morning after pill legal in texas')",is abortion pill legal in texas,is morning after pill legal in texas,1,4,google,2026-03-12 19:43:24.854295,abortion pill online free,abortion pill online free texas,is legal in,morning after +abortion,"('is abortion pill legal in texas', 'is abortion pill illegal in texas')",is abortion pill legal in texas,is abortion pill illegal in texas,2,4,google,2026-03-12 19:43:24.854295,abortion pill online free,abortion pill online free texas,is legal in,illegal +abortion,"('is abortion pill legal in texas', 'is abortion pill available in texas')",is abortion pill legal in texas,is abortion pill available in texas,3,4,google,2026-03-12 19:43:24.854295,abortion pill online free,abortion pill online free texas,is legal in,available +abortion,"('is abortion pill legal in texas', 'is abortion medication legal in texas')",is abortion pill legal in texas,is abortion medication legal in texas,4,4,google,2026-03-12 19:43:24.854295,abortion pill online free,abortion pill online free texas,is legal in,medication +abortion,"('is abortion pill legal in texas', 'are abortion pills legal in texas 2025')",is abortion pill legal in texas,are abortion pills legal in texas 2025,5,4,google,2026-03-12 19:43:24.854295,abortion pill online free,abortion pill online free texas,is legal in,are pills 2025 +abortion,"('is abortion pill legal in texas', 'are abortion pills legal in texas reddit')",is abortion pill legal in texas,are abortion pills legal in texas reddit,6,4,google,2026-03-12 19:43:24.854295,abortion pill online free,abortion pill online free texas,is legal in,are pills reddit +abortion,"('is abortion pill legal in texas', 'is morning after pill available in texas')",is abortion pill legal in texas,is morning after pill available in texas,7,4,google,2026-03-12 19:43:24.854295,abortion pill online free,abortion pill online free texas,is legal in,morning after available +abortion,"('is abortion pill legal in texas', 'are abortion clinics legal in texas')",is abortion pill legal in texas,are abortion clinics legal in texas,8,4,google,2026-03-12 19:43:24.854295,abortion pill online free,abortion pill online free texas,is legal in,are clinics +abortion,"('is abortion pill legal in texas', 'are abortion pills legal in texas')",is abortion pill legal in texas,are abortion pills legal in texas,9,4,google,2026-03-12 19:43:24.854295,abortion pill online free,abortion pill online free texas,is legal in,are pills +abortion,"('abortion pill in missouri', 'abortion clinics in missouri')",abortion pill in missouri,abortion clinics in missouri,1,4,google,2026-03-12 19:43:26.181361,abortion pill online free,abortion pill online free missouri,in,clinics +abortion,"('abortion pill in missouri', 'abortion options in missouri')",abortion pill in missouri,abortion options in missouri,2,4,google,2026-03-12 19:43:26.181361,abortion pill online free,abortion pill online free missouri,in,options +abortion,"('abortion pill in missouri', 'morning after pill in missouri')",abortion pill in missouri,morning after pill in missouri,3,4,google,2026-03-12 19:43:26.181361,abortion pill online free,abortion pill online free missouri,in,morning after +abortion,"('abortion pill in missouri', 'abortion pill in mo')",abortion pill in missouri,abortion pill in mo,4,4,google,2026-03-12 19:43:26.181361,abortion pill online free,abortion pill online free missouri,in,mo +abortion,"('abortion pill in missouri', 'abortion pill cost in missouri')",abortion pill in missouri,abortion pill cost in missouri,5,4,google,2026-03-12 19:43:26.181361,abortion pill online free,abortion pill online free missouri,in,cost +abortion,"('abortion pill in missouri', 'abortion pill legal in missouri')",abortion pill in missouri,abortion pill legal in missouri,6,4,google,2026-03-12 19:43:26.181361,abortion pill online free,abortion pill online free missouri,in,legal +abortion,"('abortion pill in missouri', 'abortion pill missouri online')",abortion pill in missouri,abortion pill missouri online,7,4,google,2026-03-12 19:43:26.181361,abortion pill online free,abortion pill online free missouri,in,online +abortion,"('abortion pill in missouri', 'medical abortion in missouri')",abortion pill in missouri,medical abortion in missouri,8,4,google,2026-03-12 19:43:26.181361,abortion pill online free,abortion pill online free missouri,in,medical +abortion,"('abortion pill in missouri', 'abortion clinics in branson missouri')",abortion pill in missouri,abortion clinics in branson missouri,9,4,google,2026-03-12 19:43:26.181361,abortion pill online free,abortion pill online free missouri,in,clinics branson +abortion,"('abortion pill online missouri', 'abortion pill online free missouri')",abortion pill online missouri,abortion pill online free missouri,1,4,google,2026-03-12 19:43:27.032745,abortion pill online free,abortion pill online free missouri,missouri,free +abortion,"('abortion pill online missouri', 'abortion pill near me online')",abortion pill online missouri,abortion pill near me online,2,4,google,2026-03-12 19:43:27.032745,abortion pill online free,abortion pill online free missouri,missouri,near me +abortion,"('abortion pill online missouri', 'abortion pill in missouri')",abortion pill online missouri,abortion pill in missouri,3,4,google,2026-03-12 19:43:27.032745,abortion pill online free,abortion pill online free missouri,missouri,in +abortion,"('abortion pill online missouri', 'abortion pill online mo')",abortion pill online missouri,abortion pill online mo,4,4,google,2026-03-12 19:43:27.032745,abortion pill online free,abortion pill online free missouri,missouri,mo +abortion,"('abortion pill online missouri', 'abortion pill online mississippi')",abortion pill online missouri,abortion pill online mississippi,5,4,google,2026-03-12 19:43:27.032745,abortion pill online free,abortion pill online free missouri,missouri,mississippi +abortion,"('abortion pill online missouri', 'abortion pill online kansas')",abortion pill online missouri,abortion pill online kansas,6,4,google,2026-03-12 19:43:27.032745,abortion pill online free,abortion pill online free missouri,missouri,kansas +abortion,"('abortion pill online missouri', 'abortion pill online minnesota')",abortion pill online missouri,abortion pill online minnesota,7,4,google,2026-03-12 19:43:27.032745,abortion pill online free,abortion pill online free missouri,missouri,minnesota +abortion,"('abortion pill online mo', 'abortion pill online montana')",abortion pill online mo,abortion pill online montana,1,4,google,2026-03-12 19:43:28.311726,abortion pill online free,abortion pill online free missouri,mo,montana +abortion,"('abortion pill online mo', 'abortion pill online missouri')",abortion pill online mo,abortion pill online missouri,2,4,google,2026-03-12 19:43:28.311726,abortion pill online free,abortion pill online free missouri,mo,missouri +abortion,"('abortion pill online mo', 'abortion pill online free missouri')",abortion pill online mo,abortion pill online free missouri,3,4,google,2026-03-12 19:43:28.311726,abortion pill online free,abortion pill online free missouri,mo,free missouri +abortion,"('abortion pill online mo', 'abortion pill near me online')",abortion pill online mo,abortion pill near me online,4,4,google,2026-03-12 19:43:28.311726,abortion pill online free,abortion pill online free missouri,mo,near me +abortion,"('abortion pill online mo', 'abortion pill online amazon')",abortion pill online mo,abortion pill online amazon,5,4,google,2026-03-12 19:43:28.311726,abortion pill online free,abortion pill online free missouri,mo,amazon +abortion,"('abortion pill online mississippi', 'abortion pill cost in mississippi')",abortion pill online mississippi,abortion pill cost in mississippi,1,4,google,2026-03-12 19:43:29.594058,abortion pill online free,abortion pill online free missouri,mississippi,cost in +abortion,"('abortion pill online mississippi', 'abortion pill in mississippi')",abortion pill online mississippi,abortion pill in mississippi,2,4,google,2026-03-12 19:43:29.594058,abortion pill online free,abortion pill online free missouri,mississippi,in +abortion,"('abortion pill online mississippi', 'abortion pill near me online')",abortion pill online mississippi,abortion pill near me online,3,4,google,2026-03-12 19:43:29.594058,abortion pill online free,abortion pill online free missouri,mississippi,near me +abortion,"('abortion pill online mississippi', 'abortion pill online missouri')",abortion pill online mississippi,abortion pill online missouri,4,4,google,2026-03-12 19:43:29.594058,abortion pill online free,abortion pill online free missouri,mississippi,missouri +abortion,"('does medicaid cover abortion pill', 'does medicaid cover abortion pill in virginia')",does medicaid cover abortion pill,does medicaid cover abortion pill in virginia,1,4,google,2026-03-12 19:43:30.667513,abortion pill online free,abortion pill online free medicaid,does cover,in virginia +abortion,"('does medicaid cover abortion pill', 'does medicaid cover abortion pills in nc')",does medicaid cover abortion pill,does medicaid cover abortion pills in nc,2,4,google,2026-03-12 19:43:30.667513,abortion pill online free,abortion pill online free medicaid,does cover,pills in nc +abortion,"('does medicaid cover abortion pill', 'does medicaid cover abortion pill in colorado')",does medicaid cover abortion pill,does medicaid cover abortion pill in colorado,3,4,google,2026-03-12 19:43:30.667513,abortion pill online free,abortion pill online free medicaid,does cover,in colorado +abortion,"('does medicaid cover abortion pill', 'does medicaid cover abortion pill in nj')",does medicaid cover abortion pill,does medicaid cover abortion pill in nj,4,4,google,2026-03-12 19:43:30.667513,abortion pill online free,abortion pill online free medicaid,does cover,in nj +abortion,"('does medicaid cover abortion pill', 'does medicaid cover abortion pill in ohio')",does medicaid cover abortion pill,does medicaid cover abortion pill in ohio,5,4,google,2026-03-12 19:43:30.667513,abortion pill online free,abortion pill online free medicaid,does cover,in ohio +abortion,"('does medicaid cover abortion pill', 'does medicaid cover abortion pill in illinois')",does medicaid cover abortion pill,does medicaid cover abortion pill in illinois,6,4,google,2026-03-12 19:43:30.667513,abortion pill online free,abortion pill online free medicaid,does cover,in illinois +abortion,"('does medicaid cover abortion pill', 'does medicaid cover abortion pill in nevada')",does medicaid cover abortion pill,does medicaid cover abortion pill in nevada,7,4,google,2026-03-12 19:43:30.667513,abortion pill online free,abortion pill online free medicaid,does cover,in nevada +abortion,"('does medicaid cover abortion pill', 'does medicaid cover abortion pill in florida')",does medicaid cover abortion pill,does medicaid cover abortion pill in florida,8,4,google,2026-03-12 19:43:30.667513,abortion pill online free,abortion pill online free medicaid,does cover,in florida +abortion,"('does medicaid cover abortion pill', 'does medicaid cover abortion pill in michigan')",does medicaid cover abortion pill,does medicaid cover abortion pill in michigan,9,4,google,2026-03-12 19:43:30.667513,abortion pill online free,abortion pill online free medicaid,does cover,in michigan +abortion,"('are abortions covered by medicaid', 'are abortions covered by medicaid in michigan')",are abortions covered by medicaid,are abortions covered by medicaid in michigan,1,4,google,2026-03-12 19:43:32.148634,abortion pill online free,abortion pill online free medicaid,are abortions covered by,in michigan +abortion,"('are abortions covered by medicaid', 'are abortions covered by medicaid in colorado')",are abortions covered by medicaid,are abortions covered by medicaid in colorado,2,4,google,2026-03-12 19:43:32.148634,abortion pill online free,abortion pill online free medicaid,are abortions covered by,in colorado +abortion,"('are abortions covered by medicaid', 'are abortions covered by medicaid in illinois')",are abortions covered by medicaid,are abortions covered by medicaid in illinois,3,4,google,2026-03-12 19:43:32.148634,abortion pill online free,abortion pill online free medicaid,are abortions covered by,in illinois +abortion,"('are abortions covered by medicaid', 'are abortions covered by medicaid in nc')",are abortions covered by medicaid,are abortions covered by medicaid in nc,4,4,google,2026-03-12 19:43:32.148634,abortion pill online free,abortion pill online free medicaid,are abortions covered by,in nc +abortion,"('are abortions covered by medicaid', 'are abortions covered by medicaid in pa')",are abortions covered by medicaid,are abortions covered by medicaid in pa,5,4,google,2026-03-12 19:43:32.148634,abortion pill online free,abortion pill online free medicaid,are abortions covered by,in pa +abortion,"('are abortions covered by medicaid', 'are abortions covered by medicaid in virginia')",are abortions covered by medicaid,are abortions covered by medicaid in virginia,6,4,google,2026-03-12 19:43:32.148634,abortion pill online free,abortion pill online free medicaid,are abortions covered by,in virginia +abortion,"('are abortions covered by medicaid', 'is abortion covered by medicaid in ohio')",are abortions covered by medicaid,is abortion covered by medicaid in ohio,7,4,google,2026-03-12 19:43:32.148634,abortion pill online free,abortion pill online free medicaid,are abortions covered by,is abortion in ohio +abortion,"('are abortions covered by medicaid', 'is abortion covered by medicaid in ny')",are abortions covered by medicaid,is abortion covered by medicaid in ny,8,4,google,2026-03-12 19:43:32.148634,abortion pill online free,abortion pill online free medicaid,are abortions covered by,is abortion in ny +abortion,"('are abortions covered by medicaid', 'is abortion covered by medicaid in nevada')",are abortions covered by medicaid,is abortion covered by medicaid in nevada,9,4,google,2026-03-12 19:43:32.148634,abortion pill online free,abortion pill online free medicaid,are abortions covered by,is abortion in nevada +abortion,"('morning after pill for free', 'morning after pill for free near me')",morning after pill for free,morning after pill for free near me,1,4,google,2026-03-12 19:43:32.971229,abortion pill online free,morning after pill online free,for,near me +abortion,"('morning after pill for free', 'morning after pill for free boots')",morning after pill for free,morning after pill for free boots,2,4,google,2026-03-12 19:43:32.971229,abortion pill online free,morning after pill online free,for,boots +abortion,"('morning after pill for free', 'morning after pill for free london')",morning after pill for free,morning after pill for free london,3,4,google,2026-03-12 19:43:32.971229,abortion pill online free,morning after pill online free,for,london +abortion,"('morning after pill for free', 'morning after pill for free online')",morning after pill for free,morning after pill for free online,4,4,google,2026-03-12 19:43:32.971229,abortion pill online free,morning after pill online free,for,online +abortion,"('morning after pill for free', 'morning after pill for free uk')",morning after pill for free,morning after pill for free uk,5,4,google,2026-03-12 19:43:32.971229,abortion pill online free,morning after pill online free,for,uk +abortion,"('morning after pill for free', 'morning after pill for free nhs')",morning after pill for free,morning after pill for free nhs,6,4,google,2026-03-12 19:43:32.971229,abortion pill online free,morning after pill online free,for,nhs +abortion,"('morning after pill for free', 'morning after pill free for students')",morning after pill for free,morning after pill free for students,7,4,google,2026-03-12 19:43:32.971229,abortion pill online free,morning after pill online free,for,students +abortion,"('morning after pill for free', 'day after pill for free')",morning after pill for free,day after pill for free,8,4,google,2026-03-12 19:43:32.971229,abortion pill online free,morning after pill online free,for,day +abortion,"('morning after pill for free', 'get morning after pill for free')",morning after pill for free,get morning after pill for free,9,4,google,2026-03-12 19:43:32.971229,abortion pill online free,morning after pill online free,for,get +abortion,"('morning after pill for free near me', 'morning after pill free near me open now')",morning after pill for free near me,morning after pill free near me open now,1,4,google,2026-03-12 19:43:33.887388,abortion pill online free,morning after pill online free,for near me,open now +abortion,"('morning after pill for free near me', 'day after pill free near me')",morning after pill for free near me,day after pill free near me,2,4,google,2026-03-12 19:43:33.887388,abortion pill online free,morning after pill online free,for near me,day +abortion,"('morning after pill for free near me', 'where to get morning after pill for free near me')",morning after pill for free near me,where to get morning after pill for free near me,3,4,google,2026-03-12 19:43:33.887388,abortion pill online free,morning after pill online free,for near me,where to get +abortion,"('morning after pill for free near me', 'morning after pill free pharmacy near me')",morning after pill for free near me,morning after pill free pharmacy near me,4,4,google,2026-03-12 19:43:33.887388,abortion pill online free,morning after pill online free,for near me,pharmacy +abortion,"('morning after pill for free near me', 'free morning after pill near me boots')",morning after pill for free near me,free morning after pill near me boots,5,4,google,2026-03-12 19:43:33.887388,abortion pill online free,morning after pill online free,for near me,boots +abortion,"('morning after pill for free near me', 'free morning after pill near me delivery')",morning after pill for free near me,free morning after pill near me delivery,6,4,google,2026-03-12 19:43:33.887388,abortion pill online free,morning after pill online free,for near me,delivery +abortion,"('morning after pill for free near me', 'free morning after pill near me nottingham')",morning after pill for free near me,free morning after pill near me nottingham,7,4,google,2026-03-12 19:43:33.887388,abortion pill online free,morning after pill online free,for near me,nottingham +abortion,"('morning after pill for free near me', 'free morning after pill near me wales')",morning after pill for free near me,free morning after pill near me wales,8,4,google,2026-03-12 19:43:33.887388,abortion pill online free,morning after pill online free,for near me,wales +abortion,"('morning after pill for free near me', 'free morning after pill near me nhs')",morning after pill for free near me,free morning after pill near me nhs,9,4,google,2026-03-12 19:43:33.887388,abortion pill online free,morning after pill online free,for near me,nhs +abortion,"('morning after pill for free london', 'can i get the morning after pill for free uk')",morning after pill for free london,can i get the morning after pill for free uk,1,4,google,2026-03-12 19:43:35.028967,abortion pill online free,morning after pill online free,for london,can i get the uk +abortion,"('morning after pill for free london', 'is the morning after pill free uk')",morning after pill for free london,is the morning after pill free uk,2,4,google,2026-03-12 19:43:35.028967,abortion pill online free,morning after pill online free,for london,is the uk +abortion,"('morning after pill for free london', 'how to get free morning after pill uk')",morning after pill for free london,how to get free morning after pill uk,3,4,google,2026-03-12 19:43:35.028967,abortion pill online free,morning after pill online free,for london,how to get uk +abortion,"('morning after pill for free london', 'is the morning after pill free in boots uk')",morning after pill for free london,is the morning after pill free in boots uk,4,4,google,2026-03-12 19:43:35.028967,abortion pill online free,morning after pill online free,for london,is the in boots uk +abortion,"('morning after pill for free london', 'free morning after pill east london')",morning after pill for free london,free morning after pill east london,5,4,google,2026-03-12 19:43:35.028967,abortion pill online free,morning after pill online free,for london,east +abortion,"('morning after pill for free london', 'free morning after pill nyc')",morning after pill for free london,free morning after pill nyc,6,4,google,2026-03-12 19:43:35.028967,abortion pill online free,morning after pill online free,for london,nyc +abortion,"('morning after pill for free london', 'morning after pill free at planned parenthood')",morning after pill for free london,morning after pill free at planned parenthood,7,4,google,2026-03-12 19:43:35.028967,abortion pill online free,morning after pill online free,for london,at planned parenthood +abortion,"('morning after pill free online delivery', 'morning after pill free order online')",morning after pill free online delivery,morning after pill free order online,1,4,google,2026-03-12 19:43:36.011399,abortion pill online free,morning after pill online free,delivery,order +abortion,"('morning after pill free online delivery', 'is morning after pill.free')",morning after pill free online delivery,is morning after pill.free,2,4,google,2026-03-12 19:43:36.011399,abortion pill online free,morning after pill online free,delivery,is pill.free +abortion,"('morning after pill free online delivery', 'morning after pill free at planned parenthood')",morning after pill free online delivery,morning after pill free at planned parenthood,3,4,google,2026-03-12 19:43:36.011399,abortion pill online free,morning after pill online free,delivery,at planned parenthood +abortion,"('morning after pill free online delivery', 'morning after pill on amazon')",morning after pill free online delivery,morning after pill on amazon,4,4,google,2026-03-12 19:43:36.011399,abortion pill online free,morning after pill online free,delivery,on amazon +abortion,"('morning after pill free for students', 'is the morning after pill free for under 18s')",morning after pill free for students,is the morning after pill free for under 18s,1,4,google,2026-03-12 19:43:36.815958,abortion pill online free,morning after pill online free,for students,is the under 18s +abortion,"('morning after pill free for students', 'where can i get the morning after pill for free')",morning after pill free for students,where can i get the morning after pill for free,2,4,google,2026-03-12 19:43:36.815958,abortion pill online free,morning after pill online free,for students,where can i get the +abortion,"('morning after pill free for students', 'how old do you have to be to get the morning after pill for free')",morning after pill free for students,how old do you have to be to get the morning after pill for free,3,4,google,2026-03-12 19:43:36.815958,abortion pill online free,morning after pill online free,for students,how old do you have to be to get the +abortion,"('morning after pill free for students', 'morning after pill free at planned parenthood')",morning after pill free for students,morning after pill free at planned parenthood,4,4,google,2026-03-12 19:43:36.815958,abortion pill online free,morning after pill online free,for students,at planned parenthood +abortion,"('morning after pill free for students', 'free morning after pills near me')",morning after pill free for students,free morning after pills near me,5,4,google,2026-03-12 19:43:36.815958,abortion pill online free,morning after pill online free,for students,pills near me +abortion,"('morning after pill free for students', 'free morning after pill nyc')",morning after pill free for students,free morning after pill nyc,6,4,google,2026-03-12 19:43:36.815958,abortion pill online free,morning after pill online free,for students,nyc +abortion,"('morning after pill free for students', 'how to get a morning after pill for free')",morning after pill free for students,how to get a morning after pill for free,7,4,google,2026-03-12 19:43:36.815958,abortion pill online free,morning after pill online free,for students,how to get a +abortion,"('can you get morning after pill for free boots', 'can i get morning after pill for free boots')",can you get morning after pill for free boots,can i get morning after pill for free boots,1,4,google,2026-03-12 19:43:38.239215,abortion pill online free,morning after pill for free boots,can you get,i +abortion,"('can you get morning after pill for free boots', 'does boots give morning after pill free')",can you get morning after pill for free boots,does boots give morning after pill free,2,4,google,2026-03-12 19:43:38.239215,abortion pill online free,morning after pill for free boots,can you get,does give +abortion,"('can you get morning after pill for free boots', 'can you get the morning after pill from boots')",can you get morning after pill for free boots,can you get the morning after pill from boots,3,4,google,2026-03-12 19:43:38.239215,abortion pill online free,morning after pill for free boots,can you get,the from +abortion,"('can you get morning after pill for free boots', 'boots.morning after.pill')",can you get morning after pill for free boots,boots.morning after.pill,4,4,google,2026-03-12 19:43:38.239215,abortion pill online free,morning after pill for free boots,can you get,boots.morning after.pill +abortion,"('where to get morning after pill for free boots', 'morning after pill for free boots')",where to get morning after pill for free boots,morning after pill for free boots,1,4,google,2026-03-12 19:43:39.066135,abortion pill online free,morning after pill for free boots,where to get,where to get +abortion,"('where to get morning after pill for free boots', 'can you get morning after pill for free boots')",where to get morning after pill for free boots,can you get morning after pill for free boots,2,4,google,2026-03-12 19:43:39.066135,abortion pill online free,morning after pill for free boots,where to get,can you +abortion,"('where to get morning after pill for free boots', 'does boots give morning after pill free')",where to get morning after pill for free boots,does boots give morning after pill free,3,4,google,2026-03-12 19:43:39.066135,abortion pill online free,morning after pill for free boots,where to get,does give +abortion,"('where to get morning after pill for free boots', 'where to get morning after pill walmart')",where to get morning after pill for free boots,where to get morning after pill walmart,4,4,google,2026-03-12 19:43:39.066135,abortion pill online free,morning after pill for free boots,where to get,walmart +abortion,"('can i get morning after pill for free boots', 'can you get morning after pill for free boots')",can i get morning after pill for free boots,can you get morning after pill for free boots,1,4,google,2026-03-12 19:43:40.438793,abortion pill online free,morning after pill for free boots,can i get,you +abortion,"('can i get morning after pill for free boots', 'where to get morning after pill for free boots')",can i get morning after pill for free boots,where to get morning after pill for free boots,2,4,google,2026-03-12 19:43:40.438793,abortion pill online free,morning after pill for free boots,can i get,where to +abortion,"('can i get morning after pill for free boots', 'does boots give morning after pill free')",can i get morning after pill for free boots,does boots give morning after pill free,3,4,google,2026-03-12 19:43:40.438793,abortion pill online free,morning after pill for free boots,can i get,does give +abortion,"('can i get morning after pill for free boots', 'can i get morning after pill from boots')",can i get morning after pill for free boots,can i get morning after pill from boots,4,4,google,2026-03-12 19:43:40.438793,abortion pill online free,morning after pill for free boots,can i get,from +abortion,"('do boots offer the morning after pill for free', 'does boots offer the morning after pill for free')",do boots offer the morning after pill for free,does boots offer the morning after pill for free,1,4,google,2026-03-12 19:43:41.260755,abortion pill online free,morning after pill for free boots,do offer the,does +abortion,"('do boots offer the morning after pill for free', 'does boots give the morning after pill for free')",do boots offer the morning after pill for free,does boots give the morning after pill for free,2,4,google,2026-03-12 19:43:41.260755,abortion pill online free,morning after pill for free boots,do offer the,does give +abortion,"('do boots offer the morning after pill for free', 'can you get the morning after pill for free at boots')",do boots offer the morning after pill for free,can you get the morning after pill for free at boots,3,4,google,2026-03-12 19:43:41.260755,abortion pill online free,morning after pill for free boots,do offer the,can you get at +abortion,"('do boots offer the morning after pill for free', 'is the morning after pill free at boots')",do boots offer the morning after pill for free,is the morning after pill free at boots,4,4,google,2026-03-12 19:43:41.260755,abortion pill online free,morning after pill for free boots,do offer the,is at +abortion,"('do boots offer the morning after pill for free', 'do boots give the morning after pill for free')",do boots offer the morning after pill for free,do boots give the morning after pill for free,5,4,google,2026-03-12 19:43:41.260755,abortion pill online free,morning after pill for free boots,do offer the,give +abortion,"('do boots offer the morning after pill for free', 'do boots do the morning after pill for free')",do boots offer the morning after pill for free,do boots do the morning after pill for free,6,4,google,2026-03-12 19:43:41.260755,abortion pill online free,morning after pill for free boots,do offer the,do offer the +abortion,"('does boots give morning after pill free', 'do boots give morning after pill free')",does boots give morning after pill free,do boots give morning after pill free,1,4,google,2026-03-12 19:43:42.376326,abortion pill online free,morning after pill for free boots,does give,do +abortion,"('does boots give morning after pill free', 'does boots give you the morning after pill for free')",does boots give morning after pill free,does boots give you the morning after pill for free,2,4,google,2026-03-12 19:43:42.376326,abortion pill online free,morning after pill for free boots,does give,you the for +abortion,"('does boots give morning after pill free', 'does boots pharmacy give free morning after pill')",does boots give morning after pill free,does boots pharmacy give free morning after pill,3,4,google,2026-03-12 19:43:42.376326,abortion pill online free,morning after pill for free boots,does give,pharmacy +abortion,"('does boots give morning after pill free', 'is the morning after pill free at boots')",does boots give morning after pill free,is the morning after pill free at boots,4,4,google,2026-03-12 19:43:42.376326,abortion pill online free,morning after pill for free boots,does give,is the at +abortion,"('does boots give morning after pill free', 'boots.morning after.pill')",does boots give morning after pill free,boots.morning after.pill,5,4,google,2026-03-12 19:43:42.376326,abortion pill online free,morning after pill for free boots,does give,boots.morning after.pill +abortion,"('morning after pill free at planned parenthood', 'can you get the morning after pill for free at planned parenthood')",morning after pill free at planned parenthood,can you get the morning after pill for free at planned parenthood,1,4,google,2026-03-12 19:43:43.313895,abortion pill online free,morning after pill for free boots,at planned parenthood,can you get the for +abortion,"('morning after pill free at planned parenthood', 'how much is a morning after pill at planned parenthood')",morning after pill free at planned parenthood,how much is a morning after pill at planned parenthood,2,4,google,2026-03-12 19:43:43.313895,abortion pill online free,morning after pill for free boots,at planned parenthood,how much is a +abortion,"('morning after pill free at planned parenthood', 'can you get plan b for free from planned parenthood')",morning after pill free at planned parenthood,can you get plan b for free from planned parenthood,3,4,google,2026-03-12 19:43:43.313895,abortion pill online free,morning after pill for free boots,at planned parenthood,can you get plan b for from +abortion,"('morning after pill free at planned parenthood', 'planned parenthood morning-after pill cost')",morning after pill free at planned parenthood,planned parenthood morning-after pill cost,4,4,google,2026-03-12 19:43:43.313895,abortion pill online free,morning after pill for free boots,at planned parenthood,morning-after cost +abortion,"('boots.morning after.pill', 'boots morning after pill')",boots.morning after.pill,boots morning after pill,1,4,google,2026-03-12 19:43:44.662116,abortion pill online free,morning after pill for free boots,boots.morning after.pill,boots morning after pill +abortion,"('boots.morning after.pill', 'boots morning after pill price')",boots.morning after.pill,boots morning after pill price,2,4,google,2026-03-12 19:43:44.662116,abortion pill online free,morning after pill for free boots,boots.morning after.pill,boots morning after pill price +abortion,"('boots.morning after.pill', 'boots morning after pill free')",boots.morning after.pill,boots morning after pill free,3,4,google,2026-03-12 19:43:44.662116,abortion pill online free,morning after pill for free boots,boots.morning after.pill,boots morning after pill free +abortion,"('boots.morning after.pill', 'boots morning after pill delivery')",boots.morning after.pill,boots morning after pill delivery,4,4,google,2026-03-12 19:43:44.662116,abortion pill online free,morning after pill for free boots,boots.morning after.pill,boots morning after pill delivery +abortion,"('boots.morning after.pill', 'boots morning after pill ireland')",boots.morning after.pill,boots morning after pill ireland,5,4,google,2026-03-12 19:43:44.662116,abortion pill online free,morning after pill for free boots,boots.morning after.pill,boots morning after pill ireland +abortion,"('boots.morning after.pill', 'boots morning after pill order online')",boots.morning after.pill,boots morning after pill order online,6,4,google,2026-03-12 19:43:44.662116,abortion pill online free,morning after pill for free boots,boots.morning after.pill,boots morning after pill order online +abortion,"('boots.morning after.pill', 'boots morning after pill collection')",boots.morning after.pill,boots morning after pill collection,7,4,google,2026-03-12 19:43:44.662116,abortion pill online free,morning after pill for free boots,boots.morning after.pill,boots morning after pill collection +abortion,"('boots.morning after.pill', 'boots morning after pill in store')",boots.morning after.pill,boots morning after pill in store,8,4,google,2026-03-12 19:43:44.662116,abortion pill online free,morning after pill for free boots,boots.morning after.pill,boots morning after pill in store +abortion,"('boots.morning after.pill', 'boots morning after pill pick up')",boots.morning after.pill,boots morning after pill pick up,9,4,google,2026-03-12 19:43:44.662116,abortion pill online free,morning after pill for free boots,boots.morning after.pill,boots morning after pill pick up +abortion,"('boots.morning after.pill', 'boots morning after pill order')",boots.morning after.pill,boots morning after pill order,10,4,google,2026-03-12 19:43:44.662116,abortion pill online free,morning after pill for free boots,boots.morning after.pill,boots morning after pill order +abortion,"('is the morning after pill free uk', 'is the morning after pill free uk boots')",is the morning after pill free uk,is the morning after pill free uk boots,1,4,google,2026-03-12 19:43:45.662081,abortion pill online free,morning after pill free online uk,is the,boots +abortion,"('is the morning after pill free uk', 'is the morning after pill free england')",is the morning after pill free uk,is the morning after pill free england,2,4,google,2026-03-12 19:43:45.662081,abortion pill online free,morning after pill free online uk,is the,england +abortion,"('is the morning after pill free uk', 'is the morning after pill free nhs')",is the morning after pill free uk,is the morning after pill free nhs,3,4,google,2026-03-12 19:43:45.662081,abortion pill online free,morning after pill free online uk,is the,nhs +abortion,"('is the morning after pill free uk', 'is the morning after pill free now uk')",is the morning after pill free uk,is the morning after pill free now uk,4,4,google,2026-03-12 19:43:45.662081,abortion pill online free,morning after pill free online uk,is the,now +abortion,"('is the morning after pill free uk', 'is the morning after pill free in uk pharmacy')",is the morning after pill free uk,is the morning after pill free in uk pharmacy,5,4,google,2026-03-12 19:43:45.662081,abortion pill online free,morning after pill free online uk,is the,in pharmacy +abortion,"('is the morning after pill free uk', 'is the morning after pill free in england now')",is the morning after pill free uk,is the morning after pill free in england now,6,4,google,2026-03-12 19:43:45.662081,abortion pill online free,morning after pill free online uk,is the,in england now +abortion,"('is the morning after pill free uk', 'is the morning after pill free everywhere in the uk')",is the morning after pill free uk,is the morning after pill free everywhere in the uk,7,4,google,2026-03-12 19:43:45.662081,abortion pill online free,morning after pill free online uk,is the,everywhere in +abortion,"('is the morning after pill free uk', 'morning after pill free uk news')",is the morning after pill free uk,morning after pill free uk news,8,4,google,2026-03-12 19:43:45.662081,abortion pill online free,morning after pill free online uk,is the,news +abortion,"('is the morning after pill free uk', 'how to get free morning after pill uk')",is the morning after pill free uk,how to get free morning after pill uk,9,4,google,2026-03-12 19:43:45.662081,abortion pill online free,morning after pill free online uk,is the,how to get +abortion,"('how to get free morning after pill uk', 'how to get free morning after pill boots')",how to get free morning after pill uk,how to get free morning after pill boots,1,4,google,2026-03-12 19:43:46.896161,abortion pill online free,morning after pill free online uk,how to get,boots +abortion,"('how to get free morning after pill uk', 'how to get free morning after pill nhs')",how to get free morning after pill uk,how to get free morning after pill nhs,2,4,google,2026-03-12 19:43:46.896161,abortion pill online free,morning after pill free online uk,how to get,nhs +abortion,"('how to get free morning after pill uk', 'can you get morning after pill free uk')",how to get free morning after pill uk,can you get morning after pill free uk,3,4,google,2026-03-12 19:43:46.896161,abortion pill online free,morning after pill free online uk,how to get,can you +abortion,"('how to get free morning after pill uk', 'is the morning after pill free uk')",how to get free morning after pill uk,is the morning after pill free uk,4,4,google,2026-03-12 19:43:46.896161,abortion pill online free,morning after pill free online uk,how to get,is the +abortion,"('how to get free morning after pill uk', 'how to get morning after pill prescription')",how to get free morning after pill uk,how to get morning after pill prescription,5,4,google,2026-03-12 19:43:46.896161,abortion pill online free,morning after pill free online uk,how to get,prescription +abortion,"('how to get free morning after pill uk', 'how to get a morning after pill for free')",how to get free morning after pill uk,how to get a morning after pill for free,6,4,google,2026-03-12 19:43:46.896161,abortion pill online free,morning after pill free online uk,how to get,a for +abortion,"('how to get free morning after pill uk', 'free morning.after pill')",how to get free morning after pill uk,free morning.after pill,7,4,google,2026-03-12 19:43:46.896161,abortion pill online free,morning after pill free online uk,how to get,morning.after +abortion,"('free morning after pill order online', 'where can i get the morning after pill from for free')",free morning after pill order online,where can i get the morning after pill from for free,1,4,google,2026-03-12 19:43:47.933730,abortion pill online free,morning after pill free online uk,order,where can i get the from for +abortion,"('free morning after pill order online', 'can i get morning after pill online')",free morning after pill order online,can i get morning after pill online,2,4,google,2026-03-12 19:43:47.933730,abortion pill online free,morning after pill free online uk,order,can i get +abortion,"('free morning after pill order online', 'how to get the morning after pill free')",free morning after pill order online,how to get the morning after pill free,3,4,google,2026-03-12 19:43:47.933730,abortion pill online free,morning after pill free online uk,order,how to get the +abortion,"('free morning after pill order online', 'are morning after pills free')",free morning after pill order online,are morning after pills free,4,4,google,2026-03-12 19:43:47.933730,abortion pill online free,morning after pill free online uk,order,are pills +abortion,"('free morning after pill order online', 'free morning after pill nyc')",free morning after pill order online,free morning after pill nyc,5,4,google,2026-03-12 19:43:47.933730,abortion pill online free,morning after pill free online uk,order,nyc +abortion,"('free morning after pill order online', 'order morning after pills')",free morning after pill order online,order morning after pills,6,4,google,2026-03-12 19:43:47.933730,abortion pill online free,morning after pill free online uk,order,pills +abortion,"('free morning after pill online', 'nhs free morning after pill online')",free morning after pill online,nhs free morning after pill online,1,4,google,2026-03-12 19:43:49.067485,abortion pill online free,morning after pill free online uk,morning after uk,nhs +abortion,"('free morning after pill online', 'morning after pill free online uk')",free morning after pill online,morning after pill free online uk,2,4,google,2026-03-12 19:43:49.067485,abortion pill online free,morning after pill free online uk,morning after uk,uk +abortion,"('free morning after pill online', 'morning after pill free online delivery')",free morning after pill online,morning after pill free online delivery,3,4,google,2026-03-12 19:43:49.067485,abortion pill online free,morning after pill free online uk,morning after uk,delivery +abortion,"('free morning after pill online', 'can i get the morning after pill free online')",free morning after pill online,can i get the morning after pill free online,4,4,google,2026-03-12 19:43:49.067485,abortion pill online free,morning after pill free online uk,morning after uk,can i get the +abortion,"('free morning after pill online', 'how to get free morning after pill uk')",free morning after pill online,how to get free morning after pill uk,5,4,google,2026-03-12 19:43:49.067485,abortion pill online free,morning after pill free online uk,morning after uk,how to get uk +abortion,"('free morning after pill online', 'which pharmacies do free morning after pill')",free morning after pill online,which pharmacies do free morning after pill,6,4,google,2026-03-12 19:43:49.067485,abortion pill online free,morning after pill free online uk,morning after uk,which pharmacies do +abortion,"('free morning after pill online', 'morning after pill free at planned parenthood')",free morning after pill online,morning after pill free at planned parenthood,7,4,google,2026-03-12 19:43:49.067485,abortion pill online free,morning after pill free online uk,morning after uk,at planned parenthood +abortion,"('free morning after pill pharmacy', 'free morning after pill chemist near me')",free morning after pill pharmacy,free morning after pill chemist near me,1,4,google,2026-03-12 19:43:50.081733,abortion pill online free,morning after pill free online uk,pharmacy,chemist near me +abortion,"('free morning after pill pharmacy', 'free morning after pill tesco pharmacy')",free morning after pill pharmacy,free morning after pill tesco pharmacy,2,4,google,2026-03-12 19:43:50.081733,abortion pill online free,morning after pill free online uk,pharmacy,tesco +abortion,"('free morning after pill pharmacy', 'free morning after pill lloyds pharmacy')",free morning after pill pharmacy,free morning after pill lloyds pharmacy,3,4,google,2026-03-12 19:43:50.081733,abortion pill online free,morning after pill free online uk,pharmacy,lloyds +abortion,"('free morning after pill pharmacy', 'free morning after pill manchester pharmacy')",free morning after pill pharmacy,free morning after pill manchester pharmacy,4,4,google,2026-03-12 19:43:50.081733,abortion pill online free,morning after pill free online uk,pharmacy,manchester +abortion,"('free morning after pill pharmacy', 'free morning after pill uk pharmacies')",free morning after pill pharmacy,free morning after pill uk pharmacies,5,4,google,2026-03-12 19:43:50.081733,abortion pill online free,morning after pill free online uk,pharmacy,uk pharmacies +abortion,"('free morning after pill pharmacy', 'pharmacy2u free morning after pill')",free morning after pill pharmacy,pharmacy2u free morning after pill,6,4,google,2026-03-12 19:43:50.081733,abortion pill online free,morning after pill free online uk,pharmacy,pharmacy2u +abortion,"('free morning after pill pharmacy', 'boots pharmacy free morning after pill')",free morning after pill pharmacy,boots pharmacy free morning after pill,7,4,google,2026-03-12 19:43:50.081733,abortion pill online free,morning after pill free online uk,pharmacy,boots +abortion,"('free morning after pill pharmacy', 'asda pharmacy free morning after pill')",free morning after pill pharmacy,asda pharmacy free morning after pill,8,4,google,2026-03-12 19:43:50.081733,abortion pill online free,morning after pill free online uk,pharmacy,asda +abortion,"('free morning after pill pharmacy', 'well pharmacy free morning after pill')",free morning after pill pharmacy,well pharmacy free morning after pill,9,4,google,2026-03-12 19:43:50.081733,abortion pill online free,morning after pill free online uk,pharmacy,well +abortion,"('morning after pill free uk news', 'is the morning after pill free uk')",morning after pill free uk news,is the morning after pill free uk,1,4,google,2026-03-12 19:43:51.122906,abortion pill online free,morning after pill for free uk,news,is the +abortion,"('morning after pill free uk news', 'can i get the morning after pill for free uk')",morning after pill free uk news,can i get the morning after pill for free uk,2,4,google,2026-03-12 19:43:51.122906,abortion pill online free,morning after pill for free uk,news,can i get the for +abortion,"('morning after pill free uk news', 'how much is the morning after pill uk')",morning after pill free uk news,how much is the morning after pill uk,3,4,google,2026-03-12 19:43:51.122906,abortion pill online free,morning after pill for free uk,news,how much is the +abortion,"('morning after pill free uk news', 'is morning after pill free on nhs')",morning after pill free uk news,is morning after pill free on nhs,4,4,google,2026-03-12 19:43:51.122906,abortion pill online free,morning after pill for free uk,news,is on nhs +abortion,"('morning after pill free uk news', 'free morning after pill nyc')",morning after pill free uk news,free morning after pill nyc,5,4,google,2026-03-12 19:43:51.122906,abortion pill online free,morning after pill for free uk,news,nyc +abortion,"('morning after pill free uk news', 'free morning.after.pill')",morning after pill free uk news,free morning.after.pill,6,4,google,2026-03-12 19:43:51.122906,abortion pill online free,morning after pill for free uk,news,morning.after.pill +abortion,"('morning after pill free uk news', 'morning after pill free at planned parenthood')",morning after pill free uk news,morning after pill free at planned parenthood,7,4,google,2026-03-12 19:43:51.122906,abortion pill online free,morning after pill for free uk,news,at planned parenthood +abortion,"('morning after pill now free uk', 'morning after pill now free in england')",morning after pill now free uk,morning after pill now free in england,1,4,google,2026-03-12 19:43:52.052215,abortion pill online free,morning after pill for free uk,now,in england +abortion,"('morning after pill now free uk', 'is the morning after pill free uk')",morning after pill now free uk,is the morning after pill free uk,2,4,google,2026-03-12 19:43:52.052215,abortion pill online free,morning after pill for free uk,now,is the +abortion,"('morning after pill now free uk', 'how to get free morning after pill uk')",morning after pill now free uk,how to get free morning after pill uk,3,4,google,2026-03-12 19:43:52.052215,abortion pill online free,morning after pill for free uk,now,how to get +abortion,"('morning after pill now free uk', 'free morning after pill nhs pharmacy')",morning after pill now free uk,free morning after pill nhs pharmacy,4,4,google,2026-03-12 19:43:52.052215,abortion pill online free,morning after pill for free uk,now,nhs pharmacy +abortion,"('morning after pill now free uk', 'free morning after pill pharmacies')",morning after pill now free uk,free morning after pill pharmacies,5,4,google,2026-03-12 19:43:52.052215,abortion pill online free,morning after pill for free uk,now,pharmacies +abortion,"('morning after pill now free uk', 'morning after pill free at planned parenthood')",morning after pill now free uk,morning after pill free at planned parenthood,6,4,google,2026-03-12 19:43:52.052215,abortion pill online free,morning after pill for free uk,now,at planned parenthood +abortion,"('morning after pill free england', 'morning after pill free uk')",morning after pill free england,morning after pill free uk,1,4,google,2026-03-12 19:43:53.048138,abortion pill online free,morning after pill for free uk,england,uk +abortion,"('morning after pill free england', 'morning after pill free uk news')",morning after pill free england,morning after pill free uk news,2,4,google,2026-03-12 19:43:53.048138,abortion pill online free,morning after pill for free uk,england,uk news +abortion,"('morning after pill free england', 'morning after pill free online uk')",morning after pill free england,morning after pill free online uk,3,4,google,2026-03-12 19:43:53.048138,abortion pill online free,morning after pill for free uk,england,online uk +abortion,"('morning after pill free england', 'morning after pill now free uk')",morning after pill free england,morning after pill now free uk,4,4,google,2026-03-12 19:43:53.048138,abortion pill online free,morning after pill for free uk,england,now uk +abortion,"('morning after pill free england', 'day after pill uk free')",morning after pill free england,day after pill uk free,5,4,google,2026-03-12 19:43:53.048138,abortion pill online free,morning after pill for free uk,england,day uk +abortion,"('morning after pill free england', 'morning after pill now free in england')",morning after pill free england,morning after pill now free in england,6,4,google,2026-03-12 19:43:53.048138,abortion pill online free,morning after pill for free uk,england,now in +abortion,"('morning after pill free england', 'is the morning after pill free uk boots')",morning after pill free england,is the morning after pill free uk boots,7,4,google,2026-03-12 19:43:53.048138,abortion pill online free,morning after pill for free uk,england,is the uk boots +abortion,"('morning after pill free england', 'england makes morning after pill free at pharmacies')",morning after pill free england,england makes morning after pill free at pharmacies,8,4,google,2026-03-12 19:43:53.048138,abortion pill online free,morning after pill for free uk,england,makes at pharmacies +abortion,"('morning after pill free england', 'can you get the morning after pill free in england')",morning after pill free england,can you get the morning after pill free in england,9,4,google,2026-03-12 19:43:53.048138,abortion pill online free,morning after pill for free uk,england,can you get the in +abortion,"('can you get morning after pill free uk', 'can you get the morning after pill free in england')",can you get morning after pill free uk,can you get the morning after pill free in england,1,4,google,2026-03-12 19:43:54.464966,abortion pill online free,morning after pill for free uk,can you get,the in england +abortion,"('can you get morning after pill free uk', 'is the morning after pill free uk')",can you get morning after pill free uk,is the morning after pill free uk,2,4,google,2026-03-12 19:43:54.464966,abortion pill online free,morning after pill for free uk,can you get,is the +abortion,"('can you get morning after pill free uk', 'is morning after pill free on nhs')",can you get morning after pill free uk,is morning after pill free on nhs,3,4,google,2026-03-12 19:43:54.464966,abortion pill online free,morning after pill for free uk,can you get,is on nhs +abortion,"('can you get morning after pill free uk', 'can you get morning after pill in america')",can you get morning after pill free uk,can you get morning after pill in america,4,4,google,2026-03-12 19:43:54.464966,abortion pill online free,morning after pill for free uk,can you get,in america +abortion,"('can you get morning after pill free uk', 'can you get morning after pill in ohio')",can you get morning after pill free uk,can you get morning after pill in ohio,5,4,google,2026-03-12 19:43:54.464966,abortion pill online free,morning after pill for free uk,can you get,in ohio +abortion,"('day after pill uk free', 'morning after pill uk free')",day after pill uk free,morning after pill uk free,1,4,google,2026-03-12 19:43:55.612673,abortion pill online free,morning after pill for free uk,day,morning +abortion,"('day after pill uk free', 'morning after pill nhs free')",day after pill uk free,morning after pill nhs free,2,4,google,2026-03-12 19:43:55.612673,abortion pill online free,morning after pill for free uk,day,morning nhs +abortion,"('day after pill uk free', 'morning after pill boots free')",day after pill uk free,morning after pill boots free,3,4,google,2026-03-12 19:43:55.612673,abortion pill online free,morning after pill for free uk,day,morning boots +abortion,"('day after pill uk free', 'morning after pill england free')",day after pill uk free,morning after pill england free,4,4,google,2026-03-12 19:43:55.612673,abortion pill online free,morning after pill for free uk,day,morning england +abortion,"('day after pill uk free', 'morning after pill free uk news')",day after pill uk free,morning after pill free uk news,5,4,google,2026-03-12 19:43:55.612673,abortion pill online free,morning after pill for free uk,day,morning news +abortion,"('day after pill uk free', 'morning after pill now free uk')",day after pill uk free,morning after pill now free uk,6,4,google,2026-03-12 19:43:55.612673,abortion pill online free,morning after pill for free uk,day,morning now +abortion,"('day after pill uk free', 'is the morning after pill free in boots uk')",day after pill uk free,is the morning after pill free in boots uk,7,4,google,2026-03-12 19:43:55.612673,abortion pill online free,morning after pill for free uk,day,is the morning in boots +abortion,"('day after pill uk free', 'how to get free morning after pill uk')",day after pill uk free,how to get free morning after pill uk,8,4,google,2026-03-12 19:43:55.612673,abortion pill online free,morning after pill for free uk,day,how to get morning +abortion,"('day after pill uk free', 'day after pill coupon')",day after pill uk free,day after pill coupon,9,4,google,2026-03-12 19:43:55.612673,abortion pill online free,morning after pill for free uk,day,coupon +abortion,"('free morning after pill uk pharmacies', 'free morning after pill nhs pharmacy')",free morning after pill uk pharmacies,free morning after pill nhs pharmacy,1,4,google,2026-03-12 19:43:56.939077,abortion pill online free,morning after pill for free uk,pharmacies,nhs pharmacy +abortion,"('free morning after pill uk pharmacies', 'which pharmacies do free morning after pill')",free morning after pill uk pharmacies,which pharmacies do free morning after pill,2,4,google,2026-03-12 19:43:56.939077,abortion pill online free,morning after pill for free uk,pharmacies,which do +abortion,"('free morning after pill uk pharmacies', 'how to get free morning after pill uk')",free morning after pill uk pharmacies,how to get free morning after pill uk,3,4,google,2026-03-12 19:43:56.939077,abortion pill online free,morning after pill for free uk,pharmacies,how to get +abortion,"('free morning after pill uk pharmacies', 'do pharmacies give free morning after pill')",free morning after pill uk pharmacies,do pharmacies give free morning after pill,4,4,google,2026-03-12 19:43:56.939077,abortion pill online free,morning after pill for free uk,pharmacies,do give +abortion,"('free morning after pill uk pharmacies', 'free morning after pill pharmacies')",free morning after pill uk pharmacies,free morning after pill pharmacies,5,4,google,2026-03-12 19:43:56.939077,abortion pill online free,morning after pill for free uk,pharmacies,pharmacies +abortion,"('is the morning after pill free uk boots', 'is the morning after pill free at boots')",is the morning after pill free uk boots,is the morning after pill free at boots,1,4,google,2026-03-12 19:43:58.373863,abortion pill online free,morning after pill for free uk,is the boots,at +abortion,"('is the morning after pill free uk boots', 'does boots give morning after pill free')",is the morning after pill free uk boots,does boots give morning after pill free,2,4,google,2026-03-12 19:43:58.373863,abortion pill online free,morning after pill for free uk,is the boots,does give +abortion,"('free morning after pill uk reddit', 'can i get the morning after pill for free uk')",free morning after pill uk reddit,can i get the morning after pill for free uk,1,4,google,2026-03-12 19:43:59.392728,abortion pill online free,morning after pill for free uk,reddit,can i get the for +abortion,"('free morning after pill uk reddit', 'is the morning after pill free uk')",free morning after pill uk reddit,is the morning after pill free uk,2,4,google,2026-03-12 19:43:59.392728,abortion pill online free,morning after pill for free uk,reddit,is the +abortion,"('free morning after pill uk reddit', 'how to get free morning after pill uk')",free morning after pill uk reddit,how to get free morning after pill uk,3,4,google,2026-03-12 19:43:59.392728,abortion pill online free,morning after pill for free uk,reddit,how to get +abortion,"('free morning after pill uk reddit', 'free morning after pill nyc')",free morning after pill uk reddit,free morning after pill nyc,4,4,google,2026-03-12 19:43:59.392728,abortion pill online free,morning after pill for free uk,reddit,nyc +abortion,"('free morning after pill uk reddit', 'free morning after pills near me')",free morning after pill uk reddit,free morning after pills near me,5,4,google,2026-03-12 19:43:59.392728,abortion pill online free,morning after pill for free uk,reddit,pills near me +abortion,"('free morning after pill uk reddit', 'best morning after pill reddit')",free morning after pill uk reddit,best morning after pill reddit,6,4,google,2026-03-12 19:43:59.392728,abortion pill online free,morning after pill for free uk,reddit,best +abortion,"('free morning after pill nhs pharmacy', 'which pharmacies do free morning after pill')",free morning after pill nhs pharmacy,which pharmacies do free morning after pill,1,4,google,2026-03-12 19:44:01.998698,abortion pill online free,morning after pill for free nhs,pharmacy,which pharmacies do +abortion,"('free morning after pill nhs pharmacy', 'how to get free morning after pill uk')",free morning after pill nhs pharmacy,how to get free morning after pill uk,2,4,google,2026-03-12 19:44:01.998698,abortion pill online free,morning after pill for free nhs,pharmacy,how to get uk +abortion,"('free morning after pill nhs pharmacy', 'is the morning after pill free uk')",free morning after pill nhs pharmacy,is the morning after pill free uk,3,4,google,2026-03-12 19:44:01.998698,abortion pill online free,morning after pill for free nhs,pharmacy,is the uk +abortion,"('abortion pill online low income', 'abortion pill online low cost')",abortion pill online low income,abortion pill online low cost,1,4,google,2026-03-12 19:44:02.987670,abortion pill online cost,abortion pill online low cost,income,cost +abortion,"('abortion pill online low income', 'abortion pill near me online')",abortion pill online low income,abortion pill near me online,2,4,google,2026-03-12 19:44:02.987670,abortion pill online cost,abortion pill online low cost,income,near me +abortion,"('abortion pill online low income', 'abortion pill online with insurance')",abortion pill online low income,abortion pill online with insurance,3,4,google,2026-03-12 19:44:02.987670,abortion pill online cost,abortion pill online low cost,income,with insurance +abortion,"('morning after pill price clicks online', 'how much do morning after pill cost at clicks')",morning after pill price clicks online,how much do morning after pill cost at clicks,1,4,google,2026-03-12 19:44:04.166432,abortion pill online cost,morning after pill price online,clicks,how much do cost at +abortion,"('morning after pill price clicks online', 'morning after pill price walgreens')",morning after pill price clicks online,morning after pill price walgreens,2,4,google,2026-03-12 19:44:04.166432,abortion pill online cost,morning after pill price online,clicks,walgreens +abortion,"('morning after pill price clicks online', 'morning after pill price cvs')",morning after pill price clicks online,morning after pill price cvs,3,4,google,2026-03-12 19:44:04.166432,abortion pill online cost,morning after pill price online,clicks,cvs +abortion,"('morning after pill price clicks online', 'morning after pill price walmart')",morning after pill price clicks online,morning after pill price walmart,4,4,google,2026-03-12 19:44:04.166432,abortion pill online cost,morning after pill price online,clicks,walmart +abortion,"('morning after pill price clicks online', 'morning after pill cost walgreens')",morning after pill price clicks online,morning after pill cost walgreens,5,4,google,2026-03-12 19:44:04.166432,abortion pill online cost,morning after pill price online,clicks,cost walgreens +abortion,"('how much do morning after pill cost at clicks', 'how much does a morning after pill cost at clicks pharmacy')",how much do morning after pill cost at clicks,how much does a morning after pill cost at clicks pharmacy,1,4,google,2026-03-12 19:44:05.369835,abortion pill online cost,morning after pill price online,how much do cost at clicks,does a pharmacy +abortion,"('how much do morning after pill cost at clicks', 'how much do morning after pills cost at dischem')",how much do morning after pill cost at clicks,how much do morning after pills cost at dischem,2,4,google,2026-03-12 19:44:05.369835,abortion pill online cost,morning after pill price online,how much do cost at clicks,pills dischem +abortion,"('how much do morning after pill cost at clicks', 'how much is morning after pill at clicks in south africa')",how much do morning after pill cost at clicks,how much is morning after pill at clicks in south africa,3,4,google,2026-03-12 19:44:05.369835,abortion pill online cost,morning after pill price online,how much do cost at clicks,is in south africa +abortion,"('how much do morning after pill cost at clicks', 'how much is morning after pill at clicks in rands')",how much do morning after pill cost at clicks,how much is morning after pill at clicks in rands,4,4,google,2026-03-12 19:44:05.369835,abortion pill online cost,morning after pill price online,how much do cost at clicks,is in rands +abortion,"('how much do morning after pill cost at clicks', 'how much is morning after pill at clicks now')",how much do morning after pill cost at clicks,how much is morning after pill at clicks now,5,4,google,2026-03-12 19:44:05.369835,abortion pill online cost,morning after pill price online,how much do cost at clicks,is now +abortion,"('how much do morning after pill cost at clicks', 'how much is morning after pill at clicks 2023')",how much do morning after pill cost at clicks,how much is morning after pill at clicks 2023,6,4,google,2026-03-12 19:44:05.369835,abortion pill online cost,morning after pill price online,how much do cost at clicks,is 2023 +abortion,"('how much do morning after pill cost at clicks', 'how much does a plan b pill cost at clicks')",how much do morning after pill cost at clicks,how much does a plan b pill cost at clicks,7,4,google,2026-03-12 19:44:05.369835,abortion pill online cost,morning after pill price online,how much do cost at clicks,does a plan b +abortion,"('how much do morning after pill cost at clicks', 'how much are morning after pills at clicks 2022')",how much do morning after pill cost at clicks,how much are morning after pills at clicks 2022,8,4,google,2026-03-12 19:44:05.369835,abortion pill online cost,morning after pill price online,how much do cost at clicks,are pills 2022 +abortion,"('how much do morning after pill cost at clicks', 'how much is morning after pill at click')",how much do morning after pill cost at clicks,how much is morning after pill at click,9,4,google,2026-03-12 19:44:05.369835,abortion pill online cost,morning after pill price online,how much do cost at clicks,is click +abortion,"('how much does morning after pills cost at clicks', 'how much does a morning after pill cost at clicks pharmacy')",how much does morning after pills cost at clicks,how much does a morning after pill cost at clicks pharmacy,1,4,google,2026-03-12 19:44:06.766130,abortion pill online cost,morning after pill price online,how much does pills cost at clicks,a pill pharmacy +abortion,"('how much does morning after pills cost at clicks', 'how much are morning after pills at clicks 2025')",how much does morning after pills cost at clicks,how much are morning after pills at clicks 2025,2,4,google,2026-03-12 19:44:06.766130,abortion pill online cost,morning after pill price online,how much does pills cost at clicks,are 2025 +abortion,"('how much does morning after pills cost at clicks', 'how much are morning after pills at clicks in south africa')",how much does morning after pills cost at clicks,how much are morning after pills at clicks in south africa,3,4,google,2026-03-12 19:44:06.766130,abortion pill online cost,morning after pill price online,how much does pills cost at clicks,are in south africa +abortion,"('how much does morning after pills cost at clicks', 'how much are morning after pills at clicks in rands')",how much does morning after pills cost at clicks,how much are morning after pills at clicks in rands,4,4,google,2026-03-12 19:44:06.766130,abortion pill online cost,morning after pill price online,how much does pills cost at clicks,are in rands +abortion,"('how much does morning after pills cost at clicks', 'how much are morning after pills at clicks in sa')",how much does morning after pills cost at clicks,how much are morning after pills at clicks in sa,5,4,google,2026-03-12 19:44:06.766130,abortion pill online cost,morning after pill price online,how much does pills cost at clicks,are in sa +abortion,"('how much does morning after pills cost at clicks', 'how much are morning after pills at clicks 2022')",how much does morning after pills cost at clicks,how much are morning after pills at clicks 2022,6,4,google,2026-03-12 19:44:06.766130,abortion pill online cost,morning after pill price online,how much does pills cost at clicks,are 2022 +abortion,"('how much does morning after pills cost at clicks', 'how much does a plan b pill cost at clicks')",how much does morning after pills cost at clicks,how much does a plan b pill cost at clicks,7,4,google,2026-03-12 19:44:06.766130,abortion pill online cost,morning after pill price online,how much does pills cost at clicks,a plan b pill +abortion,"('how much does morning after pills cost at clicks', 'how much is the cheapest morning after pill at clicks')",how much does morning after pills cost at clicks,how much is the cheapest morning after pill at clicks,8,4,google,2026-03-12 19:44:06.766130,abortion pill online cost,morning after pill price online,how much does pills cost at clicks,is the cheapest pill +abortion,"('how much does morning after pills cost at clicks', 'how much is the 5 day morning after pill at clicks')",how much does morning after pills cost at clicks,how much is the 5 day morning after pill at clicks,9,4,google,2026-03-12 19:44:06.766130,abortion pill online cost,morning after pill price online,how much does pills cost at clicks,is the 5 day pill +abortion,"('morning after pill price at clicks', 'morning after pill price at clicks price')",morning after pill price at clicks,morning after pill price at clicks price,1,4,google,2026-03-12 19:44:07.677212,abortion pill online cost,morning after pill price online,at clicks,at clicks +abortion,"('morning after pill price at clicks', 'morning after pill price at clicks south africa')",morning after pill price at clicks,morning after pill price at clicks south africa,2,4,google,2026-03-12 19:44:07.677212,abortion pill online cost,morning after pill price online,at clicks,south africa +abortion,"('morning after pill price at clicks', 'morning after pill price at clicks in rands')",morning after pill price at clicks,morning after pill price at clicks in rands,3,4,google,2026-03-12 19:44:07.677212,abortion pill online cost,morning after pill price online,at clicks,in rands +abortion,"('morning after pill price at clicks', 'morning after pill price at clicks now')",morning after pill price at clicks,morning after pill price at clicks now,4,4,google,2026-03-12 19:44:07.677212,abortion pill online cost,morning after pill price online,at clicks,now +abortion,"('morning after pill price at clicks', 'morning after pill price at clicks picture')",morning after pill price at clicks,morning after pill price at clicks picture,5,4,google,2026-03-12 19:44:07.677212,abortion pill online cost,morning after pill price online,at clicks,picture +abortion,"('morning after pill price at clicks', 'morning after pill price at clicks 2025 south africa')",morning after pill price at clicks,morning after pill price at clicks 2025 south africa,6,4,google,2026-03-12 19:44:07.677212,abortion pill online cost,morning after pill price online,at clicks,2025 south africa +abortion,"('morning after pill price at clicks', 'morning after pill price at clicks 2020')",morning after pill price at clicks,morning after pill price at clicks 2020,7,4,google,2026-03-12 19:44:07.677212,abortion pill online cost,morning after pill price online,at clicks,2020 +abortion,"('morning after pill price at clicks', 'morning after pill price at clicks 2022')",morning after pill price at clicks,morning after pill price at clicks 2022,8,4,google,2026-03-12 19:44:07.677212,abortion pill online cost,morning after pill price online,at clicks,2022 +abortion,"('morning after pill price at clicks', 'morning after pill price at clicks 2023 dis chem')",morning after pill price at clicks,morning after pill price at clicks 2023 dis chem,9,4,google,2026-03-12 19:44:07.677212,abortion pill online cost,morning after pill price online,at clicks,2023 dis chem +abortion,"('morning after pill price walgreens', 'day after pill walgreens price')",morning after pill price walgreens,day after pill walgreens price,1,4,google,2026-03-12 19:44:08.563395,abortion pill online cost,morning after pill price online,walgreens,day +abortion,"('morning after pill price walgreens', 'does walgreens sell morning after pill')",morning after pill price walgreens,does walgreens sell morning after pill,2,4,google,2026-03-12 19:44:08.563395,abortion pill online cost,morning after pill price online,walgreens,does sell +abortion,"('morning after pill price walgreens', 'how much is the morning after pill at walgreens')",morning after pill price walgreens,how much is the morning after pill at walgreens,3,4,google,2026-03-12 19:44:08.563395,abortion pill online cost,morning after pill price online,walgreens,how much is the at +abortion,"('morning after pill price walgreens', 'how much is generic plan b at walgreens')",morning after pill price walgreens,how much is generic plan b at walgreens,4,4,google,2026-03-12 19:44:08.563395,abortion pill online cost,morning after pill price online,walgreens,how much is generic plan b at +abortion,"('morning after pill price walgreens', 'how much is plan b from walgreens')",morning after pill price walgreens,how much is plan b from walgreens,5,4,google,2026-03-12 19:44:08.563395,abortion pill online cost,morning after pill price online,walgreens,how much is plan b from +abortion,"('morning after pill price walgreens', 'morning after pill price walmart')",morning after pill price walgreens,morning after pill price walmart,6,4,google,2026-03-12 19:44:08.563395,abortion pill online cost,morning after pill price online,walgreens,walmart +abortion,"('morning after pill price walgreens', 'morning after pill price cvs')",morning after pill price walgreens,morning after pill price cvs,7,4,google,2026-03-12 19:44:08.563395,abortion pill online cost,morning after pill price online,walgreens,cvs +abortion,"('morning after pill price walgreens', 'morning after pill cost walgreens')",morning after pill price walgreens,morning after pill cost walgreens,8,4,google,2026-03-12 19:44:08.563395,abortion pill online cost,morning after pill price online,walgreens,cost +abortion,"('morning after pill price walmart', 'morning after pill at walmart')",morning after pill price walmart,morning after pill at walmart,1,4,google,2026-03-12 19:44:09.865071,abortion pill online cost,morning after pill price online,walmart,at +abortion,"('morning after pill price walmart', 'day after pill at walmart')",morning after pill price walmart,day after pill at walmart,2,4,google,2026-03-12 19:44:09.865071,abortion pill online cost,morning after pill price online,walmart,day at +abortion,"('morning after pill price walmart', 'how much is the morning after pill at walmart')",morning after pill price walmart,how much is the morning after pill at walmart,3,4,google,2026-03-12 19:44:09.865071,abortion pill online cost,morning after pill price online,walmart,how much is the at +abortion,"('morning after pill price walmart', 'does walmart sell the morning after pill')",morning after pill price walmart,does walmart sell the morning after pill,4,4,google,2026-03-12 19:44:09.865071,abortion pill online cost,morning after pill price online,walmart,does sell the +abortion,"('morning after pill price walmart', 'morning after pill price walgreens')",morning after pill price walmart,morning after pill price walgreens,5,4,google,2026-03-12 19:44:09.865071,abortion pill online cost,morning after pill price online,walmart,walgreens +abortion,"('morning after pill price walmart', 'morning after pill cost walmart')",morning after pill price walmart,morning after pill cost walmart,6,4,google,2026-03-12 19:44:09.865071,abortion pill online cost,morning after pill price online,walmart,cost +abortion,"('morning after pill price cvs', 'day after pill cvs price')",morning after pill price cvs,day after pill cvs price,1,4,google,2026-03-12 19:44:10.949641,abortion pill online cost,morning after pill price online,cvs,day +abortion,"('morning after pill price cvs', 'does cvs sell morning after pill')",morning after pill price cvs,does cvs sell morning after pill,2,4,google,2026-03-12 19:44:10.949641,abortion pill online cost,morning after pill price online,cvs,does sell +abortion,"('morning after pill price cvs', 'how much is the morning after pill at cvs')",morning after pill price cvs,how much is the morning after pill at cvs,3,4,google,2026-03-12 19:44:10.949641,abortion pill online cost,morning after pill price online,cvs,how much is the at +abortion,"('morning after pill price cvs', 'morning after pill cost cvs')",morning after pill price cvs,morning after pill cost cvs,4,4,google,2026-03-12 19:44:10.949641,abortion pill online cost,morning after pill price online,cvs,cost +abortion,"('morning after pill price cvs', 'morning after pill cvs coupon')",morning after pill price cvs,morning after pill cvs coupon,5,4,google,2026-03-12 19:44:10.949641,abortion pill online cost,morning after pill price online,cvs,coupon +abortion,"('morning after pill cost walgreens', 'how much is the morning after pill at walgreens')",morning after pill cost walgreens,how much is the morning after pill at walgreens,1,4,google,2026-03-12 19:44:12.368994,abortion pill online cost,morning after pill price online,cost walgreens,how much is the at +abortion,"('morning after pill cost walgreens', 'does walgreens sell morning after pill')",morning after pill cost walgreens,does walgreens sell morning after pill,2,4,google,2026-03-12 19:44:12.368994,abortion pill online cost,morning after pill price online,cost walgreens,does sell +abortion,"('morning after pill cost walgreens', 'how much is plan b at walgreens')",morning after pill cost walgreens,how much is plan b at walgreens,3,4,google,2026-03-12 19:44:12.368994,abortion pill online cost,morning after pill price online,cost walgreens,how much is plan b at +abortion,"('morning after pill cost walgreens', 'morning after pill cost walmart')",morning after pill cost walgreens,morning after pill cost walmart,4,4,google,2026-03-12 19:44:12.368994,abortion pill online cost,morning after pill price online,cost walgreens,walmart +abortion,"('morning after pill cost walgreens', 'morning after pill cost cvs')",morning after pill cost walgreens,morning after pill cost cvs,5,4,google,2026-03-12 19:44:12.368994,abortion pill online cost,morning after pill price online,cost walgreens,cvs +abortion,"('morning after pill cost walgreens', 'morning after pill walgreens price')",morning after pill cost walgreens,morning after pill walgreens price,6,4,google,2026-03-12 19:44:12.368994,abortion pill online cost,morning after pill price online,cost walgreens,price +abortion,"('abortion pill near me over the counter', 'morning after pill near me over the counter')",abortion pill near me over the counter,morning after pill near me over the counter,1,4,google,2026-03-12 19:44:13.336379,abortion pill online cost,abortion pill near me online,over the counter,morning after +abortion,"('abortion pill near me over the counter', 'can you buy misoprostol over the counter at walmart')",abortion pill near me over the counter,can you buy misoprostol over the counter at walmart,2,4,google,2026-03-12 19:44:13.336379,abortion pill online cost,abortion pill near me online,over the counter,can you buy misoprostol at walmart +abortion,"('abortion pill near me over the counter', 'abortion pill near me same day')",abortion pill near me over the counter,abortion pill near me same day,3,4,google,2026-03-12 19:44:13.336379,abortion pill online cost,abortion pill near me online,over the counter,same day +abortion,"('abortion pill near me same day', 'abortion pill near me online')",abortion pill near me same day,abortion pill near me online,1,4,google,2026-03-12 19:44:14.426291,abortion pill online cost,abortion pill near me online,same day,online +abortion,"('abortion pill near me same day', 'abortion pill near me over the counter')",abortion pill near me same day,abortion pill near me over the counter,2,4,google,2026-03-12 19:44:14.426291,abortion pill online cost,abortion pill near me online,same day,over the counter +abortion,"('morning after pill online prescription', 'morning after pill online pharmacy')",morning after pill online prescription,morning after pill online pharmacy,1,4,google,2026-03-12 19:44:15.827573,abortion pill online cost,abortion pill online prescription,morning after,pharmacy +abortion,"('morning after pill online prescription', 'does morning after pill need prescription')",morning after pill online prescription,does morning after pill need prescription,2,4,google,2026-03-12 19:44:15.827573,abortion pill online cost,abortion pill online prescription,morning after,does need +abortion,"('morning after pill online prescription', 'does the morning after pill require a prescription')",morning after pill online prescription,does the morning after pill require a prescription,3,4,google,2026-03-12 19:44:15.827573,abortion pill online cost,abortion pill online prescription,morning after,does the require a +abortion,"('morning after pill online prescription', 'morning after pill prescription only')",morning after pill online prescription,morning after pill prescription only,4,4,google,2026-03-12 19:44:15.827573,abortion pill online cost,abortion pill online prescription,morning after,only +abortion,"('morning after pill online prescription', 'morning after pill otc walgreens')",morning after pill online prescription,morning after pill otc walgreens,5,4,google,2026-03-12 19:44:15.827573,abortion pill online cost,abortion pill online prescription,morning after,otc walgreens +abortion,"('morning after pill online prescription', 'morning after pill on amazon')",morning after pill online prescription,morning after pill on amazon,6,4,google,2026-03-12 19:44:15.827573,abortion pill online cost,abortion pill online prescription,morning after,on amazon +abortion,"('morning after pill online prescription', 'morning after pill otc')",morning after pill online prescription,morning after pill otc,7,4,google,2026-03-12 19:44:15.827573,abortion pill online cost,abortion pill online prescription,morning after,otc +abortion,"('abortion pill prescribed online', 'morning after pill prescription online')",abortion pill prescribed online,morning after pill prescription online,1,4,google,2026-03-12 19:44:17.001131,abortion pill online cost,abortion pill online prescription,prescribed,morning after prescription +abortion,"('abortion pill prescribed online', 'abortion pill near me online')",abortion pill prescribed online,abortion pill near me online,2,4,google,2026-03-12 19:44:17.001131,abortion pill online cost,abortion pill online prescription,prescribed,near me +abortion,"('abortion pill prescribed online', 'abortion pill prescriber')",abortion pill prescribed online,abortion pill prescriber,3,4,google,2026-03-12 19:44:17.001131,abortion pill online cost,abortion pill online prescription,prescribed,prescriber +abortion,"('morning after pill online pharmacy', 'boots online pharmacy morning after pill')",morning after pill online pharmacy,boots online pharmacy morning after pill,1,4,google,2026-03-12 19:44:18.484696,abortion pill online cost,abortion pill online prescription,morning after pharmacy,boots +abortion,"('morning after pill online pharmacy', 'asda online pharmacy morning after pill')",morning after pill online pharmacy,asda online pharmacy morning after pill,2,4,google,2026-03-12 19:44:18.484696,abortion pill online cost,abortion pill online prescription,morning after pharmacy,asda +abortion,"('morning after pill online pharmacy', 'superdrug online pharmacy morning after pill')",morning after pill online pharmacy,superdrug online pharmacy morning after pill,3,4,google,2026-03-12 19:44:18.484696,abortion pill online cost,abortion pill online prescription,morning after pharmacy,superdrug +abortion,"('morning after pill online pharmacy', 'lloydspharmacy online morning after pill')",morning after pill online pharmacy,lloydspharmacy online morning after pill,4,4,google,2026-03-12 19:44:18.484696,abortion pill online cost,abortion pill online prescription,morning after pharmacy,lloydspharmacy +abortion,"('morning after pill online pharmacy', 'online pharmacy uk morning after pill')",morning after pill online pharmacy,online pharmacy uk morning after pill,5,4,google,2026-03-12 19:44:18.484696,abortion pill online cost,abortion pill online prescription,morning after pharmacy,uk +abortion,"('morning after pill online pharmacy', 'morning after pill otc walgreens')",morning after pill online pharmacy,morning after pill otc walgreens,6,4,google,2026-03-12 19:44:18.484696,abortion pill online cost,abortion pill online prescription,morning after pharmacy,otc walgreens +abortion,"('morning after pill online pharmacy', 'morning after pill on amazon')",morning after pill online pharmacy,morning after pill on amazon,7,4,google,2026-03-12 19:44:18.484696,abortion pill online cost,abortion pill online prescription,morning after pharmacy,on amazon +abortion,"('morning after pill online pharmacy', 'morning after pill otc')",morning after pill online pharmacy,morning after pill otc,8,4,google,2026-03-12 19:44:18.484696,abortion pill online cost,abortion pill online prescription,morning after pharmacy,otc +abortion,"('morning after pill online pharmacy', 'morning after pills over the counter')",morning after pill online pharmacy,morning after pills over the counter,9,4,google,2026-03-12 19:44:18.484696,abortion pill online cost,abortion pill online prescription,morning after pharmacy,pills over the counter +abortion,"('abortion pill cost germany', 'morning after pill cost germany')",abortion pill cost germany,morning after pill cost germany,1,4,google,2026-03-12 19:44:19.521175,abortion pill online near me,abortion pill in german online near me,cost germany,morning after +abortion,"('abortion pill cost germany', 'abortion pill in german')",abortion pill cost germany,abortion pill in german,2,4,google,2026-03-12 19:44:19.521175,abortion pill online near me,abortion pill in german online near me,cost germany,in german +abortion,"('abortion pill in german', 'abortion pill in german meme')",abortion pill in german,abortion pill in german meme,1,4,google,2026-03-12 19:44:20.765262,abortion pill online near me,abortion pill in german online near me,in german,meme +abortion,"('abortion pill in german', 'abortion pill in german online')",abortion pill in german,abortion pill in german online,2,4,google,2026-03-12 19:44:20.765262,abortion pill online near me,abortion pill in german online near me,in german,online +abortion,"('abortion pill in german', 'abortion pill in german online price')",abortion pill in german,abortion pill in german online price,3,4,google,2026-03-12 19:44:20.765262,abortion pill online near me,abortion pill in german online near me,in german,online price +abortion,"('abortion pill in german', 'abortion pill in german online near me')",abortion pill in german,abortion pill in german online near me,4,4,google,2026-03-12 19:44:20.765262,abortion pill online near me,abortion pill in german online near me,in german,online near me +abortion,"('abortion pill in german', 'abortion pill in german translation')",abortion pill in german,abortion pill in german translation,5,4,google,2026-03-12 19:44:20.765262,abortion pill online near me,abortion pill in german online near me,in german,translation +abortion,"('abortion pill in german', 'abortion pill in german name')",abortion pill in german,abortion pill in german name,6,4,google,2026-03-12 19:44:20.765262,abortion pill online near me,abortion pill in german online near me,in german,name +abortion,"('abortion pill in german', 'morning after pill in german')",abortion pill in german,morning after pill in german,7,4,google,2026-03-12 19:44:20.765262,abortion pill online near me,abortion pill in german online near me,in german,morning after +abortion,"('abortion pill in german', 'abortion options in germany')",abortion pill in german,abortion options in germany,8,4,google,2026-03-12 19:44:20.765262,abortion pill online near me,abortion pill in german online near me,in german,options germany +abortion,"('abortion pill in german', 'morning after pill in germany name')",abortion pill in german,morning after pill in germany name,9,4,google,2026-03-12 19:44:20.765262,abortion pill online near me,abortion pill in german online near me,in german,morning after germany name +abortion,"('abortion pill cost in mississippi', 'abortion pill in mississippi')",abortion pill cost in mississippi,abortion pill in mississippi,1,4,google,2026-03-12 19:44:21.575859,abortion pill online near me,abortion pill online near mississippi,cost in,cost in +abortion,"('abortion pill cost in mississippi', 'abortion pill in ms')",abortion pill cost in mississippi,abortion pill in ms,2,4,google,2026-03-12 19:44:21.575859,abortion pill online near me,abortion pill online near mississippi,cost in,ms +abortion,"('abortion pill in mississippi', 'abortion clinics in mississippi')",abortion pill in mississippi,abortion clinics in mississippi,1,4,google,2026-03-12 19:44:22.412734,abortion pill online near me,abortion pill online near mississippi,in,clinics +abortion,"('abortion pill in mississippi', 'abortion options in mississippi')",abortion pill in mississippi,abortion options in mississippi,2,4,google,2026-03-12 19:44:22.412734,abortion pill online near me,abortion pill online near mississippi,in,options +abortion,"('abortion pill in mississippi', 'abortion pill cost in mississippi')",abortion pill in mississippi,abortion pill cost in mississippi,3,4,google,2026-03-12 19:44:22.412734,abortion pill online near me,abortion pill online near mississippi,in,cost +abortion,"('abortion pill in mississippi', 'abortion pill legal in mississippi')",abortion pill in mississippi,abortion pill legal in mississippi,4,4,google,2026-03-12 19:44:22.412734,abortion pill online near me,abortion pill online near mississippi,in,legal +abortion,"('abortion pill in mississippi', 'abortion pill online mississippi')",abortion pill in mississippi,abortion pill online mississippi,5,4,google,2026-03-12 19:44:22.412734,abortion pill online near me,abortion pill online near mississippi,in,online +abortion,"('abortion pill in mississippi', 'abortion clinics in jackson mississippi')",abortion pill in mississippi,abortion clinics in jackson mississippi,6,4,google,2026-03-12 19:44:22.412734,abortion pill online near me,abortion pill online near mississippi,in,clinics jackson +abortion,"('abortion pill in mississippi', 'morning after pill mississippi')",abortion pill in mississippi,morning after pill mississippi,7,4,google,2026-03-12 19:44:22.412734,abortion pill online near me,abortion pill online near mississippi,in,morning after +abortion,"('abortion pill in mississippi', 'how to get abortion pill in mississippi')",abortion pill in mississippi,how to get abortion pill in mississippi,8,4,google,2026-03-12 19:44:22.412734,abortion pill online near me,abortion pill online near mississippi,in,how to get +abortion,"('abortion pill in mississippi', 'can you get abortion pill in mississippi')",abortion pill in mississippi,can you get abortion pill in mississippi,9,4,google,2026-03-12 19:44:22.412734,abortion pill online near me,abortion pill online near mississippi,in,can you get +abortion,"('morning after pill amazon uk', 'morning after pill for dogs uk price amazon')",morning after pill amazon uk,morning after pill for dogs uk price amazon,1,4,google,2026-03-12 19:44:23.685795,abortion pill online amazon,morning after pill on amazon,uk,for dogs price +abortion,"('morning after pill amazon uk', 'is the morning after pill free uk')",morning after pill amazon uk,is the morning after pill free uk,2,4,google,2026-03-12 19:44:23.685795,abortion pill online amazon,morning after pill on amazon,uk,is the free +abortion,"('morning after pill amazon uk', 'morning after pill amazon')",morning after pill amazon uk,morning after pill amazon,3,4,google,2026-03-12 19:44:23.685795,abortion pill online amazon,morning after pill on amazon,uk,uk +abortion,"('morning after pill amazon reddit', 'how effective is the morning after pill reddit')",morning after pill amazon reddit,how effective is the morning after pill reddit,1,4,google,2026-03-12 19:44:25.098194,abortion pill online amazon,morning after pill on amazon,reddit,how effective is the +abortion,"('morning after pill amazon reddit', 'amazon plan b reviews')",morning after pill amazon reddit,amazon plan b reviews,2,4,google,2026-03-12 19:44:25.098194,abortion pill online amazon,morning after pill on amazon,reddit,plan b reviews +abortion,"('morning after pill amazon reddit', 'side effects of morning after pill reddit')",morning after pill amazon reddit,side effects of morning after pill reddit,3,4,google,2026-03-12 19:44:25.098194,abortion pill online amazon,morning after pill on amazon,reddit,side effects of +abortion,"('morning after pill amazon reddit', 'morning after pill amazon')",morning after pill amazon reddit,morning after pill amazon,4,4,google,2026-03-12 19:44:25.098194,abortion pill online amazon,morning after pill on amazon,reddit,reddit +abortion,"('morning after pill amazon reddit', 'morning after pill reddit')",morning after pill amazon reddit,morning after pill reddit,5,4,google,2026-03-12 19:44:25.098194,abortion pill online amazon,morning after pill on amazon,reddit,reddit +abortion,"('morning after pill amazon reddit', 'best morning after pill reddit')",morning after pill amazon reddit,best morning after pill reddit,6,4,google,2026-03-12 19:44:25.098194,abortion pill online amazon,morning after pill on amazon,reddit,best +abortion,"('morning after pill amazon reddit', 'morning after reddit')",morning after pill amazon reddit,morning after reddit,7,4,google,2026-03-12 19:44:25.098194,abortion pill online amazon,morning after pill on amazon,reddit,reddit +abortion,"('day after pill amazon', 'morning after pill amazon')",day after pill amazon,morning after pill amazon,1,4,google,2026-03-12 19:44:26.249051,abortion pill online amazon,morning after pill on amazon,day,morning +abortion,"('day after pill amazon', 'morning after pill amazon uk')",day after pill amazon,morning after pill amazon uk,2,4,google,2026-03-12 19:44:26.249051,abortion pill online amazon,morning after pill on amazon,day,morning uk +abortion,"('day after pill amazon', 'morning after pill amazon reddit')",day after pill amazon,morning after pill amazon reddit,3,4,google,2026-03-12 19:44:26.249051,abortion pill online amazon,morning after pill on amazon,day,morning reddit +abortion,"('day after pill amazon', 'ella morning after pill amazon')",day after pill amazon,ella morning after pill amazon,4,4,google,2026-03-12 19:44:26.249051,abortion pill online amazon,morning after pill on amazon,day,ella morning +abortion,"('day after pill amazon', 'when did the day after pill come out')",day after pill amazon,when did the day after pill come out,5,4,google,2026-03-12 19:44:26.249051,abortion pill online amazon,morning after pill on amazon,day,when did the come out +abortion,"('day after pill amazon', 'day after pill over the counter')",day after pill amazon,day after pill over the counter,6,4,google,2026-03-12 19:44:26.249051,abortion pill online amazon,morning after pill on amazon,day,over the counter +abortion,"('day after pill amazon', 'day after pill at walmart')",day after pill amazon,day after pill at walmart,7,4,google,2026-03-12 19:44:26.249051,abortion pill online amazon,morning after pill on amazon,day,at walmart +abortion,"('can you buy morning after pill on amazon', 'can you buy morning after pill from pharmacy')",can you buy morning after pill on amazon,can you buy morning after pill from pharmacy,1,4,google,2026-03-12 19:44:27.747779,abortion pill online amazon,morning after pill on amazon,can you buy,from pharmacy +abortion,"('can you buy morning after pill on amazon', 'can you buy the morning after pill from boots')",can you buy morning after pill on amazon,can you buy the morning after pill from boots,2,4,google,2026-03-12 19:44:27.747779,abortion pill online amazon,morning after pill on amazon,can you buy,the from boots +abortion,"('can you buy morning after pill on amazon', 'can you buy the morning after pill at walmart')",can you buy morning after pill on amazon,can you buy the morning after pill at walmart,3,4,google,2026-03-12 19:44:27.747779,abortion pill online amazon,morning after pill on amazon,can you buy,the at walmart +abortion,"('can you buy morning after pill on amazon', 'can you purchase the morning after pill over the counter')",can you buy morning after pill on amazon,can you purchase the morning after pill over the counter,4,4,google,2026-03-12 19:44:27.747779,abortion pill online amazon,morning after pill on amazon,can you buy,purchase the over the counter +abortion,"('can you buy morning after pill on amazon', 'can you buy morning after pill in texas')",can you buy morning after pill on amazon,can you buy morning after pill in texas,5,4,google,2026-03-12 19:44:27.747779,abortion pill online amazon,morning after pill on amazon,can you buy,in texas +abortion,"('can you buy morning after pill on amazon', 'can you still buy morning after pill')",can you buy morning after pill on amazon,can you still buy morning after pill,6,4,google,2026-03-12 19:44:27.747779,abortion pill online amazon,morning after pill on amazon,can you buy,still +abortion,"('ella morning after pill amazon', 'ella morning after pill where to buy')",ella morning after pill amazon,ella morning after pill where to buy,1,4,google,2026-03-12 19:44:28.675344,abortion pill online amazon,morning after pill on amazon,ella,where to buy +abortion,"('ella morning after pill amazon', 'ella and plan b difference')",ella morning after pill amazon,ella and plan b difference,2,4,google,2026-03-12 19:44:28.675344,abortion pill online amazon,morning after pill on amazon,ella,and plan b difference +abortion,"('ella morning after pill amazon', 'ella plan b near me')",ella morning after pill amazon,ella plan b near me,3,4,google,2026-03-12 19:44:28.675344,abortion pill online amazon,morning after pill on amazon,ella,plan b near me +abortion,"('ella morning after pill amazon', 'ella plan b reviews')",ella morning after pill amazon,ella plan b reviews,4,4,google,2026-03-12 19:44:28.675344,abortion pill online amazon,morning after pill on amazon,ella,plan b reviews +abortion,"('ella morning after pill amazon', 'ella plan b cost')",ella morning after pill amazon,ella plan b cost,5,4,google,2026-03-12 19:44:28.675344,abortion pill online amazon,morning after pill on amazon,ella,plan b cost +abortion,"('ella morning after pill amazon', 'ella morning-after pill walgreens')",ella morning after pill amazon,ella morning-after pill walgreens,6,4,google,2026-03-12 19:44:28.675344,abortion pill online amazon,morning after pill on amazon,ella,morning-after walgreens +abortion,"('ella morning after pill amazon', 'ella morning after pill walmart')",ella morning after pill amazon,ella morning after pill walmart,7,4,google,2026-03-12 19:44:28.675344,abortion pill online amazon,morning after pill on amazon,ella,walmart +abortion,"('ella morning after pill amazon', 'ella morning after pill over the counter')",ella morning after pill amazon,ella morning after pill over the counter,8,4,google,2026-03-12 19:44:28.675344,abortion pill online amazon,morning after pill on amazon,ella,over the counter +abortion,"('starting the pill after morning after pill', 'taking the pill after morning after pill')",starting the pill after morning after pill,taking the pill after morning after pill,1,4,google,2026-03-12 19:44:30.047052,abortion pill online amazon,morning after pill on amazon,starting the,taking +abortion,"('starting the pill after morning after pill', 'can you start the pill after taking the morning after pill')",starting the pill after morning after pill,can you start the pill after taking the morning after pill,2,4,google,2026-03-12 19:44:30.047052,abortion pill online amazon,morning after pill on amazon,starting the,can you start taking +abortion,"('starting the pill after morning after pill', 'how soon after morning after pill can i start birth control')",starting the pill after morning after pill,how soon after morning after pill can i start birth control,3,4,google,2026-03-12 19:44:30.047052,abortion pill online amazon,morning after pill on amazon,starting the,how soon can i start birth control +abortion,"('starting the pill after morning after pill', 'starting contraception after morning after pill')",starting the pill after morning after pill,starting contraception after morning after pill,4,4,google,2026-03-12 19:44:30.047052,abortion pill online amazon,morning after pill on amazon,starting the,contraception +abortion,"('starting the pill after morning after pill', 'what does the morning-after pill do')",starting the pill after morning after pill,what does the morning-after pill do,5,4,google,2026-03-12 19:44:30.047052,abortion pill online amazon,morning after pill on amazon,starting the,what does morning-after do +abortion,"('starting the pill after morning after pill', 'how does the morning-after pill work')",starting the pill after morning after pill,how does the morning-after pill work,6,4,google,2026-03-12 19:44:30.047052,abortion pill online amazon,morning after pill on amazon,starting the,how does morning-after work +abortion,"('starting the pill after morning after pill', 'the morning-after pill')",starting the pill after morning after pill,the morning-after pill,7,4,google,2026-03-12 19:44:30.047052,abortion pill online amazon,morning after pill on amazon,starting the,morning-after +abortion,"('starting the pill after morning after pill', 'is the morning-after pill still available')",starting the pill after morning after pill,is the morning-after pill still available,8,4,google,2026-03-12 19:44:30.047052,abortion pill online amazon,morning after pill on amazon,starting the,is morning-after still available +abortion,"('starting the pill after morning after pill', 'how long does the morning after pill work after i take it')",starting the pill after morning after pill,how long does the morning after pill work after i take it,9,4,google,2026-03-12 19:44:30.047052,abortion pill online amazon,morning after pill on amazon,starting the,how long does work i take it +abortion,"('when did morning after pill become available', 'when did the morning after pill become available in the uk')",when did morning after pill become available,when did the morning after pill become available in the uk,1,4,google,2026-03-12 19:44:31.257690,abortion pill online amazon,morning after pill on amazon,when did become available,the in the uk +abortion,"('when did morning after pill become available', 'when did the morning after pill become available over the counter')",when did morning after pill become available,when did the morning after pill become available over the counter,2,4,google,2026-03-12 19:44:31.257690,abortion pill online amazon,morning after pill on amazon,when did become available,the over the counter +abortion,"('when did morning after pill become available', 'how long has the morning after pill been around')",when did morning after pill become available,how long has the morning after pill been around,3,4,google,2026-03-12 19:44:31.257690,abortion pill online amazon,morning after pill on amazon,when did become available,how long has the been around +abortion,"('when did morning after pill become available', 'when did morning after pill come out')",when did morning after pill become available,when did morning after pill come out,4,4,google,2026-03-12 19:44:31.257690,abortion pill online amazon,morning after pill on amazon,when did become available,come out +abortion,"('when did morning after pill become available', 'when did morning after pill became available')",when did morning after pill become available,when did morning after pill became available,5,4,google,2026-03-12 19:44:31.257690,abortion pill online amazon,morning after pill on amazon,when did become available,became +abortion,"('can you take morning after pill once a month', 'can you take morning after pill more than once a month')",can you take morning after pill once a month,can you take morning after pill more than once a month,1,4,google,2026-03-12 19:44:32.713672,abortion pill online amazon,morning after pill on amazon,can you take once a month,more than +abortion,"('can you take morning after pill once a month', 'what happens if you take the morning after pill once a month')",can you take morning after pill once a month,what happens if you take the morning after pill once a month,2,4,google,2026-03-12 19:44:32.713672,abortion pill online amazon,morning after pill on amazon,can you take once a month,what happens if the +abortion,"('can you take morning after pill once a month', 'can you take morning after pill twice in one month')",can you take morning after pill once a month,can you take morning after pill twice in one month,3,4,google,2026-03-12 19:44:32.713672,abortion pill online amazon,morning after pill on amazon,can you take once a month,twice in one +abortion,"('can you take morning after pill once a month', 'can you take the morning after pill 3 times in one month')",can you take morning after pill once a month,can you take the morning after pill 3 times in one month,4,4,google,2026-03-12 19:44:32.713672,abortion pill online amazon,morning after pill on amazon,can you take once a month,the 3 times in one +abortion,"('can you take morning after pill once a month', 'can you take 3 morning after pills in one month')",can you take morning after pill once a month,can you take 3 morning after pills in one month,5,4,google,2026-03-12 19:44:32.713672,abortion pill online amazon,morning after pill on amazon,can you take once a month,3 pills in one +abortion,"('can you take morning after pill once a month', 'taking morning after pill once a month')",can you take morning after pill once a month,taking morning after pill once a month,6,4,google,2026-03-12 19:44:32.713672,abortion pill online amazon,morning after pill on amazon,can you take once a month,taking +abortion,"('can you take morning after pill once a month', 'can you take more than one morning after pill in a month')",can you take morning after pill once a month,can you take more than one morning after pill in a month,7,4,google,2026-03-12 19:44:32.713672,abortion pill online amazon,morning after pill on amazon,can you take once a month,more than one in +abortion,"('can you take morning after pill once a month', 'can you take plan b once a month')",can you take morning after pill once a month,can you take plan b once a month,8,4,google,2026-03-12 19:44:32.713672,abortion pill online amazon,morning after pill on amazon,can you take once a month,plan b +abortion,"('amazon plan b reviews', 'amazon plan b reddit')",amazon plan b reviews,amazon plan b reddit,1,4,google,2026-03-12 19:44:33.746511,abortion pill online amazon,best amazon morning after pill,plan b reviews,reddit +abortion,"('amazon plan b reviews', 'amazon plan.b')",amazon plan b reviews,amazon plan.b,2,4,google,2026-03-12 19:44:33.746511,abortion pill online amazon,best amazon morning after pill,plan b reviews,plan.b +abortion,"('amazon plan b reviews', 'is plan b on amazon legit')",amazon plan b reviews,is plan b on amazon legit,3,4,google,2026-03-12 19:44:33.746511,abortion pill online amazon,best amazon morning after pill,plan b reviews,is on legit +abortion,"('new day plan b reviews', 'new day emergency contraception reviews')",new day plan b reviews,new day emergency contraception reviews,1,4,google,2026-03-12 19:44:35.109620,abortion pill online amazon,best amazon morning after pill,new day plan b reviews,emergency contraception +abortion,"('new day plan b reviews', 'is new day as effective as plan b')",new day plan b reviews,is new day as effective as plan b,2,4,google,2026-03-12 19:44:35.109620,abortion pill online amazon,best amazon morning after pill,new day plan b reviews,is as effective as +abortion,"('new day plan b reviews', 'new day morning after pill')",new day plan b reviews,new day morning after pill,3,4,google,2026-03-12 19:44:35.109620,abortion pill online amazon,best amazon morning after pill,new day plan b reviews,morning after pill +abortion,"('new day plan b reviews', 'new day after pill reviews')",new day plan b reviews,new day after pill reviews,4,4,google,2026-03-12 19:44:35.109620,abortion pill online amazon,best amazon morning after pill,new day plan b reviews,after pill +abortion,"('new day plan b reviews', 'new day plan b pill')",new day plan b reviews,new day plan b pill,5,4,google,2026-03-12 19:44:35.109620,abortion pill online amazon,best amazon morning after pill,new day plan b reviews,pill +abortion,"('new day plan b reviews', 'is new day a good plan b')",new day plan b reviews,is new day a good plan b,6,4,google,2026-03-12 19:44:35.109620,abortion pill online amazon,best amazon morning after pill,new day plan b reviews,is a good +abortion,"('new day emergency contraception reviews', 'new day emergency contraception side effects')",new day emergency contraception reviews,new day emergency contraception side effects,1,4,google,2026-03-12 19:44:36.021584,abortion pill online amazon,best amazon morning after pill,new day emergency contraception reviews,side effects +abortion,"('new day emergency contraception reviews', 'new day morning after pill')",new day emergency contraception reviews,new day morning after pill,2,4,google,2026-03-12 19:44:36.021584,abortion pill online amazon,best amazon morning after pill,new day emergency contraception reviews,morning after pill +abortion,"('new day emergency contraception reviews', 'new day pill reviews')",new day emergency contraception reviews,new day pill reviews,3,4,google,2026-03-12 19:44:36.021584,abortion pill online amazon,best amazon morning after pill,new day emergency contraception reviews,pill +abortion,"('new day emergency contraception reviews', 'new day contraceptive reviews')",new day emergency contraception reviews,new day contraceptive reviews,4,4,google,2026-03-12 19:44:36.021584,abortion pill online amazon,best amazon morning after pill,new day emergency contraception reviews,contraceptive +abortion,"('new day emergency contraception reviews', 'new day emergency contraception')",new day emergency contraception reviews,new day emergency contraception,5,4,google,2026-03-12 19:44:36.021584,abortion pill online amazon,best amazon morning after pill,new day emergency contraception reviews,new day emergency contraception reviews +abortion,"('new day emergency contraception reviews', 'new day emergency contraception weight limit')",new day emergency contraception reviews,new day emergency contraception weight limit,6,4,google,2026-03-12 19:44:36.021584,abortion pill online amazon,best amazon morning after pill,new day emergency contraception reviews,weight limit +abortion,"('amazon morning after pill', 'amazon day after pill')",amazon morning after pill,amazon day after pill,1,4,google,2026-03-12 19:44:37.313563,abortion pill online amazon,best amazon morning after pill,best morning after,day +abortion,"('amazon morning after pill', 'best amazon morning after pill')",amazon morning after pill,best amazon morning after pill,2,4,google,2026-03-12 19:44:37.313563,abortion pill online amazon,best amazon morning after pill,best morning after,best +abortion,"('amazon morning after pill', 'morning after pill amazon uk')",amazon morning after pill,morning after pill amazon uk,3,4,google,2026-03-12 19:44:37.313563,abortion pill online amazon,best amazon morning after pill,best morning after,uk +abortion,"('amazon morning after pill', 'does amazon sell morning after pill')",amazon morning after pill,does amazon sell morning after pill,4,4,google,2026-03-12 19:44:37.313563,abortion pill online amazon,best amazon morning after pill,best morning after,does sell +abortion,"('amazon morning after pill', 'ella morning after pill amazon')",amazon morning after pill,ella morning after pill amazon,5,4,google,2026-03-12 19:44:37.313563,abortion pill online amazon,best amazon morning after pill,best morning after,ella +abortion,"('amazon morning after pill', 'when did morning after pill become available')",amazon morning after pill,when did morning after pill become available,6,4,google,2026-03-12 19:44:37.313563,abortion pill online amazon,best amazon morning after pill,best morning after,when did become available +abortion,"('amazon morning after pill', 'starting the pill after morning after pill')",amazon morning after pill,starting the pill after morning after pill,7,4,google,2026-03-12 19:44:37.313563,abortion pill online amazon,best amazon morning after pill,best morning after,starting the +abortion,"('amazon morning after pill', 'when did morning after pill come out')",amazon morning after pill,when did morning after pill come out,8,4,google,2026-03-12 19:44:37.313563,abortion pill online amazon,best amazon morning after pill,best morning after,when did come out +abortion,"('amazon morning after pill', 'amazon plan b reviews')",amazon morning after pill,amazon plan b reviews,9,4,google,2026-03-12 19:44:37.313563,abortion pill online amazon,best amazon morning after pill,best morning after,plan b reviews +abortion,"('best morning after pill cvs', 'does cvs sell morning after pill')",best morning after pill cvs,does cvs sell morning after pill,1,4,google,2026-03-12 19:44:38.236853,abortion pill online amazon,best amazon morning after pill,cvs,does sell +abortion,"('best morning after pill cvs', 'does cvs brand plan b work')",best morning after pill cvs,does cvs brand plan b work,2,4,google,2026-03-12 19:44:38.236853,abortion pill online amazon,best amazon morning after pill,cvs,does brand plan b work +abortion,"('best morning after pill cvs', 'cvs morning after pill generic')",best morning after pill cvs,cvs morning after pill generic,3,4,google,2026-03-12 19:44:38.236853,abortion pill online amazon,best amazon morning after pill,cvs,generic +abortion,"('best morning after pill cvs', 'cvs morning after pill cost')",best morning after pill cvs,cvs morning after pill cost,4,4,google,2026-03-12 19:44:38.236853,abortion pill online amazon,best amazon morning after pill,cvs,cost +abortion,"('best morning after pill cvs', 'cvs morning after pill price')",best morning after pill cvs,cvs morning after pill price,5,4,google,2026-03-12 19:44:38.236853,abortion pill online amazon,best amazon morning after pill,cvs,price +abortion,"('best morning after pill cvs', 'cvs morning after pills')",best morning after pill cvs,cvs morning after pills,6,4,google,2026-03-12 19:44:38.236853,abortion pill online amazon,best amazon morning after pill,cvs,pills +abortion,"('abortion pill amazon pharmacy', 'abortion pill amazon')",abortion pill amazon pharmacy,abortion pill amazon,1,4,google,2026-03-12 19:44:39.727133,abortion pill online amazon,abortion pill on amazon,pharmacy,pharmacy +abortion,"('abortion pill amazon pharmacy', 'abortion pill available at pharmacies')",abortion pill amazon pharmacy,abortion pill available at pharmacies,2,4,google,2026-03-12 19:44:39.727133,abortion pill online amazon,abortion pill on amazon,pharmacy,available at pharmacies +abortion,"('abortion pill amazon pharmacy', 'abortion pill available at cvs')",abortion pill amazon pharmacy,abortion pill available at cvs,3,4,google,2026-03-12 19:44:39.727133,abortion pill online amazon,abortion pill on amazon,pharmacy,available at cvs +abortion,"('abortion pill amazon reddit', 'morning after pill amazon reddit')",abortion pill amazon reddit,morning after pill amazon reddit,1,4,google,2026-03-12 19:44:40.574245,abortion pill online amazon,abortion pill on amazon,reddit,morning after +abortion,"('abortion pill amazon reddit', 'abortion pill reviews reddit')",abortion pill amazon reddit,abortion pill reviews reddit,2,4,google,2026-03-12 19:44:40.574245,abortion pill online amazon,abortion pill on amazon,reddit,reviews +abortion,"('abortion pill amazon reddit', 'what does the abortion pill feel like reddit')",abortion pill amazon reddit,what does the abortion pill feel like reddit,3,4,google,2026-03-12 19:44:40.574245,abortion pill online amazon,abortion pill on amazon,reddit,what does the feel like +abortion,"('abortion pill amazon reddit', 'abortion pill amazon')",abortion pill amazon reddit,abortion pill amazon,4,4,google,2026-03-12 19:44:40.574245,abortion pill online amazon,abortion pill on amazon,reddit,reddit +abortion,"('abortion pill amazon reddit', 'abortion pill reddit experience')",abortion pill amazon reddit,abortion pill reddit experience,5,4,google,2026-03-12 19:44:40.574245,abortion pill online amazon,abortion pill on amazon,reddit,experience +abortion,"('abortion pill cost amazon', 'abortion pill cost cvs')",abortion pill cost amazon,abortion pill cost cvs,1,4,google,2026-03-12 19:44:41.669693,abortion pill online amazon,abortion pill on amazon,cost,cvs +abortion,"('abortion pill cost amazon', 'abortion pill cost online')",abortion pill cost amazon,abortion pill cost online,2,4,google,2026-03-12 19:44:41.669693,abortion pill online amazon,abortion pill on amazon,cost,online +abortion,"('abortion pill cost amazon', 'abortion pill cost cvs price')",abortion pill cost amazon,abortion pill cost cvs price,3,4,google,2026-03-12 19:44:41.669693,abortion pill online amazon,abortion pill on amazon,cost,cvs price +abortion,"('abortion pill name amazon', 'abortion pill name and image')",abortion pill name amazon,abortion pill name and image,1,4,google,2026-03-12 19:44:43.073018,abortion pill online amazon,abortion pill on amazon,name,and image +abortion,"('abortion pill name amazon', 'abortion pill.name')",abortion pill name amazon,abortion pill.name,2,4,google,2026-03-12 19:44:43.073018,abortion pill online amazon,abortion pill on amazon,name,pill.name +abortion,"('abortion pill name amazon', 'abortion pill amazon')",abortion pill name amazon,abortion pill amazon,3,4,google,2026-03-12 19:44:43.073018,abortion pill online amazon,abortion pill on amazon,name,name +abortion,"('abortion pill in atlanta ga', 'abortion clinics in atlanta ga')",abortion pill in atlanta ga,abortion clinics in atlanta ga,1,4,google,2026-03-12 19:44:43.972271,abortion pill online georgia,abortion pill online atlanta ga,in,clinics +abortion,"('abortion pill in atlanta ga', 'abortion pill cost in atlanta ga')",abortion pill in atlanta ga,abortion pill cost in atlanta ga,2,4,google,2026-03-12 19:44:43.972271,abortion pill online georgia,abortion pill online atlanta ga,in,cost +abortion,"('abortion pill in atlanta ga', 'abortion pill online atlanta ga')",abortion pill in atlanta ga,abortion pill online atlanta ga,3,4,google,2026-03-12 19:44:43.972271,abortion pill online georgia,abortion pill online atlanta ga,in,online +abortion,"('abortion pill in atlanta ga', 'abortion pill in georgia')",abortion pill in atlanta ga,abortion pill in georgia,4,4,google,2026-03-12 19:44:43.972271,abortion pill online georgia,abortion pill online atlanta ga,in,georgia +abortion,"('abortion pill in atlanta ga', 'abortion pill atlanta georgia')",abortion pill in atlanta ga,abortion pill atlanta georgia,5,4,google,2026-03-12 19:44:43.972271,abortion pill online georgia,abortion pill online atlanta ga,in,georgia +abortion,"('abortion pill atlanta georgia', 'abortion clinic atlanta georgia')",abortion pill atlanta georgia,abortion clinic atlanta georgia,1,4,google,2026-03-12 19:44:45.453947,abortion pill online georgia,abortion pill online atlanta ga,georgia,clinic +abortion,"('abortion pill atlanta georgia', 'abortion clinics near atlanta georgia')",abortion pill atlanta georgia,abortion clinics near atlanta georgia,2,4,google,2026-03-12 19:44:45.453947,abortion pill online georgia,abortion pill online atlanta ga,georgia,clinics near +abortion,"('abortion pill atlanta georgia', 'abortion pill online atlanta ga')",abortion pill atlanta georgia,abortion pill online atlanta ga,3,4,google,2026-03-12 19:44:45.453947,abortion pill online georgia,abortion pill online atlanta ga,georgia,online ga +abortion,"('abortion pill atlanta georgia', 'abortion pill in atlanta ga')",abortion pill atlanta georgia,abortion pill in atlanta ga,4,4,google,2026-03-12 19:44:45.453947,abortion pill online georgia,abortion pill online atlanta ga,georgia,in ga +abortion,"('abortion pill atlanta georgia', 'abortion pill in georgia')",abortion pill atlanta georgia,abortion pill in georgia,5,4,google,2026-03-12 19:44:45.453947,abortion pill online georgia,abortion pill online atlanta ga,georgia,in +abortion,"('abortion pill atlanta georgia', 'abortion pill atlanta')",abortion pill atlanta georgia,abortion pill atlanta,6,4,google,2026-03-12 19:44:45.453947,abortion pill online georgia,abortion pill online atlanta ga,georgia,georgia +abortion,"('abortion pill atlanta georgia', 'abortion pill clinic atlanta ga')",abortion pill atlanta georgia,abortion pill clinic atlanta ga,7,4,google,2026-03-12 19:44:45.453947,abortion pill online georgia,abortion pill online atlanta ga,georgia,clinic ga +abortion,"('abortion clinics in georgia', 'abortion clinics in georgia open now')",abortion clinics in georgia,abortion clinics in georgia open now,1,4,google,2026-03-12 19:44:46.261143,abortion pill online georgia,abortion pill in georgia,clinics,open now +abortion,"('abortion clinics in georgia', 'abortion clinic in georgia country')",abortion clinics in georgia,abortion clinic in georgia country,2,4,google,2026-03-12 19:44:46.261143,abortion pill online georgia,abortion pill in georgia,clinics,clinic country +abortion,"('abortion clinics in georgia', 'abortion centers in georgia')",abortion clinics in georgia,abortion centers in georgia,3,4,google,2026-03-12 19:44:46.261143,abortion pill online georgia,abortion pill in georgia,clinics,centers +abortion,"('abortion clinics in georgia', 'abortion clinics in atlanta georgia')",abortion clinics in georgia,abortion clinics in atlanta georgia,4,4,google,2026-03-12 19:44:46.261143,abortion pill online georgia,abortion pill in georgia,clinics,atlanta +abortion,"('abortion clinics in georgia', 'abortion clinics in augusta georgia')",abortion clinics in georgia,abortion clinics in augusta georgia,5,4,google,2026-03-12 19:44:46.261143,abortion pill online georgia,abortion pill in georgia,clinics,augusta +abortion,"('abortion clinics in georgia', 'best abortion clinics in georgia')",abortion clinics in georgia,best abortion clinics in georgia,6,4,google,2026-03-12 19:44:46.261143,abortion pill online georgia,abortion pill in georgia,clinics,best +abortion,"('abortion clinics in georgia', 'abortion clinics in columbus georgia')",abortion clinics in georgia,abortion clinics in columbus georgia,7,4,google,2026-03-12 19:44:46.261143,abortion pill online georgia,abortion pill in georgia,clinics,columbus +abortion,"('abortion clinics in georgia', 'abortion clinics in savannah georgia')",abortion clinics in georgia,abortion clinics in savannah georgia,8,4,google,2026-03-12 19:44:46.261143,abortion pill online georgia,abortion pill in georgia,clinics,savannah +abortion,"('abortion clinics in georgia', 'abortion clinics in marietta georgia')",abortion clinics in georgia,abortion clinics in marietta georgia,9,4,google,2026-03-12 19:44:46.261143,abortion pill online georgia,abortion pill in georgia,clinics,marietta +abortion,"('abortion options in georgia', 'abortion clinics in georgia')",abortion options in georgia,abortion clinics in georgia,1,4,google,2026-03-12 19:44:47.209576,abortion pill online georgia,abortion pill in georgia,options,clinics +abortion,"('abortion options in georgia', 'abortion pill in georgia')",abortion options in georgia,abortion pill in georgia,2,4,google,2026-03-12 19:44:47.209576,abortion pill online georgia,abortion pill in georgia,options,pill +abortion,"('abortion options in georgia', 'abortion clinics in georgia open now')",abortion options in georgia,abortion clinics in georgia open now,3,4,google,2026-03-12 19:44:47.209576,abortion pill online georgia,abortion pill in georgia,options,clinics open now +abortion,"('abortion options in georgia', 'abortion clinics in atlanta georgia')",abortion options in georgia,abortion clinics in atlanta georgia,4,4,google,2026-03-12 19:44:47.209576,abortion pill online georgia,abortion pill in georgia,options,clinics atlanta +abortion,"('abortion options in georgia', 'abortion pill legal in georgia')",abortion options in georgia,abortion pill legal in georgia,5,4,google,2026-03-12 19:44:47.209576,abortion pill online georgia,abortion pill in georgia,options,pill legal +abortion,"('abortion options in georgia', 'abortion pill laws in georgia')",abortion options in georgia,abortion pill laws in georgia,6,4,google,2026-03-12 19:44:47.209576,abortion pill online georgia,abortion pill in georgia,options,pill laws +abortion,"('abortion options in georgia', 'abortion clinics in augusta georgia')",abortion options in georgia,abortion clinics in augusta georgia,7,4,google,2026-03-12 19:44:47.209576,abortion pill online georgia,abortion pill in georgia,options,clinics augusta +abortion,"('abortion options in georgia', 'best abortion clinics in georgia')",abortion options in georgia,best abortion clinics in georgia,8,4,google,2026-03-12 19:44:47.209576,abortion pill online georgia,abortion pill in georgia,options,best clinics +abortion,"('abortion options in georgia', 'abortion clinics in columbus georgia')",abortion options in georgia,abortion clinics in columbus georgia,9,4,google,2026-03-12 19:44:47.209576,abortion pill online georgia,abortion pill in georgia,options,clinics columbus +abortion,"('abortion clinics in georgia open now', 'abortion clinic open sunday near me')",abortion clinics in georgia open now,abortion clinic open sunday near me,1,4,google,2026-03-12 19:44:48.638037,abortion pill online georgia,abortion pill in georgia,clinics open now,clinic sunday near me +abortion,"('abortion clinics in georgia open now', 'abortion clinic open near me')",abortion clinics in georgia open now,abortion clinic open near me,2,4,google,2026-03-12 19:44:48.638037,abortion pill online georgia,abortion pill in georgia,clinics open now,clinic near me +abortion,"('abortion clinics in georgia open now', 'abortion clinics in georgia')",abortion clinics in georgia open now,abortion clinics in georgia,3,4,google,2026-03-12 19:44:48.638037,abortion pill online georgia,abortion pill in georgia,clinics open now,clinics open now +abortion,"('abortion clinics in georgia open now', 'abortion clinics in ga')",abortion clinics in georgia open now,abortion clinics in ga,4,4,google,2026-03-12 19:44:48.638037,abortion pill online georgia,abortion pill in georgia,clinics open now,ga +abortion,"('abortion pill legal in georgia', 'abortion pill law in georgia')",abortion pill legal in georgia,abortion pill law in georgia,1,4,google,2026-03-12 19:44:51.362829,abortion pill online georgia,abortion pill in georgia,legal,law +abortion,"('abortion pill legal in georgia', 'is abortion pill illegal in georgia')",abortion pill legal in georgia,is abortion pill illegal in georgia,2,4,google,2026-03-12 19:44:51.362829,abortion pill online georgia,abortion pill in georgia,legal,is illegal +abortion,"('abortion pill legal in georgia', 'is morning after pill legal in georgia')",abortion pill legal in georgia,is morning after pill legal in georgia,3,4,google,2026-03-12 19:44:51.362829,abortion pill online georgia,abortion pill in georgia,legal,is morning after +abortion,"('abortion pill legal in georgia', 'are abortion clinics legal in georgia')",abortion pill legal in georgia,are abortion clinics legal in georgia,4,4,google,2026-03-12 19:44:51.362829,abortion pill online georgia,abortion pill in georgia,legal,are clinics +abortion,"('abortion pill legal in georgia', 'are abortion pills available in georgia')",abortion pill legal in georgia,are abortion pills available in georgia,5,4,google,2026-03-12 19:44:51.362829,abortion pill online georgia,abortion pill in georgia,legal,are pills available +abortion,"('abortion pill legal in georgia', 'is medication abortion legal in georgia')",abortion pill legal in georgia,is medication abortion legal in georgia,6,4,google,2026-03-12 19:44:51.362829,abortion pill online georgia,abortion pill in georgia,legal,is medication +abortion,"('abortion pill legal in georgia', 'is abortion pill illegal in ga')",abortion pill legal in georgia,is abortion pill illegal in ga,7,4,google,2026-03-12 19:44:51.362829,abortion pill online georgia,abortion pill in georgia,legal,is illegal ga +abortion,"('abortion pill legal in georgia', 'abortion pill in georgia')",abortion pill legal in georgia,abortion pill in georgia,8,4,google,2026-03-12 19:44:51.362829,abortion pill online georgia,abortion pill in georgia,legal,legal +abortion,"('abortion pill legal in georgia', 'legal abortion in georgia')",abortion pill legal in georgia,legal abortion in georgia,9,4,google,2026-03-12 19:44:51.362829,abortion pill online georgia,abortion pill in georgia,legal,legal +abortion,"('abortion pill laws in georgia', 'abortion pill legal in georgia')",abortion pill laws in georgia,abortion pill legal in georgia,1,4,google,2026-03-12 19:44:52.337018,abortion pill online georgia,abortion pill in georgia,laws,legal +abortion,"('abortion pill laws in georgia', 'is morning after pill legal in georgia')",abortion pill laws in georgia,is morning after pill legal in georgia,2,4,google,2026-03-12 19:44:52.337018,abortion pill online georgia,abortion pill in georgia,laws,is morning after legal +abortion,"('abortion pill laws in georgia', 'are abortion clinics legal in georgia')",abortion pill laws in georgia,are abortion clinics legal in georgia,3,4,google,2026-03-12 19:44:52.337018,abortion pill online georgia,abortion pill in georgia,laws,are clinics legal +abortion,"('abortion pill laws in georgia', 'abortion law in georgia')",abortion pill laws in georgia,abortion law in georgia,4,4,google,2026-03-12 19:44:52.337018,abortion pill online georgia,abortion pill in georgia,laws,law +abortion,"('abortion pill laws in georgia', 'abortion pill in georgia')",abortion pill laws in georgia,abortion pill in georgia,5,4,google,2026-03-12 19:44:52.337018,abortion pill online georgia,abortion pill in georgia,laws,laws +abortion,"('abortion pill laws in georgia', 'abortion laws in georgia 2021')",abortion pill laws in georgia,abortion laws in georgia 2021,6,4,google,2026-03-12 19:44:52.337018,abortion pill online georgia,abortion pill in georgia,laws,2021 +abortion,"('abortion pill clinic in georgia', 'abortion pill in georgia')",abortion pill clinic in georgia,abortion pill in georgia,1,4,google,2026-03-12 19:44:53.325835,abortion pill online georgia,abortion pill in georgia,clinic,clinic +abortion,"('abortion pill clinic in georgia', 'abortion pill clinic atlanta ga')",abortion pill clinic in georgia,abortion pill clinic atlanta ga,2,4,google,2026-03-12 19:44:53.325835,abortion pill online georgia,abortion pill in georgia,clinic,atlanta ga +abortion,"('abortion pill clinic in georgia', 'abortion pill in atlanta ga')",abortion pill clinic in georgia,abortion pill in atlanta ga,3,4,google,2026-03-12 19:44:53.325835,abortion pill online georgia,abortion pill in georgia,clinic,atlanta ga +abortion,"('abortion pill georgia how many weeks', 'how many weeks to get an abortion in georgia')",abortion pill georgia how many weeks,how many weeks to get an abortion in georgia,1,4,google,2026-03-12 19:44:54.679229,abortion pill online georgia,abortion pill in georgia,how many weeks,to get an in +abortion,"('abortion pill georgia how many weeks', 'how long can you get an abortion in georgia')",abortion pill georgia how many weeks,how long can you get an abortion in georgia,2,4,google,2026-03-12 19:44:54.679229,abortion pill online georgia,abortion pill in georgia,how many weeks,long can you get an in +abortion,"('abortion pill georgia how many weeks', 'how early can you get an abortion in georgia')",abortion pill georgia how many weeks,how early can you get an abortion in georgia,3,4,google,2026-03-12 19:44:54.679229,abortion pill online georgia,abortion pill in georgia,how many weeks,early can you get an in +abortion,"('abortion pill georgia how many weeks', 'how far along do you have to be to get an abortion in georgia')",abortion pill georgia how many weeks,how far along do you have to be to get an abortion in georgia,4,4,google,2026-03-12 19:44:54.679229,abortion pill online georgia,abortion pill in georgia,how many weeks,far along do you have to be to get an in +abortion,"('abortion pill georgia how many weeks', 'georgia abortion pill law')",abortion pill georgia how many weeks,georgia abortion pill law,5,4,google,2026-03-12 19:44:54.679229,abortion pill online georgia,abortion pill in georgia,how many weeks,law +abortion,"('abortion pill georgia how many weeks', 'abortion pill georgia')",abortion pill georgia how many weeks,abortion pill georgia,6,4,google,2026-03-12 19:44:54.679229,abortion pill online georgia,abortion pill in georgia,how many weeks,how many weeks +abortion,"('abortion pill georgia how many weeks', 'abortion pill georgia online')",abortion pill georgia how many weeks,abortion pill georgia online,7,4,google,2026-03-12 19:44:54.679229,abortion pill online georgia,abortion pill in georgia,how many weeks,online +abortion,"('abortion pill georgia tbilisi', 'abortion pill georgia country price')",abortion pill georgia tbilisi,abortion pill georgia country price,1,4,google,2026-03-12 19:44:55.791333,abortion pill online georgia,abortion pill in georgia,tbilisi,country price +abortion,"('abortion pill georgia tbilisi', 'abortion pill georgia country')",abortion pill georgia tbilisi,abortion pill georgia country,2,4,google,2026-03-12 19:44:55.791333,abortion pill online georgia,abortion pill in georgia,tbilisi,country +abortion,"('abortion pill georgia tbilisi', 'abortion in georgia country')",abortion pill georgia tbilisi,abortion in georgia country,3,4,google,2026-03-12 19:44:55.791333,abortion pill online georgia,abortion pill in georgia,tbilisi,in country +abortion,"('abortion pill georgia tbilisi', 'is abortions legal in georgia')",abortion pill georgia tbilisi,is abortions legal in georgia,4,4,google,2026-03-12 19:44:55.791333,abortion pill online georgia,abortion pill in georgia,tbilisi,is abortions legal in +abortion,"('abortion pill georgia tbilisi', 'abortion pill georgia online')",abortion pill georgia tbilisi,abortion pill georgia online,5,4,google,2026-03-12 19:44:55.791333,abortion pill online georgia,abortion pill in georgia,tbilisi,online +abortion,"('abortion pill georgia tbilisi', 'abortion pill georgia')",abortion pill georgia tbilisi,abortion pill georgia,6,4,google,2026-03-12 19:44:55.791333,abortion pill online georgia,abortion pill in georgia,tbilisi,tbilisi +abortion,"('telehealth for abortion pill', 'telemedicine for abortion pill')",telehealth for abortion pill,telemedicine for abortion pill,1,4,google,2026-03-12 19:44:57.071858,abortion pill online reviews,abortion pill online telehealth,for,telemedicine +abortion,"('telehealth for abortion pill', 'telehealth appointment for abortion pill')",telehealth for abortion pill,telehealth appointment for abortion pill,2,4,google,2026-03-12 19:44:57.071858,abortion pill online reviews,abortion pill online telehealth,for,appointment +abortion,"('telehealth for abortion pill', 'telehealth visit for abortion pill')",telehealth for abortion pill,telehealth visit for abortion pill,3,4,google,2026-03-12 19:44:57.071858,abortion pill online reviews,abortion pill online telehealth,for,visit +abortion,"('telehealth for abortion pill', 'telehealth abortion pill florida')",telehealth for abortion pill,telehealth abortion pill florida,4,4,google,2026-03-12 19:44:57.071858,abortion pill online reviews,abortion pill online telehealth,for,florida +abortion,"('telehealth for abortion pill', 'telehealth abortion pill north carolina')",telehealth for abortion pill,telehealth abortion pill north carolina,5,4,google,2026-03-12 19:44:57.071858,abortion pill online reviews,abortion pill online telehealth,for,north carolina +abortion,"('telehealth for abortion pill', 'telehealth abortion pill pennsylvania')",telehealth for abortion pill,telehealth abortion pill pennsylvania,6,4,google,2026-03-12 19:44:57.071858,abortion pill online reviews,abortion pill online telehealth,for,pennsylvania +abortion,"('telehealth for abortion pill', 'telehealth abortion pill ohio')",telehealth for abortion pill,telehealth abortion pill ohio,7,4,google,2026-03-12 19:44:57.071858,abortion pill online reviews,abortion pill online telehealth,for,ohio +abortion,"('telehealth for abortion pill', 'telehealth abortion pill california')",telehealth for abortion pill,telehealth abortion pill california,8,4,google,2026-03-12 19:44:57.071858,abortion pill online reviews,abortion pill online telehealth,for,california +abortion,"('telehealth for abortion pill', 'telehealth abortion pill texas')",telehealth for abortion pill,telehealth abortion pill texas,9,4,google,2026-03-12 19:44:57.071858,abortion pill online reviews,abortion pill online telehealth,for,texas +abortion,"('what is telemedicine abortion', 'what is telemed abortion')",what is telemedicine abortion,what is telemed abortion,1,4,google,2026-03-12 19:44:58.498577,abortion pill online reviews,abortion pill online telehealth,what is telemedicine,telemed +abortion,"('what is telemedicine abortion', 'what is telehealth abortion')",what is telemedicine abortion,what is telehealth abortion,2,4,google,2026-03-12 19:44:58.498577,abortion pill online reviews,abortion pill online telehealth,what is telemedicine,telehealth +abortion,"('what is telemedicine abortion', 'what is telehealth medication abortion')",what is telemedicine abortion,what is telehealth medication abortion,3,4,google,2026-03-12 19:44:58.498577,abortion pill online reviews,abortion pill online telehealth,what is telemedicine,telehealth medication +abortion,"('what is telemedicine abortion', 'what is a telehealth abortion clinic')",what is telemedicine abortion,what is a telehealth abortion clinic,4,4,google,2026-03-12 19:44:58.498577,abortion pill online reviews,abortion pill online telehealth,what is telemedicine,a telehealth clinic +abortion,"('abortion pill telemedicine', 'abortion pill teladoc')",abortion pill telemedicine,abortion pill teladoc,1,4,google,2026-03-12 19:44:59.548910,abortion pill online reviews,abortion pill online telehealth,telemedicine,teladoc +abortion,"('abortion pill telemedicine', 'abortion pill telehealth')",abortion pill telemedicine,abortion pill telehealth,2,4,google,2026-03-12 19:44:59.548910,abortion pill online reviews,abortion pill online telehealth,telemedicine,telehealth +abortion,"('abortion pill telemedicine', 'abortion pill telehealth florida')",abortion pill telemedicine,abortion pill telehealth florida,3,4,google,2026-03-12 19:44:59.548910,abortion pill online reviews,abortion pill online telehealth,telemedicine,telehealth florida +abortion,"('abortion pill telemedicine', 'abortion pill telehealth ohio')",abortion pill telemedicine,abortion pill telehealth ohio,4,4,google,2026-03-12 19:44:59.548910,abortion pill online reviews,abortion pill online telehealth,telemedicine,telehealth ohio +abortion,"('abortion pill telemedicine', 'what is telemedicine abortion')",abortion pill telemedicine,what is telemedicine abortion,5,4,google,2026-03-12 19:44:59.548910,abortion pill online reviews,abortion pill online telehealth,telemedicine,what is +abortion,"('abortion pill telemedicine', 'can i get birth control through telehealth')",abortion pill telemedicine,can i get birth control through telehealth,6,4,google,2026-03-12 19:44:59.548910,abortion pill online reviews,abortion pill online telehealth,telemedicine,can i get birth control through telehealth +abortion,"('abortion pill online planned parenthood', 'abortion pill instructions planned parenthood')",abortion pill online planned parenthood,abortion pill instructions planned parenthood,1,4,google,2026-03-12 19:45:00.605217,abortion pill online reviews,abortion pill online telehealth,planned parenthood,instructions +abortion,"('abortion pill online planned parenthood', 'abortion pill near me online')",abortion pill online planned parenthood,abortion pill near me online,2,4,google,2026-03-12 19:45:00.605217,abortion pill online reviews,abortion pill online telehealth,planned parenthood,near me +abortion,"('abortion pill online planned parenthood', 'does planned parenthood do abortions for free')",abortion pill online planned parenthood,does planned parenthood do abortions for free,3,4,google,2026-03-12 19:45:00.605217,abortion pill online reviews,abortion pill online telehealth,planned parenthood,does do abortions for free +abortion,"('abortion pill online planned parenthood', 'what days does planned parenthood do abortions')",abortion pill online planned parenthood,what days does planned parenthood do abortions,4,4,google,2026-03-12 19:45:00.605217,abortion pill online reviews,abortion pill online telehealth,planned parenthood,what days does do abortions +abortion,"('abortion pill online planned parenthood', 'abortion pill online plan c')",abortion pill online planned parenthood,abortion pill online plan c,5,4,google,2026-03-12 19:45:00.605217,abortion pill online reviews,abortion pill online telehealth,planned parenthood,plan c +abortion,"('abortion pill online planned parenthood', 'abortion pill online telehealth')",abortion pill online planned parenthood,abortion pill online telehealth,6,4,google,2026-03-12 19:45:00.605217,abortion pill online reviews,abortion pill online telehealth,planned parenthood,telehealth +abortion,"('abortion pill online planned parenthood', 'abortion pill online prescription')",abortion pill online planned parenthood,abortion pill online prescription,7,4,google,2026-03-12 19:45:00.605217,abortion pill online reviews,abortion pill online telehealth,planned parenthood,prescription +abortion,"('abortion centers in ohio', 'abortion clinics in ohio')",abortion centers in ohio,abortion clinics in ohio,1,4,google,2026-03-12 19:45:02.076603,abortion pill online ohio,abortion clinics in ohio,centers,clinics +abortion,"('abortion centers in ohio', 'abortion services in ohio')",abortion centers in ohio,abortion services in ohio,2,4,google,2026-03-12 19:45:02.076603,abortion pill online ohio,abortion clinics in ohio,centers,services +abortion,"('abortion centers in ohio', 'abortion clinics in ohio near me')",abortion centers in ohio,abortion clinics in ohio near me,3,4,google,2026-03-12 19:45:02.076603,abortion pill online ohio,abortion clinics in ohio,centers,clinics near me +abortion,"('abortion centers in ohio', 'abortion providers in ohio')",abortion centers in ohio,abortion providers in ohio,4,4,google,2026-03-12 19:45:02.076603,abortion pill online ohio,abortion clinics in ohio,centers,providers +abortion,"('abortion centers in ohio', 'abortion doctors in ohio')",abortion centers in ohio,abortion doctors in ohio,5,4,google,2026-03-12 19:45:02.076603,abortion pill online ohio,abortion clinics in ohio,centers,doctors +abortion,"('abortion centers in ohio', 'abortion centers in cincinnati ohio')",abortion centers in ohio,abortion centers in cincinnati ohio,6,4,google,2026-03-12 19:45:02.076603,abortion pill online ohio,abortion clinics in ohio,centers,cincinnati +abortion,"('abortion centers in ohio', 'abortion centers columbus ohio')",abortion centers in ohio,abortion centers columbus ohio,7,4,google,2026-03-12 19:45:02.076603,abortion pill online ohio,abortion clinics in ohio,centers,columbus +abortion,"('abortion centers in ohio', 'free abortion clinics in ohio')",abortion centers in ohio,free abortion clinics in ohio,8,4,google,2026-03-12 19:45:02.076603,abortion pill online ohio,abortion clinics in ohio,centers,free clinics +abortion,"('abortion centers in ohio', 'abortion clinic in cincinnati ohio')",abortion centers in ohio,abortion clinic in cincinnati ohio,9,4,google,2026-03-12 19:45:02.076603,abortion pill online ohio,abortion clinics in ohio,centers,clinic cincinnati +abortion,"('abortion doctors in ohio', 'abortion clinics in ohio')",abortion doctors in ohio,abortion clinics in ohio,1,4,google,2026-03-12 19:45:03.208645,abortion pill online ohio,abortion clinics in ohio,doctors,clinics +abortion,"('abortion doctors in ohio', 'abortion services in ohio')",abortion doctors in ohio,abortion services in ohio,2,4,google,2026-03-12 19:45:03.208645,abortion pill online ohio,abortion clinics in ohio,doctors,services +abortion,"('abortion doctors in ohio', 'abortion clinics in ohio near me')",abortion doctors in ohio,abortion clinics in ohio near me,3,4,google,2026-03-12 19:45:03.208645,abortion pill online ohio,abortion clinics in ohio,doctors,clinics near me +abortion,"('abortion doctors in ohio', 'abortion providers in ohio')",abortion doctors in ohio,abortion providers in ohio,4,4,google,2026-03-12 19:45:03.208645,abortion pill online ohio,abortion clinics in ohio,doctors,providers +abortion,"('abortion doctors in ohio', 'free abortion clinics in ohio')",abortion doctors in ohio,free abortion clinics in ohio,5,4,google,2026-03-12 19:45:03.208645,abortion pill online ohio,abortion clinics in ohio,doctors,free clinics +abortion,"('abortion doctors in ohio', 'abortion clinics in columbus ohio')",abortion doctors in ohio,abortion clinics in columbus ohio,6,4,google,2026-03-12 19:45:03.208645,abortion pill online ohio,abortion clinics in ohio,doctors,clinics columbus +abortion,"('abortion doctors in ohio', 'abortion clinic in cincinnati ohio')",abortion doctors in ohio,abortion clinic in cincinnati ohio,7,4,google,2026-03-12 19:45:03.208645,abortion pill online ohio,abortion clinics in ohio,doctors,clinic cincinnati +abortion,"('abortion doctors in ohio', 'abortion clinic in cleveland ohio')",abortion doctors in ohio,abortion clinic in cleveland ohio,8,4,google,2026-03-12 19:45:03.208645,abortion pill online ohio,abortion clinics in ohio,doctors,clinic cleveland +abortion,"('abortion doctors in ohio', 'abortion clinic in dayton ohio')",abortion doctors in ohio,abortion clinic in dayton ohio,9,4,google,2026-03-12 19:45:03.208645,abortion pill online ohio,abortion clinics in ohio,doctors,clinic dayton +abortion,"('free abortion clinics in ohio', 'free abortion clinics in columbus ohio')",free abortion clinics in ohio,free abortion clinics in columbus ohio,1,4,google,2026-03-12 19:45:04.194935,abortion pill online ohio,abortion clinics in ohio,free,columbus +abortion,"('free abortion clinics in ohio', 'free abortion clinics near me')",free abortion clinics in ohio,free abortion clinics near me,2,4,google,2026-03-12 19:45:04.194935,abortion pill online ohio,abortion clinics in ohio,free,near me +abortion,"('free abortion clinics in ohio', 'free abortion centers near me')",free abortion clinics in ohio,free abortion centers near me,3,4,google,2026-03-12 19:45:04.194935,abortion pill online ohio,abortion clinics in ohio,free,centers near me +abortion,"('free abortion clinics in ohio', 'abortion clinics in ohio near me')",free abortion clinics in ohio,abortion clinics in ohio near me,4,4,google,2026-03-12 19:45:04.194935,abortion pill online ohio,abortion clinics in ohio,free,near me +abortion,"('free abortion clinics in ohio', 'free abortion clinics in cleveland ohio')",free abortion clinics in ohio,free abortion clinics in cleveland ohio,5,4,google,2026-03-12 19:45:04.194935,abortion pill online ohio,abortion clinics in ohio,free,cleveland +abortion,"('abortion clinics in columbus ohio', 'abortion clinic in columbus oh')",abortion clinics in columbus ohio,abortion clinic in columbus oh,1,4,google,2026-03-12 19:45:05.181661,abortion pill online ohio,abortion clinics in ohio,columbus,clinic oh +abortion,"('abortion clinics in columbus ohio', 'free abortion clinics in columbus ohio')",abortion clinics in columbus ohio,free abortion clinics in columbus ohio,2,4,google,2026-03-12 19:45:05.181661,abortion pill online ohio,abortion clinics in ohio,columbus,free +abortion,"('abortion clinics in columbus ohio', 'abortion clinic columbus ohio broad street')",abortion clinics in columbus ohio,abortion clinic columbus ohio broad street,3,4,google,2026-03-12 19:45:05.181661,abortion pill online ohio,abortion clinics in ohio,columbus,clinic broad street +abortion,"('abortion clinics in columbus ohio', 'abortion clinic near me columbus ohio')",abortion clinics in columbus ohio,abortion clinic near me columbus ohio,4,4,google,2026-03-12 19:45:05.181661,abortion pill online ohio,abortion clinics in ohio,columbus,clinic near me +abortion,"('abortion clinics in columbus ohio', 'abortion clinic cleveland ave columbus ohio')",abortion clinics in columbus ohio,abortion clinic cleveland ave columbus ohio,5,4,google,2026-03-12 19:45:05.181661,abortion pill online ohio,abortion clinics in ohio,columbus,clinic cleveland ave +abortion,"('abortion clinics in columbus ohio', 'abortion clinics in columbus ga')",abortion clinics in columbus ohio,abortion clinics in columbus ga,6,4,google,2026-03-12 19:45:05.181661,abortion pill online ohio,abortion clinics in ohio,columbus,ga +abortion,"('abortion clinics in columbus ohio', 'abortion clinics in columbus georgia')",abortion clinics in columbus ohio,abortion clinics in columbus georgia,7,4,google,2026-03-12 19:45:05.181661,abortion pill online ohio,abortion clinics in ohio,columbus,georgia +abortion,"('abortion clinics in cincinnati ohio', 'abortion centers in cincinnati ohio')",abortion clinics in cincinnati ohio,abortion centers in cincinnati ohio,1,4,google,2026-03-12 19:45:06.247812,abortion pill online ohio,abortion clinics in ohio,cincinnati,centers +abortion,"('abortion clinics in cincinnati ohio', 'abortion clinic near me cincinnati ohio')",abortion clinics in cincinnati ohio,abortion clinic near me cincinnati ohio,2,4,google,2026-03-12 19:45:06.247812,abortion pill online ohio,abortion clinics in ohio,cincinnati,clinic near me +abortion,"('abortion clinics in cincinnati ohio', 'abortion clinics near cincinnati oh')",abortion clinics in cincinnati ohio,abortion clinics near cincinnati oh,3,4,google,2026-03-12 19:45:06.247812,abortion pill online ohio,abortion clinics in ohio,cincinnati,near oh +abortion,"('abortion clinics in cleveland ohio', 'abortion clinic cleveland oh')",abortion clinics in cleveland ohio,abortion clinic cleveland oh,1,4,google,2026-03-12 19:45:07.241289,abortion pill online ohio,abortion clinics in ohio,cleveland,clinic oh +abortion,"('abortion clinics in cleveland ohio', 'abortion clinic near me cleveland ohio')",abortion clinics in cleveland ohio,abortion clinic near me cleveland ohio,2,4,google,2026-03-12 19:45:07.241289,abortion pill online ohio,abortion clinics in ohio,cleveland,clinic near me +abortion,"('abortion clinics in dayton ohio', 'abortion clinic near dayton ohio')",abortion clinics in dayton ohio,abortion clinic near dayton ohio,1,4,google,2026-03-12 19:45:08.445323,abortion pill online ohio,abortion clinics in ohio,dayton,clinic near +abortion,"('abortion clinics in dayton ohio', ""women's abortion clinic dayton ohio"")",abortion clinics in dayton ohio,women's abortion clinic dayton ohio,2,4,google,2026-03-12 19:45:08.445323,abortion pill online ohio,abortion clinics in ohio,dayton,women's clinic +abortion,"('abortion clinics in dayton ohio', 'abortion centers in dayton ohio')",abortion clinics in dayton ohio,abortion centers in dayton ohio,3,4,google,2026-03-12 19:45:08.445323,abortion pill online ohio,abortion clinics in ohio,dayton,centers +abortion,"('abortion clinics in dayton ohio', 'abortion clinic dayton oh')",abortion clinics in dayton ohio,abortion clinic dayton oh,4,4,google,2026-03-12 19:45:08.445323,abortion pill online ohio,abortion clinics in ohio,dayton,clinic oh +abortion,"('abortion clinics in toledo ohio', 'abortion clinic on sylvania in toledo ohio')",abortion clinics in toledo ohio,abortion clinic on sylvania in toledo ohio,1,4,google,2026-03-12 19:45:09.386791,abortion pill online ohio,abortion clinics in ohio,toledo,clinic on sylvania +abortion,"('abortion clinics in toledo ohio', 'abortion clinic toledo oh')",abortion clinics in toledo ohio,abortion clinic toledo oh,2,4,google,2026-03-12 19:45:09.386791,abortion pill online ohio,abortion clinics in ohio,toledo,clinic oh +abortion,"('abortion clinics in toledo ohio', 'abortion clinics in ohio near me')",abortion clinics in toledo ohio,abortion clinics in ohio near me,3,4,google,2026-03-12 19:45:09.386791,abortion pill online ohio,abortion clinics in ohio,toledo,near me +abortion,"('abortion pill ohio near me', 'abortion clinic ohio near me')",abortion pill ohio near me,abortion clinic ohio near me,1,4,google,2026-03-12 19:45:10.196852,abortion pill online ohio,abortion pill ohio,near me,clinic +abortion,"('abortion pill ohio near me', 'abortion pill ohio online')",abortion pill ohio near me,abortion pill ohio online,2,4,google,2026-03-12 19:45:10.196852,abortion pill online ohio,abortion pill ohio,near me,online +abortion,"('abortion pill ohio near me', 'abortion pill ohio price')",abortion pill ohio near me,abortion pill ohio price,3,4,google,2026-03-12 19:45:10.196852,abortion pill online ohio,abortion pill ohio,near me,price +abortion,"('abortion pill ohio cvs', 'abortion pill cost cvs')",abortion pill ohio cvs,abortion pill cost cvs,1,4,google,2026-03-12 19:45:11.007511,abortion pill online ohio,abortion pill ohio,cvs,cost +abortion,"('abortion pill ohio cvs', 'abortion pill ohio price')",abortion pill ohio cvs,abortion pill ohio price,2,4,google,2026-03-12 19:45:11.007511,abortion pill online ohio,abortion pill ohio,cvs,price +abortion,"('abortion pill ohio cvs', 'abortion pill ohio online')",abortion pill ohio cvs,abortion pill ohio online,3,4,google,2026-03-12 19:45:11.007511,abortion pill online ohio,abortion pill ohio,cvs,online +abortion,"('abortion pill ohio cvs', 'abortion pill cvs walgreens')",abortion pill ohio cvs,abortion pill cvs walgreens,4,4,google,2026-03-12 19:45:11.007511,abortion pill online ohio,abortion pill ohio,cvs,walgreens +abortion,"('abortion pill ohio online', 'abortion pill near me online')",abortion pill ohio online,abortion pill near me online,1,4,google,2026-03-12 19:45:12.387338,abortion pill online ohio,abortion pill ohio,online,near me +abortion,"('abortion pill ohio online', 'abortion pill ohio price')",abortion pill ohio online,abortion pill ohio price,2,4,google,2026-03-12 19:45:12.387338,abortion pill online ohio,abortion pill ohio,online,price +abortion,"('abortion pill ohio free', 'free abortion pill columbus ohio')",abortion pill ohio free,free abortion pill columbus ohio,1,4,google,2026-03-12 19:45:13.671710,abortion pill online ohio,abortion pill ohio,free,columbus +abortion,"('abortion pill ohio free', 'abortion pill ohio online')",abortion pill ohio free,abortion pill ohio online,2,4,google,2026-03-12 19:45:13.671710,abortion pill online ohio,abortion pill ohio,free,online +abortion,"('abortion pill ohio free', 'abortion pill ohio price')",abortion pill ohio free,abortion pill ohio price,3,4,google,2026-03-12 19:45:13.671710,abortion pill online ohio,abortion pill ohio,free,price +abortion,"('abortion pill ohio name', 'is abortion legal in ohio')",abortion pill ohio name,is abortion legal in ohio,1,4,google,2026-03-12 19:45:14.960636,abortion pill online ohio,abortion pill ohio,name,is legal in +abortion,"('abortion pill ohio name', 'abortion pill ohio online')",abortion pill ohio name,abortion pill ohio online,2,4,google,2026-03-12 19:45:14.960636,abortion pill online ohio,abortion pill ohio,name,online +abortion,"('abortion pill ohio name', 'abortion pill ohio price')",abortion pill ohio name,abortion pill ohio price,3,4,google,2026-03-12 19:45:14.960636,abortion pill online ohio,abortion pill ohio,name,price +abortion,"('abortion pill ohio name', 'abortion pill ohio')",abortion pill ohio name,abortion pill ohio,4,4,google,2026-03-12 19:45:14.960636,abortion pill online ohio,abortion pill ohio,name,name +abortion,"('abortion pill ohio reddit', 'are abortions banned in ohio')",abortion pill ohio reddit,are abortions banned in ohio,1,4,google,2026-03-12 19:45:16.028319,abortion pill online ohio,abortion pill ohio,reddit,are abortions banned in +abortion,"('abortion pill ohio reddit', 'abortion pill ohio price')",abortion pill ohio reddit,abortion pill ohio price,2,4,google,2026-03-12 19:45:16.028319,abortion pill online ohio,abortion pill ohio,reddit,price +abortion,"('abortion pill ohio reddit', 'abortion pill ohio online')",abortion pill ohio reddit,abortion pill ohio online,3,4,google,2026-03-12 19:45:16.028319,abortion pill online ohio,abortion pill ohio,reddit,online +abortion,"('abortion pill ohio reddit', 'abortion pill ohio')",abortion pill ohio reddit,abortion pill ohio,4,4,google,2026-03-12 19:45:16.028319,abortion pill online ohio,abortion pill ohio,reddit,reddit +abortion,"('abortion pill ohio side effects', 'abortion rights in ohio')",abortion pill ohio side effects,abortion rights in ohio,1,4,google,2026-03-12 19:45:16.951239,abortion pill online ohio,abortion pill ohio,side effects,rights in +abortion,"('abortion pill ohio side effects', 'is the abortion pill illegal in ohio')",abortion pill ohio side effects,is the abortion pill illegal in ohio,2,4,google,2026-03-12 19:45:16.951239,abortion pill online ohio,abortion pill ohio,side effects,is the illegal in +abortion,"('abortion pill ohio side effects', 'abortion pill side effects reviews')",abortion pill ohio side effects,abortion pill side effects reviews,3,4,google,2026-03-12 19:45:16.951239,abortion pill online ohio,abortion pill ohio,side effects,reviews +abortion,"('abortion pill ohio side effects', 'abortion pill ohio price')",abortion pill ohio side effects,abortion pill ohio price,4,4,google,2026-03-12 19:45:16.951239,abortion pill online ohio,abortion pill ohio,side effects,price +abortion,"('abortion pill ohio side effects', 'abortion pill side effects after')",abortion pill ohio side effects,abortion pill side effects after,5,4,google,2026-03-12 19:45:16.951239,abortion pill online ohio,abortion pill ohio,side effects,after +abortion,"('abortion clinic ohio', 'abortion clinic ohio near me')",abortion clinic ohio,abortion clinic ohio near me,1,4,google,2026-03-12 19:45:18.034229,abortion pill online ohio,abortion pill ohio,clinic,near me +abortion,"('abortion clinic ohio', 'abortion clinic ohio cincinnati')",abortion clinic ohio,abortion clinic ohio cincinnati,2,4,google,2026-03-12 19:45:18.034229,abortion pill online ohio,abortion pill ohio,clinic,cincinnati +abortion,"('abortion clinic ohio', 'abortion clinic ohio columbus')",abortion clinic ohio,abortion clinic ohio columbus,3,4,google,2026-03-12 19:45:18.034229,abortion pill online ohio,abortion pill ohio,clinic,columbus +abortion,"('abortion clinic ohio', 'abortion services ohio')",abortion clinic ohio,abortion services ohio,4,4,google,2026-03-12 19:45:18.034229,abortion pill online ohio,abortion pill ohio,clinic,services +abortion,"('abortion clinic ohio', ""women's clinic ohio"")",abortion clinic ohio,women's clinic ohio,5,4,google,2026-03-12 19:45:18.034229,abortion pill online ohio,abortion pill ohio,clinic,women's +abortion,"('abortion clinic ohio', 'abortion clinic oh')",abortion clinic ohio,abortion clinic oh,6,4,google,2026-03-12 19:45:18.034229,abortion pill online ohio,abortion pill ohio,clinic,oh +abortion,"('abortion clinic ohio', 'abortion clinic dayton ohio')",abortion clinic ohio,abortion clinic dayton ohio,7,4,google,2026-03-12 19:45:18.034229,abortion pill online ohio,abortion pill ohio,clinic,dayton +abortion,"('abortion clinic ohio', 'abortion clinic akron ohio')",abortion clinic ohio,abortion clinic akron ohio,8,4,google,2026-03-12 19:45:18.034229,abortion pill online ohio,abortion pill ohio,clinic,akron +abortion,"('abortion clinic ohio', 'abortion clinic toledo ohio')",abortion clinic ohio,abortion clinic toledo ohio,9,4,google,2026-03-12 19:45:18.034229,abortion pill online ohio,abortion pill ohio,clinic,toledo +abortion,"('morning after pill ohio', 'is the morning after pill legal in ohio')",morning after pill ohio,is the morning after pill legal in ohio,1,4,google,2026-03-12 19:45:19.185909,abortion pill online ohio,abortion pill ohio,morning after,is the legal in +abortion,"('morning after pill ohio', 'is the morning after pill available in ohio')",morning after pill ohio,is the morning after pill available in ohio,2,4,google,2026-03-12 19:45:19.185909,abortion pill online ohio,abortion pill ohio,morning after,is the available in +abortion,"('morning after pill ohio', 'morning after pill otc')",morning after pill ohio,morning after pill otc,3,4,google,2026-03-12 19:45:19.185909,abortion pill online ohio,abortion pill ohio,morning after,otc +abortion,"('morning after pill ohio', 'morning after pill on amazon')",morning after pill ohio,morning after pill on amazon,4,4,google,2026-03-12 19:45:19.185909,abortion pill online ohio,abortion pill ohio,morning after,on amazon +abortion,"('is abortion pill available in ohio', 'is the morning after pill available in ohio')",is abortion pill available in ohio,is the morning after pill available in ohio,1,4,google,2026-03-12 19:45:20.218678,abortion pill online ohio,abortion pill legal in ohio,is available,the morning after +abortion,"('is abortion pill available in ohio', 'is abortion pill legal in ohio')",is abortion pill available in ohio,is abortion pill legal in ohio,2,4,google,2026-03-12 19:45:20.218678,abortion pill online ohio,abortion pill legal in ohio,is available,legal +abortion,"('is abortion pill available in ohio', 'is abortion pills illegal in ohio')",is abortion pill available in ohio,is abortion pills illegal in ohio,3,4,google,2026-03-12 19:45:20.218678,abortion pill online ohio,abortion pill legal in ohio,is available,pills illegal +abortion,"('is abortion pill available in ohio', 'is abortion legal in ohio')",is abortion pill available in ohio,is abortion legal in ohio,4,4,google,2026-03-12 19:45:20.218678,abortion pill online ohio,abortion pill legal in ohio,is available,legal +abortion,"('is abortion pill available in ohio', 'ohio abortion pill laws')",is abortion pill available in ohio,ohio abortion pill laws,5,4,google,2026-03-12 19:45:20.218678,abortion pill online ohio,abortion pill legal in ohio,is available,laws +abortion,"('are abortion pills illegal in ohio', 'are abortion pills legal in ohio')",are abortion pills illegal in ohio,are abortion pills legal in ohio,1,4,google,2026-03-12 19:45:21.131561,abortion pill online ohio,abortion pill legal in ohio,are pills illegal,legal +abortion,"('are abortion pills illegal in ohio', 'is medication abortion legal in ohio')",are abortion pills illegal in ohio,is medication abortion legal in ohio,2,4,google,2026-03-12 19:45:21.131561,abortion pill online ohio,abortion pill legal in ohio,are pills illegal,is medication legal +abortion,"('are abortion pills illegal in ohio', 'is abortion legal in ohio')",are abortion pills illegal in ohio,is abortion legal in ohio,3,4,google,2026-03-12 19:45:21.131561,abortion pill online ohio,abortion pill legal in ohio,are pills illegal,is legal +abortion,"('are abortion pills illegal in ohio', 'are abortions banned in ohio')",are abortion pills illegal in ohio,are abortions banned in ohio,4,4,google,2026-03-12 19:45:21.131561,abortion pill online ohio,abortion pill legal in ohio,are pills illegal,abortions banned +abortion,"('are abortion pills illegal in ohio', 'are abortions illegal in ohio 2022')",are abortion pills illegal in ohio,are abortions illegal in ohio 2022,5,4,google,2026-03-12 19:45:21.131561,abortion pill online ohio,abortion pill legal in ohio,are pills illegal,abortions 2022 +abortion,"('are abortion pills illegal in ohio', 'are abortions illegal in ohio now')",are abortion pills illegal in ohio,are abortions illegal in ohio now,6,4,google,2026-03-12 19:45:21.131561,abortion pill online ohio,abortion pill legal in ohio,are pills illegal,abortions now +abortion,"('are abortion pills illegal in ohio', 'is abortion illegal in ohio 2021')",are abortion pills illegal in ohio,is abortion illegal in ohio 2021,7,4,google,2026-03-12 19:45:21.131561,abortion pill online ohio,abortion pill legal in ohio,are pills illegal,is 2021 +abortion,"('is medication abortion legal in ohio', 'is pill abortion legal in ohio')",is medication abortion legal in ohio,is pill abortion legal in ohio,1,4,google,2026-03-12 19:45:22.466144,abortion pill online ohio,abortion pill legal in ohio,is medication,pill +abortion,"('is medication abortion legal in ohio', 'is abortion pills illegal in ohio')",is medication abortion legal in ohio,is abortion pills illegal in ohio,2,4,google,2026-03-12 19:45:22.466144,abortion pill online ohio,abortion pill legal in ohio,is medication,pills illegal +abortion,"('is medication abortion legal in ohio', 'is abortion legal in ohio')",is medication abortion legal in ohio,is abortion legal in ohio,3,4,google,2026-03-12 19:45:22.466144,abortion pill online ohio,abortion pill legal in ohio,is medication,is medication +abortion,"('is medication abortion legal in ohio', 'are abortions banned in ohio')",is medication abortion legal in ohio,are abortions banned in ohio,4,4,google,2026-03-12 19:45:22.466144,abortion pill online ohio,abortion pill legal in ohio,is medication,are abortions banned +abortion,"('is medication abortion legal in ohio', 'abortion rights in ohio')",is medication abortion legal in ohio,abortion rights in ohio,5,4,google,2026-03-12 19:45:22.466144,abortion pill online ohio,abortion pill legal in ohio,is medication,rights +abortion,"('is medication abortion legal in ohio', 'is medication abortion legal in all states')",is medication abortion legal in ohio,is medication abortion legal in all states,6,4,google,2026-03-12 19:45:22.466144,abortion pill online ohio,abortion pill legal in ohio,is medication,all states +abortion,"('is medication abortion legal in ohio', 'is medication abortion still legal')",is medication abortion legal in ohio,is medication abortion still legal,7,4,google,2026-03-12 19:45:22.466144,abortion pill online ohio,abortion pill legal in ohio,is medication,still +abortion,"('is the morning after pill legal in ohio', 'is the morning after pill available in ohio')",is the morning after pill legal in ohio,is the morning after pill available in ohio,1,4,google,2026-03-12 19:45:23.287071,abortion pill online ohio,abortion pill legal in ohio,is the morning after,available +abortion,"('is the morning after pill legal in ohio', 'is the morning after pill legal in all states')",is the morning after pill legal in ohio,is the morning after pill legal in all states,2,4,google,2026-03-12 19:45:23.287071,abortion pill online ohio,abortion pill legal in ohio,is the morning after,all states +abortion,"('is the morning after pill legal in ohio', 'is the morning after pill legal in texas')",is the morning after pill legal in ohio,is the morning after pill legal in texas,3,4,google,2026-03-12 19:45:23.287071,abortion pill online ohio,abortion pill legal in ohio,is the morning after,texas +abortion,"('is the morning after pill legal in ohio', 'is plan b banned in any states')",is the morning after pill legal in ohio,is plan b banned in any states,4,4,google,2026-03-12 19:45:23.287071,abortion pill online ohio,abortion pill legal in ohio,is the morning after,plan b banned any states +abortion,"('is the morning after pill legal in ohio', 'is the morning after pill illegal in ohio')",is the morning after pill legal in ohio,is the morning after pill illegal in ohio,5,4,google,2026-03-12 19:45:23.287071,abortion pill online ohio,abortion pill legal in ohio,is the morning after,illegal +abortion,"('is the morning after pill legal in ohio', 'is the morning after pill still available in ohio')",is the morning after pill legal in ohio,is the morning after pill still available in ohio,6,4,google,2026-03-12 19:45:23.287071,abortion pill online ohio,abortion pill legal in ohio,is the morning after,still available +abortion,"('is the morning after pill legal in ohio', 'is the morning after pill legal in all 50 states')",is the morning after pill legal in ohio,is the morning after pill legal in all 50 states,7,4,google,2026-03-12 19:45:23.287071,abortion pill online ohio,abortion pill legal in ohio,is the morning after,all 50 states +abortion,"('abortion rights in ohio', 'abortion rights in ohio 2025')",abortion rights in ohio,abortion rights in ohio 2025,1,4,google,2026-03-12 19:45:24.521061,abortion pill online ohio,abortion pill legal in ohio,rights,2025 +abortion,"('abortion rights in ohio', 'abortion laws in ohio')",abortion rights in ohio,abortion laws in ohio,2,4,google,2026-03-12 19:45:24.521061,abortion pill online ohio,abortion pill legal in ohio,rights,laws +abortion,"('abortion rights in ohio', 'abortion laws in ohio 2025')",abortion rights in ohio,abortion laws in ohio 2025,3,4,google,2026-03-12 19:45:24.521061,abortion pill online ohio,abortion pill legal in ohio,rights,laws 2025 +abortion,"('abortion rights in ohio', 'abortion legal in ohio')",abortion rights in ohio,abortion legal in ohio,4,4,google,2026-03-12 19:45:24.521061,abortion pill online ohio,abortion pill legal in ohio,rights,legal +abortion,"('abortion rights in ohio', 'abortion rules in ohio')",abortion rights in ohio,abortion rules in ohio,5,4,google,2026-03-12 19:45:24.521061,abortion pill online ohio,abortion pill legal in ohio,rights,rules +abortion,"('abortion rights in ohio', 'abortion illegal in ohio')",abortion rights in ohio,abortion illegal in ohio,6,4,google,2026-03-12 19:45:24.521061,abortion pill online ohio,abortion pill legal in ohio,rights,illegal +abortion,"('abortion rights in ohio', ""ohio women's rights"")",abortion rights in ohio,ohio women's rights,7,4,google,2026-03-12 19:45:24.521061,abortion pill online ohio,abortion pill legal in ohio,rights,women's +abortion,"('abortion rights in ohio', 'reproductive rights in ohio')",abortion rights in ohio,reproductive rights in ohio,8,4,google,2026-03-12 19:45:24.521061,abortion pill online ohio,abortion pill legal in ohio,rights,reproductive +abortion,"('abortion rights in ohio', 'abortion laws in ohio how many weeks')",abortion rights in ohio,abortion laws in ohio how many weeks,9,4,google,2026-03-12 19:45:24.521061,abortion pill online ohio,abortion pill legal in ohio,rights,laws how many weeks +abortion,"('abortion laws in ohio', 'abortion laws in ohio 2025')",abortion laws in ohio,abortion laws in ohio 2025,1,4,google,2026-03-12 19:45:25.783076,abortion pill online ohio,abortion pill legal in ohio,laws,2025 +abortion,"('abortion laws in ohio', 'abortion laws in ohio 2026')",abortion laws in ohio,abortion laws in ohio 2026,2,4,google,2026-03-12 19:45:25.783076,abortion pill online ohio,abortion pill legal in ohio,laws,2026 +abortion,"('abortion laws in ohio', 'abortion laws in ohio how many weeks')",abortion laws in ohio,abortion laws in ohio how many weeks,3,4,google,2026-03-12 19:45:25.783076,abortion pill online ohio,abortion pill legal in ohio,laws,how many weeks +abortion,"('abortion laws in ohio', 'abortion laws in ohio 2024')",abortion laws in ohio,abortion laws in ohio 2024,4,4,google,2026-03-12 19:45:25.783076,abortion pill online ohio,abortion pill legal in ohio,laws,2024 +abortion,"('abortion laws in ohio', 'abortion laws in ohio right now')",abortion laws in ohio,abortion laws in ohio right now,5,4,google,2026-03-12 19:45:25.783076,abortion pill online ohio,abortion pill legal in ohio,laws,right now +abortion,"('abortion laws in ohio', 'abortion laws in ohio for minors')",abortion laws in ohio,abortion laws in ohio for minors,6,4,google,2026-03-12 19:45:25.783076,abortion pill online ohio,abortion pill legal in ohio,laws,for minors +abortion,"('abortion laws in ohio', 'abortion legal in ohio')",abortion laws in ohio,abortion legal in ohio,7,4,google,2026-03-12 19:45:25.783076,abortion pill online ohio,abortion pill legal in ohio,laws,legal +abortion,"('abortion laws in ohio', 'abortion illegal in ohio')",abortion laws in ohio,abortion illegal in ohio,8,4,google,2026-03-12 19:45:25.783076,abortion pill online ohio,abortion pill legal in ohio,laws,illegal +abortion,"('abortion laws in ohio', 'abortion limits in ohio')",abortion laws in ohio,abortion limits in ohio,9,4,google,2026-03-12 19:45:25.783076,abortion pill online ohio,abortion pill legal in ohio,laws,limits +abortion,"('is abortion legal in ohio', 'is abortion legal in ohio 2025')",is abortion legal in ohio,is abortion legal in ohio 2025,1,4,google,2026-03-12 19:45:26.954842,abortion pill online ohio,abortion pill legal in ohio,is,2025 +abortion,"('is abortion legal in ohio', 'is abortion legal in ohio 2026')",is abortion legal in ohio,is abortion legal in ohio 2026,2,4,google,2026-03-12 19:45:26.954842,abortion pill online ohio,abortion pill legal in ohio,is,2026 +abortion,"('is abortion legal in ohio', 'is abortion legal in ohio 2024')",is abortion legal in ohio,is abortion legal in ohio 2024,3,4,google,2026-03-12 19:45:26.954842,abortion pill online ohio,abortion pill legal in ohio,is,2024 +abortion,"('is abortion legal in ohio', 'is abortion legal in ohio now')",is abortion legal in ohio,is abortion legal in ohio now,4,4,google,2026-03-12 19:45:26.954842,abortion pill online ohio,abortion pill legal in ohio,is,now +abortion,"('is abortion legal in ohio', 'is abortion legal in ohio 2025 exceptions')",is abortion legal in ohio,is abortion legal in ohio 2025 exceptions,5,4,google,2026-03-12 19:45:26.954842,abortion pill online ohio,abortion pill legal in ohio,is,2025 exceptions +abortion,"('is abortion legal in ohio', 'is abortion legal in ohio 2024 update')",is abortion legal in ohio,is abortion legal in ohio 2024 update,6,4,google,2026-03-12 19:45:26.954842,abortion pill online ohio,abortion pill legal in ohio,is,2024 update +abortion,"('is abortion legal in ohio', 'is abortion legal in ohio 2023')",is abortion legal in ohio,is abortion legal in ohio 2023,7,4,google,2026-03-12 19:45:26.954842,abortion pill online ohio,abortion pill legal in ohio,is,2023 +abortion,"('is abortion legal in ohio', 'is abortion legal in ohio still')",is abortion legal in ohio,is abortion legal in ohio still,8,4,google,2026-03-12 19:45:26.954842,abortion pill online ohio,abortion pill legal in ohio,is,still +abortion,"('is abortion legal in ohio', 'is abortion legal in ohio 2022')",is abortion legal in ohio,is abortion legal in ohio 2022,9,4,google,2026-03-12 19:45:26.954842,abortion pill online ohio,abortion pill legal in ohio,is,2022 +abortion,"('abortion laws in ohio 2020', 'abortion laws in ohio 2020-2024')",abortion laws in ohio 2020,abortion laws in ohio 2020-2024,1,4,google,2026-03-12 19:45:28.372756,abortion pill online ohio,abortion pill laws in ohio,2020,2020-2024 +abortion,"('abortion laws in ohio 2020', 'abortion laws in ohio 2020 to present')",abortion laws in ohio 2020,abortion laws in ohio 2020 to present,2,4,google,2026-03-12 19:45:28.372756,abortion pill online ohio,abortion pill laws in ohio,2020,to present +abortion,"('abortion laws in ohio 2020', 'abortion laws in ohio 2020-2023')",abortion laws in ohio 2020,abortion laws in ohio 2020-2023,3,4,google,2026-03-12 19:45:28.372756,abortion pill online ohio,abortion pill laws in ohio,2020,2020-2023 +abortion,"('abortion laws in ohio 2021', 'abortion laws in ohio 2021 abortion laws')",abortion laws in ohio 2021,abortion laws in ohio 2021 abortion laws,1,4,google,2026-03-12 19:45:29.531933,abortion pill online ohio,abortion pill laws in ohio,2021,2021 +abortion,"('abortion laws in ohio 2021', 'abortion laws in ohio 2021-2024')",abortion laws in ohio 2021,abortion laws in ohio 2021-2024,2,4,google,2026-03-12 19:45:29.531933,abortion pill online ohio,abortion pill laws in ohio,2021,2021-2024 +abortion,"('abortion laws in ohio 2021', 'abortion laws in ohio 2021 abortion')",abortion laws in ohio 2021,abortion laws in ohio 2021 abortion,3,4,google,2026-03-12 19:45:29.531933,abortion pill online ohio,abortion pill laws in ohio,2021,2021 +abortion,"('abortion pill in arizona', 'abortion clinics in arizona')",abortion pill in arizona,abortion clinics in arizona,1,4,google,2026-03-12 19:45:30.386357,abortion pill online abuzz,abortion pill online az,in arizona,clinics +abortion,"('abortion pill in arizona', 'abortion options in arizona')",abortion pill in arizona,abortion options in arizona,2,4,google,2026-03-12 19:45:30.386357,abortion pill online abuzz,abortion pill online az,in arizona,options +abortion,"('abortion pill in arizona', 'abortion pill legal in arizona')",abortion pill in arizona,abortion pill legal in arizona,3,4,google,2026-03-12 19:45:30.386357,abortion pill online abuzz,abortion pill online az,in arizona,legal +abortion,"('abortion pill in arizona', 'abortion pill law in arizona')",abortion pill in arizona,abortion pill law in arizona,4,4,google,2026-03-12 19:45:30.386357,abortion pill online abuzz,abortion pill online az,in arizona,law +abortion,"('abortion pill in arizona', 'abortion pill in phoenix')",abortion pill in arizona,abortion pill in phoenix,5,4,google,2026-03-12 19:45:30.386357,abortion pill online abuzz,abortion pill online az,in arizona,phoenix +abortion,"('abortion pill in arizona', 'abortion pill arizona free')",abortion pill in arizona,abortion pill arizona free,6,4,google,2026-03-12 19:45:30.386357,abortion pill online abuzz,abortion pill online az,in arizona,free +abortion,"('abortion pill in arizona', 'abortion pill phoenix arizona')",abortion pill in arizona,abortion pill phoenix arizona,7,4,google,2026-03-12 19:45:30.386357,abortion pill online abuzz,abortion pill online az,in arizona,phoenix +abortion,"('abortion pill in arizona', 'abortion pill tucson arizona')",abortion pill in arizona,abortion pill tucson arizona,8,4,google,2026-03-12 19:45:30.386357,abortion pill online abuzz,abortion pill online az,in arizona,tucson +abortion,"('abortion pill in arizona', 'abortion clinics in phoenix arizona')",abortion pill in arizona,abortion clinics in phoenix arizona,9,4,google,2026-03-12 19:45:30.386357,abortion pill online abuzz,abortion pill online az,in arizona,clinics phoenix +abortion,"('abortion pill online purchase', 'morning after pill online purchase')",abortion pill online purchase,morning after pill online purchase,1,4,google,2026-03-12 19:45:31.531423,abortion pill online abuzz,abortion pill online access,purchase,morning after +abortion,"('abortion pill online purchase', 'abortion pill buy online canada')",abortion pill online purchase,abortion pill buy online canada,2,4,google,2026-03-12 19:45:31.531423,abortion pill online abuzz,abortion pill online access,purchase,buy canada +abortion,"('abortion pill online purchase', 'morning after pill order online free')",abortion pill online purchase,morning after pill order online free,3,4,google,2026-03-12 19:45:31.531423,abortion pill online abuzz,abortion pill online access,purchase,morning after order free +abortion,"('abortion pill online purchase', 'morning after pill buy online uk')",abortion pill online purchase,morning after pill buy online uk,4,4,google,2026-03-12 19:45:31.531423,abortion pill online abuzz,abortion pill online access,purchase,morning after buy uk +abortion,"('abortion pill online purchase', 'morning after pill buy online australia')",abortion pill online purchase,morning after pill buy online australia,5,4,google,2026-03-12 19:45:31.531423,abortion pill online abuzz,abortion pill online access,purchase,morning after buy australia +abortion,"('abortion pill online purchase', 'morning after pill order online boots')",abortion pill online purchase,morning after pill order online boots,6,4,google,2026-03-12 19:45:31.531423,abortion pill online abuzz,abortion pill online access,purchase,morning after order boots +abortion,"('morning after pill online purchase', 'morning after pill order online free')",morning after pill online purchase,morning after pill order online free,1,4,google,2026-03-12 19:45:32.418096,abortion pill online cheapest,abortion pill online prices,morning after purchase,order free +abortion,"('morning after pill online purchase', 'morning after pill buy online uk')",morning after pill online purchase,morning after pill buy online uk,2,4,google,2026-03-12 19:45:32.418096,abortion pill online cheapest,abortion pill online prices,morning after purchase,buy uk +abortion,"('morning after pill online purchase', 'morning after pill buy online australia')",morning after pill online purchase,morning after pill buy online australia,3,4,google,2026-03-12 19:45:32.418096,abortion pill online cheapest,abortion pill online prices,morning after purchase,buy australia +abortion,"('morning after pill online purchase', 'morning after pill order online boots')",morning after pill online purchase,morning after pill order online boots,4,4,google,2026-03-12 19:45:32.418096,abortion pill online cheapest,abortion pill online prices,morning after purchase,order boots +abortion,"('morning after pill online purchase', 'morning after pill ireland order online')",morning after pill online purchase,morning after pill ireland order online,5,4,google,2026-03-12 19:45:32.418096,abortion pill online cheapest,abortion pill online prices,morning after purchase,ireland order +abortion,"('morning after pill online purchase', 'morning after pill on amazon')",morning after pill online purchase,morning after pill on amazon,6,4,google,2026-03-12 19:45:32.418096,abortion pill online cheapest,abortion pill online prices,morning after purchase,on amazon +abortion,"('morning after pill online purchase', 'morning after pill otc walgreens')",morning after pill online purchase,morning after pill otc walgreens,7,4,google,2026-03-12 19:45:32.418096,abortion pill online cheapest,abortion pill online prices,morning after purchase,otc walgreens +abortion,"('morning after pill online purchase', 'morning after pill otc')",morning after pill online purchase,morning after pill otc,8,4,google,2026-03-12 19:45:32.418096,abortion pill online cheapest,abortion pill online prices,morning after purchase,otc +abortion,"('morning after pill online buy', 'morning after pill buy online uk')",morning after pill online buy,morning after pill buy online uk,1,4,google,2026-03-12 19:45:33.363011,abortion pill online cheapest,morning after pill online cheap,buy,uk +abortion,"('morning after pill online buy', 'morning after pill buy online australia')",morning after pill online buy,morning after pill buy online australia,2,4,google,2026-03-12 19:45:33.363011,abortion pill online cheapest,morning after pill online cheap,buy,australia +abortion,"('morning after pill online buy', 'buy morning after pill online south africa')",morning after pill online buy,buy morning after pill online south africa,3,4,google,2026-03-12 19:45:33.363011,abortion pill online cheapest,morning after pill online cheap,buy,south africa +abortion,"('morning after pill online buy', 'can i buy morning after pill online at clicks')",morning after pill online buy,can i buy morning after pill online at clicks,4,4,google,2026-03-12 19:45:33.363011,abortion pill online cheapest,morning after pill online cheap,buy,can i at clicks +abortion,"('morning after pill online buy', 'can i buy morning after pill online at dischem')",morning after pill online buy,can i buy morning after pill online at dischem,5,4,google,2026-03-12 19:45:33.363011,abortion pill online cheapest,morning after pill online cheap,buy,can i at dischem +abortion,"('morning after pill online buy', 'can i buy morning after pill online at clicks south africa')",morning after pill online buy,can i buy morning after pill online at clicks south africa,6,4,google,2026-03-12 19:45:33.363011,abortion pill online cheapest,morning after pill online cheap,buy,can i at clicks south africa +abortion,"('morning after pill online buy', 'can i buy morning-after pill online at clicks price')",morning after pill online buy,can i buy morning-after pill online at clicks price,7,4,google,2026-03-12 19:45:33.363011,abortion pill online cheapest,morning after pill online cheap,buy,can i morning-after at clicks price +abortion,"('morning after pill online buy', 'how much do morning after pill cost at clicks')",morning after pill online buy,how much do morning after pill cost at clicks,8,4,google,2026-03-12 19:45:33.363011,abortion pill online cheapest,morning after pill online cheap,buy,how much do cost at clicks +abortion,"('morning after pill online buy', 'morning after pill on amazon')",morning after pill online buy,morning after pill on amazon,9,4,google,2026-03-12 19:45:33.363011,abortion pill online cheapest,morning after pill online cheap,buy,on amazon +abortion,"('morning after pill buy online uk', 'morning after pill free online uk')",morning after pill buy online uk,morning after pill free online uk,1,4,google,2026-03-12 19:45:34.578458,abortion pill online cheapest,morning after pill online cheap,buy uk,free +abortion,"('morning after pill buy online uk', 'morning after pill to buy online')",morning after pill buy online uk,morning after pill to buy online,2,4,google,2026-03-12 19:45:34.578458,abortion pill online cheapest,morning after pill online cheap,buy uk,to +abortion,"('morning after pill buy online australia', 'can you buy morning after pill from pharmacy')",morning after pill buy online australia,can you buy morning after pill from pharmacy,1,4,google,2026-03-12 19:45:35.786330,abortion pill online cheapest,morning after pill online cheap,buy australia,can you from pharmacy +abortion,"('morning after pill buy online australia', 'can i get morning after pill online')",morning after pill buy online australia,can i get morning after pill online,2,4,google,2026-03-12 19:45:35.786330,abortion pill online cheapest,morning after pill online cheap,buy australia,can i get +abortion,"('morning after pill buy online australia', 'where to buy morning after pill over the counter')",morning after pill buy online australia,where to buy morning after pill over the counter,3,4,google,2026-03-12 19:45:35.786330,abortion pill online cheapest,morning after pill online cheap,buy australia,where to over the counter +abortion,"('morning after pill buy online australia', 'where to buy morning after pill australia')",morning after pill buy online australia,where to buy morning after pill australia,4,4,google,2026-03-12 19:45:35.786330,abortion pill online cheapest,morning after pill online cheap,buy australia,where to +abortion,"('morning after pill buy online australia', 'morning after pill where to buy it')",morning after pill buy online australia,morning after pill where to buy it,5,4,google,2026-03-12 19:45:35.786330,abortion pill online cheapest,morning after pill online cheap,buy australia,where to it +abortion,"('which pharmacies do free morning after pill', 'does well pharmacy do free morning after pill')",which pharmacies do free morning after pill,does well pharmacy do free morning after pill,1,4,google,2026-03-12 19:45:37.094725,abortion pill online cheapest,morning after pill online cheap,which pharmacies do free,does well pharmacy +abortion,"('which pharmacies do free morning after pill', 'does tesco pharmacy do free morning after pill')",which pharmacies do free morning after pill,does tesco pharmacy do free morning after pill,2,4,google,2026-03-12 19:45:37.094725,abortion pill online cheapest,morning after pill online cheap,which pharmacies do free,does tesco pharmacy +abortion,"('which pharmacies do free morning after pill', 'does asda pharmacy do free morning after pill')",which pharmacies do free morning after pill,does asda pharmacy do free morning after pill,3,4,google,2026-03-12 19:45:37.094725,abortion pill online cheapest,morning after pill online cheap,which pharmacies do free,does asda pharmacy +abortion,"('which pharmacies do free morning after pill', 'do boots pharmacy do free morning after pill')",which pharmacies do free morning after pill,do boots pharmacy do free morning after pill,4,4,google,2026-03-12 19:45:37.094725,abortion pill online cheapest,morning after pill online cheap,which pharmacies do free,boots pharmacy +abortion,"('which pharmacies do free morning after pill', 'do pharmacies give free morning after pill')",which pharmacies do free morning after pill,do pharmacies give free morning after pill,5,4,google,2026-03-12 19:45:37.094725,abortion pill online cheapest,morning after pill online cheap,which pharmacies do free,give +abortion,"('which pharmacies do free morning after pill', 'does boots give morning after pill free')",which pharmacies do free morning after pill,does boots give morning after pill free,6,4,google,2026-03-12 19:45:37.094725,abortion pill online cheapest,morning after pill online cheap,which pharmacies do free,does boots give +abortion,"('which pharmacies do free morning after pill', 'which pharmacies offer free morning after pills')",which pharmacies do free morning after pill,which pharmacies offer free morning after pills,7,4,google,2026-03-12 19:45:37.094725,abortion pill online cheapest,morning after pill online cheap,which pharmacies do free,offer pills +abortion,"('morning after pill cheap near me', 'morning after pill near me')",morning after pill cheap near me,morning after pill near me,1,4,google,2026-03-12 19:45:37.958157,abortion pill online cheapest,morning after pill online cheap,near me,near me +abortion,"('morning after pill cheap near me', 'morning after pill near me free')",morning after pill cheap near me,morning after pill near me free,2,4,google,2026-03-12 19:45:37.958157,abortion pill online cheapest,morning after pill online cheap,near me,free +abortion,"('morning after pill cheap near me', 'morning after pill near me pharmacy')",morning after pill cheap near me,morning after pill near me pharmacy,3,4,google,2026-03-12 19:45:37.958157,abortion pill online cheapest,morning after pill online cheap,near me,pharmacy +abortion,"('morning after pill cheap near me', 'morning after pill near me delivery')",morning after pill cheap near me,morning after pill near me delivery,4,4,google,2026-03-12 19:45:37.958157,abortion pill online cheapest,morning after pill online cheap,near me,delivery +abortion,"('morning after pill cheap near me', 'day after pill near me')",morning after pill cheap near me,day after pill near me,5,4,google,2026-03-12 19:45:37.958157,abortion pill online cheapest,morning after pill online cheap,near me,day +abortion,"('morning after pill cheap near me', 'morning after pill chemist near me')",morning after pill cheap near me,morning after pill chemist near me,6,4,google,2026-03-12 19:45:37.958157,abortion pill online cheapest,morning after pill online cheap,near me,chemist +abortion,"('morning after pill cheap near me', 'plan b pill cheap near me')",morning after pill cheap near me,plan b pill cheap near me,7,4,google,2026-03-12 19:45:37.958157,abortion pill online cheapest,morning after pill online cheap,near me,plan b +abortion,"('morning after pill cheap near me', 'morning after pill buy near me')",morning after pill cheap near me,morning after pill buy near me,8,4,google,2026-03-12 19:45:37.958157,abortion pill online cheapest,morning after pill online cheap,near me,buy +abortion,"('morning after pill cheap near me', 'morning after pill ella near me')",morning after pill cheap near me,morning after pill ella near me,9,4,google,2026-03-12 19:45:37.958157,abortion pill online cheapest,morning after pill online cheap,near me,ella +abortion,"('cheap morning after pill walgreens', 'morning after pill walgreens')",cheap morning after pill walgreens,morning after pill walgreens,1,4,google,2026-03-12 19:45:39.206573,abortion pill online cheapest,morning after pill online cheap,walgreens,walgreens +abortion,"('cheap morning after pill walgreens', 'morning after pill walgreens near me')",cheap morning after pill walgreens,morning after pill walgreens near me,2,4,google,2026-03-12 19:45:39.206573,abortion pill online cheapest,morning after pill online cheap,walgreens,near me +abortion,"('cheap morning after pill walgreens', 'morning after pill walgreens coupon')",cheap morning after pill walgreens,morning after pill walgreens coupon,3,4,google,2026-03-12 19:45:39.206573,abortion pill online cheapest,morning after pill online cheap,walgreens,coupon +abortion,"('cheap morning after pill walgreens', 'does walgreens sell morning after pill')",cheap morning after pill walgreens,does walgreens sell morning after pill,4,4,google,2026-03-12 19:45:39.206573,abortion pill online cheapest,morning after pill online cheap,walgreens,does sell +abortion,"('cheap morning after pill walgreens', 'how much is plan b at walgreens')",cheap morning after pill walgreens,how much is plan b at walgreens,5,4,google,2026-03-12 19:45:39.206573,abortion pill online cheapest,morning after pill online cheap,walgreens,how much is plan b at +abortion,"('cheap morning after pill walgreens', 'how much is generic plan b at walgreens')",cheap morning after pill walgreens,how much is generic plan b at walgreens,6,4,google,2026-03-12 19:45:39.206573,abortion pill online cheapest,morning after pill online cheap,walgreens,how much is generic plan b at +abortion,"('cheap morning after pill walgreens', 'cheap morning after pill cvs')",cheap morning after pill walgreens,cheap morning after pill cvs,7,4,google,2026-03-12 19:45:39.206573,abortion pill online cheapest,morning after pill online cheap,walgreens,cvs +abortion,"('cheap morning after pill walgreens', 'cheap morning after pill near me')",cheap morning after pill walgreens,cheap morning after pill near me,8,4,google,2026-03-12 19:45:39.206573,abortion pill online cheapest,morning after pill online cheap,walgreens,near me +abortion,"('cheap morning after pill walgreens', 'cheapest morning after pill near me')",cheap morning after pill walgreens,cheapest morning after pill near me,9,4,google,2026-03-12 19:45:39.206573,abortion pill online cheapest,morning after pill online cheap,walgreens,cheapest near me +abortion,"('cheap morning after pill cvs', 'cheapest morning after pill cvs')",cheap morning after pill cvs,cheapest morning after pill cvs,1,4,google,2026-03-12 19:45:40.635328,abortion pill online cheapest,morning after pill online cheap,cvs,cheapest +abortion,"('cheap morning after pill cvs', 'cost of morning after pill cvs')",cheap morning after pill cvs,cost of morning after pill cvs,2,4,google,2026-03-12 19:45:40.635328,abortion pill online cheapest,morning after pill online cheap,cvs,cost of +abortion,"('cheap morning after pill cvs', 'morning after pill cvs')",cheap morning after pill cvs,morning after pill cvs,3,4,google,2026-03-12 19:45:40.635328,abortion pill online cheapest,morning after pill online cheap,cvs,cvs +abortion,"('cheap morning after pill cvs', 'morning after pill cvs near me')",cheap morning after pill cvs,morning after pill cvs near me,4,4,google,2026-03-12 19:45:40.635328,abortion pill online cheapest,morning after pill online cheap,cvs,near me +abortion,"('cheap morning after pill cvs', 'morning after pill cvs pharmacy')",cheap morning after pill cvs,morning after pill cvs pharmacy,5,4,google,2026-03-12 19:45:40.635328,abortion pill online cheapest,morning after pill online cheap,cvs,pharmacy +abortion,"('cheap morning after pill cvs', 'morning after pill cvs generic')",cheap morning after pill cvs,morning after pill cvs generic,6,4,google,2026-03-12 19:45:40.635328,abortion pill online cheapest,morning after pill online cheap,cvs,generic +abortion,"('cheap morning after pill cvs', 'morning after pill cvs over the counter')",cheap morning after pill cvs,morning after pill cvs over the counter,7,4,google,2026-03-12 19:45:40.635328,abortion pill online cheapest,morning after pill online cheap,cvs,over the counter +abortion,"('cheap morning after pill cvs', 'morning after pill cvs nearby')",cheap morning after pill cvs,morning after pill cvs nearby,8,4,google,2026-03-12 19:45:40.635328,abortion pill online cheapest,morning after pill online cheap,cvs,nearby +abortion,"('cheap morning after pill cvs', 'morning after pill cvs side effects')",cheap morning after pill cvs,morning after pill cvs side effects,9,4,google,2026-03-12 19:45:40.635328,abortion pill online cheapest,morning after pill online cheap,cvs,side effects +abortion,"('abortion clinic in san jose ca', 'abortion clinics in san jose ca')",abortion clinic in san jose ca,abortion clinics in san jose ca,1,4,google,2026-03-12 19:45:41.471627,abortion clinic san jose,abortion clinic san jose california,in ca,clinics +abortion,"('abortion clinic in san jose ca', 'abortion clinics in san francisco')",abortion clinic in san jose ca,abortion clinics in san francisco,2,4,google,2026-03-12 19:45:41.471627,abortion clinic san jose,abortion clinic san jose california,in ca,clinics francisco +abortion,"('abortion clinic in san jose ca', 'abortion clinic near me surgical')",abortion clinic in san jose ca,abortion clinic near me surgical,3,4,google,2026-03-12 19:45:41.471627,abortion clinic san jose,abortion clinic san jose california,in ca,near me surgical +abortion,"('abortion clinic in san jose ca', 'abortion clinic in san jose')",abortion clinic in san jose ca,abortion clinic in san jose,4,4,google,2026-03-12 19:45:41.471627,abortion clinic san jose,abortion clinic san jose california,in ca,in ca +abortion,"('abortion clinic in san jose ca', 'abortion clinic san jose california')",abortion clinic in san jose ca,abortion clinic san jose california,5,4,google,2026-03-12 19:45:41.471627,abortion clinic san jose,abortion clinic san jose california,in ca,california +abortion,"(""women's health center san jose"", ""women's health center st joseph"")",women's health center san jose,women's health center st joseph,1,4,google,2026-03-12 19:45:42.435897,abortion clinic san jose,women's clinic san jose,health center,st joseph +abortion,"(""women's health center san jose"", ""women's health clinic san jose"")",women's health center san jose,women's health clinic san jose,2,4,google,2026-03-12 19:45:42.435897,abortion clinic san jose,women's clinic san jose,health center,clinic +abortion,"(""women's health center san jose"", ""women's health clinic st joseph mo"")",women's health center san jose,women's health clinic st joseph mo,3,4,google,2026-03-12 19:45:42.435897,abortion clinic san jose,women's clinic san jose,health center,clinic st joseph mo +abortion,"(""women's health center san jose"", ""women's health clinic st joseph"")",women's health center san jose,women's health clinic st joseph,4,4,google,2026-03-12 19:45:42.435897,abortion clinic san jose,women's clinic san jose,health center,clinic st joseph +abortion,"(""women's health center san jose"", ""women's health care st joseph"")",women's health center san jose,women's health care st joseph,5,4,google,2026-03-12 19:45:42.435897,abortion clinic san jose,women's clinic san jose,health center,care st joseph +abortion,"(""women's health center san jose"", ""women's health center st joseph hospital"")",women's health center san jose,women's health center st joseph hospital,6,4,google,2026-03-12 19:45:42.435897,abortion clinic san jose,women's clinic san jose,health center,st joseph hospital +abortion,"(""women's health center san jose"", ""women's health clinic st joseph's saint john"")",women's health center san jose,women's health clinic st joseph's saint john,7,4,google,2026-03-12 19:45:42.435897,abortion clinic san jose,women's clinic san jose,health center,clinic st joseph's saint john +abortion,"(""women's health center san jose"", ""women's health clinic st joseph's hospital hamilton"")",women's health center san jose,women's health clinic st joseph's hospital hamilton,8,4,google,2026-03-12 19:45:42.435897,abortion clinic san jose,women's clinic san jose,health center,clinic st joseph's hospital hamilton +abortion,"(""women's health center san jose"", ""women's health center of silicon valley san jose"")",women's health center san jose,women's health center of silicon valley san jose,9,4,google,2026-03-12 19:45:42.435897,abortion clinic san jose,women's clinic san jose,health center,of silicon valley +abortion,"(""women's health clinic st joseph's hospital hamilton"", ""women's health concerns clinic st joseph's healthcare hamilton"")",women's health clinic st joseph's hospital hamilton,women's health concerns clinic st joseph's healthcare hamilton,1,4,google,2026-03-12 19:45:43.554494,abortion clinic san jose,women's clinic san jose,health st joseph's hospital hamilton,concerns healthcare +abortion,"(""women's health clinic st joseph's hospital hamilton"", ""women's health clinic st joseph mo"")",women's health clinic st joseph's hospital hamilton,women's health clinic st joseph mo,2,4,google,2026-03-12 19:45:43.554494,abortion clinic san jose,women's clinic san jose,health st joseph's hospital hamilton,joseph mo +abortion,"(""women's health clinic st joseph's hospital hamilton"", ""women's health st joseph hospital"")",women's health clinic st joseph's hospital hamilton,women's health st joseph hospital,3,4,google,2026-03-12 19:45:43.554494,abortion clinic san jose,women's clinic san jose,health st joseph's hospital hamilton,joseph +abortion,"(""women's health clinic st joseph's hospital hamilton"", ""st joseph's women's health clinic"")",women's health clinic st joseph's hospital hamilton,st joseph's women's health clinic,4,4,google,2026-03-12 19:45:43.554494,abortion clinic san jose,women's clinic san jose,health st joseph's hospital hamilton,health st joseph's hospital hamilton +abortion,"(""women's health clinic st joseph's hospital hamilton"", ""st joseph's hospital women's health centre"")",women's health clinic st joseph's hospital hamilton,st joseph's hospital women's health centre,5,4,google,2026-03-12 19:45:43.554494,abortion clinic san jose,women's clinic san jose,health st joseph's hospital hamilton,centre +abortion,"(""women's health clinic st joseph's hospital hamilton"", ""women's hospital st joseph east"")",women's health clinic st joseph's hospital hamilton,women's hospital st joseph east,6,4,google,2026-03-12 19:45:43.554494,abortion clinic san jose,women's clinic san jose,health st joseph's hospital hamilton,joseph east +abortion,"(""women's health clinic st joseph mo"", ""women's health st joseph missouri"")",women's health clinic st joseph mo,women's health st joseph missouri,1,4,google,2026-03-12 19:45:44.570506,abortion clinic san jose,women's clinic san jose,health st joseph mo,missouri +abortion,"(""women's health clinic st joseph mo"", ""women's health st joseph hospital"")",women's health clinic st joseph mo,women's health st joseph hospital,2,4,google,2026-03-12 19:45:44.570506,abortion clinic san jose,women's clinic san jose,health st joseph mo,hospital +abortion,"(""women's health clinic st joseph mo"", ""women's health st joseph mo"")",women's health clinic st joseph mo,women's health st joseph mo,3,4,google,2026-03-12 19:45:44.570506,abortion clinic san jose,women's clinic san jose,health st joseph mo,health st joseph mo +abortion,"(""women's health clinic st joseph"", ""women's health clinic st joseph mo"")",women's health clinic st joseph,women's health clinic st joseph mo,1,4,google,2026-03-12 19:45:46.021164,abortion clinic san jose,women's clinic san jose,health st joseph,mo +abortion,"(""women's health clinic st joseph"", ""women's health clinic st joseph's hospital hamilton"")",women's health clinic st joseph,women's health clinic st joseph's hospital hamilton,2,4,google,2026-03-12 19:45:46.021164,abortion clinic san jose,women's clinic san jose,health st joseph,joseph's hospital hamilton +abortion,"(""women's health clinic st joseph"", ""women's health center st joseph"")",women's health clinic st joseph,women's health center st joseph,3,4,google,2026-03-12 19:45:46.021164,abortion clinic san jose,women's clinic san jose,health st joseph,center +abortion,"(""women's health clinic st joseph"", ""women's health care st joseph"")",women's health clinic st joseph,women's health care st joseph,4,4,google,2026-03-12 19:45:46.021164,abortion clinic san jose,women's clinic san jose,health st joseph,care +abortion,"(""women's health clinic st joseph"", ""women's health clinic saint joe's"")",women's health clinic st joseph,women's health clinic saint joe's,5,4,google,2026-03-12 19:45:46.021164,abortion clinic san jose,women's clinic san jose,health st joseph,saint joe's +abortion,"(""women's health clinic st joseph"", ""women's health clinic st joseph's saint john"")",women's health clinic st joseph,women's health clinic st joseph's saint john,6,4,google,2026-03-12 19:45:46.021164,abortion clinic san jose,women's clinic san jose,health st joseph,joseph's saint john +abortion,"(""women's health clinic st joseph"", ""women's health concerns clinic st joseph"")",women's health clinic st joseph,women's health concerns clinic st joseph,7,4,google,2026-03-12 19:45:46.021164,abortion clinic san jose,women's clinic san jose,health st joseph,concerns +abortion,"(""women's health clinic st joseph"", ""women's health center st joseph hospital"")",women's health clinic st joseph,women's health center st joseph hospital,8,4,google,2026-03-12 19:45:46.021164,abortion clinic san jose,women's clinic san jose,health st joseph,center hospital +abortion,"(""women's health clinic st joseph"", ""south shore women's health care st joseph mi"")",women's health clinic st joseph,south shore women's health care st joseph mi,9,4,google,2026-03-12 19:45:46.021164,abortion clinic san jose,women's clinic san jose,health st joseph,south shore care mi +abortion,"(""women's outpatient clinic st joseph"", 'women outpatient center st joseph')",women's outpatient clinic st joseph,women outpatient center st joseph,1,4,google,2026-03-12 19:45:46.874846,abortion clinic san jose,women's clinic san jose,outpatient st joseph,women center +abortion,"(""women's outpatient clinic st joseph"", ""women's outpatient center st joe's"")",women's outpatient clinic st joseph,women's outpatient center st joe's,2,4,google,2026-03-12 19:45:46.874846,abortion clinic san jose,women's clinic san jose,outpatient st joseph,center joe's +abortion,"(""women's outpatient clinic st joseph"", ""women's outpatient st joseph"")",women's outpatient clinic st joseph,women's outpatient st joseph,3,4,google,2026-03-12 19:45:46.874846,abortion clinic san jose,women's clinic san jose,outpatient st joseph,outpatient st joseph +abortion,"(""women's outpatient clinic st joseph"", ""women's clinic st joseph"")",women's outpatient clinic st joseph,women's clinic st joseph,4,4,google,2026-03-12 19:45:46.874846,abortion clinic san jose,women's clinic san jose,outpatient st joseph,outpatient st joseph +abortion,"(""st joseph women's clinic tacoma"", ""st joseph hospital tacoma women's clinic"")",st joseph women's clinic tacoma,st joseph hospital tacoma women's clinic,1,4,google,2026-03-12 19:45:47.794524,abortion clinic san jose,saint joseph's women's clinic,st joseph tacoma,hospital +abortion,"(""st joseph women's clinic tacoma"", ""st joseph women's health tacoma"")",st joseph women's clinic tacoma,st joseph women's health tacoma,2,4,google,2026-03-12 19:45:47.794524,abortion clinic san jose,saint joseph's women's clinic,st joseph tacoma,health +abortion,"(""st joseph women's clinic tacoma"", ""st joseph women's clinic"")",st joseph women's clinic tacoma,st joseph women's clinic,3,4,google,2026-03-12 19:45:47.794524,abortion clinic san jose,saint joseph's women's clinic,st joseph tacoma,st joseph tacoma +abortion,"(""st joseph women's clinic tacoma"", 'st joseph hospital tacoma obgyn')",st joseph women's clinic tacoma,st joseph hospital tacoma obgyn,4,4,google,2026-03-12 19:45:47.794524,abortion clinic san jose,saint joseph's women's clinic,st joseph tacoma,hospital obgyn +abortion,"(""st joseph women's clinic reading pa"", 'st joseph clinic in reading pa')",st joseph women's clinic reading pa,st joseph clinic in reading pa,1,4,google,2026-03-12 19:45:48.722780,abortion clinic san jose,saint joseph's women's clinic,st joseph reading pa,in +abortion,"(""st joseph women's clinic reading pa"", ""st joseph women's clinic"")",st joseph women's clinic reading pa,st joseph women's clinic,2,4,google,2026-03-12 19:45:48.722780,abortion clinic san jose,saint joseph's women's clinic,st joseph reading pa,st joseph reading pa +abortion,"(""st joseph women's clinic reading pa"", 'st joseph hospital reading pa ob gyn')",st joseph women's clinic reading pa,st joseph hospital reading pa ob gyn,3,4,google,2026-03-12 19:45:48.722780,abortion clinic san jose,saint joseph's women's clinic,st joseph reading pa,hospital ob gyn +abortion,"(""st joseph women's clinic lexington ky"", ""st joseph women's hospital lexington ky"")",st joseph women's clinic lexington ky,st joseph women's hospital lexington ky,1,4,google,2026-03-12 19:45:49.571918,abortion clinic san jose,saint joseph's women's clinic,st joseph lexington ky,hospital +abortion,"(""st joseph women's clinic lexington ky"", ""chi st joseph women's hospital lexington ky"")",st joseph women's clinic lexington ky,chi st joseph women's hospital lexington ky,2,4,google,2026-03-12 19:45:49.571918,abortion clinic san jose,saint joseph's women's clinic,st joseph lexington ky,chi hospital +abortion,"(""st joseph women's clinic lexington ky"", ""saint joseph east women's hospital lexington ky"")",st joseph women's clinic lexington ky,saint joseph east women's hospital lexington ky,3,4,google,2026-03-12 19:45:49.571918,abortion clinic san jose,saint joseph's women's clinic,st joseph lexington ky,saint east hospital +abortion,"(""st joseph women's clinic lexington ky"", ""st joseph women's center lexington ky"")",st joseph women's clinic lexington ky,st joseph women's center lexington ky,4,4,google,2026-03-12 19:45:49.571918,abortion clinic san jose,saint joseph's women's clinic,st joseph lexington ky,center +abortion,"(""st joseph women's clinic lexington ky"", ""st joseph women's health lexington ky"")",st joseph women's clinic lexington ky,st joseph women's health lexington ky,5,4,google,2026-03-12 19:45:49.571918,abortion clinic san jose,saint joseph's women's clinic,st joseph lexington ky,health +abortion,"(""st joseph women's clinic lexington ky"", ""st joseph hospital lexington ky women's center"")",st joseph women's clinic lexington ky,st joseph hospital lexington ky women's center,6,4,google,2026-03-12 19:45:49.571918,abortion clinic san jose,saint joseph's women's clinic,st joseph lexington ky,hospital center +abortion,"(""st joseph women's clinic lexington ky"", ""st. joseph women's lexington ky"")",st joseph women's clinic lexington ky,st. joseph women's lexington ky,7,4,google,2026-03-12 19:45:49.571918,abortion clinic san jose,saint joseph's women's clinic,st joseph lexington ky,st. +abortion,"(""saint joseph women's hospital"", ""saint joseph women's hospital tampa"")",saint joseph women's hospital,saint joseph women's hospital tampa,1,4,google,2026-03-12 19:45:50.868644,abortion clinic san jose,saint joseph's women's clinic,joseph hospital,tampa +abortion,"(""saint joseph women's hospital"", ""saint joseph women's hospital lexington ky"")",saint joseph women's hospital,saint joseph women's hospital lexington ky,2,4,google,2026-03-12 19:45:50.868644,abortion clinic san jose,saint joseph's women's clinic,joseph hospital,lexington ky +abortion,"(""saint joseph women's hospital"", ""st joseph's women's hospital tampa fl"")",saint joseph women's hospital,st joseph's women's hospital tampa fl,3,4,google,2026-03-12 19:45:50.868644,abortion clinic san jose,saint joseph's women's clinic,joseph hospital,st joseph's tampa fl +abortion,"(""saint joseph women's hospital"", ""st joseph's women's hospital reviews"")",saint joseph women's hospital,st joseph's women's hospital reviews,4,4,google,2026-03-12 19:45:50.868644,abortion clinic san jose,saint joseph's women's clinic,joseph hospital,st joseph's reviews +abortion,"(""saint joseph women's hospital"", ""st joseph's women's hospital photos"")",saint joseph women's hospital,st joseph's women's hospital photos,5,4,google,2026-03-12 19:45:50.868644,abortion clinic san jose,saint joseph's women's clinic,joseph hospital,st joseph's photos +abortion,"(""saint joseph women's hospital"", ""st joseph's women's hospital labor and delivery"")",saint joseph women's hospital,st joseph's women's hospital labor and delivery,6,4,google,2026-03-12 19:45:50.868644,abortion clinic san jose,saint joseph's women's clinic,joseph hospital,st joseph's labor and delivery +abortion,"(""saint joseph women's hospital"", ""st joseph's women's hospital visiting hours"")",saint joseph women's hospital,st joseph's women's hospital visiting hours,7,4,google,2026-03-12 19:45:50.868644,abortion clinic san jose,saint joseph's women's clinic,joseph hospital,st joseph's visiting hours +abortion,"(""saint joseph women's hospital"", ""st joseph's women's hospital careers"")",saint joseph women's hospital,st joseph's women's hospital careers,8,4,google,2026-03-12 19:45:50.868644,abortion clinic san jose,saint joseph's women's clinic,joseph hospital,st joseph's careers +abortion,"(""saint joseph women's hospital"", ""st joseph's women's hospital tour"")",saint joseph women's hospital,st joseph's women's hospital tour,9,4,google,2026-03-12 19:45:50.868644,abortion clinic san jose,saint joseph's women's clinic,joseph hospital,st joseph's tour +abortion,"(""saint joseph women's hospital tampa"", ""st joseph's women's hospital tampa fl"")",saint joseph women's hospital tampa,st joseph's women's hospital tampa fl,1,4,google,2026-03-12 19:45:52.055592,abortion clinic san jose,saint joseph's women's clinic,joseph hospital tampa,st joseph's fl +abortion,"(""saint joseph women's hospital tampa"", ""st joseph's women's hospital tampa labor and delivery"")",saint joseph women's hospital tampa,st joseph's women's hospital tampa labor and delivery,2,4,google,2026-03-12 19:45:52.055592,abortion clinic san jose,saint joseph's women's clinic,joseph hospital tampa,st joseph's labor and delivery +abortion,"(""saint joseph women's hospital tampa"", ""st joseph women's hospital tampa careers"")",saint joseph women's hospital tampa,st joseph women's hospital tampa careers,3,4,google,2026-03-12 19:45:52.055592,abortion clinic san jose,saint joseph's women's clinic,joseph hospital tampa,st careers +abortion,"(""saint joseph women's hospital tampa"", ""st joseph's women's hospital tampa gift shop"")",saint joseph women's hospital tampa,st joseph's women's hospital tampa gift shop,4,4,google,2026-03-12 19:45:52.055592,abortion clinic san jose,saint joseph's women's clinic,joseph hospital tampa,st joseph's gift shop +abortion,"(""saint joseph women's hospital tampa"", ""st joseph's women's hospital tampa fl 33607"")",saint joseph women's hospital tampa,st joseph's women's hospital tampa fl 33607,5,4,google,2026-03-12 19:45:52.055592,abortion clinic san jose,saint joseph's women's clinic,joseph hospital tampa,st joseph's fl 33607 +abortion,"(""saint joseph women's hospital tampa"", ""st joseph's women's hospital tampa nicu"")",saint joseph women's hospital tampa,st joseph's women's hospital tampa nicu,6,4,google,2026-03-12 19:45:52.055592,abortion clinic san jose,saint joseph's women's clinic,joseph hospital tampa,st joseph's nicu +abortion,"(""saint joseph women's hospital tampa"", ""st joseph's women's hospital tampa visiting hours"")",saint joseph women's hospital tampa,st joseph's women's hospital tampa visiting hours,7,4,google,2026-03-12 19:45:52.055592,abortion clinic san jose,saint joseph's women's clinic,joseph hospital tampa,st joseph's visiting hours +abortion,"(""saint joseph women's hospital tampa"", ""st joseph's women's hospital breast center tampa fl"")",saint joseph women's hospital tampa,st joseph's women's hospital breast center tampa fl,8,4,google,2026-03-12 19:45:52.055592,abortion clinic san jose,saint joseph's women's clinic,joseph hospital tampa,st joseph's breast center fl +abortion,"(""saint joseph women's hospital tampa"", ""hotels near st joseph women's hospital tampa fl"")",saint joseph women's hospital tampa,hotels near st joseph women's hospital tampa fl,9,4,google,2026-03-12 19:45:52.055592,abortion clinic san jose,saint joseph's women's clinic,joseph hospital tampa,hotels near st fl +abortion,"(""saint joseph women's hospital lexington ky"", ""saint joseph east women's hospital lexington ky"")",saint joseph women's hospital lexington ky,saint joseph east women's hospital lexington ky,1,4,google,2026-03-12 19:45:53.311450,abortion clinic san jose,saint joseph's women's clinic,joseph hospital lexington ky,east +abortion,"(""saint joseph women's hospital lexington ky"", ""chi st joseph women's hospital lexington ky"")",saint joseph women's hospital lexington ky,chi st joseph women's hospital lexington ky,2,4,google,2026-03-12 19:45:53.311450,abortion clinic san jose,saint joseph's women's clinic,joseph hospital lexington ky,chi st +abortion,"(""saint joseph women's hospital lexington ky"", ""chi saint joseph health women's hospital at saint joseph east lexington ky"")",saint joseph women's hospital lexington ky,chi saint joseph health women's hospital at saint joseph east lexington ky,3,4,google,2026-03-12 19:45:53.311450,abortion clinic san jose,saint joseph's women's clinic,joseph hospital lexington ky,chi health at east +abortion,"(""saint joseph women's hospital lexington ky"", ""saint joseph women's health lexington ky"")",saint joseph women's hospital lexington ky,saint joseph women's health lexington ky,4,4,google,2026-03-12 19:45:53.311450,abortion clinic san jose,saint joseph's women's clinic,joseph hospital lexington ky,health +abortion,"(""saint joseph women's hospital lexington ky"", 'saint joseph hospital lexington ky obgyn')",saint joseph women's hospital lexington ky,saint joseph hospital lexington ky obgyn,5,4,google,2026-03-12 19:45:53.311450,abortion clinic san jose,saint joseph's women's clinic,joseph hospital lexington ky,obgyn +abortion,"(""saint joseph women's hospital lexington ky"", ""st joseph women's hospital lexington ky"")",saint joseph women's hospital lexington ky,st joseph women's hospital lexington ky,6,4,google,2026-03-12 19:45:53.311450,abortion clinic san jose,saint joseph's women's clinic,joseph hospital lexington ky,st +abortion,"(""saint joseph's women's health center"", ""st joseph women's health center ann arbor"")",saint joseph's women's health center,st joseph women's health center ann arbor,1,4,google,2026-03-12 19:45:54.384976,abortion clinic san jose,saint joseph's women's clinic,health center,st joseph ann arbor +abortion,"(""saint joseph's women's health center"", ""st joseph women's medical center"")",saint joseph's women's health center,st joseph women's medical center,2,4,google,2026-03-12 19:45:54.384976,abortion clinic san jose,saint joseph's women's clinic,health center,st joseph medical +abortion,"(""saint joseph's women's health center"", ""st joseph women's medical center houston tx"")",saint joseph's women's health center,st joseph women's medical center houston tx,3,4,google,2026-03-12 19:45:54.384976,abortion clinic san jose,saint joseph's women's clinic,health center,st joseph medical houston tx +abortion,"(""saint joseph's women's health center"", ""st joseph's women's wellness center"")",saint joseph's women's health center,st joseph's women's wellness center,4,4,google,2026-03-12 19:45:54.384976,abortion clinic san jose,saint joseph's women's clinic,health center,st wellness +abortion,"(""saint joseph's women's health center"", ""st joseph's women's health clinic"")",saint joseph's women's health center,st joseph's women's health clinic,5,4,google,2026-03-12 19:45:54.384976,abortion clinic san jose,saint joseph's women's clinic,health center,st clinic +abortion,"(""saint joseph's women's health center"", ""st joseph's women's health centre"")",saint joseph's women's health center,st joseph's women's health centre,6,4,google,2026-03-12 19:45:54.384976,abortion clinic san jose,saint joseph's women's clinic,health center,st centre +abortion,"(""saint joseph's women's health center"", ""st joseph's women & wellness clinic"")",saint joseph's women's health center,st joseph's women & wellness clinic,7,4,google,2026-03-12 19:45:54.384976,abortion clinic san jose,saint joseph's women's clinic,health center,st women & wellness clinic +abortion,"(""saint joseph's women's health center"", ""st joseph mercy hospital women's health center"")",saint joseph's women's health center,st joseph mercy hospital women's health center,8,4,google,2026-03-12 19:45:54.384976,abortion clinic san jose,saint joseph's women's clinic,health center,st joseph mercy hospital +abortion,"(""saint joseph's women's health center"", ""st joseph's women's health clinic saint john"")",saint joseph's women's health center,st joseph's women's health clinic saint john,9,4,google,2026-03-12 19:45:54.384976,abortion clinic san jose,saint joseph's women's clinic,health center,st clinic john +abortion,"(""st joseph's women's hospital tampa fl"", ""st joseph's women's hospital tampa fl 33607"")",st joseph's women's hospital tampa fl,st joseph's women's hospital tampa fl 33607,1,4,google,2026-03-12 19:45:55.357280,abortion clinic san jose,saint joseph's women's clinic,st hospital tampa fl,33607 +abortion,"(""st joseph's women's hospital tampa fl"", ""st joseph's women's hospital breast center tampa fl"")",st joseph's women's hospital tampa fl,st joseph's women's hospital breast center tampa fl,2,4,google,2026-03-12 19:45:55.357280,abortion clinic san jose,saint joseph's women's clinic,st hospital tampa fl,breast center +abortion,"(""st joseph's women's hospital tampa fl"", ""hotels near st joseph women's hospital tampa fl"")",st joseph's women's hospital tampa fl,hotels near st joseph women's hospital tampa fl,3,4,google,2026-03-12 19:45:55.357280,abortion clinic san jose,saint joseph's women's clinic,st hospital tampa fl,hotels near joseph +abortion,"(""st joseph's women's hospital tampa fl"", ""women's care florida in st joseph's women's hospital tampa fl"")",st joseph's women's hospital tampa fl,women's care florida in st joseph's women's hospital tampa fl,4,4,google,2026-03-12 19:45:55.357280,abortion clinic san jose,saint joseph's women's clinic,st hospital tampa fl,care florida in +abortion,"(""st joseph's women's hospital tampa fl"", ""st joseph's women's hospital in tampa florida"")",st joseph's women's hospital tampa fl,st joseph's women's hospital in tampa florida,5,4,google,2026-03-12 19:45:55.357280,abortion clinic san jose,saint joseph's women's clinic,st hospital tampa fl,in florida +abortion,"(""st joseph's women's hospital tampa fl"", ""st joseph hospital women's hospital tampa fl"")",st joseph's women's hospital tampa fl,st joseph hospital women's hospital tampa fl,6,4,google,2026-03-12 19:45:55.357280,abortion clinic san jose,saint joseph's women's clinic,st hospital tampa fl,joseph +abortion,"(""st joseph's women's hospital tampa fl"", ""st joseph hospital tampa women's center"")",st joseph's women's hospital tampa fl,st joseph hospital tampa women's center,7,4,google,2026-03-12 19:45:55.357280,abortion clinic san jose,saint joseph's women's clinic,st hospital tampa fl,joseph center +abortion,"(""st joseph's women's hospital reviews"", ""st joseph east women's hospital reviews"")",st joseph's women's hospital reviews,st joseph east women's hospital reviews,1,4,google,2026-03-12 19:45:56.613147,abortion clinic san jose,saint joseph's women's clinic,st hospital reviews,joseph east +abortion,"(""st joseph's women's hospital reviews"", ""st joseph's women's hospital obstetrics reviews"")",st joseph's women's hospital reviews,st joseph's women's hospital obstetrics reviews,2,4,google,2026-03-12 19:45:56.613147,abortion clinic san jose,saint joseph's women's clinic,st hospital reviews,obstetrics +abortion,"(""st joseph's women's hospital reviews"", ""st joseph's women's hospital maternal fetal medicine tampa reviews"")",st joseph's women's hospital reviews,st joseph's women's hospital maternal fetal medicine tampa reviews,3,4,google,2026-03-12 19:45:56.613147,abortion clinic san jose,saint joseph's women's clinic,st hospital reviews,maternal fetal medicine tampa +abortion,"(""st joseph's women's hospital reviews"", ""women's care florida st joseph hospital reviews"")",st joseph's women's hospital reviews,women's care florida st joseph hospital reviews,4,4,google,2026-03-12 19:45:56.613147,abortion clinic san jose,saint joseph's women's clinic,st hospital reviews,care florida joseph +abortion,"(""st joseph's women's hospital reviews"", ""st joseph's women's hospital neonatal intensive care unit tampa reviews"")",st joseph's women's hospital reviews,st joseph's women's hospital neonatal intensive care unit tampa reviews,5,4,google,2026-03-12 19:45:56.613147,abortion clinic san jose,saint joseph's women's clinic,st hospital reviews,neonatal intensive care unit tampa +abortion,"(""st joseph's women's hospital reviews"", ""st joseph hospital orange women's services reviews"")",st joseph's women's hospital reviews,st joseph hospital orange women's services reviews,6,4,google,2026-03-12 19:45:56.613147,abortion clinic san jose,saint joseph's women's clinic,st hospital reviews,joseph orange services +abortion,"(""st joseph's women's hospital reviews"", ""st joseph women's health associates reviews"")",st joseph's women's hospital reviews,st joseph women's health associates reviews,7,4,google,2026-03-12 19:45:56.613147,abortion clinic san jose,saint joseph's women's clinic,st hospital reviews,joseph health associates +abortion,"(""st joseph's women's hospital reviews"", ""st joseph's hospital women's clinic"")",st joseph's women's hospital reviews,st joseph's hospital women's clinic,8,4,google,2026-03-12 19:45:56.613147,abortion clinic san jose,saint joseph's women's clinic,st hospital reviews,clinic +abortion,"(""st joseph's women's hospital reviews"", ""st joseph's hospital women's"")",st joseph's women's hospital reviews,st joseph's hospital women's,9,4,google,2026-03-12 19:45:56.613147,abortion clinic san jose,saint joseph's women's clinic,st hospital reviews,st hospital reviews +abortion,"(""willowbrook women's center st joseph mo"", ""willowbrook women's center st joseph mo saint joseph reviews"")",willowbrook women's center st joseph mo,willowbrook women's center st joseph mo saint joseph reviews,1,4,google,2026-03-12 19:45:57.458655,abortion clinic san jose,women's clinic st joseph mo,willowbrook center,saint reviews +abortion,"(""willowbrook women's center st joseph mo"", ""willowbrook women's center st joseph mo saint joseph photos"")",willowbrook women's center st joseph mo,willowbrook women's center st joseph mo saint joseph photos,2,4,google,2026-03-12 19:45:57.458655,abortion clinic san jose,women's clinic st joseph mo,willowbrook center,saint photos +abortion,"(""willowbrook women's center st joseph mo"", ""willowbrook women's center"")",willowbrook women's center st joseph mo,willowbrook women's center,3,4,google,2026-03-12 19:45:57.458655,abortion clinic san jose,women's clinic st joseph mo,willowbrook center,willowbrook center +abortion,"(""willowbrook women's center st joseph mo"", ""willowbrook women's center cameron mo"")",willowbrook women's center st joseph mo,willowbrook women's center cameron mo,4,4,google,2026-03-12 19:45:57.458655,abortion clinic san jose,women's clinic st joseph mo,willowbrook center,cameron +abortion,"(""willowbrook women's center st joseph mo"", ""willowbrook women's clinic"")",willowbrook women's center st joseph mo,willowbrook women's clinic,5,4,google,2026-03-12 19:45:57.458655,abortion clinic san jose,women's clinic st joseph mo,willowbrook center,clinic +abortion,"(""willowbrook women's center st joseph mo"", ""willowbrook women's health"")",willowbrook women's center st joseph mo,willowbrook women's health,6,4,google,2026-03-12 19:45:57.458655,abortion clinic san jose,women's clinic st joseph mo,willowbrook center,health +abortion,"(""women's clinic st joseph"", ""women's clinic st joseph mo"")",women's clinic st joseph,women's clinic st joseph mo,1,4,google,2026-03-12 19:45:58.558063,abortion clinic san jose,women's clinic st joseph mo,women's st joseph mo,mo +abortion,"(""women's clinic st joseph"", ""women's clinic st joseph pavilion"")",women's clinic st joseph,women's clinic st joseph pavilion,2,4,google,2026-03-12 19:45:58.558063,abortion clinic san jose,women's clinic st joseph mo,women's st joseph mo,pavilion +abortion,"(""women's clinic st joseph"", ""women's center st joseph"")",women's clinic st joseph,women's center st joseph,3,4,google,2026-03-12 19:45:58.558063,abortion clinic san jose,women's clinic st joseph mo,women's st joseph mo,center +abortion,"(""women's clinic st joseph"", ""women's hospital st joseph"")",women's clinic st joseph,women's hospital st joseph,4,4,google,2026-03-12 19:45:58.558063,abortion clinic san jose,women's clinic st joseph mo,women's st joseph mo,hospital +abortion,"(""women's clinic st joseph"", ""women's hospital st joseph east"")",women's clinic st joseph,women's hospital st joseph east,5,4,google,2026-03-12 19:45:58.558063,abortion clinic san jose,women's clinic st joseph mo,women's st joseph mo,hospital east +abortion,"(""women's clinic st joseph"", ""saint joe's women's clinic"")",women's clinic st joseph,saint joe's women's clinic,6,4,google,2026-03-12 19:45:58.558063,abortion clinic san jose,women's clinic st joseph mo,women's st joseph mo,saint joe's +abortion,"(""women's clinic st joseph"", ""women's health clinic st joseph mo"")",women's clinic st joseph,women's health clinic st joseph mo,7,4,google,2026-03-12 19:45:58.558063,abortion clinic san jose,women's clinic st joseph mo,women's st joseph mo,health mo +abortion,"(""women's clinic st joseph"", ""women's health clinic st joseph"")",women's clinic st joseph,women's health clinic st joseph,8,4,google,2026-03-12 19:45:58.558063,abortion clinic san jose,women's clinic st joseph mo,women's st joseph mo,health +abortion,"(""women's clinic st joseph"", ""women's outpatient clinic st joseph"")",women's clinic st joseph,women's outpatient clinic st joseph,9,4,google,2026-03-12 19:45:58.558063,abortion clinic san jose,women's clinic st joseph mo,women's st joseph mo,outpatient +abortion,"(""women's health st joseph missouri"", ""mosaic women's health st joseph missouri"")",women's health st joseph missouri,mosaic women's health st joseph missouri,1,4,google,2026-03-12 19:45:59.756342,abortion clinic san jose,women's clinic st joseph mo,health missouri,mosaic +abortion,"(""women's health st joseph missouri"", ""women's health clinic st joseph mo"")",women's health st joseph missouri,women's health clinic st joseph mo,2,4,google,2026-03-12 19:45:59.756342,abortion clinic san jose,women's clinic st joseph mo,health missouri,clinic mo +abortion,"(""women's health st joseph missouri"", ""women's health st joseph mo"")",women's health st joseph missouri,women's health st joseph mo,3,4,google,2026-03-12 19:45:59.756342,abortion clinic san jose,women's clinic st joseph mo,health missouri,mo +abortion,"(""women's health st joseph missouri"", ""women's health saint joseph missouri"")",women's health st joseph missouri,women's health saint joseph missouri,4,4,google,2026-03-12 19:45:59.756342,abortion clinic san jose,women's clinic st joseph mo,health missouri,saint +abortion,"(""women's health st joseph missouri"", ""women's health saint joseph mo"")",women's health st joseph missouri,women's health saint joseph mo,5,4,google,2026-03-12 19:45:59.756342,abortion clinic san jose,women's clinic st joseph mo,health missouri,saint mo +abortion,"(""st joseph's women's pavilion"", ""st joseph women's pavilion"")",st joseph's women's pavilion,st joseph women's pavilion,1,4,google,2026-03-12 19:46:00.712258,abortion clinic san jose,women's clinic st joseph pavilion,joseph's,joseph +abortion,"(""st joseph's women's pavilion"", ""women's clinic st joseph pavilion"")",st joseph's women's pavilion,women's clinic st joseph pavilion,2,4,google,2026-03-12 19:46:00.712258,abortion clinic san jose,women's clinic st joseph pavilion,joseph's,clinic joseph +abortion,"(""st joseph's women's pavilion"", ""st joseph's pa women's basketball"")",st joseph's women's pavilion,st joseph's pa women's basketball,3,4,google,2026-03-12 19:46:00.712258,abortion clinic san jose,women's clinic st joseph pavilion,joseph's,pa basketball +abortion,"(""st joseph's women's pavilion"", ""st joseph's patchogue women's basketball"")",st joseph's women's pavilion,st joseph's patchogue women's basketball,4,4,google,2026-03-12 19:46:00.712258,abortion clinic san jose,women's clinic st joseph pavilion,joseph's,patchogue basketball +abortion,"(""st joseph's women's pavilion"", 'st joseph women’s center')",st joseph's women's pavilion,st joseph women’s center,5,4,google,2026-03-12 19:46:00.712258,abortion clinic san jose,women's clinic st joseph pavilion,joseph's,joseph women’s center +abortion,"(""st joseph's women's pavilion"", ""st joseph's women's center"")",st joseph's women's pavilion,st joseph's women's center,6,4,google,2026-03-12 19:46:00.712258,abortion clinic san jose,women's clinic st joseph pavilion,joseph's,center +abortion,"(""women's pavilion joplin missouri"", ""women's pavilion joplin missouri phone number"")",women's pavilion joplin missouri,women's pavilion joplin missouri phone number,1,4,google,2026-03-12 19:46:02.032561,abortion clinic san jose,women's clinic st joseph pavilion,joplin missouri,phone number +abortion,"(""women's pavilion joplin missouri"", ""freeman women's pavilion joplin missouri"")",women's pavilion joplin missouri,freeman women's pavilion joplin missouri,2,4,google,2026-03-12 19:46:02.032561,abortion clinic san jose,women's clinic st joseph pavilion,joplin missouri,freeman +abortion,"(""women's pavilion joplin missouri"", ""women's health pavilion joplin mo"")",women's pavilion joplin missouri,women's health pavilion joplin mo,3,4,google,2026-03-12 19:46:02.032561,abortion clinic san jose,women's clinic st joseph pavilion,joplin missouri,health mo +abortion,"(""women's pavilion joplin missouri"", ""women's pavilion lab joplin mo"")",women's pavilion joplin missouri,women's pavilion lab joplin mo,4,4,google,2026-03-12 19:46:02.032561,abortion clinic san jose,women's clinic st joseph pavilion,joplin missouri,lab mo +abortion,"(""women's pavilion joplin missouri"", ""women's pavilion joplin mo"")",women's pavilion joplin missouri,women's pavilion joplin mo,5,4,google,2026-03-12 19:46:02.032561,abortion clinic san jose,women's clinic st joseph pavilion,joplin missouri,mo +abortion,"(""women's pavilion joplin missouri"", ""women's pavilion joplin"")",women's pavilion joplin missouri,women's pavilion joplin,6,4,google,2026-03-12 19:46:02.032561,abortion clinic san jose,women's clinic st joseph pavilion,joplin missouri,joplin missouri +abortion,"(""women's health care st joseph"", ""women's health clinic st joseph mo"")",women's health care st joseph,women's health clinic st joseph mo,1,4,google,2026-03-12 19:46:03.504257,abortion clinic san jose,women's health clinic san jose,care st joseph,clinic mo +abortion,"(""women's health care st joseph"", ""women's health center st joseph"")",women's health care st joseph,women's health center st joseph,2,4,google,2026-03-12 19:46:03.504257,abortion clinic san jose,women's health clinic san jose,care st joseph,center +abortion,"(""women's health care st joseph"", ""women's health clinic st joseph"")",women's health care st joseph,women's health clinic st joseph,3,4,google,2026-03-12 19:46:03.504257,abortion clinic san jose,women's health clinic san jose,care st joseph,clinic +abortion,"(""women's health care st joseph"", ""women's health clinic saint joe's"")",women's health care st joseph,women's health clinic saint joe's,4,4,google,2026-03-12 19:46:03.504257,abortion clinic san jose,women's health clinic san jose,care st joseph,clinic saint joe's +abortion,"(""women's health care st joseph"", ""women's health clinic st joseph's hospital hamilton"")",women's health care st joseph,women's health clinic st joseph's hospital hamilton,5,4,google,2026-03-12 19:46:03.504257,abortion clinic san jose,women's health clinic san jose,care st joseph,clinic joseph's hospital hamilton +abortion,"(""women's health care st joseph"", ""women's health center st joseph hospital"")",women's health care st joseph,women's health center st joseph hospital,6,4,google,2026-03-12 19:46:03.504257,abortion clinic san jose,women's health clinic san jose,care st joseph,center hospital +abortion,"(""women's health care st joseph"", ""south shore women's health care st joseph mi"")",women's health care st joseph,south shore women's health care st joseph mi,7,4,google,2026-03-12 19:46:03.504257,abortion clinic san jose,women's health clinic san jose,care st joseph,south shore mi +abortion,"(""women's health care st joseph"", ""women's health clinic st joseph's saint john"")",women's health care st joseph,women's health clinic st joseph's saint john,8,4,google,2026-03-12 19:46:03.504257,abortion clinic san jose,women's health clinic san jose,care st joseph,clinic joseph's saint john +abortion,"(""women's health care st joseph"", ""women's health concerns clinic st joseph"")",women's health care st joseph,women's health concerns clinic st joseph,9,4,google,2026-03-12 19:46:03.504257,abortion clinic san jose,women's health clinic san jose,care st joseph,concerns clinic +abortion,"(""women's health centre st joseph's hospital"", ""women's health center st joseph hospital"")",women's health centre st joseph's hospital,women's health center st joseph hospital,1,4,google,2026-03-12 19:46:04.353784,abortion clinic san jose,women's health clinic san jose,centre st joseph's hospital,center joseph +abortion,"(""women's health centre st joseph's hospital"", ""women's health center st joseph"")",women's health centre st joseph's hospital,women's health center st joseph,2,4,google,2026-03-12 19:46:04.353784,abortion clinic san jose,women's health clinic san jose,centre st joseph's hospital,center joseph +abortion,"(""women's health centre st joseph's hospital"", ""women's health st joseph hospital"")",women's health centre st joseph's hospital,women's health st joseph hospital,3,4,google,2026-03-12 19:46:04.353784,abortion clinic san jose,women's health clinic san jose,centre st joseph's hospital,joseph +abortion,"(""women's health centre st joseph's hospital"", ""women's health center st joe's"")",women's health centre st joseph's hospital,women's health center st joe's,4,4,google,2026-03-12 19:46:04.353784,abortion clinic san jose,women's health clinic san jose,centre st joseph's hospital,center joe's +abortion,"(""women's health clinic st joseph's saint john"", ""women's health clinic st joseph mo"")",women's health clinic st joseph's saint john,women's health clinic st joseph mo,1,4,google,2026-03-12 19:46:05.204988,abortion clinic san jose,women's health clinic san jose,st joseph's saint john,joseph mo +abortion,"(""women's health clinic st joseph's saint john"", ""women's health saint joseph missouri"")",women's health clinic st joseph's saint john,women's health saint joseph missouri,2,4,google,2026-03-12 19:46:05.204988,abortion clinic san jose,women's health clinic san jose,st joseph's saint john,joseph missouri +abortion,"(""women's health clinic st joseph's saint john"", ""women's health saint joseph mo"")",women's health clinic st joseph's saint john,women's health saint joseph mo,3,4,google,2026-03-12 19:46:05.204988,abortion clinic san jose,women's health clinic san jose,st joseph's saint john,joseph mo +abortion,"(""women's health clinic st joseph's saint john"", ""women's health saint joseph"")",women's health clinic st joseph's saint john,women's health saint joseph,4,4,google,2026-03-12 19:46:05.204988,abortion clinic san jose,women's health clinic san jose,st joseph's saint john,joseph +abortion,"(""women's health clinic st joseph's saint john"", ""women's health st joseph hospital"")",women's health clinic st joseph's saint john,women's health st joseph hospital,5,4,google,2026-03-12 19:46:05.204988,abortion clinic san jose,women's health clinic san jose,st joseph's saint john,joseph hospital +abortion,"(""women's health concerns clinic st joseph"", ""women's health concerns clinic st joseph's healthcare hamilton"")",women's health concerns clinic st joseph,women's health concerns clinic st joseph's healthcare hamilton,1,4,google,2026-03-12 19:46:06.570345,abortion clinic san jose,women's health clinic san jose,concerns st joseph,joseph's healthcare hamilton +abortion,"(""women's health concerns clinic st joseph"", ""women's health clinic st joseph mo"")",women's health concerns clinic st joseph,women's health clinic st joseph mo,2,4,google,2026-03-12 19:46:06.570345,abortion clinic san jose,women's health clinic san jose,concerns st joseph,mo +abortion,"(""women's health concerns clinic st joseph"", ""women's health center st joseph hospital"")",women's health concerns clinic st joseph,women's health center st joseph hospital,3,4,google,2026-03-12 19:46:06.570345,abortion clinic san jose,women's health clinic san jose,concerns st joseph,center hospital +abortion,"(""women's health concerns clinic st joseph"", ""women's health center st joe's"")",women's health concerns clinic st joseph,women's health center st joe's,4,4,google,2026-03-12 19:46:06.570345,abortion clinic san jose,women's health clinic san jose,concerns st joseph,center joe's +abortion,"(""women's health concerns clinic st joseph"", ""women's health center st joseph"")",women's health concerns clinic st joseph,women's health center st joseph,5,4,google,2026-03-12 19:46:06.570345,abortion clinic san jose,women's health clinic san jose,concerns st joseph,center +abortion,"(""women's health concerns clinic st joseph"", ""women's health st joseph hospital"")",women's health concerns clinic st joseph,women's health st joseph hospital,6,4,google,2026-03-12 19:46:06.570345,abortion clinic san jose,women's health clinic san jose,concerns st joseph,hospital +abortion,"(""women's health clinic san jose ca"", ""women's health clinic san jose california"")",women's health clinic san jose ca,women's health clinic san jose california,1,4,google,2026-03-12 19:46:07.483935,abortion clinic san jose,women's health clinic san jose,ca,california +abortion,"(""women's health clinic san jose ca"", ""women's health clinic san jose ca kaiser"")",women's health clinic san jose ca,women's health clinic san jose ca kaiser,2,4,google,2026-03-12 19:46:07.483935,abortion clinic san jose,women's health clinic san jose,ca,kaiser +abortion,"(""women's health clinic san jose ca"", ""women's health clinic san jose kaiser"")",women's health clinic san jose ca,women's health clinic san jose kaiser,3,4,google,2026-03-12 19:46:07.483935,abortion clinic san jose,women's health clinic san jose,ca,kaiser +abortion,"(""women's health clinic san jose ca"", ""women's health clinic san jose ca kaiser permanente"")",women's health clinic san jose ca,women's health clinic san jose ca kaiser permanente,4,4,google,2026-03-12 19:46:07.483935,abortion clinic san jose,women's health clinic san jose,ca,kaiser permanente +abortion,"(""women's health clinic san jose ca"", ""women's health clinic san jose calpers"")",women's health clinic san jose ca,women's health clinic san jose calpers,5,4,google,2026-03-12 19:46:07.483935,abortion clinic san jose,women's health clinic san jose,ca,calpers +abortion,"(""women's health clinic san jose ca"", ""women's health clinic san jose ca 95138"")",women's health clinic san jose ca,women's health clinic san jose ca 95138,6,4,google,2026-03-12 19:46:07.483935,abortion clinic san jose,women's health clinic san jose,ca,95138 +abortion,"(""women's health clinic san jacinto"", ""women's health clinic san jacinto ca"")",women's health clinic san jacinto,women's health clinic san jacinto ca,1,4,google,2026-03-12 19:46:08.929275,abortion clinic san jose,women's health clinic san jose,jacinto,ca +abortion,"(""women's health clinic san jacinto"", ""women's health clinic san jacinto california"")",women's health clinic san jacinto,women's health clinic san jacinto california,2,4,google,2026-03-12 19:46:08.929275,abortion clinic san jose,women's health clinic san jose,jacinto,california +abortion,"(""women's health clinic san jacinto"", ""women's health clinic san jacinto kaiser"")",women's health clinic san jacinto,women's health clinic san jacinto kaiser,3,4,google,2026-03-12 19:46:08.929275,abortion clinic san jose,women's health clinic san jose,jacinto,kaiser +abortion,"(""women's health clinic san jacinto"", ""women's health clinic san jacinto medical center"")",women's health clinic san jacinto,women's health clinic san jacinto medical center,4,4,google,2026-03-12 19:46:08.929275,abortion clinic san jose,women's health clinic san jose,jacinto,medical center +abortion,"(""women's health clinic san jacinto"", ""women's health clinic san jacinto san jose"")",women's health clinic san jacinto,women's health clinic san jacinto san jose,5,4,google,2026-03-12 19:46:08.929275,abortion clinic san jose,women's health clinic san jose,jacinto,jose +abortion,"('first abortion clinic in usa', 'when was the first abortion clinic opened in us')",first abortion clinic in usa,when was the first abortion clinic opened in us,1,4,google,2026-03-12 19:46:09.771787,abortion clinic san jose,abortion clinic near st joseph mi,first in usa,when was the opened us +abortion,"('first abortion clinic in usa', 'when was the first abortion in the us')",first abortion clinic in usa,when was the first abortion in the us,2,4,google,2026-03-12 19:46:09.771787,abortion clinic san jose,abortion clinic near st joseph mi,first in usa,when was the the us +abortion,"('first abortion clinic in usa', 'first abortion clinic in the us')",first abortion clinic in usa,first abortion clinic in the us,3,4,google,2026-03-12 19:46:09.771787,abortion clinic san jose,abortion clinic near st joseph mi,first in usa,the us +abortion,"('first abortion clinic in usa', 'first legal abortion clinic in the united states')",first abortion clinic in usa,first legal abortion clinic in the united states,4,4,google,2026-03-12 19:46:09.771787,abortion clinic san jose,abortion clinic near st joseph mi,first in usa,legal the united states +abortion,"('first abortion clinic in usa', 'first abortion clinic in new york')",first abortion clinic in usa,first abortion clinic in new york,5,4,google,2026-03-12 19:46:09.771787,abortion clinic san jose,abortion clinic near st joseph mi,first in usa,new york +abortion,"('where was the first abortion clinic', 'where was the first abortion clinic opened')",where was the first abortion clinic,where was the first abortion clinic opened,1,4,google,2026-03-12 19:46:10.591861,abortion clinic san jose,abortion clinic near st joseph mi,where was the first,opened +abortion,"('where was the first abortion clinic', 'when was the first abortion clinic opened in us')",where was the first abortion clinic,when was the first abortion clinic opened in us,2,4,google,2026-03-12 19:46:10.591861,abortion clinic san jose,abortion clinic near st joseph mi,where was the first,when opened in us +abortion,"('where was the first abortion clinic', 'when was the first abortion clinic created')",where was the first abortion clinic,when was the first abortion clinic created,3,4,google,2026-03-12 19:46:10.591861,abortion clinic san jose,abortion clinic near st joseph mi,where was the first,when created +abortion,"('where was the first abortion clinic', 'where was the first abortion clinic in the world')",where was the first abortion clinic,where was the first abortion clinic in the world,4,4,google,2026-03-12 19:46:10.591861,abortion clinic san jose,abortion clinic near st joseph mi,where was the first,in world +abortion,"('where was the first abortion clinic', 'when did the first abortion clinic open')",where was the first abortion clinic,when did the first abortion clinic open,5,4,google,2026-03-12 19:46:10.591861,abortion clinic san jose,abortion clinic near st joseph mi,where was the first,when did open +abortion,"('where was the first abortion clinic', 'who started the first abortion clinic')",where was the first abortion clinic,who started the first abortion clinic,6,4,google,2026-03-12 19:46:10.591861,abortion clinic san jose,abortion clinic near st joseph mi,where was the first,who started +abortion,"('where was the first abortion clinic', 'when was the first abortion recorded')",where was the first abortion clinic,when was the first abortion recorded,7,4,google,2026-03-12 19:46:10.591861,abortion clinic san jose,abortion clinic near st joseph mi,where was the first,when recorded +abortion,"('where was the first abortion clinic', 'where was the first abortion performed')",where was the first abortion clinic,where was the first abortion performed,8,4,google,2026-03-12 19:46:10.591861,abortion clinic san jose,abortion clinic near st joseph mi,where was the first,performed +abortion,"('abortion clinic near st. louis mo', 'abortion clinic near st louis mo')",abortion clinic near st. louis mo,abortion clinic near st louis mo,1,4,google,2026-03-12 19:46:11.436353,abortion clinic san jose,abortion clinic near st joseph mi,st. louis mo,st +abortion,"('abortion clinic near st. louis mo', ""va women's clinic near st louis mo"")",abortion clinic near st. louis mo,va women's clinic near st louis mo,2,4,google,2026-03-12 19:46:11.436353,abortion clinic san jose,abortion clinic near st joseph mi,st. louis mo,va women's st +abortion,"('abortion clinic near st. louis mo', ""women's clinic st louis mo"")",abortion clinic near st. louis mo,women's clinic st louis mo,3,4,google,2026-03-12 19:46:11.436353,abortion clinic san jose,abortion clinic near st joseph mi,st. louis mo,women's st +abortion,"('abortion clinic near st. louis mo', 'closest abortion clinic near me')",abortion clinic near st. louis mo,closest abortion clinic near me,4,4,google,2026-03-12 19:46:11.436353,abortion clinic san jose,abortion clinic near st joseph mi,st. louis mo,closest me +abortion,"('abortion clinic near st. louis mo', 'abortion clinic near me now')",abortion clinic near st. louis mo,abortion clinic near me now,5,4,google,2026-03-12 19:46:11.436353,abortion clinic san jose,abortion clinic near st joseph mi,st. louis mo,me now +abortion,"('abortion clinic near st. louis mo', 'abortion clinic near st louis')",abortion clinic near st. louis mo,abortion clinic near st louis,6,4,google,2026-03-12 19:46:11.436353,abortion clinic san jose,abortion clinic near st joseph mi,st. louis mo,st +abortion,"('abortion clinic near st. augustine fl', 'abortion clinic near st augustine fl')",abortion clinic near st. augustine fl,abortion clinic near st augustine fl,1,4,google,2026-03-12 19:46:12.430632,abortion clinic san jose,abortion clinic near st joseph mi,st. augustine fl,st +abortion,"('abortion clinic near st. augustine fl', 'abortion clinic st augustine')",abortion clinic near st. augustine fl,abortion clinic st augustine,2,4,google,2026-03-12 19:46:12.430632,abortion clinic san jose,abortion clinic near st joseph mi,st. augustine fl,st +abortion,"('abortion clinic near st. augustine fl', 'abortion clinic near st. petersburg fl')",abortion clinic near st. augustine fl,abortion clinic near st. petersburg fl,3,4,google,2026-03-12 19:46:12.430632,abortion clinic san jose,abortion clinic near st joseph mi,st. augustine fl,petersburg +abortion,"('abortion clinic near st. augustine fl', 'abortion clinic near coral springs fl')",abortion clinic near st. augustine fl,abortion clinic near coral springs fl,4,4,google,2026-03-12 19:46:12.430632,abortion clinic san jose,abortion clinic near st joseph mi,st. augustine fl,coral springs +abortion,"('abortion clinic near st paul mn', ""women's health clinic near st paul mn"")",abortion clinic near st paul mn,women's health clinic near st paul mn,1,4,google,2026-03-12 19:46:13.668943,abortion clinic san jose,abortion clinic near st joseph mi,paul mn,women's health +abortion,"('abortion clinic near st paul mn', ""women's clinic st paul mn"")",abortion clinic near st paul mn,women's clinic st paul mn,2,4,google,2026-03-12 19:46:13.668943,abortion clinic san jose,abortion clinic near st joseph mi,paul mn,women's +abortion,"('abortion clinic near st paul mn', 'closest abortion clinic near me')",abortion clinic near st paul mn,closest abortion clinic near me,3,4,google,2026-03-12 19:46:13.668943,abortion clinic san jose,abortion clinic near st joseph mi,paul mn,closest me +abortion,"('abortion clinic near st paul mn', 'abortion clinic near me now')",abortion clinic near st paul mn,abortion clinic near me now,4,4,google,2026-03-12 19:46:13.668943,abortion clinic san jose,abortion clinic near st joseph mi,paul mn,me now +abortion,"('abortion clinic near st paul mn', 'abortion clinic st paul')",abortion clinic near st paul mn,abortion clinic st paul,5,4,google,2026-03-12 19:46:13.668943,abortion clinic san jose,abortion clinic near st joseph mi,paul mn,paul mn +abortion,"('abortion clinic near st paul mn', 'planned parenthood near st paul mn')",abortion clinic near st paul mn,planned parenthood near st paul mn,6,4,google,2026-03-12 19:46:13.668943,abortion clinic san jose,abortion clinic near st joseph mi,paul mn,planned parenthood +abortion,"('abortion clinic near st paul mn', 'abortion clinic near minneapolis mn')",abortion clinic near st paul mn,abortion clinic near minneapolis mn,7,4,google,2026-03-12 19:46:13.668943,abortion clinic san jose,abortion clinic near st joseph mi,paul mn,minneapolis +abortion,"('abortion clinic near st paul mn', 'abortion clinic near st. petersburg fl')",abortion clinic near st paul mn,abortion clinic near st. petersburg fl,8,4,google,2026-03-12 19:46:13.668943,abortion clinic san jose,abortion clinic near st joseph mi,paul mn,st. petersburg fl +abortion,"('abortion clinic near st. petersburg fl', 'abortion clinic near st petersburg fl')",abortion clinic near st. petersburg fl,abortion clinic near st petersburg fl,1,4,google,2026-03-12 19:46:15.002341,abortion clinic san jose,abortion clinic near st joseph mi,st. petersburg fl,st +abortion,"('abortion clinic near st. petersburg fl', ""women's clinic st petersburg fl"")",abortion clinic near st. petersburg fl,women's clinic st petersburg fl,2,4,google,2026-03-12 19:46:15.002341,abortion clinic san jose,abortion clinic near st joseph mi,st. petersburg fl,women's st +abortion,"('abortion clinic near st. petersburg fl', 'abortion clinic st pete fl')",abortion clinic near st. petersburg fl,abortion clinic st pete fl,3,4,google,2026-03-12 19:46:15.002341,abortion clinic san jose,abortion clinic near st joseph mi,st. petersburg fl,st pete +abortion,"('abortion clinic near st. petersburg fl', 'abortion st petersburg fl')",abortion clinic near st. petersburg fl,abortion st petersburg fl,4,4,google,2026-03-12 19:46:15.002341,abortion clinic san jose,abortion clinic near st joseph mi,st. petersburg fl,st +abortion,"('abortion clinic near st. petersburg fl', 'abortion clinic in st pete')",abortion clinic near st. petersburg fl,abortion clinic in st pete,5,4,google,2026-03-12 19:46:15.002341,abortion clinic san jose,abortion clinic near st joseph mi,st. petersburg fl,in st pete +abortion,"('abortion clinic near st louis', 'abortion clinic near st louis mo')",abortion clinic near st louis,abortion clinic near st louis mo,1,4,google,2026-03-12 19:46:15.954084,abortion clinic san jose,abortion clinic near st joseph mi,louis,mo +abortion,"('abortion clinic near st louis', ""va women's clinic near st louis mo"")",abortion clinic near st louis,va women's clinic near st louis mo,2,4,google,2026-03-12 19:46:15.954084,abortion clinic san jose,abortion clinic near st joseph mi,louis,va women's mo +abortion,"('abortion clinic near st louis', 'abortion clinic st louis')",abortion clinic near st louis,abortion clinic st louis,3,4,google,2026-03-12 19:46:15.954084,abortion clinic san jose,abortion clinic near st joseph mi,louis,louis +abortion,"('abortion clinic near st louis', 'abortion clinic st louis illinois')",abortion clinic near st louis,abortion clinic st louis illinois,4,4,google,2026-03-12 19:46:15.954084,abortion clinic san jose,abortion clinic near st joseph mi,louis,illinois +abortion,"('abortion clinic near st louis', 'closest abortion clinic near me')",abortion clinic near st louis,closest abortion clinic near me,5,4,google,2026-03-12 19:46:15.954084,abortion clinic san jose,abortion clinic near st joseph mi,louis,closest me +abortion,"('abortion clinic near st louis', 'abortion clinic near me now')",abortion clinic near st louis,abortion clinic near me now,6,4,google,2026-03-12 19:46:15.954084,abortion clinic san jose,abortion clinic near st joseph mi,louis,me now +abortion,"('surgical abortion clinics near me open now', 'surgical abortion clinics near me')",surgical abortion clinics near me open now,surgical abortion clinics near me,1,4,google,2026-03-12 19:46:17.385465,abortion clinic san jose,surgical abortion clinics near me,open now,open now +abortion,"('surgical abortion clinics near me open now', 'open abortion clinics near me')",surgical abortion clinics near me open now,open abortion clinics near me,2,4,google,2026-03-12 19:46:17.385465,abortion clinic san jose,surgical abortion clinics near me,open now,open now +abortion,"('surgical abortion clinics near me open now', 'abortion clinic near me now')",surgical abortion clinics near me open now,abortion clinic near me now,3,4,google,2026-03-12 19:46:17.385465,abortion clinic san jose,surgical abortion clinics near me,open now,clinic +abortion,"('surgical abortion doctors near me', 'surgical abortion clinics near me')",surgical abortion doctors near me,surgical abortion clinics near me,1,4,google,2026-03-12 19:46:18.713731,abortion clinic san jose,surgical abortion clinics near me,doctors,clinics +abortion,"('surgical abortion doctors near me', 'surgical abortion clinics near me open now')",surgical abortion doctors near me,surgical abortion clinics near me open now,2,4,google,2026-03-12 19:46:18.713731,abortion clinic san jose,surgical abortion clinics near me,doctors,clinics open now +abortion,"('surgical abortion doctors near me', 'private surgical abortion clinic near me')",surgical abortion doctors near me,private surgical abortion clinic near me,3,4,google,2026-03-12 19:46:18.713731,abortion clinic san jose,surgical abortion clinics near me,doctors,private clinic +abortion,"('surgical abortion doctors near me', 'top rated surgical abortion clinics near me')",surgical abortion doctors near me,top rated surgical abortion clinics near me,4,4,google,2026-03-12 19:46:18.713731,abortion clinic san jose,surgical abortion clinics near me,doctors,top rated clinics +abortion,"('surgical abortion doctors near me', 'surgical abortion centres near me')",surgical abortion doctors near me,surgical abortion centres near me,5,4,google,2026-03-12 19:46:18.713731,abortion clinic san jose,surgical abortion clinics near me,doctors,centres +abortion,"('surgical abortion centers near me', 'surgical abortion clinics near me')",surgical abortion centers near me,surgical abortion clinics near me,1,4,google,2026-03-12 19:46:19.964330,abortion clinic san jose,surgical abortion clinics near me,centers,clinics +abortion,"('surgical abortion centers near me', 'surgical abortion clinics near me open now')",surgical abortion centers near me,surgical abortion clinics near me open now,2,4,google,2026-03-12 19:46:19.964330,abortion clinic san jose,surgical abortion clinics near me,centers,clinics open now +abortion,"('surgical abortion centers near me', 'private surgical abortion clinic near me')",surgical abortion centers near me,private surgical abortion clinic near me,3,4,google,2026-03-12 19:46:19.964330,abortion clinic san jose,surgical abortion clinics near me,centers,private clinic +abortion,"('surgical abortion centers near me', 'top rated surgical abortion clinics near me')",surgical abortion centers near me,top rated surgical abortion clinics near me,4,4,google,2026-03-12 19:46:19.964330,abortion clinic san jose,surgical abortion clinics near me,centers,top rated clinics +abortion,"('surgical abortion centers near me', 'surgical abortion centres near me')",surgical abortion centers near me,surgical abortion centres near me,5,4,google,2026-03-12 19:46:19.964330,abortion clinic san jose,surgical abortion clinics near me,centers,centres +abortion,"('private surgical abortion clinic near me', 'abortion clinic near me surgical')",private surgical abortion clinic near me,abortion clinic near me surgical,1,4,google,2026-03-12 19:46:21.363860,abortion clinic san jose,surgical abortion clinics near me,private clinic,private clinic +abortion,"('private surgical abortion clinic near me', 'private abortion clinic near me')",private surgical abortion clinic near me,private abortion clinic near me,2,4,google,2026-03-12 19:46:21.363860,abortion clinic san jose,surgical abortion clinics near me,private clinic,private clinic +abortion,"('private surgical abortion clinic near me', 'private abortion clinic cost')",private surgical abortion clinic near me,private abortion clinic cost,3,4,google,2026-03-12 19:46:21.363860,abortion clinic san jose,surgical abortion clinics near me,private clinic,cost +abortion,"('private surgical abortion clinic near me', 'abortion clinic near me open sunday')",private surgical abortion clinic near me,abortion clinic near me open sunday,4,4,google,2026-03-12 19:46:21.363860,abortion clinic san jose,surgical abortion clinics near me,private clinic,open sunday +abortion,"('private surgical abortion clinic near me', 'abortion clinic near me that accept insurance')",private surgical abortion clinic near me,abortion clinic near me that accept insurance,5,4,google,2026-03-12 19:46:21.363860,abortion clinic san jose,surgical abortion clinics near me,private clinic,that accept insurance +abortion,"('top rated surgical abortion clinics near me', 'abortion clinic near me surgical')",top rated surgical abortion clinics near me,abortion clinic near me surgical,1,4,google,2026-03-12 19:46:22.400195,abortion clinic san jose,surgical abortion clinics near me,top rated,clinic +abortion,"('top rated surgical abortion clinics near me', 'top rated abortion clinics near me')",top rated surgical abortion clinics near me,top rated abortion clinics near me,2,4,google,2026-03-12 19:46:22.400195,abortion clinic san jose,surgical abortion clinics near me,top rated,top rated +abortion,"('top rated surgical abortion clinics near me', 'top rated abortion clinics in michigan')",top rated surgical abortion clinics near me,top rated abortion clinics in michigan,3,4,google,2026-03-12 19:46:22.400195,abortion clinic san jose,surgical abortion clinics near me,top rated,in michigan +abortion,"('top rated surgical abortion clinics near me', 'best rated abortion clinics near me')",top rated surgical abortion clinics near me,best rated abortion clinics near me,4,4,google,2026-03-12 19:46:22.400195,abortion clinic san jose,surgical abortion clinics near me,top rated,best +abortion,"('top rated surgical abortion clinics near me', 'top abortion clinics near me')",top rated surgical abortion clinics near me,top abortion clinics near me,5,4,google,2026-03-12 19:46:22.400195,abortion clinic san jose,surgical abortion clinics near me,top rated,top rated +abortion,"('surgical abortion clinics melbourne', 'abortion clinic near me surgical')",surgical abortion clinics melbourne,abortion clinic near me surgical,1,4,google,2026-03-12 19:46:23.736201,abortion clinic san jose,surgical abortion clinics near me,melbourne,clinic near me +abortion,"('surgical abortion clinics melbourne', 'surgical abortion centres near me')",surgical abortion clinics melbourne,surgical abortion centres near me,2,4,google,2026-03-12 19:46:23.736201,abortion clinic san jose,surgical abortion clinics near me,melbourne,centres near me +abortion,"('surgical abortion centres near me', 'surgical abortion clinics near me')",surgical abortion centres near me,surgical abortion clinics near me,1,4,google,2026-03-12 19:46:24.753253,abortion clinic san jose,surgical abortion clinics near me,centres,clinics +abortion,"('surgical abortion centres near me', 'surgical abortion clinics near me open now')",surgical abortion centres near me,surgical abortion clinics near me open now,2,4,google,2026-03-12 19:46:24.753253,abortion clinic san jose,surgical abortion clinics near me,centres,clinics open now +abortion,"('surgical abortion centres near me', 'private surgical abortion clinic near me')",surgical abortion centres near me,private surgical abortion clinic near me,3,4,google,2026-03-12 19:46:24.753253,abortion clinic san jose,surgical abortion clinics near me,centres,private clinic +abortion,"('surgical abortion centres near me', 'top rated surgical abortion clinics near me')",surgical abortion centres near me,top rated surgical abortion clinics near me,4,4,google,2026-03-12 19:46:24.753253,abortion clinic san jose,surgical abortion clinics near me,centres,top rated clinics +abortion,"(""women's recovery services santa rosa ca"", ""women's recovery services santa rosa address"")",women's recovery services santa rosa ca,women's recovery services santa rosa address,1,4,google,2026-03-12 19:46:25.623379,abortion clinic santa rosa,abortion clinic santa rosa ca,women's recovery services,address +abortion,"(""women's recovery services santa rosa ca"", ""women's recovery center santa rosa ca"")",women's recovery services santa rosa ca,women's recovery center santa rosa ca,2,4,google,2026-03-12 19:46:25.623379,abortion clinic santa rosa,abortion clinic santa rosa ca,women's recovery services,center +abortion,"(""women's recovery services santa rosa ca"", ""women's recovery services santa rosa"")",women's recovery services santa rosa ca,women's recovery services santa rosa,3,4,google,2026-03-12 19:46:25.623379,abortion clinic santa rosa,abortion clinic santa rosa ca,women's recovery services,women's recovery services +abortion,"(""women's recovery services santa rosa ca"", ""women's recovery center santa rosa"")",women's recovery services santa rosa ca,women's recovery center santa rosa,4,4,google,2026-03-12 19:46:25.623379,abortion clinic santa rosa,abortion clinic santa rosa ca,women's recovery services,center +abortion,"(""women's recovery center santa rosa ca"", ""women's recovery services santa rosa ca"")",women's recovery center santa rosa ca,women's recovery services santa rosa ca,1,4,google,2026-03-12 19:46:26.555488,abortion clinic santa rosa,abortion clinic santa rosa ca,women's recovery center,services +abortion,"(""women's recovery center santa rosa ca"", ""women's recovery center santa rosa"")",women's recovery center santa rosa ca,women's recovery center santa rosa,2,4,google,2026-03-12 19:46:26.555488,abortion clinic santa rosa,abortion clinic santa rosa ca,women's recovery center,women's recovery center +abortion,"(""women's recovery center santa rosa ca"", ""women's recovery services santa rosa address"")",women's recovery center santa rosa ca,women's recovery services santa rosa address,3,4,google,2026-03-12 19:46:26.555488,abortion clinic santa rosa,abortion clinic santa rosa ca,women's recovery center,services address +abortion,"(""women's recovery center santa rosa ca"", ""women's recovery services santa rosa"")",women's recovery center santa rosa ca,women's recovery services santa rosa,4,4,google,2026-03-12 19:46:26.555488,abortion clinic santa rosa,abortion clinic santa rosa ca,women's recovery center,services +abortion,"('abortion clinic roseville ca', ""women's clinic roseville ca"")",abortion clinic roseville ca,women's clinic roseville ca,1,4,google,2026-03-12 19:46:27.617663,abortion clinic santa rosa,abortion clinic santa rosa ca,roseville,women's +abortion,"('abortion clinic roseville ca', 'abortion clinic open sunday near me')",abortion clinic roseville ca,abortion clinic open sunday near me,2,4,google,2026-03-12 19:46:27.617663,abortion clinic santa rosa,abortion clinic santa rosa ca,roseville,open sunday near me +abortion,"('abortion clinic roseville ca', 'planned parenthood near me abortion clinic')",abortion clinic roseville ca,planned parenthood near me abortion clinic,3,4,google,2026-03-12 19:46:27.617663,abortion clinic santa rosa,abortion clinic santa rosa ca,roseville,planned parenthood near me +abortion,"('abortion clinic roseville ca', 'abortion clinic open near me')",abortion clinic roseville ca,abortion clinic open near me,4,4,google,2026-03-12 19:46:27.617663,abortion clinic santa rosa,abortion clinic santa rosa ca,roseville,open near me +abortion,"('abortion clinic roseville ca', 'roseville abortion clinic')",abortion clinic roseville ca,roseville abortion clinic,5,4,google,2026-03-12 19:46:27.617663,abortion clinic santa rosa,abortion clinic santa rosa ca,roseville,roseville +abortion,"('abortion clinic roseville ca', 'abortion clinic coffee rd modesto')",abortion clinic roseville ca,abortion clinic coffee rd modesto,6,4,google,2026-03-12 19:46:27.617663,abortion clinic santa rosa,abortion clinic santa rosa ca,roseville,coffee rd modesto +abortion,"('abortion clinic roseville ca', 'abortion clinic redding ca')",abortion clinic roseville ca,abortion clinic redding ca,7,4,google,2026-03-12 19:46:27.617663,abortion clinic santa rosa,abortion clinic santa rosa ca,roseville,redding +abortion,"('abortion clinic roseville ca', 'abortion clinic robbinsdale')",abortion clinic roseville ca,abortion clinic robbinsdale,8,4,google,2026-03-12 19:46:27.617663,abortion clinic santa rosa,abortion clinic santa rosa ca,roseville,robbinsdale +abortion,"(""women's health center santa rosa"", ""women's health clinic santa rosa"")",women's health center santa rosa,women's health clinic santa rosa,1,4,google,2026-03-12 19:46:28.652230,abortion clinic santa rosa,women's clinic santa rosa,health center,clinic +abortion,"(""women's health center santa rosa"", ""sutter women's health center santa rosa"")",women's health center santa rosa,sutter women's health center santa rosa,2,4,google,2026-03-12 19:46:28.652230,abortion clinic santa rosa,women's clinic santa rosa,health center,sutter +abortion,"(""women's health center santa rosa"", ""sutter women's health center sutter pacific medical foundation santa rosa"")",women's health center santa rosa,sutter women's health center sutter pacific medical foundation santa rosa,3,4,google,2026-03-12 19:46:28.652230,abortion clinic santa rosa,women's clinic santa rosa,health center,sutter sutter pacific medical foundation +abortion,"(""women's health center santa rosa"", ""women's health santa rosa ca"")",women's health center santa rosa,women's health santa rosa ca,4,4,google,2026-03-12 19:46:28.652230,abortion clinic santa rosa,women's clinic santa rosa,health center,ca +abortion,"(""women's health center santa rosa"", ""women's health center santa maria ca"")",women's health center santa rosa,women's health center santa maria ca,5,4,google,2026-03-12 19:46:28.652230,abortion clinic santa rosa,women's clinic santa rosa,health center,maria ca +abortion,"(""women's health center santa rosa"", ""women's health center santa cruz ca"")",women's health center santa rosa,women's health center santa cruz ca,6,4,google,2026-03-12 19:46:28.652230,abortion clinic santa rosa,women's clinic santa rosa,health center,cruz ca +abortion,"(""women's health center santa rosa"", ""women's health center santa maria"")",women's health center santa rosa,women's health center santa maria,7,4,google,2026-03-12 19:46:28.652230,abortion clinic santa rosa,women's clinic santa rosa,health center,maria +abortion,"(""women's clinic santa cruz"", ""women's health center santa cruz"")",women's clinic santa cruz,women's health center santa cruz,1,4,google,2026-03-12 19:46:29.964726,abortion clinic santa rosa,women's clinic santa rosa,cruz,health center +abortion,"(""women's clinic santa cruz"", ""women's health center santa cruz ca"")",women's clinic santa cruz,women's health center santa cruz ca,2,4,google,2026-03-12 19:46:29.964726,abortion clinic santa rosa,women's clinic santa rosa,cruz,health center ca +abortion,"(""women's clinic santa cruz"", ""women's health clinic santa cruz"")",women's clinic santa cruz,women's health clinic santa cruz,3,4,google,2026-03-12 19:46:29.964726,abortion clinic santa rosa,women's clinic santa rosa,cruz,health +abortion,"(""women's clinic santa cruz"", ""santa cruz women's health clinic santa cruz ca"")",women's clinic santa cruz,santa cruz women's health clinic santa cruz ca,4,4,google,2026-03-12 19:46:29.964726,abortion clinic santa rosa,women's clinic santa rosa,cruz,health ca +abortion,"(""women's clinic santa cruz"", ""women's clinic santa fe"")",women's clinic santa cruz,women's clinic santa fe,5,4,google,2026-03-12 19:46:29.964726,abortion clinic santa rosa,women's clinic santa rosa,cruz,fe +abortion,"(""women's clinic santa cruz"", ""women's clinic santa teresa"")",women's clinic santa cruz,women's clinic santa teresa,6,4,google,2026-03-12 19:46:29.964726,abortion clinic santa rosa,women's clinic santa rosa,cruz,teresa +abortion,"(""women's clinic santa cruz"", ""women's clinic santa maria"")",women's clinic santa cruz,women's clinic santa maria,7,4,google,2026-03-12 19:46:29.964726,abortion clinic santa rosa,women's clinic santa rosa,cruz,maria +abortion,"(""women's clinic santa maria"", ""women's health center santa maria"")",women's clinic santa maria,women's health center santa maria,1,4,google,2026-03-12 19:46:31.035166,abortion clinic santa rosa,women's clinic santa rosa,maria,health center +abortion,"(""women's clinic santa maria"", ""women's health center santa maria ca"")",women's clinic santa maria,women's health center santa maria ca,2,4,google,2026-03-12 19:46:31.035166,abortion clinic santa rosa,women's clinic santa rosa,maria,health center ca +abortion,"(""women's clinic santa maria"", ""women's clinic santa marta"")",women's clinic santa maria,women's clinic santa marta,3,4,google,2026-03-12 19:46:31.035166,abortion clinic santa rosa,women's clinic santa rosa,maria,marta +abortion,"(""women's clinic santa maria"", ""women's clinic santa marta photos"")",women's clinic santa maria,women's clinic santa marta photos,4,4,google,2026-03-12 19:46:31.035166,abortion clinic santa rosa,women's clinic santa rosa,maria,marta photos +abortion,"(""women's clinic santa maria"", ""women's clinic santa marta reviews"")",women's clinic santa maria,women's clinic santa marta reviews,5,4,google,2026-03-12 19:46:31.035166,abortion clinic santa rosa,women's clinic santa rosa,maria,marta reviews +abortion,"(""women's clinic santa maria"", ""women's health clinic santa maria"")",women's clinic santa maria,women's health clinic santa maria,6,4,google,2026-03-12 19:46:31.035166,abortion clinic santa rosa,women's clinic santa rosa,maria,health +abortion,"(""women's clinic santa maria"", ""women's health clinic santa maria ca"")",women's clinic santa maria,women's health clinic santa maria ca,7,4,google,2026-03-12 19:46:31.035166,abortion clinic santa rosa,women's clinic santa rosa,maria,health ca +abortion,"(""women's clinic santa maria"", ""women's clinic santa maria ca"")",women's clinic santa maria,women's clinic santa maria ca,8,4,google,2026-03-12 19:46:31.035166,abortion clinic santa rosa,women's clinic santa rosa,maria,ca +abortion,"(""women's clinic santa maria"", ""women's clinic santa barbara"")",women's clinic santa maria,women's clinic santa barbara,9,4,google,2026-03-12 19:46:31.035166,abortion clinic santa rosa,women's clinic santa rosa,maria,barbara +abortion,"(""women's clinic santa fe"", ""women's clinic santa fe nm"")",women's clinic santa fe,women's clinic santa fe nm,1,4,google,2026-03-12 19:46:32.349444,abortion clinic santa rosa,women's clinic santa rosa,fe,nm +abortion,"(""women's clinic santa fe"", ""women's health center santa fe"")",women's clinic santa fe,women's health center santa fe,2,4,google,2026-03-12 19:46:32.349444,abortion clinic santa rosa,women's clinic santa rosa,fe,health center +abortion,"(""women's clinic santa fe"", ""women's health clinic santa fe nm"")",women's clinic santa fe,women's health clinic santa fe nm,3,4,google,2026-03-12 19:46:32.349444,abortion clinic santa rosa,women's clinic santa rosa,fe,health nm +abortion,"(""women's clinic santa fe"", ""lovelace women's hospital santa fe"")",women's clinic santa fe,lovelace women's hospital santa fe,4,4,google,2026-03-12 19:46:32.349444,abortion clinic santa rosa,women's clinic santa rosa,fe,lovelace hospital +abortion,"(""women's clinic santa fe"", ""women's health clinic santa fe"")",women's clinic santa fe,women's health clinic santa fe,5,4,google,2026-03-12 19:46:32.349444,abortion clinic santa rosa,women's clinic santa rosa,fe,health +abortion,"(""women's clinic santa fe"", ""women's clinic san fernando"")",women's clinic santa fe,women's clinic san fernando,6,4,google,2026-03-12 19:46:32.349444,abortion clinic santa rosa,women's clinic santa rosa,fe,san fernando +abortion,"(""women's clinic santa fe"", ""women's clinic santa maria"")",women's clinic santa fe,women's clinic santa maria,7,4,google,2026-03-12 19:46:32.349444,abortion clinic santa rosa,women's clinic santa rosa,fe,maria +abortion,"(""women's clinic santa barbara"", ""santa barbara women's clinic"")",women's clinic santa barbara,santa barbara women's clinic,1,4,google,2026-03-12 19:46:33.552129,abortion clinic santa rosa,women's clinic santa rosa,barbara,barbara +abortion,"(""women's clinic santa barbara"", ""women's health center santa barbara"")",women's clinic santa barbara,women's health center santa barbara,2,4,google,2026-03-12 19:46:33.552129,abortion clinic santa rosa,women's clinic santa rosa,barbara,health center +abortion,"(""women's clinic santa barbara"", ""women's clinic santa monica"")",women's clinic santa barbara,women's clinic santa monica,3,4,google,2026-03-12 19:46:33.552129,abortion clinic santa rosa,women's clinic santa rosa,barbara,monica +abortion,"(""women's clinic santa barbara"", ""women's health clinic santa barbara"")",women's clinic santa barbara,women's health clinic santa barbara,4,4,google,2026-03-12 19:46:33.552129,abortion clinic santa rosa,women's clinic santa rosa,barbara,health +abortion,"(""women's clinic santa barbara"", ""women's medical clinic santa barbara"")",women's clinic santa barbara,women's medical clinic santa barbara,5,4,google,2026-03-12 19:46:33.552129,abortion clinic santa rosa,women's clinic santa rosa,barbara,medical +abortion,"(""women's clinic santa barbara"", ""samsung women's clinic santa barbara"")",women's clinic santa barbara,samsung women's clinic santa barbara,6,4,google,2026-03-12 19:46:33.552129,abortion clinic santa rosa,women's clinic santa rosa,barbara,samsung +abortion,"(""women's clinic santa barbara"", 'sansum clinic santa barbara women')",women's clinic santa barbara,sansum clinic santa barbara women,7,4,google,2026-03-12 19:46:33.552129,abortion clinic santa rosa,women's clinic santa rosa,barbara,sansum women +abortion,"(""women's clinic santa barbara"", ""santa monica women's health center"")",women's clinic santa barbara,santa monica women's health center,8,4,google,2026-03-12 19:46:33.552129,abortion clinic santa rosa,women's clinic santa rosa,barbara,monica health center +abortion,"(""women's clinic santa barbara"", ""women's free homeless clinic santa barbara"")",women's clinic santa barbara,women's free homeless clinic santa barbara,9,4,google,2026-03-12 19:46:33.552129,abortion clinic santa rosa,women's clinic santa rosa,barbara,free homeless +abortion,"(""women's clinic santa barbara"", ""women's health clinic santa monica"")",women's clinic santa barbara,women's health clinic santa monica,10,4,google,2026-03-12 19:46:33.552129,abortion clinic santa rosa,women's clinic santa rosa,barbara,health monica +abortion,"(""women's health santa rosa ca"", ""women's health santa rosa california"")",women's health santa rosa ca,women's health santa rosa california,1,4,google,2026-03-12 19:46:34.503007,abortion clinic santa rosa,women's health clinic santa rosa,ca,california +abortion,"(""women's health santa rosa ca"", ""women's health santa rosa ca fax number"")",women's health santa rosa ca,women's health santa rosa ca fax number,2,4,google,2026-03-12 19:46:34.503007,abortion clinic santa rosa,women's health clinic santa rosa,ca,fax number +abortion,"(""women's health santa rosa ca"", ""women's health santa rosa cardiology"")",women's health santa rosa ca,women's health santa rosa cardiology,3,4,google,2026-03-12 19:46:34.503007,abortion clinic santa rosa,women's health clinic santa rosa,ca,cardiology +abortion,"(""women's health santa rosa ca"", ""women's health santa rosa ca npi"")",women's health santa rosa ca,women's health santa rosa ca npi,4,4,google,2026-03-12 19:46:34.503007,abortion clinic santa rosa,women's health clinic santa rosa,ca,npi +abortion,"(""women's health clinic santa cruz"", ""santa cruz women's health clinic santa cruz ca"")",women's health clinic santa cruz,santa cruz women's health clinic santa cruz ca,1,4,google,2026-03-12 19:46:35.430851,abortion clinic santa rosa,women's health clinic santa rosa,cruz,ca +abortion,"(""women's health clinic santa cruz"", ""santa cruz women's health clinic photos"")",women's health clinic santa cruz,santa cruz women's health clinic photos,2,4,google,2026-03-12 19:46:35.430851,abortion clinic santa rosa,women's health clinic santa rosa,cruz,photos +abortion,"(""women's health clinic santa cruz"", ""women's health center santa cruz ca"")",women's health clinic santa cruz,women's health center santa cruz ca,3,4,google,2026-03-12 19:46:35.430851,abortion clinic santa rosa,women's health clinic santa rosa,cruz,center ca +abortion,"(""women's health clinic santa cruz"", ""women's health santa cruz"")",women's health clinic santa cruz,women's health santa cruz,4,4,google,2026-03-12 19:46:35.430851,abortion clinic santa rosa,women's health clinic santa rosa,cruz,cruz +abortion,"(""women's health clinic santa cruz"", ""women's clinic santa cruz"")",women's health clinic santa cruz,women's clinic santa cruz,5,4,google,2026-03-12 19:46:35.430851,abortion clinic santa rosa,women's health clinic santa rosa,cruz,cruz +abortion,"(""women's health clinic santa cruz"", ""women's health clinic santa fe nm"")",women's health clinic santa cruz,women's health clinic santa fe nm,6,4,google,2026-03-12 19:46:35.430851,abortion clinic santa rosa,women's health clinic santa rosa,cruz,fe nm +abortion,"(""women's health clinic santa fe nm"", ""women's health center santa fe nm"")",women's health clinic santa fe nm,women's health center santa fe nm,1,4,google,2026-03-12 19:46:36.446936,abortion clinic santa rosa,women's health clinic santa rosa,fe nm,center +abortion,"(""women's health clinic santa fe nm"", ""women's health services santa fe nm"")",women's health clinic santa fe nm,women's health services santa fe nm,2,4,google,2026-03-12 19:46:36.446936,abortion clinic santa rosa,women's health clinic santa rosa,fe nm,services +abortion,"(""women's health clinic santa fe nm"", ""women's health santa fe nm"")",women's health clinic santa fe nm,women's health santa fe nm,3,4,google,2026-03-12 19:46:36.446936,abortion clinic santa rosa,women's health clinic santa rosa,fe nm,fe nm +abortion,"(""women's health clinic santa fe nm"", ""women's health clinic santa fe"")",women's health clinic santa fe nm,women's health clinic santa fe,4,4,google,2026-03-12 19:46:36.446936,abortion clinic santa rosa,women's health clinic santa rosa,fe nm,fe nm +abortion,"(""women's health clinic santa fe nm"", ""women's health santa fe"")",women's health clinic santa fe nm,women's health santa fe,5,4,google,2026-03-12 19:46:36.446936,abortion clinic santa rosa,women's health clinic santa rosa,fe nm,fe nm +abortion,"('free abortion hospital near me', 'free abortion clinic near me')",free abortion hospital near me,free abortion clinic near me,1,4,google,2026-03-12 19:46:37.697702,abortion clinic santa rosa,free abortion clinic near me,hospital,clinic +abortion,"('free abortion hospital near me', 'free abortion clinic near me open now')",free abortion hospital near me,free abortion clinic near me open now,2,4,google,2026-03-12 19:46:37.697702,abortion clinic santa rosa,free abortion clinic near me,hospital,clinic open now +abortion,"('free abortion hospital near me', 'free abortion clinic near me volunteer')",free abortion hospital near me,free abortion clinic near me volunteer,3,4,google,2026-03-12 19:46:37.697702,abortion clinic santa rosa,free abortion clinic near me,hospital,clinic volunteer +abortion,"('free abortion hospital near me', 'free abortion clinic near me within 5 mi')",free abortion hospital near me,free abortion clinic near me within 5 mi,4,4,google,2026-03-12 19:46:37.697702,abortion clinic santa rosa,free abortion clinic near me,hospital,clinic within 5 mi +abortion,"('free abortion hospital near me', 'free abortion clinic near me within 20 mi')",free abortion hospital near me,free abortion clinic near me within 20 mi,5,4,google,2026-03-12 19:46:37.697702,abortion clinic santa rosa,free abortion clinic near me,hospital,clinic within 20 mi +abortion,"('free abortion hospital near me', 'free abortion clinic near me within 8.1 km')",free abortion hospital near me,free abortion clinic near me within 8.1 km,6,4,google,2026-03-12 19:46:37.697702,abortion clinic santa rosa,free abortion clinic near me,hospital,clinic within 8.1 km +abortion,"('free abortion hospital near me', 'free abortion at public hospital near me')",free abortion hospital near me,free abortion at public hospital near me,7,4,google,2026-03-12 19:46:37.697702,abortion clinic santa rosa,free abortion clinic near me,hospital,at public +abortion,"('free abortion hospital near me', 'free government abortion clinic near me')",free abortion hospital near me,free government abortion clinic near me,8,4,google,2026-03-12 19:46:37.697702,abortion clinic santa rosa,free abortion clinic near me,hospital,government clinic +abortion,"('free abortion hospital near me', 'free cat abortion clinic near me')",free abortion hospital near me,free cat abortion clinic near me,9,4,google,2026-03-12 19:46:37.697702,abortion clinic santa rosa,free abortion clinic near me,hospital,cat clinic +abortion,"('planned parenthood near me abortion services', 'planned parenthood near me abortion clinic')",planned parenthood near me abortion services,planned parenthood near me abortion clinic,1,4,google,2026-03-12 19:46:38.813652,abortion clinic santa rosa,planned parenthood near me abortion clinic,services,clinic +abortion,"('planned parenthood near me abortion services', 'how much is an abortion cost at planned parenthood')",planned parenthood near me abortion services,how much is an abortion cost at planned parenthood,2,4,google,2026-03-12 19:46:38.813652,abortion clinic santa rosa,planned parenthood near me abortion clinic,services,how much is an cost at +abortion,"('planned parenthood near me abortion services', 'planned parenthood near me schedule appointment')",planned parenthood near me abortion services,planned parenthood near me schedule appointment,3,4,google,2026-03-12 19:46:38.813652,abortion clinic santa rosa,planned parenthood near me abortion clinic,services,schedule appointment +abortion,"('planned parenthood near me abortion services', 'planned parenthood near me phone number')",planned parenthood near me abortion services,planned parenthood near me phone number,4,4,google,2026-03-12 19:46:38.813652,abortion clinic santa rosa,planned parenthood near me abortion clinic,services,phone number +abortion,"('planned parenthood near me abortion services', 'planned parenthood near me open now')",planned parenthood near me abortion services,planned parenthood near me open now,5,4,google,2026-03-12 19:46:38.813652,abortion clinic santa rosa,planned parenthood near me abortion clinic,services,open now +abortion,"('does planned parenthood do abortions for free', 'can planned parenthood do abortions for free')",does planned parenthood do abortions for free,can planned parenthood do abortions for free,1,4,google,2026-03-12 19:46:40.100596,abortion clinic santa rosa,planned parenthood near me abortion clinic,does do abortions for free,can +abortion,"('does planned parenthood do abortions for free', 'does planned parenthood do abortion pills for free')",does planned parenthood do abortions for free,does planned parenthood do abortion pills for free,2,4,google,2026-03-12 19:46:40.100596,abortion clinic santa rosa,planned parenthood near me abortion clinic,does do abortions for free,abortion pills +abortion,"('does planned parenthood do abortions for free', 'does planned parenthood do free abortions for minors')",does planned parenthood do abortions for free,does planned parenthood do free abortions for minors,3,4,google,2026-03-12 19:46:40.100596,abortion clinic santa rosa,planned parenthood near me abortion clinic,does do abortions for free,minors +abortion,"('does planned parenthood do abortions for free', 'does planned parenthood do free abortions for teens')",does planned parenthood do abortions for free,does planned parenthood do free abortions for teens,4,4,google,2026-03-12 19:46:40.100596,abortion clinic santa rosa,planned parenthood near me abortion clinic,does do abortions for free,teens +abortion,"('does planned parenthood do abortions for free', 'will planned parenthood do an abortion for free')",does planned parenthood do abortions for free,will planned parenthood do an abortion for free,5,4,google,2026-03-12 19:46:40.100596,abortion clinic santa rosa,planned parenthood near me abortion clinic,does do abortions for free,will an abortion +abortion,"('does planned parenthood do abortions for free', 'does planned parenthood offer free abortions')",does planned parenthood do abortions for free,does planned parenthood offer free abortions,6,4,google,2026-03-12 19:46:40.100596,abortion clinic santa rosa,planned parenthood near me abortion clinic,does do abortions for free,offer +abortion,"('does planned parenthood do abortions for free', 'does planned parenthood do abortions for free reddit')",does planned parenthood do abortions for free,does planned parenthood do abortions for free reddit,7,4,google,2026-03-12 19:46:40.100596,abortion clinic santa rosa,planned parenthood near me abortion clinic,does do abortions for free,reddit +abortion,"('does planned parenthood do abortions for free', 'does planned parenthood do abortions for minors')",does planned parenthood do abortions for free,does planned parenthood do abortions for minors,8,4,google,2026-03-12 19:46:40.100596,abortion clinic santa rosa,planned parenthood near me abortion clinic,does do abortions for free,minors +abortion,"('planned parenthood near me open now', 'planned parenthood near me open now within 5 mi')",planned parenthood near me open now,planned parenthood near me open now within 5 mi,1,4,google,2026-03-12 19:46:41.336223,abortion clinic santa rosa,planned parenthood near me abortion clinic,open now,within 5 mi +abortion,"('planned parenthood near me open now', 'planned parenthood near me open now within 20 mi')",planned parenthood near me open now,planned parenthood near me open now within 20 mi,2,4,google,2026-03-12 19:46:41.336223,abortion clinic santa rosa,planned parenthood near me abortion clinic,open now,within 20 mi +abortion,"('planned parenthood near me open now', 'planned parenthood near me open today')",planned parenthood near me open now,planned parenthood near me open today,3,4,google,2026-03-12 19:46:41.336223,abortion clinic santa rosa,planned parenthood near me abortion clinic,open now,today +abortion,"('planned parenthood near me open now', 'does planned parenthood take walk ins')",planned parenthood near me open now,does planned parenthood take walk ins,4,4,google,2026-03-12 19:46:41.336223,abortion clinic santa rosa,planned parenthood near me abortion clinic,open now,does take walk ins +abortion,"('planned parenthood near me open now', 'planned parenthood near me open saturday')",planned parenthood near me open now,planned parenthood near me open saturday,5,4,google,2026-03-12 19:46:41.336223,abortion clinic santa rosa,planned parenthood near me abortion clinic,open now,saturday +abortion,"('planned parenthood near me open now', 'planned parenthood near me online appointment')",planned parenthood near me open now,planned parenthood near me online appointment,6,4,google,2026-03-12 19:46:41.336223,abortion clinic santa rosa,planned parenthood near me abortion clinic,open now,online appointment +abortion,"('planned parenthood near me open now', 'planned parenthood near me schedule appointment')",planned parenthood near me open now,planned parenthood near me schedule appointment,7,4,google,2026-03-12 19:46:41.336223,abortion clinic santa rosa,planned parenthood near me abortion clinic,open now,schedule appointment +abortion,"('planned parenthood near me walk in', 'planned parenthood near me walk in clinic')",planned parenthood near me walk in,planned parenthood near me walk in clinic,1,4,google,2026-03-12 19:46:42.613788,abortion clinic santa rosa,planned parenthood near me abortion clinic,walk in,clinic +abortion,"('planned parenthood near me walk in', 'planned parenthood walk in hours near me')",planned parenthood near me walk in,planned parenthood walk in hours near me,2,4,google,2026-03-12 19:46:42.613788,abortion clinic santa rosa,planned parenthood near me abortion clinic,walk in,hours +abortion,"('planned parenthood near me walk in', 'does planned parenthood take walk ins')",planned parenthood near me walk in,does planned parenthood take walk ins,3,4,google,2026-03-12 19:46:42.613788,abortion clinic santa rosa,planned parenthood near me abortion clinic,walk in,does take ins +abortion,"('planned parenthood near me walk in', 'does planned parenthood do walk ins')",planned parenthood near me walk in,does planned parenthood do walk ins,4,4,google,2026-03-12 19:46:42.613788,abortion clinic santa rosa,planned parenthood near me abortion clinic,walk in,does do ins +abortion,"('planned parenthood near me walk in', 'planned parenthood walk ins near me')",planned parenthood near me walk in,planned parenthood walk ins near me,5,4,google,2026-03-12 19:46:42.613788,abortion clinic santa rosa,planned parenthood near me abortion clinic,walk in,ins +abortion,"('abortion santa rosa ca', 'abortion clinic santa rosa ca')",abortion santa rosa ca,abortion clinic santa rosa ca,1,4,google,2026-03-12 19:46:43.558222,abortion clinic santa rosa,abortion santa rosa,ca,clinic +abortion,"('abortion santa rosa ca', 'abortion planned parenthood near me')",abortion santa rosa ca,abortion planned parenthood near me,2,4,google,2026-03-12 19:46:43.558222,abortion clinic santa rosa,abortion santa rosa,ca,planned parenthood near me +abortion,"('abortion santa rosa ca', 'does planned parenthood support abortion')",abortion santa rosa ca,does planned parenthood support abortion,3,4,google,2026-03-12 19:46:43.558222,abortion clinic santa rosa,abortion santa rosa,ca,does planned parenthood support +abortion,"('abortion santa rosa ca', 'abortion options in california')",abortion santa rosa ca,abortion options in california,4,4,google,2026-03-12 19:46:43.558222,abortion clinic santa rosa,abortion santa rosa,ca,options in california +abortion,"('abortion santa rosa ca', 'abortion santa rosa')",abortion santa rosa ca,abortion santa rosa,5,4,google,2026-03-12 19:46:43.558222,abortion clinic santa rosa,abortion santa rosa,ca,ca +abortion,"('abortion santa rosa ca', 'santa rosa abortion clinic')",abortion santa rosa ca,santa rosa abortion clinic,6,4,google,2026-03-12 19:46:43.558222,abortion clinic santa rosa,abortion santa rosa,ca,clinic +abortion,"('abortion santa rosa ca', 'santa rosa abortion rights protest')",abortion santa rosa ca,santa rosa abortion rights protest,7,4,google,2026-03-12 19:46:43.558222,abortion clinic santa rosa,abortion santa rosa,ca,rights protest +abortion,"('abortion santa rosa ca', 'abortion santa barbara')",abortion santa rosa ca,abortion santa barbara,8,4,google,2026-03-12 19:46:43.558222,abortion clinic santa rosa,abortion santa rosa,ca,barbara +abortion,"('abortion planned parenthood near me', 'planned parenthood near me abortion clinic')",abortion planned parenthood near me,planned parenthood near me abortion clinic,1,4,google,2026-03-12 19:46:44.729305,abortion clinic santa rosa,abortion santa rosa,planned parenthood near me,clinic +abortion,"('abortion planned parenthood near me', 'planned parenthood near me abortion services')",abortion planned parenthood near me,planned parenthood near me abortion services,2,4,google,2026-03-12 19:46:44.729305,abortion clinic santa rosa,abortion santa rosa,planned parenthood near me,services +abortion,"('abortion planned parenthood near me', 'planned parenthood surgical abortion near me')",abortion planned parenthood near me,planned parenthood surgical abortion near me,3,4,google,2026-03-12 19:46:44.729305,abortion clinic santa rosa,abortion santa rosa,planned parenthood near me,surgical +abortion,"('abortion planned parenthood near me', 'what days does planned parenthood do abortions')",abortion planned parenthood near me,what days does planned parenthood do abortions,4,4,google,2026-03-12 19:46:44.729305,abortion clinic santa rosa,abortion santa rosa,planned parenthood near me,what days does do abortions +abortion,"('abortion planned parenthood near me', 'does planned parenthood do abortions for free')",abortion planned parenthood near me,does planned parenthood do abortions for free,5,4,google,2026-03-12 19:46:44.729305,abortion clinic santa rosa,abortion santa rosa,planned parenthood near me,does do abortions for free +abortion,"('abortion planned parenthood near me', 'does planned parenthood still do abortions')",abortion planned parenthood near me,does planned parenthood still do abortions,6,4,google,2026-03-12 19:46:44.729305,abortion clinic santa rosa,abortion santa rosa,planned parenthood near me,does still do abortions +abortion,"('abortion planned parenthood near me', 'abortion planned parenthood appointment')",abortion planned parenthood near me,abortion planned parenthood appointment,7,4,google,2026-03-12 19:46:44.729305,abortion clinic santa rosa,abortion santa rosa,planned parenthood near me,appointment +abortion,"('abortion planned parenthood near me', 'abortion planned parenthood washington')",abortion planned parenthood near me,abortion planned parenthood washington,8,4,google,2026-03-12 19:46:44.729305,abortion clinic santa rosa,abortion santa rosa,planned parenthood near me,washington +abortion,"('does planned parenthood support abortion', 'does planned parenthood support abortion rights')",does planned parenthood support abortion,does planned parenthood support abortion rights,1,4,google,2026-03-12 19:46:45.813364,abortion clinic santa rosa,abortion santa rosa,does planned parenthood support,rights +abortion,"('does planned parenthood support abortion', 'does planned parenthood help with abortions')",does planned parenthood support abortion,does planned parenthood help with abortions,2,4,google,2026-03-12 19:46:45.813364,abortion clinic santa rosa,abortion santa rosa,does planned parenthood support,help with abortions +abortion,"('does planned parenthood support abortion', 'can planned parenthood help with abortion')",does planned parenthood support abortion,can planned parenthood help with abortion,3,4,google,2026-03-12 19:46:45.813364,abortion clinic santa rosa,abortion santa rosa,does planned parenthood support,can help with +abortion,"('does planned parenthood support abortion', 'does planned parenthood help pay for abortion')",does planned parenthood support abortion,does planned parenthood help pay for abortion,4,4,google,2026-03-12 19:46:45.813364,abortion clinic santa rosa,abortion santa rosa,does planned parenthood support,help pay for +abortion,"('does planned parenthood support abortion', 'does planned parenthood insurance cover abortions')",does planned parenthood support abortion,does planned parenthood insurance cover abortions,5,4,google,2026-03-12 19:46:45.813364,abortion clinic santa rosa,abortion santa rosa,does planned parenthood support,insurance cover abortions +abortion,"('does planned parenthood support abortion', 'does planned parenthood do abortions')",does planned parenthood support abortion,does planned parenthood do abortions,6,4,google,2026-03-12 19:46:45.813364,abortion clinic santa rosa,abortion santa rosa,does planned parenthood support,do abortions +abortion,"('does planned parenthood support abortion', 'does planned parenthood support adoption')",does planned parenthood support abortion,does planned parenthood support adoption,7,4,google,2026-03-12 19:46:45.813364,abortion clinic santa rosa,abortion santa rosa,does planned parenthood support,adoption +abortion,"('santa rosa abortion rights protest', 'santa rosa abortion rights protests')",santa rosa abortion rights protest,santa rosa abortion rights protests,1,4,google,2026-03-12 19:46:46.967898,abortion clinic santa rosa,abortion santa rosa,rights protest,protests +abortion,"('santa rosa abortion rights protest', 'santa rosa abortion rights protest today')",santa rosa abortion rights protest,santa rosa abortion rights protest today,2,4,google,2026-03-12 19:46:46.967898,abortion clinic santa rosa,abortion santa rosa,rights protest,today +abortion,"('santa rosa abortion rights protest', 'santa rosa abortion rights protest 2024')",santa rosa abortion rights protest,santa rosa abortion rights protest 2024,3,4,google,2026-03-12 19:46:46.967898,abortion clinic santa rosa,abortion santa rosa,rights protest,2024 +abortion,"('santa rosa abortion rights protest', 'santa rosa abortion rights protest 2023')",santa rosa abortion rights protest,santa rosa abortion rights protest 2023,4,4,google,2026-03-12 19:46:46.967898,abortion clinic santa rosa,abortion santa rosa,rights protest,2023 +abortion,"('santa rosa abortion rights protest', 'santa rosa abortion rights protest schedule')",santa rosa abortion rights protest,santa rosa abortion rights protest schedule,5,4,google,2026-03-12 19:46:46.967898,abortion clinic santa rosa,abortion santa rosa,rights protest,schedule +abortion,"('abortion santa barbara', 'abortion clinic santa barbara')",abortion santa barbara,abortion clinic santa barbara,1,4,google,2026-03-12 19:46:48.482071,abortion clinic santa rosa,abortion santa rosa,barbara,clinic +abortion,"('abortion santa barbara', 'abortion options in california')",abortion santa barbara,abortion options in california,2,4,google,2026-03-12 19:46:48.482071,abortion clinic santa rosa,abortion santa rosa,barbara,options in california +abortion,"('abortion santa barbara', 'abortion santa rosa')",abortion santa barbara,abortion santa rosa,3,4,google,2026-03-12 19:46:48.482071,abortion clinic santa rosa,abortion santa rosa,barbara,rosa +abortion,"(""london women's clinic brentwood"", ""london women's clinic brentwood reviews"")",london women's clinic brentwood,london women's clinic brentwood reviews,1,4,google,2026-03-12 19:46:51.510079,abortion clinic brentwood,women's clinic brentwood,london,reviews +abortion,"(""london women's clinic brentwood"", ""london women's clinic brentwood photos"")",london women's clinic brentwood,london women's clinic brentwood photos,2,4,google,2026-03-12 19:46:51.510079,abortion clinic brentwood,women's clinic brentwood,london,photos +abortion,"(""london women's clinic brentwood"", 'london womens clinic opening hours')",london women's clinic brentwood,london womens clinic opening hours,3,4,google,2026-03-12 19:46:51.510079,abortion clinic brentwood,women's clinic brentwood,london,womens opening hours +abortion,"(""london women's clinic brentwood"", ""london women's clinic locations"")",london women's clinic brentwood,london women's clinic locations,4,4,google,2026-03-12 19:46:51.510079,abortion clinic brentwood,women's clinic brentwood,london,locations +abortion,"(""london women's clinic brentwood"", 'london womens clinic success rates')",london women's clinic brentwood,london womens clinic success rates,5,4,google,2026-03-12 19:46:51.510079,abortion clinic brentwood,women's clinic brentwood,london,womens success rates +abortion,"(""london women's clinic brentwood"", ""london women's center"")",london women's clinic brentwood,london women's center,6,4,google,2026-03-12 19:46:51.510079,abortion clinic brentwood,women's clinic brentwood,london,center +abortion,"(""london women's clinic brentwood"", ""london women's clinic london ky"")",london women's clinic brentwood,london women's clinic london ky,7,4,google,2026-03-12 19:46:51.510079,abortion clinic brentwood,women's clinic brentwood,london,ky +abortion,"(""london women's clinic brentwood"", 'london womens clinic phone number')",london women's clinic brentwood,london womens clinic phone number,8,4,google,2026-03-12 19:46:51.510079,abortion clinic brentwood,women's clinic brentwood,london,womens phone number +abortion,"(""london women's clinic brentwood"", ""brentwood women's health"")",london women's clinic brentwood,brentwood women's health,9,4,google,2026-03-12 19:46:51.510079,abortion clinic brentwood,women's clinic brentwood,london,health +abortion,"(""london women's clinic brentwood reviews"", 'london womens clinic review')",london women's clinic brentwood reviews,london womens clinic review,1,4,google,2026-03-12 19:46:52.322566,abortion clinic brentwood,women's clinic brentwood,london reviews,womens review +abortion,"(""london women's clinic brentwood reviews"", ""london women's clinic bristol reviews"")",london women's clinic brentwood reviews,london women's clinic bristol reviews,2,4,google,2026-03-12 19:46:52.322566,abortion clinic brentwood,women's clinic brentwood,london reviews,bristol +abortion,"(""london women's clinic brentwood reviews"", 'london womens clinic opening hours')",london women's clinic brentwood reviews,london womens clinic opening hours,3,4,google,2026-03-12 19:46:52.322566,abortion clinic brentwood,women's clinic brentwood,london reviews,womens opening hours +abortion,"(""london women's clinic brentwood reviews"", ""london women's care reviews"")",london women's clinic brentwood reviews,london women's care reviews,4,4,google,2026-03-12 19:46:52.322566,abortion clinic brentwood,women's clinic brentwood,london reviews,care +abortion,"(""london women's clinic brentwood reviews"", ""london women's clinic brentwood photos"")",london women's clinic brentwood reviews,london women's clinic brentwood photos,5,4,google,2026-03-12 19:46:52.322566,abortion clinic brentwood,women's clinic brentwood,london reviews,photos +abortion,"(""london women's clinic brentwood reviews"", ""london women's clinic london ky"")",london women's clinic brentwood reviews,london women's clinic london ky,6,4,google,2026-03-12 19:46:52.322566,abortion clinic brentwood,women's clinic brentwood,london reviews,ky +abortion,"(""vanderbilt women's clinic brentwood"", ""vanderbilt women's health center brentwood"")",vanderbilt women's clinic brentwood,vanderbilt women's health center brentwood,1,4,google,2026-03-12 19:46:53.300189,abortion clinic brentwood,women's clinic brentwood,vanderbilt,health center +abortion,"(""vanderbilt women's clinic brentwood"", ""vanderbilt women's health clinic brentwood"")",vanderbilt women's clinic brentwood,vanderbilt women's health clinic brentwood,2,4,google,2026-03-12 19:46:53.300189,abortion clinic brentwood,women's clinic brentwood,vanderbilt,health +abortion,"(""vanderbilt women's clinic brentwood"", ""vanderbilt women's brentwood"")",vanderbilt women's clinic brentwood,vanderbilt women's brentwood,3,4,google,2026-03-12 19:46:53.300189,abortion clinic brentwood,women's clinic brentwood,vanderbilt,vanderbilt +abortion,"(""vanderbilt women's clinic brentwood"", ""vanderbilt women's health brentwood tn"")",vanderbilt women's clinic brentwood,vanderbilt women's health brentwood tn,4,4,google,2026-03-12 19:46:53.300189,abortion clinic brentwood,women's clinic brentwood,vanderbilt,health tn +abortion,"(""vanderbilt women's clinic brentwood"", ""vanderbilt women's health brentwood"")",vanderbilt women's clinic brentwood,vanderbilt women's health brentwood,5,4,google,2026-03-12 19:46:53.300189,abortion clinic brentwood,women's clinic brentwood,vanderbilt,health +abortion,"(""vanderbilt women's clinic brentwood"", ""vanderbilt center for women's health brentwood tn"")",vanderbilt women's clinic brentwood,vanderbilt center for women's health brentwood tn,6,4,google,2026-03-12 19:46:53.300189,abortion clinic brentwood,women's clinic brentwood,vanderbilt,center for health tn +abortion,"(""women's health clinic brentwood"", ""vanderbilt women's health clinic brentwood"")",women's health clinic brentwood,vanderbilt women's health clinic brentwood,1,4,google,2026-03-12 19:46:54.609170,abortion clinic brentwood,women's clinic brentwood,health,vanderbilt +abortion,"(""women's health clinic brentwood"", ""spire hartswood gynaecology & women's health clinic brentwood"")",women's health clinic brentwood,spire hartswood gynaecology & women's health clinic brentwood,2,4,google,2026-03-12 19:46:54.609170,abortion clinic brentwood,women's clinic brentwood,health,spire hartswood gynaecology & +abortion,"(""women's health clinic brentwood"", ""women's health center brentwood"")",women's health clinic brentwood,women's health center brentwood,3,4,google,2026-03-12 19:46:54.609170,abortion clinic brentwood,women's clinic brentwood,health,center +abortion,"(""women's health clinic brentwood"", ""women's health brentwood"")",women's health clinic brentwood,women's health brentwood,4,4,google,2026-03-12 19:46:54.609170,abortion clinic brentwood,women's clinic brentwood,health,health +abortion,"(""women's health clinic brentwood"", ""women's care brentwood ny"")",women's health clinic brentwood,women's care brentwood ny,5,4,google,2026-03-12 19:46:54.609170,abortion clinic brentwood,women's clinic brentwood,health,care ny +abortion,"(""women's health clinic brentwood"", ""women's care brentwood"")",women's health clinic brentwood,women's care brentwood,6,4,google,2026-03-12 19:46:54.609170,abortion clinic brentwood,women's clinic brentwood,health,care +abortion,"(""women's fertility clinic brentwood"", ""women's health center brentwood"")",women's fertility clinic brentwood,women's health center brentwood,1,4,google,2026-03-12 19:46:55.909798,abortion clinic brentwood,women's clinic brentwood,fertility,health center +abortion,"(""women's fertility clinic brentwood"", ""women's fertility clinic"")",women's fertility clinic brentwood,women's fertility clinic,2,4,google,2026-03-12 19:46:55.909798,abortion clinic brentwood,women's clinic brentwood,fertility,fertility +abortion,"(""women's fertility clinic brentwood"", ""brentwood women's health"")",women's fertility clinic brentwood,brentwood women's health,3,4,google,2026-03-12 19:46:55.909798,abortion clinic brentwood,women's clinic brentwood,fertility,health +abortion,"(""women's fertility clinic brentwood"", ""women's fertility center fresno"")",women's fertility clinic brentwood,women's fertility center fresno,4,4,google,2026-03-12 19:46:55.909798,abortion clinic brentwood,women's clinic brentwood,fertility,center fresno +abortion,"(""london women's clinic brentwood photos"", ""london women's clinic brentwood reviews"")",london women's clinic brentwood photos,london women's clinic brentwood reviews,1,4,google,2026-03-12 19:46:57.285992,abortion clinic brentwood,women's clinic brentwood,london photos,reviews +abortion,"(""london women's clinic brentwood photos"", ""london women's clinic locations"")",london women's clinic brentwood photos,london women's clinic locations,2,4,google,2026-03-12 19:46:57.285992,abortion clinic brentwood,women's clinic brentwood,london photos,locations +abortion,"(""london women's clinic brentwood photos"", 'london womens clinic opening hours')",london women's clinic brentwood photos,london womens clinic opening hours,3,4,google,2026-03-12 19:46:57.285992,abortion clinic brentwood,women's clinic brentwood,london photos,womens opening hours +abortion,"(""london women's clinic brentwood photos"", 'london womens clinic success rates')",london women's clinic brentwood photos,london womens clinic success rates,4,4,google,2026-03-12 19:46:57.285992,abortion clinic brentwood,women's clinic brentwood,london photos,womens success rates +abortion,"(""london women's clinic brentwood photos"", 'london womens clinic price list')",london women's clinic brentwood photos,london womens clinic price list,5,4,google,2026-03-12 19:46:57.285992,abortion clinic brentwood,women's clinic brentwood,london photos,womens price list +abortion,"(""london women's clinic brentwood photos"", 'london womens clinic phone number')",london women's clinic brentwood photos,london womens clinic phone number,6,4,google,2026-03-12 19:46:57.285992,abortion clinic brentwood,women's clinic brentwood,london photos,womens phone number +abortion,"(""london women's clinic brentwood photos"", ""brentwood women's health"")",london women's clinic brentwood photos,brentwood women's health,7,4,google,2026-03-12 19:46:57.285992,abortion clinic brentwood,women's clinic brentwood,london photos,health +abortion,"(""london women's clinic brentwood photos"", ""london women's center"")",london women's clinic brentwood photos,london women's center,8,4,google,2026-03-12 19:46:57.285992,abortion clinic brentwood,women's clinic brentwood,london photos,center +abortion,"(""london women's clinic brentwood photos"", ""london women's clinic london ky"")",london women's clinic brentwood photos,london women's clinic london ky,9,4,google,2026-03-12 19:46:57.285992,abortion clinic brentwood,women's clinic brentwood,london photos,ky +abortion,"(""vanderbilt women's health clinic brentwood"", ""vanderbilt women's health brentwood tn"")",vanderbilt women's health clinic brentwood,vanderbilt women's health brentwood tn,1,4,google,2026-03-12 19:46:58.672744,abortion clinic brentwood,women's clinic brentwood,vanderbilt health,tn +abortion,"(""vanderbilt women's health clinic brentwood"", ""vanderbilt women's clinic brentwood"")",vanderbilt women's health clinic brentwood,vanderbilt women's clinic brentwood,2,4,google,2026-03-12 19:46:58.672744,abortion clinic brentwood,women's clinic brentwood,vanderbilt health,vanderbilt health +abortion,"(""vanderbilt women's health clinic brentwood"", ""vanderbilt women's brentwood"")",vanderbilt women's health clinic brentwood,vanderbilt women's brentwood,3,4,google,2026-03-12 19:46:58.672744,abortion clinic brentwood,women's clinic brentwood,vanderbilt health,vanderbilt health +abortion,"(""vanderbilt women's health clinic brentwood"", ""vanderbilt women's health brentwood"")",vanderbilt women's health clinic brentwood,vanderbilt women's health brentwood,4,4,google,2026-03-12 19:46:58.672744,abortion clinic brentwood,women's clinic brentwood,vanderbilt health,vanderbilt health +abortion,"(""vanderbilt women's health clinic brentwood"", ""vanderbilt center for women's health brentwood tn"")",vanderbilt women's health clinic brentwood,vanderbilt center for women's health brentwood tn,5,4,google,2026-03-12 19:46:58.672744,abortion clinic brentwood,women's clinic brentwood,vanderbilt health,center for tn +abortion,"(""women's health brentwood"", ""vanderbilt women's health brentwood"")",women's health brentwood,vanderbilt women's health brentwood,1,4,google,2026-03-12 19:46:59.623764,abortion clinic brentwood,women's clinic brentwood,health,vanderbilt +abortion,"(""women's health brentwood"", ""women's health clinic brentwood"")",women's health brentwood,women's health clinic brentwood,2,4,google,2026-03-12 19:46:59.623764,abortion clinic brentwood,women's clinic brentwood,health,clinic +abortion,"(""women's health brentwood"", ""vanderbilt women's health brentwood tn"")",women's health brentwood,vanderbilt women's health brentwood tn,3,4,google,2026-03-12 19:46:59.623764,abortion clinic brentwood,women's clinic brentwood,health,vanderbilt tn +abortion,"(""women's health brentwood"", ""jefferson women's health brentwood"")",women's health brentwood,jefferson women's health brentwood,4,4,google,2026-03-12 19:46:59.623764,abortion clinic brentwood,women's clinic brentwood,health,jefferson +abortion,"(""women's health brentwood"", ""women's health partners brentwood"")",women's health brentwood,women's health partners brentwood,5,4,google,2026-03-12 19:46:59.623764,abortion clinic brentwood,women's clinic brentwood,health,partners +abortion,"(""women's health brentwood"", ""era women's health brentwood"")",women's health brentwood,era women's health brentwood,6,4,google,2026-03-12 19:46:59.623764,abortion clinic brentwood,women's clinic brentwood,health,era +abortion,"(""women's health brentwood"", ""women's health physio brentwood"")",women's health brentwood,women's health physio brentwood,7,4,google,2026-03-12 19:46:59.623764,abortion clinic brentwood,women's clinic brentwood,health,physio +abortion,"(""women's health brentwood"", ""vanderbilt center for women's health brentwood"")",women's health brentwood,vanderbilt center for women's health brentwood,8,4,google,2026-03-12 19:46:59.623764,abortion clinic brentwood,women's clinic brentwood,health,vanderbilt center for +abortion,"(""women's health brentwood"", ""vanderbilt center for women's health brentwood photos"")",women's health brentwood,vanderbilt center for women's health brentwood photos,9,4,google,2026-03-12 19:46:59.623764,abortion clinic brentwood,women's clinic brentwood,health,vanderbilt center for photos +abortion,"(""women's health center brentwood"", ""women's health clinic brentwood"")",women's health center brentwood,women's health clinic brentwood,1,4,google,2026-03-12 19:47:00.866659,abortion clinic brentwood,women's clinic brentwood,health center,clinic +abortion,"(""women's health center brentwood"", ""vanderbilt women's health center brentwood"")",women's health center brentwood,vanderbilt women's health center brentwood,2,4,google,2026-03-12 19:47:00.866659,abortion clinic brentwood,women's clinic brentwood,health center,vanderbilt +abortion,"(""women's health center brentwood"", ""vanderbilt women's health clinic brentwood"")",women's health center brentwood,vanderbilt women's health clinic brentwood,3,4,google,2026-03-12 19:47:00.866659,abortion clinic brentwood,women's clinic brentwood,health center,vanderbilt clinic +abortion,"(""women's health center brentwood"", ""vanderbilt center for women's health brentwood photos"")",women's health center brentwood,vanderbilt center for women's health brentwood photos,4,4,google,2026-03-12 19:47:00.866659,abortion clinic brentwood,women's clinic brentwood,health center,vanderbilt for photos +abortion,"(""women's health center brentwood"", ""vanderbilt center for women's health brentwood reviews"")",women's health center brentwood,vanderbilt center for women's health brentwood reviews,5,4,google,2026-03-12 19:47:00.866659,abortion clinic brentwood,women's clinic brentwood,health center,vanderbilt for reviews +abortion,"(""women's health center brentwood"", ""vanderbilt center for women's health brentwood tn"")",women's health center brentwood,vanderbilt center for women's health brentwood tn,6,4,google,2026-03-12 19:47:00.866659,abortion clinic brentwood,women's clinic brentwood,health center,vanderbilt for tn +abortion,"(""women's health center brentwood"", ""women's health brentwood"")",women's health center brentwood,women's health brentwood,7,4,google,2026-03-12 19:47:00.866659,abortion clinic brentwood,women's clinic brentwood,health center,health center +abortion,"(""women's health center brentwood"", ""women's care brentwood ny"")",women's health center brentwood,women's care brentwood ny,8,4,google,2026-03-12 19:47:00.866659,abortion clinic brentwood,women's clinic brentwood,health center,care ny +abortion,"(""women's health center brentwood"", ""women's health center boca"")",women's health center brentwood,women's health center boca,9,4,google,2026-03-12 19:47:00.866659,abortion clinic brentwood,women's clinic brentwood,health center,boca +abortion,"('abortion brevard county fl', 'abortion brevard county florida')",abortion brevard county fl,abortion brevard county florida,1,4,google,2026-03-12 19:47:02.152388,abortion clinic brentwood,abortion clinic brevard county,fl,florida +abortion,"('abortion brevard county fl', 'abortion brevard county florida 2024')",abortion brevard county fl,abortion brevard county florida 2024,2,4,google,2026-03-12 19:47:02.152388,abortion clinic brentwood,abortion clinic brevard county,fl,florida 2024 +abortion,"('abortion brevard county fl', 'abortion brevard county florida 2023')",abortion brevard county fl,abortion brevard county florida 2023,3,4,google,2026-03-12 19:47:02.152388,abortion clinic brentwood,abortion clinic brevard county,fl,florida 2023 +abortion,"('abortion brevard county fl', 'abortion brevard county fl 2024')",abortion brevard county fl,abortion brevard county fl 2024,4,4,google,2026-03-12 19:47:02.152388,abortion clinic brentwood,abortion clinic brevard county,fl,2024 +abortion,"('abortion clinic melbourne fl', 'abortion clinic melbourne florida')",abortion clinic melbourne fl,abortion clinic melbourne florida,1,4,google,2026-03-12 19:47:03.189933,abortion clinic brentwood,abortion clinic brevard county,melbourne fl,florida +abortion,"('abortion clinic melbourne fl', ""women's clinic melbourne fl"")",abortion clinic melbourne fl,women's clinic melbourne fl,2,4,google,2026-03-12 19:47:03.189933,abortion clinic brentwood,abortion clinic brevard county,melbourne fl,women's +abortion,"('abortion clinic melbourne fl', 'abortion clinic melbourne cost')",abortion clinic melbourne fl,abortion clinic melbourne cost,3,4,google,2026-03-12 19:47:03.189933,abortion clinic brentwood,abortion clinic brevard county,melbourne fl,cost +abortion,"('abortion clinic melbourne fl', 'abortion clinic for free near me')",abortion clinic melbourne fl,abortion clinic for free near me,4,4,google,2026-03-12 19:47:03.189933,abortion clinic brentwood,abortion clinic brevard county,melbourne fl,for free near me +abortion,"('abortion clinic melbourne fl', 'melbourne abortion laws')",abortion clinic melbourne fl,melbourne abortion laws,5,4,google,2026-03-12 19:47:03.189933,abortion clinic brentwood,abortion clinic brevard county,melbourne fl,laws +abortion,"('abortion clinic melbourne fl', 'abortion clinic brevard county')",abortion clinic melbourne fl,abortion clinic brevard county,6,4,google,2026-03-12 19:47:03.189933,abortion clinic brentwood,abortion clinic brevard county,melbourne fl,brevard county +abortion,"('abortion clinic melbourne fl', 'abortion clinic near me florida')",abortion clinic melbourne fl,abortion clinic near me florida,7,4,google,2026-03-12 19:47:03.189933,abortion clinic brentwood,abortion clinic brevard county,melbourne fl,near me florida +abortion,"('abortion clinic titusville', 'abortion clinic titusville fl')",abortion clinic titusville,abortion clinic titusville fl,1,4,google,2026-03-12 19:47:04.462534,abortion clinic brentwood,abortion clinic brevard county,titusville,fl +abortion,"('abortion clinic titusville', 'abortion clinic near me now')",abortion clinic titusville,abortion clinic near me now,2,4,google,2026-03-12 19:47:04.462534,abortion clinic brentwood,abortion clinic brevard county,titusville,near me now +abortion,"('abortion clinic titusville', 'planned parenthood near me abortion clinic')",abortion clinic titusville,planned parenthood near me abortion clinic,3,4,google,2026-03-12 19:47:04.462534,abortion clinic brentwood,abortion clinic brevard county,titusville,planned parenthood near me +abortion,"('abortion clinic titusville', 'abortion clinic near me for free')",abortion clinic titusville,abortion clinic near me for free,4,4,google,2026-03-12 19:47:04.462534,abortion clinic brentwood,abortion clinic brevard county,titusville,near me for free +abortion,"('abortion clinic titusville', 'abortion clinic near me surgical')",abortion clinic titusville,abortion clinic near me surgical,5,4,google,2026-03-12 19:47:04.462534,abortion clinic brentwood,abortion clinic brevard county,titusville,near me surgical +abortion,"('abortion clinic titusville', 'abortion clinic brevard county')",abortion clinic titusville,abortion clinic brevard county,6,4,google,2026-03-12 19:47:04.462534,abortion clinic brentwood,abortion clinic brevard county,titusville,brevard county +abortion,"('abortion clinic titusville', 'titusville pregnancy center')",abortion clinic titusville,titusville pregnancy center,7,4,google,2026-03-12 19:47:04.462534,abortion clinic brentwood,abortion clinic brevard county,titusville,pregnancy center +abortion,"('abortion clinic titusville', 'abortion clinic near melbourne fl')",abortion clinic titusville,abortion clinic near melbourne fl,8,4,google,2026-03-12 19:47:04.462534,abortion clinic brentwood,abortion clinic brevard county,titusville,near melbourne fl +abortion,"(""women's clinic beverly hills"", ""women's center beverly hills"")",women's clinic beverly hills,women's center beverly hills,1,4,google,2026-03-12 19:47:05.883262,abortion clinic brentwood,abortion clinic beverly hills,women's,center +abortion,"(""women's clinic beverly hills"", ""women's health clinic beverly hills"")",women's clinic beverly hills,women's health clinic beverly hills,2,4,google,2026-03-12 19:47:05.883262,abortion clinic brentwood,abortion clinic beverly hills,women's,health +abortion,"(""women's clinic beverly hills"", ""women's health center beverly hills"")",women's clinic beverly hills,women's health center beverly hills,3,4,google,2026-03-12 19:47:05.883262,abortion clinic brentwood,abortion clinic beverly hills,women's,health center +abortion,"(""women's clinic beverly hills"", ""women's imaging center beverly hills"")",women's clinic beverly hills,women's imaging center beverly hills,4,4,google,2026-03-12 19:47:05.883262,abortion clinic brentwood,abortion clinic beverly hills,women's,imaging center +abortion,"(""women's clinic beverly hills"", ""women's breast center beverly hills"")",women's clinic beverly hills,women's breast center beverly hills,5,4,google,2026-03-12 19:47:05.883262,abortion clinic brentwood,abortion clinic beverly hills,women's,breast center +abortion,"(""women's clinic beverly hills"", ""women's care center beverly hills"")",women's clinic beverly hills,women's care center beverly hills,6,4,google,2026-03-12 19:47:05.883262,abortion clinic brentwood,abortion clinic beverly hills,women's,care center +abortion,"(""women's clinic beverly hills"", ""women's clinic beverly blvd"")",women's clinic beverly hills,women's clinic beverly blvd,7,4,google,2026-03-12 19:47:05.883262,abortion clinic brentwood,abortion clinic beverly hills,women's,blvd +abortion,"(""women's clinic beverly hills"", ""women's beverly clinic"")",women's clinic beverly hills,women's beverly clinic,8,4,google,2026-03-12 19:47:05.883262,abortion clinic brentwood,abortion clinic beverly hills,women's,women's +abortion,"('dupont abortion clinic beverly hills', 'closest abortion clinic near me')",dupont abortion clinic beverly hills,closest abortion clinic near me,1,4,google,2026-03-12 19:47:06.805138,abortion clinic brentwood,abortion clinic beverly hills,dupont,closest near me +abortion,"('dupont abortion clinic beverly hills', 'safest abortion clinic')",dupont abortion clinic beverly hills,safest abortion clinic,2,4,google,2026-03-12 19:47:06.805138,abortion clinic brentwood,abortion clinic beverly hills,dupont,safest +abortion,"('dupont abortion clinic beverly hills', 'dupont clinic los angeles')",dupont abortion clinic beverly hills,dupont clinic los angeles,3,4,google,2026-03-12 19:47:06.805138,abortion clinic brentwood,abortion clinic beverly hills,dupont,los angeles +abortion,"('dupont abortion clinic beverly hills', 'dupont clinic abortions')",dupont abortion clinic beverly hills,dupont clinic abortions,4,4,google,2026-03-12 19:47:06.805138,abortion clinic brentwood,abortion clinic beverly hills,dupont,abortions +abortion,"('dupont abortion clinic beverly hills', 'dupont abortion clinic dc')",dupont abortion clinic beverly hills,dupont abortion clinic dc,5,4,google,2026-03-12 19:47:06.805138,abortion clinic brentwood,abortion clinic beverly hills,dupont,dc +abortion,"('dupont abortion clinic beverly hills', 'dupont abortion clinic washington dc')",dupont abortion clinic beverly hills,dupont abortion clinic washington dc,6,4,google,2026-03-12 19:47:06.805138,abortion clinic brentwood,abortion clinic beverly hills,dupont,washington dc +abortion,"(""women's health clinic beverly hills"", ""women's health center beverly hills"")",women's health clinic beverly hills,women's health center beverly hills,1,4,google,2026-03-12 19:47:08.185947,abortion clinic brentwood,abortion clinic beverly hills,women's health,center +abortion,"(""women's health clinic beverly hills"", ""women's health care beverly hills"")",women's health clinic beverly hills,women's health care beverly hills,2,4,google,2026-03-12 19:47:08.185947,abortion clinic brentwood,abortion clinic beverly hills,women's health,care +abortion,"(""women's health clinic beverly hills"", ""rodeo drive women's health center beverly hills ca"")",women's health clinic beverly hills,rodeo drive women's health center beverly hills ca,3,4,google,2026-03-12 19:47:08.185947,abortion clinic brentwood,abortion clinic beverly hills,women's health,rodeo drive center ca +abortion,"(""women's health clinic beverly hills"", ""women's clinic beverly blvd"")",women's health clinic beverly hills,women's clinic beverly blvd,4,4,google,2026-03-12 19:47:08.185947,abortion clinic brentwood,abortion clinic beverly hills,women's health,blvd +abortion,"(""women's health clinic beverly hills"", ""women's clinic beverly hills"")",women's health clinic beverly hills,women's clinic beverly hills,5,4,google,2026-03-12 19:47:08.185947,abortion clinic brentwood,abortion clinic beverly hills,women's health,women's health +abortion,"(""women's health clinic beverly hills"", ""women's health beverly hills"")",women's health clinic beverly hills,women's health beverly hills,6,4,google,2026-03-12 19:47:08.185947,abortion clinic brentwood,abortion clinic beverly hills,women's health,women's health +abortion,"('closest abortion clinics', 'closest abortion clinics near me')",closest abortion clinics,closest abortion clinics near me,1,4,google,2026-03-12 19:47:09.160618,abortion clinic brentwood,abortion clinic beverly hills,closest clinics,near me +abortion,"('closest abortion clinics', 'closest abortion clinics to texas')",closest abortion clinics,closest abortion clinics to texas,2,4,google,2026-03-12 19:47:09.160618,abortion clinic brentwood,abortion clinic beverly hills,closest clinics,to texas +abortion,"('closest abortion clinics', 'closest abortion clinics near texas')",closest abortion clinics,closest abortion clinics near texas,3,4,google,2026-03-12 19:47:09.160618,abortion clinic brentwood,abortion clinic beverly hills,closest clinics,near texas +abortion,"('closest abortion clinics', 'nearby abortion clinics')",closest abortion clinics,nearby abortion clinics,4,4,google,2026-03-12 19:47:09.160618,abortion clinic brentwood,abortion clinic beverly hills,closest clinics,nearby +abortion,"('closest abortion clinics', 'nearest abortion clinics newton abbot')",closest abortion clinics,nearest abortion clinics newton abbot,5,4,google,2026-03-12 19:47:09.160618,abortion clinic brentwood,abortion clinic beverly hills,closest clinics,nearest newton abbot +abortion,"('closest abortion clinics', 'closest abortion clinic to dallas texas')",closest abortion clinics,closest abortion clinic to dallas texas,6,4,google,2026-03-12 19:47:09.160618,abortion clinic brentwood,abortion clinic beverly hills,closest clinics,clinic to dallas texas +abortion,"('closest abortion clinics', 'closest abortion clinic to memphis tn')",closest abortion clinics,closest abortion clinic to memphis tn,7,4,google,2026-03-12 19:47:09.160618,abortion clinic brentwood,abortion clinic beverly hills,closest clinics,clinic to memphis tn +abortion,"('closest abortion clinics', 'closest abortion clinic to houston')",closest abortion clinics,closest abortion clinic to houston,8,4,google,2026-03-12 19:47:09.160618,abortion clinic brentwood,abortion clinic beverly hills,closest clinics,clinic to houston +abortion,"('closest abortion clinics', 'closest abortion clinic to kentucky')",closest abortion clinics,closest abortion clinic to kentucky,9,4,google,2026-03-12 19:47:09.160618,abortion clinic brentwood,abortion clinic beverly hills,closest clinics,clinic to kentucky +abortion,"('abortion clinic beverly', 'abortion clinic beverly hills')",abortion clinic beverly,abortion clinic beverly hills,1,4,google,2026-03-12 19:47:10.132346,abortion clinic brentwood,abortion clinic beverly hills,beverly hills,hills +abortion,"('abortion clinic beverly', 'abortion clinic beverly ma')",abortion clinic beverly,abortion clinic beverly ma,2,4,google,2026-03-12 19:47:10.132346,abortion clinic brentwood,abortion clinic beverly hills,beverly hills,ma +abortion,"('abortion clinic beverly', ""women's clinic beverly hills"")",abortion clinic beverly,women's clinic beverly hills,3,4,google,2026-03-12 19:47:10.132346,abortion clinic brentwood,abortion clinic beverly hills,beverly hills,women's hills +abortion,"('abortion clinic beverly', ""women's clinic beverly blvd"")",abortion clinic beverly,women's clinic beverly blvd,4,4,google,2026-03-12 19:47:10.132346,abortion clinic brentwood,abortion clinic beverly hills,beverly hills,women's blvd +abortion,"('abortion clinic beverly', 'abortion clinic beverley')",abortion clinic beverly,abortion clinic beverley,5,4,google,2026-03-12 19:47:10.132346,abortion clinic brentwood,abortion clinic beverly hills,beverly hills,beverley +abortion,"('abortion clinic beverly', 'dupont abortion clinic beverly hills')",abortion clinic beverly,dupont abortion clinic beverly hills,6,4,google,2026-03-12 19:47:10.132346,abortion clinic brentwood,abortion clinic beverly hills,beverly hills,dupont hills +abortion,"('abortion clinic beverly', 'first abortion clinic in usa')",abortion clinic beverly,first abortion clinic in usa,7,4,google,2026-03-12 19:47:10.132346,abortion clinic brentwood,abortion clinic beverly hills,beverly hills,first in usa +abortion,"('abortion clinic beverly', 'abortion beverly ma')",abortion clinic beverly,abortion beverly ma,8,4,google,2026-03-12 19:47:10.132346,abortion clinic brentwood,abortion clinic beverly hills,beverly hills,ma +abortion,"('abortion clinic beverly ma', 'abortion clinic beverly')",abortion clinic beverly ma,abortion clinic beverly,1,4,google,2026-03-12 19:47:10.944240,abortion clinic brentwood,abortion clinic beverly hills,ma,ma +abortion,"('abortion clinic beverly ma', 'abortion clinic beverly hills')",abortion clinic beverly ma,abortion clinic beverly hills,2,4,google,2026-03-12 19:47:10.944240,abortion clinic brentwood,abortion clinic beverly hills,ma,hills +abortion,"('abortion clinic beverly ma', 'abortion beverly ma')",abortion clinic beverly ma,abortion beverly ma,3,4,google,2026-03-12 19:47:10.944240,abortion clinic brentwood,abortion clinic beverly hills,ma,ma +abortion,"('beverly hills abortion', 'beverly hills abortion clinic')",beverly hills abortion,beverly hills abortion clinic,1,4,google,2026-03-12 19:47:11.736256,abortion clinic brentwood,abortion clinic beverly hills,beverly hills,clinic +abortion,"('beverly hills abortion', 'beverly hills 90210 abortion')",beverly hills abortion,beverly hills 90210 abortion,2,4,google,2026-03-12 19:47:11.736256,abortion clinic brentwood,abortion clinic beverly hills,beverly hills,90210 +abortion,"('beverly hills abortion', 'beverly hills 91210 cast')",beverly hills abortion,beverly hills 91210 cast,3,4,google,2026-03-12 19:47:11.736256,abortion clinic brentwood,abortion clinic beverly hills,beverly hills,91210 cast +abortion,"('beverly hills abortion', 'beverly abortion')",beverly hills abortion,beverly abortion,4,4,google,2026-03-12 19:47:11.736256,abortion clinic brentwood,abortion clinic beverly hills,beverly hills,beverly hills +abortion,"('beverly hills abortion', 'beverly abortion clinic')",beverly hills abortion,beverly abortion clinic,5,4,google,2026-03-12 19:47:11.736256,abortion clinic brentwood,abortion clinic beverly hills,beverly hills,clinic +abortion,"('beverly hills abortion', 'beverly ma abortion clinic')",beverly hills abortion,beverly ma abortion clinic,6,4,google,2026-03-12 19:47:11.736256,abortion clinic brentwood,abortion clinic beverly hills,beverly hills,ma clinic +abortion,"(""women's clinic for abortions near me"", ""women's center abortion near me"")",women's clinic for abortions near me,women's center abortion near me,1,4,google,2026-03-12 19:47:13.033286,abortion clinic brentwood,abortion clinic bristol tn,women's for abortions near me,center abortion +abortion,"(""women's clinic for abortions near me"", ""women's health abortion clinic near me"")",women's clinic for abortions near me,women's health abortion clinic near me,2,4,google,2026-03-12 19:47:13.033286,abortion clinic brentwood,abortion clinic bristol tn,women's for abortions near me,health abortion +abortion,"(""women's clinic for abortions near me"", ""women's health center abortion near me"")",women's clinic for abortions near me,women's health center abortion near me,3,4,google,2026-03-12 19:47:13.033286,abortion clinic brentwood,abortion clinic bristol tn,women's for abortions near me,health center abortion +abortion,"(""women's clinic for abortions near me"", 'woman abortion clinic near me')",women's clinic for abortions near me,woman abortion clinic near me,4,4,google,2026-03-12 19:47:13.033286,abortion clinic brentwood,abortion clinic bristol tn,women's for abortions near me,woman abortion +abortion,"('abortion bristol tn', 'abortion clinic bristol tn')",abortion bristol tn,abortion clinic bristol tn,1,4,google,2026-03-12 19:47:13.897233,abortion clinic brentwood,abortion clinic bristol tn,bristol tn,clinic +abortion,"('abortion bristol tn', 'abortion alternatives bristol tn')",abortion bristol tn,abortion alternatives bristol tn,2,4,google,2026-03-12 19:47:13.897233,abortion clinic brentwood,abortion clinic bristol tn,bristol tn,alternatives +abortion,"('abortion bristol tn', 'bristol tn abortion')",abortion bristol tn,bristol tn abortion,3,4,google,2026-03-12 19:47:13.897233,abortion clinic brentwood,abortion clinic bristol tn,bristol tn,bristol tn +abortion,"('abortion bristol tn', 'how many weeks can you get an abortion in tennessee')",abortion bristol tn,how many weeks can you get an abortion in tennessee,4,4,google,2026-03-12 19:47:13.897233,abortion clinic brentwood,abortion clinic bristol tn,bristol tn,how many weeks can you get an in tennessee +abortion,"('abortion bristol tn', 'abortion bristol va')",abortion bristol tn,abortion bristol va,5,4,google,2026-03-12 19:47:13.897233,abortion clinic brentwood,abortion clinic bristol tn,bristol tn,va +abortion,"('abortion clinic bristol virginia', ""women's clinic bristol va"")",abortion clinic bristol virginia,women's clinic bristol va,1,4,google,2026-03-12 19:47:14.885103,abortion clinic brentwood,abortion clinic bristol tn,virginia,women's va +abortion,"('abortion clinic bristol virginia', 'abortion clinic near bristol va')",abortion clinic bristol virginia,abortion clinic near bristol va,2,4,google,2026-03-12 19:47:14.885103,abortion clinic brentwood,abortion clinic bristol tn,virginia,near va +abortion,"('abortion clinic bristol virginia', 'when can you have an abortion in virginia')",abortion clinic bristol virginia,when can you have an abortion in virginia,3,4,google,2026-03-12 19:47:14.885103,abortion clinic brentwood,abortion clinic bristol tn,virginia,when can you have an in +abortion,"('abortion clinic bristol virginia', 'how early can you get an abortion in va')",abortion clinic bristol virginia,how early can you get an abortion in va,4,4,google,2026-03-12 19:47:14.885103,abortion clinic brentwood,abortion clinic bristol tn,virginia,how early can you get an in va +abortion,"('abortion clinic bristol virginia', 'abortion bristol va')",abortion clinic bristol virginia,abortion bristol va,5,4,google,2026-03-12 19:47:14.885103,abortion clinic brentwood,abortion clinic bristol tn,virginia,va +abortion,"('abortion clinic bristol va', ""women's clinic bristol va"")",abortion clinic bristol va,women's clinic bristol va,1,4,google,2026-03-12 19:47:15.716528,abortion clinic brentwood,abortion clinic bristol tn,va,women's +abortion,"('abortion clinic bristol va', ""women's health clinic bristol va"")",abortion clinic bristol va,women's health clinic bristol va,2,4,google,2026-03-12 19:47:15.716528,abortion clinic brentwood,abortion clinic bristol tn,va,women's health +abortion,"('abortion clinic bristol va', 'abortion clinic volunteer near me')",abortion clinic bristol va,abortion clinic volunteer near me,3,4,google,2026-03-12 19:47:15.716528,abortion clinic brentwood,abortion clinic bristol tn,va,volunteer near me +abortion,"('abortion clinic bristol va', 'abortion clinic bristol virginia')",abortion clinic bristol va,abortion clinic bristol virginia,4,4,google,2026-03-12 19:47:15.716528,abortion clinic brentwood,abortion clinic bristol tn,va,virginia +abortion,"('abortion clinic bristol va', 'abortion bristol va')",abortion clinic bristol va,abortion bristol va,5,4,google,2026-03-12 19:47:15.716528,abortion clinic brentwood,abortion clinic bristol tn,va,va +abortion,"('abortion clinic bradenton fl', ""women's clinic bradenton fl"")",abortion clinic bradenton fl,women's clinic bradenton fl,1,4,google,2026-03-12 19:47:17.181165,abortion clinic brentwood,abortion clinic bradenton,fl,women's +abortion,"('abortion clinic bradenton fl', ""free women's clinic bradenton fl"")",abortion clinic bradenton fl,free women's clinic bradenton fl,2,4,google,2026-03-12 19:47:17.181165,abortion clinic brentwood,abortion clinic bradenton,fl,free women's +abortion,"('abortion clinic bradenton fl', 'abortion clinic bradenton')",abortion clinic bradenton fl,abortion clinic bradenton,3,4,google,2026-03-12 19:47:17.181165,abortion clinic brentwood,abortion clinic bradenton,fl,fl +abortion,"('abortion clinic bradenton fl', 'abortion clinic brandon fl')",abortion clinic bradenton fl,abortion clinic brandon fl,4,4,google,2026-03-12 19:47:17.181165,abortion clinic brentwood,abortion clinic bradenton,fl,brandon +abortion,"(""women's clinic bradenton fl"", ""women's health center bradenton fl"")",women's clinic bradenton fl,women's health center bradenton fl,1,4,google,2026-03-12 19:47:18.085048,abortion clinic brentwood,abortion clinic bradenton,women's fl,health center +abortion,"(""women's clinic bradenton fl"", ""free women's clinic bradenton fl"")",women's clinic bradenton fl,free women's clinic bradenton fl,2,4,google,2026-03-12 19:47:18.085048,abortion clinic brentwood,abortion clinic bradenton,women's fl,free +abortion,"(""women's clinic bradenton fl"", ""women's health bradenton fl"")",women's clinic bradenton fl,women's health bradenton fl,3,4,google,2026-03-12 19:47:18.085048,abortion clinic brentwood,abortion clinic bradenton,women's fl,health +abortion,"(""women's clinic bradenton fl"", ""women's center bradenton fl"")",women's clinic bradenton fl,women's center bradenton fl,4,4,google,2026-03-12 19:47:18.085048,abortion clinic brentwood,abortion clinic bradenton,women's fl,center +abortion,"(""women's clinic bradenton fl"", ""bradenton women's clinic"")",women's clinic bradenton fl,bradenton women's clinic,5,4,google,2026-03-12 19:47:18.085048,abortion clinic brentwood,abortion clinic bradenton,women's fl,women's fl +abortion,"(""women's clinic bradenton"", ""women's clinic bradenton fl"")",women's clinic bradenton,women's clinic bradenton fl,1,4,google,2026-03-12 19:47:19.324285,abortion clinic brentwood,abortion clinic bradenton,women's,fl +abortion,"(""women's clinic bradenton"", ""women's health center bradenton fl"")",women's clinic bradenton,women's health center bradenton fl,2,4,google,2026-03-12 19:47:19.324285,abortion clinic brentwood,abortion clinic bradenton,women's,health center fl +abortion,"(""women's clinic bradenton"", ""free women's clinic bradenton fl"")",women's clinic bradenton,free women's clinic bradenton fl,3,4,google,2026-03-12 19:47:19.324285,abortion clinic brentwood,abortion clinic bradenton,women's,free fl +abortion,"(""women's clinic bradenton"", ""women's center bradenton fl"")",women's clinic bradenton,women's center bradenton fl,4,4,google,2026-03-12 19:47:19.324285,abortion clinic brentwood,abortion clinic bradenton,women's,center fl +abortion,"(""women's clinic bradenton"", ""women's health bradenton fl"")",women's clinic bradenton,women's health bradenton fl,5,4,google,2026-03-12 19:47:19.324285,abortion clinic brentwood,abortion clinic bradenton,women's,health fl +abortion,"(""women's clinic bradenton"", ""women's center bradenton"")",women's clinic bradenton,women's center bradenton,6,4,google,2026-03-12 19:47:19.324285,abortion clinic brentwood,abortion clinic bradenton,women's,center +abortion,"('abortion clinic brandon fl', ""women's clinic brandon florida"")",abortion clinic brandon fl,women's clinic brandon florida,1,4,google,2026-03-12 19:47:20.438909,abortion clinic brentwood,abortion clinic bradenton,brandon fl,women's florida +abortion,"('abortion clinic brandon fl', ""women's care clinic brandon fl"")",abortion clinic brandon fl,women's care clinic brandon fl,2,4,google,2026-03-12 19:47:20.438909,abortion clinic brentwood,abortion clinic bradenton,brandon fl,women's care +abortion,"('abortion clinic brandon fl', 'abortion brandon fl')",abortion clinic brandon fl,abortion brandon fl,3,4,google,2026-03-12 19:47:20.438909,abortion clinic brentwood,abortion clinic bradenton,brandon fl,brandon fl +abortion,"('abortion clinic brandon fl', 'abortion clinic bradenton')",abortion clinic brandon fl,abortion clinic bradenton,4,4,google,2026-03-12 19:47:20.438909,abortion clinic brentwood,abortion clinic bradenton,brandon fl,bradenton +abortion,"('abortion clinic brandon fl', 'abortion clinic near bradenton fl')",abortion clinic brandon fl,abortion clinic near bradenton fl,5,4,google,2026-03-12 19:47:20.438909,abortion clinic brentwood,abortion clinic bradenton,brandon fl,near bradenton +abortion,"('abortion clinics boise idaho', 'abortion clinics in boise')",abortion clinics boise idaho,abortion clinics in boise,1,4,google,2026-03-12 19:47:21.574908,abortion clinic brentwood,abortion clinic boise,clinics idaho,in +abortion,"('abortion clinics boise idaho', 'abortion clinics idaho')",abortion clinics boise idaho,abortion clinics idaho,2,4,google,2026-03-12 19:47:21.574908,abortion clinic brentwood,abortion clinic boise,clinics idaho,clinics idaho +abortion,"(""women's clinic boise"", ""women's clinic boise st luke's"")",women's clinic boise,women's clinic boise st luke's,1,4,google,2026-03-12 19:47:22.786096,abortion clinic brentwood,abortion clinic boise,women's,st luke's +abortion,"(""women's clinic boise"", ""boise va women's clinic"")",women's clinic boise,boise va women's clinic,2,4,google,2026-03-12 19:47:22.786096,abortion clinic brentwood,abortion clinic boise,women's,va +abortion,"(""women's clinic boise"", ""women's health center boise"")",women's clinic boise,women's health center boise,3,4,google,2026-03-12 19:47:22.786096,abortion clinic brentwood,abortion clinic boise,women's,health center +abortion,"(""women's clinic boise"", ""women's wellness clinic boise"")",women's clinic boise,women's wellness clinic boise,4,4,google,2026-03-12 19:47:22.786096,abortion clinic brentwood,abortion clinic boise,women's,wellness +abortion,"(""women's clinic boise"", ""women's wellness clinic boise reviews"")",women's clinic boise,women's wellness clinic boise reviews,5,4,google,2026-03-12 19:47:22.786096,abortion clinic brentwood,abortion clinic boise,women's,wellness reviews +abortion,"(""women's clinic boise"", ""women's health clinic boise idaho"")",women's clinic boise,women's health clinic boise idaho,6,4,google,2026-03-12 19:47:22.786096,abortion clinic brentwood,abortion clinic boise,women's,health idaho +abortion,"(""women's clinic boise"", ""women's wellness clinic boise photos"")",women's clinic boise,women's wellness clinic boise photos,7,4,google,2026-03-12 19:47:22.786096,abortion clinic brentwood,abortion clinic boise,women's,wellness photos +abortion,"(""women's clinic boise"", ""women's clinic downtown boise"")",women's clinic boise,women's clinic downtown boise,8,4,google,2026-03-12 19:47:22.786096,abortion clinic brentwood,abortion clinic boise,women's,downtown +abortion,"(""women's clinic boise"", ""women's hormone clinic boise"")",women's clinic boise,women's hormone clinic boise,9,4,google,2026-03-12 19:47:22.786096,abortion clinic brentwood,abortion clinic boise,women's,hormone +abortion,"(""women's clinic boise st luke's"", ""st luke's women's clinic boise idaho"")",women's clinic boise st luke's,st luke's women's clinic boise idaho,1,4,google,2026-03-12 19:47:23.875703,abortion clinic brentwood,abortion clinic boise,women's st luke's,idaho +abortion,"(""women's clinic boise st luke's"", ""st luke's women's clinic boise fax number"")",women's clinic boise st luke's,st luke's women's clinic boise fax number,2,4,google,2026-03-12 19:47:23.875703,abortion clinic brentwood,abortion clinic boise,women's st luke's,fax number +abortion,"(""women's clinic boise st luke's"", ""st luke's women's health clinic boise"")",women's clinic boise st luke's,st luke's women's health clinic boise,3,4,google,2026-03-12 19:47:23.875703,abortion clinic brentwood,abortion clinic boise,women's st luke's,health +abortion,"(""women's clinic boise st luke's"", ""st luke's women's clinic downtown boise"")",women's clinic boise st luke's,st luke's women's clinic downtown boise,4,4,google,2026-03-12 19:47:23.875703,abortion clinic brentwood,abortion clinic boise,women's st luke's,downtown +abortion,"(""women's clinic boise st luke's"", ""women's clinic boise id"")",women's clinic boise st luke's,women's clinic boise id,5,4,google,2026-03-12 19:47:23.875703,abortion clinic brentwood,abortion clinic boise,women's st luke's,id +abortion,"(""women's clinic boise st luke's"", ""women's clinic boise idaho"")",women's clinic boise st luke's,women's clinic boise idaho,6,4,google,2026-03-12 19:47:23.875703,abortion clinic brentwood,abortion clinic boise,women's st luke's,idaho +abortion,"(""women's clinic boise id"", ""women's clinic boise idaho"")",women's clinic boise id,women's clinic boise idaho,1,4,google,2026-03-12 19:47:25.195183,abortion clinic brentwood,abortion clinic boise,women's id,idaho +abortion,"(""women's clinic boise id"", ""women's health center boise id"")",women's clinic boise id,women's health center boise id,2,4,google,2026-03-12 19:47:25.195183,abortion clinic brentwood,abortion clinic boise,women's id,health center +abortion,"(""women's clinic boise id"", ""women's health clinic boise idaho"")",women's clinic boise id,women's health clinic boise idaho,3,4,google,2026-03-12 19:47:25.195183,abortion clinic brentwood,abortion clinic boise,women's id,health idaho +abortion,"(""women's clinic boise id"", ""women's wellness clinic boise id"")",women's clinic boise id,women's wellness clinic boise id,4,4,google,2026-03-12 19:47:25.195183,abortion clinic brentwood,abortion clinic boise,women's id,wellness +abortion,"(""women's clinic boise id"", ""st luke's women's clinic boise idaho"")",women's clinic boise id,st luke's women's clinic boise idaho,5,4,google,2026-03-12 19:47:25.195183,abortion clinic brentwood,abortion clinic boise,women's id,st luke's idaho +abortion,"(""women's clinic boise id"", ""women's clinic boise"")",women's clinic boise id,women's clinic boise,6,4,google,2026-03-12 19:47:25.195183,abortion clinic brentwood,abortion clinic boise,women's id,women's id +abortion,"(""boise va women's clinic"", ""boise women's clinic"")",boise va women's clinic,boise women's clinic,1,4,google,2026-03-12 19:47:26.683671,abortion clinic brentwood,abortion clinic boise,va women's,va women's +abortion,"(""boise va women's clinic"", ""boise women's health"")",boise va women's clinic,boise women's health,2,4,google,2026-03-12 19:47:26.683671,abortion clinic brentwood,abortion clinic boise,va women's,health +abortion,"(""boise va women's clinic"", ""boise women's health associates"")",boise va women's clinic,boise women's health associates,3,4,google,2026-03-12 19:47:26.683671,abortion clinic brentwood,abortion clinic boise,va women's,health associates +abortion,"(""boise va women's clinic"", ""women's clinic boise idaho"")",boise va women's clinic,women's clinic boise idaho,4,4,google,2026-03-12 19:47:26.683671,abortion clinic brentwood,abortion clinic boise,va women's,idaho +abortion,"('abortion clinic idaho', 'abortion clinic idaho falls')",abortion clinic idaho,abortion clinic idaho falls,1,4,google,2026-03-12 19:47:28.073802,abortion clinic brentwood,abortion clinic boise,idaho,falls +abortion,"('abortion clinic idaho', ""women's clinic idaho falls"")",abortion clinic idaho,women's clinic idaho falls,2,4,google,2026-03-12 19:47:28.073802,abortion clinic brentwood,abortion clinic boise,idaho,women's falls +abortion,"('abortion clinic idaho', ""women's clinic idaho"")",abortion clinic idaho,women's clinic idaho,3,4,google,2026-03-12 19:47:28.073802,abortion clinic brentwood,abortion clinic boise,idaho,women's +abortion,"('abortion clinic idaho', 'abortion clinics boise idaho')",abortion clinic idaho,abortion clinics boise idaho,4,4,google,2026-03-12 19:47:28.073802,abortion clinic brentwood,abortion clinic boise,idaho,clinics boise +abortion,"('abortion clinic idaho', 'abortion clinic for free near me')",abortion clinic idaho,abortion clinic for free near me,5,4,google,2026-03-12 19:47:28.073802,abortion clinic brentwood,abortion clinic boise,idaho,for free near me +abortion,"('abortion clinic idaho', 'abortion clinic near me now')",abortion clinic idaho,abortion clinic near me now,6,4,google,2026-03-12 19:47:28.073802,abortion clinic brentwood,abortion clinic boise,idaho,near me now +abortion,"('abortion clinics oakland ca', 'abortion time limit california')",abortion clinics oakland ca,abortion time limit california,1,4,google,2026-03-12 19:47:29.356006,abortion clinic oakland,abortion clinic oakland park,clinics ca,time limit california +abortion,"('abortion clinics oakland ca', 'abortion options in california')",abortion clinics oakland ca,abortion options in california,2,4,google,2026-03-12 19:47:29.356006,abortion clinic oakland,abortion clinic oakland park,clinics ca,options in california +abortion,"('abortion clinics oakland ca', 'abortion legal in california')",abortion clinics oakland ca,abortion legal in california,3,4,google,2026-03-12 19:47:29.356006,abortion clinic oakland,abortion clinic oakland park,clinics ca,legal in california +abortion,"('abortion clinics oakland ca', 'abortion clinic oakland county')",abortion clinics oakland ca,abortion clinic oakland county,4,4,google,2026-03-12 19:47:29.356006,abortion clinic oakland,abortion clinic oakland park,clinics ca,clinic county +abortion,"('abortion clinics oakland ca', 'abortion clinic oakland park')",abortion clinics oakland ca,abortion clinic oakland park,5,4,google,2026-03-12 19:47:29.356006,abortion clinic oakland,abortion clinic oakland park,clinics ca,clinic park +abortion,"(""women's health center oakland"", ""women's health clinic oakland"")",women's health center oakland,women's health clinic oakland,1,4,google,2026-03-12 19:47:30.501773,abortion clinic oakland,women's clinic oakland,health center,clinic +abortion,"(""women's health center oakland"", ""oakland feminist women's health center"")",women's health center oakland,oakland feminist women's health center,2,4,google,2026-03-12 19:47:30.501773,abortion clinic oakland,women's clinic oakland,health center,feminist +abortion,"(""women's health center oakland"", ""women's health oakland"")",women's health center oakland,women's health oakland,3,4,google,2026-03-12 19:47:30.501773,abortion clinic oakland,women's clinic oakland,health center,health center +abortion,"(""women's health center oakland"", ""women's health center oakdale ca"")",women's health center oakland,women's health center oakdale ca,4,4,google,2026-03-12 19:47:30.501773,abortion clinic oakland,women's clinic oakland,health center,oakdale ca +abortion,"(""women's health clinic oakland"", ""women's health center oakland"")",women's health clinic oakland,women's health center oakland,1,4,google,2026-03-12 19:47:31.902525,abortion clinic oakland,women's clinic oakland,health,center +abortion,"(""women's health clinic oakland"", ""women's health oakland"")",women's health clinic oakland,women's health oakland,2,4,google,2026-03-12 19:47:31.902525,abortion clinic oakland,women's clinic oakland,health,health +abortion,"(""women's health clinic oakland"", ""women's clinic oakland"")",women's health clinic oakland,women's clinic oakland,3,4,google,2026-03-12 19:47:31.902525,abortion clinic oakland,women's clinic oakland,health,health +abortion,"(""women's health clinic oakland"", ""women's health clinic oakdale ca"")",women's health clinic oakland,women's health clinic oakdale ca,4,4,google,2026-03-12 19:47:31.902525,abortion clinic oakland,women's clinic oakland,health,oakdale ca +abortion,"('magee womens clinic oakland', 'magee womens hospital oakland')",magee womens clinic oakland,magee womens hospital oakland,1,4,google,2026-03-12 19:47:33.031900,abortion clinic oakland,women's clinic oakland,magee womens,hospital +abortion,"('magee womens clinic oakland', 'magee womens hospital oakland pa')",magee womens clinic oakland,magee womens hospital oakland pa,2,4,google,2026-03-12 19:47:33.031900,abortion clinic oakland,women's clinic oakland,magee womens,hospital pa +abortion,"('magee womens clinic oakland', 'upmc magee womens hospital oakland')",magee womens clinic oakland,upmc magee womens hospital oakland,3,4,google,2026-03-12 19:47:33.031900,abortion clinic oakland,women's clinic oakland,magee womens,upmc hospital +abortion,"('magee womens clinic oakland', 'magee-womens hospital outpatient clinic oakland')",magee womens clinic oakland,magee-womens hospital outpatient clinic oakland,4,4,google,2026-03-12 19:47:33.031900,abortion clinic oakland,women's clinic oakland,magee womens,magee-womens hospital outpatient +abortion,"('magee womens clinic oakland', 'magee oakland clinic')",magee womens clinic oakland,magee oakland clinic,5,4,google,2026-03-12 19:47:33.031900,abortion clinic oakland,women's clinic oakland,magee womens,magee womens +abortion,"(""women's clinic oakdale ca"", ""women's health center oakdale ca"")",women's clinic oakdale ca,women's health center oakdale ca,1,4,google,2026-03-12 19:47:34.368739,abortion clinic oakland,women's clinic oakland,oakdale ca,health center +abortion,"(""women's clinic oakdale ca"", ""women's clinic of oakdale"")",women's clinic oakdale ca,women's clinic of oakdale,2,4,google,2026-03-12 19:47:34.368739,abortion clinic oakland,women's clinic oakland,oakdale ca,of +abortion,"(""women's clinic oakdale ca"", ""women's health clinic oakdale ca"")",women's clinic oakdale ca,women's health clinic oakdale ca,3,4,google,2026-03-12 19:47:34.368739,abortion clinic oakland,women's clinic oakland,oakdale ca,health +abortion,"(""women's clinic oakdale ca"", ""women's clinic oakdale la"")",women's clinic oakdale ca,women's clinic oakdale la,4,4,google,2026-03-12 19:47:34.368739,abortion clinic oakland,women's clinic oakland,oakdale ca,la +abortion,"(""women's clinic oakdale ca"", ""women's clinic of oakdale oakdale la 71463"")",women's clinic oakdale ca,women's clinic of oakdale oakdale la 71463,5,4,google,2026-03-12 19:47:34.368739,abortion clinic oakland,women's clinic oakland,oakdale ca,of la 71463 +abortion,"(""women's clinic oak lawn"", ""women's health center oak lawn"")",women's clinic oak lawn,women's health center oak lawn,1,4,google,2026-03-12 19:47:35.568785,abortion clinic oakland,women's clinic oakland,oak lawn,health center +abortion,"(""women's clinic oak lawn"", ""women's health center oak lawn il"")",women's clinic oak lawn,women's health center oak lawn il,2,4,google,2026-03-12 19:47:35.568785,abortion clinic oakland,women's clinic oakland,oak lawn,health center il +abortion,"(""women's clinic oak lawn"", ""women's health clinic oak lawn"")",women's clinic oak lawn,women's health clinic oak lawn,3,4,google,2026-03-12 19:47:35.568785,abortion clinic oakland,women's clinic oakland,oak lawn,health +abortion,"(""women's clinic oak lawn"", ""women's breast health center oak lawn"")",women's clinic oak lawn,women's breast health center oak lawn,4,4,google,2026-03-12 19:47:35.568785,abortion clinic oakland,women's clinic oakland,oak lawn,breast health center +abortion,"(""women's clinic oak lawn"", ""advocate women's health center oak lawn"")",women's clinic oak lawn,advocate women's health center oak lawn,5,4,google,2026-03-12 19:47:35.568785,abortion clinic oakland,women's clinic oakland,oak lawn,advocate health center +abortion,"(""women's clinic oak lawn"", ""women's clinic oak cliff"")",women's clinic oak lawn,women's clinic oak cliff,6,4,google,2026-03-12 19:47:35.568785,abortion clinic oakland,women's clinic oakland,oak lawn,cliff +abortion,"(""women's clinic oak lawn"", ""women's clinic oakdale la"")",women's clinic oak lawn,women's clinic oakdale la,7,4,google,2026-03-12 19:47:35.568785,abortion clinic oakland,women's clinic oakland,oak lawn,oakdale la +abortion,"(""women's clinic oak lawn"", ""women's clinic of oakdale"")",women's clinic oak lawn,women's clinic of oakdale,8,4,google,2026-03-12 19:47:35.568785,abortion clinic oakland,women's clinic oakland,oak lawn,of oakdale +abortion,"(""women's clinic oak lawn"", ""women's health oak lawn il"")",women's clinic oak lawn,women's health oak lawn il,9,4,google,2026-03-12 19:47:35.568785,abortion clinic oakland,women's clinic oakland,oak lawn,health il +abortion,"('abortion clinic oakland county ca', 'abortion clinic oakland county california')",abortion clinic oakland county ca,abortion clinic oakland county california,1,4,google,2026-03-12 19:47:36.400007,abortion clinic oakland,abortion clinic oakland county,ca,california +abortion,"('abortion clinic oakland county ca', 'abortion clinic oakland county case search')",abortion clinic oakland county ca,abortion clinic oakland county case search,2,4,google,2026-03-12 19:47:36.400007,abortion clinic oakland,abortion clinic oakland county,ca,case search +abortion,"('abortion clinic oakland county ca', 'abortion clinic oakland county case lookup')",abortion clinic oakland county ca,abortion clinic oakland county case lookup,3,4,google,2026-03-12 19:47:36.400007,abortion clinic oakland,abortion clinic oakland county,ca,case lookup +abortion,"('abortion clinic oakland county ca', 'abortion clinic oakland county case evaluation phone')",abortion clinic oakland county ca,abortion clinic oakland county case evaluation phone,4,4,google,2026-03-12 19:47:36.400007,abortion clinic oakland,abortion clinic oakland county,ca,case evaluation phone +abortion,"('abortion clinic oakland county ca', 'abortion clinic oakland county case')",abortion clinic oakland county ca,abortion clinic oakland county case,5,4,google,2026-03-12 19:47:36.400007,abortion clinic oakland,abortion clinic oakland county,ca,case +abortion,"('abortion clinic oakland county california', 'abortion clinic oakland county california 2024')",abortion clinic oakland county california,abortion clinic oakland county california 2024,1,4,google,2026-03-12 19:47:37.719000,abortion clinic oakland,abortion clinic oakland county,california,2024 +abortion,"('abortion clinic oakland county california', 'abortion clinic oakland county california 2023')",abortion clinic oakland county california,abortion clinic oakland county california 2023,2,4,google,2026-03-12 19:47:37.719000,abortion clinic oakland,abortion clinic oakland county,california,2023 +abortion,"('abortion clinic oakland county california', 'abortion clinic oakland county california reddit')",abortion clinic oakland county california,abortion clinic oakland county california reddit,3,4,google,2026-03-12 19:47:37.719000,abortion clinic oakland,abortion clinic oakland county,california,reddit +abortion,"('abortion clinic oakland county california', 'abortion clinic oakland county california county')",abortion clinic oakland county california,abortion clinic oakland county california county,4,4,google,2026-03-12 19:47:37.719000,abortion clinic oakland,abortion clinic oakland county,california,california +abortion,"('abortion clinic oakland county california', 'abortion clinic oakland county california medicaid')",abortion clinic oakland county california,abortion clinic oakland county california medicaid,5,4,google,2026-03-12 19:47:37.719000,abortion clinic oakland,abortion clinic oakland county,california,medicaid +abortion,"('abortion clinic oakland county jail', 'abortion clinic oakland county jails')",abortion clinic oakland county jail,abortion clinic oakland county jails,1,4,google,2026-03-12 19:47:38.540562,abortion clinic oakland,abortion clinic oakland county,jail,jails +abortion,"('abortion clinic oakland county jail', 'abortion clinic oakland county jail inmate search')",abortion clinic oakland county jail,abortion clinic oakland county jail inmate search,2,4,google,2026-03-12 19:47:38.540562,abortion clinic oakland,abortion clinic oakland county,jail,inmate search +abortion,"('abortion clinic oakland county jail', 'abortion clinic oakland county jail ca')",abortion clinic oakland county jail,abortion clinic oakland county jail ca,3,4,google,2026-03-12 19:47:38.540562,abortion clinic oakland,abortion clinic oakland county,jail,ca +abortion,"('abortion clinic oakland county jail', 'abortion clinic oakland county jail california')",abortion clinic oakland county jail,abortion clinic oakland county jail california,4,4,google,2026-03-12 19:47:38.540562,abortion clinic oakland,abortion clinic oakland county,jail,california +abortion,"('abortion clinic oakland county jail', 'abortion clinic oakland county jail records')",abortion clinic oakland county jail,abortion clinic oakland county jail records,5,4,google,2026-03-12 19:47:38.540562,abortion clinic oakland,abortion clinic oakland county,jail,records +abortion,"('abortion clinic oakland county jail', 'abortion clinic oakland county jail inmates')",abortion clinic oakland county jail,abortion clinic oakland county jail inmates,6,4,google,2026-03-12 19:47:38.540562,abortion clinic oakland,abortion clinic oakland county,jail,inmates +abortion,"('abortion clinic oakland county jail', 'abortion clinic oakland county jail medical')",abortion clinic oakland county jail,abortion clinic oakland county jail medical,7,4,google,2026-03-12 19:47:38.540562,abortion clinic oakland,abortion clinic oakland county,jail,medical +abortion,"('abortion clinic oakland county jail', 'abortion clinic oakland county jail programs')",abortion clinic oakland county jail,abortion clinic oakland county jail programs,8,4,google,2026-03-12 19:47:38.540562,abortion clinic oakland,abortion clinic oakland county,jail,programs +abortion,"('abortion clinic oakland county jail', 'abortion clinic oakland county jail conditions')",abortion clinic oakland county jail,abortion clinic oakland county jail conditions,9,4,google,2026-03-12 19:47:38.540562,abortion clinic oakland,abortion clinic oakland county,jail,conditions +abortion,"('abortion clinic oakland county jail', 'abortion clinic oakland county jail annex')",abortion clinic oakland county jail,abortion clinic oakland county jail annex,10,4,google,2026-03-12 19:47:38.540562,abortion clinic oakland,abortion clinic oakland county,jail,annex +abortion,"('abortion clinic oakland county michigan', 'abortion clinic oakland county michigan 2024')",abortion clinic oakland county michigan,abortion clinic oakland county michigan 2024,1,4,google,2026-03-12 19:47:39.611081,abortion clinic oakland,abortion clinic oakland county,michigan,2024 +abortion,"('abortion clinic oakland county michigan', 'abortion clinic oakland county michigan 2023')",abortion clinic oakland county michigan,abortion clinic oakland county michigan 2023,2,4,google,2026-03-12 19:47:39.611081,abortion clinic oakland,abortion clinic oakland county,michigan,2023 +abortion,"('abortion clinic oakland county michigan', 'abortion clinic oakland county michigan reddit')",abortion clinic oakland county michigan,abortion clinic oakland county michigan reddit,3,4,google,2026-03-12 19:47:39.611081,abortion clinic oakland,abortion clinic oakland county,michigan,reddit +abortion,"('abortion clinic oakland county michigan', 'abortion clinic oakland county michigan abortion clinic')",abortion clinic oakland county michigan,abortion clinic oakland county michigan abortion clinic,4,4,google,2026-03-12 19:47:39.611081,abortion clinic oakland,abortion clinic oakland county,michigan,michigan +abortion,"('abortion clinic oakland county michigan', 'abortion clinic oakland county michigan medicaid')",abortion clinic oakland county michigan,abortion clinic oakland county michigan medicaid,5,4,google,2026-03-12 19:47:39.611081,abortion clinic oakland,abortion clinic oakland county,michigan,medicaid +abortion,"('abortion clinic oakland county michigan', 'abortion clinic oakland county michigan court records')",abortion clinic oakland county michigan,abortion clinic oakland county michigan court records,6,4,google,2026-03-12 19:47:39.611081,abortion clinic oakland,abortion clinic oakland county,michigan,court records +abortion,"('abortion clinic oakland county health', 'abortion clinic oakland county health and human services')",abortion clinic oakland county health,abortion clinic oakland county health and human services,1,4,google,2026-03-12 19:47:40.557389,abortion clinic oakland,abortion clinic oakland county,health,and human services +abortion,"('abortion clinic oakland county health', 'abortion clinic oakland county health care')",abortion clinic oakland county health,abortion clinic oakland county health care,2,4,google,2026-03-12 19:47:40.557389,abortion clinic oakland,abortion clinic oakland county,health,care +abortion,"('abortion clinic oakland county health', 'abortion clinic oakland county health department')",abortion clinic oakland county health,abortion clinic oakland county health department,3,4,google,2026-03-12 19:47:40.557389,abortion clinic oakland,abortion clinic oakland county,health,department +abortion,"('abortion clinic oakland county health', 'abortion clinic oakland county health center')",abortion clinic oakland county health,abortion clinic oakland county health center,4,4,google,2026-03-12 19:47:40.557389,abortion clinic oakland,abortion clinic oakland county,health,center +abortion,"('abortion clinic oakland county health', 'abortion clinic oakland county health district')",abortion clinic oakland county health,abortion clinic oakland county health district,5,4,google,2026-03-12 19:47:40.557389,abortion clinic oakland,abortion clinic oakland county,health,district +abortion,"('abortion clinic oakland county health', 'abortion clinic oakland county health division')",abortion clinic oakland county health,abortion clinic oakland county health division,6,4,google,2026-03-12 19:47:40.557389,abortion clinic oakland,abortion clinic oakland county,health,division +abortion,"('abortion clinic oakland county mi', 'abortion clinic oakland county michigan')",abortion clinic oakland county mi,abortion clinic oakland county michigan,1,4,google,2026-03-12 19:47:41.747517,abortion clinic oakland,abortion clinic oakland county,mi,michigan +abortion,"('abortion clinic oakland county mi', 'abortion clinic oakland county missouri')",abortion clinic oakland county mi,abortion clinic oakland county missouri,2,4,google,2026-03-12 19:47:41.747517,abortion clinic oakland,abortion clinic oakland county,mi,missouri +abortion,"('abortion clinic oakland county mi', 'abortion clinic oakland county minnesota')",abortion clinic oakland county mi,abortion clinic oakland county minnesota,3,4,google,2026-03-12 19:47:41.747517,abortion clinic oakland,abortion clinic oakland county,mi,minnesota +abortion,"('abortion clinic oakland county mi', 'abortion clinic oakland county minor')",abortion clinic oakland county mi,abortion clinic oakland county minor,4,4,google,2026-03-12 19:47:41.747517,abortion clinic oakland,abortion clinic oakland county,mi,minor +abortion,"('abortion clinic oakland county mi', 'abortion clinic oakland county mississippi')",abortion clinic oakland county mi,abortion clinic oakland county mississippi,5,4,google,2026-03-12 19:47:41.747517,abortion clinic oakland,abortion clinic oakland county,mi,mississippi +abortion,"('abortion clinic oakland county obstetrics and gynecology', 'abortion clinic oakland county obstetrics and gynecology clinic')",abortion clinic oakland county obstetrics and gynecology,abortion clinic oakland county obstetrics and gynecology clinic,1,4,google,2026-03-12 19:47:43.003538,abortion clinic oakland,abortion clinic oakland county,obstetrics and gynecology,obstetrics and gynecology +abortion,"('abortion clinic oakland county obstetrics and gynecology', 'abortion clinic oakland county obstetrics and gynecology department')",abortion clinic oakland county obstetrics and gynecology,abortion clinic oakland county obstetrics and gynecology department,2,4,google,2026-03-12 19:47:43.003538,abortion clinic oakland,abortion clinic oakland county,obstetrics and gynecology,department +abortion,"('abortion clinic oakland county obstetrics and gynecology', 'abortion clinic oakland county obstetrics and gynecology san jose')",abortion clinic oakland county obstetrics and gynecology,abortion clinic oakland county obstetrics and gynecology san jose,3,4,google,2026-03-12 19:47:43.003538,abortion clinic oakland,abortion clinic oakland county,obstetrics and gynecology,san jose +abortion,"('abortion clinic oakland county obstetrics and gynecology', 'abortion clinic oakland county obstetrics and gynecology medical group')",abortion clinic oakland county obstetrics and gynecology,abortion clinic oakland county obstetrics and gynecology medical group,4,4,google,2026-03-12 19:47:43.003538,abortion clinic oakland,abortion clinic oakland county,obstetrics and gynecology,medical group +abortion,"('abortion clinic oakland county obstetrics and gynecology', 'abortion clinic oakland county obstetrics and gynecology san francisco')",abortion clinic oakland county obstetrics and gynecology,abortion clinic oakland county obstetrics and gynecology san francisco,5,4,google,2026-03-12 19:47:43.003538,abortion clinic oakland,abortion clinic oakland county,obstetrics and gynecology,san francisco +abortion,"('abortion clinic oakland county obstetrics and gynecology', 'abortion clinic oakland county obstetrics and gynecology associates')",abortion clinic oakland county obstetrics and gynecology,abortion clinic oakland county obstetrics and gynecology associates,6,4,google,2026-03-12 19:47:43.003538,abortion clinic oakland,abortion clinic oakland county,obstetrics and gynecology,associates +abortion,"('abortion clinic oakland county obgyn', 'abortion clinic oakland county gyn clinic')",abortion clinic oakland county obgyn,abortion clinic oakland county gyn clinic,1,4,google,2026-03-12 19:47:44.438456,abortion clinic oakland,abortion clinic oakland county,obgyn,gyn +abortion,"('abortion clinic oakland county obgyn', 'abortion clinic oakland county gyn bay area')",abortion clinic oakland county obgyn,abortion clinic oakland county gyn bay area,2,4,google,2026-03-12 19:47:44.438456,abortion clinic oakland,abortion clinic oakland county,obgyn,gyn bay area +abortion,"('abortion clinic oakland county obgyn', 'abortion clinic oakland county gyne')",abortion clinic oakland county obgyn,abortion clinic oakland county gyne,3,4,google,2026-03-12 19:47:44.438456,abortion clinic oakland,abortion clinic oakland county,obgyn,gyne +abortion,"('abortion clinic oakland county obgyn', 'abortion clinic oakland county gyn doctors')",abortion clinic oakland county obgyn,abortion clinic oakland county gyn doctors,4,4,google,2026-03-12 19:47:44.438456,abortion clinic oakland,abortion clinic oakland county,obgyn,gyn doctors +abortion,"('abortion clinic oakland county obgyn', 'abortion clinic oakland county gyn san francisco')",abortion clinic oakland county obgyn,abortion clinic oakland county gyn san francisco,5,4,google,2026-03-12 19:47:44.438456,abortion clinic oakland,abortion clinic oakland county,obgyn,gyn san francisco +abortion,"('abortion clinic oakland county obgyn', 'abortion clinic oakland county ob gyn')",abortion clinic oakland county obgyn,abortion clinic oakland county ob gyn,6,4,google,2026-03-12 19:47:44.438456,abortion clinic oakland,abortion clinic oakland county,obgyn,ob gyn +abortion,"('hope clinic illinois abortion cost', 'hope clinic abortion cost')",hope clinic illinois abortion cost,hope clinic abortion cost,1,4,google,2026-03-12 19:47:45.768592,abortion clinic illinois,abortion clinic illinois cost,hope,hope +abortion,"('hope clinic illinois abortion cost', 'are abortions free in illinois')",hope clinic illinois abortion cost,are abortions free in illinois,2,4,google,2026-03-12 19:47:45.768592,abortion clinic illinois,abortion clinic illinois cost,hope,are abortions free in +abortion,"('hope clinic illinois abortion cost', 'hope clinic illinois reviews')",hope clinic illinois abortion cost,hope clinic illinois reviews,3,4,google,2026-03-12 19:47:45.768592,abortion clinic illinois,abortion clinic illinois cost,hope,reviews +abortion,"('hope clinic illinois abortion cost', 'hope illinois abortion clinic')",hope clinic illinois abortion cost,hope illinois abortion clinic,4,4,google,2026-03-12 19:47:45.768592,abortion clinic illinois,abortion clinic illinois cost,hope,hope +abortion,"('hope clinic illinois abortion cost', 'hope clinic illinois')",hope clinic illinois abortion cost,hope clinic illinois,5,4,google,2026-03-12 19:47:45.768592,abortion clinic illinois,abortion clinic illinois cost,hope,hope +abortion,"('are abortions free in illinois', 'are abortions free in il')",are abortions free in illinois,are abortions free in il,1,4,google,2026-03-12 19:47:46.802657,abortion clinic illinois,abortion clinic illinois cost,are abortions free in,il +abortion,"('are abortions free in illinois', 'are abortion pills free in illinois')",are abortions free in illinois,are abortion pills free in illinois,2,4,google,2026-03-12 19:47:46.802657,abortion clinic illinois,abortion clinic illinois cost,are abortions free in,abortion pills +abortion,"('are abortions free in illinois', 'are abortions in illinois legal')",are abortions free in illinois,are abortions in illinois legal,3,4,google,2026-03-12 19:47:46.802657,abortion clinic illinois,abortion clinic illinois cost,are abortions free in,legal +abortion,"('are abortions free in illinois', 'are abortions illegal in illinois')",are abortions free in illinois,are abortions illegal in illinois,4,4,google,2026-03-12 19:47:46.802657,abortion clinic illinois,abortion clinic illinois cost,are abortions free in,illegal +abortion,"('are abortions free in illinois', 'are abortions illegal now in illinois')",are abortions free in illinois,are abortions illegal now in illinois,5,4,google,2026-03-12 19:47:46.802657,abortion clinic illinois,abortion clinic illinois cost,are abortions free in,illegal now +abortion,"('abortion clinic chicago cost', 'abortion clinic chicago free')",abortion clinic chicago cost,abortion clinic chicago free,1,4,google,2026-03-12 19:47:48.235130,abortion clinic illinois,abortion clinic illinois cost,chicago,free +abortion,"('abortion clinic chicago cost', 'chicago abortion clinics prices')",abortion clinic chicago cost,chicago abortion clinics prices,2,4,google,2026-03-12 19:47:48.235130,abortion clinic illinois,abortion clinic illinois cost,chicago,clinics prices +abortion,"('abortion clinic chicago cost', 'abortion clinic chicago illinois')",abortion clinic chicago cost,abortion clinic chicago illinois,3,4,google,2026-03-12 19:47:48.235130,abortion clinic illinois,abortion clinic illinois cost,chicago,illinois +abortion,"('abortion clinic chicago cost', 'abortion clinic chicago downtown')",abortion clinic chicago cost,abortion clinic chicago downtown,4,4,google,2026-03-12 19:47:48.235130,abortion clinic illinois,abortion clinic illinois cost,chicago,downtown +abortion,"('abortion clinic in chicago illinois', ""women's clinic in chicago illinois"")",abortion clinic in chicago illinois,women's clinic in chicago illinois,1,4,google,2026-03-12 19:47:49.470663,abortion clinic illinois,abortion clinic illinois cost,in chicago,women's +abortion,"('abortion clinic in chicago illinois', 'abortion centers in chicago illinois')",abortion clinic in chicago illinois,abortion centers in chicago illinois,2,4,google,2026-03-12 19:47:49.470663,abortion clinic illinois,abortion clinic illinois cost,in chicago,centers +abortion,"('abortion clinic in chicago illinois', 'abortion clinics in chicago area')",abortion clinic in chicago illinois,abortion clinics in chicago area,3,4,google,2026-03-12 19:47:49.470663,abortion clinic illinois,abortion clinic illinois cost,in chicago,clinics area +abortion,"('abortion clinic in chicago illinois', 'abortion clinic.near me. chicago illinois')",abortion clinic in chicago illinois,abortion clinic.near me. chicago illinois,4,4,google,2026-03-12 19:47:49.470663,abortion clinic illinois,abortion clinic illinois cost,in chicago,clinic.near me. +abortion,"('abortion clinic in chicago illinois', 'abortion clinic on washington in chicago il')",abortion clinic in chicago illinois,abortion clinic on washington in chicago il,5,4,google,2026-03-12 19:47:49.470663,abortion clinic illinois,abortion clinic illinois cost,in chicago,on washington il +abortion,"('abortion clinic in chicago illinois', 'abortion clinic downtown chicago il')",abortion clinic in chicago illinois,abortion clinic downtown chicago il,6,4,google,2026-03-12 19:47:49.470663,abortion clinic illinois,abortion clinic illinois cost,in chicago,downtown il +abortion,"('abortion clinic in chicago illinois', 'abortion clinic near chicago il')",abortion clinic in chicago illinois,abortion clinic near chicago il,7,4,google,2026-03-12 19:47:49.470663,abortion clinic illinois,abortion clinic illinois cost,in chicago,near il +abortion,"('abortion clinic in chicago illinois', 'abortion clinic in chicago')",abortion clinic in chicago illinois,abortion clinic in chicago,8,4,google,2026-03-12 19:47:49.470663,abortion clinic illinois,abortion clinic illinois cost,in chicago,in chicago +abortion,"('low cost abortion clinics in illinois', 'low cost abortion clinics in illinois 2024')",low cost abortion clinics in illinois,low cost abortion clinics in illinois 2024,1,4,google,2026-03-12 19:47:50.553594,abortion clinic illinois,abortion clinic illinois cost,low clinics in,2024 +abortion,"('low cost abortion clinics in illinois', 'low cost abortion clinics in illinois 2023')",low cost abortion clinics in illinois,low cost abortion clinics in illinois 2023,2,4,google,2026-03-12 19:47:50.553594,abortion clinic illinois,abortion clinic illinois cost,low clinics in,2023 +abortion,"('low cost abortion clinics in illinois', 'low cost abortion clinics in illinois near me')",low cost abortion clinics in illinois,low cost abortion clinics in illinois near me,3,4,google,2026-03-12 19:47:50.553594,abortion clinic illinois,abortion clinic illinois cost,low clinics in,near me +abortion,"('low cost abortion clinics in illinois', 'low cost abortion clinics in illinois and indiana')",low cost abortion clinics in illinois,low cost abortion clinics in illinois and indiana,4,4,google,2026-03-12 19:47:50.553594,abortion clinic illinois,abortion clinic illinois cost,low clinics in,and indiana +abortion,"('low cost abortion clinics in illinois', 'low cost abortion clinics in illinois and illinois')",low cost abortion clinics in illinois,low cost abortion clinics in illinois and illinois,5,4,google,2026-03-12 19:47:50.553594,abortion clinic illinois,abortion clinic illinois cost,low clinics in,and +abortion,"('low cost abortion clinics in illinois', 'low cost abortion clinics in illinois free')",low cost abortion clinics in illinois,low cost abortion clinics in illinois free,6,4,google,2026-03-12 19:47:50.553594,abortion clinic illinois,abortion clinic illinois cost,low clinics in,free +abortion,"('low cost abortion clinics in illinois', 'low cost abortion clinics in illinois that accept medicaid')",low cost abortion clinics in illinois,low cost abortion clinics in illinois that accept medicaid,7,4,google,2026-03-12 19:47:50.553594,abortion clinic illinois,abortion clinic illinois cost,low clinics in,that accept medicaid +abortion,"('low cost abortion clinics in illinois', 'low cost abortion clinics in il')",low cost abortion clinics in illinois,low cost abortion clinics in il,8,4,google,2026-03-12 19:47:50.553594,abortion clinic illinois,abortion clinic illinois cost,low clinics in,il +abortion,"('low cost abortion clinics in illinois', 'low cost abortion clinics in illinois map')",low cost abortion clinics in illinois,low cost abortion clinics in illinois map,9,4,google,2026-03-12 19:47:50.553594,abortion clinic illinois,abortion clinic illinois cost,low clinics in,map +abortion,"('low cost abortion clinics in illinois', 'low cost abortion clinics in illinois without insurance')",low cost abortion clinics in illinois,low cost abortion clinics in illinois without insurance,10,4,google,2026-03-12 19:47:50.553594,abortion clinic illinois,abortion clinic illinois cost,low clinics in,without insurance +abortion,"('abortion clinic carbondale il', 'abortion clinic carbondale illinois')",abortion clinic carbondale il,abortion clinic carbondale illinois,1,4,google,2026-03-12 19:47:51.815586,abortion clinic illinois,abortion clinic illinois carbondale,il,illinois +abortion,"('abortion clinic carbondale il', ""women's clinic carbondale il"")",abortion clinic carbondale il,women's clinic carbondale il,2,4,google,2026-03-12 19:47:51.815586,abortion clinic illinois,abortion clinic illinois carbondale,il,women's +abortion,"('abortion clinic carbondale il', 'choices abortion clinic carbondale il')",abortion clinic carbondale il,choices abortion clinic carbondale il,3,4,google,2026-03-12 19:47:51.815586,abortion clinic illinois,abortion clinic illinois carbondale,il,choices +abortion,"('abortion clinic carbondale il', 'abortion clinic near carbondale il')",abortion clinic carbondale il,abortion clinic near carbondale il,4,4,google,2026-03-12 19:47:51.815586,abortion clinic illinois,abortion clinic illinois carbondale,il,near +abortion,"('abortion clinic carbondale il', ""alamo women's clinic carbondale il"")",abortion clinic carbondale il,alamo women's clinic carbondale il,5,4,google,2026-03-12 19:47:51.815586,abortion clinic illinois,abortion clinic illinois carbondale,il,alamo women's +abortion,"('abortion clinic carbondale il', 'is there an abortion clinic in carbondale illinois')",abortion clinic carbondale il,is there an abortion clinic in carbondale illinois,6,4,google,2026-03-12 19:47:51.815586,abortion clinic illinois,abortion clinic illinois carbondale,il,is there an in illinois +abortion,"('abortion clinic carbondale il', 'illinois abortion clinic near me')",abortion clinic carbondale il,illinois abortion clinic near me,7,4,google,2026-03-12 19:47:51.815586,abortion clinic illinois,abortion clinic illinois carbondale,il,illinois near me +abortion,"('abortion clinic carbondale il', 'abortion clinic carbondale')",abortion clinic carbondale il,abortion clinic carbondale,8,4,google,2026-03-12 19:47:51.815586,abortion clinic illinois,abortion clinic illinois carbondale,il,il +abortion,"(""women's clinic carbondale il"", ""women's health center carbondale il"")",women's clinic carbondale il,women's health center carbondale il,1,4,google,2026-03-12 19:47:53.138374,abortion clinic illinois,abortion clinic illinois carbondale,women's il,health center +abortion,"(""women's clinic carbondale il"", ""alamo women's clinic carbondale il"")",women's clinic carbondale il,alamo women's clinic carbondale il,2,4,google,2026-03-12 19:47:53.138374,abortion clinic illinois,abortion clinic illinois carbondale,women's il,alamo +abortion,"(""women's clinic carbondale il"", ""alamo women's clinic of illinois carbondale reviews"")",women's clinic carbondale il,alamo women's clinic of illinois carbondale reviews,3,4,google,2026-03-12 19:47:53.138374,abortion clinic illinois,abortion clinic illinois carbondale,women's il,alamo of illinois reviews +abortion,"(""women's clinic carbondale il"", ""women's health carbondale il"")",women's clinic carbondale il,women's health carbondale il,4,4,google,2026-03-12 19:47:53.138374,abortion clinic illinois,abortion clinic illinois carbondale,women's il,health +abortion,"(""women's clinic carbondale il"", ""women's health center - carbondale"")",women's clinic carbondale il,women's health center - carbondale,5,4,google,2026-03-12 19:47:53.138374,abortion clinic illinois,abortion clinic illinois carbondale,women's il,health center - +abortion,"(""women's clinic carbondale il"", ""women's center carbondale illinois"")",women's clinic carbondale il,women's center carbondale illinois,6,4,google,2026-03-12 19:47:53.138374,abortion clinic illinois,abortion clinic illinois carbondale,women's il,center illinois +abortion,"('choices abortion clinic carbondale il', 'safest abortion clinic')",choices abortion clinic carbondale il,safest abortion clinic,1,4,google,2026-03-12 19:47:54.101053,abortion clinic illinois,abortion clinic illinois carbondale,choices il,safest +abortion,"('choices abortion clinic carbondale il', 'abortion options in illinois')",choices abortion clinic carbondale il,abortion options in illinois,2,4,google,2026-03-12 19:47:54.101053,abortion clinic illinois,abortion clinic illinois carbondale,choices il,options in illinois +abortion,"('choices abortion clinic carbondale il', 'choices clinic carbondale illinois')",choices abortion clinic carbondale il,choices clinic carbondale illinois,3,4,google,2026-03-12 19:47:54.101053,abortion clinic illinois,abortion clinic illinois carbondale,choices il,illinois +abortion,"('choices abortion clinic carbondale il', 'choices abortion clinic carbondale')",choices abortion clinic carbondale il,choices abortion clinic carbondale,4,4,google,2026-03-12 19:47:54.101053,abortion clinic illinois,abortion clinic illinois carbondale,choices il,choices il +abortion,"('choices abortion clinic carbondale il', 'choices carbondale illinois')",choices abortion clinic carbondale il,choices carbondale illinois,5,4,google,2026-03-12 19:47:54.101053,abortion clinic illinois,abortion clinic illinois carbondale,choices il,illinois +abortion,"('choices abortion clinic carbondale il', 'choices carbondale il')",choices abortion clinic carbondale il,choices carbondale il,6,4,google,2026-03-12 19:47:54.101053,abortion clinic illinois,abortion clinic illinois carbondale,choices il,choices il +abortion,"('illinois abortion clinic near me', 'abortion clinic near me il')",illinois abortion clinic near me,abortion clinic near me il,1,4,google,2026-03-12 19:47:55.556682,abortion clinic illinois,abortion clinic illinois carbondale,near me,il +abortion,"('illinois abortion clinic near me', 'abortion clinic near metropolis il')",illinois abortion clinic near me,abortion clinic near metropolis il,2,4,google,2026-03-12 19:47:55.556682,abortion clinic illinois,abortion clinic illinois carbondale,near me,metropolis il +abortion,"('illinois abortion clinic near me', 'abortion clinic.near me. chicago illinois')",illinois abortion clinic near me,abortion clinic.near me. chicago illinois,3,4,google,2026-03-12 19:47:55.556682,abortion clinic illinois,abortion clinic illinois carbondale,near me,clinic.near me. chicago +abortion,"('illinois abortion clinic near me', 'closest abortion clinic near me in illinois')",illinois abortion clinic near me,closest abortion clinic near me in illinois,4,4,google,2026-03-12 19:47:55.556682,abortion clinic illinois,abortion clinic illinois carbondale,near me,closest in +abortion,"('illinois abortion clinic near me', 'are abortions free in illinois')",illinois abortion clinic near me,are abortions free in illinois,5,4,google,2026-03-12 19:47:55.556682,abortion clinic illinois,abortion clinic illinois carbondale,near me,are abortions free in +abortion,"('illinois abortion clinic near me', 'illinois abortion clinic locations')",illinois abortion clinic near me,illinois abortion clinic locations,6,4,google,2026-03-12 19:47:55.556682,abortion clinic illinois,abortion clinic illinois carbondale,near me,locations +abortion,"('abortion clinic in carbondale', 'abortion clinic in carbondale illinois')",abortion clinic in carbondale,abortion clinic in carbondale illinois,1,4,google,2026-03-12 19:47:56.670286,abortion clinic illinois,abortion clinic illinois carbondale,in,illinois +abortion,"('abortion clinic in carbondale', 'abortion clinic near carbondale il')",abortion clinic in carbondale,abortion clinic near carbondale il,2,4,google,2026-03-12 19:47:56.670286,abortion clinic illinois,abortion clinic illinois carbondale,in,near il +abortion,"('abortion clinic in carbondale', ""alamo women's clinic in carbondale illinois"")",abortion clinic in carbondale,alamo women's clinic in carbondale illinois,3,4,google,2026-03-12 19:47:56.670286,abortion clinic illinois,abortion clinic illinois carbondale,in,alamo women's illinois +abortion,"('abortion clinic in carbondale', ""alamo women's clinic carbondale"")",abortion clinic in carbondale,alamo women's clinic carbondale,4,4,google,2026-03-12 19:47:56.670286,abortion clinic illinois,abortion clinic illinois carbondale,in,alamo women's +abortion,"('abortion clinic in carbondale', ""women's clinic carbondale il"")",abortion clinic in carbondale,women's clinic carbondale il,5,4,google,2026-03-12 19:47:56.670286,abortion clinic illinois,abortion clinic illinois carbondale,in,women's il +abortion,"('abortion clinic in carbondale', ""carbondale women's clinic"")",abortion clinic in carbondale,carbondale women's clinic,6,4,google,2026-03-12 19:47:56.670286,abortion clinic illinois,abortion clinic illinois carbondale,in,women's +abortion,"('abortion clinic in carbondale', 'is there an abortion clinic in carbondale illinois')",abortion clinic in carbondale,is there an abortion clinic in carbondale illinois,7,4,google,2026-03-12 19:47:56.670286,abortion clinic illinois,abortion clinic illinois carbondale,in,is there an illinois +abortion,"('abortion clinic near me il', 'abortion clinic near me illinois')",abortion clinic near me il,abortion clinic near me illinois,1,4,google,2026-03-12 19:47:58.129910,abortion clinic illinois,abortion clinic illinois near me,il,illinois +abortion,"('abortion clinic near me il', 'abortion clinic near me ilford')",abortion clinic near me il,abortion clinic near me ilford,2,4,google,2026-03-12 19:47:58.129910,abortion clinic illinois,abortion clinic illinois near me,il,ilford +abortion,"('abortion clinic near me il', 'abortion clinic near me chicago il')",abortion clinic near me il,abortion clinic near me chicago il,3,4,google,2026-03-12 19:47:58.129910,abortion clinic illinois,abortion clinic illinois near me,il,chicago +abortion,"('abortion clinic near me il', 'abortion clinic near illinois')",abortion clinic near me il,abortion clinic near illinois,4,4,google,2026-03-12 19:47:58.129910,abortion clinic illinois,abortion clinic illinois near me,il,illinois +abortion,"('abortion clinic near me il', 'abortion clinic near ilford')",abortion clinic near me il,abortion clinic near ilford,5,4,google,2026-03-12 19:47:58.129910,abortion clinic illinois,abortion clinic illinois near me,il,ilford +abortion,"('abortion clinic near me il', 'abortion clinic near iloilo city iloilo')",abortion clinic near me il,abortion clinic near iloilo city iloilo,6,4,google,2026-03-12 19:47:58.129910,abortion clinic illinois,abortion clinic illinois near me,il,iloilo city iloilo +abortion,"('abortion clinic near me il', 'closest abortion clinic near me in illinois')",abortion clinic near me il,closest abortion clinic near me in illinois,7,4,google,2026-03-12 19:47:58.129910,abortion clinic illinois,abortion clinic illinois near me,il,closest in illinois +abortion,"('abortion clinic near me il', 'abortion clinic near me now')",abortion clinic near me il,abortion clinic near me now,8,4,google,2026-03-12 19:47:58.129910,abortion clinic illinois,abortion clinic illinois near me,il,now +abortion,"('abortion clinic near me il', 'abortion clinic near me for free')",abortion clinic near me il,abortion clinic near me for free,9,4,google,2026-03-12 19:47:58.129910,abortion clinic illinois,abortion clinic illinois near me,il,for free +abortion,"('abortion clinic near me il', 'abortion clinic near me and prices')",abortion clinic near me il,abortion clinic near me and prices,10,4,google,2026-03-12 19:47:58.129910,abortion clinic illinois,abortion clinic illinois near me,il,and prices +abortion,"('abortion clinic near metropolis il', 'abortion clinic near me illinois')",abortion clinic near metropolis il,abortion clinic near me illinois,1,4,google,2026-03-12 19:47:59.082758,abortion clinic illinois,abortion clinic illinois near me,metropolis il,me illinois +abortion,"('abortion clinic near metropolis il', 'abortion clinic near me chicago')",abortion clinic near metropolis il,abortion clinic near me chicago,2,4,google,2026-03-12 19:47:59.082758,abortion clinic illinois,abortion clinic illinois near me,metropolis il,me chicago +abortion,"('abortion clinic near metropolis il', 'abortion clinic near chicago il')",abortion clinic near metropolis il,abortion clinic near chicago il,3,4,google,2026-03-12 19:47:59.082758,abortion clinic illinois,abortion clinic illinois near me,metropolis il,chicago +abortion,"('abortion clinic near metropolis il', 'abortion clinic near matteson il')",abortion clinic near metropolis il,abortion clinic near matteson il,4,4,google,2026-03-12 19:47:59.082758,abortion clinic illinois,abortion clinic illinois near me,metropolis il,matteson +abortion,"('abortion clinic.near me. chicago illinois', 'abortion clinic near chicago il')",abortion clinic.near me. chicago illinois,abortion clinic near chicago il,1,4,google,2026-03-12 19:48:00.366156,abortion clinic illinois,abortion clinic illinois near me,clinic.near me. chicago,clinic near il +abortion,"('abortion clinic.near me. chicago illinois', 'abortion clinic chicago near me')",abortion clinic.near me. chicago illinois,abortion clinic chicago near me,2,4,google,2026-03-12 19:48:00.366156,abortion clinic illinois,abortion clinic illinois near me,clinic.near me. chicago,clinic near me +abortion,"('abortion clinic.near me. chicago illinois', 'abortion clinic near me illinois')",abortion clinic.near me. chicago illinois,abortion clinic near me illinois,3,4,google,2026-03-12 19:48:00.366156,abortion clinic illinois,abortion clinic illinois near me,clinic.near me. chicago,clinic near me +abortion,"('closest abortion clinic near me in illinois', 'closest abortion clinic near me')",closest abortion clinic near me in illinois,closest abortion clinic near me,1,4,google,2026-03-12 19:48:01.496732,abortion clinic illinois,abortion clinic illinois near me,closest in,closest in +abortion,"('closest abortion clinic near me in illinois', 'illinois abortion clinic near me')",closest abortion clinic near me in illinois,illinois abortion clinic near me,2,4,google,2026-03-12 19:48:01.496732,abortion clinic illinois,abortion clinic illinois near me,closest in,closest in +abortion,"('closest abortion clinic near me in illinois', 'nearest abortion clinic in illinois')",closest abortion clinic near me in illinois,nearest abortion clinic in illinois,3,4,google,2026-03-12 19:48:01.496732,abortion clinic illinois,abortion clinic illinois near me,closest in,nearest +abortion,"('closest abortion clinic near me in illinois', 'illinois abortion clinic locations')",closest abortion clinic near me in illinois,illinois abortion clinic locations,4,4,google,2026-03-12 19:48:01.496732,abortion clinic illinois,abortion clinic illinois near me,closest in,locations +abortion,"('abortion clinic near chicago il', 'abortion clinic near downtown chicago il')",abortion clinic near chicago il,abortion clinic near downtown chicago il,1,4,google,2026-03-12 19:48:02.606277,abortion clinic illinois,abortion clinic illinois closest to me,near chicago il,downtown +abortion,"('abortion clinic near chicago il', 'abortion clinic near me chicago il')",abortion clinic near chicago il,abortion clinic near me chicago il,2,4,google,2026-03-12 19:48:02.606277,abortion clinic illinois,abortion clinic illinois closest to me,near chicago il,me +abortion,"('abortion clinic near chicago il', 'abortion clinic chicago illinois')",abortion clinic near chicago il,abortion clinic chicago illinois,3,4,google,2026-03-12 19:48:02.606277,abortion clinic illinois,abortion clinic illinois closest to me,near chicago il,illinois +abortion,"('abortion clinic near chicago il', 'illinois abortion clinic near me')",abortion clinic near chicago il,illinois abortion clinic near me,4,4,google,2026-03-12 19:48:02.606277,abortion clinic illinois,abortion clinic illinois closest to me,near chicago il,illinois me +abortion,"('abortion clinic near chicago il', 'abortion clinic chicago near me')",abortion clinic near chicago il,abortion clinic chicago near me,5,4,google,2026-03-12 19:48:02.606277,abortion clinic illinois,abortion clinic illinois closest to me,near chicago il,me +abortion,"('illinois abortion clinic locations', 'illinois abortion clinic near me')",illinois abortion clinic locations,illinois abortion clinic near me,1,4,google,2026-03-12 19:48:03.434226,abortion clinic illinois,abortion clinic illinois closest to me,locations,near me +abortion,"('illinois abortion clinic locations', 'are abortions free in illinois')",illinois abortion clinic locations,are abortions free in illinois,2,4,google,2026-03-12 19:48:03.434226,abortion clinic illinois,abortion clinic illinois closest to me,locations,are abortions free in +abortion,"('illinois abortion clinic locations', 'illinois abortion clinic closest to me')",illinois abortion clinic locations,illinois abortion clinic closest to me,3,4,google,2026-03-12 19:48:03.434226,abortion clinic illinois,abortion clinic illinois closest to me,locations,closest to me +abortion,"('illinois abortion clinic locations', 'illinois abortion clinics map')",illinois abortion clinic locations,illinois abortion clinics map,4,4,google,2026-03-12 19:48:03.434226,abortion clinic illinois,abortion clinic illinois closest to me,locations,clinics map +abortion,"('how late can you get an abortion in illinois', 'how long can you get an abortion in illinois')",how late can you get an abortion in illinois,how long can you get an abortion in illinois,1,4,google,2026-03-12 19:48:04.857857,abortion clinic illinois,abortion clinic illinois open now,how late can you get an in,long +abortion,"('how late can you get an abortion in illinois', 'how late can u get an abortion in illinois')",how late can you get an abortion in illinois,how late can u get an abortion in illinois,2,4,google,2026-03-12 19:48:04.857857,abortion clinic illinois,abortion clinic illinois open now,how late can you get an in,u +abortion,"('how late can you get an abortion in illinois', 'how late can you get an abortion in il')",how late can you get an abortion in illinois,how late can you get an abortion in il,3,4,google,2026-03-12 19:48:04.857857,abortion clinic illinois,abortion clinic illinois open now,how late can you get an in,il +abortion,"('how late can you get an abortion in illinois', 'how long can you wait to get an abortion in illinois')",how late can you get an abortion in illinois,how long can you wait to get an abortion in illinois,4,4,google,2026-03-12 19:48:04.857857,abortion clinic illinois,abortion clinic illinois open now,how late can you get an in,long wait to +abortion,"('how late can you get an abortion in illinois', 'how long into pregnancy can you get an abortion in illinois')",how late can you get an abortion in illinois,how long into pregnancy can you get an abortion in illinois,5,4,google,2026-03-12 19:48:04.857857,abortion clinic illinois,abortion clinic illinois open now,how late can you get an in,long into pregnancy +abortion,"('how late can you get an abortion in illinois', 'how long do you have to get an abortion in illinois')",how late can you get an abortion in illinois,how long do you have to get an abortion in illinois,6,4,google,2026-03-12 19:48:04.857857,abortion clinic illinois,abortion clinic illinois open now,how late can you get an in,long do have to +abortion,"('how late can you get an abortion in illinois', 'how early can you get an abortion in illinois')",how late can you get an abortion in illinois,how early can you get an abortion in illinois,7,4,google,2026-03-12 19:48:04.857857,abortion clinic illinois,abortion clinic illinois open now,how late can you get an in,early +abortion,"('how late can you get an abortion in illinois', 'how soon can you get an abortion in illinois')",how late can you get an abortion in illinois,how soon can you get an abortion in illinois,8,4,google,2026-03-12 19:48:04.857857,abortion clinic illinois,abortion clinic illinois open now,how late can you get an in,soon +abortion,"('how late can you get an abortion in illinois', 'how far can you get an abortion in illinois')",how late can you get an abortion in illinois,how far can you get an abortion in illinois,9,4,google,2026-03-12 19:48:04.857857,abortion clinic illinois,abortion clinic illinois open now,how late can you get an in,far +abortion,"('illinois abortion clinic closest to me', 'illinois abortion clinic near me')",illinois abortion clinic closest to me,illinois abortion clinic near me,1,4,google,2026-03-12 19:48:05.964566,abortion clinic illinois,abortion clinic illinois open now,closest to me,near +abortion,"('illinois abortion clinic closest to me', 'abortion clinic illinois closest to me')",illinois abortion clinic closest to me,abortion clinic illinois closest to me,2,4,google,2026-03-12 19:48:05.964566,abortion clinic illinois,abortion clinic illinois open now,closest to me,closest to me +abortion,"('illinois abortion clinic closest to me', 'how much is a medical abortion in illinois')",illinois abortion clinic closest to me,how much is a medical abortion in illinois,3,4,google,2026-03-12 19:48:05.964566,abortion clinic illinois,abortion clinic illinois open now,closest to me,how much is a medical in +abortion,"('illinois abortion clinic closest to me', 'illinois abortion clinic locations')",illinois abortion clinic closest to me,illinois abortion clinic locations,4,4,google,2026-03-12 19:48:05.964566,abortion clinic illinois,abortion clinic illinois open now,closest to me,locations +abortion,"('illinois abortion clinic closest to me', 'illinois abortion clinics map')",illinois abortion clinic closest to me,illinois abortion clinics map,5,4,google,2026-03-12 19:48:05.964566,abortion clinic illinois,abortion clinic illinois open now,closest to me,clinics map +abortion,"('abortion clinic il', 'abortion clinic illinois')",abortion clinic il,abortion clinic illinois,1,4,google,2026-03-12 19:48:07.052820,abortion clinic illinois,abortion clinic illinois open now,il,illinois +abortion,"('abortion clinic il', 'abortion clinic illinois cost')",abortion clinic il,abortion clinic illinois cost,2,4,google,2026-03-12 19:48:07.052820,abortion clinic illinois,abortion clinic illinois open now,il,illinois cost +abortion,"('abortion clinic il', 'abortion clinic illinois carbondale')",abortion clinic il,abortion clinic illinois carbondale,3,4,google,2026-03-12 19:48:07.052820,abortion clinic illinois,abortion clinic illinois open now,il,illinois carbondale +abortion,"('abortion clinic il', 'abortion clinic illinois near me')",abortion clinic il,abortion clinic illinois near me,4,4,google,2026-03-12 19:48:07.052820,abortion clinic illinois,abortion clinic illinois open now,il,illinois near me +abortion,"('abortion clinic il', 'abortion clinic iloilo')",abortion clinic il,abortion clinic iloilo,5,4,google,2026-03-12 19:48:07.052820,abortion clinic illinois,abortion clinic illinois open now,il,iloilo +abortion,"('abortion clinic il', 'abortion clinic ilford')",abortion clinic il,abortion clinic ilford,6,4,google,2026-03-12 19:48:07.052820,abortion clinic illinois,abortion clinic illinois open now,il,ilford +abortion,"('abortion clinic il', 'abortion clinic ilkeston')",abortion clinic il,abortion clinic ilkeston,7,4,google,2026-03-12 19:48:07.052820,abortion clinic illinois,abortion clinic illinois open now,il,ilkeston +abortion,"('abortion clinic il', 'abortion clinic illawarra')",abortion clinic il,abortion clinic illawarra,8,4,google,2026-03-12 19:48:07.052820,abortion clinic illinois,abortion clinic illinois open now,il,illawarra +abortion,"('abortion clinic il', 'abortion clinic illinois closest to me')",abortion clinic il,abortion clinic illinois closest to me,9,4,google,2026-03-12 19:48:07.052820,abortion clinic illinois,abortion clinic illinois open now,il,illinois closest to me +abortion,"('abortion clinic freeport il', ""women's clinic freeport il"")",abortion clinic freeport il,women's clinic freeport il,1,4,google,2026-03-12 19:48:08.539791,abortion clinic illinois,abortion clinic illinois free,freeport il,women's +abortion,"('abortion clinic freeport il', ""women's health clinic freeport il"")",abortion clinic freeport il,women's health clinic freeport il,2,4,google,2026-03-12 19:48:08.539791,abortion clinic illinois,abortion clinic illinois free,freeport il,women's health +abortion,"('abortion clinic freeport il', ""ridgeway women's clinic freeport il"")",abortion clinic freeport il,ridgeway women's clinic freeport il,3,4,google,2026-03-12 19:48:08.539791,abortion clinic illinois,abortion clinic illinois free,freeport il,ridgeway women's +abortion,"('abortion clinic freeport il', ""monroe women's clinic freeport il"")",abortion clinic freeport il,monroe women's clinic freeport il,4,4,google,2026-03-12 19:48:08.539791,abortion clinic illinois,abortion clinic illinois free,freeport il,monroe women's +abortion,"('abortion clinic freeport il', 'abortion clinic for free near me')",abortion clinic freeport il,abortion clinic for free near me,5,4,google,2026-03-12 19:48:08.539791,abortion clinic illinois,abortion clinic illinois free,freeport il,for free near me +abortion,"('abortion clinic freeport il', 'abortion clinic franklin park il')",abortion clinic freeport il,abortion clinic franklin park il,6,4,google,2026-03-12 19:48:08.539791,abortion clinic illinois,abortion clinic illinois free,freeport il,franklin park +abortion,"('abortion clinic freeport il', 'abortion clinic fremont ca')",abortion clinic freeport il,abortion clinic fremont ca,7,4,google,2026-03-12 19:48:08.539791,abortion clinic illinois,abortion clinic illinois free,freeport il,fremont ca +abortion,"('abortion clinic freeport il', 'abortion clinic joliet')",abortion clinic freeport il,abortion clinic joliet,8,4,google,2026-03-12 19:48:08.539791,abortion clinic illinois,abortion clinic illinois free,freeport il,joliet +abortion,"(""women's clinic freeport il"", ""women's health clinic freeport il"")",women's clinic freeport il,women's health clinic freeport il,1,4,google,2026-03-12 19:48:10.018516,abortion clinic illinois,abortion clinic illinois free,women's freeport il,health +abortion,"(""women's clinic freeport il"", ""ridgeway women's clinic freeport il"")",women's clinic freeport il,ridgeway women's clinic freeport il,2,4,google,2026-03-12 19:48:10.018516,abortion clinic illinois,abortion clinic illinois free,women's freeport il,ridgeway +abortion,"(""women's clinic freeport il"", ""monroe women's clinic freeport il"")",women's clinic freeport il,monroe women's clinic freeport il,3,4,google,2026-03-12 19:48:10.018516,abortion clinic illinois,abortion clinic illinois free,women's freeport il,monroe +abortion,"(""women's clinic freeport il"", ""monroe clinic women's health freeport il"")",women's clinic freeport il,monroe clinic women's health freeport il,4,4,google,2026-03-12 19:48:10.018516,abortion clinic illinois,abortion clinic illinois free,women's freeport il,monroe health +abortion,"(""women's clinic freeport il"", ""women's health freeport il"")",women's clinic freeport il,women's health freeport il,5,4,google,2026-03-12 19:48:10.018516,abortion clinic illinois,abortion clinic illinois free,women's freeport il,health +abortion,"(""women's clinic freeport il"", ""freeport women's clinic"")",women's clinic freeport il,freeport women's clinic,6,4,google,2026-03-12 19:48:10.018516,abortion clinic illinois,abortion clinic illinois free,women's freeport il,women's freeport il +abortion,"(""women's clinic freeport il"", ""freeport women's health"")",women's clinic freeport il,freeport women's health,7,4,google,2026-03-12 19:48:10.018516,abortion clinic illinois,abortion clinic illinois free,women's freeport il,health +abortion,"('free abortion clinic in chicago', 'free abortion clinic chicago no insurance')",free abortion clinic in chicago,free abortion clinic chicago no insurance,1,4,google,2026-03-12 19:48:11.091702,abortion clinic illinois,abortion clinic illinois free,in chicago,no insurance +abortion,"('free abortion clinic in chicago', ""free women's clinic chicago"")",free abortion clinic in chicago,free women's clinic chicago,2,4,google,2026-03-12 19:48:11.091702,abortion clinic illinois,abortion clinic illinois free,in chicago,women's +abortion,"('free abortion clinic in chicago', 'free abortion clinic near me')",free abortion clinic in chicago,free abortion clinic near me,3,4,google,2026-03-12 19:48:11.091702,abortion clinic illinois,abortion clinic illinois free,in chicago,near me +abortion,"('free abortion clinic in chicago', 'free abortion clinics in illinois')",free abortion clinic in chicago,free abortion clinics in illinois,4,4,google,2026-03-12 19:48:11.091702,abortion clinic illinois,abortion clinic illinois free,in chicago,clinics illinois +abortion,"(""women's health center illinois"", ""women's health clinic illinois"")",women's health center illinois,women's health clinic illinois,1,4,google,2026-03-12 19:48:12.454272,abortion clinic illinois,women's clinic illinois,health center,clinic +abortion,"(""women's health center illinois"", ""women's health care illinois"")",women's health center illinois,women's health care illinois,2,4,google,2026-03-12 19:48:12.454272,abortion clinic illinois,women's clinic illinois,health center,care +abortion,"(""women's health center illinois"", ""women's medical center illinois"")",women's health center illinois,women's medical center illinois,3,4,google,2026-03-12 19:48:12.454272,abortion clinic illinois,women's clinic illinois,health center,medical +abortion,"(""women's health center illinois"", ""women's health center rockford illinois"")",women's health center illinois,women's health center rockford illinois,4,4,google,2026-03-12 19:48:12.454272,abortion clinic illinois,women's clinic illinois,health center,rockford +abortion,"(""women's health center illinois"", ""rose women's medical center illinois"")",women's health center illinois,rose women's medical center illinois,5,4,google,2026-03-12 19:48:12.454272,abortion clinic illinois,women's clinic illinois,health center,rose medical +abortion,"(""women's health center illinois"", ""women's wellness center effingham illinois"")",women's health center illinois,women's wellness center effingham illinois,6,4,google,2026-03-12 19:48:12.454272,abortion clinic illinois,women's clinic illinois,health center,wellness effingham +abortion,"(""women's health center illinois"", ""american women's medical center illinois"")",women's health center illinois,american women's medical center illinois,7,4,google,2026-03-12 19:48:12.454272,abortion clinic illinois,women's clinic illinois,health center,american medical +abortion,"(""women's health center illinois"", ""women's health center peoria il"")",women's health center illinois,women's health center peoria il,8,4,google,2026-03-12 19:48:12.454272,abortion clinic illinois,women's clinic illinois,health center,peoria il +abortion,"(""women's health center illinois"", ""women's health center jacksonville il"")",women's health center illinois,women's health center jacksonville il,9,4,google,2026-03-12 19:48:12.454272,abortion clinic illinois,women's clinic illinois,health center,jacksonville il +abortion,"(""women's medical center illinois"", ""women's health center illinois"")",women's medical center illinois,women's health center illinois,1,4,google,2026-03-12 19:48:13.455405,abortion clinic illinois,women's clinic illinois,medical center,health +abortion,"(""women's medical center illinois"", ""rose women's medical center illinois"")",women's medical center illinois,rose women's medical center illinois,2,4,google,2026-03-12 19:48:13.455405,abortion clinic illinois,women's clinic illinois,medical center,rose +abortion,"(""women's medical center illinois"", ""american women's medical center illinois"")",women's medical center illinois,american women's medical center illinois,3,4,google,2026-03-12 19:48:13.455405,abortion clinic illinois,women's clinic illinois,medical center,american +abortion,"(""women's medical center illinois"", ""women's health center rockford illinois"")",women's medical center illinois,women's health center rockford illinois,4,4,google,2026-03-12 19:48:13.455405,abortion clinic illinois,women's clinic illinois,medical center,health rockford +abortion,"(""women's medical center illinois"", 'american women medical center il')",women's medical center illinois,american women medical center il,5,4,google,2026-03-12 19:48:13.455405,abortion clinic illinois,women's clinic illinois,medical center,american women il +abortion,"(""women's medical center illinois"", ""women's center illinois"")",women's medical center illinois,women's center illinois,6,4,google,2026-03-12 19:48:13.455405,abortion clinic illinois,women's clinic illinois,medical center,medical center +abortion,"(""women's medical center illinois"", ""women's center chicago il"")",women's medical center illinois,women's center chicago il,7,4,google,2026-03-12 19:48:13.455405,abortion clinic illinois,women's clinic illinois,medical center,chicago il +abortion,"(""alamo women's clinic of illinois"", ""alamo women's clinic of illinois carbondale"")",alamo women's clinic of illinois,alamo women's clinic of illinois carbondale,1,4,google,2026-03-12 19:48:14.562869,abortion clinic illinois,women's clinic illinois,alamo of,carbondale +abortion,"(""alamo women's clinic of illinois"", ""alamo women's clinic of illinois carbondale reviews"")",alamo women's clinic of illinois,alamo women's clinic of illinois carbondale reviews,2,4,google,2026-03-12 19:48:14.562869,abortion clinic illinois,women's clinic illinois,alamo of,carbondale reviews +abortion,"(""alamo women's clinic of illinois"", ""alamo women's clinic of illinois reviews"")",alamo women's clinic of illinois,alamo women's clinic of illinois reviews,3,4,google,2026-03-12 19:48:14.562869,abortion clinic illinois,women's clinic illinois,alamo of,reviews +abortion,"(""alamo women's clinic of illinois"", ""alamo women's clinic of illinois photos"")",alamo women's clinic of illinois,alamo women's clinic of illinois photos,4,4,google,2026-03-12 19:48:14.562869,abortion clinic illinois,women's clinic illinois,alamo of,photos +abortion,"(""alamo women's clinic of illinois"", ""alamo women's clinic of illinois by owner"")",alamo women's clinic of illinois,alamo women's clinic of illinois by owner,5,4,google,2026-03-12 19:48:14.562869,abortion clinic illinois,women's clinic illinois,alamo of,by owner +abortion,"(""alamo women's clinic of illinois"", ""alamo women's clinic of illinois carbondale photos"")",alamo women's clinic of illinois,alamo women's clinic of illinois carbondale photos,6,4,google,2026-03-12 19:48:14.562869,abortion clinic illinois,women's clinic illinois,alamo of,carbondale photos +abortion,"(""women's health clinic illinois"", ""women's health care illinois"")",women's health clinic illinois,women's health care illinois,1,4,google,2026-03-12 19:48:15.630106,abortion clinic illinois,women's clinic illinois,health,care +abortion,"(""women's health clinic illinois"", ""women's health clinic rockford il"")",women's health clinic illinois,women's health clinic rockford il,2,4,google,2026-03-12 19:48:15.630106,abortion clinic illinois,women's clinic illinois,health,rockford il +abortion,"(""women's health clinic illinois"", ""women's health clinic freeport il"")",women's health clinic illinois,women's health clinic freeport il,3,4,google,2026-03-12 19:48:15.630106,abortion clinic illinois,women's clinic illinois,health,freeport il +abortion,"(""women's health clinic illinois"", ""women's health clinic peoria il"")",women's health clinic illinois,women's health clinic peoria il,4,4,google,2026-03-12 19:48:15.630106,abortion clinic illinois,women's clinic illinois,health,peoria il +abortion,"(""women's health clinic illinois"", ""women's health clinic shiloh il"")",women's health clinic illinois,women's health clinic shiloh il,5,4,google,2026-03-12 19:48:15.630106,abortion clinic illinois,women's clinic illinois,health,shiloh il +abortion,"(""women's health clinic illinois"", ""women's health clinic champaign il"")",women's health clinic illinois,women's health clinic champaign il,6,4,google,2026-03-12 19:48:15.630106,abortion clinic illinois,women's clinic illinois,health,champaign il +abortion,"(""women's health clinic illinois"", ""women's health clinic mattoon il"")",women's health clinic illinois,women's health clinic mattoon il,7,4,google,2026-03-12 19:48:15.630106,abortion clinic illinois,women's clinic illinois,health,mattoon il +abortion,"(""women's health clinic illinois"", ""women's health clinic jerseyville il"")",women's health clinic illinois,women's health clinic jerseyville il,8,4,google,2026-03-12 19:48:15.630106,abortion clinic illinois,women's clinic illinois,health,jerseyville il +abortion,"(""women's health clinic illinois"", ""women's health clinic peru il"")",women's health clinic illinois,women's health clinic peru il,9,4,google,2026-03-12 19:48:15.630106,abortion clinic illinois,women's clinic illinois,health,peru il +abortion,"(""women's abortion clinic illinois"", ""women's clinic for abortions near me"")",women's abortion clinic illinois,women's clinic for abortions near me,1,4,google,2026-03-12 19:48:16.895665,abortion clinic illinois,women's clinic illinois,abortion,for abortions near me +abortion,"(""women's abortion clinic illinois"", ""women's abortion clinic chicago"")",women's abortion clinic illinois,women's abortion clinic chicago,2,4,google,2026-03-12 19:48:16.895665,abortion clinic illinois,women's clinic illinois,abortion,chicago +abortion,"(""women's abortion clinic illinois"", ""women's clinic illinois"")",women's abortion clinic illinois,women's clinic illinois,3,4,google,2026-03-12 19:48:16.895665,abortion clinic illinois,women's clinic illinois,abortion,abortion +abortion,"(""women's abortion clinic illinois"", ""women's abortion clinic indianapolis"")",women's abortion clinic illinois,women's abortion clinic indianapolis,4,4,google,2026-03-12 19:48:16.895665,abortion clinic illinois,women's clinic illinois,abortion,indianapolis +abortion,"(""hope women's clinic illinois"", ""hope women's clinic granite city il"")",hope women's clinic illinois,hope women's clinic granite city il,1,4,google,2026-03-12 19:48:18.271889,abortion clinic illinois,women's clinic illinois,hope,granite city il +abortion,"(""hope women's clinic illinois"", ""hope women's clinic"")",hope women's clinic illinois,hope women's clinic,2,4,google,2026-03-12 19:48:18.271889,abortion clinic illinois,women's clinic illinois,hope,hope +abortion,"(""hope women's clinic illinois"", ""hope women's health clinic"")",hope women's clinic illinois,hope women's health clinic,3,4,google,2026-03-12 19:48:18.271889,abortion clinic illinois,women's clinic illinois,hope,health +abortion,"(""women's clinic danville illinois"", ""women's care clinic danville illinois"")",women's clinic danville illinois,women's care clinic danville illinois,1,4,google,2026-03-12 19:48:19.129457,abortion clinic illinois,women's clinic illinois,danville,care +abortion,"(""women's clinic danville illinois"", ""women's health clinic danville il"")",women's clinic danville illinois,women's health clinic danville il,2,4,google,2026-03-12 19:48:19.129457,abortion clinic illinois,women's clinic illinois,danville,health il +abortion,"(""women's clinic danville illinois"", ""women's clinic danville il"")",women's clinic danville illinois,women's clinic danville il,3,4,google,2026-03-12 19:48:19.129457,abortion clinic illinois,women's clinic illinois,danville,il +abortion,"(""women's clinic danville illinois"", ""women's clinic danville va"")",women's clinic danville illinois,women's clinic danville va,4,4,google,2026-03-12 19:48:19.129457,abortion clinic illinois,women's clinic illinois,danville,va +abortion,"(""women's clinic danville illinois"", ""women's clinic danville ky"")",women's clinic danville illinois,women's clinic danville ky,5,4,google,2026-03-12 19:48:19.129457,abortion clinic illinois,women's clinic illinois,danville,ky +abortion,"(""women's clinic danville illinois"", ""danville women's clinic"")",women's clinic danville illinois,danville women's clinic,6,4,google,2026-03-12 19:48:19.129457,abortion clinic illinois,women's clinic illinois,danville,danville +abortion,"(""women's clinic in chicago illinois"", 'how much is a tummy tuck in illinois')",women's clinic in chicago illinois,how much is a tummy tuck in illinois,1,4,google,2026-03-12 19:48:20.426373,abortion clinic illinois,women's clinic illinois,in chicago,how much is a tummy tuck +abortion,"(""women's clinic in chicago illinois"", 'companies in illinois chicago')",women's clinic in chicago illinois,companies in illinois chicago,2,4,google,2026-03-12 19:48:20.426373,abortion clinic illinois,women's clinic illinois,in chicago,companies +abortion,"(""women's clinic in chicago illinois"", ""women's clinic in chicago"")",women's clinic in chicago illinois,women's clinic in chicago,3,4,google,2026-03-12 19:48:20.426373,abortion clinic illinois,women's clinic illinois,in chicago,in chicago +abortion,"(""women's clinic in chicago illinois"", ""women's clinic illinois"")",women's clinic in chicago illinois,women's clinic illinois,4,4,google,2026-03-12 19:48:20.426373,abortion clinic illinois,women's clinic illinois,in chicago,in chicago +abortion,"(""women's clinic in chicago illinois"", ""women's health clinic illinois"")",women's clinic in chicago illinois,women's health clinic illinois,5,4,google,2026-03-12 19:48:20.426373,abortion clinic illinois,women's clinic illinois,in chicago,health +abortion,"(""women's clinic in chicago"", ""women's clinic in chicago illinois"")",women's clinic in chicago,women's clinic in chicago illinois,1,4,google,2026-03-12 19:48:21.243291,abortion clinic illinois,women's clinic illinois,in chicago,illinois +abortion,"(""women's clinic in chicago"", ""chicago women's hospital"")",women's clinic in chicago,chicago women's hospital,2,4,google,2026-03-12 19:48:21.243291,abortion clinic illinois,women's clinic illinois,in chicago,hospital +abortion,"(""women's clinic in chicago"", ""chicago women's clinic"")",women's clinic in chicago,chicago women's clinic,3,4,google,2026-03-12 19:48:21.243291,abortion clinic illinois,women's clinic illinois,in chicago,in chicago +abortion,"(""women's clinic in chicago"", ""women's clinic downtown chicago"")",women's clinic in chicago,women's clinic downtown chicago,4,4,google,2026-03-12 19:48:21.243291,abortion clinic illinois,women's clinic illinois,in chicago,downtown +abortion,"(""women's clinic in chicago"", ""prentice women's hospital chicago"")",women's clinic in chicago,prentice women's hospital chicago,5,4,google,2026-03-12 19:48:21.243291,abortion clinic illinois,women's clinic illinois,in chicago,prentice hospital +abortion,"(""women's clinic in chicago"", ""best women's hospital in chicago"")",women's clinic in chicago,best women's hospital in chicago,6,4,google,2026-03-12 19:48:21.243291,abortion clinic illinois,women's clinic illinois,in chicago,best hospital +abortion,"(""women's clinic in chicago"", ""chicago women's health center"")",women's clinic in chicago,chicago women's health center,7,4,google,2026-03-12 19:48:21.243291,abortion clinic illinois,women's clinic illinois,in chicago,health center +abortion,"(""women's clinic in chicago"", ""women's health center chicago il"")",women's clinic in chicago,women's health center chicago il,8,4,google,2026-03-12 19:48:21.243291,abortion clinic illinois,women's clinic illinois,in chicago,health center il +abortion,"(""women's clinic in chicago"", ""women's health center chicago heights"")",women's clinic in chicago,women's health center chicago heights,9,4,google,2026-03-12 19:48:21.243291,abortion clinic illinois,women's clinic illinois,in chicago,health center heights +abortion,"(""women's clinic in chicago"", ""women's hospital chicago il"")",women's clinic in chicago,women's hospital chicago il,10,4,google,2026-03-12 19:48:21.243291,abortion clinic illinois,women's clinic illinois,in chicago,hospital il +abortion,"('abortion center illinois', 'abortion clinic illinois')",abortion center illinois,abortion clinic illinois,1,4,google,2026-03-12 19:48:22.075705,abortion clinic illinois,abortion services illinois,center,clinic +abortion,"('abortion center illinois', 'abortion clinic illinois near me')",abortion center illinois,abortion clinic illinois near me,2,4,google,2026-03-12 19:48:22.075705,abortion clinic illinois,abortion services illinois,center,clinic near me +abortion,"('abortion center illinois', 'abortion services illinois')",abortion center illinois,abortion services illinois,3,4,google,2026-03-12 19:48:22.075705,abortion clinic illinois,abortion services illinois,center,services +abortion,"('abortion center illinois', 'abortion clinic illinois carbondale')",abortion center illinois,abortion clinic illinois carbondale,4,4,google,2026-03-12 19:48:22.075705,abortion clinic illinois,abortion services illinois,center,clinic carbondale +abortion,"('abortion center illinois', 'abortion clinic illinois cost')",abortion center illinois,abortion clinic illinois cost,5,4,google,2026-03-12 19:48:22.075705,abortion clinic illinois,abortion services illinois,center,clinic cost +abortion,"('abortion center illinois', 'abortion clinic illinois closest to me')",abortion center illinois,abortion clinic illinois closest to me,6,4,google,2026-03-12 19:48:22.075705,abortion clinic illinois,abortion services illinois,center,clinic closest to me +abortion,"('abortion center illinois', 'abortion clinic illinois chicago')",abortion center illinois,abortion clinic illinois chicago,7,4,google,2026-03-12 19:48:22.075705,abortion clinic illinois,abortion services illinois,center,clinic chicago +abortion,"('abortion center illinois', 'abortion clinic illinois open now')",abortion center illinois,abortion clinic illinois open now,8,4,google,2026-03-12 19:48:22.075705,abortion clinic illinois,abortion services illinois,center,clinic open now +abortion,"('abortion center illinois', 'abortion clinic illinois free')",abortion center illinois,abortion clinic illinois free,9,4,google,2026-03-12 19:48:22.075705,abortion clinic illinois,abortion services illinois,center,clinic free +abortion,"('abortion care illinois', 'abortion services illinois')",abortion care illinois,abortion services illinois,1,4,google,2026-03-12 19:48:23.330563,abortion clinic illinois,abortion services illinois,care,services +abortion,"('abortion care illinois', 'abortion assistance illinois')",abortion care illinois,abortion assistance illinois,2,4,google,2026-03-12 19:48:23.330563,abortion clinic illinois,abortion services illinois,care,assistance +abortion,"('abortion care illinois', 'when can you not get an abortion in illinois')",abortion care illinois,when can you not get an abortion in illinois,3,4,google,2026-03-12 19:48:23.330563,abortion clinic illinois,abortion services illinois,care,when can you not get an in +abortion,"('abortion care illinois', 'abortion care indiana')",abortion care illinois,abortion care indiana,4,4,google,2026-03-12 19:48:23.330563,abortion clinic illinois,abortion services illinois,care,indiana +abortion,"('abortion care illinois', 'abortion carbondale il')",abortion care illinois,abortion carbondale il,5,4,google,2026-03-12 19:48:23.330563,abortion clinic illinois,abortion services illinois,care,carbondale il +abortion,"('abortion providers illinois', 'abortion clinics illinois')",abortion providers illinois,abortion clinics illinois,1,4,google,2026-03-12 19:48:24.763698,abortion clinic illinois,abortion services illinois,providers,clinics +abortion,"('abortion providers illinois', 'abortion services illinois')",abortion providers illinois,abortion services illinois,2,4,google,2026-03-12 19:48:24.763698,abortion clinic illinois,abortion services illinois,providers,services +abortion,"('abortion providers illinois', 'abortion clinics illinois near me')",abortion providers illinois,abortion clinics illinois near me,3,4,google,2026-03-12 19:48:24.763698,abortion clinic illinois,abortion services illinois,providers,clinics near me +abortion,"('abortion providers illinois', 'is abortion legal in illinois')",abortion providers illinois,is abortion legal in illinois,4,4,google,2026-03-12 19:48:24.763698,abortion clinic illinois,abortion services illinois,providers,is legal in +abortion,"('abortion providers illinois', 'abortion rights in illinois')",abortion providers illinois,abortion rights in illinois,5,4,google,2026-03-12 19:48:24.763698,abortion clinic illinois,abortion services illinois,providers,rights in +abortion,"('abortion providers illinois', 'abortion providers chicago')",abortion providers illinois,abortion providers chicago,6,4,google,2026-03-12 19:48:24.763698,abortion clinic illinois,abortion services illinois,providers,chicago +abortion,"('abortion providers illinois', 'abortion process illinois')",abortion providers illinois,abortion process illinois,7,4,google,2026-03-12 19:48:24.763698,abortion clinic illinois,abortion services illinois,providers,process +abortion,"('north carolina abortion clinic charlotte nc', 'are abortions legal in north carolina')",north carolina abortion clinic charlotte nc,are abortions legal in north carolina,1,4,google,2026-03-12 19:48:26.099696,abortion clinic north carolina,abortion clinic north carolina charlotte,nc,are abortions legal in +abortion,"('north carolina abortion clinic charlotte nc', 'is abortion legal in nc')",north carolina abortion clinic charlotte nc,is abortion legal in nc,2,4,google,2026-03-12 19:48:26.099696,abortion clinic north carolina,abortion clinic north carolina charlotte,nc,is legal in +abortion,"('north carolina abortion clinic charlotte nc', 'north carolina charlotte abortion clinic')",north carolina abortion clinic charlotte nc,north carolina charlotte abortion clinic,3,4,google,2026-03-12 19:48:26.099696,abortion clinic north carolina,abortion clinic north carolina charlotte,nc,nc +abortion,"('north carolina abortion clinic charlotte nc', 'north carolina abortion clinics')",north carolina abortion clinic charlotte nc,north carolina abortion clinics,4,4,google,2026-03-12 19:48:26.099696,abortion clinic north carolina,abortion clinic north carolina charlotte,nc,clinics +abortion,"('are abortions legal in north carolina', 'are abortions legal in north carolina 2025')",are abortions legal in north carolina,are abortions legal in north carolina 2025,1,4,google,2026-03-12 19:48:27.095611,abortion clinic north carolina,abortion clinic north carolina charlotte,are abortions legal in,2025 +abortion,"('are abortions legal in north carolina', 'are abortions legal in south carolina')",are abortions legal in north carolina,are abortions legal in south carolina,2,4,google,2026-03-12 19:48:27.095611,abortion clinic north carolina,abortion clinic north carolina charlotte,are abortions legal in,south +abortion,"('are abortions legal in north carolina', 'are abortions illegal in north carolina')",are abortions legal in north carolina,are abortions illegal in north carolina,3,4,google,2026-03-12 19:48:27.095611,abortion clinic north carolina,abortion clinic north carolina charlotte,are abortions legal in,illegal +abortion,"('are abortions legal in north carolina', 'are abortions allowed in north carolina')",are abortions legal in north carolina,are abortions allowed in north carolina,4,4,google,2026-03-12 19:48:27.095611,abortion clinic north carolina,abortion clinic north carolina charlotte,are abortions legal in,allowed +abortion,"('are abortions legal in north carolina', 'are abortions legal in south carolina 2025')",are abortions legal in north carolina,are abortions legal in south carolina 2025,5,4,google,2026-03-12 19:48:27.095611,abortion clinic north carolina,abortion clinic north carolina charlotte,are abortions legal in,south 2025 +abortion,"('are abortions legal in north carolina', 'is abortion legal in north carolina 2024')",are abortions legal in north carolina,is abortion legal in north carolina 2024,6,4,google,2026-03-12 19:48:27.095611,abortion clinic north carolina,abortion clinic north carolina charlotte,are abortions legal in,is abortion 2024 +abortion,"('are abortions legal in north carolina', 'is abortion legal in north carolina for minors')",are abortions legal in north carolina,is abortion legal in north carolina for minors,7,4,google,2026-03-12 19:48:27.095611,abortion clinic north carolina,abortion clinic north carolina charlotte,are abortions legal in,is abortion for minors +abortion,"('are abortions legal in north carolina', 'is abortion legal in north carolina now')",are abortions legal in north carolina,is abortion legal in north carolina now,8,4,google,2026-03-12 19:48:27.095611,abortion clinic north carolina,abortion clinic north carolina charlotte,are abortions legal in,is abortion now +abortion,"('are abortions legal in north carolina', 'is abortion legal in n carolina')",are abortions legal in north carolina,is abortion legal in n carolina,9,4,google,2026-03-12 19:48:27.095611,abortion clinic north carolina,abortion clinic north carolina charlotte,are abortions legal in,is abortion n +abortion,"('abortion cost charlotte nc', 'abortion pill cost charlotte nc')",abortion cost charlotte nc,abortion pill cost charlotte nc,1,4,google,2026-03-12 19:48:28.496207,abortion clinic north carolina,abortion clinic north carolina charlotte,cost nc,pill +abortion,"('abortion cost charlotte nc', 'planned parenthood abortion cost charlotte nc')",abortion cost charlotte nc,planned parenthood abortion cost charlotte nc,2,4,google,2026-03-12 19:48:28.496207,abortion clinic north carolina,abortion clinic north carolina charlotte,cost nc,planned parenthood +abortion,"('abortion cost charlotte nc', 'abortion clinic charlotte nc cost')",abortion cost charlotte nc,abortion clinic charlotte nc cost,3,4,google,2026-03-12 19:48:28.496207,abortion clinic north carolina,abortion clinic north carolina charlotte,cost nc,clinic +abortion,"('abortion cost charlotte nc', 'abortion clinic charlotte nc price')",abortion cost charlotte nc,abortion clinic charlotte nc price,4,4,google,2026-03-12 19:48:28.496207,abortion clinic north carolina,abortion clinic north carolina charlotte,cost nc,clinic price +abortion,"('abortion cost charlotte nc', 'abortion costs nc')",abortion cost charlotte nc,abortion costs nc,5,4,google,2026-03-12 19:48:28.496207,abortion clinic north carolina,abortion clinic north carolina charlotte,cost nc,costs +abortion,"('abortions in charlotte', 'abortion in charlottesville')",abortions in charlotte,abortion in charlottesville,1,4,google,2026-03-12 19:48:29.581161,abortion clinic north carolina,abortion clinic north carolina charlotte,abortions in,abortion charlottesville +abortion,"('abortions in charlotte', 'abortions charlottesville va')",abortions in charlotte,abortions charlottesville va,2,4,google,2026-03-12 19:48:29.581161,abortion clinic north carolina,abortion clinic north carolina charlotte,abortions in,charlottesville va +abortion,"('abortion clinic charlotte nc cost', 'abortion cost charlotte nc')",abortion clinic charlotte nc cost,abortion cost charlotte nc,1,4,google,2026-03-12 19:48:30.416724,abortion clinic north carolina,abortion clinic north carolina charlotte,nc cost,nc cost +abortion,"('abortion clinic charlotte nc cost', 'abortion clinic charlotte nc price')",abortion clinic charlotte nc cost,abortion clinic charlotte nc price,2,4,google,2026-03-12 19:48:30.416724,abortion clinic north carolina,abortion clinic north carolina charlotte,nc cost,price +abortion,"('abortion clinic charlotte nc cost', 'abortion clinic charlotte north carolina')",abortion clinic charlotte nc cost,abortion clinic charlotte north carolina,3,4,google,2026-03-12 19:48:30.416724,abortion clinic north carolina,abortion clinic north carolina charlotte,nc cost,north carolina +abortion,"('abortion clinic charlotte nc cost', 'abortion clinic near charlotte nc')",abortion clinic charlotte nc cost,abortion clinic near charlotte nc,4,4,google,2026-03-12 19:48:30.416724,abortion clinic north carolina,abortion clinic north carolina charlotte,nc cost,near +abortion,"('abortion clinic charlotte nc cost', 'abortion clinic charlotte')",abortion clinic charlotte nc cost,abortion clinic charlotte,5,4,google,2026-03-12 19:48:30.416724,abortion clinic north carolina,abortion clinic north carolina charlotte,nc cost,nc cost +abortion,"('abortion clinic charlotte nc price', 'abortion clinic charlotte nc prices')",abortion clinic charlotte nc price,abortion clinic charlotte nc prices,1,4,google,2026-03-12 19:48:31.314010,abortion clinic north carolina,abortion clinic north carolina charlotte,nc price,prices +abortion,"('abortion clinic charlotte nc price', 'abortion clinic charlotte nc cost')",abortion clinic charlotte nc price,abortion clinic charlotte nc cost,2,4,google,2026-03-12 19:48:31.314010,abortion clinic north carolina,abortion clinic north carolina charlotte,nc price,cost +abortion,"('abortion clinic charlotte nc price', 'abortion clinic charlotte north carolina')",abortion clinic charlotte nc price,abortion clinic charlotte north carolina,3,4,google,2026-03-12 19:48:31.314010,abortion clinic north carolina,abortion clinic north carolina charlotte,nc price,north carolina +abortion,"('abortion clinic charlotte nc price', 'abortion clinic near charlotte nc')",abortion clinic charlotte nc price,abortion clinic near charlotte nc,4,4,google,2026-03-12 19:48:31.314010,abortion clinic north carolina,abortion clinic north carolina charlotte,nc price,near +abortion,"('abortion clinic raleigh north carolina', ""women's center raleigh north carolina"")",abortion clinic raleigh north carolina,women's center raleigh north carolina,1,4,google,2026-03-12 19:48:32.155197,abortion clinic north carolina,abortion clinic north carolina near me,raleigh,women's center +abortion,"('abortion clinic raleigh north carolina', 'are abortions legal in north carolina')",abortion clinic raleigh north carolina,are abortions legal in north carolina,2,4,google,2026-03-12 19:48:32.155197,abortion clinic north carolina,abortion clinic north carolina near me,raleigh,are abortions legal in +abortion,"('abortion clinic raleigh north carolina', 'abortion clinic near raleigh nc')",abortion clinic raleigh north carolina,abortion clinic near raleigh nc,3,4,google,2026-03-12 19:48:32.155197,abortion clinic north carolina,abortion clinic north carolina near me,raleigh,near nc +abortion,"('abortion clinic raleigh north carolina', 'abortion clinic raleigh nc cost')",abortion clinic raleigh north carolina,abortion clinic raleigh nc cost,4,4,google,2026-03-12 19:48:32.155197,abortion clinic north carolina,abortion clinic north carolina near me,raleigh,nc cost +abortion,"('abortion clinic raleigh nc open now', 'abortion clinic open near me')",abortion clinic raleigh nc open now,abortion clinic open near me,1,4,google,2026-03-12 19:48:34.413840,abortion clinic north carolina,abortion clinic north carolina open now,raleigh nc,near me +abortion,"('abortion clinic raleigh nc open now', 'abortion clinic raleigh north carolina')",abortion clinic raleigh nc open now,abortion clinic raleigh north carolina,2,4,google,2026-03-12 19:48:34.413840,abortion clinic north carolina,abortion clinic north carolina open now,raleigh nc,north carolina +abortion,"('abortion clinic raleigh nc open now', 'abortion clinic near raleigh nc')",abortion clinic raleigh nc open now,abortion clinic near raleigh nc,3,4,google,2026-03-12 19:48:34.413840,abortion clinic north carolina,abortion clinic north carolina open now,raleigh nc,near +abortion,"('abortion clinic raleigh nc open now', 'abortion clinic raleigh nc cost')",abortion clinic raleigh nc open now,abortion clinic raleigh nc cost,4,4,google,2026-03-12 19:48:34.413840,abortion clinic north carolina,abortion clinic north carolina open now,raleigh nc,cost +abortion,"('abortion clinic raleigh nc open now', 'abortion clinic raleigh lake boone trail')",abortion clinic raleigh nc open now,abortion clinic raleigh lake boone trail,5,4,google,2026-03-12 19:48:34.413840,abortion clinic north carolina,abortion clinic north carolina open now,raleigh nc,lake boone trail +abortion,"('how late can you get an abortion in nc', 'how long can you get an abortion in nc')",how late can you get an abortion in nc,how long can you get an abortion in nc,1,4,google,2026-03-12 19:48:35.877672,abortion clinic north carolina,abortion clinic north carolina open now,how late can you get an in nc,long +abortion,"('how late can you get an abortion in nc', 'how long can you wait to get an abortion in nc')",how late can you get an abortion in nc,how long can you wait to get an abortion in nc,2,4,google,2026-03-12 19:48:35.877672,abortion clinic north carolina,abortion clinic north carolina open now,how late can you get an in nc,long wait to +abortion,"('how late can you get an abortion in nc', 'how long until you can get an abortion in nc')",how late can you get an abortion in nc,how long until you can get an abortion in nc,3,4,google,2026-03-12 19:48:35.877672,abortion clinic north carolina,abortion clinic north carolina open now,how late can you get an in nc,long until +abortion,"('how late can you get an abortion in nc', 'how early can you get an abortion in nc')",how late can you get an abortion in nc,how early can you get an abortion in nc,4,4,google,2026-03-12 19:48:35.877672,abortion clinic north carolina,abortion clinic north carolina open now,how late can you get an in nc,early +abortion,"('how late can you get an abortion in nc', 'how long do you have to get an abortion in nc')",how late can you get an abortion in nc,how long do you have to get an abortion in nc,5,4,google,2026-03-12 19:48:35.877672,abortion clinic north carolina,abortion clinic north carolina open now,how late can you get an in nc,long do have to +abortion,"('how late can you get an abortion in nc', 'how far can you get an abortion in nc')",how late can you get an abortion in nc,how far can you get an abortion in nc,6,4,google,2026-03-12 19:48:35.877672,abortion clinic north carolina,abortion clinic north carolina open now,how late can you get an in nc,far +abortion,"('how late can you get an abortion in nc', 'how long can you wait to get an abortion in north carolina')",how late can you get an abortion in nc,how long can you wait to get an abortion in north carolina,7,4,google,2026-03-12 19:48:35.877672,abortion clinic north carolina,abortion clinic north carolina open now,how late can you get an in nc,long wait to north carolina +abortion,"('how late can you get an abortion in nc', 'when can you get an abortion in nc')",how late can you get an abortion in nc,when can you get an abortion in nc,8,4,google,2026-03-12 19:48:35.877672,abortion clinic north carolina,abortion clinic north carolina open now,how late can you get an in nc,when +abortion,"('how late can you get an abortion in nc', 'how many weeks can you get an abortion in nc')",how late can you get an abortion in nc,how many weeks can you get an abortion in nc,9,4,google,2026-03-12 19:48:35.877672,abortion clinic north carolina,abortion clinic north carolina open now,how late can you get an in nc,many weeks +abortion,"('how many weeks can you get an abortion in nc', 'up to how many weeks can you get an abortion in nc')",how many weeks can you get an abortion in nc,up to how many weeks can you get an abortion in nc,1,4,google,2026-03-12 19:48:36.807523,abortion clinic north carolina,abortion clinic north carolina open now,how many weeks can you get an in nc,up to +abortion,"('how many weeks can you get an abortion in nc', 'how many weeks do you have to get an abortion in nc')",how many weeks can you get an abortion in nc,how many weeks do you have to get an abortion in nc,2,4,google,2026-03-12 19:48:36.807523,abortion clinic north carolina,abortion clinic north carolina open now,how many weeks can you get an in nc,do have to +abortion,"('how many weeks can you get an abortion in nc', 'how many weeks until you can get an abortion in north carolina')",how many weeks can you get an abortion in nc,how many weeks until you can get an abortion in north carolina,3,4,google,2026-03-12 19:48:36.807523,abortion clinic north carolina,abortion clinic north carolina open now,how many weeks can you get an in nc,until north carolina +abortion,"('how many weeks can you get an abortion in nc', ""how many weeks until you can't get an abortion in nc"")",how many weeks can you get an abortion in nc,how many weeks until you can't get an abortion in nc,4,4,google,2026-03-12 19:48:36.807523,abortion clinic north carolina,abortion clinic north carolina open now,how many weeks can you get an in nc,until can't +abortion,"('how many weeks can you get an abortion in nc', 'how early can you get an abortion in nc')",how many weeks can you get an abortion in nc,how early can you get an abortion in nc,5,4,google,2026-03-12 19:48:36.807523,abortion clinic north carolina,abortion clinic north carolina open now,how many weeks can you get an in nc,early +abortion,"('how many weeks can you get an abortion in nc', 'how soon can you get an abortion in nc')",how many weeks can you get an abortion in nc,how soon can you get an abortion in nc,6,4,google,2026-03-12 19:48:36.807523,abortion clinic north carolina,abortion clinic north carolina open now,how many weeks can you get an in nc,soon +abortion,"('how many weeks can you get an abortion in nc', 'how far along can you get an abortion in nc')",how many weeks can you get an abortion in nc,how far along can you get an abortion in nc,7,4,google,2026-03-12 19:48:36.807523,abortion clinic north carolina,abortion clinic north carolina open now,how many weeks can you get an in nc,far along +abortion,"('how many weeks can you get an abortion in nc', 'how long can you get an abortion in nc')",how many weeks can you get an abortion in nc,how long can you get an abortion in nc,8,4,google,2026-03-12 19:48:36.807523,abortion clinic north carolina,abortion clinic north carolina open now,how many weeks can you get an in nc,long +abortion,"('how many weeks can you get an abortion in nc', 'how many weeks can you have an abortion in north carolina')",how many weeks can you get an abortion in nc,how many weeks can you have an abortion in north carolina,9,4,google,2026-03-12 19:48:36.807523,abortion clinic north carolina,abortion clinic north carolina open now,how many weeks can you get an in nc,have north carolina +abortion,"('abortion clinic charlotte north carolina', 'north carolina abortion clinic charlotte nc')",abortion clinic charlotte north carolina,north carolina abortion clinic charlotte nc,1,4,google,2026-03-12 19:48:37.773714,abortion clinic north carolina,abortion clinic north carolina open now,charlotte,nc +abortion,"('abortion clinic charlotte north carolina', 'abortions in charlotte')",abortion clinic charlotte north carolina,abortions in charlotte,2,4,google,2026-03-12 19:48:37.773714,abortion clinic north carolina,abortion clinic north carolina open now,charlotte,abortions in +abortion,"('abortion clinic charlotte north carolina', 'abortion clinic near me charlotte nc')",abortion clinic charlotte north carolina,abortion clinic near me charlotte nc,3,4,google,2026-03-12 19:48:37.773714,abortion clinic north carolina,abortion clinic north carolina open now,charlotte,near me nc +abortion,"('abortion clinic charlotte north carolina', 'abortion clinic charlotte nc cost')",abortion clinic charlotte north carolina,abortion clinic charlotte nc cost,4,4,google,2026-03-12 19:48:37.773714,abortion clinic north carolina,abortion clinic north carolina open now,charlotte,nc cost +abortion,"('abortion clinic charlotte north carolina', 'abortion clinic charlotte nc price')",abortion clinic charlotte north carolina,abortion clinic charlotte nc price,5,4,google,2026-03-12 19:48:37.773714,abortion clinic north carolina,abortion clinic north carolina open now,charlotte,nc price +abortion,"('abortion care north carolina', 'abortion services north carolina')",abortion care north carolina,abortion services north carolina,1,4,google,2026-03-12 19:48:38.967466,abortion clinic north carolina,abortion services north carolina,care,services +abortion,"('abortion care north carolina', 'abortion cut off nc')",abortion care north carolina,abortion cut off nc,2,4,google,2026-03-12 19:48:38.967466,abortion clinic north carolina,abortion services north carolina,care,cut off nc +abortion,"('abortion care north carolina', 'abortion options in nc')",abortion care north carolina,abortion options in nc,3,4,google,2026-03-12 19:48:38.967466,abortion clinic north carolina,abortion services north carolina,care,options in nc +abortion,"('abortion care north carolina', 'abortion process in nc')",abortion care north carolina,abortion process in nc,4,4,google,2026-03-12 19:48:38.967466,abortion clinic north carolina,abortion services north carolina,care,process in nc +abortion,"('abortion care north carolina', 'is abortion legal in nc')",abortion care north carolina,is abortion legal in nc,5,4,google,2026-03-12 19:48:38.967466,abortion clinic north carolina,abortion services north carolina,care,is legal in nc +abortion,"('abortion care north carolina', 'abortion cary nc')",abortion care north carolina,abortion cary nc,6,4,google,2026-03-12 19:48:38.967466,abortion clinic north carolina,abortion services north carolina,care,cary nc +abortion,"('abortion care north carolina', 'north carolina abortion providers')",abortion care north carolina,north carolina abortion providers,7,4,google,2026-03-12 19:48:38.967466,abortion clinic north carolina,abortion services north carolina,care,providers +abortion,"('abortion care north carolina', 'abortion north carolina')",abortion care north carolina,abortion north carolina,8,4,google,2026-03-12 19:48:38.967466,abortion clinic north carolina,abortion services north carolina,care,care +abortion,"('abortion care north carolina', 'north carolina abortion clinic')",abortion care north carolina,north carolina abortion clinic,9,4,google,2026-03-12 19:48:38.967466,abortion clinic north carolina,abortion services north carolina,care,clinic +abortion,"('abortion providers north carolina', 'abortion clinics north carolina')",abortion providers north carolina,abortion clinics north carolina,1,4,google,2026-03-12 19:48:39.883342,abortion clinic north carolina,abortion services north carolina,providers,clinics +abortion,"('abortion providers north carolina', 'abortion services north carolina')",abortion providers north carolina,abortion services north carolina,2,4,google,2026-03-12 19:48:39.883342,abortion clinic north carolina,abortion services north carolina,providers,services +abortion,"('abortion providers north carolina', 'abortion clinics charlotte north carolina')",abortion providers north carolina,abortion clinics charlotte north carolina,3,4,google,2026-03-12 19:48:39.883342,abortion clinic north carolina,abortion services north carolina,providers,clinics charlotte +abortion,"('abortion providers north carolina', 'abortion clinics raleigh north carolina')",abortion providers north carolina,abortion clinics raleigh north carolina,4,4,google,2026-03-12 19:48:39.883342,abortion clinic north carolina,abortion services north carolina,providers,clinics raleigh +abortion,"('abortion providers north carolina', 'is abortion legal in nc')",abortion providers north carolina,is abortion legal in nc,5,4,google,2026-03-12 19:48:39.883342,abortion clinic north carolina,abortion services north carolina,providers,is legal in nc +abortion,"('abortion providers north carolina', 'are abortions legal in north carolina')",abortion providers north carolina,are abortions legal in north carolina,6,4,google,2026-03-12 19:48:39.883342,abortion clinic north carolina,abortion services north carolina,providers,are abortions legal in +abortion,"('abortion providers north carolina', 'abortion options in nc')",abortion providers north carolina,abortion options in nc,7,4,google,2026-03-12 19:48:39.883342,abortion clinic north carolina,abortion services north carolina,providers,options in nc +abortion,"('abortion providers north carolina', 'abortions in nc')",abortion providers north carolina,abortions in nc,8,4,google,2026-03-12 19:48:39.883342,abortion clinic north carolina,abortion services north carolina,providers,abortions in nc +abortion,"('abortion providers north carolina', 'abortion providers in nc')",abortion providers north carolina,abortion providers in nc,9,4,google,2026-03-12 19:48:39.883342,abortion clinic north carolina,abortion services north carolina,providers,in nc +abortion,"(""women's health center north carolina"", ""women's health clinic north carolina"")",women's health center north carolina,women's health clinic north carolina,1,4,google,2026-03-12 19:48:40.736264,abortion clinic north carolina,women's clinic north carolina,health center,clinic +abortion,"(""women's health center north carolina"", ""women's wellness center north carolina"")",women's health center north carolina,women's wellness center north carolina,2,4,google,2026-03-12 19:48:40.736264,abortion clinic north carolina,women's clinic north carolina,health center,wellness +abortion,"(""women's health center north carolina"", ""preferred women's health center north carolina"")",women's health center north carolina,preferred women's health center north carolina,3,4,google,2026-03-12 19:48:40.736264,abortion clinic north carolina,women's clinic north carolina,health center,preferred +abortion,"(""women's health center north carolina"", ""women's health center eden north carolina"")",women's health center north carolina,women's health center eden north carolina,4,4,google,2026-03-12 19:48:40.736264,abortion clinic north carolina,women's clinic north carolina,health center,eden +abortion,"(""women's health center north carolina"", ""women's health center laurinburg north carolina"")",women's health center north carolina,women's health center laurinburg north carolina,5,4,google,2026-03-12 19:48:40.736264,abortion clinic north carolina,women's clinic north carolina,health center,laurinburg +abortion,"(""women's health center north carolina"", ""all women's health center north carolina"")",women's health center north carolina,all women's health center north carolina,6,4,google,2026-03-12 19:48:40.736264,abortion clinic north carolina,women's clinic north carolina,health center,all +abortion,"(""women's health center north carolina"", ""women's wellness center fayetteville north carolina"")",women's health center north carolina,women's wellness center fayetteville north carolina,7,4,google,2026-03-12 19:48:40.736264,abortion clinic north carolina,women's clinic north carolina,health center,wellness fayetteville +abortion,"(""women's health center north carolina"", ""a preferred women's health clinic north carolina"")",women's health center north carolina,a preferred women's health clinic north carolina,8,4,google,2026-03-12 19:48:40.736264,abortion clinic north carolina,women's clinic north carolina,health center,a preferred clinic +abortion,"(""women's health center north carolina"", ""women's wellness clinic durham north carolina"")",women's health center north carolina,women's wellness clinic durham north carolina,9,4,google,2026-03-12 19:48:40.736264,abortion clinic north carolina,women's clinic north carolina,health center,wellness clinic durham +abortion,"(""women's hospital north carolina"", ""women's hospital greensboro north carolina"")",women's hospital north carolina,women's hospital greensboro north carolina,1,4,google,2026-03-12 19:48:41.908976,abortion clinic north carolina,women's clinic north carolina,hospital,greensboro +abortion,"(""women's hospital north carolina"", ""women's hospital charlotte nc"")",women's hospital north carolina,women's hospital charlotte nc,2,4,google,2026-03-12 19:48:41.908976,abortion clinic north carolina,women's clinic north carolina,hospital,charlotte nc +abortion,"(""women's hospital north carolina"", ""women's hospital unc"")",women's hospital north carolina,women's hospital unc,3,4,google,2026-03-12 19:48:41.908976,abortion clinic north carolina,women's clinic north carolina,hospital,unc +abortion,"(""women's hospital north carolina"", ""women's hospital raleigh nc"")",women's hospital north carolina,women's hospital raleigh nc,4,4,google,2026-03-12 19:48:41.908976,abortion clinic north carolina,women's clinic north carolina,hospital,raleigh nc +abortion,"(""women's choice clinic north carolina"", ""women's choice north carolina"")",women's choice clinic north carolina,women's choice north carolina,1,4,google,2026-03-12 19:48:43.157277,abortion clinic north carolina,women's clinic north carolina,choice,choice +abortion,"(""women's choice clinic north carolina"", ""women's choice clinic charlotte nc"")",women's choice clinic north carolina,women's choice clinic charlotte nc,2,4,google,2026-03-12 19:48:43.157277,abortion clinic north carolina,women's clinic north carolina,choice,charlotte nc +abortion,"(""women's choice clinic north carolina"", ""women's clinic north carolina"")",women's choice clinic north carolina,women's clinic north carolina,3,4,google,2026-03-12 19:48:43.157277,abortion clinic north carolina,women's clinic north carolina,choice,choice +abortion,"(""women's choice clinic north carolina"", ""women's choice clinic raleigh nc"")",women's choice clinic north carolina,women's choice clinic raleigh nc,4,4,google,2026-03-12 19:48:43.157277,abortion clinic north carolina,women's clinic north carolina,choice,raleigh nc +abortion,"(""women's choice clinic north carolina"", ""women's choice clinic greensboro nc"")",women's choice clinic north carolina,women's choice clinic greensboro nc,5,4,google,2026-03-12 19:48:43.157277,abortion clinic north carolina,women's clinic north carolina,choice,greensboro nc +abortion,"(""women's health clinic north carolina"", ""women's health center north carolina"")",women's health clinic north carolina,women's health center north carolina,1,4,google,2026-03-12 19:48:44.016230,abortion clinic north carolina,women's clinic north carolina,health,center +abortion,"(""women's health clinic north carolina"", ""women's health care north carolina"")",women's health clinic north carolina,women's health care north carolina,2,4,google,2026-03-12 19:48:44.016230,abortion clinic north carolina,women's clinic north carolina,health,care +abortion,"(""women's health clinic north carolina"", ""preferred women's health center north carolina"")",women's health clinic north carolina,preferred women's health center north carolina,3,4,google,2026-03-12 19:48:44.016230,abortion clinic north carolina,women's clinic north carolina,health,preferred center +abortion,"(""women's health clinic north carolina"", ""women's health center eden north carolina"")",women's health clinic north carolina,women's health center eden north carolina,4,4,google,2026-03-12 19:48:44.016230,abortion clinic north carolina,women's clinic north carolina,health,center eden +abortion,"(""women's health clinic north carolina"", ""a preferred women's health clinic north carolina"")",women's health clinic north carolina,a preferred women's health clinic north carolina,5,4,google,2026-03-12 19:48:44.016230,abortion clinic north carolina,women's clinic north carolina,health,a preferred +abortion,"(""women's health clinic north carolina"", ""women's health center laurinburg north carolina"")",women's health clinic north carolina,women's health center laurinburg north carolina,6,4,google,2026-03-12 19:48:44.016230,abortion clinic north carolina,women's clinic north carolina,health,center laurinburg +abortion,"(""women's health clinic north carolina"", ""all women's health center north carolina"")",women's health clinic north carolina,all women's health center north carolina,7,4,google,2026-03-12 19:48:44.016230,abortion clinic north carolina,women's clinic north carolina,health,all center +abortion,"(""women's health clinic north carolina"", ""atrium health women's care north carolina"")",women's health clinic north carolina,atrium health women's care north carolina,8,4,google,2026-03-12 19:48:44.016230,abortion clinic north carolina,women's clinic north carolina,health,atrium care +abortion,"(""women's health clinic north carolina"", ""women's community clinic near me"")",women's health clinic north carolina,women's community clinic near me,9,4,google,2026-03-12 19:48:44.016230,abortion clinic north carolina,women's clinic north carolina,health,community near me +abortion,"(""preferred women's clinic north carolina"", ""preferred women's health center north carolina"")",preferred women's clinic north carolina,preferred women's health center north carolina,1,4,google,2026-03-12 19:48:45.005786,abortion clinic north carolina,women's clinic north carolina,preferred,health center +abortion,"(""preferred women's clinic north carolina"", ""a preferred women's health clinic north carolina"")",preferred women's clinic north carolina,a preferred women's health clinic north carolina,2,4,google,2026-03-12 19:48:45.005786,abortion clinic north carolina,women's clinic north carolina,preferred,a health +abortion,"(""preferred women's clinic north carolina"", ""preferred women's health clinic charlotte nc"")",preferred women's clinic north carolina,preferred women's health clinic charlotte nc,3,4,google,2026-03-12 19:48:45.005786,abortion clinic north carolina,women's clinic north carolina,preferred,health charlotte nc +abortion,"(""preferred women's clinic north carolina"", ""preferred women's health north carolina"")",preferred women's clinic north carolina,preferred women's health north carolina,4,4,google,2026-03-12 19:48:45.005786,abortion clinic north carolina,women's clinic north carolina,preferred,health +abortion,"(""preferred women's clinic north carolina"", ""preferred women's clinic raleigh nc"")",preferred women's clinic north carolina,preferred women's clinic raleigh nc,5,4,google,2026-03-12 19:48:45.005786,abortion clinic north carolina,women's clinic north carolina,preferred,raleigh nc +abortion,"(""preferred women's clinic north carolina"", ""preferred women's clinic charlotte nc"")",preferred women's clinic north carolina,preferred women's clinic charlotte nc,6,4,google,2026-03-12 19:48:45.005786,abortion clinic north carolina,women's clinic north carolina,preferred,charlotte nc +abortion,"(""women's clinic shelby north carolina"", ""shelby women's clinic boiling springs north carolina"")",women's clinic shelby north carolina,shelby women's clinic boiling springs north carolina,1,4,google,2026-03-12 19:48:46.289076,abortion clinic north carolina,women's clinic north carolina,shelby,boiling springs +abortion,"(""women's clinic shelby north carolina"", ""women's clinic shelby nc"")",women's clinic shelby north carolina,women's clinic shelby nc,2,4,google,2026-03-12 19:48:46.289076,abortion clinic north carolina,women's clinic north carolina,shelby,nc +abortion,"(""women's clinic shelby north carolina"", ""women's clinic shelby"")",women's clinic shelby north carolina,women's clinic shelby,3,4,google,2026-03-12 19:48:46.289076,abortion clinic north carolina,women's clinic north carolina,shelby,shelby +abortion,"(""women's clinic shelby north carolina"", ""women's health clinic shelby nc"")",women's clinic shelby north carolina,women's health clinic shelby nc,4,4,google,2026-03-12 19:48:46.289076,abortion clinic north carolina,women's clinic north carolina,shelby,health nc +abortion,"(""women's abortion clinic north carolina"", ""women's clinic north carolina"")",women's abortion clinic north carolina,women's clinic north carolina,1,4,google,2026-03-12 19:48:47.638923,abortion clinic north carolina,women's clinic north carolina,abortion,abortion +abortion,"(""women's abortion clinic north carolina"", ""women's abortion clinic near me"")",women's abortion clinic north carolina,women's abortion clinic near me,2,4,google,2026-03-12 19:48:47.638923,abortion clinic north carolina,women's clinic north carolina,abortion,near me +abortion,"(""women's abortion clinic north carolina"", ""women's abortion laws"")",women's abortion clinic north carolina,women's abortion laws,3,4,google,2026-03-12 19:48:47.638923,abortion clinic north carolina,women's clinic north carolina,abortion,laws +abortion,"(""women's abortion clinic north carolina"", ""women's abortion clinic raleigh nc"")",women's abortion clinic north carolina,women's abortion clinic raleigh nc,4,4,google,2026-03-12 19:48:47.638923,abortion clinic north carolina,women's clinic north carolina,abortion,raleigh nc +abortion,"(""women's abortion clinic north carolina"", ""women's abortion clinic charlotte nc"")",women's abortion clinic north carolina,women's abortion clinic charlotte nc,5,4,google,2026-03-12 19:48:47.638923,abortion clinic north carolina,women's clinic north carolina,abortion,charlotte nc +abortion,"(""women's clinic jacksonville north carolina"", ""women's clinic jacksonville nc"")",women's clinic jacksonville north carolina,women's clinic jacksonville nc,1,4,google,2026-03-12 19:48:48.906784,abortion clinic north carolina,women's clinic north carolina,jacksonville,nc +abortion,"(""women's clinic jacksonville north carolina"", ""women's clinic jacksonville"")",women's clinic jacksonville north carolina,women's clinic jacksonville,2,4,google,2026-03-12 19:48:48.906784,abortion clinic north carolina,women's clinic north carolina,jacksonville,jacksonville +abortion,"(""women's clinic jacksonville north carolina"", ""women's health clinic jacksonville nc"")",women's clinic jacksonville north carolina,women's health clinic jacksonville nc,3,4,google,2026-03-12 19:48:48.906784,abortion clinic north carolina,women's clinic north carolina,jacksonville,health nc +abortion,"(""women's clinic jacksonville north carolina"", ""women's clinic jacksonville fl"")",women's clinic jacksonville north carolina,women's clinic jacksonville fl,4,4,google,2026-03-12 19:48:48.906784,abortion clinic north carolina,women's clinic north carolina,jacksonville,fl +abortion,"(""women's clinic fayetteville north carolina"", ""women's clinic fayetteville nc"")",women's clinic fayetteville north carolina,women's clinic fayetteville nc,1,4,google,2026-03-12 19:48:50.279421,abortion clinic north carolina,women's clinic north carolina,fayetteville,nc +abortion,"(""women's clinic fayetteville north carolina"", ""women's clinic fayetteville"")",women's clinic fayetteville north carolina,women's clinic fayetteville,2,4,google,2026-03-12 19:48:50.279421,abortion clinic north carolina,women's clinic north carolina,fayetteville,fayetteville +abortion,"(""women's clinic fayetteville north carolina"", ""women's clinic fayetteville ga"")",women's clinic fayetteville north carolina,women's clinic fayetteville ga,3,4,google,2026-03-12 19:48:50.279421,abortion clinic north carolina,women's clinic north carolina,fayetteville,ga +abortion,"(""women's clinic fayetteville north carolina"", ""women's health clinic fayetteville nc"")",women's clinic fayetteville north carolina,women's health clinic fayetteville nc,4,4,google,2026-03-12 19:48:50.279421,abortion clinic north carolina,women's clinic north carolina,fayetteville,health nc +abortion,"('free abortion clinic raleigh nc', ""free women's clinic raleigh nc"")",free abortion clinic raleigh nc,free women's clinic raleigh nc,1,4,google,2026-03-12 19:48:51.603003,abortion clinic north carolina,free abortion clinic north carolina,raleigh nc,women's +abortion,"('free abortion clinic raleigh nc', 'free abortion clinics in raleigh nc')",free abortion clinic raleigh nc,free abortion clinics in raleigh nc,2,4,google,2026-03-12 19:48:51.603003,abortion clinic north carolina,free abortion clinic north carolina,raleigh nc,clinics in +abortion,"('free abortion clinic raleigh nc', 'free abortion clinic near me')",free abortion clinic raleigh nc,free abortion clinic near me,3,4,google,2026-03-12 19:48:51.603003,abortion clinic north carolina,free abortion clinic north carolina,raleigh nc,near me +abortion,"('free abortion clinic raleigh nc', 'free abortion centers near me')",free abortion clinic raleigh nc,free abortion centers near me,4,4,google,2026-03-12 19:48:51.603003,abortion clinic north carolina,free abortion clinic north carolina,raleigh nc,centers near me +abortion,"('free abortion clinic raleigh nc', 'free abortion clinics in north carolina')",free abortion clinic raleigh nc,free abortion clinics in north carolina,5,4,google,2026-03-12 19:48:51.603003,abortion clinic north carolina,free abortion clinic north carolina,raleigh nc,clinics in north carolina +abortion,"('free abortion clinic raleigh nc', 'raleigh abortion clinics')",free abortion clinic raleigh nc,raleigh abortion clinics,6,4,google,2026-03-12 19:48:51.603003,abortion clinic north carolina,free abortion clinic north carolina,raleigh nc,clinics +abortion,"('free abortion clinic raleigh nc', 'free abortion clinic charlotte nc')",free abortion clinic raleigh nc,free abortion clinic charlotte nc,7,4,google,2026-03-12 19:48:51.603003,abortion clinic north carolina,free abortion clinic north carolina,raleigh nc,charlotte +abortion,"('free abortion clinic charlotte nc', ""free women's clinic charlotte nc"")",free abortion clinic charlotte nc,free women's clinic charlotte nc,1,4,google,2026-03-12 19:48:53.084648,abortion clinic north carolina,free abortion clinic north carolina,charlotte nc,women's +abortion,"('free abortion clinic charlotte nc', 'free abortion clinic near me')",free abortion clinic charlotte nc,free abortion clinic near me,2,4,google,2026-03-12 19:48:53.084648,abortion clinic north carolina,free abortion clinic north carolina,charlotte nc,near me +abortion,"('free abortion clinic charlotte nc', 'free abortion centers near me')",free abortion clinic charlotte nc,free abortion centers near me,3,4,google,2026-03-12 19:48:53.084648,abortion clinic north carolina,free abortion clinic north carolina,charlotte nc,centers near me +abortion,"('free abortion clinic charlotte nc', 'free abortion clinics in north carolina')",free abortion clinic charlotte nc,free abortion clinics in north carolina,4,4,google,2026-03-12 19:48:53.084648,abortion clinic north carolina,free abortion clinic north carolina,charlotte nc,clinics in north carolina +abortion,"('free abortion clinic charlotte nc', 'free abortion clinic raleigh nc')",free abortion clinic charlotte nc,free abortion clinic raleigh nc,5,4,google,2026-03-12 19:48:53.084648,abortion clinic north carolina,free abortion clinic north carolina,charlotte nc,raleigh +abortion,"(""women's hospital greensboro north carolina"", ""women's hospital greensboro nc"")",women's hospital greensboro north carolina,women's hospital greensboro nc,1,4,google,2026-03-12 19:48:54.281265,abortion clinic north carolina,abortion clinic greensboro north carolina,women's hospital,nc +abortion,"(""women's hospital greensboro north carolina"", ""women's hospital greensboro nc phone number"")",women's hospital greensboro north carolina,women's hospital greensboro nc phone number,2,4,google,2026-03-12 19:48:54.281265,abortion clinic north carolina,abortion clinic greensboro north carolina,women's hospital,nc phone number +abortion,"(""women's hospital greensboro north carolina"", ""women's hospital greensboro"")",women's hospital greensboro north carolina,women's hospital greensboro,3,4,google,2026-03-12 19:48:54.281265,abortion clinic north carolina,abortion clinic greensboro north carolina,women's hospital,women's hospital +abortion,"(""women's center greensboro north carolina"", ""women's resource center greensboro north carolina"")",women's center greensboro north carolina,women's resource center greensboro north carolina,1,4,google,2026-03-12 19:48:55.595952,abortion clinic north carolina,abortion clinic greensboro north carolina,women's center,resource +abortion,"(""women's center greensboro north carolina"", ""women's center greensboro nc"")",women's center greensboro north carolina,women's center greensboro nc,2,4,google,2026-03-12 19:48:55.595952,abortion clinic north carolina,abortion clinic greensboro north carolina,women's center,nc +abortion,"(""women's center greensboro north carolina"", ""women's center greensboro"")",women's center greensboro north carolina,women's center greensboro,3,4,google,2026-03-12 19:48:55.595952,abortion clinic north carolina,abortion clinic greensboro north carolina,women's center,women's center +abortion,"(""women's center greensboro north carolina"", ""women's health center in greensboro nc"")",women's center greensboro north carolina,women's health center in greensboro nc,4,4,google,2026-03-12 19:48:55.595952,abortion clinic north carolina,abortion clinic greensboro north carolina,women's center,health in nc +abortion,"(""women's center greensboro north carolina"", ""women's center greenville nc"")",women's center greensboro north carolina,women's center greenville nc,5,4,google,2026-03-12 19:48:55.595952,abortion clinic north carolina,abortion clinic greensboro north carolina,women's center,greenville nc +abortion,"(""women's resource center greensboro north carolina"", ""women's resource center greensboro nc"")",women's resource center greensboro north carolina,women's resource center greensboro nc,1,4,google,2026-03-12 19:48:56.405363,abortion clinic north carolina,abortion clinic greensboro north carolina,women's resource center,nc +abortion,"(""women's resource center greensboro north carolina"", ""women's resource center greensboro"")",women's resource center greensboro north carolina,women's resource center greensboro,2,4,google,2026-03-12 19:48:56.405363,abortion clinic north carolina,abortion clinic greensboro north carolina,women's resource center,women's resource center +abortion,"(""women's resource center greensboro north carolina"", 'women’s resource center of greensboro')",women's resource center greensboro north carolina,women’s resource center of greensboro,3,4,google,2026-03-12 19:48:56.405363,abortion clinic north carolina,abortion clinic greensboro north carolina,women's resource center,women’s of +abortion,"('how long can you get an abortion in nc', 'how far can you get an abortion in nc')",how long can you get an abortion in nc,how far can you get an abortion in nc,1,4,google,2026-03-12 19:48:57.285935,abortion clinic north carolina,abortion clinic greensboro north carolina,how long can you get an in nc,far +abortion,"('how long can you get an abortion in nc', 'how soon can you get an abortion in nc')",how long can you get an abortion in nc,how soon can you get an abortion in nc,2,4,google,2026-03-12 19:48:57.285935,abortion clinic north carolina,abortion clinic greensboro north carolina,how long can you get an in nc,soon +abortion,"('how long can you get an abortion in nc', 'how long can you wait to get an abortion in nc')",how long can you get an abortion in nc,how long can you wait to get an abortion in nc,3,4,google,2026-03-12 19:48:57.285935,abortion clinic north carolina,abortion clinic greensboro north carolina,how long can you get an in nc,wait to +abortion,"('how long can you get an abortion in nc', 'how far along can you get an abortion in nc')",how long can you get an abortion in nc,how far along can you get an abortion in nc,4,4,google,2026-03-12 19:48:57.285935,abortion clinic north carolina,abortion clinic greensboro north carolina,how long can you get an in nc,far along +abortion,"('how long can you get an abortion in nc', 'how long do you have to get an abortion in nc')",how long can you get an abortion in nc,how long do you have to get an abortion in nc,5,4,google,2026-03-12 19:48:57.285935,abortion clinic north carolina,abortion clinic greensboro north carolina,how long can you get an in nc,do have to +abortion,"('how long can you get an abortion in nc', 'how long can you wait to get an abortion in north carolina')",how long can you get an abortion in nc,how long can you wait to get an abortion in north carolina,6,4,google,2026-03-12 19:48:57.285935,abortion clinic north carolina,abortion clinic greensboro north carolina,how long can you get an in nc,wait to north carolina +abortion,"('how long can you get an abortion in nc', 'how late can you get an abortion in nc')",how long can you get an abortion in nc,how late can you get an abortion in nc,7,4,google,2026-03-12 19:48:57.285935,abortion clinic north carolina,abortion clinic greensboro north carolina,how long can you get an in nc,late +abortion,"('how long can you get an abortion in nc', 'how early can you get an abortion in nc')",how long can you get an abortion in nc,how early can you get an abortion in nc,8,4,google,2026-03-12 19:48:57.285935,abortion clinic north carolina,abortion clinic greensboro north carolina,how long can you get an in nc,early +abortion,"('how long can you get an abortion in nc', 'how many weeks can you get an abortion in nc')",how long can you get an abortion in nc,how many weeks can you get an abortion in nc,9,4,google,2026-03-12 19:48:57.285935,abortion clinic north carolina,abortion clinic greensboro north carolina,how long can you get an in nc,many weeks +abortion,"('abortion options in nc', 'abortion clinics in nc')",abortion options in nc,abortion clinics in nc,1,4,google,2026-03-12 19:48:58.621929,abortion clinic north carolina,abortion clinic greensboro north carolina,options in nc,clinics +abortion,"('abortion options in nc', 'abortion pill in nc cost')",abortion options in nc,abortion pill in nc cost,2,4,google,2026-03-12 19:48:58.621929,abortion clinic north carolina,abortion clinic greensboro north carolina,options in nc,pill cost +abortion,"('abortion options in nc', 'abortion providers in nc')",abortion options in nc,abortion providers in nc,3,4,google,2026-03-12 19:48:58.621929,abortion clinic north carolina,abortion clinic greensboro north carolina,options in nc,providers +abortion,"('abortion options in nc', 'abortions clinics in nc near me')",abortion options in nc,abortions clinics in nc near me,4,4,google,2026-03-12 19:48:58.621929,abortion clinic north carolina,abortion clinic greensboro north carolina,options in nc,abortions clinics near me +abortion,"('abortion options in nc', 'abortion clinics in charlotte nc')",abortion options in nc,abortion clinics in charlotte nc,5,4,google,2026-03-12 19:48:58.621929,abortion clinic north carolina,abortion clinic greensboro north carolina,options in nc,clinics charlotte +abortion,"('abortion options in nc', 'abortion clinics in raleigh nc')",abortion options in nc,abortion clinics in raleigh nc,6,4,google,2026-03-12 19:48:58.621929,abortion clinic north carolina,abortion clinic greensboro north carolina,options in nc,clinics raleigh +abortion,"('abortion options in nc', 'abortion clinics in fayetteville nc')",abortion options in nc,abortion clinics in fayetteville nc,7,4,google,2026-03-12 19:48:58.621929,abortion clinic north carolina,abortion clinic greensboro north carolina,options in nc,clinics fayetteville +abortion,"('abortion options in nc', 'abortion clinics in asheville nc')",abortion options in nc,abortion clinics in asheville nc,8,4,google,2026-03-12 19:48:58.621929,abortion clinic north carolina,abortion clinic greensboro north carolina,options in nc,clinics asheville +abortion,"('abortion options in nc', 'abortion clinics in greensboro nc')",abortion options in nc,abortion clinics in greensboro nc,9,4,google,2026-03-12 19:48:58.621929,abortion clinic north carolina,abortion clinic greensboro north carolina,options in nc,clinics greensboro +abortion,"('abortion process in nc', 'abortion pill process in nc')",abortion process in nc,abortion pill process in nc,1,4,google,2026-03-12 19:48:59.887519,abortion clinic north carolina,abortion clinic greensboro north carolina,process in nc,pill +abortion,"('abortion process in nc', 'abortion procedure nc')",abortion process in nc,abortion procedure nc,2,4,google,2026-03-12 19:48:59.887519,abortion clinic north carolina,abortion clinic greensboro north carolina,process in nc,procedure +abortion,"('abortion process in nc', 'how long can you get an abortion in nc')",abortion process in nc,how long can you get an abortion in nc,3,4,google,2026-03-12 19:48:59.887519,abortion clinic north carolina,abortion clinic greensboro north carolina,process in nc,how long can you get an +abortion,"('abortion process in nc', 'is abortion legal in nc')",abortion process in nc,is abortion legal in nc,4,4,google,2026-03-12 19:48:59.887519,abortion clinic north carolina,abortion clinic greensboro north carolina,process in nc,is legal +abortion,"('abortion process in nc', 'nc.abortion')",abortion process in nc,nc.abortion,5,4,google,2026-03-12 19:48:59.887519,abortion clinic north carolina,abortion clinic greensboro north carolina,process in nc,nc.abortion +abortion,"('abortion process in nc', 'abortion laws in nc 2021')",abortion process in nc,abortion laws in nc 2021,6,4,google,2026-03-12 19:48:59.887519,abortion clinic north carolina,abortion clinic greensboro north carolina,process in nc,laws 2021 +abortion,"('abortion process in nc', 'abortion process in nj')",abortion process in nc,abortion process in nj,7,4,google,2026-03-12 19:48:59.887519,abortion clinic north carolina,abortion clinic greensboro north carolina,process in nc,nj +abortion,"('abortion clinic near greensboro nc', 'closest abortion clinic near me')",abortion clinic near greensboro nc,closest abortion clinic near me,1,4,google,2026-03-12 19:49:01.333364,abortion clinic north carolina,abortion clinic greensboro north carolina,near nc,closest me +abortion,"('abortion clinic near greensboro nc', 'abortion clinic near me now')",abortion clinic near greensboro nc,abortion clinic near me now,2,4,google,2026-03-12 19:49:01.333364,abortion clinic north carolina,abortion clinic greensboro north carolina,near nc,me now +abortion,"('abortion clinic near greensboro nc', 'abortion clinic near me for free')",abortion clinic near greensboro nc,abortion clinic near me for free,3,4,google,2026-03-12 19:49:01.333364,abortion clinic north carolina,abortion clinic greensboro north carolina,near nc,me for free +abortion,"('abortion clinic near greensboro nc', 'abortion clinic greensboro north carolina')",abortion clinic near greensboro nc,abortion clinic greensboro north carolina,4,4,google,2026-03-12 19:49:01.333364,abortion clinic north carolina,abortion clinic greensboro north carolina,near nc,north carolina +abortion,"('abortion clinic near greensboro nc', 'abortion clinic greensboro')",abortion clinic near greensboro nc,abortion clinic greensboro,5,4,google,2026-03-12 19:49:01.333364,abortion clinic north carolina,abortion clinic greensboro north carolina,near nc,near nc +abortion,"('abortion clinic greensboro', 'abortion clinic greensboro nc')",abortion clinic greensboro,abortion clinic greensboro nc,1,4,google,2026-03-12 19:49:02.509467,abortion clinic north carolina,abortion clinic greensboro north carolina,greensboro,nc +abortion,"('abortion clinic greensboro', 'abortion clinic greensboro north carolina')",abortion clinic greensboro,abortion clinic greensboro north carolina,2,4,google,2026-03-12 19:49:02.509467,abortion clinic north carolina,abortion clinic greensboro north carolina,greensboro,north carolina +abortion,"('abortion clinic greensboro', ""women's clinic greensboro nc"")",abortion clinic greensboro,women's clinic greensboro nc,3,4,google,2026-03-12 19:49:02.509467,abortion clinic north carolina,abortion clinic greensboro north carolina,greensboro,women's nc +abortion,"('abortion clinic greensboro', ""greensboro women's clinic"")",abortion clinic greensboro,greensboro women's clinic,4,4,google,2026-03-12 19:49:02.509467,abortion clinic north carolina,abortion clinic greensboro north carolina,greensboro,women's +abortion,"('abortion clinic greensboro', 'abortion center greensboro')",abortion clinic greensboro,abortion center greensboro,5,4,google,2026-03-12 19:49:02.509467,abortion clinic north carolina,abortion clinic greensboro north carolina,greensboro,center +abortion,"('abortion clinic greensboro', 'abortion services greensboro nc')",abortion clinic greensboro,abortion services greensboro nc,6,4,google,2026-03-12 19:49:02.509467,abortion clinic north carolina,abortion clinic greensboro north carolina,greensboro,services nc +abortion,"('abortion clinic greensboro', 'abortion clinic near me greensboro')",abortion clinic greensboro,abortion clinic near me greensboro,7,4,google,2026-03-12 19:49:02.509467,abortion clinic north carolina,abortion clinic greensboro north carolina,greensboro,near me +abortion,"('abortion clinic greensboro', 'abortion clinic near me now')",abortion clinic greensboro,abortion clinic near me now,8,4,google,2026-03-12 19:49:02.509467,abortion clinic north carolina,abortion clinic greensboro north carolina,greensboro,near me now +abortion,"('abortion clinic greensboro', 'abortion clinic for free near me')",abortion clinic greensboro,abortion clinic for free near me,9,4,google,2026-03-12 19:49:02.509467,abortion clinic north carolina,abortion clinic greensboro north carolina,greensboro,for free near me +abortion,"(""women's clinic chicago il"", ""women's health center chicago il"")",women's clinic chicago il,women's health center chicago il,1,4,google,2026-03-12 19:49:03.476490,abortion clinic chicago,abortion clinic chicago illinois,women's il,health center +abortion,"(""women's clinic chicago il"", ""women's hospital chicago il"")",women's clinic chicago il,women's hospital chicago il,2,4,google,2026-03-12 19:49:03.476490,abortion clinic chicago,abortion clinic chicago illinois,women's il,hospital +abortion,"(""women's clinic chicago il"", ""women's health clinic chicago il"")",women's clinic chicago il,women's health clinic chicago il,3,4,google,2026-03-12 19:49:03.476490,abortion clinic chicago,abortion clinic chicago illinois,women's il,health +abortion,"(""women's clinic chicago il"", ""prentice women's hospital chicago il"")",women's clinic chicago il,prentice women's hospital chicago il,4,4,google,2026-03-12 19:49:03.476490,abortion clinic chicago,abortion clinic chicago illinois,women's il,prentice hospital +abortion,"(""women's clinic chicago il"", ""american women's medical center chicago il"")",women's clinic chicago il,american women's medical center chicago il,5,4,google,2026-03-12 19:49:03.476490,abortion clinic chicago,abortion clinic chicago illinois,women's il,american medical center +abortion,"(""women's clinic chicago il"", ""northwestern women's hospital chicago il"")",women's clinic chicago il,northwestern women's hospital chicago il,6,4,google,2026-03-12 19:49:03.476490,abortion clinic chicago,abortion clinic chicago illinois,women's il,northwestern hospital +abortion,"(""women's clinic chicago il"", ""women's clinic in chicago illinois"")",women's clinic chicago il,women's clinic in chicago illinois,7,4,google,2026-03-12 19:49:03.476490,abortion clinic chicago,abortion clinic chicago illinois,women's il,in illinois +abortion,"(""women's clinic chicago il"", ""women's clinic in chicago"")",women's clinic chicago il,women's clinic in chicago,8,4,google,2026-03-12 19:49:03.476490,abortion clinic chicago,abortion clinic chicago illinois,women's il,in +abortion,"(""women's clinic chicago il"", ""women's health clinic illinois"")",women's clinic chicago il,women's health clinic illinois,9,4,google,2026-03-12 19:49:03.476490,abortion clinic chicago,abortion clinic chicago illinois,women's il,health illinois +abortion,"('abortion clinics in chicago area', 'abortion clinics in chicago illinois')",abortion clinics in chicago area,abortion clinics in chicago illinois,1,4,google,2026-03-12 19:49:05.526947,abortion clinic chicago,abortion clinic chicago illinois,clinics in area,illinois +abortion,"('abortion clinics in chicago area', 'abortion centers in chicago illinois')",abortion clinics in chicago area,abortion centers in chicago illinois,2,4,google,2026-03-12 19:49:05.526947,abortion clinic chicago,abortion clinic chicago illinois,clinics in area,centers illinois +abortion,"('abortion clinics in chicago area', 'abortion clinics in chicago il')",abortion clinics in chicago area,abortion clinics in chicago il,3,4,google,2026-03-12 19:49:05.526947,abortion clinic chicago,abortion clinic chicago illinois,clinics in area,il +abortion,"('abortion clinics in chicago area', 'abortion clinics in chicago')",abortion clinics in chicago area,abortion clinics in chicago,4,4,google,2026-03-12 19:49:05.526947,abortion clinic chicago,abortion clinic chicago illinois,clinics in area,clinics in area +abortion,"('free abortion clinic chicago no insurance', 'free abortion clinic near me')",free abortion clinic chicago no insurance,free abortion clinic near me,1,4,google,2026-03-12 19:49:06.665917,abortion clinic chicago,abortion clinic chicago free,no insurance,near me +abortion,"('free abortion clinic chicago no insurance', 'free pregnancy clinics near me no insurance')",free abortion clinic chicago no insurance,free pregnancy clinics near me no insurance,2,4,google,2026-03-12 19:49:06.665917,abortion clinic chicago,abortion clinic chicago free,no insurance,pregnancy clinics near me +abortion,"('free abortion clinic chicago no insurance', 'free abortion clinic in chicago')",free abortion clinic chicago no insurance,free abortion clinic in chicago,3,4,google,2026-03-12 19:49:06.665917,abortion clinic chicago,abortion clinic chicago free,no insurance,in +abortion,"('free abortion clinic chicago no insurance', 'free abortion clinic illinois')",free abortion clinic chicago no insurance,free abortion clinic illinois,4,4,google,2026-03-12 19:49:06.665917,abortion clinic chicago,abortion clinic chicago free,no insurance,illinois +abortion,"('free abortion clinic chicago no insurance', 'free abortion chicago')",free abortion clinic chicago no insurance,free abortion chicago,5,4,google,2026-03-12 19:49:06.665917,abortion clinic chicago,abortion clinic chicago free,no insurance,no insurance +abortion,"('abortion clinic chicago il', 'abortion clinic chicago illinois')",abortion clinic chicago il,abortion clinic chicago illinois,1,4,google,2026-03-12 19:49:07.461176,abortion clinic chicago,abortion clinic chicago free,il,illinois +abortion,"('abortion clinic chicago il', ""women's clinic chicago il"")",abortion clinic chicago il,women's clinic chicago il,2,4,google,2026-03-12 19:49:07.461176,abortion clinic chicago,abortion clinic chicago free,il,women's +abortion,"('abortion clinic chicago il', 'abortion clinic downtown chicago il')",abortion clinic chicago il,abortion clinic downtown chicago il,3,4,google,2026-03-12 19:49:07.461176,abortion clinic chicago,abortion clinic chicago free,il,downtown +abortion,"('abortion clinic chicago il', 'abortion clinic near chicago il')",abortion clinic chicago il,abortion clinic near chicago il,4,4,google,2026-03-12 19:49:07.461176,abortion clinic chicago,abortion clinic chicago free,il,near +abortion,"('abortion clinic chicago il', 'abortion centers in chicago illinois')",abortion clinic chicago il,abortion centers in chicago illinois,5,4,google,2026-03-12 19:49:07.461176,abortion clinic chicago,abortion clinic chicago free,il,centers in illinois +abortion,"('abortion clinic chicago il', 'abortion clinic near me chicago il')",abortion clinic chicago il,abortion clinic near me chicago il,6,4,google,2026-03-12 19:49:07.461176,abortion clinic chicago,abortion clinic chicago free,il,near me +abortion,"('abortion clinic chicago il', ""women's health clinic chicago il"")",abortion clinic chicago il,women's health clinic chicago il,7,4,google,2026-03-12 19:49:07.461176,abortion clinic chicago,abortion clinic chicago free,il,women's health +abortion,"('abortion clinic chicago il', 'abortion clinics in chicago area')",abortion clinic chicago il,abortion clinics in chicago area,8,4,google,2026-03-12 19:49:07.461176,abortion clinic chicago,abortion clinic chicago free,il,clinics in area +abortion,"('abortion clinic chicago il', 'abortion clinic on washington in chicago il')",abortion clinic chicago il,abortion clinic on washington in chicago il,9,4,google,2026-03-12 19:49:07.461176,abortion clinic chicago,abortion clinic chicago free,il,on washington in +abortion,"('abortion clinic chicago il', 'abortion clinic chicago free')",abortion clinic chicago il,abortion clinic chicago free,10,4,google,2026-03-12 19:49:07.461176,abortion clinic chicago,abortion clinic chicago free,il,free +abortion,"('abortion clinic near me chicago il', 'abortion clinic near chicago il')",abortion clinic near me chicago il,abortion clinic near chicago il,1,4,google,2026-03-12 19:49:08.624774,abortion clinic chicago,abortion clinic chicago near me,il,il +abortion,"('abortion clinic near me chicago il', 'abortion clinic near downtown chicago il')",abortion clinic near me chicago il,abortion clinic near downtown chicago il,2,4,google,2026-03-12 19:49:08.624774,abortion clinic chicago,abortion clinic chicago near me,il,downtown +abortion,"('abortion clinic near me chicago il', 'illinois abortion clinic near me')",abortion clinic near me chicago il,illinois abortion clinic near me,3,4,google,2026-03-12 19:49:08.624774,abortion clinic chicago,abortion clinic chicago near me,il,illinois +abortion,"('abortion clinic near me chicago il', 'abortion clinic near me chicago')",abortion clinic near me chicago il,abortion clinic near me chicago,4,4,google,2026-03-12 19:49:08.624774,abortion clinic chicago,abortion clinic chicago near me,il,il +abortion,"('abortion clinic chicago washington blvd', 'abortion clinic chicago washington street')",abortion clinic chicago washington blvd,abortion clinic chicago washington street,1,4,google,2026-03-12 19:49:09.622108,abortion clinic chicago,abortion clinic chicago washington street,blvd,street +abortion,"('abortion clinic chicago washington blvd', 'abortion clinic washington st chicago')",abortion clinic chicago washington blvd,abortion clinic washington st chicago,2,4,google,2026-03-12 19:49:09.622108,abortion clinic chicago,abortion clinic chicago washington street,blvd,st +abortion,"('abortion clinic chicago washington blvd', 'abortion clinic on washington in chicago il')",abortion clinic chicago washington blvd,abortion clinic on washington in chicago il,3,4,google,2026-03-12 19:49:09.622108,abortion clinic chicago,abortion clinic chicago washington street,blvd,on in il +abortion,"('abortion clinic chicago washington blvd', 'abortion clinic chicago downtown')",abortion clinic chicago washington blvd,abortion clinic chicago downtown,4,4,google,2026-03-12 19:49:09.622108,abortion clinic chicago,abortion clinic chicago washington street,blvd,downtown +abortion,"('abortion clinic chicago washington blvd', 'abortion clinic on washington blvd')",abortion clinic chicago washington blvd,abortion clinic on washington blvd,5,4,google,2026-03-12 19:49:09.622108,abortion clinic chicago,abortion clinic chicago washington street,blvd,on +abortion,"('abortion clinic chicago washington blvd', 'abortion clinic chicago near me')",abortion clinic chicago washington blvd,abortion clinic chicago near me,6,4,google,2026-03-12 19:49:09.622108,abortion clinic chicago,abortion clinic chicago washington street,blvd,near me +abortion,"('abortion clinic washington st chicago', 'abortion clinic on washington in chicago il')",abortion clinic washington st chicago,abortion clinic on washington in chicago il,1,4,google,2026-03-12 19:49:10.779892,abortion clinic chicago,abortion clinic chicago washington street,st,on in il +abortion,"('abortion clinic washington st chicago', 'abortion clinic washington state')",abortion clinic washington st chicago,abortion clinic washington state,2,4,google,2026-03-12 19:49:10.779892,abortion clinic chicago,abortion clinic chicago washington street,st,state +abortion,"('abortion clinic washington st chicago', 'abortion clinic washington dc')",abortion clinic washington st chicago,abortion clinic washington dc,3,4,google,2026-03-12 19:49:10.779892,abortion clinic chicago,abortion clinic chicago washington street,st,dc +abortion,"('abortion clinic washington st chicago', 'abortion clinic chicago downtown')",abortion clinic washington st chicago,abortion clinic chicago downtown,4,4,google,2026-03-12 19:49:10.779892,abortion clinic chicago,abortion clinic chicago washington street,st,downtown +abortion,"('abortion clinic on washington in chicago il', 'abortion clinic washington st chicago')",abortion clinic on washington in chicago il,abortion clinic washington st chicago,1,4,google,2026-03-12 19:49:12.274926,abortion clinic chicago,abortion clinic chicago washington street,on in il,st +abortion,"('abortion clinic on washington in chicago il', 'abortion clinic on washington blvd')",abortion clinic on washington in chicago il,abortion clinic on washington blvd,2,4,google,2026-03-12 19:49:12.274926,abortion clinic chicago,abortion clinic chicago washington street,on in il,blvd +abortion,"('abortion clinic on washington in chicago il', 'abortion clinic on western and diversey')",abortion clinic on washington in chicago il,abortion clinic on western and diversey,3,4,google,2026-03-12 19:49:12.274926,abortion clinic chicago,abortion clinic chicago washington street,on in il,western and diversey +abortion,"('abortion clinic on washington in chicago il', 'abortion clinic on washington')",abortion clinic on washington in chicago il,abortion clinic on washington,4,4,google,2026-03-12 19:49:12.274926,abortion clinic chicago,abortion clinic chicago washington street,on in il,on in il +abortion,"(""women's clinic downtown chicago"", ""women's clinic in chicago illinois"")",women's clinic downtown chicago,women's clinic in chicago illinois,1,4,google,2026-03-12 19:49:13.679706,abortion clinic chicago,abortion clinic chicago downtown,women's,in illinois +abortion,"(""women's clinic downtown chicago"", ""women's hospital downtown chicago"")",women's clinic downtown chicago,women's hospital downtown chicago,2,4,google,2026-03-12 19:49:13.679706,abortion clinic chicago,abortion clinic chicago downtown,women's,hospital +abortion,"(""women's clinic downtown chicago"", ""women's health center downtown chicago"")",women's clinic downtown chicago,women's health center downtown chicago,3,4,google,2026-03-12 19:49:13.679706,abortion clinic chicago,abortion clinic chicago downtown,women's,health center +abortion,"(""women's clinic downtown chicago"", ""chicago women's hospital"")",women's clinic downtown chicago,chicago women's hospital,4,4,google,2026-03-12 19:49:13.679706,abortion clinic chicago,abortion clinic chicago downtown,women's,hospital +abortion,"(""women's clinic downtown chicago"", ""women's clinic chicago"")",women's clinic downtown chicago,women's clinic chicago,5,4,google,2026-03-12 19:49:13.679706,abortion clinic chicago,abortion clinic chicago downtown,women's,women's +abortion,"(""women's clinic downtown chicago"", ""women's health clinic downtown"")",women's clinic downtown chicago,women's health clinic downtown,6,4,google,2026-03-12 19:49:13.679706,abortion clinic chicago,abortion clinic chicago downtown,women's,health +abortion,"('abortion laws in chicago', 'abortion laws in chicago illinois')",abortion laws in chicago,abortion laws in chicago illinois,1,4,google,2026-03-12 19:49:14.710743,abortion clinic chicago,abortion clinic chicago within 5 mi,laws in,illinois +abortion,"('abortion laws in chicago', 'abortion legal in chicago')",abortion laws in chicago,abortion legal in chicago,2,4,google,2026-03-12 19:49:14.710743,abortion clinic chicago,abortion clinic chicago within 5 mi,laws in,legal +abortion,"('abortion laws in chicago', 'is abortion illegal in chicago')",abortion laws in chicago,is abortion illegal in chicago,3,4,google,2026-03-12 19:49:14.710743,abortion clinic chicago,abortion clinic chicago within 5 mi,laws in,is illegal +abortion,"('abortion laws in chicago', 'is abortion legal in chicago 2025')",abortion laws in chicago,is abortion legal in chicago 2025,4,4,google,2026-03-12 19:49:14.710743,abortion clinic chicago,abortion clinic chicago within 5 mi,laws in,is legal 2025 +abortion,"('abortion laws in chicago', 'is abortion legal in chicago illinois')",abortion laws in chicago,is abortion legal in chicago illinois,5,4,google,2026-03-12 19:49:14.710743,abortion clinic chicago,abortion clinic chicago within 5 mi,laws in,is legal illinois +abortion,"('abortion laws in chicago', 'is abortion legal in illinois')",abortion laws in chicago,is abortion legal in illinois,6,4,google,2026-03-12 19:49:14.710743,abortion clinic chicago,abortion clinic chicago within 5 mi,laws in,is legal illinois +abortion,"('abortion laws in chicago', 'abortion laws in illinois 2021')",abortion laws in chicago,abortion laws in illinois 2021,7,4,google,2026-03-12 19:49:14.710743,abortion clinic chicago,abortion clinic chicago within 5 mi,laws in,illinois 2021 +abortion,"('abortion laws in chicago', 'is abortion legal in chicago 2022')",abortion laws in chicago,is abortion legal in chicago 2022,8,4,google,2026-03-12 19:49:14.710743,abortion clinic chicago,abortion clinic chicago within 5 mi,laws in,is legal 2022 +abortion,"('abortion laws in chicago', 'abortion laws in illinois 2022')",abortion laws in chicago,abortion laws in illinois 2022,9,4,google,2026-03-12 19:49:14.710743,abortion clinic chicago,abortion clinic chicago within 5 mi,laws in,illinois 2022 +abortion,"('abortion pill cost cvs price', 'abortion pill cost cvs')",abortion pill cost cvs price,abortion pill cost cvs,1,4,google,2026-03-12 19:49:15.755794,abortion pill cost cvs,abortion pill cost cvs florida,price,price +abortion,"('abortion pill cost cvs price', 'abortion pill cvs walgreens')",abortion pill cost cvs price,abortion pill cvs walgreens,2,4,google,2026-03-12 19:49:15.755794,abortion pill cost cvs,abortion pill cost cvs florida,price,walgreens +abortion,"('abortion pill cvs walgreens', 'abortion pill cost cvs')",abortion pill cvs walgreens,abortion pill cost cvs,1,4,google,2026-03-12 19:49:17.216024,abortion pill cost cvs,abortion pill cost cvs florida,walgreens,cost +abortion,"('abortion pill cvs walgreens', 'is the pharmacy at cvs open today')",abortion pill cvs walgreens,is the pharmacy at cvs open today,2,4,google,2026-03-12 19:49:17.216024,abortion pill cost cvs,abortion pill cost cvs florida,walgreens,is the pharmacy at open today +abortion,"('abortion pill cvs walgreens', 'walgreens or cvs near me open')",abortion pill cvs walgreens,walgreens or cvs near me open,3,4,google,2026-03-12 19:49:17.216024,abortion pill cost cvs,abortion pill cost cvs florida,walgreens,or near me open +abortion,"('abortion pill cvs walgreens', 'abortion pill cvs')",abortion pill cvs walgreens,abortion pill cvs,4,4,google,2026-03-12 19:49:17.216024,abortion pill cost cvs,abortion pill cost cvs florida,walgreens,walgreens +abortion,"('cost of abortion pill in california', 'cost of abortion pill in ca')",cost of abortion pill in california,cost of abortion pill in ca,1,4,google,2026-03-12 19:49:18.648658,abortion pill cost cvs,abortion pill cost cvs california,of in,ca +abortion,"('abortion pill texas cvs', 'abortion pill cost cvs texas')",abortion pill texas cvs,abortion pill cost cvs texas,1,4,google,2026-03-12 19:49:20.006774,abortion pill cost cvs,abortion pill cost cvs texas,texas,cost +abortion,"('abortion pill texas cvs', 'abortion pill cvs walgreens')",abortion pill texas cvs,abortion pill cvs walgreens,2,4,google,2026-03-12 19:49:20.006774,abortion pill cost cvs,abortion pill cost cvs texas,texas,walgreens +abortion,"('abortion pill texas cvs', 'abortion pill cvs cost')",abortion pill texas cvs,abortion pill cvs cost,3,4,google,2026-03-12 19:49:20.006774,abortion pill cost cvs,abortion pill cost cvs texas,texas,cost +abortion,"('abortion pill texas cvs', 'abortion pill cvs')",abortion pill texas cvs,abortion pill cvs,4,4,google,2026-03-12 19:49:20.006774,abortion pill cost cvs,abortion pill cost cvs texas,texas,texas +abortion,"('abortion pill cost michigan', 'abortion pill cost mi')",abortion pill cost michigan,abortion pill cost mi,1,4,google,2026-03-12 19:49:21.484953,abortion pill cost cvs,abortion pill cost cvs michigan,michigan,mi +abortion,"('abortion pill cost michigan', 'abortion pill cost cvs michigan')",abortion pill cost michigan,abortion pill cost cvs michigan,2,4,google,2026-03-12 19:49:21.484953,abortion pill cost cvs,abortion pill cost cvs michigan,michigan,cvs +abortion,"('abortion pill cost michigan', 'how much is the abortion pill at planned parenthood in michigan')",abortion pill cost michigan,how much is the abortion pill at planned parenthood in michigan,3,4,google,2026-03-12 19:49:21.484953,abortion pill cost cvs,abortion pill cost cvs michigan,michigan,how much is the at planned parenthood in +abortion,"('can you buy misoprostol over the counter at walmart', 'cytotec over the counter walmart')",can you buy misoprostol over the counter at walmart,cytotec over the counter walmart,1,4,google,2026-03-12 19:49:22.393505,abortion pill cost cvs,abortion pill cost cvs over the counter,can you buy misoprostol at walmart,cytotec +abortion,"('day after pill cvs cost', 'morning after pill cvs cost')",day after pill cvs cost,morning after pill cvs cost,1,4,google,2026-03-12 19:49:23.409024,abortion pill cost cvs,morning after pill cost cvs,day,morning +abortion,"('day after pill cvs cost', 'how much is the day after pill at cvs')",day after pill cvs cost,how much is the day after pill at cvs,2,4,google,2026-03-12 19:49:23.409024,abortion pill cost cvs,morning after pill cost cvs,day,how much is the at +abortion,"('day after pill cvs cost', 'how much is the morning after pill at cvs')",day after pill cvs cost,how much is the morning after pill at cvs,3,4,google,2026-03-12 19:49:23.409024,abortion pill cost cvs,morning after pill cost cvs,day,how much is the morning at +abortion,"('day after pill cvs cost', 'day after pill cvs')",day after pill cvs cost,day after pill cvs,4,4,google,2026-03-12 19:49:23.409024,abortion pill cost cvs,morning after pill cost cvs,day,day +abortion,"('day after pill cvs cost', 'day after pill cost')",day after pill cvs cost,day after pill cost,5,4,google,2026-03-12 19:49:23.409024,abortion pill cost cvs,morning after pill cost cvs,day,day +abortion,"('day after pill cvs cost', 'day after pill costco')",day after pill cvs cost,day after pill costco,6,4,google,2026-03-12 19:49:23.409024,abortion pill cost cvs,morning after pill cost cvs,day,costco +abortion,"('how much is the morning after pill at cvs', 'how much is the morning after pill at cvs pharmacy')",how much is the morning after pill at cvs,how much is the morning after pill at cvs pharmacy,1,4,google,2026-03-12 19:49:24.372632,abortion pill cost cvs,morning after pill cost cvs,how much is the at,pharmacy +abortion,"('how much is the morning after pill at cvs', 'how much is the morning after pill at walgreens')",how much is the morning after pill at cvs,how much is the morning after pill at walgreens,2,4,google,2026-03-12 19:49:24.372632,abortion pill cost cvs,morning after pill cost cvs,how much is the at,walgreens +abortion,"('how much is the morning after pill at cvs', 'does cvs sell morning after pill')",how much is the morning after pill at cvs,does cvs sell morning after pill,3,4,google,2026-03-12 19:49:24.372632,abortion pill cost cvs,morning after pill cost cvs,how much is the at,does sell +abortion,"('how much is the morning after pill at cvs', 'how much is the day after pill at cvs')",how much is the morning after pill at cvs,how much is the day after pill at cvs,4,4,google,2026-03-12 19:49:24.372632,abortion pill cost cvs,morning after pill cost cvs,how much is the at,day +abortion,"('how much is the morning after pill at cvs', 'how much does the morning after pill cost at cvs')",how much is the morning after pill at cvs,how much does the morning after pill cost at cvs,5,4,google,2026-03-12 19:49:24.372632,abortion pill cost cvs,morning after pill cost cvs,how much is the at,does cost +abortion,"('how much is the morning after pill at cvs', 'how much is the morning after pill at walmart')",how much is the morning after pill at cvs,how much is the morning after pill at walmart,6,4,google,2026-03-12 19:49:24.372632,abortion pill cost cvs,morning after pill cost cvs,how much is the at,walmart +abortion,"('does cvs sell morning after pill', 'does cvs sell day after pill')",does cvs sell morning after pill,does cvs sell day after pill,1,4,google,2026-03-12 19:49:25.276409,abortion pill cost cvs,morning after pill cost cvs,does sell,day +abortion,"('does cvs sell morning after pill', 'cvs sell morning after pill')",does cvs sell morning after pill,cvs sell morning after pill,2,4,google,2026-03-12 19:49:25.276409,abortion pill cost cvs,morning after pill cost cvs,does sell,does sell +abortion,"('does cvs sell morning after pill', 'does cvs sell plan b pills')",does cvs sell morning after pill,does cvs sell plan b pills,3,4,google,2026-03-12 19:49:25.276409,abortion pill cost cvs,morning after pill cost cvs,does sell,plan b pills +abortion,"('does cvs sell morning after pill', 'does walgreens sell morning after pill')",does cvs sell morning after pill,does walgreens sell morning after pill,4,4,google,2026-03-12 19:49:25.276409,abortion pill cost cvs,morning after pill cost cvs,does sell,walgreens +abortion,"('does cvs sell morning after pill', 'does cvs have morning after pill')",does cvs sell morning after pill,does cvs have morning after pill,5,4,google,2026-03-12 19:49:25.276409,abortion pill cost cvs,morning after pill cost cvs,does sell,have +abortion,"('does cvs sell morning after pill', 'cvs morning after pill price')",does cvs sell morning after pill,cvs morning after pill price,6,4,google,2026-03-12 19:49:25.276409,abortion pill cost cvs,morning after pill cost cvs,does sell,price +abortion,"('morning after pill cvs coupon', 'morning after pill coupon cvs')",morning after pill cvs coupon,morning after pill coupon cvs,1,4,google,2026-03-12 19:49:26.589344,abortion pill cost cvs,morning after pill cost cvs,coupon,coupon +abortion,"('morning after pill cvs coupon', 'does cvs sell morning after pill')",morning after pill cvs coupon,does cvs sell morning after pill,2,4,google,2026-03-12 19:49:26.589344,abortion pill cost cvs,morning after pill cost cvs,coupon,does sell +abortion,"('morning after pill cvs coupon', 'morning after pill cvs free')",morning after pill cvs coupon,morning after pill cvs free,3,4,google,2026-03-12 19:49:26.589344,abortion pill cost cvs,morning after pill cost cvs,coupon,free +abortion,"('morning after pill cvs coupon', 'morning after pill cvs cost')",morning after pill cvs coupon,morning after pill cvs cost,4,4,google,2026-03-12 19:49:26.589344,abortion pill cost cvs,morning after pill cost cvs,coupon,cost +abortion,"('morning after pill cvs coupon', 'morning after pill cvs price')",morning after pill cvs coupon,morning after pill cvs price,5,4,google,2026-03-12 19:49:26.589344,abortion pill cost cvs,morning after pill cost cvs,coupon,price +abortion,"('how much does an abortion cost at planned parenthood california', 'how much does an abortion cost at planned parenthood in ca')",how much does an abortion cost at planned parenthood california,how much does an abortion cost at planned parenthood in ca,1,4,google,2026-03-12 19:49:28.046858,abortion pill cost california,abortion clinic california cost,how much does an at planned parenthood,in ca +abortion,"('how much does an abortion cost at planned parenthood california', 'how much does an abortion cost at planned parenthood in ca with insurance')",how much does an abortion cost at planned parenthood california,how much does an abortion cost at planned parenthood in ca with insurance,2,4,google,2026-03-12 19:49:28.046858,abortion pill cost california,abortion clinic california cost,how much does an at planned parenthood,in ca with insurance +abortion,"('how much does an abortion cost at planned parenthood california', 'how much is an abortion at planned parenthood california reddit')",how much does an abortion cost at planned parenthood california,how much is an abortion at planned parenthood california reddit,3,4,google,2026-03-12 19:49:28.046858,abortion pill cost california,abortion clinic california cost,how much does an at planned parenthood,is reddit +abortion,"('how much does an abortion cost at planned parenthood california', 'how much is an abortion at planned parenthood without insurance california')",how much does an abortion cost at planned parenthood california,how much is an abortion at planned parenthood without insurance california,4,4,google,2026-03-12 19:49:28.046858,abortion pill cost california,abortion clinic california cost,how much does an at planned parenthood,is without insurance +abortion,"('california abortion clinic free', 'how much does an abortion cost at planned parenthood california')",california abortion clinic free,how much does an abortion cost at planned parenthood california,1,4,google,2026-03-12 19:49:28.944084,abortion pill cost california,abortion clinic california cost,free,how much does an cost at planned parenthood +abortion,"('california abortion clinic free', 'free abortion clinics near me')",california abortion clinic free,free abortion clinics near me,2,4,google,2026-03-12 19:49:28.944084,abortion pill cost california,abortion clinic california cost,free,clinics near me +abortion,"('california abortion clinic free', 'california abortion free')",california abortion clinic free,california abortion free,3,4,google,2026-03-12 19:49:28.944084,abortion pill cost california,abortion clinic california cost,free,free +abortion,"('california abortion clinic free', 'california abortion clinics')",california abortion clinic free,california abortion clinics,4,4,google,2026-03-12 19:49:28.944084,abortion pill cost california,abortion clinic california cost,free,clinics +abortion,"('does kaiser cover abortions in california', 'does kaiser cover abortions')",does kaiser cover abortions in california,does kaiser cover abortions,1,4,google,2026-03-12 19:49:30.161292,abortion pill cost california,kaiser abortion pill cost california,does cover abortions in,does cover abortions in +abortion,"('does kaiser cover abortions in california', 'does kaiser cover abortions at planned parenthood')",does kaiser cover abortions in california,does kaiser cover abortions at planned parenthood,2,4,google,2026-03-12 19:49:30.161292,abortion pill cost california,kaiser abortion pill cost california,does cover abortions in,at planned parenthood +abortion,"('does kaiser cover abortions in california', 'does kaiser cover abortion cost')",does kaiser cover abortions in california,does kaiser cover abortion cost,3,4,google,2026-03-12 19:49:30.161292,abortion pill cost california,kaiser abortion pill cost california,does cover abortions in,abortion cost +abortion,"('does kaiser cover abortions in california', 'does kaiser insurance cover abortions')",does kaiser cover abortions in california,does kaiser insurance cover abortions,4,4,google,2026-03-12 19:49:30.161292,abortion pill cost california,kaiser abortion pill cost california,does cover abortions in,insurance +abortion,"('how much is an abortion at kaiser', 'how much is an abortion at kaiser permanente')",how much is an abortion at kaiser,how much is an abortion at kaiser permanente,1,4,google,2026-03-12 19:49:31.126132,abortion pill cost california,kaiser abortion pill cost california,how much is an at,permanente +abortion,"('how much is an abortion at kaiser', 'how much is an abortion at kaiser without insurance')",how much is an abortion at kaiser,how much is an abortion at kaiser without insurance,2,4,google,2026-03-12 19:49:31.126132,abortion pill cost california,kaiser abortion pill cost california,how much is an at,without insurance +abortion,"('how much is an abortion at kaiser', 'how much is an abortion at kaiser with insurance')",how much is an abortion at kaiser,how much is an abortion at kaiser with insurance,3,4,google,2026-03-12 19:49:31.126132,abortion pill cost california,kaiser abortion pill cost california,how much is an at,with insurance +abortion,"('how much is an abortion at kaiser', 'how much is an abortion pill at kaiser')",how much is an abortion at kaiser,how much is an abortion pill at kaiser,4,4,google,2026-03-12 19:49:31.126132,abortion pill cost california,kaiser abortion pill cost california,how much is an at,pill +abortion,"('how much is an abortion at kaiser', 'how much is an abortion pill at kaiser with insurance')",how much is an abortion at kaiser,how much is an abortion pill at kaiser with insurance,5,4,google,2026-03-12 19:49:31.126132,abortion pill cost california,kaiser abortion pill cost california,how much is an at,pill with insurance +abortion,"('how much is an abortion at kaiser', 'how much is an abortion pill kaiser permanente')",how much is an abortion at kaiser,how much is an abortion pill kaiser permanente,6,4,google,2026-03-12 19:49:31.126132,abortion pill cost california,kaiser abortion pill cost california,how much is an at,pill permanente +abortion,"('how much is an abortion at kaiser', 'how to get an abortion at kaiser')",how much is an abortion at kaiser,how to get an abortion at kaiser,7,4,google,2026-03-12 19:49:31.126132,abortion pill cost california,kaiser abortion pill cost california,how much is an at,to get +abortion,"('how much is an abortion at kaiser', 'how much is an abortion at planned parenthood with kaiser insurance')",how much is an abortion at kaiser,how much is an abortion at planned parenthood with kaiser insurance,8,4,google,2026-03-12 19:49:31.126132,abortion pill cost california,kaiser abortion pill cost california,how much is an at,planned parenthood with insurance +abortion,"('how much is an abortion at kaiser', 'how much does an abortion cost kaiser in california')",how much is an abortion at kaiser,how much does an abortion cost kaiser in california,9,4,google,2026-03-12 19:49:31.126132,abortion pill cost california,kaiser abortion pill cost california,how much is an at,does cost in california +abortion,"('kaiser abortion pill cost', 'kaiser abortion pill cost in india')",kaiser abortion pill cost,kaiser abortion pill cost in india,1,4,google,2026-03-12 19:49:31.939351,abortion pill cost california,kaiser abortion pill cost california,kaiser,in india +abortion,"('kaiser abortion pill cost', 'kaiser abortion pill cost philippines')",kaiser abortion pill cost,kaiser abortion pill cost philippines,2,4,google,2026-03-12 19:49:31.939351,abortion pill cost california,kaiser abortion pill cost california,kaiser,philippines +abortion,"('kaiser abortion pill cost', 'kaiser abortion pill cost california')",kaiser abortion pill cost,kaiser abortion pill cost california,3,4,google,2026-03-12 19:49:31.939351,abortion pill cost california,kaiser abortion pill cost california,kaiser,california +abortion,"('kaiser abortion pill cost', 'kaiser permanente abortion pill cost')",kaiser abortion pill cost,kaiser permanente abortion pill cost,4,4,google,2026-03-12 19:49:31.939351,abortion pill cost california,kaiser abortion pill cost california,kaiser,permanente +abortion,"('kaiser abortion pill cost', 'abortion pill cost with kaiser insurance')",kaiser abortion pill cost,abortion pill cost with kaiser insurance,5,4,google,2026-03-12 19:49:31.939351,abortion pill cost california,kaiser abortion pill cost california,kaiser,with insurance +abortion,"('kaiser abortion pill cost', 'how much does an abortion cost kaiser')",kaiser abortion pill cost,how much does an abortion cost kaiser,6,4,google,2026-03-12 19:49:31.939351,abortion pill cost california,kaiser abortion pill cost california,kaiser,how much does an +abortion,"('kaiser abortion pill cost', 'kaiser abortion pills')",kaiser abortion pill cost,kaiser abortion pills,7,4,google,2026-03-12 19:49:31.939351,abortion pill cost california,kaiser abortion pill cost california,kaiser,pills +abortion,"('kaiser abortion pill cost', 'kaiser abortion copay')",kaiser abortion pill cost,kaiser abortion copay,8,4,google,2026-03-12 19:49:31.939351,abortion pill cost california,kaiser abortion pill cost california,kaiser,copay +abortion,"('kaiser abortion copay', 'does kaiser cover abortions')",kaiser abortion copay,does kaiser cover abortions,1,4,google,2026-03-12 19:49:32.906642,abortion pill cost california,kaiser abortion pill cost california,copay,does cover abortions +abortion,"('kaiser abortion copay', 'does kaiser cover abortions at planned parenthood')",kaiser abortion copay,does kaiser cover abortions at planned parenthood,2,4,google,2026-03-12 19:49:32.906642,abortion pill cost california,kaiser abortion pill cost california,copay,does cover abortions at planned parenthood +abortion,"('kaiser abortion copay', 'does kaiser cover abortions in california')",kaiser abortion copay,does kaiser cover abortions in california,3,4,google,2026-03-12 19:49:32.906642,abortion pill cost california,kaiser abortion pill cost california,copay,does cover abortions in california +abortion,"('kaiser abortion copay', 'does kaiser cover planned parenthood')",kaiser abortion copay,does kaiser cover planned parenthood,4,4,google,2026-03-12 19:49:32.906642,abortion pill cost california,kaiser abortion pill cost california,copay,does cover planned parenthood +abortion,"('kaiser abortion copay', 'kaiser abortion coverage')",kaiser abortion copay,kaiser abortion coverage,5,4,google,2026-03-12 19:49:32.906642,abortion pill cost california,kaiser abortion pill cost california,copay,coverage +abortion,"('kaiser abortion copay', 'kaiser abortion care')",kaiser abortion copay,kaiser abortion care,6,4,google,2026-03-12 19:49:32.906642,abortion pill cost california,kaiser abortion pill cost california,copay,care +abortion,"('kaiser abortion copay', 'kaiser abortion pill cost')",kaiser abortion copay,kaiser abortion pill cost,7,4,google,2026-03-12 19:49:32.906642,abortion pill cost california,kaiser abortion pill cost california,copay,pill cost +abortion,"('kaiser abortion pills', 'kaiser abortion pill cost')",kaiser abortion pills,kaiser abortion pill cost,1,4,google,2026-03-12 19:49:33.998598,abortion pill cost california,kaiser abortion pill cost california,pills,pill cost +abortion,"('kaiser abortion pills', 'kaiser abortion pill cost in india')",kaiser abortion pills,kaiser abortion pill cost in india,2,4,google,2026-03-12 19:49:33.998598,abortion pill cost california,kaiser abortion pill cost california,pills,pill cost in india +abortion,"('kaiser abortion pills', 'kaiser abortion pill appointment')",kaiser abortion pills,kaiser abortion pill appointment,3,4,google,2026-03-12 19:49:33.998598,abortion pill cost california,kaiser abortion pill cost california,pills,pill appointment +abortion,"('kaiser abortion pills', 'kaiser abortion pill process')",kaiser abortion pills,kaiser abortion pill process,4,4,google,2026-03-12 19:49:33.998598,abortion pill cost california,kaiser abortion pill cost california,pills,pill process +abortion,"('kaiser abortion pills', 'kaiser abortion pill cost philippines')",kaiser abortion pills,kaiser abortion pill cost philippines,5,4,google,2026-03-12 19:49:33.998598,abortion pill cost california,kaiser abortion pill cost california,pills,pill cost philippines +abortion,"('kaiser abortion pills', 'kaiser abortion pill cost california')",kaiser abortion pills,kaiser abortion pill cost california,6,4,google,2026-03-12 19:49:33.998598,abortion pill cost california,kaiser abortion pill cost california,pills,pill cost california +abortion,"('kaiser abortion pills', 'kaiser abortion medication')",kaiser abortion pills,kaiser abortion medication,7,4,google,2026-03-12 19:49:33.998598,abortion pill cost california,kaiser abortion pill cost california,pills,medication +abortion,"('kaiser abortion pills', 'kaiser permanente abortion pills')",kaiser abortion pills,kaiser permanente abortion pills,8,4,google,2026-03-12 19:49:33.998598,abortion pill cost california,kaiser abortion pill cost california,pills,permanente +abortion,"('kaiser abortion pills', 'does kaiser offer abortion pills')",kaiser abortion pills,does kaiser offer abortion pills,9,4,google,2026-03-12 19:49:33.998598,abortion pill cost california,kaiser abortion pill cost california,pills,does offer +abortion,"('jane abortion pill', 'jane abortion pills')",jane abortion pill,jane abortion pills,1,4,google,2026-03-12 19:49:35.248513,abortion pill cost california,hey jane abortion pill cost california,hey jane,pills +abortion,"('jane abortion pill', 'jane abortion clinic')",jane abortion pill,jane abortion clinic,2,4,google,2026-03-12 19:49:35.248513,abortion pill cost california,hey jane abortion pill cost california,hey jane,clinic +abortion,"('jane abortion pill', 'hey jane abortion pill')",jane abortion pill,hey jane abortion pill,3,4,google,2026-03-12 19:49:35.248513,abortion pill cost california,hey jane abortion pill cost california,hey jane,hey +abortion,"('jane abortion pill', 'hey jane abortion pill cost')",jane abortion pill,hey jane abortion pill cost,4,4,google,2026-03-12 19:49:35.248513,abortion pill cost california,hey jane abortion pill cost california,hey jane,hey cost +abortion,"('jane abortion pill', 'hey jane abortion pill reviews')",jane abortion pill,hey jane abortion pill reviews,5,4,google,2026-03-12 19:49:35.248513,abortion pill cost california,hey jane abortion pill cost california,hey jane,hey reviews +abortion,"('jane abortion pill', 'hey jane abortion pill instructions')",jane abortion pill,hey jane abortion pill instructions,6,4,google,2026-03-12 19:49:35.248513,abortion pill cost california,hey jane abortion pill cost california,hey jane,hey instructions +abortion,"('jane abortion pill', 'hey jane abortion pill side effects')",jane abortion pill,hey jane abortion pill side effects,7,4,google,2026-03-12 19:49:35.248513,abortion pill cost california,hey jane abortion pill cost california,hey jane,hey side effects +abortion,"('jane abortion pill', 'mary jane abortion pill')",jane abortion pill,mary jane abortion pill,8,4,google,2026-03-12 19:49:35.248513,abortion pill cost california,hey jane abortion pill cost california,hey jane,mary +abortion,"('jane abortion pill', 'my jane abortion pill')",jane abortion pill,my jane abortion pill,9,4,google,2026-03-12 19:49:35.248513,abortion pill cost california,hey jane abortion pill cost california,hey jane,my +abortion,"('jane abortion pill', 'hello jane abortion pill')",jane abortion pill,hello jane abortion pill,10,4,google,2026-03-12 19:49:35.248513,abortion pill cost california,hey jane abortion pill cost california,hey jane,hello +abortion,"('abortion pills name and price online in india', 'abortion pills online amazon india')",abortion pills name and price online in india,abortion pills online amazon india,1,4,google,2026-03-12 19:49:36.438073,abortion pill cost online,abortion pill low cost online,pills name and price in india,amazon +abortion,"('abortion pill name and price online', 'abortion pills name and price online in india')",abortion pill name and price online,abortion pills name and price online in india,1,4,google,2026-03-12 19:49:37.781757,abortion pill cost online,abortion pill low cost online,name and price,pills in india +abortion,"('abortion pill name and price online', 'abortion pill name and image')",abortion pill name and price online,abortion pill name and image,2,4,google,2026-03-12 19:49:37.781757,abortion pill cost online,abortion pill low cost online,name and price,image +abortion,"('abortion pill name and price online', 'abortion pill nc online')",abortion pill name and price online,abortion pill nc online,3,4,google,2026-03-12 19:49:37.781757,abortion pill cost online,abortion pill low cost online,name and price,nc +abortion,"('abortion pill cost south dakota', 'abortion pill cost south dakota 2024')",abortion pill cost south dakota,abortion pill cost south dakota 2024,1,4,google,2026-03-12 19:49:38.785418,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,dakota,2024 +abortion,"('abortion pill cost south dakota', 'abortion pill cost south dakota 2023')",abortion pill cost south dakota,abortion pill cost south dakota 2023,2,4,google,2026-03-12 19:49:38.785418,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,dakota,2023 +abortion,"('abortion pill cost south dakota', 'abortion pill cost south dakota state')",abortion pill cost south dakota,abortion pill cost south dakota state,3,4,google,2026-03-12 19:49:38.785418,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,dakota,state +abortion,"('abortion pill cost south dakota', 'abortion pill cost south dakota medical')",abortion pill cost south dakota,abortion pill cost south dakota medical,4,4,google,2026-03-12 19:49:38.785418,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,dakota,medical +abortion,"('abortion pill cost south carolina', 'abortion pill cost sc')",abortion pill cost south carolina,abortion pill cost sc,1,4,google,2026-03-12 19:49:39.948956,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,carolina,sc +abortion,"('abortion pill cost south carolina', 'abortion pill south carolina')",abortion pill cost south carolina,abortion pill south carolina,2,4,google,2026-03-12 19:49:39.948956,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,carolina,carolina +abortion,"('abortion pill pharmacies', 'morning after pill pharmacies near me')",abortion pill pharmacies,morning after pill pharmacies near me,1,4,google,2026-03-12 19:49:41.229080,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,pharmacies,morning after near me +abortion,"('abortion pill pharmacies', 'morning after pill pharmacies malta')",abortion pill pharmacies,morning after pill pharmacies malta,2,4,google,2026-03-12 19:49:41.229080,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,pharmacies,morning after malta +abortion,"('abortion pill pharmacies', 'abortion pill pharmacist')",abortion pill pharmacies,abortion pill pharmacist,3,4,google,2026-03-12 19:49:41.229080,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,pharmacies,pharmacist +abortion,"('abortion pill pharmacies', 'abortion pill pharmacy uk')",abortion pill pharmacies,abortion pill pharmacy uk,4,4,google,2026-03-12 19:49:41.229080,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,pharmacies,pharmacy uk +abortion,"('abortion pill pharmacies', 'abortion pill pharmacy price')",abortion pill pharmacies,abortion pill pharmacy price,5,4,google,2026-03-12 19:49:41.229080,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,pharmacies,pharmacy price +abortion,"('abortion pill pharmacies', 'abortion pill pharmacy pick up')",abortion pill pharmacies,abortion pill pharmacy pick up,6,4,google,2026-03-12 19:49:41.229080,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,pharmacies,pharmacy pick up +abortion,"('abortion pill pharmacies', 'abortion pill chemist price')",abortion pill pharmacies,abortion pill chemist price,7,4,google,2026-03-12 19:49:41.229080,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,pharmacies,chemist price +abortion,"('abortion pill pharmacies', 'abortion pill chemist australia')",abortion pill pharmacies,abortion pill chemist australia,8,4,google,2026-03-12 19:49:41.229080,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,pharmacies,chemist australia +abortion,"('abortion pill pharmacies', 'abortion pill pharmacist in malaysia')",abortion pill pharmacies,abortion pill pharmacist in malaysia,9,4,google,2026-03-12 19:49:41.229080,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,pharmacies,pharmacist in malaysia +abortion,"('abortion pill cost sc', 'abortion pill cost scotland')",abortion pill cost sc,abortion pill cost scotland,1,4,google,2026-03-12 19:49:42.316869,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,sc,scotland +abortion,"('abortion pill cost sc', 'morning after pill cost scotland')",abortion pill cost sc,morning after pill cost scotland,2,4,google,2026-03-12 19:49:42.316869,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,sc,morning after scotland +abortion,"('abortion pill cost sc', 'abortion pill cost nova scotia')",abortion pill cost sc,abortion pill cost nova scotia,3,4,google,2026-03-12 19:49:42.316869,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,sc,nova scotia +abortion,"('abortion pill cost sc', 'dog abortion pill cost')",abortion pill cost sc,dog abortion pill cost,4,4,google,2026-03-12 19:49:42.316869,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,sc,dog +abortion,"('abortion pill cost sc', 'abortion pill cost south carolina')",abortion pill cost sc,abortion pill cost south carolina,5,4,google,2026-03-12 19:49:42.316869,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,sc,south carolina +abortion,"('abortion pill cost sc', 'abortion pill cost kaiser')",abortion pill cost sc,abortion pill cost kaiser,6,4,google,2026-03-12 19:49:42.316869,abortion pill cost pharmacy,abortion pill cost pharmacy south africa,sc,kaiser +abortion,"('how much is mifepristone in pharmacy in kenya', 'how much is mifepristone and misoprostol in pharmacy in kenya')",how much is mifepristone in pharmacy in kenya,how much is mifepristone and misoprostol in pharmacy in kenya,1,4,google,2026-03-12 19:49:43.251984,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,and misoprostol +abortion,"('how much is mifepristone in pharmacy in kenya', 'how much is mifepristone in pharmacy')",how much is mifepristone in pharmacy in kenya,how much is mifepristone in pharmacy,2,4,google,2026-03-12 19:49:43.251984,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,how much is mifepristone +abortion,"('how much is mifepristone in pharmacy in kenya', 'how much is mifepristone in lagos')",how much is mifepristone in pharmacy in kenya,how much is mifepristone in lagos,3,4,google,2026-03-12 19:49:43.251984,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,lagos +abortion,"('how much is mifepristone in pharmacy in kenya', 'what is the price of mifepristone in nigeria')",how much is mifepristone in pharmacy in kenya,what is the price of mifepristone in nigeria,4,4,google,2026-03-12 19:49:43.251984,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,what the price of nigeria +abortion,"('how much is mifepristone in pharmacy in kenya', 'how much is mifepristone in kenya shillings')",how much is mifepristone in pharmacy in kenya,how much is mifepristone in kenya shillings,5,4,google,2026-03-12 19:49:43.251984,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,shillings +abortion,"('how much is mifepristone in pharmacy in kenya', 'how much is mifepristone and misoprostol in naira')",how much is mifepristone in pharmacy in kenya,how much is mifepristone and misoprostol in naira,6,4,google,2026-03-12 19:49:43.251984,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,and misoprostol naira +abortion,"('how much is mifepristone in pharmacy in kenya', 'mifepristone in pharmacies')",how much is mifepristone in pharmacy in kenya,mifepristone in pharmacies,7,4,google,2026-03-12 19:49:43.251984,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,pharmacies +abortion,"('how much is mifepristone in pharmacy in kenya', 'how much is mifepristone in kenya')",how much is mifepristone in pharmacy in kenya,how much is mifepristone in kenya,8,4,google,2026-03-12 19:49:43.251984,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,how much is mifepristone +abortion,"('abortion pill kentucky cost', 'abortion pill cost kentucky')",abortion pill kentucky cost,abortion pill cost kentucky,1,4,google,2026-03-12 19:49:44.107186,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,kentucky,kentucky +abortion,"('abortion pill kentucky cost', 'abortion pill kentucky')",abortion pill kentucky cost,abortion pill kentucky,2,4,google,2026-03-12 19:49:44.107186,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,kentucky,kentucky +abortion,"('how much is mifepristone in pharmacy', 'how much is mifepristone in pharmacy in ghana')",how much is mifepristone in pharmacy,how much is mifepristone in pharmacy in ghana,1,4,google,2026-03-12 19:49:44.974660,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,ghana +abortion,"('how much is mifepristone in pharmacy', 'how much is mifepristone in pharmacy in zambia')",how much is mifepristone in pharmacy,how much is mifepristone in pharmacy in zambia,2,4,google,2026-03-12 19:49:44.974660,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,zambia +abortion,"('how much is mifepristone in pharmacy', 'how much is mifepristone in pharmacy in philippines')",how much is mifepristone in pharmacy,how much is mifepristone in pharmacy in philippines,3,4,google,2026-03-12 19:49:44.974660,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,philippines +abortion,"('how much is mifepristone in pharmacy', 'how much is mifepristone in pharmacy in kenya')",how much is mifepristone in pharmacy,how much is mifepristone in pharmacy in kenya,4,4,google,2026-03-12 19:49:44.974660,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,kenya +abortion,"('how much is mifepristone in pharmacy', 'how much is mifepristone in pharmacy in uganda')",how much is mifepristone in pharmacy,how much is mifepristone in pharmacy in uganda,5,4,google,2026-03-12 19:49:44.974660,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,uganda +abortion,"('how much is mifepristone in pharmacy', 'how much is mifepristone in pharmacy in nigeria')",how much is mifepristone in pharmacy,how much is mifepristone in pharmacy in nigeria,6,4,google,2026-03-12 19:49:44.974660,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,nigeria +abortion,"('how much is mifepristone in pharmacy', 'how much is mifepristone in pharmacy in nigeria 2025')",how much is mifepristone in pharmacy,how much is mifepristone in pharmacy in nigeria 2025,7,4,google,2026-03-12 19:49:44.974660,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,nigeria 2025 +abortion,"('how much is mifepristone in pharmacy', 'how much is mifepristone in pharmacy in south africa')",how much is mifepristone in pharmacy,how much is mifepristone in pharmacy in south africa,8,4,google,2026-03-12 19:49:44.974660,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,south africa +abortion,"('how much is mifepristone in pharmacy', 'how much is the cost of mifepristone and misoprostol')",how much is mifepristone in pharmacy,how much is the cost of mifepristone and misoprostol,9,4,google,2026-03-12 19:49:44.974660,abortion pill cost pharmacy,abortion pill cost pharmacy in kenya,how much is mifepristone,the cost of and misoprostol +abortion,"('abortion pills price at pharmacy', 'abortion pills price at pharmacy in nepal')",abortion pills price at pharmacy,abortion pills price at pharmacy in nepal,1,4,google,2026-03-12 19:49:47.938816,abortion pill cost pharmacy,abortion pill cost pharmacy malaysia,pills price at,in nepal +abortion,"('abortion pills price at pharmacy', 'abortion pill name and price at pharmacy')",abortion pills price at pharmacy,abortion pill name and price at pharmacy,2,4,google,2026-03-12 19:49:47.938816,abortion pill cost pharmacy,abortion pill cost pharmacy malaysia,pills price at,pill name and +abortion,"('abortion pills price at pharmacy', 'abortion pills at pharmacy price sa')",abortion pills price at pharmacy,abortion pills at pharmacy price sa,3,4,google,2026-03-12 19:49:47.938816,abortion pill cost pharmacy,abortion pill cost pharmacy malaysia,pills price at,sa +abortion,"('abortion pills price at pharmacy', 'abortion pills at pharmacy price near me')",abortion pills price at pharmacy,abortion pills at pharmacy price near me,4,4,google,2026-03-12 19:49:47.938816,abortion pill cost pharmacy,abortion pill cost pharmacy malaysia,pills price at,near me +abortion,"('abortion pill price massachusetts', 'abortion pill cost massachusetts')",abortion pill price massachusetts,abortion pill cost massachusetts,1,4,google,2026-03-12 19:49:48.762866,abortion pill cost pharmacy,abortion pill cost pharmacy malaysia,price massachusetts,cost +abortion,"('abortion pill price massachusetts', 'abortion pill in massachusetts')",abortion pill price massachusetts,abortion pill in massachusetts,2,4,google,2026-03-12 19:49:48.762866,abortion pill cost pharmacy,abortion pill cost pharmacy malaysia,price massachusetts,in +abortion,"('abortion pill malaysia pharmacy', 'abortion pill cost pharmacy malaysia')",abortion pill malaysia pharmacy,abortion pill cost pharmacy malaysia,1,4,google,2026-03-12 19:49:49.793044,abortion pill cost pharmacy,abortion pill cost pharmacy malaysia near me,malaysia near me,cost +abortion,"('abortion pill malaysia pharmacy', 'abortion pill cost pharmacy malaysia near me')",abortion pill malaysia pharmacy,abortion pill cost pharmacy malaysia near me,2,4,google,2026-03-12 19:49:49.793044,abortion pill cost pharmacy,abortion pill cost pharmacy malaysia near me,malaysia near me,cost near me +abortion,"('abortion pill malaysia pharmacy', 'is abortion pill legal in malaysia')",abortion pill malaysia pharmacy,is abortion pill legal in malaysia,3,4,google,2026-03-12 19:49:49.793044,abortion pill cost pharmacy,abortion pill cost pharmacy malaysia near me,malaysia near me,is legal in +abortion,"('abortion pill malaysia pharmacy', 'abortion pill pharmacies')",abortion pill malaysia pharmacy,abortion pill pharmacies,4,4,google,2026-03-12 19:49:49.793044,abortion pill cost pharmacy,abortion pill cost pharmacy malaysia near me,malaysia near me,pharmacies +abortion,"('abortion pill malaysia pharmacy', 'abortion pill mail pa')",abortion pill malaysia pharmacy,abortion pill mail pa,5,4,google,2026-03-12 19:49:49.793044,abortion pill cost pharmacy,abortion pill cost pharmacy malaysia near me,malaysia near me,mail pa +abortion,"('abortion clinic north carolina cost', 'are abortions free in nc')",abortion clinic north carolina cost,are abortions free in nc,1,4,google,2026-03-12 19:49:50.942706,abortion pill cost north carolina,abortion pill nc cost,clinic north carolina,are abortions free in nc +abortion,"('abortion clinic north carolina cost', 'abortion clinic charlotte nc cost')",abortion clinic north carolina cost,abortion clinic charlotte nc cost,2,4,google,2026-03-12 19:49:50.942706,abortion pill cost north carolina,abortion pill nc cost,clinic north carolina,charlotte nc +abortion,"('abortion clinic north carolina cost', 'abortion clinic charlotte nc price')",abortion clinic north carolina cost,abortion clinic charlotte nc price,3,4,google,2026-03-12 19:49:50.942706,abortion pill cost north carolina,abortion pill nc cost,clinic north carolina,charlotte nc price +abortion,"('abortion clinic north carolina cost', 'abortion clinic north carolina')",abortion clinic north carolina cost,abortion clinic north carolina,4,4,google,2026-03-12 19:49:50.942706,abortion pill cost north carolina,abortion pill nc cost,clinic north carolina,clinic north carolina +abortion,"('abortion clinic north carolina cost', 'abortion clinic raleigh nc cost')",abortion clinic north carolina cost,abortion clinic raleigh nc cost,5,4,google,2026-03-12 19:49:50.942706,abortion pill cost north carolina,abortion pill nc cost,clinic north carolina,raleigh nc +abortion,"('abortion pill charlotte nc cost', 'abortion clinic charlotte nc cost')",abortion pill charlotte nc cost,abortion clinic charlotte nc cost,1,4,google,2026-03-12 19:49:52.250414,abortion pill cost north carolina,abortion pill nc cost,charlotte,clinic +abortion,"('abortion pill charlotte nc cost', 'abortion pill nc cost')",abortion pill charlotte nc cost,abortion pill nc cost,2,4,google,2026-03-12 19:49:52.250414,abortion pill cost north carolina,abortion pill nc cost,charlotte,charlotte +abortion,"('abortion pill charlotte nc cost', 'abortion pill charlotte')",abortion pill charlotte nc cost,abortion pill charlotte,3,4,google,2026-03-12 19:49:52.250414,abortion pill cost north carolina,abortion pill nc cost,charlotte,charlotte +abortion,"('abortion pill charlotte nc cost', 'abortion pill charlotte nc')",abortion pill charlotte nc cost,abortion pill charlotte nc,4,4,google,2026-03-12 19:49:52.250414,abortion pill cost north carolina,abortion pill nc cost,charlotte,charlotte +abortion,"('abortion pill charlotte nc cost', 'abortion pill cost north carolina')",abortion pill charlotte nc cost,abortion pill cost north carolina,5,4,google,2026-03-12 19:49:52.250414,abortion pill cost north carolina,abortion pill nc cost,charlotte,north carolina +abortion,"('abortion pill cost raleigh nc', 'abortion pill nc cost')",abortion pill cost raleigh nc,abortion pill nc cost,1,4,google,2026-03-12 19:49:53.583262,abortion pill cost north carolina,abortion pill nc cost,raleigh,raleigh +abortion,"('abortion pill cost raleigh nc', 'abortion pill raleigh nc')",abortion pill cost raleigh nc,abortion pill raleigh nc,2,4,google,2026-03-12 19:49:53.583262,abortion pill cost north carolina,abortion pill nc cost,raleigh,raleigh +abortion,"('abortion pill cost raleigh nc', 'abortion pill raleigh')",abortion pill cost raleigh nc,abortion pill raleigh,3,4,google,2026-03-12 19:49:53.583262,abortion pill cost north carolina,abortion pill nc cost,raleigh,raleigh +abortion,"('abortion pill cost raleigh nc', 'abortion pill cost in north carolina')",abortion pill cost raleigh nc,abortion pill cost in north carolina,4,4,google,2026-03-12 19:49:53.583262,abortion pill cost north carolina,abortion pill nc cost,raleigh,in north carolina +abortion,"('abortion pill nc', 'abortion pill nc cost')",abortion pill nc,abortion pill nc cost,1,4,google,2026-03-12 19:49:54.464686,abortion pill cost north carolina,abortion pill nc cost,nc,cost +abortion,"('abortion pill nc', 'abortion pill nc reddit')",abortion pill nc,abortion pill nc reddit,2,4,google,2026-03-12 19:49:54.464686,abortion pill cost north carolina,abortion pill nc cost,nc,reddit +abortion,"('abortion pill nc', 'abortion pills nc online')",abortion pill nc,abortion pills nc online,3,4,google,2026-03-12 19:49:54.464686,abortion pill cost north carolina,abortion pill nc cost,nc,pills online +abortion,"('abortion pill nc', 'abortion clinic nc')",abortion pill nc,abortion clinic nc,4,4,google,2026-03-12 19:49:54.464686,abortion pill cost north carolina,abortion pill nc cost,nc,clinic +abortion,"('abortion pill nc', 'abortion clinic nc charlotte')",abortion pill nc,abortion clinic nc charlotte,5,4,google,2026-03-12 19:49:54.464686,abortion pill cost north carolina,abortion pill nc cost,nc,clinic charlotte +abortion,"('abortion pill nc', 'abortion pill charlotte nc')",abortion pill nc,abortion pill charlotte nc,6,4,google,2026-03-12 19:49:54.464686,abortion pill cost north carolina,abortion pill nc cost,nc,charlotte +abortion,"('abortion pill nc', 'abortion pill raleigh nc')",abortion pill nc,abortion pill raleigh nc,7,4,google,2026-03-12 19:49:54.464686,abortion pill cost north carolina,abortion pill nc cost,nc,raleigh +abortion,"('abortion pill nc', 'abortion pill greensboro nc')",abortion pill nc,abortion pill greensboro nc,8,4,google,2026-03-12 19:49:54.464686,abortion pill cost north carolina,abortion pill nc cost,nc,greensboro +abortion,"('abortion pill nc', 'abortion pill fayetteville nc')",abortion pill nc,abortion pill fayetteville nc,9,4,google,2026-03-12 19:49:54.464686,abortion pill cost north carolina,abortion pill nc cost,nc,fayetteville +abortion,"('how much are abortion pills at planned parenthood with insurance', 'how much are abortion pills at planned parenthood without insurance')",how much are abortion pills at planned parenthood with insurance,how much are abortion pills at planned parenthood without insurance,1,4,google,2026-03-12 19:49:55.892614,abortion pill cost planned parenthood reddit,how much are abortions at planned parenthood with insurance,abortion pills,without +abortion,"('how much are abortions at planned parenthood without insurance', 'how much are abortion pills at planned parenthood without insurance')",how much are abortions at planned parenthood without insurance,how much are abortion pills at planned parenthood without insurance,1,4,google,2026-03-12 19:49:59.300018,abortion pill cost planned parenthood reddit,how much are abortions at planned parenthood with insurance,without,abortion pills +abortion,"('how much are abortions at planned parenthood without insurance', 'how much is an abortion at planned parenthood without insurance in california')",how much are abortions at planned parenthood without insurance,how much is an abortion at planned parenthood without insurance in california,2,4,google,2026-03-12 19:49:59.300018,abortion pill cost planned parenthood reddit,how much are abortions at planned parenthood with insurance,without,is an abortion in california +abortion,"('how much are abortions at planned parenthood without insurance', 'how much is an abortion at planned parenthood without insurance in florida')",how much are abortions at planned parenthood without insurance,how much is an abortion at planned parenthood without insurance in florida,3,4,google,2026-03-12 19:49:59.300018,abortion pill cost planned parenthood reddit,how much are abortions at planned parenthood with insurance,without,is an abortion in florida +abortion,"('how much are abortions at planned parenthood without insurance', 'how much is an abortion at planned parenthood without insurance in ny')",how much are abortions at planned parenthood without insurance,how much is an abortion at planned parenthood without insurance in ny,4,4,google,2026-03-12 19:49:59.300018,abortion pill cost planned parenthood reddit,how much are abortions at planned parenthood with insurance,without,is an abortion in ny +abortion,"('how much are abortions at planned parenthood without insurance', 'how much is an abortion at planned parenthood without insurance in nj')",how much are abortions at planned parenthood without insurance,how much is an abortion at planned parenthood without insurance in nj,5,4,google,2026-03-12 19:49:59.300018,abortion pill cost planned parenthood reddit,how much are abortions at planned parenthood with insurance,without,is an abortion in nj +abortion,"('how much are abortions at planned parenthood without insurance', 'how much is an abortion at planned parenthood without insurance reddit')",how much are abortions at planned parenthood without insurance,how much is an abortion at planned parenthood without insurance reddit,6,4,google,2026-03-12 19:49:59.300018,abortion pill cost planned parenthood reddit,how much are abortions at planned parenthood with insurance,without,is an abortion reddit +abortion,"('how much are abortions at planned parenthood without insurance', 'how much is an abortion at planned parenthood without insurance in ohio')",how much are abortions at planned parenthood without insurance,how much is an abortion at planned parenthood without insurance in ohio,7,4,google,2026-03-12 19:49:59.300018,abortion pill cost planned parenthood reddit,how much are abortions at planned parenthood with insurance,without,is an abortion in ohio +abortion,"('how much are abortions at planned parenthood without insurance', 'how much is an abortion at planned parenthood without insurance in illinois')",how much are abortions at planned parenthood without insurance,how much is an abortion at planned parenthood without insurance in illinois,8,4,google,2026-03-12 19:49:59.300018,abortion pill cost planned parenthood reddit,how much are abortions at planned parenthood with insurance,without,is an abortion in illinois +abortion,"('how much are abortions at planned parenthood without insurance', 'how much are abortions at planned parenthood with insurance')",how much are abortions at planned parenthood without insurance,how much are abortions at planned parenthood with insurance,9,4,google,2026-03-12 19:49:59.300018,abortion pill cost planned parenthood reddit,how much are abortions at planned parenthood with insurance,without,with +abortion,"('how much are abortion pills at planned parenthood without insurance', 'how much are abortion pills at planned parenthood with insurance')",how much are abortion pills at planned parenthood without insurance,how much are abortion pills at planned parenthood with insurance,1,4,google,2026-03-12 19:50:01.376131,abortion pill cost planned parenthood reddit,how much are abortions at planned parenthood with insurance,abortion pills without,with +abortion,"('how much are abortion pills at planned parenthood without insurance', 'how much is a medical abortion at planned parenthood without insurance')",how much are abortion pills at planned parenthood without insurance,how much is a medical abortion at planned parenthood without insurance,2,4,google,2026-03-12 19:50:01.376131,abortion pill cost planned parenthood reddit,how much are abortions at planned parenthood with insurance,abortion pills without,is a medical +abortion,"('how much does an abortion cost at planned parenthood in illinois', 'how much does an abortion cost at planned parenthood in illinois without insurance')",how much does an abortion cost at planned parenthood in illinois,how much does an abortion cost at planned parenthood in illinois without insurance,1,4,google,2026-03-12 19:50:06.411079,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in illinois,without insurance +abortion,"('how much does an abortion cost at planned parenthood in illinois', 'how much does an abortion cost at planned parenthood in illinois with insurance')",how much does an abortion cost at planned parenthood in illinois,how much does an abortion cost at planned parenthood in illinois with insurance,2,4,google,2026-03-12 19:50:06.411079,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in illinois,with insurance +abortion,"('how much does an abortion cost at planned parenthood in ca', 'how much does an abortion cost at planned parenthood in california')",how much does an abortion cost at planned parenthood in ca,how much does an abortion cost at planned parenthood in california,1,4,google,2026-03-12 19:50:07.557059,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ca,california +abortion,"('how much does an abortion cost at planned parenthood in ca', 'how much does an abortion cost at planned parenthood in ca with insurance')",how much does an abortion cost at planned parenthood in ca,how much does an abortion cost at planned parenthood in ca with insurance,2,4,google,2026-03-12 19:50:07.557059,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ca,with insurance +abortion,"('how much does an abortion cost at planned parenthood in ca', 'how much does an abortion cost at planned parenthood in north carolina')",how much does an abortion cost at planned parenthood in ca,how much does an abortion cost at planned parenthood in north carolina,3,4,google,2026-03-12 19:50:07.557059,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ca,north carolina +abortion,"('how much does an abortion cost at planned parenthood in ca', 'how much does an abortion cost at planned parenthood in south carolina')",how much does an abortion cost at planned parenthood in ca,how much does an abortion cost at planned parenthood in south carolina,4,4,google,2026-03-12 19:50:07.557059,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ca,south carolina +abortion,"('how much does an abortion cost at planned parenthood in ca', 'how much is an abortion cost at planned parenthood')",how much does an abortion cost at planned parenthood in ca,how much is an abortion cost at planned parenthood,5,4,google,2026-03-12 19:50:07.557059,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ca,is +abortion,"('how much does an abortion cost at planned parenthood in ca', 'how much does an abortion cost at planned parenthood without insurance')",how much does an abortion cost at planned parenthood in ca,how much does an abortion cost at planned parenthood without insurance,6,4,google,2026-03-12 19:50:07.557059,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ca,without insurance +abortion,"('how much does an abortion cost at planned parenthood in ca', 'how much is an abortion at planned parenthood with insurance')",how much does an abortion cost at planned parenthood in ca,how much is an abortion at planned parenthood with insurance,7,4,google,2026-03-12 19:50:07.557059,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ca,is with insurance +abortion,"('how much does an abortion cost at planned parenthood in ca', 'how much does an abortion cost at planned parenthood in illinois')",how much does an abortion cost at planned parenthood in ca,how much does an abortion cost at planned parenthood in illinois,8,4,google,2026-03-12 19:50:07.557059,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ca,illinois +abortion,"('how much does an abortion cost at planned parenthood pa', 'how much is an abortion at planned parenthood pa')",how much does an abortion cost at planned parenthood pa,how much is an abortion at planned parenthood pa,1,4,google,2026-03-12 19:50:08.663295,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does pa,is +abortion,"('how much does an abortion cost at planned parenthood pa', 'how much is an abortion pill at planned parenthood in pa')",how much does an abortion cost at planned parenthood pa,how much is an abortion pill at planned parenthood in pa,2,4,google,2026-03-12 19:50:08.663295,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does pa,is pill in +abortion,"('how much does an abortion cost at planned parenthood pa', 'how much is an abortion cost at planned parenthood')",how much does an abortion cost at planned parenthood pa,how much is an abortion cost at planned parenthood,3,4,google,2026-03-12 19:50:08.663295,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does pa,is +abortion,"('how much does an abortion cost at planned parenthood pa', 'how much does an abortion cost at planned parenthood without insurance')",how much does an abortion cost at planned parenthood pa,how much does an abortion cost at planned parenthood without insurance,4,4,google,2026-03-12 19:50:08.663295,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does pa,without insurance +abortion,"('how much does an abortion cost at planned parenthood pa', 'how much are abortions at planned parenthood with insurance')",how much does an abortion cost at planned parenthood pa,how much are abortions at planned parenthood with insurance,5,4,google,2026-03-12 19:50:08.663295,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does pa,are abortions with insurance +abortion,"('how much does an abortion cost at planned parenthood pa', 'how much does an abortion cost at planned parenthood california')",how much does an abortion cost at planned parenthood pa,how much does an abortion cost at planned parenthood california,6,4,google,2026-03-12 19:50:08.663295,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does pa,california +abortion,"('how much does an abortion cost at planned parenthood pa', 'how much does an abortion cost at planned parenthood in texas')",how much does an abortion cost at planned parenthood pa,how much does an abortion cost at planned parenthood in texas,7,4,google,2026-03-12 19:50:08.663295,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does pa,in texas +abortion,"('how much does an abortion cost at planned parenthood pa', 'how much does an abortion cost at planned parenthood')",how much does an abortion cost at planned parenthood pa,how much does an abortion cost at planned parenthood,8,4,google,2026-03-12 19:50:08.663295,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does pa,does pa +abortion,"('how much does an abortion cost at planned parenthood pa', 'how much does an abortion cost at planned parenthood in michigan')",how much does an abortion cost at planned parenthood pa,how much does an abortion cost at planned parenthood in michigan,9,4,google,2026-03-12 19:50:08.663295,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does pa,in michigan +abortion,"('how much does an abortion cost at planned parenthood in ny', 'how much does an abortion cost at planned parenthood without insurance')",how much does an abortion cost at planned parenthood in ny,how much does an abortion cost at planned parenthood without insurance,1,4,google,2026-03-12 19:50:09.916319,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ny,without insurance +abortion,"('how much does an abortion cost at planned parenthood in ny', 'how much is an abortion at planned parenthood without insurance')",how much does an abortion cost at planned parenthood in ny,how much is an abortion at planned parenthood without insurance,2,4,google,2026-03-12 19:50:09.916319,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ny,is without insurance +abortion,"('how much does an abortion cost at planned parenthood in ny', 'how much is an abortion cost at planned parenthood')",how much does an abortion cost at planned parenthood in ny,how much is an abortion cost at planned parenthood,3,4,google,2026-03-12 19:50:09.916319,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ny,is +abortion,"('how much does an abortion cost at planned parenthood in ny', 'how much is an abortion in ny at planned parenthood')",how much does an abortion cost at planned parenthood in ny,how much is an abortion in ny at planned parenthood,4,4,google,2026-03-12 19:50:09.916319,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ny,is +abortion,"('how much does an abortion cost at planned parenthood in ny', 'how much does an abortion cost near clifton park ny')",how much does an abortion cost at planned parenthood in ny,how much does an abortion cost near clifton park ny,5,4,google,2026-03-12 19:50:09.916319,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ny,near clifton park +abortion,"('how much does an abortion cost at planned parenthood in nj', 'how much does an abortion cost at planned parenthood without insurance')",how much does an abortion cost at planned parenthood in nj,how much does an abortion cost at planned parenthood without insurance,1,4,google,2026-03-12 19:50:12.836219,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in nj,without insurance +abortion,"('how much does an abortion cost at planned parenthood in nj', 'how much is an abortion cost at planned parenthood')",how much does an abortion cost at planned parenthood in nj,how much is an abortion cost at planned parenthood,2,4,google,2026-03-12 19:50:12.836219,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in nj,is +abortion,"('how much does an abortion cost at planned parenthood in nj', 'how much is an abortion at planned parenthood without insurance')",how much does an abortion cost at planned parenthood in nj,how much is an abortion at planned parenthood without insurance,3,4,google,2026-03-12 19:50:12.836219,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in nj,is without insurance +abortion,"('how much does an abortion cost at planned parenthood in nj', 'how much is an abortion in nj at planned parenthood')",how much does an abortion cost at planned parenthood in nj,how much is an abortion in nj at planned parenthood,4,4,google,2026-03-12 19:50:12.836219,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in nj,is +abortion,"('how much does an abortion cost at planned parenthood in nj', 'how much does an abortion cost near new jersey')",how much does an abortion cost at planned parenthood in nj,how much does an abortion cost near new jersey,5,4,google,2026-03-12 19:50:12.836219,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in nj,near new jersey +abortion,"('how much does an abortion cost at planned parenthood in nj', 'planned parenthood abortion cost near new jersey')",how much does an abortion cost at planned parenthood in nj,planned parenthood abortion cost near new jersey,6,4,google,2026-03-12 19:50:12.836219,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in nj,near new jersey +abortion,"('how much does an abortion cost at planned parenthood in ohio', 'how much does an abortion pill cost at planned parenthood in ohio')",how much does an abortion cost at planned parenthood in ohio,how much does an abortion pill cost at planned parenthood in ohio,1,4,google,2026-03-12 19:50:14.952043,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ohio,pill +abortion,"('how much does an abortion cost at planned parenthood in ohio', 'how much is an abortion at planned parenthood in ohio')",how much does an abortion cost at planned parenthood in ohio,how much is an abortion at planned parenthood in ohio,2,4,google,2026-03-12 19:50:14.952043,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ohio,is +abortion,"('how much does an abortion cost at planned parenthood in ohio', 'how much is an abortion cost at planned parenthood')",how much does an abortion cost at planned parenthood in ohio,how much is an abortion cost at planned parenthood,3,4,google,2026-03-12 19:50:14.952043,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ohio,is +abortion,"('how much does an abortion cost at planned parenthood in ohio', 'how much does an abortion cost at planned parenthood without insurance')",how much does an abortion cost at planned parenthood in ohio,how much does an abortion cost at planned parenthood without insurance,4,4,google,2026-03-12 19:50:14.952043,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ohio,without insurance +abortion,"('how much does an abortion cost at planned parenthood in ohio', 'how much are abortions at planned parenthood with insurance')",how much does an abortion cost at planned parenthood in ohio,how much are abortions at planned parenthood with insurance,5,4,google,2026-03-12 19:50:14.952043,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ohio,are abortions with insurance +abortion,"('how much does an abortion cost at planned parenthood in ohio', 'how much does an abortion cost at planned parenthood in illinois')",how much does an abortion cost at planned parenthood in ohio,how much does an abortion cost at planned parenthood in illinois,6,4,google,2026-03-12 19:50:14.952043,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ohio,illinois +abortion,"('how much does an abortion cost at planned parenthood in ohio', 'how much does an abortion cost at planned parenthood in michigan')",how much does an abortion cost at planned parenthood in ohio,how much does an abortion cost at planned parenthood in michigan,7,4,google,2026-03-12 19:50:14.952043,abortion pill cost planned parenthood reddit,how much is an abortion cost at planned parenthood,does in ohio,michigan +abortion,"('medication abortion planned parenthood reddit', 'abortion pill planned parenthood reddit')",medication abortion planned parenthood reddit,abortion pill planned parenthood reddit,1,4,google,2026-03-12 19:50:15.863584,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,medication,pill +abortion,"('medication abortion planned parenthood reddit', 'abortion pill cost planned parenthood reddit')",medication abortion planned parenthood reddit,abortion pill cost planned parenthood reddit,2,4,google,2026-03-12 19:50:15.863584,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,medication,pill cost +abortion,"('medication abortion planned parenthood reddit', 'does planned parenthood take insurance for abortions')",medication abortion planned parenthood reddit,does planned parenthood take insurance for abortions,3,4,google,2026-03-12 19:50:15.863584,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,medication,does take insurance for abortions +abortion,"('medication abortion planned parenthood reddit', 'does planned parenthood insurance cover abortions')",medication abortion planned parenthood reddit,does planned parenthood insurance cover abortions,4,4,google,2026-03-12 19:50:15.863584,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,medication,does insurance cover abortions +abortion,"('medication abortion planned parenthood reddit', 'how much are abortions at planned parenthood with insurance')",medication abortion planned parenthood reddit,how much are abortions at planned parenthood with insurance,5,4,google,2026-03-12 19:50:15.863584,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,medication,how much are abortions at with insurance +abortion,"('medication abortion planned parenthood reddit', 'medication abortion pain reddit')",medication abortion planned parenthood reddit,medication abortion pain reddit,6,4,google,2026-03-12 19:50:15.863584,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,medication,pain +abortion,"('medication abortion planned parenthood reddit', 'medication abortion planned')",medication abortion planned parenthood reddit,medication abortion planned,7,4,google,2026-03-12 19:50:15.863584,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,medication,medication +abortion,"('in clinic abortion planned parenthood reddit', 'medical abortion planned parenthood reddit')",in clinic abortion planned parenthood reddit,medical abortion planned parenthood reddit,1,4,google,2026-03-12 19:50:16.851751,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,in clinic,medical +abortion,"('in clinic abortion planned parenthood reddit', 'planned parenthood near me abortion clinic')",in clinic abortion planned parenthood reddit,planned parenthood near me abortion clinic,2,4,google,2026-03-12 19:50:16.851751,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,in clinic,near me +abortion,"('in clinic abortion planned parenthood reddit', 'how much are abortions at planned parenthood with insurance')",in clinic abortion planned parenthood reddit,how much are abortions at planned parenthood with insurance,3,4,google,2026-03-12 19:50:16.851751,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,in clinic,how much are abortions at with insurance +abortion,"('in clinic abortion planned parenthood reddit', 'in clinic abortion procedure reddit')",in clinic abortion planned parenthood reddit,in clinic abortion procedure reddit,4,4,google,2026-03-12 19:50:16.851751,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,in clinic,procedure +abortion,"('in clinic abortion planned parenthood reddit', 'in clinic abortion vs pill reddit')",in clinic abortion planned parenthood reddit,in clinic abortion vs pill reddit,5,4,google,2026-03-12 19:50:16.851751,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,in clinic,vs pill +abortion,"('in clinic abortion planned parenthood reddit', 'in clinic abortion experience reddit')",in clinic abortion planned parenthood reddit,in clinic abortion experience reddit,6,4,google,2026-03-12 19:50:16.851751,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,in clinic,experience +abortion,"('planned parenthood abortion pill process reddit', 'planned parenthood abortion pill cost reddit')",planned parenthood abortion pill process reddit,planned parenthood abortion pill cost reddit,1,4,google,2026-03-12 19:50:17.762256,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,process,cost +abortion,"('planned parenthood abortion pill process reddit', 'planned parenthood abortion pill reddit')",planned parenthood abortion pill process reddit,planned parenthood abortion pill reddit,2,4,google,2026-03-12 19:50:17.762256,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,process,process +abortion,"('planned parenthood abortion pill process reddit', 'planned parenthood abortion process reddit')",planned parenthood abortion pill process reddit,planned parenthood abortion process reddit,3,4,google,2026-03-12 19:50:17.762256,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,process,process +abortion,"('planned parenthood abortion pill experience reddit', 'planned parenthood abortion pill cost reddit')",planned parenthood abortion pill experience reddit,planned parenthood abortion pill cost reddit,1,4,google,2026-03-12 19:50:19.010831,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,experience,cost +abortion,"('planned parenthood abortion pill experience reddit', 'planned parenthood abortion pill reddit')",planned parenthood abortion pill experience reddit,planned parenthood abortion pill reddit,2,4,google,2026-03-12 19:50:19.010831,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,experience,experience +abortion,"('planned parenthood abortion pill experience reddit', 'planned parenthood abortion experience reddit')",planned parenthood abortion pill experience reddit,planned parenthood abortion experience reddit,3,4,google,2026-03-12 19:50:19.010831,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,experience,experience +abortion,"('planned parenthood abortion pill price reddit', 'planned parenthood abortion pill cost reddit')",planned parenthood abortion pill price reddit,planned parenthood abortion pill cost reddit,1,4,google,2026-03-12 19:50:20.229320,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,price,cost +abortion,"('planned parenthood abortion pill price reddit', 'how much are abortions at planned parenthood with insurance')",planned parenthood abortion pill price reddit,how much are abortions at planned parenthood with insurance,2,4,google,2026-03-12 19:50:20.229320,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,price,how much are abortions at with insurance +abortion,"('planned parenthood abortion pill price reddit', 'how much is an abortion cost at planned parenthood')",planned parenthood abortion pill price reddit,how much is an abortion cost at planned parenthood,3,4,google,2026-03-12 19:50:20.229320,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,price,how much is an cost at +abortion,"('planned parenthood abortion pill price reddit', 'planned parenthood abortion pill reddit')",planned parenthood abortion pill price reddit,planned parenthood abortion pill reddit,4,4,google,2026-03-12 19:50:20.229320,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,price,price +abortion,"('planned parenthood telehealth abortion pill reddit', 'does planned parenthood take insurance for abortions')",planned parenthood telehealth abortion pill reddit,does planned parenthood take insurance for abortions,1,4,google,2026-03-12 19:50:21.348794,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,telehealth,does take insurance for abortions +abortion,"('planned parenthood telehealth abortion pill reddit', 'planned parenthood abortion pill cost reddit')",planned parenthood telehealth abortion pill reddit,planned parenthood abortion pill cost reddit,2,4,google,2026-03-12 19:50:21.348794,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,telehealth,cost +abortion,"('planned parenthood telehealth abortion pill reddit', 'planned parenthood telehealth reddit')",planned parenthood telehealth abortion pill reddit,planned parenthood telehealth reddit,3,4,google,2026-03-12 19:50:21.348794,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,telehealth,telehealth +abortion,"('planned parenthood telehealth abortion pill reddit', 'planned parenthood telehealth abortion pill')",planned parenthood telehealth abortion pill reddit,planned parenthood telehealth abortion pill,4,4,google,2026-03-12 19:50:21.348794,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,telehealth,telehealth +abortion,"('planned parenthood telehealth abortion pill reddit', 'planned parenthood telehealth abortion')",planned parenthood telehealth abortion pill reddit,planned parenthood telehealth abortion,5,4,google,2026-03-12 19:50:21.348794,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,telehealth,telehealth +abortion,"('planned parenthood telehealth abortion pill reddit', 'planned parenthood telehealth cost')",planned parenthood telehealth abortion pill reddit,planned parenthood telehealth cost,6,4,google,2026-03-12 19:50:21.348794,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,telehealth,cost +abortion,"('planned parenthood telehealth abortion pill reddit', 'planned parenthood telehealth cost reddit')",planned parenthood telehealth abortion pill reddit,planned parenthood telehealth cost reddit,7,4,google,2026-03-12 19:50:21.348794,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,telehealth,cost +abortion,"('planned parenthood direct abortion pill reddit', 'planned parenthood abortion pill cost reddit')",planned parenthood direct abortion pill reddit,planned parenthood abortion pill cost reddit,1,4,google,2026-03-12 19:50:22.591191,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,direct,cost +abortion,"('planned parenthood direct abortion pill reddit', 'how much is the abortion pill at planned parenthood in washington')",planned parenthood direct abortion pill reddit,how much is the abortion pill at planned parenthood in washington,2,4,google,2026-03-12 19:50:22.591191,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,direct,how much is the at in washington +abortion,"('planned parenthood direct abortion pill reddit', 'does planned parenthood take insurance for abortions')",planned parenthood direct abortion pill reddit,does planned parenthood take insurance for abortions,3,4,google,2026-03-12 19:50:22.591191,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,direct,does take insurance for abortions +abortion,"('planned parenthood direct abortion pill reddit', 'planned parenthood direct reddit')",planned parenthood direct abortion pill reddit,planned parenthood direct reddit,4,4,google,2026-03-12 19:50:22.591191,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,direct,direct +abortion,"('planned parenthood direct abortion pill reddit', 'planned parenthood abortion pill reddit')",planned parenthood direct abortion pill reddit,planned parenthood abortion pill reddit,5,4,google,2026-03-12 19:50:22.591191,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,direct,direct +abortion,"('planned parenthood direct abortion pill reddit', 'planned parenthood direct reviews')",planned parenthood direct abortion pill reddit,planned parenthood direct reviews,6,4,google,2026-03-12 19:50:22.591191,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,direct,reviews +abortion,"('planned parenthood abortion pill appointment reddit', 'what days does planned parenthood do abortions')",planned parenthood abortion pill appointment reddit,what days does planned parenthood do abortions,1,4,google,2026-03-12 19:50:23.557657,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,appointment,what days does do abortions +abortion,"('planned parenthood abortion pill appointment reddit', 'does planned parenthood take walk ins for abortions')",planned parenthood abortion pill appointment reddit,does planned parenthood take walk ins for abortions,2,4,google,2026-03-12 19:50:23.557657,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,appointment,does take walk ins for abortions +abortion,"('planned parenthood abortion pill appointment reddit', 'what happens at planned parenthood abortion appointment')",planned parenthood abortion pill appointment reddit,what happens at planned parenthood abortion appointment,3,4,google,2026-03-12 19:50:23.557657,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,appointment,what happens at +abortion,"('planned parenthood abortion pill appointment reddit', 'does planned parenthood do abortions same day')",planned parenthood abortion pill appointment reddit,does planned parenthood do abortions same day,4,4,google,2026-03-12 19:50:23.557657,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,appointment,does do abortions same day +abortion,"('planned parenthood abortion pill appointment reddit', 'planned parenthood abortion pill cost reddit')",planned parenthood abortion pill appointment reddit,planned parenthood abortion pill cost reddit,5,4,google,2026-03-12 19:50:23.557657,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,appointment,cost +abortion,"('planned parenthood abortion pill appointment reddit', 'planned parenthood abortion pill reddit')",planned parenthood abortion pill appointment reddit,planned parenthood abortion pill reddit,6,4,google,2026-03-12 19:50:23.557657,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,appointment,appointment +abortion,"('planned parenthood abortion pill appointment reddit', 'planned parenthood abortion pill appointment')",planned parenthood abortion pill appointment reddit,planned parenthood abortion pill appointment,7,4,google,2026-03-12 19:50:23.557657,abortion pill cost planned parenthood reddit,abortion pill planned parenthood reddit,appointment,appointment +abortion,"('abortion clinic jacksonville fl cost', 'abortion clinic jacksonville florida')",abortion clinic jacksonville fl cost,abortion clinic jacksonville florida,1,4,google,2026-03-12 19:50:25.814217,abortion pill cost florida,abortion clinic florida cost,jacksonville fl,florida +abortion,"('abortion clinic jacksonville fl cost', 'abortion clinic jax fl')",abortion clinic jacksonville fl cost,abortion clinic jax fl,2,4,google,2026-03-12 19:50:25.814217,abortion pill cost florida,abortion clinic florida cost,jacksonville fl,jax +abortion,"('abortion clinic jacksonville fl cost', 'abortion clinic jacksonville fl')",abortion clinic jacksonville fl cost,abortion clinic jacksonville fl,3,4,google,2026-03-12 19:50:25.814217,abortion pill cost florida,abortion clinic florida cost,jacksonville fl,jacksonville fl +abortion,"('abortion cost florida planned parenthood', 'abortion pill cost planned parenthood florida')",abortion cost florida planned parenthood,abortion pill cost planned parenthood florida,1,4,google,2026-03-12 19:50:26.640791,abortion pill cost florida,abortion clinic florida cost,planned parenthood,pill +abortion,"('abortion cost florida planned parenthood', 'abortion cost planned parenthood reddit')",abortion cost florida planned parenthood,abortion cost planned parenthood reddit,2,4,google,2026-03-12 19:50:26.640791,abortion pill cost florida,abortion clinic florida cost,planned parenthood,reddit +abortion,"('abortion cost fl', 'abortion cost florida planned parenthood')",abortion cost fl,abortion cost florida planned parenthood,1,4,google,2026-03-12 19:50:27.573750,abortion pill cost florida,abortion clinic florida cost,fl,florida planned parenthood +abortion,"('abortion cost fl', 'abortion cost fl without insurance')",abortion cost fl,abortion cost fl without insurance,2,4,google,2026-03-12 19:50:27.573750,abortion pill cost florida,abortion clinic florida cost,fl,without insurance +abortion,"('abortion cost fl', 'abortion pill cost florida')",abortion cost fl,abortion pill cost florida,3,4,google,2026-03-12 19:50:27.573750,abortion pill cost florida,abortion clinic florida cost,fl,pill florida +abortion,"('abortion cost fl', 'abortion pill cost fl')",abortion cost fl,abortion pill cost fl,4,4,google,2026-03-12 19:50:27.573750,abortion pill cost florida,abortion clinic florida cost,fl,pill +abortion,"('abortion cost fl', 'abortion cost in florida with insurance')",abortion cost fl,abortion cost in florida with insurance,5,4,google,2026-03-12 19:50:27.573750,abortion pill cost florida,abortion clinic florida cost,fl,in florida with insurance +abortion,"('abortion cost fl', 'abortion clinic florida cost')",abortion cost fl,abortion clinic florida cost,6,4,google,2026-03-12 19:50:27.573750,abortion pill cost florida,abortion clinic florida cost,fl,clinic florida +abortion,"('abortion cost fl', 'abortion clinic jacksonville fl cost')",abortion cost fl,abortion clinic jacksonville fl cost,7,4,google,2026-03-12 19:50:27.573750,abortion pill cost florida,abortion clinic florida cost,fl,clinic jacksonville +abortion,"('abortion cost fl', 'abortion laws in florida cost')",abortion cost fl,abortion laws in florida cost,8,4,google,2026-03-12 19:50:27.573750,abortion pill cost florida,abortion clinic florida cost,fl,laws in florida +abortion,"('abortion cost fl', 'abortion pill cost cvs florida')",abortion cost fl,abortion pill cost cvs florida,9,4,google,2026-03-12 19:50:27.573750,abortion pill cost florida,abortion clinic florida cost,fl,pill cvs florida +abortion,"('abortion clinic florida', 'abortion clinic florida near me')",abortion clinic florida,abortion clinic florida near me,1,4,google,2026-03-12 19:50:28.380951,abortion pill cost florida,abortion clinic florida cost,clinic,near me +abortion,"('abortion clinic florida', 'abortion clinic florida price')",abortion clinic florida,abortion clinic florida price,2,4,google,2026-03-12 19:50:28.380951,abortion pill cost florida,abortion clinic florida cost,clinic,price +abortion,"('abortion clinic florida', 'abortion clinic florida miami')",abortion clinic florida,abortion clinic florida miami,3,4,google,2026-03-12 19:50:28.380951,abortion pill cost florida,abortion clinic florida cost,clinic,miami +abortion,"('abortion clinic florida', 'abortion clinic florida open now')",abortion clinic florida,abortion clinic florida open now,4,4,google,2026-03-12 19:50:28.380951,abortion pill cost florida,abortion clinic florida cost,clinic,open now +abortion,"('abortion clinic florida', 'abortion clinic florida tampa')",abortion clinic florida,abortion clinic florida tampa,5,4,google,2026-03-12 19:50:28.380951,abortion pill cost florida,abortion clinic florida cost,clinic,tampa +abortion,"('abortion clinic florida', 'abortion services florida')",abortion clinic florida,abortion services florida,6,4,google,2026-03-12 19:50:28.380951,abortion pill cost florida,abortion clinic florida cost,clinic,services +abortion,"('abortion clinic florida', 'abortion cost florida planned parenthood')",abortion clinic florida,abortion cost florida planned parenthood,7,4,google,2026-03-12 19:50:28.380951,abortion pill cost florida,abortion clinic florida cost,clinic,cost planned parenthood +abortion,"('abortion clinic florida', 'abortion center florida')",abortion clinic florida,abortion center florida,8,4,google,2026-03-12 19:50:28.380951,abortion pill cost florida,abortion clinic florida cost,clinic,center +abortion,"('abortion clinic florida', ""florida women's clinic"")",abortion clinic florida,florida women's clinic,9,4,google,2026-03-12 19:50:28.380951,abortion pill cost florida,abortion clinic florida cost,clinic,women's +abortion,"('planned parenthood abortion cost florida', 'planned parenthood abortion pill cost florida')",planned parenthood abortion cost florida,planned parenthood abortion pill cost florida,1,4,google,2026-03-12 19:50:29.772445,abortion pill cost florida,planned parenthood abortion pill cost florida,planned parenthood,pill +abortion,"('planned parenthood abortion cost florida', 'planned parenthood abortion cost tallahassee fl')",planned parenthood abortion cost florida,planned parenthood abortion cost tallahassee fl,2,4,google,2026-03-12 19:50:29.772445,abortion pill cost florida,planned parenthood abortion pill cost florida,planned parenthood,tallahassee fl +abortion,"('planned parenthood abortion cost florida', 'how much is an abortion cost at planned parenthood')",planned parenthood abortion cost florida,how much is an abortion cost at planned parenthood,3,4,google,2026-03-12 19:50:29.772445,abortion pill cost florida,planned parenthood abortion pill cost florida,planned parenthood,how much is an at +abortion,"('planned parenthood abortion cost florida', 'how much does an abortion cost at planned parenthood california')",planned parenthood abortion cost florida,how much does an abortion cost at planned parenthood california,4,4,google,2026-03-12 19:50:29.772445,abortion pill cost florida,planned parenthood abortion pill cost florida,planned parenthood,how much does an at california +abortion,"('planned parenthood abortion cost florida', 'planned parenthood abortion cost near orlando fl')",planned parenthood abortion cost florida,planned parenthood abortion cost near orlando fl,5,4,google,2026-03-12 19:50:29.772445,abortion pill cost florida,planned parenthood abortion pill cost florida,planned parenthood,near orlando fl +abortion,"('planned parenthood abortion cost florida', 'planned parenthood abortion cost near tampa fl')",planned parenthood abortion cost florida,planned parenthood abortion cost near tampa fl,6,4,google,2026-03-12 19:50:29.772445,abortion pill cost florida,planned parenthood abortion pill cost florida,planned parenthood,near tampa fl +abortion,"('are abortions free at planned parenthood', 'are abortions free at planned parenthood for minors')",are abortions free at planned parenthood,are abortions free at planned parenthood for minors,1,4,google,2026-03-12 19:50:31.056763,abortion pill cost florida,planned parenthood abortion pill cost florida,are abortions free at,for minors +abortion,"('are abortions free at planned parenthood', 'are abortions free at planned parenthood california')",are abortions free at planned parenthood,are abortions free at planned parenthood california,2,4,google,2026-03-12 19:50:31.056763,abortion pill cost florida,planned parenthood abortion pill cost florida,are abortions free at,california +abortion,"('are abortions free at planned parenthood', 'are abortions free at planned parenthood with insurance')",are abortions free at planned parenthood,are abortions free at planned parenthood with insurance,3,4,google,2026-03-12 19:50:31.056763,abortion pill cost florida,planned parenthood abortion pill cost florida,are abortions free at,with insurance +abortion,"('are abortions free at planned parenthood', 'are abortions free at planned parenthood with medical')",are abortions free at planned parenthood,are abortions free at planned parenthood with medical,4,4,google,2026-03-12 19:50:31.056763,abortion pill cost florida,planned parenthood abortion pill cost florida,are abortions free at,with medical +abortion,"('are abortions free at planned parenthood', 'are abortions free at planned parenthood for teens')",are abortions free at planned parenthood,are abortions free at planned parenthood for teens,5,4,google,2026-03-12 19:50:31.056763,abortion pill cost florida,planned parenthood abortion pill cost florida,are abortions free at,for teens +abortion,"('are abortions free at planned parenthood', 'is abortion free at planned parenthood nyc')",are abortions free at planned parenthood,is abortion free at planned parenthood nyc,6,4,google,2026-03-12 19:50:31.056763,abortion pill cost florida,planned parenthood abortion pill cost florida,are abortions free at,is abortion nyc +abortion,"('are abortions free at planned parenthood', 'does planned parenthood do free abortions')",are abortions free at planned parenthood,does planned parenthood do free abortions,7,4,google,2026-03-12 19:50:31.056763,abortion pill cost florida,planned parenthood abortion pill cost florida,are abortions free at,does do +abortion,"('are abortions free at planned parenthood', 'how much does an abortion cost at planned parenthood without insurance')",are abortions free at planned parenthood,how much does an abortion cost at planned parenthood without insurance,8,4,google,2026-03-12 19:50:31.056763,abortion pill cost florida,planned parenthood abortion pill cost florida,are abortions free at,how much does an abortion cost without insurance +abortion,"('are abortions free at planned parenthood', 'does planned parenthood offer free abortions')",are abortions free at planned parenthood,does planned parenthood offer free abortions,9,4,google,2026-03-12 19:50:31.056763,abortion pill cost florida,planned parenthood abortion pill cost florida,are abortions free at,does offer +abortion,"('what is abortion according to who', 'what is abortion according to who pdf')",what is abortion according to who,what is abortion according to who pdf,1,4,google,2026-03-12 19:50:32.411406,abortion definition according to who,abortion definition according to who 2022,what is,pdf +abortion,"('what is abortion according to who', 'what is abortion according to who 2022')",what is abortion according to who,what is abortion according to who 2022,2,4,google,2026-03-12 19:50:32.411406,abortion definition according to who,abortion definition according to who 2022,what is,2022 +abortion,"('what is abortion according to who', 'what is abortion definition according to who')",what is abortion according to who,what is abortion definition according to who,3,4,google,2026-03-12 19:50:32.411406,abortion definition according to who,abortion definition according to who 2022,what is,definition +abortion,"('what is abortion according to who', 'what is unsafe abortion according to who')",what is abortion according to who,what is unsafe abortion according to who,4,4,google,2026-03-12 19:50:32.411406,abortion definition according to who,abortion definition according to who 2022,what is,unsafe +abortion,"('what is abortion according to who', 'what is safe abortion according to who')",what is abortion according to who,what is safe abortion according to who,5,4,google,2026-03-12 19:50:32.411406,abortion definition according to who,abortion definition according to who 2022,what is,safe +abortion,"('what is abortion according to who', 'what is abortion in pregnancy according to who')",what is abortion according to who,what is abortion in pregnancy according to who,6,4,google,2026-03-12 19:50:32.411406,abortion definition according to who,abortion definition according to who 2022,what is,in pregnancy +abortion,"('what is abortion according to who', 'what is the meaning of abortion according to who')",what is abortion according to who,what is the meaning of abortion according to who,7,4,google,2026-03-12 19:50:32.411406,abortion definition according to who,abortion definition according to who 2022,what is,the meaning of +abortion,"('what is abortion according to who', 'what is post abortion care according to who')",what is abortion according to who,what is post abortion care according to who,8,4,google,2026-03-12 19:50:32.411406,abortion definition according to who,abortion definition according to who 2022,what is,post care +abortion,"('what is abortion according to who', 'what is abortion according to world health organization')",what is abortion according to who,what is abortion according to world health organization,9,4,google,2026-03-12 19:50:32.411406,abortion definition according to who,abortion definition according to who 2022,what is,world health organization +abortion,"('types of abortion according to who', 'types of abortion definition according to who')",types of abortion according to who,types of abortion definition according to who,1,4,google,2026-03-12 19:50:33.296987,abortion definition according to who,abortion definition according to who 2022,types of,definition +abortion,"('types of abortion according to who', 'what are the different types of abortion')",types of abortion according to who,what are the different types of abortion,2,4,google,2026-03-12 19:50:33.296987,abortion definition according to who,abortion definition according to who 2022,types of,what are the different +abortion,"('types of abortion according to who', 'types of abortion')",types of abortion according to who,types of abortion,3,4,google,2026-03-12 19:50:33.296987,abortion definition according to who,abortion definition according to who 2022,types of,types of +abortion,"('types of abortion according to who', 'types of abortion chart')",types of abortion according to who,types of abortion chart,4,4,google,2026-03-12 19:50:33.296987,abortion definition according to who,abortion definition according to who 2022,types of,chart +abortion,"('types of abortion according to who', 'types of abortion acog')",types of abortion according to who,types of abortion acog,5,4,google,2026-03-12 19:50:33.296987,abortion definition according to who,abortion definition according to who 2022,types of,acog +abortion,"('types of abortion according to who', 'types of abortions pdf')",types of abortion according to who,types of abortions pdf,6,4,google,2026-03-12 19:50:33.296987,abortion definition according to who,abortion definition according to who 2022,types of,abortions pdf +abortion,"('types of abortion according to who', 'types of abortion percentages')",types of abortion according to who,types of abortion percentages,7,4,google,2026-03-12 19:50:33.296987,abortion definition according to who,abortion definition according to who 2022,types of,percentages +abortion,"('who definition of abortion', 'who definition of abortion pdf')",who definition of abortion,who definition of abortion pdf,1,4,google,2026-03-12 19:50:34.096102,abortion definition according to who,abortion definition according to who 2022,of,pdf +abortion,"('who definition of abortion', 'who definition of abortion wikipedia')",who definition of abortion,who definition of abortion wikipedia,2,4,google,2026-03-12 19:50:34.096102,abortion definition according to who,abortion definition according to who 2022,of,wikipedia +abortion,"('who definition of abortion', 'world health organisation definition of abortion')",who definition of abortion,world health organisation definition of abortion,3,4,google,2026-03-12 19:50:34.096102,abortion definition according to who,abortion definition according to who 2022,of,world health organisation +abortion,"('who definition of abortion', 'who definition of unsafe abortion')",who definition of abortion,who definition of unsafe abortion,4,4,google,2026-03-12 19:50:34.096102,abortion definition according to who,abortion definition according to who 2022,of,unsafe +abortion,"('who definition of abortion', 'who definition of spontaneous abortion')",who definition of abortion,who definition of spontaneous abortion,5,4,google,2026-03-12 19:50:34.096102,abortion definition according to who,abortion definition according to who 2022,of,spontaneous +abortion,"('who definition of abortion', 'who definition of threatened abortion')",who definition of abortion,who definition of threatened abortion,6,4,google,2026-03-12 19:50:34.096102,abortion definition according to who,abortion definition according to who 2022,of,threatened +abortion,"('who definition of abortion', 'who definition of post abortion care')",who definition of abortion,who definition of post abortion care,7,4,google,2026-03-12 19:50:34.096102,abortion definition according to who,abortion definition according to who 2022,of,post care +abortion,"('who definition of abortion', 'who definition of safe abortion')",who definition of abortion,who definition of safe abortion,8,4,google,2026-03-12 19:50:34.096102,abortion definition according to who,abortion definition according to who 2022,of,safe +abortion,"('who definition of abortion', 'who definition of missed abortion')",who definition of abortion,who definition of missed abortion,9,4,google,2026-03-12 19:50:34.096102,abortion definition according to who,abortion definition according to who 2022,of,missed +abortion,"('abortion definition world health organisation', 'abortion definition world health organization')",abortion definition world health organisation,abortion definition world health organization,1,4,google,2026-03-12 19:50:36.384213,abortion definition according to who,abortion definition according to who 2022,world health organisation,organization +abortion,"('abortion definition world health organisation', 'what is abortion according to world health organization')",abortion definition world health organisation,what is abortion according to world health organization,2,4,google,2026-03-12 19:50:36.384213,abortion definition according to who,abortion definition according to who 2022,world health organisation,what is according to organization +abortion,"('abortion definition world health organisation', 'who definition of abortion')",abortion definition world health organisation,who definition of abortion,3,4,google,2026-03-12 19:50:36.384213,abortion definition according to who,abortion definition according to who 2022,world health organisation,who of +abortion,"('abortion definition world health organisation', 'what is abortion according to who')",abortion definition world health organisation,what is abortion according to who,4,4,google,2026-03-12 19:50:36.384213,abortion definition according to who,abortion definition according to who 2022,world health organisation,what is according to who +abortion,"('abortion definition world health organisation', 'what is the definition of abortion according to world health organization')",abortion definition world health organisation,what is the definition of abortion according to world health organization,5,4,google,2026-03-12 19:50:36.384213,abortion definition according to who,abortion definition according to who 2022,world health organisation,what is the of according to organization +abortion,"('abortion definition world health organisation', 'abortion world health organization')",abortion definition world health organisation,abortion world health organization,6,4,google,2026-03-12 19:50:36.384213,abortion definition according to who,abortion definition according to who 2022,world health organisation,organization +abortion,"('abortion definition by world health organization', 'abortion definition world health organization')",abortion definition by world health organization,abortion definition world health organization,1,4,google,2026-03-12 19:50:37.353606,abortion definition according to who,abortion definition according to who 2022,by world health organization,by world health organization +abortion,"('abortion definition by world health organization', 'what is abortion according to world health organization')",abortion definition by world health organization,what is abortion according to world health organization,2,4,google,2026-03-12 19:50:37.353606,abortion definition according to who,abortion definition according to who 2022,by world health organization,what is according to +abortion,"('abortion definition by world health organization', 'what is abortion according to who')",abortion definition by world health organization,what is abortion according to who,3,4,google,2026-03-12 19:50:37.353606,abortion definition according to who,abortion definition according to who 2022,by world health organization,what is according to who +abortion,"('abortion definition by world health organization', 'who definition of abortion')",abortion definition by world health organization,who definition of abortion,4,4,google,2026-03-12 19:50:37.353606,abortion definition according to who,abortion definition according to who 2022,by world health organization,who of +abortion,"('abortion definition by world health organization', 'abortion definition world health organisation')",abortion definition by world health organization,abortion definition world health organisation,5,4,google,2026-03-12 19:50:37.353606,abortion definition according to who,abortion definition according to who 2022,by world health organization,organisation +abortion,"('abortion definition by world health organization', 'what is the definition of abortion according to world health organization')",abortion definition by world health organization,what is the definition of abortion according to world health organization,6,4,google,2026-03-12 19:50:37.353606,abortion definition according to who,abortion definition according to who 2022,by world health organization,what is the of according to +abortion,"('abortion definition by world health organization', 'abortion world health organization')",abortion definition by world health organization,abortion world health organization,7,4,google,2026-03-12 19:50:37.353606,abortion definition according to who,abortion definition according to who 2022,by world health organization,by world health organization +abortion,"('what is abortion pdf', 'what is abortion pdf notes')",what is abortion pdf,what is abortion pdf notes,1,4,google,2026-03-12 19:50:38.297630,abortion definition according to who,abortion definition according to who pdf,what is,notes +abortion,"('what is abortion pdf', 'what is unsafe abortion pdf')",what is abortion pdf,what is unsafe abortion pdf,2,4,google,2026-03-12 19:50:38.297630,abortion definition according to who,abortion definition according to who pdf,what is,unsafe +abortion,"('what is abortion pdf', 'what is safe abortion pdf')",what is abortion pdf,what is safe abortion pdf,3,4,google,2026-03-12 19:50:38.297630,abortion definition according to who,abortion definition according to who pdf,what is,safe +abortion,"('what is abortion pdf', 'what is abortion according to who pdf')",what is abortion pdf,what is abortion according to who pdf,4,4,google,2026-03-12 19:50:38.297630,abortion definition according to who,abortion definition according to who pdf,what is,according to who +abortion,"('what is abortion pdf', 'what is post abortion care pdf')",what is abortion pdf,what is post abortion care pdf,5,4,google,2026-03-12 19:50:38.297630,abortion definition according to who,abortion definition according to who pdf,what is,post care +abortion,"('what is abortion pdf', 'what is safe abortion class 8 pdf')",what is abortion pdf,what is safe abortion class 8 pdf,6,4,google,2026-03-12 19:50:38.297630,abortion definition according to who,abortion definition according to who pdf,what is,safe class 8 +abortion,"('what is abortion pdf', 'what is safe abortion short answer pdf')",what is abortion pdf,what is safe abortion short answer pdf,7,4,google,2026-03-12 19:50:38.297630,abortion definition according to who,abortion definition according to who pdf,what is,safe short answer +abortion,"('what is abortion pdf', 'what states is abortion legal in 2025 pdf')",what is abortion pdf,what states is abortion legal in 2025 pdf,8,4,google,2026-03-12 19:50:38.297630,abortion definition according to who,abortion definition according to who pdf,what is,states legal in 2025 +abortion,"('what is abortion pdf', 'types of abortion pdf')",what is abortion pdf,types of abortion pdf,9,4,google,2026-03-12 19:50:38.297630,abortion definition according to who,abortion definition according to who pdf,what is,types of +abortion,"('types of abortion pdf', 'types of abortion pdf notes')",types of abortion pdf,types of abortion pdf notes,1,4,google,2026-03-12 19:50:39.601868,abortion definition according to who,abortion definition according to who pdf,types of,notes +abortion,"('types of abortion pdf', 'types of abortion pdf download')",types of abortion pdf,types of abortion pdf download,2,4,google,2026-03-12 19:50:39.601868,abortion definition according to who,abortion definition according to who pdf,types of,download +abortion,"('types of abortion pdf', 'types of abortion pdf slideshare')",types of abortion pdf,types of abortion pdf slideshare,3,4,google,2026-03-12 19:50:39.601868,abortion definition according to who,abortion definition according to who pdf,types of,slideshare +abortion,"('types of abortion pdf', 'types of abortion pdf free download')",types of abortion pdf,types of abortion pdf free download,4,4,google,2026-03-12 19:50:39.601868,abortion definition according to who,abortion definition according to who pdf,types of,free download +abortion,"('types of abortion pdf', '7 types of abortion pdf')",types of abortion pdf,7 types of abortion pdf,5,4,google,2026-03-12 19:50:39.601868,abortion definition according to who,abortion definition according to who pdf,types of,7 +abortion,"('types of abortion pdf', 'types of abortion nursing pdf')",types of abortion pdf,types of abortion nursing pdf,6,4,google,2026-03-12 19:50:39.601868,abortion definition according to who,abortion definition according to who pdf,types of,nursing +abortion,"('types of abortion pdf', '7 types of abortion pdf notes')",types of abortion pdf,7 types of abortion pdf notes,7,4,google,2026-03-12 19:50:39.601868,abortion definition according to who,abortion definition according to who pdf,types of,7 notes +abortion,"('types of abortion pdf', '7 types of abortion pdf free download')",types of abortion pdf,7 types of abortion pdf free download,8,4,google,2026-03-12 19:50:39.601868,abortion definition according to who,abortion definition according to who pdf,types of,7 free download +abortion,"('types of abortion pdf', '7 types of abortion pdf slideshare')",types of abortion pdf,7 types of abortion pdf slideshare,9,4,google,2026-03-12 19:50:39.601868,abortion definition according to who,abortion definition according to who pdf,types of,7 slideshare +abortion,"('abortion definition ap gov', 'hyde amendment definition ap gov')",abortion definition ap gov,hyde amendment definition ap gov,1,4,google,2026-03-12 19:50:40.825233,abortion definition according to who,abortion definition according to who pdf,ap gov,hyde amendment +abortion,"('abortion definition ap gov', 'executive order ap gov definition')",abortion definition ap gov,executive order ap gov definition,2,4,google,2026-03-12 19:50:40.825233,abortion definition according to who,abortion definition according to who pdf,ap gov,executive order +abortion,"('abortion definition ap gov', 'is abortion federal or state')",abortion definition ap gov,is abortion federal or state,3,4,google,2026-03-12 19:50:40.825233,abortion definition according to who,abortion definition according to who pdf,ap gov,is federal or state +abortion,"('abortion definition ap gov', 'appropriate definition ap gov')",abortion definition ap gov,appropriate definition ap gov,4,4,google,2026-03-12 19:50:40.825233,abortion definition according to who,abortion definition according to who pdf,ap gov,appropriate +abortion,"('abortion definition according to who ppt', 'what is abortion ppt')",abortion definition according to who ppt,what is abortion ppt,1,4,google,2026-03-12 19:50:42.170474,abortion definition according to who,abortion definition acc to who,according ppt,what is +abortion,"('abortion definition according to who ppt', 'types of abortion according to who')",abortion definition according to who ppt,types of abortion according to who,2,4,google,2026-03-12 19:50:42.170474,abortion definition according to who,abortion definition acc to who,according ppt,types of +abortion,"('abortion definition according to who ppt', 'types of abortion ppt')",abortion definition according to who ppt,types of abortion ppt,3,4,google,2026-03-12 19:50:42.170474,abortion definition according to who,abortion definition acc to who,according ppt,types of +abortion,"('abortion definition according to who ppt', 'what is abortion according to who')",abortion definition according to who ppt,what is abortion according to who,4,4,google,2026-03-12 19:50:42.170474,abortion definition according to who,abortion definition acc to who,according ppt,what is +abortion,"('abortion definition according to who ppt', 'abortion definition according to who')",abortion definition according to who ppt,abortion definition according to who,5,4,google,2026-03-12 19:50:42.170474,abortion definition according to who,abortion definition acc to who,according ppt,according ppt +abortion,"('abortion definition according to who ppt', 'what is the definition of abortion according to world health organization')",abortion definition according to who ppt,what is the definition of abortion according to world health organization,6,4,google,2026-03-12 19:50:42.170474,abortion definition according to who,abortion definition acc to who,according ppt,what is the of world health organization +abortion,"('abortion definition according to who ppt', 'abortion definition world health organisation')",abortion definition according to who ppt,abortion definition world health organisation,7,4,google,2026-03-12 19:50:42.170474,abortion definition according to who,abortion definition acc to who,according ppt,world health organisation +abortion,"('abortion definition according to who ppt', 'abortion definition ap gov')",abortion definition according to who ppt,abortion definition ap gov,8,4,google,2026-03-12 19:50:42.170474,abortion definition according to who,abortion definition acc to who,according ppt,ap gov +abortion,"('abortion definition according to who ppt', 'abortion definition webster dictionary')",abortion definition according to who ppt,abortion definition webster dictionary,9,4,google,2026-03-12 19:50:42.170474,abortion definition according to who,abortion definition acc to who,according ppt,webster dictionary +abortion,"('abortion definition according to who in hindi', 'what is abortion according to who')",abortion definition according to who in hindi,what is abortion according to who,1,4,google,2026-03-12 19:50:43.616913,abortion definition according to who,abortion definition acc to who,according in hindi,what is +abortion,"('abortion definition according to who in hindi', 'abortion meaning in hindi definition')",abortion definition according to who in hindi,abortion meaning in hindi definition,2,4,google,2026-03-12 19:50:43.616913,abortion definition according to who,abortion definition acc to who,according in hindi,meaning +abortion,"('abortion definition according to who in hindi', 'abortion definition according to who')",abortion definition according to who in hindi,abortion definition according to who,3,4,google,2026-03-12 19:50:43.616913,abortion definition according to who,abortion definition acc to who,according in hindi,according in hindi +abortion,"('abortion definition according to who in hindi', 'what is the definition of abortion according to world health organization')",abortion definition according to who in hindi,what is the definition of abortion according to world health organization,4,4,google,2026-03-12 19:50:43.616913,abortion definition according to who,abortion definition acc to who,according in hindi,what is the of world health organization +abortion,"('abortion definition according to who in hindi', 'abortion definition webster dictionary')",abortion definition according to who in hindi,abortion definition webster dictionary,5,4,google,2026-03-12 19:50:43.616913,abortion definition according to who,abortion definition acc to who,according in hindi,webster dictionary +abortion,"('abortion definition according to who in hindi', 'abortion definition dictionary')",abortion definition according to who in hindi,abortion definition dictionary,6,4,google,2026-03-12 19:50:43.616913,abortion definition according to who,abortion definition acc to who,according in hindi,dictionary +abortion,"('abortion definition according to who in hindi', 'abortion definition webster')",abortion definition according to who in hindi,abortion definition webster,7,4,google,2026-03-12 19:50:43.616913,abortion definition according to who,abortion definition acc to who,according in hindi,webster +abortion,"('what does the term medical abortion describe', 'what does the term medical abortion describe quizlet')",what does the term medical abortion describe,what does the term medical abortion describe quizlet,1,4,google,2026-03-12 19:50:44.523634,abortion definition according to who,medical abortion definition according to who,what does the term describe,quizlet +abortion,"('what does the term medical abortion describe', 'what does the term abortion mean')",what does the term medical abortion describe,what does the term abortion mean,2,4,google,2026-03-12 19:50:44.523634,abortion definition according to who,medical abortion definition according to who,what does the term describe,mean +abortion,"('what does the term medical abortion describe', 'what does the medical term a mean')",what does the term medical abortion describe,what does the medical term a mean,3,4,google,2026-03-12 19:50:44.523634,abortion definition according to who,medical abortion definition according to who,what does the term describe,a mean +abortion,"('what are the types of medical abortion', 'what kind of medical abortion')",what are the types of medical abortion,what kind of medical abortion,1,4,google,2026-03-12 19:50:45.993221,abortion definition according to who,medical abortion definition according to who,what are the types of,kind +abortion,"('what are the types of medical abortion', 'what are the different types of abortion')",what are the types of medical abortion,what are the different types of abortion,2,4,google,2026-03-12 19:50:45.993221,abortion definition according to who,medical abortion definition according to who,what are the types of,different +abortion,"('what are the types of medical abortion', 'types of abortion table')",what are the types of medical abortion,types of abortion table,3,4,google,2026-03-12 19:50:45.993221,abortion definition according to who,medical abortion definition according to who,what are the types of,table +abortion,"('what are the types of medical abortion', 'what are the 2 types of medical abortions')",what are the types of medical abortion,what are the 2 types of medical abortions,4,4,google,2026-03-12 19:50:45.993221,abortion definition according to who,medical abortion definition according to who,what are the types of,2 abortions +abortion,"('what are the types of medical abortion', 'what are the types of abortions')",what are the types of medical abortion,what are the types of abortions,5,4,google,2026-03-12 19:50:45.993221,abortion definition according to who,medical abortion definition according to who,what are the types of,abortions +abortion,"('what are the types of medical abortion', 'different types of medical abortion')",what are the types of medical abortion,different types of medical abortion,6,4,google,2026-03-12 19:50:45.993221,abortion definition according to who,medical abortion definition according to who,what are the types of,different +abortion,"('medical abortion defined', 'medical abortion definition')",medical abortion defined,medical abortion definition,1,4,google,2026-03-12 19:50:47.154442,abortion definition according to who,medical abortion definition according to who,defined,definition +abortion,"('medical abortion defined', 'medical abortion definition weeks')",medical abortion defined,medical abortion definition weeks,2,4,google,2026-03-12 19:50:47.154442,abortion definition according to who,medical abortion definition according to who,defined,definition weeks +abortion,"('medical abortion defined', 'medical abortion definition and types')",medical abortion defined,medical abortion definition and types,3,4,google,2026-03-12 19:50:47.154442,abortion definition according to who,medical abortion definition according to who,defined,definition and types +abortion,"('medical abortion defined', 'medical abortion definition according to who')",medical abortion defined,medical abortion definition according to who,4,4,google,2026-03-12 19:50:47.154442,abortion definition according to who,medical abortion definition according to who,defined,definition according to who +abortion,"('medical abortion defined', 'medical abortion definition in hindi')",medical abortion defined,medical abortion definition in hindi,5,4,google,2026-03-12 19:50:47.154442,abortion definition according to who,medical abortion definition according to who,defined,definition in hindi +abortion,"('medical abortion defined', 'medical abortion definition pdf')",medical abortion defined,medical abortion definition pdf,6,4,google,2026-03-12 19:50:47.154442,abortion definition according to who,medical abortion definition according to who,defined,definition pdf +abortion,"('medical abortion defined', 'medical abortion meaning in hindi')",medical abortion defined,medical abortion meaning in hindi,7,4,google,2026-03-12 19:50:47.154442,abortion definition according to who,medical abortion definition according to who,defined,meaning in hindi +abortion,"('medical abortion defined', 'medical abortion meaning in english')",medical abortion defined,medical abortion meaning in english,8,4,google,2026-03-12 19:50:47.154442,abortion definition according to who,medical abortion definition according to who,defined,meaning in english +abortion,"('medical abortion defined', 'medical abortion meaning in nepali')",medical abortion defined,medical abortion meaning in nepali,9,4,google,2026-03-12 19:50:47.154442,abortion definition according to who,medical abortion definition according to who,defined,meaning in nepali +abortion,"('medical abortion defined', 'medical abortion meaning in punjabi')",medical abortion defined,medical abortion meaning in punjabi,10,4,google,2026-03-12 19:50:47.154442,abortion definition according to who,medical abortion definition according to who,defined,meaning in punjabi +abortion,"('unsafe abortion definition according to who', 'illegal abortion definition according to who')",unsafe abortion definition according to who,illegal abortion definition according to who,1,4,google,2026-03-12 19:50:48.180472,abortion definition according to who,illegal abortion definition according to who,unsafe,illegal +abortion,"('unsafe abortion definition according to who', 'unsafe abortion definition who')",unsafe abortion definition according to who,unsafe abortion definition who,2,4,google,2026-03-12 19:50:48.180472,abortion definition according to who,illegal abortion definition according to who,unsafe,unsafe +abortion,"('unsafe abortion definition according to who', 'unsafe abortion definition world health organization')",unsafe abortion definition according to who,unsafe abortion definition world health organization,3,4,google,2026-03-12 19:50:48.180472,abortion definition according to who,illegal abortion definition according to who,unsafe,world health organization +abortion,"('unsafe abortion definition according to who', 'unsafe abortion types')",unsafe abortion definition according to who,unsafe abortion types,4,4,google,2026-03-12 19:50:48.180472,abortion definition according to who,illegal abortion definition according to who,unsafe,types +abortion,"('unsafe abortion definition according to who', 'unsafe abortions vs safe abortions')",unsafe abortion definition according to who,unsafe abortions vs safe abortions,5,4,google,2026-03-12 19:50:48.180472,abortion definition according to who,illegal abortion definition according to who,unsafe,abortions vs safe abortions +abortion,"('unsafe abortion definition according to who', 'unsafe abortion examples')",unsafe abortion definition according to who,unsafe abortion examples,6,4,google,2026-03-12 19:50:48.180472,abortion definition according to who,illegal abortion definition according to who,unsafe,examples +abortion,"('what type of abortion is illegal', 'what states abortion is illegal')",what type of abortion is illegal,what states abortion is illegal,1,4,google,2026-03-12 19:50:49.535193,abortion definition according to who,illegal abortion definition according to who,what type of is,states +abortion,"('what type of abortion is illegal', 'what type of abortion is banned')",what type of abortion is illegal,what type of abortion is banned,2,4,google,2026-03-12 19:50:49.535193,abortion definition according to who,illegal abortion definition according to who,what type of is,banned +abortion,"('what type of abortion is illegal', 'what type of abortion is legal')",what type of abortion is illegal,what type of abortion is legal,3,4,google,2026-03-12 19:50:49.535193,abortion definition according to who,illegal abortion definition according to who,what type of is,legal +abortion,"('what type of abortion is illegal', 'what type of abortion is legal in texas')",what type of abortion is illegal,what type of abortion is legal in texas,4,4,google,2026-03-12 19:50:49.535193,abortion definition according to who,illegal abortion definition according to who,what type of is,legal in texas +abortion,"('unlawful abortion definition', 'illegal abortion definition in medical')",unlawful abortion definition,illegal abortion definition in medical,1,4,google,2026-03-12 19:50:50.352561,abortion definition according to who,illegal abortion definition according to who,unlawful,illegal in medical +abortion,"('unlawful abortion definition', 'illegal abortion definition in hindi')",unlawful abortion definition,illegal abortion definition in hindi,2,4,google,2026-03-12 19:50:50.352561,abortion definition according to who,illegal abortion definition according to who,unlawful,illegal in hindi +abortion,"('unlawful abortion definition', 'illegal abortion definition in english')",unlawful abortion definition,illegal abortion definition in english,3,4,google,2026-03-12 19:50:50.352561,abortion definition according to who,illegal abortion definition according to who,unlawful,illegal in english +abortion,"('unlawful abortion definition', 'illegal abortion definition according to who')",unlawful abortion definition,illegal abortion definition according to who,4,4,google,2026-03-12 19:50:50.352561,abortion definition according to who,illegal abortion definition according to who,unlawful,illegal according to who +abortion,"('unlawful abortion definition', 'unsafe abortion definition')",unlawful abortion definition,unsafe abortion definition,5,4,google,2026-03-12 19:50:50.352561,abortion definition according to who,illegal abortion definition according to who,unlawful,unsafe +abortion,"('unlawful abortion definition', 'unlawful termination of a pregnancy')",unlawful abortion definition,unlawful termination of a pregnancy,6,4,google,2026-03-12 19:50:50.352561,abortion definition according to who,illegal abortion definition according to who,unlawful,termination of a pregnancy +abortion,"('unlawful abortion definition', 'unlawful abortion')",unlawful abortion definition,unlawful abortion,7,4,google,2026-03-12 19:50:50.352561,abortion definition according to who,illegal abortion definition according to who,unlawful,unlawful +abortion,"('unlawful abortion definition', 'outlaw abortion define')",unlawful abortion definition,outlaw abortion define,8,4,google,2026-03-12 19:50:50.352561,abortion definition according to who,illegal abortion definition according to who,unlawful,outlaw define +abortion,"('induced abortion definition according to who', 'spontaneous abortion definition according to who')",induced abortion definition according to who,spontaneous abortion definition according to who,1,4,google,2026-03-12 19:50:51.833749,abortion definition according to who,spontaneous abortion definition according to who,induced,spontaneous +abortion,"('induced abortion definition according to who', 'induced abortion definition who')",induced abortion definition according to who,induced abortion definition who,2,4,google,2026-03-12 19:50:51.833749,abortion definition according to who,spontaneous abortion definition according to who,induced,induced +abortion,"('induced abortion definition according to who', 'what is abortion according to who')",induced abortion definition according to who,what is abortion according to who,3,4,google,2026-03-12 19:50:51.833749,abortion definition according to who,spontaneous abortion definition according to who,induced,what is +abortion,"('induced abortion definition according to who', 'what is induced abortion class 12')",induced abortion definition according to who,what is induced abortion class 12,4,4,google,2026-03-12 19:50:51.833749,abortion definition according to who,spontaneous abortion definition according to who,induced,what is class 12 +abortion,"('induced abortion definition according to who', 'who definition of abortion')",induced abortion definition according to who,who definition of abortion,5,4,google,2026-03-12 19:50:51.833749,abortion definition according to who,spontaneous abortion definition according to who,induced,of +abortion,"('induced abortion definition according to who', 'induced abortion definition dictionary')",induced abortion definition according to who,induced abortion definition dictionary,6,4,google,2026-03-12 19:50:51.833749,abortion definition according to who,spontaneous abortion definition according to who,induced,dictionary +abortion,"('induced abortion definition according to who', 'induced abortion def')",induced abortion definition according to who,induced abortion def,7,4,google,2026-03-12 19:50:51.833749,abortion definition according to who,spontaneous abortion definition according to who,induced,def +abortion,"('induced abortion definition according to who', 'induced abortion medical definition')",induced abortion definition according to who,induced abortion medical definition,8,4,google,2026-03-12 19:50:51.833749,abortion definition according to who,spontaneous abortion definition according to who,induced,medical +abortion,"('induced abortion definition according to who', 'induced abortions meaning')",induced abortion definition according to who,induced abortions meaning,9,4,google,2026-03-12 19:50:51.833749,abortion definition according to who,spontaneous abortion definition according to who,induced,abortions meaning +abortion,"('miscarriage definition according to who', 'abortion definition according to who')",miscarriage definition according to who,abortion definition according to who,1,4,google,2026-03-12 19:50:53.324804,abortion definition according to who,spontaneous abortion definition according to who,miscarriage,abortion +abortion,"('miscarriage definition according to who', 'abortion definition according to who 2022')",miscarriage definition according to who,abortion definition according to who 2022,2,4,google,2026-03-12 19:50:53.324804,abortion definition according to who,spontaneous abortion definition according to who,miscarriage,abortion 2022 +abortion,"('miscarriage definition according to who', 'abortion definition according to who pdf')",miscarriage definition according to who,abortion definition according to who pdf,3,4,google,2026-03-12 19:50:53.324804,abortion definition according to who,spontaneous abortion definition according to who,miscarriage,abortion pdf +abortion,"('miscarriage definition according to who', 'abortion definition according to who ppt')",miscarriage definition according to who,abortion definition according to who ppt,4,4,google,2026-03-12 19:50:53.324804,abortion definition according to who,spontaneous abortion definition according to who,miscarriage,abortion ppt +abortion,"('miscarriage definition according to who', 'abortion definition acc to who')",miscarriage definition according to who,abortion definition acc to who,5,4,google,2026-03-12 19:50:53.324804,abortion definition according to who,spontaneous abortion definition according to who,miscarriage,abortion acc +abortion,"('miscarriage definition according to who', 'medical abortion definition according to who')",miscarriage definition according to who,medical abortion definition according to who,6,4,google,2026-03-12 19:50:53.324804,abortion definition according to who,spontaneous abortion definition according to who,miscarriage,medical abortion +abortion,"('miscarriage definition according to who', 'illegal abortion definition according to who')",miscarriage definition according to who,illegal abortion definition according to who,7,4,google,2026-03-12 19:50:53.324804,abortion definition according to who,spontaneous abortion definition according to who,miscarriage,illegal abortion +abortion,"('miscarriage definition according to who', 'spontaneous abortion definition according to who')",miscarriage definition according to who,spontaneous abortion definition according to who,8,4,google,2026-03-12 19:50:53.324804,abortion definition according to who,spontaneous abortion definition according to who,miscarriage,spontaneous abortion +abortion,"('miscarriage definition according to who', 'criminal abortion definition according to who')",miscarriage definition according to who,criminal abortion definition according to who,9,4,google,2026-03-12 19:50:53.324804,abortion definition according to who,spontaneous abortion definition according to who,miscarriage,criminal abortion +abortion,"('spontaneous abortion definition who', 'induced abortion definition who')",spontaneous abortion definition who,induced abortion definition who,1,4,google,2026-03-12 19:50:54.602534,abortion definition according to who,spontaneous abortion definition according to who,spontaneous,induced +abortion,"('spontaneous abortion definition who', 'spontaneous abortion definition according to who')",spontaneous abortion definition who,spontaneous abortion definition according to who,2,4,google,2026-03-12 19:50:54.602534,abortion definition according to who,spontaneous abortion definition according to who,spontaneous,according to +abortion,"('spontaneous abortion definition who', 'what is a spontaneous abortion mean')",spontaneous abortion definition who,what is a spontaneous abortion mean,3,4,google,2026-03-12 19:50:54.602534,abortion definition according to who,spontaneous abortion definition according to who,spontaneous,what is a mean +abortion,"('spontaneous abortion definition who', 'what does a spontaneous abortion mean')",spontaneous abortion definition who,what does a spontaneous abortion mean,4,4,google,2026-03-12 19:50:54.602534,abortion definition according to who,spontaneous abortion definition according to who,spontaneous,what does a mean +abortion,"('spontaneous abortion definition who', 'spontaneous abortion def')",spontaneous abortion definition who,spontaneous abortion def,5,4,google,2026-03-12 19:50:54.602534,abortion definition according to who,spontaneous abortion definition according to who,spontaneous,def +abortion,"('spontaneous abortion definition who', 'spontaneous abortion medical definition')",spontaneous abortion definition who,spontaneous abortion medical definition,6,4,google,2026-03-12 19:50:54.602534,abortion definition according to who,spontaneous abortion definition according to who,spontaneous,medical +abortion,"('spontaneous abortion definition who', 'spontaneous abortion or miscarriage definition')",spontaneous abortion definition who,spontaneous abortion or miscarriage definition,7,4,google,2026-03-12 19:50:54.602534,abortion definition according to who,spontaneous abortion definition according to who,spontaneous,or miscarriage +abortion,"('what is a spontaneous abortion mean', 'what is a spontaneous abortion definition')",what is a spontaneous abortion mean,what is a spontaneous abortion definition,1,4,google,2026-03-12 19:50:55.939245,abortion definition according to who,spontaneous abortion definition according to who,what is a mean,definition +abortion,"('what is a spontaneous abortion mean', 'what is induced abortion meaning')",what is a spontaneous abortion mean,what is induced abortion meaning,2,4,google,2026-03-12 19:50:55.939245,abortion definition according to who,spontaneous abortion definition according to who,what is a mean,induced meaning +abortion,"('what is a spontaneous abortion mean', 'what does a spontaneous miscarriage mean')",what is a spontaneous abortion mean,what does a spontaneous miscarriage mean,3,4,google,2026-03-12 19:50:55.939245,abortion definition according to who,spontaneous abortion definition according to who,what is a mean,does miscarriage +abortion,"('what is a spontaneous abortion mean', 'what does incomplete spontaneous abortion mean')",what is a spontaneous abortion mean,what does incomplete spontaneous abortion mean,4,4,google,2026-03-12 19:50:55.939245,abortion definition according to who,spontaneous abortion definition according to who,what is a mean,does incomplete +abortion,"('what is a spontaneous abortion mean', 'what does a spontaneous abortion mean')",what is a spontaneous abortion mean,what does a spontaneous abortion mean,5,4,google,2026-03-12 19:50:55.939245,abortion definition according to who,spontaneous abortion definition according to who,what is a mean,does +abortion,"('what is a spontaneous abortion mean', 'a spontaneous abortion is defined as')",what is a spontaneous abortion mean,a spontaneous abortion is defined as,6,4,google,2026-03-12 19:50:55.939245,abortion definition according to who,spontaneous abortion definition according to who,what is a mean,defined as +abortion,"('what is a spontaneous abortion mean', 'what is a spontaneous abortion miscarriage')",what is a spontaneous abortion mean,what is a spontaneous abortion miscarriage,7,4,google,2026-03-12 19:50:55.939245,abortion definition according to who,spontaneous abortion definition according to who,what is a mean,miscarriage +abortion,"('what is a spontaneous abortion mean', 'what is a spontaneous abortion')",what is a spontaneous abortion mean,what is a spontaneous abortion,8,4,google,2026-03-12 19:50:55.939245,abortion definition according to who,spontaneous abortion definition according to who,what is a mean,what is a mean +abortion,"('what is abortion spontaneous', 'what is spontaneous abortion mean')",what is abortion spontaneous,what is spontaneous abortion mean,1,4,google,2026-03-12 19:50:57.315167,abortion definition according to who,spontaneous abortion definition according to who,what is,mean +abortion,"('what is abortion spontaneous', 'what is spontaneous abortion definition')",what is abortion spontaneous,what is spontaneous abortion definition,2,4,google,2026-03-12 19:50:57.315167,abortion definition according to who,spontaneous abortion definition according to who,what is,definition +abortion,"('what is abortion spontaneous', 'what is spontaneous abortion vs miscarriage')",what is abortion spontaneous,what is spontaneous abortion vs miscarriage,3,4,google,2026-03-12 19:50:57.315167,abortion definition according to who,spontaneous abortion definition according to who,what is,vs miscarriage +abortion,"('what is abortion spontaneous', 'what is spontaneous abortion explain')",what is abortion spontaneous,what is spontaneous abortion explain,4,4,google,2026-03-12 19:50:57.315167,abortion definition according to who,spontaneous abortion definition according to who,what is,explain +abortion,"('what is abortion spontaneous', 'what is spontaneous abortion in hindi')",what is abortion spontaneous,what is spontaneous abortion in hindi,5,4,google,2026-03-12 19:50:57.315167,abortion definition according to who,spontaneous abortion definition according to who,what is,in hindi +abortion,"('what is abortion spontaneous', 'what is spontaneous abortion miscarriage')",what is abortion spontaneous,what is spontaneous abortion miscarriage,6,4,google,2026-03-12 19:50:57.315167,abortion definition according to who,spontaneous abortion definition according to who,what is,miscarriage +abortion,"('what is abortion spontaneous', 'what is spontaneous abortion in pregnancy')",what is abortion spontaneous,what is spontaneous abortion in pregnancy,7,4,google,2026-03-12 19:50:57.315167,abortion definition according to who,spontaneous abortion definition according to who,what is,in pregnancy +abortion,"('what is abortion spontaneous', 'what is spontaneous abortion in tagalog')",what is abortion spontaneous,what is spontaneous abortion in tagalog,8,4,google,2026-03-12 19:50:57.315167,abortion definition according to who,spontaneous abortion definition according to who,what is,in tagalog +abortion,"('what is abortion spontaneous', 'what is incomplete spontaneous abortion')",what is abortion spontaneous,what is incomplete spontaneous abortion,9,4,google,2026-03-12 19:50:57.315167,abortion definition according to who,spontaneous abortion definition according to who,what is,incomplete +abortion,"('spontaneous abortion acronym', 'spontaneous abortion meaning')",spontaneous abortion acronym,spontaneous abortion meaning,1,4,google,2026-03-12 19:50:58.377438,abortion definition according to who,spontaneous abortion definition according to who,acronym,meaning +abortion,"('spontaneous abortion acronym', 'spontaneous abortion meaning in hindi')",spontaneous abortion acronym,spontaneous abortion meaning in hindi,2,4,google,2026-03-12 19:50:58.377438,abortion definition according to who,spontaneous abortion definition according to who,acronym,meaning in hindi +abortion,"('spontaneous abortion acronym', 'spontaneous abortion abbreviation')",spontaneous abortion acronym,spontaneous abortion abbreviation,3,4,google,2026-03-12 19:50:58.377438,abortion definition according to who,spontaneous abortion definition according to who,acronym,abbreviation +abortion,"('spontaneous abortion acronym', 'spontaneous abortion meaning in bengali')",spontaneous abortion acronym,spontaneous abortion meaning in bengali,4,4,google,2026-03-12 19:50:58.377438,abortion definition according to who,spontaneous abortion definition according to who,acronym,meaning in bengali +abortion,"('spontaneous abortion acronym', 'spontaneous abortion meaning in english')",spontaneous abortion acronym,spontaneous abortion meaning in english,5,4,google,2026-03-12 19:50:58.377438,abortion definition according to who,spontaneous abortion definition according to who,acronym,meaning in english +abortion,"('spontaneous abortion acronym', 'spontaneous abortion meaning in hindi and examples')",spontaneous abortion acronym,spontaneous abortion meaning in hindi and examples,6,4,google,2026-03-12 19:50:58.377438,abortion definition according to who,spontaneous abortion definition according to who,acronym,meaning in hindi and examples +abortion,"('spontaneous abortion acronym', 'spontaneous abortion meaning in tagalog')",spontaneous abortion acronym,spontaneous abortion meaning in tagalog,7,4,google,2026-03-12 19:50:58.377438,abortion definition according to who,spontaneous abortion definition according to who,acronym,meaning in tagalog +abortion,"('spontaneous abortion acronym', 'spontaneous abortion meaning in hindi pdf')",spontaneous abortion acronym,spontaneous abortion meaning in hindi pdf,8,4,google,2026-03-12 19:50:58.377438,abortion definition according to who,spontaneous abortion definition according to who,acronym,meaning in hindi pdf +abortion,"('spontaneous abortion acronym', 'spontaneous abortion meaning in arabic')",spontaneous abortion acronym,spontaneous abortion meaning in arabic,9,4,google,2026-03-12 19:50:58.377438,abortion definition according to who,spontaneous abortion definition according to who,acronym,meaning in arabic +abortion,"('spontaneous abortion def', 'spontaneous abortion definition')",spontaneous abortion def,spontaneous abortion definition,1,4,google,2026-03-12 19:50:59.770184,abortion definition according to who,spontaneous abortion definition according to who,def,definition +abortion,"('spontaneous abortion def', 'spontaneous abortion definition according to who')",spontaneous abortion def,spontaneous abortion definition according to who,2,4,google,2026-03-12 19:50:59.770184,abortion definition according to who,spontaneous abortion definition according to who,def,definition according to who +abortion,"('spontaneous abortion def', 'spontaneous abortion definition in hindi')",spontaneous abortion def,spontaneous abortion definition in hindi,3,4,google,2026-03-12 19:50:59.770184,abortion definition according to who,spontaneous abortion definition according to who,def,definition in hindi +abortion,"('spontaneous abortion def', 'spontaneous abortion definition ppt')",spontaneous abortion def,spontaneous abortion definition ppt,4,4,google,2026-03-12 19:50:59.770184,abortion definition according to who,spontaneous abortion definition according to who,def,definition ppt +abortion,"('spontaneous abortion def', 'spontaneous abortion definition acog')",spontaneous abortion def,spontaneous abortion definition acog,5,4,google,2026-03-12 19:50:59.770184,abortion definition according to who,spontaneous abortion definition according to who,def,definition acog +abortion,"('spontaneous abortion def', 'spontaneous abortion definition in obg')",spontaneous abortion def,spontaneous abortion definition in obg,6,4,google,2026-03-12 19:50:59.770184,abortion definition according to who,spontaneous abortion definition according to who,def,definition in obg +abortion,"('spontaneous abortion def', 'spontaneous abortion definition simple')",spontaneous abortion def,spontaneous abortion definition simple,7,4,google,2026-03-12 19:50:59.770184,abortion definition according to who,spontaneous abortion definition according to who,def,definition simple +abortion,"('spontaneous abortion def', 'induced abortion definition')",spontaneous abortion def,induced abortion definition,8,4,google,2026-03-12 19:50:59.770184,abortion definition according to who,spontaneous abortion definition according to who,def,induced definition +abortion,"('spontaneous abortion def', 'natural abortion definition')",spontaneous abortion def,natural abortion definition,9,4,google,2026-03-12 19:50:59.770184,abortion definition according to who,spontaneous abortion definition according to who,def,natural definition +abortion,"('spontaneous abortion def', 'induced abortion definition in hindi')",spontaneous abortion def,induced abortion definition in hindi,10,4,google,2026-03-12 19:50:59.770184,abortion definition according to who,spontaneous abortion definition according to who,def,induced definition in hindi +abortion,"('spontaneous abortion medical definition', 'induced abortion medical definition')",spontaneous abortion medical definition,induced abortion medical definition,1,4,google,2026-03-12 19:51:01.056507,abortion definition according to who,spontaneous abortion definition according to who,medical,induced +abortion,"('spontaneous abortion medical definition', 'spontaneous abortion medical term')",spontaneous abortion medical definition,spontaneous abortion medical term,2,4,google,2026-03-12 19:51:01.056507,abortion definition according to who,spontaneous abortion definition according to who,medical,term +abortion,"('spontaneous abortion medical definition', 'spontaneous abortion medical abbreviation')",spontaneous abortion medical definition,spontaneous abortion medical abbreviation,3,4,google,2026-03-12 19:51:01.056507,abortion definition according to who,spontaneous abortion definition according to who,medical,abbreviation +abortion,"('spontaneous abortion medical definition', 'natural abortion medical term')",spontaneous abortion medical definition,natural abortion medical term,4,4,google,2026-03-12 19:51:01.056507,abortion definition according to who,spontaneous abortion definition according to who,medical,natural term +abortion,"('spontaneous abortion medical definition', 'induced abortion medical term')",spontaneous abortion medical definition,induced abortion medical term,5,4,google,2026-03-12 19:51:01.056507,abortion definition according to who,spontaneous abortion definition according to who,medical,induced term +abortion,"('spontaneous abortion medical definition', 'induced abortion medical abbreviation')",spontaneous abortion medical definition,induced abortion medical abbreviation,6,4,google,2026-03-12 19:51:01.056507,abortion definition according to who,spontaneous abortion definition according to who,medical,induced abbreviation +abortion,"('spontaneous abortion medical definition', 'spontaneous miscarriage medical term')",spontaneous abortion medical definition,spontaneous miscarriage medical term,7,4,google,2026-03-12 19:51:01.056507,abortion definition according to who,spontaneous abortion definition according to who,medical,miscarriage term +abortion,"('spontaneous abortion medical definition', 'what is a spontaneous abortion mean')",spontaneous abortion medical definition,what is a spontaneous abortion mean,8,4,google,2026-03-12 19:51:01.056507,abortion definition according to who,spontaneous abortion definition according to who,medical,what is a mean +abortion,"('spontaneous abortion medical definition', 'what does a spontaneous abortion mean')",spontaneous abortion medical definition,what does a spontaneous abortion mean,9,4,google,2026-03-12 19:51:01.056507,abortion definition according to who,spontaneous abortion definition according to who,medical,what does a mean +abortion,"('what is criminal abortion', 'what is illegal abortion definition')",what is criminal abortion,what is illegal abortion definition,1,4,google,2026-03-12 19:51:02.563696,abortion definition according to who,criminal abortion definition according to who,what is,illegal definition +abortion,"('what is criminal abortion', 'what is illegal abortion in india')",what is criminal abortion,what is illegal abortion in india,2,4,google,2026-03-12 19:51:02.563696,abortion definition according to who,criminal abortion definition according to who,what is,illegal in india +abortion,"('what is criminal abortion', 'what crime is abortion')",what is criminal abortion,what crime is abortion,3,4,google,2026-03-12 19:51:02.563696,abortion definition according to who,criminal abortion definition according to who,what is,crime +abortion,"('what is criminal abortion', 'what states is illegal abortion')",what is criminal abortion,what states is illegal abortion,4,4,google,2026-03-12 19:51:02.563696,abortion definition according to who,criminal abortion definition according to who,what is,states illegal +abortion,"('what is criminal abortion', 'what is the meaning of criminal abortion')",what is criminal abortion,what is the meaning of criminal abortion,5,4,google,2026-03-12 19:51:02.563696,abortion definition according to who,criminal abortion definition according to who,what is,the meaning of +abortion,"('what is criminal abortion', 'what does criminalizing abortion mean')",what is criminal abortion,what does criminalizing abortion mean,6,4,google,2026-03-12 19:51:02.563696,abortion definition according to who,criminal abortion definition according to who,what is,does criminalizing mean +abortion,"('what is criminal abortion', 'abortion criminal charges')",what is criminal abortion,abortion criminal charges,7,4,google,2026-03-12 19:51:02.563696,abortion definition according to who,criminal abortion definition according to who,what is,charges +abortion,"('what is criminal abortion', 'abortion criminal offence')",what is criminal abortion,abortion criminal offence,8,4,google,2026-03-12 19:51:02.563696,abortion definition according to who,criminal abortion definition according to who,what is,offence +abortion,"('what is criminal abortion', 'is abortion a criminal offense')",what is criminal abortion,is abortion a criminal offense,9,4,google,2026-03-12 19:51:02.563696,abortion definition according to who,criminal abortion definition according to who,what is,a offense +abortion,"('criminal abortion california', 'abortion illegal california')",criminal abortion california,abortion illegal california,1,4,google,2026-03-12 19:51:03.797419,abortion definition according to who,criminal abortion definition according to who,california,illegal +abortion,"('criminal abortion california', 'what is criminal abortion')",criminal abortion california,what is criminal abortion,2,4,google,2026-03-12 19:51:03.797419,abortion definition according to who,criminal abortion definition according to who,california,what is +abortion,"('criminal abortion california', 'is abortion legal in california')",criminal abortion california,is abortion legal in california,3,4,google,2026-03-12 19:51:03.797419,abortion definition according to who,criminal abortion definition according to who,california,is legal in +abortion,"('criminal abortion california', 'criminal abortion cases')",criminal abortion california,criminal abortion cases,4,4,google,2026-03-12 19:51:03.797419,abortion definition according to who,criminal abortion definition according to who,california,cases +abortion,"('criminal abortion california', 'criminal abortion laws')",criminal abortion california,criminal abortion laws,5,4,google,2026-03-12 19:51:03.797419,abortion definition according to who,criminal abortion definition according to who,california,laws +abortion,"('criminal abortion california', 'criminal abortion sentence')",criminal abortion california,criminal abortion sentence,6,4,google,2026-03-12 19:51:03.797419,abortion definition according to who,criminal abortion definition according to who,california,sentence +abortion,"('criminal abortion definition', 'criminal abortion definition according to who')",criminal abortion definition,criminal abortion definition according to who,1,4,google,2026-03-12 19:51:04.711749,abortion definition according to who,criminal abortion definition according to who,criminal,according to who +abortion,"('criminal abortion definition', 'illegal abortion definition in medical')",criminal abortion definition,illegal abortion definition in medical,2,4,google,2026-03-12 19:51:04.711749,abortion definition according to who,criminal abortion definition according to who,criminal,illegal in medical +abortion,"('criminal abortion definition', 'illegal abortion definition in hindi')",criminal abortion definition,illegal abortion definition in hindi,3,4,google,2026-03-12 19:51:04.711749,abortion definition according to who,criminal abortion definition according to who,criminal,illegal in hindi +abortion,"('criminal abortion definition', 'illegal abortion definition in english')",criminal abortion definition,illegal abortion definition in english,4,4,google,2026-03-12 19:51:04.711749,abortion definition according to who,criminal abortion definition according to who,criminal,illegal in english +abortion,"('criminal abortion definition', 'illegal abortion definition according to who')",criminal abortion definition,illegal abortion definition according to who,5,4,google,2026-03-12 19:51:04.711749,abortion definition according to who,criminal abortion definition according to who,criminal,illegal according to who +abortion,"('criminal abortion definition', 'criminal abortion meaning in hindi')",criminal abortion definition,criminal abortion meaning in hindi,6,4,google,2026-03-12 19:51:04.711749,abortion definition according to who,criminal abortion definition according to who,criminal,meaning in hindi +abortion,"('criminal abortion definition', 'criminal abortion meaning in law')",criminal abortion definition,criminal abortion meaning in law,7,4,google,2026-03-12 19:51:04.711749,abortion definition according to who,criminal abortion definition according to who,criminal,meaning in law +abortion,"('criminal abortion definition', 'criminal abortion meaning in marathi')",criminal abortion definition,criminal abortion meaning in marathi,8,4,google,2026-03-12 19:51:04.711749,abortion definition according to who,criminal abortion definition according to who,criminal,meaning in marathi +abortion,"('criminal abortion definition', 'what is criminal abortion')",criminal abortion definition,what is criminal abortion,9,4,google,2026-03-12 19:51:04.711749,abortion definition according to who,criminal abortion definition according to who,criminal,what is +abortion,"('define criminal abortion', 'explain criminal abortion')",define criminal abortion,explain criminal abortion,1,4,google,2026-03-12 19:51:06.122984,abortion definition according to who,criminal abortion definition according to who,define,explain +abortion,"('define criminal abortion', 'what is criminal abortion wikipedia')",define criminal abortion,what is criminal abortion wikipedia,2,4,google,2026-03-12 19:51:06.122984,abortion definition according to who,criminal abortion definition according to who,define,what is wikipedia +abortion,"('define criminal abortion', 'definition of criminal abortion')",define criminal abortion,definition of criminal abortion,3,4,google,2026-03-12 19:51:06.122984,abortion definition according to who,criminal abortion definition according to who,define,definition of +abortion,"('define criminal abortion', 'what is criminal abortion')",define criminal abortion,what is criminal abortion,4,4,google,2026-03-12 19:51:06.122984,abortion definition according to who,criminal abortion definition according to who,define,what is +abortion,"('define criminal abortion', 'meaning of criminal abortion')",define criminal abortion,meaning of criminal abortion,5,4,google,2026-03-12 19:51:06.122984,abortion definition according to who,criminal abortion definition according to who,define,meaning of +abortion,"('define criminal abortion', 'abortion criminal offence')",define criminal abortion,abortion criminal offence,6,4,google,2026-03-12 19:51:06.122984,abortion definition according to who,criminal abortion definition according to who,define,offence +abortion,"('define criminal abortion', 'abortion criminal defense')",define criminal abortion,abortion criminal defense,7,4,google,2026-03-12 19:51:06.122984,abortion definition according to who,criminal abortion definition according to who,define,defense +abortion,"('define criminal abortion', 'what does criminalizing abortion mean')",define criminal abortion,what does criminalizing abortion mean,8,4,google,2026-03-12 19:51:06.122984,abortion definition according to who,criminal abortion definition according to who,define,what does criminalizing mean +abortion,"('define criminal abortion', 'abortion criminal penalties')",define criminal abortion,abortion criminal penalties,9,4,google,2026-03-12 19:51:06.122984,abortion definition according to who,criminal abortion definition according to who,define,penalties +abortion,"('inevitable abortion definition according to who', 'threatened abortion definition according to who')",inevitable abortion definition according to who,threatened abortion definition according to who,1,4,google,2026-03-12 19:51:07.584192,abortion definition according to who,threatened abortion definition according to who,inevitable,threatened +abortion,"('inevitable abortion definition according to who', 'incomplete abortion definition according to who')",inevitable abortion definition according to who,incomplete abortion definition according to who,2,4,google,2026-03-12 19:51:07.584192,abortion definition according to who,threatened abortion definition according to who,inevitable,incomplete +abortion,"('inevitable abortion definition according to who', 'missed abortion definition according to who')",inevitable abortion definition according to who,missed abortion definition according to who,3,4,google,2026-03-12 19:51:07.584192,abortion definition according to who,threatened abortion definition according to who,inevitable,missed +abortion,"('inevitable abortion definition according to who', 'inevitable abortion definition')",inevitable abortion definition according to who,inevitable abortion definition,4,4,google,2026-03-12 19:51:07.584192,abortion definition according to who,threatened abortion definition according to who,inevitable,inevitable +abortion,"('inevitable abortion definition according to who', 'inevitable.abortion')",inevitable abortion definition according to who,inevitable.abortion,5,4,google,2026-03-12 19:51:07.584192,abortion definition according to who,threatened abortion definition according to who,inevitable,inevitable.abortion +abortion,"('inevitable abortion definition according to who', 'inevitable definition in your own words')",inevitable abortion definition according to who,inevitable definition in your own words,6,4,google,2026-03-12 19:51:07.584192,abortion definition according to who,threatened abortion definition according to who,inevitable,in your own words +abortion,"('inevitable abortion definition according to who', 'inevitable abortion vs threatened abortion')",inevitable abortion definition according to who,inevitable abortion vs threatened abortion,7,4,google,2026-03-12 19:51:07.584192,abortion definition according to who,threatened abortion definition according to who,inevitable,vs threatened +abortion,"('types of abortion threatened', 'types of abortion threatened inevitable')",types of abortion threatened,types of abortion threatened inevitable,1,4,google,2026-03-12 19:51:08.793287,abortion definition according to who,threatened abortion definition according to who,types of,inevitable +abortion,"('types of abortion threatened', 'types of abortion threatened missed')",types of abortion threatened,types of abortion threatened missed,2,4,google,2026-03-12 19:51:08.793287,abortion definition according to who,threatened abortion definition according to who,types of,missed +abortion,"('types of abortion threatened', 'types of abortion threatened incomplete')",types of abortion threatened,types of abortion threatened incomplete,3,4,google,2026-03-12 19:51:08.793287,abortion definition according to who,threatened abortion definition according to who,types of,incomplete +abortion,"('types of abortion threatened', 'what are the 7 types of abortion threatened')",types of abortion threatened,what are the 7 types of abortion threatened,4,4,google,2026-03-12 19:51:08.793287,abortion definition according to who,threatened abortion definition according to who,types of,what are the 7 +abortion,"('types of abortion threatened', 'threatened abortion vs miscarriage')",types of abortion threatened,threatened abortion vs miscarriage,5,4,google,2026-03-12 19:51:08.793287,abortion definition according to who,threatened abortion definition according to who,types of,vs miscarriage +abortion,"('types of abortion threatened', 'threatened abortion definition')",types of abortion threatened,threatened abortion definition,6,4,google,2026-03-12 19:51:08.793287,abortion definition according to who,threatened abortion definition according to who,types of,definition +abortion,"('types of abortion threatened', 'threatened abortion vs threatened miscarriage')",types of abortion threatened,threatened abortion vs threatened miscarriage,7,4,google,2026-03-12 19:51:08.793287,abortion definition according to who,threatened abortion definition according to who,types of,vs miscarriage +abortion,"('types of abortion threatened', 'threatened abortion risk of miscarriage')",types of abortion threatened,threatened abortion risk of miscarriage,8,4,google,2026-03-12 19:51:08.793287,abortion definition according to who,threatened abortion definition according to who,types of,risk miscarriage +abortion,"('what do you mean by threatened abortion', 'what does it mean by threatened abortion')",what do you mean by threatened abortion,what does it mean by threatened abortion,1,4,google,2026-03-12 19:51:09.904304,abortion definition according to who,threatened abortion definition according to who,what do you mean by,does it +abortion,"('what do you mean by threatened abortion', 'what is threatened abortion')",what do you mean by threatened abortion,what is threatened abortion,2,4,google,2026-03-12 19:51:09.904304,abortion definition according to who,threatened abortion definition according to who,what do you mean by,is +abortion,"('what do you mean by threatened abortion', 'what is threatened abortion in pregnancy')",what do you mean by threatened abortion,what is threatened abortion in pregnancy,3,4,google,2026-03-12 19:51:09.904304,abortion definition according to who,threatened abortion definition according to who,what do you mean by,is in pregnancy +abortion,"('what do you mean by threatened abortion', 'types of abortion threatened')",what do you mean by threatened abortion,types of abortion threatened,4,4,google,2026-03-12 19:51:09.904304,abortion definition according to who,threatened abortion definition according to who,what do you mean by,types of +abortion,"('what do you mean by threatened abortion', 'what does it mean by threatened miscarriage')",what do you mean by threatened abortion,what does it mean by threatened miscarriage,5,4,google,2026-03-12 19:51:09.904304,abortion definition according to who,threatened abortion definition according to who,what do you mean by,does it miscarriage +abortion,"('what do you mean by threatened abortion', 'threatened abortion definition')",what do you mean by threatened abortion,threatened abortion definition,6,4,google,2026-03-12 19:51:09.904304,abortion definition according to who,threatened abortion definition according to who,what do you mean by,definition +abortion,"('what do you mean by threatened abortion', 'what does threatened abortion in early pregnancy mean')",what do you mean by threatened abortion,what does threatened abortion in early pregnancy mean,7,4,google,2026-03-12 19:51:09.904304,abortion definition according to who,threatened abortion definition according to who,what do you mean by,does in early pregnancy +abortion,"('what is threatened abortion', 'what is threatened abortion mean')",what is threatened abortion,what is threatened abortion mean,1,4,google,2026-03-12 19:51:10.936362,abortion definition according to who,threatened abortion definition according to who,what is,mean +abortion,"('what is threatened abortion', 'what is threatened abortion in pregnancy')",what is threatened abortion,what is threatened abortion in pregnancy,2,4,google,2026-03-12 19:51:10.936362,abortion definition according to who,threatened abortion definition according to who,what is,in pregnancy +abortion,"('what is threatened abortion', 'what is threatened abortion in hindi')",what is threatened abortion,what is threatened abortion in hindi,3,4,google,2026-03-12 19:51:10.936362,abortion definition according to who,threatened abortion definition according to who,what is,in hindi +abortion,"('what is threatened abortion', 'what is threatened abortion definition')",what is threatened abortion,what is threatened abortion definition,4,4,google,2026-03-12 19:51:10.936362,abortion definition according to who,threatened abortion definition according to who,what is,definition +abortion,"('what is threatened abortion', 'what is threatened abortion diagnosis')",what is threatened abortion,what is threatened abortion diagnosis,5,4,google,2026-03-12 19:51:10.936362,abortion definition according to who,threatened abortion definition according to who,what is,diagnosis +abortion,"('what is threatened abortion', 'threatened abortion')",what is threatened abortion,threatened abortion,6,4,google,2026-03-12 19:51:10.936362,abortion definition according to who,threatened abortion definition according to who,what is,what is +abortion,"('what is threatened abortion', 'what is inevitable abortion')",what is threatened abortion,what is inevitable abortion,7,4,google,2026-03-12 19:51:10.936362,abortion definition according to who,threatened abortion definition according to who,what is,inevitable +abortion,"('what is threatened abortion', 'what is inevitable abortion in pregnancy')",what is threatened abortion,what is inevitable abortion in pregnancy,8,4,google,2026-03-12 19:51:10.936362,abortion definition according to who,threatened abortion definition according to who,what is,inevitable in pregnancy +abortion,"('what is threatened abortion', 'what is inevitable abortion in hindi')",what is threatened abortion,what is inevitable abortion in hindi,9,4,google,2026-03-12 19:51:10.936362,abortion definition according to who,threatened abortion definition according to who,what is,inevitable in hindi +abortion,"('types of abortion threatened inevitable', 'types of abortion complete incomplete threatened inevitable etc')",types of abortion threatened inevitable,types of abortion complete incomplete threatened inevitable etc,1,4,google,2026-03-12 19:51:12.369219,abortion definition according to who,threatened abortion definition according to who,types of inevitable,complete incomplete etc +abortion,"('types of abortion threatened inevitable', 'types of abortion threatened')",types of abortion threatened inevitable,types of abortion threatened,2,4,google,2026-03-12 19:51:12.369219,abortion definition according to who,threatened abortion definition according to who,types of inevitable,types of inevitable +abortion,"('types of abortion threatened inevitable', 'inevitable vs threatened abortion')",types of abortion threatened inevitable,inevitable vs threatened abortion,3,4,google,2026-03-12 19:51:12.369219,abortion definition according to who,threatened abortion definition according to who,types of inevitable,vs +abortion,"('types of abortion threatened inevitable', 'types of abortion missed threatened')",types of abortion threatened inevitable,types of abortion missed threatened,4,4,google,2026-03-12 19:51:12.369219,abortion definition according to who,threatened abortion definition according to who,types of inevitable,missed +abortion,"('types of abortion threatened inevitable', 'threatened abortion vs inevitable abortion')",types of abortion threatened inevitable,threatened abortion vs inevitable abortion,5,4,google,2026-03-12 19:51:12.369219,abortion definition according to who,threatened abortion definition according to who,types of inevitable,vs +abortion,"('types of abortion threatened inevitable', 'threatened abortion vs threatened miscarriage')",types of abortion threatened inevitable,threatened abortion vs threatened miscarriage,6,4,google,2026-03-12 19:51:12.369219,abortion definition according to who,threatened abortion definition according to who,types of inevitable,vs miscarriage +abortion,"('what is threatened abortion in pregnancy', 'what is inevitable abortion in pregnancy')",what is threatened abortion in pregnancy,what is inevitable abortion in pregnancy,1,4,google,2026-03-12 19:51:13.669521,abortion definition according to who,threatened abortion definition according to who,what is in pregnancy,inevitable +abortion,"('what is threatened abortion in pregnancy', 'what causes threatened abortion in pregnancy')",what is threatened abortion in pregnancy,what causes threatened abortion in pregnancy,2,4,google,2026-03-12 19:51:13.669521,abortion definition according to who,threatened abortion definition according to who,what is in pregnancy,causes +abortion,"('what is threatened abortion in pregnancy', 'what is threatened miscarriage in early pregnancy')",what is threatened abortion in pregnancy,what is threatened miscarriage in early pregnancy,3,4,google,2026-03-12 19:51:13.669521,abortion definition according to who,threatened abortion definition according to who,what is in pregnancy,miscarriage early +abortion,"('what is threatened abortion in pregnancy', 'what does threatened abortion in early pregnancy mean')",what is threatened abortion in pregnancy,what does threatened abortion in early pregnancy mean,4,4,google,2026-03-12 19:51:13.669521,abortion definition according to who,threatened abortion definition according to who,what is in pregnancy,does early mean +abortion,"('what is threatened abortion in pregnancy', 'what is threatened abortion')",what is threatened abortion in pregnancy,what is threatened abortion,5,4,google,2026-03-12 19:51:13.669521,abortion definition according to who,threatened abortion definition according to who,what is in pregnancy,what is in pregnancy +abortion,"('what is threatened abortion in pregnancy', 'what is considered a threatened miscarriage')",what is threatened abortion in pregnancy,what is considered a threatened miscarriage,6,4,google,2026-03-12 19:51:13.669521,abortion definition according to who,threatened abortion definition according to who,what is in pregnancy,considered a miscarriage +abortion,"('what is threatened abortion in pregnancy', 'what is a threatened miscarriage')",what is threatened abortion in pregnancy,what is a threatened miscarriage,7,4,google,2026-03-12 19:51:13.669521,abortion definition according to who,threatened abortion definition according to who,what is in pregnancy,a miscarriage +abortion,"('what is threatened abortion in pregnancy', 'what is a threatened pregnancy')",what is threatened abortion in pregnancy,what is a threatened pregnancy,8,4,google,2026-03-12 19:51:13.669521,abortion definition according to who,threatened abortion definition according to who,what is in pregnancy,a +abortion,"('what is threatened abortion in pregnancy', 'what is threatened abortion definition')",what is threatened abortion in pregnancy,what is threatened abortion definition,9,4,google,2026-03-12 19:51:13.669521,abortion definition according to who,threatened abortion definition according to who,what is in pregnancy,definition +abortion,"('threatened abortion quizlet', 'threatened abortion icd 10 quizlet')",threatened abortion quizlet,threatened abortion icd 10 quizlet,1,4,google,2026-03-12 19:51:15.149233,abortion definition according to who,threatened abortion definition according to who,quizlet,icd 10 +abortion,"('threatened abortion quizlet', 'what do you mean by threatened abortion')",threatened abortion quizlet,what do you mean by threatened abortion,2,4,google,2026-03-12 19:51:15.149233,abortion definition according to who,threatened abortion definition according to who,quizlet,what do you mean by +abortion,"('threatened abortion quizlet', 'types of abortion threatened')",threatened abortion quizlet,types of abortion threatened,3,4,google,2026-03-12 19:51:15.149233,abortion definition according to who,threatened abortion definition according to who,quizlet,types of +abortion,"('threatened abortion quizlet', 'types of abortion missed threatened')",threatened abortion quizlet,types of abortion missed threatened,4,4,google,2026-03-12 19:51:15.149233,abortion definition according to who,threatened abortion definition according to who,quizlet,types of missed +abortion,"('threatened abortion quizlet', 'what is threatened abortion')",threatened abortion quizlet,what is threatened abortion,5,4,google,2026-03-12 19:51:15.149233,abortion definition according to who,threatened abortion definition according to who,quizlet,what is +abortion,"('threatened abortion quizlet', 'threatened abortion definition')",threatened abortion quizlet,threatened abortion definition,6,4,google,2026-03-12 19:51:15.149233,abortion definition according to who,threatened abortion definition according to who,quizlet,definition +abortion,"('threatened abortion quizlet', 'threatened abortion treatment')",threatened abortion quizlet,threatened abortion treatment,7,4,google,2026-03-12 19:51:15.149233,abortion definition according to who,threatened abortion definition according to who,quizlet,treatment +abortion,"('threatened abortion quizlet', 'threatened abortion medical term')",threatened abortion quizlet,threatened abortion medical term,8,4,google,2026-03-12 19:51:15.149233,abortion definition according to who,threatened abortion definition according to who,quizlet,medical term +abortion,"('threatened abortion quizlet', 'threatened abortion vs threatened miscarriage')",threatened abortion quizlet,threatened abortion vs threatened miscarriage,9,4,google,2026-03-12 19:51:15.149233,abortion definition according to who,threatened abortion definition according to who,quizlet,vs miscarriage +abortion,"('threatened definition biology', 'extinct definition biology')",threatened definition biology,extinct definition biology,1,4,google,2026-03-12 19:51:16.244113,abortion definition according to who,threatened abortion definition according to who,biology,extinct +abortion,"('threatened definition biology', 'vulnerable definition biology')",threatened definition biology,vulnerable definition biology,2,4,google,2026-03-12 19:51:16.244113,abortion definition according to who,threatened abortion definition according to who,biology,vulnerable +abortion,"('threatened definition biology', 'extinct definition biology simple')",threatened definition biology,extinct definition biology simple,3,4,google,2026-03-12 19:51:16.244113,abortion definition according to who,threatened abortion definition according to who,biology,extinct simple +abortion,"('threatened definition biology', 'extinct definition biology example')",threatened definition biology,extinct definition biology example,4,4,google,2026-03-12 19:51:16.244113,abortion definition according to who,threatened abortion definition according to who,biology,extinct example +abortion,"('threatened definition biology', 'threat meaning biology')",threatened definition biology,threat meaning biology,5,4,google,2026-03-12 19:51:16.244113,abortion definition according to who,threatened abortion definition according to who,biology,threat meaning +abortion,"('threatened definition biology', 'threatened species definition biology')",threatened definition biology,threatened species definition biology,6,4,google,2026-03-12 19:51:16.244113,abortion definition according to who,threatened abortion definition according to who,biology,species +abortion,"('threatened definition biology', 'threatened meaning in biology')",threatened definition biology,threatened meaning in biology,7,4,google,2026-03-12 19:51:16.244113,abortion definition according to who,threatened abortion definition according to who,biology,meaning in +abortion,"('threatened definition biology', 'threatened definition')",threatened definition biology,threatened definition,8,4,google,2026-03-12 19:51:16.244113,abortion definition according to who,threatened abortion definition according to who,biology,biology +abortion,"('threatened definition biology', 'threatened definition science')",threatened definition biology,threatened definition science,9,4,google,2026-03-12 19:51:16.244113,abortion definition according to who,threatened abortion definition according to who,biology,science +abortion,"('abortion definition dictionary', 'abortion definition oxford dictionary')",abortion definition dictionary,abortion definition oxford dictionary,1,4,google,2026-03-12 19:51:17.369919,abortion definition oxford,abortion definition oxford dictionary,dictionary,oxford +abortion,"('abortion definition dictionary', 'abortion definition webster dictionary')",abortion definition dictionary,abortion definition webster dictionary,2,4,google,2026-03-12 19:51:17.369919,abortion definition oxford,abortion definition oxford dictionary,dictionary,webster +abortion,"('abortion definition dictionary', 'abortion dictionary meaning')",abortion definition dictionary,abortion dictionary meaning,3,4,google,2026-03-12 19:51:17.369919,abortion definition oxford,abortion definition oxford dictionary,dictionary,meaning +abortion,"('abortion definition dictionary', 'types of abortion definition')",abortion definition dictionary,types of abortion definition,4,4,google,2026-03-12 19:51:17.369919,abortion definition oxford,abortion definition oxford dictionary,dictionary,types of +abortion,"('abortion definition dictionary', 'abortion dictionary')",abortion definition dictionary,abortion dictionary,5,4,google,2026-03-12 19:51:17.369919,abortion definition oxford,abortion definition oxford dictionary,dictionary,dictionary +abortion,"('abortion dictionary meaning', 'miscarriage meaning dictionary')",abortion dictionary meaning,miscarriage meaning dictionary,1,4,google,2026-03-12 19:51:18.659451,abortion definition oxford,abortion definition oxford dictionary,meaning,miscarriage +abortion,"('abortion dictionary meaning', 'what does the word abortion mean')",abortion dictionary meaning,what does the word abortion mean,2,4,google,2026-03-12 19:51:18.659451,abortion definition oxford,abortion definition oxford dictionary,meaning,what does the word mean +abortion,"('abortion dictionary meaning', 'what is the meaning of abortion in english')",abortion dictionary meaning,what is the meaning of abortion in english,3,4,google,2026-03-12 19:51:18.659451,abortion definition oxford,abortion definition oxford dictionary,meaning,what is the of in english +abortion,"('abortion dictionary meaning', 'abortion definition dictionary')",abortion dictionary meaning,abortion definition dictionary,4,4,google,2026-03-12 19:51:18.659451,abortion definition oxford,abortion definition oxford dictionary,meaning,definition +abortion,"('abortion dictionary meaning', 'abortion dictionary')",abortion dictionary meaning,abortion dictionary,5,4,google,2026-03-12 19:51:18.659451,abortion definition oxford,abortion definition oxford dictionary,meaning,meaning +abortion,"('abortion dictionary meaning', 'abortion medical dictionary')",abortion dictionary meaning,abortion medical dictionary,6,4,google,2026-03-12 19:51:18.659451,abortion definition oxford,abortion definition oxford dictionary,meaning,medical +abortion,"('oxford dictionary abortion', 'oxford dictionary abortion definition')",oxford dictionary abortion,oxford dictionary abortion definition,1,4,google,2026-03-12 19:51:19.759642,abortion definition oxford,abortion definition oxford dictionary,dictionary,definition +abortion,"('oxford dictionary abortion', 'oxford english dictionary abortion')",oxford dictionary abortion,oxford english dictionary abortion,2,4,google,2026-03-12 19:51:19.759642,abortion definition oxford,abortion definition oxford dictionary,dictionary,english +abortion,"('oxford dictionary abortion', 'abortion definition oxford')",oxford dictionary abortion,abortion definition oxford,3,4,google,2026-03-12 19:51:19.759642,abortion definition oxford,abortion definition oxford dictionary,dictionary,definition +abortion,"('oxford dictionary abortion', 'abortion dictionary meaning')",oxford dictionary abortion,abortion dictionary meaning,4,4,google,2026-03-12 19:51:19.759642,abortion definition oxford,abortion definition oxford dictionary,dictionary,meaning +abortion,"('abortion root word', 'abortion origin word')",abortion root word,abortion origin word,1,4,google,2026-03-12 19:51:20.844650,abortion definition oxford,abortion oxford dictionary,root word,origin +abortion,"('abortion root word', 'miscarriage root word')",abortion root word,miscarriage root word,2,4,google,2026-03-12 19:51:20.844650,abortion definition oxford,abortion oxford dictionary,root word,miscarriage +abortion,"('abortion root word', 'abortion root word origin')",abortion root word,abortion root word origin,3,4,google,2026-03-12 19:51:20.844650,abortion definition oxford,abortion oxford dictionary,root word,origin +abortion,"('abortion root word', 'when was the word abortion first used')",abortion root word,when was the word abortion first used,4,4,google,2026-03-12 19:51:20.844650,abortion definition oxford,abortion oxford dictionary,root word,when was the first used +abortion,"('abortion root word', 'abortion definition oxford')",abortion root word,abortion definition oxford,5,4,google,2026-03-12 19:51:20.844650,abortion definition oxford,abortion oxford dictionary,root word,definition oxford +abortion,"('abortion root word', 'abor root word')",abortion root word,abor root word,6,4,google,2026-03-12 19:51:20.844650,abortion definition oxford,abortion oxford dictionary,root word,abor +abortion,"('abortion root word', 'abortion root word meaning')",abortion root word,abortion root word meaning,7,4,google,2026-03-12 19:51:20.844650,abortion definition oxford,abortion oxford dictionary,root word,meaning +abortion,"('what is abortion article', 'what is abortion scholarly articles')",what is abortion article,what is abortion scholarly articles,1,4,google,2026-03-12 19:51:21.955377,abortion definition oxford,abortion oxford dictionary,what is article,scholarly articles +abortion,"('what is abortion article', 'what is abortion peer reviewed articles')",what is abortion article,what is abortion peer reviewed articles,2,4,google,2026-03-12 19:51:21.955377,abortion definition oxford,abortion oxford dictionary,what is article,peer reviewed articles +abortion,"('what is abortion article', 'what is paper abortion')",what is abortion article,what is paper abortion,3,4,google,2026-03-12 19:51:21.955377,abortion definition oxford,abortion oxford dictionary,what is article,paper +abortion,"('what is abortion article', 'what article is abortion in rpc')",what is abortion article,what article is abortion in rpc,4,4,google,2026-03-12 19:51:21.955377,abortion definition oxford,abortion oxford dictionary,what is article,in rpc +abortion,"('what is abortion article', 'what article is abortion in philippines')",what is abortion article,what article is abortion in philippines,5,4,google,2026-03-12 19:51:21.955377,abortion definition oxford,abortion oxford dictionary,what is article,in philippines +abortion,"('what is abortion article', 'what is article 258 abortion')",what is abortion article,what is article 258 abortion,6,4,google,2026-03-12 19:51:21.955377,abortion definition oxford,abortion oxford dictionary,what is article,258 +abortion,"('what is abortion article', 'what article is intentional abortion')",what is abortion article,what article is intentional abortion,7,4,google,2026-03-12 19:51:21.955377,abortion definition oxford,abortion oxford dictionary,what is article,intentional +abortion,"('what is abortion article', 'what is abortion and why is it important')",what is abortion article,what is abortion and why is it important,8,4,google,2026-03-12 19:51:21.955377,abortion definition oxford,abortion oxford dictionary,what is article,and why it important +abortion,"('what is abortion article', 'what is artificial abortion')",what is abortion article,what is artificial abortion,9,4,google,2026-03-12 19:51:21.955377,abortion definition oxford,abortion oxford dictionary,what is article,artificial +abortion,"('miscarriage definition cdc', 'abortion definition cdc')",miscarriage definition cdc,abortion definition cdc,1,4,google,2026-03-12 19:51:22.970976,abortion definition cdc,define abortion cdc,miscarriage definition,abortion +abortion,"('miscarriage definition cdc', 'what is a d c procedure miscarriage')",miscarriage definition cdc,what is a d c procedure miscarriage,2,4,google,2026-03-12 19:51:22.970976,abortion definition cdc,define abortion cdc,miscarriage definition,what is a d c procedure +abortion,"('miscarriage definition cdc', 'what is a dc after miscarriage')",miscarriage definition cdc,what is a dc after miscarriage,3,4,google,2026-03-12 19:51:22.970976,abortion definition cdc,define abortion cdc,miscarriage definition,what is a dc after +abortion,"('miscarriage definition cdc', 'miscarriage definition medical')",miscarriage definition cdc,miscarriage definition medical,4,4,google,2026-03-12 19:51:22.970976,abortion definition cdc,define abortion cdc,miscarriage definition,medical +abortion,"('miscarriage definition cdc', 'miscarriage definition pregnancy')",miscarriage definition cdc,miscarriage definition pregnancy,5,4,google,2026-03-12 19:51:22.970976,abortion definition cdc,define abortion cdc,miscarriage definition,pregnancy +abortion,"('miscarriage definition cdc', 'miscarriage cdc')",miscarriage definition cdc,miscarriage cdc,6,4,google,2026-03-12 19:51:22.970976,abortion definition cdc,define abortion cdc,miscarriage definition,miscarriage definition +abortion,"('complete abortion definition', 'complete abortion definition in hindi')",complete abortion definition,complete abortion definition in hindi,1,4,google,2026-03-12 19:51:23.913165,abortion definition cdc,define abortion cdc,complete definition,in hindi +abortion,"('complete abortion definition', 'complete abortion definition ppt')",complete abortion definition,complete abortion definition ppt,2,4,google,2026-03-12 19:51:23.913165,abortion definition cdc,define abortion cdc,complete definition,ppt +abortion,"('complete abortion definition', 'spontaneous abortion definition')",complete abortion definition,spontaneous abortion definition,3,4,google,2026-03-12 19:51:23.913165,abortion definition cdc,define abortion cdc,complete definition,spontaneous +abortion,"('complete abortion definition', 'spontaneous abortion definition in hindi')",complete abortion definition,spontaneous abortion definition in hindi,4,4,google,2026-03-12 19:51:23.913165,abortion definition cdc,define abortion cdc,complete definition,spontaneous in hindi +abortion,"('complete abortion definition', 'spontaneous abortion definition according to who')",complete abortion definition,spontaneous abortion definition according to who,5,4,google,2026-03-12 19:51:23.913165,abortion definition cdc,define abortion cdc,complete definition,spontaneous according to who +abortion,"('complete abortion definition', 'spontaneous abortion definition acog')",complete abortion definition,spontaneous abortion definition acog,6,4,google,2026-03-12 19:51:23.913165,abortion definition cdc,define abortion cdc,complete definition,spontaneous acog +abortion,"('complete abortion definition', 'spontaneous abortion definition ppt')",complete abortion definition,spontaneous abortion definition ppt,7,4,google,2026-03-12 19:51:23.913165,abortion definition cdc,define abortion cdc,complete definition,spontaneous ppt +abortion,"('complete abortion definition', 'spontaneous abortion definition simple')",complete abortion definition,spontaneous abortion definition simple,8,4,google,2026-03-12 19:51:23.913165,abortion definition cdc,define abortion cdc,complete definition,spontaneous simple +abortion,"('complete abortion definition', 'complete abortion meaning in pregnancy')",complete abortion definition,complete abortion meaning in pregnancy,9,4,google,2026-03-12 19:51:23.913165,abortion definition cdc,define abortion cdc,complete definition,meaning in pregnancy +abortion,"('define abortion medical', 'define abortion medically')",define abortion medical,define abortion medically,1,4,google,2026-03-12 19:51:25.326466,abortion definition cdc,define abortion cdc,medical,medically +abortion,"('define abortion medical', 'define abortion medical term')",define abortion medical,define abortion medical term,2,4,google,2026-03-12 19:51:25.326466,abortion definition cdc,define abortion cdc,medical,term +abortion,"('define abortion medical', 'what is abortion medically')",define abortion medical,what is abortion medically,3,4,google,2026-03-12 19:51:25.326466,abortion definition cdc,define abortion cdc,medical,what is medically +abortion,"('define abortion medical', 'what is abortion medical term')",define abortion medical,what is abortion medical term,4,4,google,2026-03-12 19:51:25.326466,abortion definition cdc,define abortion cdc,medical,what is term +abortion,"('define abortion medical', 'abortion definition medical according to who')",define abortion medical,abortion definition medical according to who,5,4,google,2026-03-12 19:51:25.326466,abortion definition cdc,define abortion cdc,medical,definition according to who +abortion,"('define abortion medical', 'what is medical abortion and how does it work')",define abortion medical,what is medical abortion and how does it work,6,4,google,2026-03-12 19:51:25.326466,abortion definition cdc,define abortion cdc,medical,what is and how does it work +abortion,"('define abortion medical', 'what is medical abortion called')",define abortion medical,what is medical abortion called,7,4,google,2026-03-12 19:51:25.326466,abortion definition cdc,define abortion cdc,medical,what is called +abortion,"('define abortion medical', 'what is medical abortion procedure')",define abortion medical,what is medical abortion procedure,8,4,google,2026-03-12 19:51:25.326466,abortion definition cdc,define abortion cdc,medical,what is procedure +abortion,"('define abortion medical', 'what is medical abortion like reddit')",define abortion medical,what is medical abortion like reddit,9,4,google,2026-03-12 19:51:25.326466,abortion definition cdc,define abortion cdc,medical,what is like reddit +abortion,"('define abortion medical', 'what is medical.abortion pain like')",define abortion medical,what is medical.abortion pain like,10,4,google,2026-03-12 19:51:25.326466,abortion definition cdc,define abortion cdc,medical,what is medical.abortion pain like +abortion,"('definition of abortion cdc', 'define abortion cdc')",definition of abortion cdc,define abortion cdc,1,4,google,2026-03-12 19:51:26.530713,abortion definition cdc,abortion definition according to cdc,of,define +abortion,"('definition of abortion cdc', 'cdc definition of abortion 2022')",definition of abortion cdc,cdc definition of abortion 2022,2,4,google,2026-03-12 19:51:26.530713,abortion definition cdc,abortion definition according to cdc,of,2022 +abortion,"('definition of abortion cdc', 'cdc definition of abortion pdf')",definition of abortion cdc,cdc definition of abortion pdf,3,4,google,2026-03-12 19:51:26.530713,abortion definition cdc,abortion definition according to cdc,of,pdf +abortion,"('definition of abortion cdc', 'types of abortion definition')",definition of abortion cdc,types of abortion definition,4,4,google,2026-03-12 19:51:26.530713,abortion definition cdc,abortion definition according to cdc,of,types +abortion,"('definition of abortion cdc', 'definition of abortion who')",definition of abortion cdc,definition of abortion who,5,4,google,2026-03-12 19:51:26.530713,abortion definition cdc,abortion definition according to cdc,of,who +abortion,"('types of abortion definition', 'types of abortion definition according to who')",types of abortion definition,types of abortion definition according to who,1,4,google,2026-03-12 19:51:27.727347,abortion definition cdc,abortion definition according to cdc,types of,according to who +abortion,"('types of abortion definition', 'types of abortion definition pdf')",types of abortion definition,types of abortion definition pdf,2,4,google,2026-03-12 19:51:27.727347,abortion definition cdc,abortion definition according to cdc,types of,pdf +abortion,"('types of abortion definition', 'types of abortion definition ppt')",types of abortion definition,types of abortion definition ppt,3,4,google,2026-03-12 19:51:27.727347,abortion definition cdc,abortion definition according to cdc,types of,ppt +abortion,"('types of abortion definition', 'types of abortion definition in nursing')",types of abortion definition,types of abortion definition in nursing,4,4,google,2026-03-12 19:51:27.727347,abortion definition cdc,abortion definition according to cdc,types of,in nursing +abortion,"('types of abortion definition', 'types of spontaneous abortion definition')",types of abortion definition,types of spontaneous abortion definition,5,4,google,2026-03-12 19:51:27.727347,abortion definition cdc,abortion definition according to cdc,types of,spontaneous +abortion,"('types of abortion definition', 'types of abortion and their definition')",types of abortion definition,types of abortion and their definition,6,4,google,2026-03-12 19:51:27.727347,abortion definition cdc,abortion definition according to cdc,types of,and their +abortion,"('types of abortion definition', '5 types of abortion and its definition')",types of abortion definition,5 types of abortion and its definition,7,4,google,2026-03-12 19:51:27.727347,abortion definition cdc,abortion definition according to cdc,types of,5 and its +abortion,"('types of abortion definition', 'definition of different types of abortion')",types of abortion definition,definition of different types of abortion,8,4,google,2026-03-12 19:51:27.727347,abortion definition cdc,abortion definition according to cdc,types of,different +abortion,"('types of abortion definition', 'what are the different types of abortion')",types of abortion definition,what are the different types of abortion,9,4,google,2026-03-12 19:51:27.727347,abortion definition cdc,abortion definition according to cdc,types of,what are the different +abortion,"('is abortion a crime in the philippines', 'is abortion legal in the philippines')",is abortion a crime in the philippines,is abortion legal in the philippines,1,4,google,2026-03-12 19:51:28.785797,abortion definition law,abortion meaning in law philippines,is a crime the,legal +abortion,"('is abortion a crime in the philippines', 'is abortion illegal in the philippines')",is abortion a crime in the philippines,is abortion illegal in the philippines,2,4,google,2026-03-12 19:51:28.785797,abortion definition law,abortion meaning in law philippines,is a crime the,illegal +abortion,"('is abortion a crime in the philippines', 'is abortion legal in the philippines 2024')",is abortion a crime in the philippines,is abortion legal in the philippines 2024,3,4,google,2026-03-12 19:51:28.785797,abortion definition law,abortion meaning in law philippines,is a crime the,legal 2024 +abortion,"('is abortion a crime in the philippines', 'is abortion legal in the philippines 2025')",is abortion a crime in the philippines,is abortion legal in the philippines 2025,4,4,google,2026-03-12 19:51:28.785797,abortion definition law,abortion meaning in law philippines,is a crime the,legal 2025 +abortion,"('is abortion a crime in the philippines', 'is abortion legal in the philippines 2024 update')",is abortion a crime in the philippines,is abortion legal in the philippines 2024 update,5,4,google,2026-03-12 19:51:28.785797,abortion definition law,abortion meaning in law philippines,is a crime the,legal 2024 update +abortion,"('is abortion a crime in the philippines', 'is abortion legal in the philippines tagalog')",is abortion a crime in the philippines,is abortion legal in the philippines tagalog,6,4,google,2026-03-12 19:51:28.785797,abortion definition law,abortion meaning in law philippines,is a crime the,legal tagalog +abortion,"('is abortion a crime in the philippines', 'is abortion illegal in the philippines reddit')",is abortion a crime in the philippines,is abortion illegal in the philippines reddit,7,4,google,2026-03-12 19:51:28.785797,abortion definition law,abortion meaning in law philippines,is a crime the,illegal reddit +abortion,"('is abortion a crime in the philippines', 'is abortion legal in the philippines brainly')",is abortion a crime in the philippines,is abortion legal in the philippines brainly,8,4,google,2026-03-12 19:51:28.785797,abortion definition law,abortion meaning in law philippines,is a crime the,legal brainly +abortion,"('is abortion a crime in the philippines', 'is abortion legal in the philippines 2022')",is abortion a crime in the philippines,is abortion legal in the philippines 2022,9,4,google,2026-03-12 19:51:28.785797,abortion definition law,abortion meaning in law philippines,is a crime the,legal 2022 +abortion,"('is abortion is legal in philippines', 'is abortion is illegal in philippines')",is abortion is legal in philippines,is abortion is illegal in philippines,1,4,google,2026-03-12 19:51:29.986740,abortion definition law,abortion meaning in law philippines,is is legal,illegal +abortion,"('is abortion is legal in philippines', 'is abortion pill is legal in philippines')",is abortion is legal in philippines,is abortion pill is legal in philippines,2,4,google,2026-03-12 19:51:29.986740,abortion definition law,abortion meaning in law philippines,is is legal,pill +abortion,"('is abortion is legal in philippines', 'is abortion legal in philippines 2024')",is abortion is legal in philippines,is abortion legal in philippines 2024,3,4,google,2026-03-12 19:51:29.986740,abortion definition law,abortion meaning in law philippines,is is legal,2024 +abortion,"('is abortion is legal in philippines', 'is abortion legal in philippines 2025')",is abortion is legal in philippines,is abortion legal in philippines 2025,4,4,google,2026-03-12 19:51:29.986740,abortion definition law,abortion meaning in law philippines,is is legal,2025 +abortion,"('is abortion is legal in philippines', 'is abortion legal in philippines reddit')",is abortion is legal in philippines,is abortion legal in philippines reddit,5,4,google,2026-03-12 19:51:29.986740,abortion definition law,abortion meaning in law philippines,is is legal,reddit +abortion,"('is abortion is legal in philippines', 'is abortion legal in philippines tagalog')",is abortion is legal in philippines,is abortion legal in philippines tagalog,6,4,google,2026-03-12 19:51:29.986740,abortion definition law,abortion meaning in law philippines,is is legal,tagalog +abortion,"('is abortion is legal in philippines', 'is abortion legal in philippines 2024 update')",is abortion is legal in philippines,is abortion legal in philippines 2024 update,7,4,google,2026-03-12 19:51:29.986740,abortion definition law,abortion meaning in law philippines,is is legal,2024 update +abortion,"('is abortion is legal in philippines', 'is abortion legal in philippines now')",is abortion is legal in philippines,is abortion legal in philippines now,8,4,google,2026-03-12 19:51:29.986740,abortion definition law,abortion meaning in law philippines,is is legal,now +abortion,"('is abortion is legal in philippines', 'is abortion legal in philippines for foreigners')",is abortion is legal in philippines,is abortion legal in philippines for foreigners,9,4,google,2026-03-12 19:51:29.986740,abortion definition law,abortion meaning in law philippines,is is legal,for foreigners +abortion,"('is abortion illegal in philippines', 'is abortion illegal in philippines 2025')",is abortion illegal in philippines,is abortion illegal in philippines 2025,1,4,google,2026-03-12 19:51:31.345590,abortion definition law,abortion meaning in law philippines,is illegal,2025 +abortion,"('is abortion illegal in philippines', 'is abortion illegal in philippines 2024')",is abortion illegal in philippines,is abortion illegal in philippines 2024,2,4,google,2026-03-12 19:51:31.345590,abortion definition law,abortion meaning in law philippines,is illegal,2024 +abortion,"('is abortion illegal in philippines', 'is abortion illegal in philippines 2024 update')",is abortion illegal in philippines,is abortion illegal in philippines 2024 update,3,4,google,2026-03-12 19:51:31.345590,abortion definition law,abortion meaning in law philippines,is illegal,2024 update +abortion,"('is abortion illegal in philippines', 'is abortion illegal in philippines reddit')",is abortion illegal in philippines,is abortion illegal in philippines reddit,4,4,google,2026-03-12 19:51:31.345590,abortion definition law,abortion meaning in law philippines,is illegal,reddit +abortion,"('is abortion illegal in philippines', 'is abortion legal in philippines')",is abortion illegal in philippines,is abortion legal in philippines,5,4,google,2026-03-12 19:51:31.345590,abortion definition law,abortion meaning in law philippines,is illegal,legal +abortion,"('is abortion illegal in philippines', 'is abortion legal in philippines 2024')",is abortion illegal in philippines,is abortion legal in philippines 2024,6,4,google,2026-03-12 19:51:31.345590,abortion definition law,abortion meaning in law philippines,is illegal,legal 2024 +abortion,"('is abortion illegal in philippines', 'is abortion allowed in philippines')",is abortion illegal in philippines,is abortion allowed in philippines,7,4,google,2026-03-12 19:51:31.345590,abortion definition law,abortion meaning in law philippines,is illegal,allowed +abortion,"('is abortion illegal in philippines', 'is abortion banned in philippines')",is abortion illegal in philippines,is abortion banned in philippines,8,4,google,2026-03-12 19:51:31.345590,abortion definition law,abortion meaning in law philippines,is illegal,banned +abortion,"('is abortion illegal in philippines', 'is abortion legal in philippines reddit')",is abortion illegal in philippines,is abortion legal in philippines reddit,9,4,google,2026-03-12 19:51:31.345590,abortion definition law,abortion meaning in law philippines,is illegal,legal reddit +abortion,"('abortion laws in philippines', 'abortion legal in philippines')",abortion laws in philippines,abortion legal in philippines,1,4,google,2026-03-12 19:51:32.623319,abortion definition law,abortion meaning in law philippines,laws,legal +abortion,"('abortion laws in philippines', 'abortion illegal in philippines')",abortion laws in philippines,abortion illegal in philippines,2,4,google,2026-03-12 19:51:32.623319,abortion definition law,abortion meaning in law philippines,laws,illegal +abortion,"('abortion laws in philippines', 'child abortion law in philippines')",abortion laws in philippines,child abortion law in philippines,3,4,google,2026-03-12 19:51:32.623319,abortion definition law,abortion meaning in law philippines,laws,child law +abortion,"('abortion laws in philippines', 'anti abortion law in philippines')",abortion laws in philippines,anti abortion law in philippines,4,4,google,2026-03-12 19:51:32.623319,abortion definition law,abortion meaning in law philippines,laws,anti law +abortion,"('abortion laws in philippines', 'abortion law philippines republic act')",abortion laws in philippines,abortion law philippines republic act,5,4,google,2026-03-12 19:51:32.623319,abortion definition law,abortion meaning in law philippines,laws,law republic act +abortion,"('abortion laws in philippines', 'abortion law philippines republic act summary')",abortion laws in philippines,abortion law philippines republic act summary,6,4,google,2026-03-12 19:51:32.623319,abortion definition law,abortion meaning in law philippines,laws,law republic act summary +abortion,"('abortion laws in philippines', 'abortion law philippines republic act tagalog')",abortion laws in philippines,abortion law philippines republic act tagalog,7,4,google,2026-03-12 19:51:32.623319,abortion definition law,abortion meaning in law philippines,laws,law republic act tagalog +abortion,"('abortion laws in philippines', 'abortion law philippines article')",abortion laws in philippines,abortion law philippines article,8,4,google,2026-03-12 19:51:32.623319,abortion definition law,abortion meaning in law philippines,laws,law article +abortion,"('abortion laws in philippines', 'abortion law philippines republic act pdf')",abortion laws in philippines,abortion law philippines republic act pdf,9,4,google,2026-03-12 19:51:32.623319,abortion definition law,abortion meaning in law philippines,laws,law republic act pdf +abortion,"('is abortion legal in the philippines 2020', 'is abortion legal in the philippines 20204')",is abortion legal in the philippines 2020,is abortion legal in the philippines 20204,1,4,google,2026-03-12 19:51:33.700089,abortion definition law,abortion meaning in law philippines,is legal the 2020,20204 +abortion,"('is abortion legal in the philippines 2020', 'is abortion legal in the philippines 2020 to present')",is abortion legal in the philippines 2020,is abortion legal in the philippines 2020 to present,2,4,google,2026-03-12 19:51:33.700089,abortion definition law,abortion meaning in law philippines,is legal the 2020,to present +abortion,"('is abortion legal in the philippines 2020', 'is abortion legal in the philippines 2020-2024')",is abortion legal in the philippines 2020,is abortion legal in the philippines 2020-2024,3,4,google,2026-03-12 19:51:33.700089,abortion definition law,abortion meaning in law philippines,is legal the 2020,2020-2024 +abortion,"('is abortion legal in the philippines 2020', 'is abortion legal in the philippines 2020 and now')",is abortion legal in the philippines 2020,is abortion legal in the philippines 2020 and now,4,4,google,2026-03-12 19:51:33.700089,abortion definition law,abortion meaning in law philippines,is legal the 2020,and now +abortion,"('abortion legal meaning', 'abortion law meaning')",abortion legal meaning,abortion law meaning,1,4,google,2026-03-12 19:51:34.731444,abortion definition law,abortion definition legal,meaning,law +abortion,"('abortion legal meaning', 'legal abortion meaning in hindi')",abortion legal meaning,legal abortion meaning in hindi,2,4,google,2026-03-12 19:51:34.731444,abortion definition law,abortion definition legal,meaning,in hindi +abortion,"('abortion legal meaning', 'miscarriage legal meaning')",abortion legal meaning,miscarriage legal meaning,3,4,google,2026-03-12 19:51:34.731444,abortion definition law,abortion definition legal,meaning,miscarriage +abortion,"('abortion legal meaning', 'abortion legal term')",abortion legal meaning,abortion legal term,4,4,google,2026-03-12 19:51:34.731444,abortion definition law,abortion definition legal,meaning,term +abortion,"('abortion legal meaning', 'legal abortion term uk')",abortion legal meaning,legal abortion term uk,5,4,google,2026-03-12 19:51:34.731444,abortion definition law,abortion definition legal,meaning,term uk +abortion,"('abortion legal meaning', 'legal abortion term australia')",abortion legal meaning,legal abortion term australia,6,4,google,2026-03-12 19:51:34.731444,abortion definition law,abortion definition legal,meaning,term australia +abortion,"('abortion legal meaning', 'abortion legal until viability meaning')",abortion legal meaning,abortion legal until viability meaning,7,4,google,2026-03-12 19:51:34.731444,abortion definition law,abortion definition legal,meaning,until viability +abortion,"('abortion legal meaning', 'abortion legal before viability meaning')",abortion legal meaning,abortion legal before viability meaning,8,4,google,2026-03-12 19:51:34.731444,abortion definition law,abortion definition legal,meaning,before viability +abortion,"('abortion legal meaning', 'abortion legal at any stage meaning')",abortion legal meaning,abortion legal at any stage meaning,9,4,google,2026-03-12 19:51:34.731444,abortion definition law,abortion definition legal,meaning,at any stage +abortion,"('legal abortion definition in hindi', 'legal abortion definition')",legal abortion definition in hindi,legal abortion definition,1,4,google,2026-03-12 19:51:36.092177,abortion definition law,abortion definition legal,in hindi,in hindi +abortion,"('legal abortion definition in hindi', 'legal definition of abortion in texas')",legal abortion definition in hindi,legal definition of abortion in texas,2,4,google,2026-03-12 19:51:36.092177,abortion definition law,abortion definition legal,in hindi,of texas +abortion,"('legal abortion definition in hindi', 'legal definition of abortion in the united states')",legal abortion definition in hindi,legal definition of abortion in the united states,3,4,google,2026-03-12 19:51:36.092177,abortion definition law,abortion definition legal,in hindi,of the united states +abortion,"('legal abortion definition according to who', 'what is abortion according to who')",legal abortion definition according to who,what is abortion according to who,1,4,google,2026-03-12 19:51:37.030484,abortion definition law,abortion definition legal,according to who,what is +abortion,"('legal abortion definition according to who', 'legal definition abortion')",legal abortion definition according to who,legal definition abortion,2,4,google,2026-03-12 19:51:37.030484,abortion definition law,abortion definition legal,according to who,according to who +abortion,"('legal abortion definition according to who', 'legal definition of abortion in the united states')",legal abortion definition according to who,legal definition of abortion in the united states,3,4,google,2026-03-12 19:51:37.030484,abortion definition law,abortion definition legal,according to who,of in the united states +abortion,"('legal abortion definition according to who', 'abortion definition according to who')",legal abortion definition according to who,abortion definition according to who,4,4,google,2026-03-12 19:51:37.030484,abortion definition law,abortion definition legal,according to who,according to who +abortion,"('legal abortion definition in india', 'legal period for abortion in india')",legal abortion definition in india,legal period for abortion in india,1,4,google,2026-03-12 19:51:38.064159,abortion definition law,abortion definition legal,in india,period for +abortion,"('legal abortion definition in india', 'legal limit for abortion in india')",legal abortion definition in india,legal limit for abortion in india,2,4,google,2026-03-12 19:51:38.064159,abortion definition law,abortion definition legal,in india,limit for +abortion,"('legal abortion definition in india', 'what is legal abortion')",legal abortion definition in india,what is legal abortion,3,4,google,2026-03-12 19:51:38.064159,abortion definition law,abortion definition legal,in india,what is +abortion,"('legal abortion definition in india', 'legal abortion indiana')",legal abortion definition in india,legal abortion indiana,4,4,google,2026-03-12 19:51:38.064159,abortion definition law,abortion definition legal,in india,indiana +abortion,"('legal abortion definition in india', 'what are abortion laws in india')",legal abortion definition in india,what are abortion laws in india,5,4,google,2026-03-12 19:51:38.064159,abortion definition law,abortion definition legal,in india,what are laws +abortion,"('legal abortion definition in india', 'is abortion legal in indian')",legal abortion definition in india,is abortion legal in indian,6,4,google,2026-03-12 19:51:38.064159,abortion definition law,abortion definition legal,in india,is indian +abortion,"('abortion laws in england', 'abortion laws in england and wales')",abortion laws in england,abortion laws in england and wales,1,4,google,2026-03-12 19:51:39.359462,abortion definition law,abortion definition uk law,laws in england,and wales +abortion,"('abortion laws in england', 'abortion laws in england and france')",abortion laws in england,abortion laws in england and france,2,4,google,2026-03-12 19:51:39.359462,abortion definition law,abortion definition uk law,laws in england,and france +abortion,"('abortion laws in england', 'abortion laws in england 2024')",abortion laws in england,abortion laws in england 2024,3,4,google,2026-03-12 19:51:39.359462,abortion definition law,abortion definition uk law,laws in england,2024 +abortion,"('abortion laws in england', 'abortion laws in england 2025')",abortion laws in england,abortion laws in england 2025,4,4,google,2026-03-12 19:51:39.359462,abortion definition law,abortion definition uk law,laws in england,2025 +abortion,"('abortion laws in england', 'abortion law in england 2022')",abortion laws in england,abortion law in england 2022,5,4,google,2026-03-12 19:51:39.359462,abortion definition law,abortion definition uk law,laws in england,law 2022 +abortion,"('abortion laws in england', 'abortion legal in england')",abortion laws in england,abortion legal in england,6,4,google,2026-03-12 19:51:39.359462,abortion definition law,abortion definition uk law,laws in england,legal +abortion,"('abortion laws in england', 'abortion act in england')",abortion laws in england,abortion act in england,7,4,google,2026-03-12 19:51:39.359462,abortion definition law,abortion definition uk law,laws in england,act +abortion,"('abortion laws in england', 'abortion illegal in england and wales')",abortion laws in england,abortion illegal in england and wales,8,4,google,2026-03-12 19:51:39.359462,abortion definition law,abortion definition uk law,laws in england,illegal and wales +abortion,"('abortion laws in england', 'abortion limits in england')",abortion laws in england,abortion limits in england,9,4,google,2026-03-12 19:51:39.359462,abortion definition law,abortion definition uk law,laws in england,limits +abortion,"('what is the current uk law on abortion', 'is abortion legal in the uk')",what is the current uk law on abortion,is abortion legal in the uk,1,4,google,2026-03-12 19:51:40.579973,abortion definition law,abortion definition uk law,what is the current on,legal in +abortion,"('what is the current uk law on abortion', 'is abortion legal in the united kingdom')",what is the current uk law on abortion,is abortion legal in the united kingdom,2,4,google,2026-03-12 19:51:40.579973,abortion definition law,abortion definition uk law,what is the current on,legal in united kingdom +abortion,"('what is the current uk law on abortion', 'is abortion legal in england')",what is the current uk law on abortion,is abortion legal in england,3,4,google,2026-03-12 19:51:40.579973,abortion definition law,abortion definition uk law,what is the current on,legal in england +abortion,"('what is the current uk law on abortion', 'what is the uk stance on abortion')",what is the current uk law on abortion,what is the uk stance on abortion,4,4,google,2026-03-12 19:51:40.579973,abortion definition law,abortion definition uk law,what is the current on,stance +abortion,"('what is the current uk law on abortion', 'what is the current law on abortion')",what is the current uk law on abortion,what is the current law on abortion,5,4,google,2026-03-12 19:51:40.579973,abortion definition law,abortion definition uk law,what is the current on,what is the current on +abortion,"('abortion law united kingdom', 'abortion legal in united kingdom')",abortion law united kingdom,abortion legal in united kingdom,1,4,google,2026-03-12 19:51:41.417626,abortion definition law,abortion definition uk law,united kingdom,legal in +abortion,"('abortion law united kingdom', 'abortion laws in england')",abortion law united kingdom,abortion laws in england,2,4,google,2026-03-12 19:51:41.417626,abortion definition law,abortion definition uk law,united kingdom,laws in england +abortion,"('abortion law united kingdom', 'abortion rights in uk')",abortion law united kingdom,abortion rights in uk,3,4,google,2026-03-12 19:51:41.417626,abortion definition law,abortion definition uk law,united kingdom,rights in uk +abortion,"('abortion law united kingdom', 'united kingdom abortion laws 2022')",abortion law united kingdom,united kingdom abortion laws 2022,4,4,google,2026-03-12 19:51:41.417626,abortion definition law,abortion definition uk law,united kingdom,laws 2022 +abortion,"('abortion laws uk vs us', 'abortion rights uk vs us')",abortion laws uk vs us,abortion rights uk vs us,1,4,google,2026-03-12 19:51:42.405626,abortion definition law,abortion definition uk law,laws vs us,rights +abortion,"('abortion laws uk vs us', 'abortion uk vs us')",abortion laws uk vs us,abortion uk vs us,2,4,google,2026-03-12 19:51:42.405626,abortion definition law,abortion definition uk law,laws vs us,laws vs us +abortion,"('abortion laws uk vs us', 'abortion laws us vs europe')",abortion laws uk vs us,abortion laws us vs europe,3,4,google,2026-03-12 19:51:42.405626,abortion definition law,abortion definition uk law,laws vs us,europe +abortion,"('abortion legal definition', 'abortion law definition')",abortion legal definition,abortion law definition,1,4,google,2026-03-12 19:51:43.278834,abortion definition law,abortion act definition,legal,law +abortion,"('abortion legal definition', 'legal abortion definition in hindi')",abortion legal definition,legal abortion definition in hindi,2,4,google,2026-03-12 19:51:43.278834,abortion definition law,abortion act definition,legal,in hindi +abortion,"('abortion legal definition', 'legal abortion definition according to who')",abortion legal definition,legal abortion definition according to who,3,4,google,2026-03-12 19:51:43.278834,abortion definition law,abortion act definition,legal,according to who +abortion,"('abortion legal definition', 'legal abortion definition in india')",abortion legal definition,legal abortion definition in india,4,4,google,2026-03-12 19:51:43.278834,abortion definition law,abortion act definition,legal,in india +abortion,"('abortion legal definition', 'miscarriage legal definition')",abortion legal definition,miscarriage legal definition,5,4,google,2026-03-12 19:51:43.278834,abortion definition law,abortion act definition,legal,miscarriage +abortion,"('abortion legal definition', 'abortion legal term')",abortion legal definition,abortion legal term,6,4,google,2026-03-12 19:51:43.278834,abortion definition law,abortion act definition,legal,term +abortion,"('abortion legal definition', 'legal abortion term uk')",abortion legal definition,legal abortion term uk,7,4,google,2026-03-12 19:51:43.278834,abortion definition law,abortion act definition,legal,term uk +abortion,"('abortion legal definition', 'legal abortion term australia')",abortion legal definition,legal abortion term australia,8,4,google,2026-03-12 19:51:43.278834,abortion definition law,abortion act definition,legal,term australia +abortion,"('abortion legal definition', 'abortion legal meaning')",abortion legal definition,abortion legal meaning,9,4,google,2026-03-12 19:51:43.278834,abortion definition law,abortion act definition,legal,meaning +abortion,"('abortion law definition', 'abortion legal definition')",abortion law definition,abortion legal definition,1,4,google,2026-03-12 19:51:44.258085,abortion definition law,abortion act definition,law,legal +abortion,"('abortion law definition', 'abortion right definition')",abortion law definition,abortion right definition,2,4,google,2026-03-12 19:51:44.258085,abortion definition law,abortion act definition,law,right +abortion,"('abortion law definition', 'abortion act definition')",abortion law definition,abortion act definition,3,4,google,2026-03-12 19:51:44.258085,abortion definition law,abortion act definition,law,act +abortion,"('abortion law definition', 'legal abortion definition in hindi')",abortion law definition,legal abortion definition in hindi,4,4,google,2026-03-12 19:51:44.258085,abortion definition law,abortion act definition,law,legal in hindi +abortion,"('abortion law definition', 'legal abortion definition according to who')",abortion law definition,legal abortion definition according to who,5,4,google,2026-03-12 19:51:44.258085,abortion definition law,abortion act definition,law,legal according to who +abortion,"('abortion law definition', 'legal abortion definition in india')",abortion law definition,legal abortion definition in india,6,4,google,2026-03-12 19:51:44.258085,abortion definition law,abortion act definition,law,legal in india +abortion,"('abortion law definition', 'illegal abortion definition in medical')",abortion law definition,illegal abortion definition in medical,7,4,google,2026-03-12 19:51:44.258085,abortion definition law,abortion act definition,law,illegal in medical +abortion,"('abortion law definition', 'illegal abortion definition in hindi')",abortion law definition,illegal abortion definition in hindi,8,4,google,2026-03-12 19:51:44.258085,abortion definition law,abortion act definition,law,illegal in hindi +abortion,"('abortion law definition', 'illegal abortion definition in english')",abortion law definition,illegal abortion definition in english,9,4,google,2026-03-12 19:51:44.258085,abortion definition law,abortion act definition,law,illegal in english +abortion,"('act abortion laws', 'act abortion legislation')",act abortion laws,act abortion legislation,1,4,google,2026-03-12 19:51:45.331053,abortion definition law,abortion act definition,laws,legislation +abortion,"('act abortion laws', 'abortion act 2022')",act abortion laws,abortion act 2022,2,4,google,2026-03-12 19:51:45.331053,abortion definition law,abortion act definition,laws,2022 +abortion,"('act abortion laws', 'abortion acts')",act abortion laws,abortion acts,3,4,google,2026-03-12 19:51:45.331053,abortion definition law,abortion act definition,laws,acts +abortion,"('act abortion laws', 'abortion act congress')",act abortion laws,abortion act congress,4,4,google,2026-03-12 19:51:45.331053,abortion definition law,abortion act definition,laws,congress +abortion,"('act abortion laws', 'abortion act of 1967')",act abortion laws,abortion act of 1967,5,4,google,2026-03-12 19:51:45.331053,abortion definition law,abortion act definition,laws,of 1967 +abortion,"('what is the abortion act', 'what is the abortion act 1967')",what is the abortion act,what is the abortion act 1967,1,4,google,2026-03-12 19:51:46.620795,abortion definition law,abortion act definition,what is the,1967 +abortion,"('what is the abortion act', 'what is the abortion act uk')",what is the abortion act,what is the abortion act uk,2,4,google,2026-03-12 19:51:46.620795,abortion definition law,abortion act definition,what is the,uk +abortion,"('what is the abortion act', 'what is the actual abortion procedure')",what is the abortion act,what is the actual abortion procedure,3,4,google,2026-03-12 19:51:46.620795,abortion definition law,abortion act definition,what is the,actual procedure +abortion,"('what is the abortion act', 'what is abortion action missouri')",what is the abortion act,what is abortion action missouri,4,4,google,2026-03-12 19:51:46.620795,abortion definition law,abortion act definition,what is the,action missouri +abortion,"('what is the abortion act', 'what is the abortion law in florida')",what is the abortion act,what is the abortion law in florida,5,4,google,2026-03-12 19:51:46.620795,abortion definition law,abortion act definition,what is the,law in florida +abortion,"('what is the abortion act', 'what is the abortion law in texas')",what is the abortion act,what is the abortion law in texas,6,4,google,2026-03-12 19:51:46.620795,abortion definition law,abortion act definition,what is the,law in texas +abortion,"('what is the abortion act', 'what is the abortion law in georgia')",what is the abortion act,what is the abortion law in georgia,7,4,google,2026-03-12 19:51:46.620795,abortion definition law,abortion act definition,what is the,law in georgia +abortion,"('what is the abortion act', 'what is the abortion law in florida in 2024')",what is the abortion act,what is the abortion law in florida in 2024,8,4,google,2026-03-12 19:51:46.620795,abortion definition law,abortion act definition,what is the,law in florida in 2024 +abortion,"('what is the abortion act', 'what is the abortion law in uk')",what is the abortion act,what is the abortion law in uk,9,4,google,2026-03-12 19:51:46.620795,abortion definition law,abortion act definition,what is the,law in uk +abortion,"('abortion act in india', 'abortion act in india pdf')",abortion act in india,abortion act in india pdf,1,4,google,2026-03-12 19:51:48.020956,abortion definition law,abortion act definition,in india,pdf +abortion,"('abortion act in india', 'abortion legal in india')",abortion act in india,abortion legal in india,2,4,google,2026-03-12 19:51:48.020956,abortion definition law,abortion act definition,in india,legal +abortion,"('abortion act in india', 'abortion law in india')",abortion act in india,abortion law in india,3,4,google,2026-03-12 19:51:48.020956,abortion definition law,abortion act definition,in india,law +abortion,"('abortion act in india', 'abortion illegal in india')",abortion act in india,abortion illegal in india,4,4,google,2026-03-12 19:51:48.020956,abortion definition law,abortion act definition,in india,illegal +abortion,"('abortion act in india', 'abortion law in indiana')",abortion act in india,abortion law in indiana,5,4,google,2026-03-12 19:51:48.020956,abortion definition law,abortion act definition,in india,law indiana +abortion,"('abortion act in india', 'abortion legal in indiana')",abortion act in india,abortion legal in indiana,6,4,google,2026-03-12 19:51:48.020956,abortion definition law,abortion act definition,in india,legal indiana +abortion,"('abortion act in india', 'abortion legal in india for unmarried')",abortion act in india,abortion legal in india for unmarried,7,4,google,2026-03-12 19:51:48.020956,abortion definition law,abortion act definition,in india,legal for unmarried +abortion,"('abortion act in india', 'abortion legal in india for married')",abortion act in india,abortion legal in india for married,8,4,google,2026-03-12 19:51:48.020956,abortion definition law,abortion act definition,in india,legal for married +abortion,"('abortion act in india', 'abortion illegal in indiana')",abortion act in india,abortion illegal in indiana,9,4,google,2026-03-12 19:51:48.020956,abortion definition law,abortion act definition,in india,illegal indiana +abortion,"('abortion meaning law', 'abortion term laws by state')",abortion meaning law,abortion term laws by state,1,4,google,2026-03-12 19:51:49.228434,abortion definition law,abortion defined by law,meaning,term laws by state +abortion,"('abortion meaning law', 'abortion term laws')",abortion meaning law,abortion term laws,2,4,google,2026-03-12 19:51:49.228434,abortion definition law,abortion defined by law,meaning,term laws +abortion,"('abortion meaning law', 'abortion meaning in law philippines')",abortion meaning law,abortion meaning in law philippines,3,4,google,2026-03-12 19:51:49.228434,abortion definition law,abortion defined by law,meaning,in philippines +abortion,"('abortion meaning law', 'abortion legal meaning')",abortion meaning law,abortion legal meaning,4,4,google,2026-03-12 19:51:49.228434,abortion definition law,abortion defined by law,meaning,legal +abortion,"('abortion meaning law', 'criminal abortion meaning in law')",abortion meaning law,criminal abortion meaning in law,5,4,google,2026-03-12 19:51:49.228434,abortion definition law,abortion defined by law,meaning,criminal in +abortion,"('abortion meaning law', 'what is the legal definition of an abortion')",abortion meaning law,what is the legal definition of an abortion,6,4,google,2026-03-12 19:51:49.228434,abortion definition law,abortion defined by law,meaning,what is the legal definition of an +abortion,"('what is considered an abortion by law', 'what is an abortion by law')",what is considered an abortion by law,what is an abortion by law,1,4,google,2026-03-12 19:51:50.505405,abortion definition law,abortion defined by law,what is considered an,what is considered an +abortion,"('what is considered an abortion by law', 'what is the legal definition of an abortion')",what is considered an abortion by law,what is the legal definition of an abortion,2,4,google,2026-03-12 19:51:50.505405,abortion definition law,abortion defined by law,what is considered an,the legal definition of +abortion,"('what is considered an abortion by law', 'what is considered an abortion in texas')",what is considered an abortion by law,what is considered an abortion in texas,3,4,google,2026-03-12 19:51:50.505405,abortion definition law,abortion defined by law,what is considered an,in texas +abortion,"('what is considered an abortion by law', 'what is considered a legal abortion')",what is considered an abortion by law,what is considered a legal abortion,4,4,google,2026-03-12 19:51:50.505405,abortion definition law,abortion defined by law,what is considered an,a legal +abortion,"('what is considered an abortion by law', 'what is considered an abortion roe v wade')",what is considered an abortion by law,what is considered an abortion roe v wade,5,4,google,2026-03-12 19:51:50.505405,abortion definition law,abortion defined by law,what is considered an,roe v wade +abortion,"('define abortion legal', 'what is abortion legal')",define abortion legal,what is abortion legal,1,4,google,2026-03-12 19:51:51.906249,abortion definition law,abortion defined legally,define legal,what is +abortion,"('define abortion legal', 'what is legal abortion in uk')",define abortion legal,what is legal abortion in uk,2,4,google,2026-03-12 19:51:51.906249,abortion definition law,abortion defined legally,define legal,what is in uk +abortion,"('define abortion legal', 'what is legal abortion age')",define abortion legal,what is legal abortion age,3,4,google,2026-03-12 19:51:51.906249,abortion definition law,abortion defined legally,define legal,what is age +abortion,"('define abortion legal', 'what is legal abortion time')",define abortion legal,what is legal abortion time,4,4,google,2026-03-12 19:51:51.906249,abortion definition law,abortion defined legally,define legal,what is time +abortion,"('define abortion legal', 'what is legal abortion in the united states')",define abortion legal,what is legal abortion in the united states,5,4,google,2026-03-12 19:51:51.906249,abortion definition law,abortion defined legally,define legal,what is in the united states +abortion,"('define abortion legal', 'what is legal abortion limit uk')",define abortion legal,what is legal abortion limit uk,6,4,google,2026-03-12 19:51:51.906249,abortion definition law,abortion defined legally,define legal,what is limit uk +abortion,"('define abortion legal', 'what is legal abortion in india')",define abortion legal,what is legal abortion in india,7,4,google,2026-03-12 19:51:51.906249,abortion definition law,abortion defined legally,define legal,what is in india +abortion,"('define abortion legal', 'what is legal abortion in florida')",define abortion legal,what is legal abortion in florida,8,4,google,2026-03-12 19:51:51.906249,abortion definition law,abortion defined legally,define legal,what is in florida +abortion,"('define abortion legal', 'what is legal abortion limit')",define abortion legal,what is legal abortion limit,9,4,google,2026-03-12 19:51:51.906249,abortion definition law,abortion defined legally,define legal,what is limit +abortion,"('laws on abortion', 'laws on abortion in the united states')",laws on abortion,laws on abortion in the united states,1,4,google,2026-03-12 19:51:53.395699,abortion definition law,abortion defined legally,laws on,in the united states +abortion,"('laws on abortion', 'laws on abortion in north carolina')",laws on abortion,laws on abortion in north carolina,2,4,google,2026-03-12 19:51:53.395699,abortion definition law,abortion defined legally,laws on,in north carolina +abortion,"('laws on abortion', 'laws on abortion in texas')",laws on abortion,laws on abortion in texas,3,4,google,2026-03-12 19:51:53.395699,abortion definition law,abortion defined legally,laws on,in texas +abortion,"('laws on abortion', 'laws on abortion in florida')",laws on abortion,laws on abortion in florida,4,4,google,2026-03-12 19:51:53.395699,abortion definition law,abortion defined legally,laws on,in florida +abortion,"('laws on abortion', 'laws on abortion in ohio')",laws on abortion,laws on abortion in ohio,5,4,google,2026-03-12 19:51:53.395699,abortion definition law,abortion defined legally,laws on,in ohio +abortion,"('laws on abortion', 'laws on abortion in california')",laws on abortion,laws on abortion in california,6,4,google,2026-03-12 19:51:53.395699,abortion definition law,abortion defined legally,laws on,in california +abortion,"('laws on abortion', 'laws on abortion in kentucky')",laws on abortion,laws on abortion in kentucky,7,4,google,2026-03-12 19:51:53.395699,abortion definition law,abortion defined legally,laws on,in kentucky +abortion,"('laws on abortion', 'laws on abortion in tennessee')",laws on abortion,laws on abortion in tennessee,8,4,google,2026-03-12 19:51:53.395699,abortion definition law,abortion defined legally,laws on,in tennessee +abortion,"('laws on abortion', 'laws on abortion uk')",laws on abortion,laws on abortion uk,9,4,google,2026-03-12 19:51:53.395699,abortion definition law,abortion defined legally,laws on,uk +abortion,"('miscarriage merriam webster', 'abortion merriam webster')",miscarriage merriam webster,abortion merriam webster,1,4,google,2026-03-12 19:51:54.736465,abortion definition webster,abortion merriam webster,miscarriage,abortion +abortion,"('miscarriage merriam webster', 'miscarriage definition merriam webster')",miscarriage merriam webster,miscarriage definition merriam webster,2,4,google,2026-03-12 19:51:54.736465,abortion definition webster,abortion merriam webster,miscarriage,definition +abortion,"('miscarriage merriam webster', 'what does a miscarriage mean in the bible')",miscarriage merriam webster,what does a miscarriage mean in the bible,3,4,google,2026-03-12 19:51:54.736465,abortion definition webster,abortion merriam webster,miscarriage,what does a mean in the bible +abortion,"('miscarriage merriam webster', 'miscarriage word origin')",miscarriage merriam webster,miscarriage word origin,4,4,google,2026-03-12 19:51:54.736465,abortion definition webster,abortion merriam webster,miscarriage,word origin +abortion,"('miscarriage merriam webster', 'what does the word miscarriage mean')",miscarriage merriam webster,what does the word miscarriage mean,5,4,google,2026-03-12 19:51:54.736465,abortion definition webster,abortion merriam webster,miscarriage,what does the word mean +abortion,"('miscarriage merriam webster', 'what miscarriage mean')",miscarriage merriam webster,what miscarriage mean,6,4,google,2026-03-12 19:51:54.736465,abortion definition webster,abortion merriam webster,miscarriage,what mean +abortion,"('miscarriage merriam webster', 'miscarriage medical definition')",miscarriage merriam webster,miscarriage medical definition,7,4,google,2026-03-12 19:51:54.736465,abortion definition webster,abortion merriam webster,miscarriage,medical definition +abortion,"('miscarriage merriam webster', 'miscarriage meaning in simple words')",miscarriage merriam webster,miscarriage meaning in simple words,8,4,google,2026-03-12 19:51:54.736465,abortion definition webster,abortion merriam webster,miscarriage,meaning in simple words +abortion,"('abortion webster dictionary', ""abortion webster's dictionary"")",abortion webster dictionary,abortion webster's dictionary,1,4,google,2026-03-12 19:51:55.792055,abortion definition webster,abortion merriam webster,dictionary,webster's +abortion,"('abortion webster dictionary', ""miscarriage webster's dictionary"")",abortion webster dictionary,miscarriage webster's dictionary,2,4,google,2026-03-12 19:51:55.792055,abortion definition webster,abortion merriam webster,dictionary,miscarriage webster's +abortion,"('abortion webster dictionary', 'abortion definition webster dictionary')",abortion webster dictionary,abortion definition webster dictionary,3,4,google,2026-03-12 19:51:55.792055,abortion definition webster,abortion merriam webster,dictionary,definition +abortion,"('abortion webster dictionary', 'abortion definition webster')",abortion webster dictionary,abortion definition webster,4,4,google,2026-03-12 19:51:55.792055,abortion definition webster,abortion merriam webster,dictionary,definition +abortion,"('abortion webster dictionary', 'what is abortion article')",abortion webster dictionary,what is abortion article,5,4,google,2026-03-12 19:51:55.792055,abortion definition webster,abortion merriam webster,dictionary,what is article +abortion,"('abortion webster dictionary', 'is abortion a bad word')",abortion webster dictionary,is abortion a bad word,6,4,google,2026-03-12 19:51:55.792055,abortion definition webster,abortion merriam webster,dictionary,is a bad word +abortion,"('abortion webster dictionary', 'abortion dictionary meaning')",abortion webster dictionary,abortion dictionary meaning,7,4,google,2026-03-12 19:51:55.792055,abortion definition webster,abortion merriam webster,dictionary,meaning +abortion,"('abortion webster dictionary', 'abortion webster')",abortion webster dictionary,abortion webster,8,4,google,2026-03-12 19:51:55.792055,abortion definition webster,abortion merriam webster,dictionary,dictionary +abortion,"(""define abortion webster's dictionary"", 'abortion definition webster dictionary')",define abortion webster's dictionary,abortion definition webster dictionary,1,4,google,2026-03-12 19:51:56.662224,abortion definition webster,abortion definition webster dictionary,define webster's,definition webster +abortion,"(""define abortion webster's dictionary"", 'abortion definition webster')",define abortion webster's dictionary,abortion definition webster,2,4,google,2026-03-12 19:51:56.662224,abortion definition webster,abortion definition webster dictionary,define webster's,definition webster +abortion,"(""define abortion webster's dictionary"", 'abortion definition dictionary')",define abortion webster's dictionary,abortion definition dictionary,3,4,google,2026-03-12 19:51:56.662224,abortion definition webster,abortion definition webster dictionary,define webster's,definition +abortion,"(""define abortion webster's dictionary"", 'abortion dictionary meaning')",define abortion webster's dictionary,abortion dictionary meaning,4,4,google,2026-03-12 19:51:56.662224,abortion definition webster,abortion definition webster dictionary,define webster's,meaning +abortion,"(""define abortion webster's dictionary"", ""abortion webster's dictionary"")",define abortion webster's dictionary,abortion webster's dictionary,5,4,google,2026-03-12 19:51:56.662224,abortion definition webster,abortion definition webster dictionary,define webster's,define webster's +abortion,"(""miscarriage webster's dictionary"", ""abortion webster's dictionary"")",miscarriage webster's dictionary,abortion webster's dictionary,1,4,google,2026-03-12 19:51:57.499195,abortion definition webster,abortion webster's dictionary,miscarriage,abortion +abortion,"(""miscarriage webster's dictionary"", 'what does a miscarriage mean in the bible')",miscarriage webster's dictionary,what does a miscarriage mean in the bible,2,4,google,2026-03-12 19:51:57.499195,abortion definition webster,abortion webster's dictionary,miscarriage,what does a mean in the bible +abortion,"(""miscarriage webster's dictionary"", 'is miscarriage a medical term')",miscarriage webster's dictionary,is miscarriage a medical term,3,4,google,2026-03-12 19:51:57.499195,abortion definition webster,abortion webster's dictionary,miscarriage,is a medical term +abortion,"(""miscarriage webster's dictionary"", 'what do doctors call a miscarriage')",miscarriage webster's dictionary,what do doctors call a miscarriage,4,4,google,2026-03-12 19:51:57.499195,abortion definition webster,abortion webster's dictionary,miscarriage,what do doctors call a +abortion,"(""miscarriage webster's dictionary"", 'miscarriage definition merriam webster')",miscarriage webster's dictionary,miscarriage definition merriam webster,5,4,google,2026-03-12 19:51:57.499195,abortion definition webster,abortion webster's dictionary,miscarriage,definition merriam webster +abortion,"(""miscarriage webster's dictionary"", 'miscarriage dictionary')",miscarriage webster's dictionary,miscarriage dictionary,6,4,google,2026-03-12 19:51:57.499195,abortion definition webster,abortion webster's dictionary,miscarriage,miscarriage +abortion,"(""miscarriage webster's dictionary"", 'miscarriage merriam webster')",miscarriage webster's dictionary,miscarriage merriam webster,7,4,google,2026-03-12 19:51:57.499195,abortion definition webster,abortion webster's dictionary,miscarriage,merriam webster +abortion,"(""miscarriage webster's dictionary"", 'miscarriage medical definition')",miscarriage webster's dictionary,miscarriage medical definition,8,4,google,2026-03-12 19:51:57.499195,abortion definition webster,abortion webster's dictionary,miscarriage,medical definition +abortion,"('abortion webster', ""abortion webster's dictionary"")",abortion webster,abortion webster's dictionary,1,4,google,2026-03-12 19:51:58.699062,abortion definition webster,abortion webster's dictionary,webster,webster's dictionary +abortion,"('abortion webster', 'webster abortion case')",abortion webster,webster abortion case,2,4,google,2026-03-12 19:51:58.699062,abortion definition webster,abortion webster's dictionary,webster,case +abortion,"('abortion webster', 'abortion definition webster')",abortion webster,abortion definition webster,3,4,google,2026-03-12 19:51:58.699062,abortion definition webster,abortion webster's dictionary,webster,definition +abortion,"('abortion webster', 'abortion definition merriam webster')",abortion webster,abortion definition merriam webster,4,4,google,2026-03-12 19:51:58.699062,abortion definition webster,abortion webster's dictionary,webster,definition merriam +abortion,"('abortion webster', 'what is abortion article')",abortion webster,what is abortion article,5,4,google,2026-03-12 19:51:58.699062,abortion definition webster,abortion webster's dictionary,webster,what is article +abortion,"('abortion webster', 'history of abortion in texas')",abortion webster,history of abortion in texas,6,4,google,2026-03-12 19:51:58.699062,abortion definition webster,abortion webster's dictionary,webster,history of in texas +abortion,"('abortion webster', 'abortion past tense')",abortion webster,abortion past tense,7,4,google,2026-03-12 19:51:58.699062,abortion definition webster,abortion webster's dictionary,webster,past tense +abortion,"('inevitable abortion definition easy', 'missed abortion simple definition')",inevitable abortion definition easy,missed abortion simple definition,1,4,google,2026-03-12 19:51:59.634332,abortion definition simple,abortion definition easy,inevitable,missed simple +abortion,"('inevitable abortion definition easy', 'inevitable abortion definition')",inevitable abortion definition easy,inevitable abortion definition,2,4,google,2026-03-12 19:51:59.634332,abortion definition simple,abortion definition easy,inevitable,inevitable +abortion,"('inevitable abortion definition easy', 'inevitable abortion treatment')",inevitable abortion definition easy,inevitable abortion treatment,3,4,google,2026-03-12 19:51:59.634332,abortion definition simple,abortion definition easy,inevitable,treatment +abortion,"('inevitable abortion definition easy', 'inevitable.abortion')",inevitable abortion definition easy,inevitable.abortion,4,4,google,2026-03-12 19:51:59.634332,abortion definition simple,abortion definition easy,inevitable,inevitable.abortion +abortion,"('inevitable abortion definition easy', 'inevitable definition easy')",inevitable abortion definition easy,inevitable definition easy,5,4,google,2026-03-12 19:51:59.634332,abortion definition simple,abortion definition easy,inevitable,inevitable +abortion,"('inevitable abortion definition easy', 'inevitable abortion vs complete abortion')",inevitable abortion definition easy,inevitable abortion vs complete abortion,6,4,google,2026-03-12 19:51:59.634332,abortion definition simple,abortion definition easy,inevitable,vs complete +abortion,"('abortion definition types', 'abortion definition types management')",abortion definition types,abortion definition types management,1,4,google,2026-03-12 19:52:00.598607,abortion definition simple,abortion definition easy,types,management +abortion,"('abortion definition types', 'abortion and its types')",abortion definition types,abortion and its types,2,4,google,2026-03-12 19:52:00.598607,abortion definition simple,abortion definition easy,types,and its +abortion,"('abortion definition types', 'abortion and its types ppt')",abortion definition types,abortion and its types ppt,3,4,google,2026-03-12 19:52:00.598607,abortion definition simple,abortion definition easy,types,and its ppt +abortion,"('abortion definition types', 'abortion and its types slideshare')",abortion definition types,abortion and its types slideshare,4,4,google,2026-03-12 19:52:00.598607,abortion definition simple,abortion definition easy,types,and its slideshare +abortion,"('abortion definition types', 'abortion meaning types')",abortion definition types,abortion meaning types,5,4,google,2026-03-12 19:52:00.598607,abortion definition simple,abortion definition easy,types,meaning +abortion,"('abortion definition types', 'abortion and its types pdf')",abortion definition types,abortion and its types pdf,6,4,google,2026-03-12 19:52:00.598607,abortion definition simple,abortion definition easy,types,and its pdf +abortion,"('abortion definition types', 'abortion definition and types pdf')",abortion definition types,abortion definition and types pdf,7,4,google,2026-03-12 19:52:00.598607,abortion definition simple,abortion definition easy,types,and pdf +abortion,"('abortion definition types', 'medical abortion definition and types')",abortion definition types,medical abortion definition and types,8,4,google,2026-03-12 19:52:00.598607,abortion definition simple,abortion definition easy,types,medical and +abortion,"('abortion definition types', 'types of abortion australia')",abortion definition types,types of abortion australia,9,4,google,2026-03-12 19:52:00.598607,abortion definition simple,abortion definition easy,types,of australia +abortion,"('septic abortion means', 'septic abortion meaning in hindi')",septic abortion means,septic abortion meaning in hindi,1,4,google,2026-03-12 19:52:01.492510,abortion definition simple,septic abortion definition simple,means,meaning in hindi +abortion,"('septic abortion means', 'septic abortion meaning in english')",septic abortion means,septic abortion meaning in english,2,4,google,2026-03-12 19:52:01.492510,abortion definition simple,septic abortion definition simple,means,meaning in english +abortion,"('septic abortion means', 'septic abortion meaning in pregnancy')",septic abortion means,septic abortion meaning in pregnancy,3,4,google,2026-03-12 19:52:01.492510,abortion definition simple,septic abortion definition simple,means,meaning in pregnancy +abortion,"('septic abortion means', 'septic abortion definition in obg')",septic abortion means,septic abortion definition in obg,4,4,google,2026-03-12 19:52:01.492510,abortion definition simple,septic abortion definition simple,means,definition in obg +abortion,"('septic abortion means', 'septic abortion definition simple')",septic abortion means,septic abortion definition simple,5,4,google,2026-03-12 19:52:01.492510,abortion definition simple,septic abortion definition simple,means,definition simple +abortion,"('septic abortion means', 'septic abortion definition ppt')",septic abortion means,septic abortion definition ppt,6,4,google,2026-03-12 19:52:01.492510,abortion definition simple,septic abortion definition simple,means,definition ppt +abortion,"('septic abortion means', 'septic abortion definition acog')",septic abortion means,septic abortion definition acog,7,4,google,2026-03-12 19:52:01.492510,abortion definition simple,septic abortion definition simple,means,definition acog +abortion,"('septic abortion means', 'sepsis abortion meaning')",septic abortion means,sepsis abortion meaning,8,4,google,2026-03-12 19:52:01.492510,abortion definition simple,septic abortion definition simple,means,sepsis meaning +abortion,"('septic abortion means', 'septic abortion meaning in urdu')",septic abortion means,septic abortion meaning in urdu,9,4,google,2026-03-12 19:52:01.492510,abortion definition simple,septic abortion definition simple,means,meaning in urdu +abortion,"('septic abortion organisms', 'septic abortion causative organisms')",septic abortion organisms,septic abortion causative organisms,1,4,google,2026-03-12 19:52:02.991861,abortion definition simple,septic abortion definition simple,organisms,causative +abortion,"('septic abortion organisms', 'types of septic abortion')",septic abortion organisms,types of septic abortion,2,4,google,2026-03-12 19:52:02.991861,abortion definition simple,septic abortion definition simple,organisms,types of +abortion,"('septic abortion organisms', 'septic abortion antibiotics')",septic abortion organisms,septic abortion antibiotics,3,4,google,2026-03-12 19:52:02.991861,abortion definition simple,septic abortion definition simple,organisms,antibiotics +abortion,"('septic abortion organisms', 'what is septic abortion')",septic abortion organisms,what is septic abortion,4,4,google,2026-03-12 19:52:02.991861,abortion definition simple,septic abortion definition simple,organisms,what is +abortion,"('septic abortion organisms', 'septic abortion treatment')",septic abortion organisms,septic abortion treatment,5,4,google,2026-03-12 19:52:02.991861,abortion definition simple,septic abortion definition simple,organisms,treatment +abortion,"('septic abortion organisms', 'septic abortion complications')",septic abortion organisms,septic abortion complications,6,4,google,2026-03-12 19:52:02.991861,abortion definition simple,septic abortion definition simple,organisms,complications +abortion,"('septic abortion organisms', 'septic abortion symptoms')",septic abortion organisms,septic abortion symptoms,7,4,google,2026-03-12 19:52:02.991861,abortion definition simple,septic abortion definition simple,organisms,symptoms +abortion,"('what is septic abortion', 'what is septic abortion mean')",what is septic abortion,what is septic abortion mean,1,4,google,2026-03-12 19:52:04.437658,abortion definition simple,septic abortion definition simple,what is,mean +abortion,"('what is septic abortion', 'what is septic abortion in hindi')",what is septic abortion,what is septic abortion in hindi,2,4,google,2026-03-12 19:52:04.437658,abortion definition simple,septic abortion definition simple,what is,in hindi +abortion,"('what is septic abortion', 'what is septic abortion definition')",what is septic abortion,what is septic abortion definition,3,4,google,2026-03-12 19:52:04.437658,abortion definition simple,septic abortion definition simple,what is,definition +abortion,"('what is septic abortion', 'what is septic abortion symptoms')",what is septic abortion,what is septic abortion symptoms,4,4,google,2026-03-12 19:52:04.437658,abortion definition simple,septic abortion definition simple,what is,symptoms +abortion,"('what is septic abortion', 'what is septic abortion ppt')",what is septic abortion,what is septic abortion ppt,5,4,google,2026-03-12 19:52:04.437658,abortion definition simple,septic abortion definition simple,what is,ppt +abortion,"('what is septic abortion', 'what is sepsis abortion')",what is septic abortion,what is sepsis abortion,6,4,google,2026-03-12 19:52:04.437658,abortion definition simple,septic abortion definition simple,what is,sepsis +abortion,"('what is septic abortion', 'what is septic incomplete abortion')",what is septic abortion,what is septic incomplete abortion,7,4,google,2026-03-12 19:52:04.437658,abortion definition simple,septic abortion definition simple,what is,incomplete +abortion,"('what is septic abortion', 'what is septic miscarriage')",what is septic abortion,what is septic miscarriage,8,4,google,2026-03-12 19:52:04.437658,abortion definition simple,septic abortion definition simple,what is,miscarriage +abortion,"('what is septic abortion', 'what is sepsis after abortion')",what is septic abortion,what is sepsis after abortion,9,4,google,2026-03-12 19:52:04.437658,abortion definition simple,septic abortion definition simple,what is,sepsis after +abortion,"('septic abortion icd 10', 'sepsis abortion icd 10')",septic abortion icd 10,sepsis abortion icd 10,1,4,google,2026-03-12 19:52:05.544165,abortion definition simple,septic abortion definition simple,icd 10,sepsis +abortion,"('septic abortion icd 10', 'septic miscarriage icd 10')",septic abortion icd 10,septic miscarriage icd 10,2,4,google,2026-03-12 19:52:05.544165,abortion definition simple,septic abortion definition simple,icd 10,miscarriage +abortion,"('septic abortion icd 10', 'septic incomplete abortion icd 10')",septic abortion icd 10,septic incomplete abortion icd 10,3,4,google,2026-03-12 19:52:05.544165,abortion definition simple,septic abortion definition simple,icd 10,incomplete +abortion,"('septic abortion icd 10', 'septic induced abortion icd 10')",septic abortion icd 10,septic induced abortion icd 10,4,4,google,2026-03-12 19:52:05.544165,abortion definition simple,septic abortion definition simple,icd 10,induced +abortion,"('septic abortion icd 10', 'septic missed abortion icd 10')",septic abortion icd 10,septic missed abortion icd 10,5,4,google,2026-03-12 19:52:05.544165,abortion definition simple,septic abortion definition simple,icd 10,missed +abortion,"('septic abortion icd 10', 'septic spontaneous abortion icd 10')",septic abortion icd 10,septic spontaneous abortion icd 10,6,4,google,2026-03-12 19:52:05.544165,abortion definition simple,septic abortion definition simple,icd 10,spontaneous +abortion,"('septic abortion icd 10', 'sepsis following abortion icd 10')",septic abortion icd 10,sepsis following abortion icd 10,7,4,google,2026-03-12 19:52:05.544165,abortion definition simple,septic abortion definition simple,icd 10,sepsis following +abortion,"('septic abortion icd 10', 'septic incomplete miscarriage icd 10')",septic abortion icd 10,septic incomplete miscarriage icd 10,8,4,google,2026-03-12 19:52:05.544165,abortion definition simple,septic abortion definition simple,icd 10,incomplete miscarriage +abortion,"('septic abortion icd 10', 'history of septic abortion icd 10')",septic abortion icd 10,history of septic abortion icd 10,9,4,google,2026-03-12 19:52:05.544165,abortion definition simple,septic abortion definition simple,icd 10,history of +abortion,"('septic abortion symptoms', 'sepsis abortion symptoms')",septic abortion symptoms,sepsis abortion symptoms,1,4,google,2026-03-12 19:52:06.665290,abortion definition simple,septic abortion definition simple,symptoms,sepsis +abortion,"('septic abortion symptoms', 'septic miscarriage symptoms')",septic abortion symptoms,septic miscarriage symptoms,2,4,google,2026-03-12 19:52:06.665290,abortion definition simple,septic abortion definition simple,symptoms,miscarriage +abortion,"('septic abortion symptoms', 'septic miscarriage symptoms reddit')",septic abortion symptoms,septic miscarriage symptoms reddit,3,4,google,2026-03-12 19:52:06.665290,abortion definition simple,septic abortion definition simple,symptoms,miscarriage reddit +abortion,"('septic abortion symptoms', 'septic abortion signs')",septic abortion symptoms,septic abortion signs,4,4,google,2026-03-12 19:52:06.665290,abortion definition simple,septic abortion definition simple,symptoms,signs +abortion,"('septic abortion symptoms', 'sepsis miscarriage symptoms')",septic abortion symptoms,sepsis miscarriage symptoms,5,4,google,2026-03-12 19:52:06.665290,abortion definition simple,septic abortion definition simple,symptoms,sepsis miscarriage +abortion,"('septic abortion symptoms', 'sepsis after abortion symptoms')",septic abortion symptoms,sepsis after abortion symptoms,6,4,google,2026-03-12 19:52:06.665290,abortion definition simple,septic abortion definition simple,symptoms,sepsis after +abortion,"('septic abortion symptoms', 'septic abortion signs and symptoms')",septic abortion symptoms,septic abortion signs and symptoms,7,4,google,2026-03-12 19:52:06.665290,abortion definition simple,septic abortion definition simple,symptoms,signs and +abortion,"('septic abortion symptoms', 'septic shock after abortion symptoms')",septic abortion symptoms,septic shock after abortion symptoms,8,4,google,2026-03-12 19:52:06.665290,abortion definition simple,septic abortion definition simple,symptoms,shock after +abortion,"('septic abortion symptoms', 'signs of sepsis after abortion')",septic abortion symptoms,signs of sepsis after abortion,9,4,google,2026-03-12 19:52:06.665290,abortion definition simple,septic abortion definition simple,symptoms,signs of sepsis after +abortion,"('septic abortion wikem', 'septic abortion ward history')",septic abortion wikem,septic abortion ward history,1,4,google,2026-03-12 19:52:08.107454,abortion definition simple,septic abortion definition simple,wikem,ward history +abortion,"('septic abortion wikem', 'septic abortion ward')",septic abortion wikem,septic abortion ward,2,4,google,2026-03-12 19:52:08.107454,abortion definition simple,septic abortion definition simple,wikem,ward +abortion,"('septic abortion wikem', 'septic abortion ward chicago')",septic abortion wikem,septic abortion ward chicago,3,4,google,2026-03-12 19:52:08.107454,abortion definition simple,septic abortion definition simple,wikem,ward chicago +abortion,"('septic abortion wikem', 'septic abortion unit')",septic abortion wikem,septic abortion unit,4,4,google,2026-03-12 19:52:08.107454,abortion definition simple,septic abortion definition simple,wikem,unit +abortion,"('septic abortion treatment', 'septic abortion treatment acog')",septic abortion treatment,septic abortion treatment acog,1,4,google,2026-03-12 19:52:09.350848,abortion definition simple,septic abortion definition simple,treatment,acog +abortion,"('septic abortion treatment', 'septic abortion treatment antibiotics')",septic abortion treatment,septic abortion treatment antibiotics,2,4,google,2026-03-12 19:52:09.350848,abortion definition simple,septic abortion definition simple,treatment,antibiotics +abortion,"('septic abortion treatment', 'septic abortion treatment guidelines')",septic abortion treatment,septic abortion treatment guidelines,3,4,google,2026-03-12 19:52:09.350848,abortion definition simple,septic abortion definition simple,treatment,guidelines +abortion,"('septic abortion treatment', 'septic abortion treatment uptodate')",septic abortion treatment,septic abortion treatment uptodate,4,4,google,2026-03-12 19:52:09.350848,abortion definition simple,septic abortion definition simple,treatment,uptodate +abortion,"('septic abortion treatment', 'septic abortion treatment duration')",septic abortion treatment,septic abortion treatment duration,5,4,google,2026-03-12 19:52:09.350848,abortion definition simple,septic abortion definition simple,treatment,duration +abortion,"('septic abortion treatment', 'septic abortion treatment cdc')",septic abortion treatment,septic abortion treatment cdc,6,4,google,2026-03-12 19:52:09.350848,abortion definition simple,septic abortion definition simple,treatment,cdc +abortion,"('septic abortion treatment', 'septic miscarriage treatment')",septic abortion treatment,septic miscarriage treatment,7,4,google,2026-03-12 19:52:09.350848,abortion definition simple,septic abortion definition simple,treatment,miscarriage +abortion,"('septic abortion treatment', 'septic abortion management')",septic abortion treatment,septic abortion management,8,4,google,2026-03-12 19:52:09.350848,abortion definition simple,septic abortion definition simple,treatment,management +abortion,"('septic abortion treatment', 'septic abortion management pdf')",septic abortion treatment,septic abortion management pdf,9,4,google,2026-03-12 19:52:09.350848,abortion definition simple,septic abortion definition simple,treatment,management pdf +abortion,"('septic abortion unit', 'septic abortion united states')",septic abortion unit,septic abortion united states,1,4,google,2026-03-12 19:52:10.648795,abortion definition simple,septic abortion definition simple,unit,united states +abortion,"('septic abortion unit', 'septic abortion units')",septic abortion unit,septic abortion units,2,4,google,2026-03-12 19:52:10.648795,abortion definition simple,septic abortion definition simple,unit,units +abortion,"('septic abortion unit', 'septic abortion united nations')",septic abortion unit,septic abortion united nations,3,4,google,2026-03-12 19:52:10.648795,abortion definition simple,septic abortion definition simple,unit,united nations +abortion,"('septic abortion unit', 'septic abortion unit california')",septic abortion unit,septic abortion unit california,4,4,google,2026-03-12 19:52:10.648795,abortion definition simple,septic abortion definition simple,unit,california +abortion,"('septic abortion unit', 'septic abortion unity')",septic abortion unit,septic abortion unity,5,4,google,2026-03-12 19:52:10.648795,abortion definition simple,septic abortion definition simple,unit,unity +abortion,"('what is the definition of spontaneous abortion', 'what is the definition of spontaneous abortion quizlet')",what is the definition of spontaneous abortion,what is the definition of spontaneous abortion quizlet,1,4,google,2026-03-12 19:52:11.612042,abortion definition simple,spontaneous abortion definition simple,what is the of,quizlet +abortion,"('what is the definition of spontaneous abortion', 'what is the meaning of spontaneous abortion')",what is the definition of spontaneous abortion,what is the meaning of spontaneous abortion,2,4,google,2026-03-12 19:52:11.612042,abortion definition simple,spontaneous abortion definition simple,what is the of,meaning +abortion,"('what is the definition of spontaneous abortion', 'what is the definition of induced abortion')",what is the definition of spontaneous abortion,what is the definition of induced abortion,3,4,google,2026-03-12 19:52:11.612042,abortion definition simple,spontaneous abortion definition simple,what is the of,induced +abortion,"('what is the definition of spontaneous abortion', 'which statement is included in the definition of spontaneous abortion')",what is the definition of spontaneous abortion,which statement is included in the definition of spontaneous abortion,4,4,google,2026-03-12 19:52:11.612042,abortion definition simple,spontaneous abortion definition simple,what is the of,which statement included in +abortion,"('what is the definition of spontaneous abortion', 'which statement is included in the definition of spontaneous abortion quizlet')",what is the definition of spontaneous abortion,which statement is included in the definition of spontaneous abortion quizlet,5,4,google,2026-03-12 19:52:11.612042,abortion definition simple,spontaneous abortion definition simple,what is the of,which statement included in quizlet +abortion,"('what is the definition of spontaneous abortion', 'what does a spontaneous abortion mean')",what is the definition of spontaneous abortion,what does a spontaneous abortion mean,6,4,google,2026-03-12 19:52:11.612042,abortion definition simple,spontaneous abortion definition simple,what is the of,does a mean +abortion,"('what is the definition of spontaneous abortion', 'what is abortion spontaneous')",what is the definition of spontaneous abortion,what is abortion spontaneous,7,4,google,2026-03-12 19:52:11.612042,abortion definition simple,spontaneous abortion definition simple,what is the of,what is the of +abortion,"('what is the definition of spontaneous abortion', 'what is the difference between a spontaneous abortion and an induced abortion')",what is the definition of spontaneous abortion,what is the difference between a spontaneous abortion and an induced abortion,8,4,google,2026-03-12 19:52:11.612042,abortion definition simple,spontaneous abortion definition simple,what is the of,difference between a and an induced +abortion,"('what is the definition of spontaneous abortion', 'what is the difference between spontaneous and elective abortion')",what is the definition of spontaneous abortion,what is the difference between spontaneous and elective abortion,9,4,google,2026-03-12 19:52:11.612042,abortion definition simple,spontaneous abortion definition simple,what is the of,difference between and elective +abortion,"('what does a spontaneous abortion mean', 'what does a spontaneous miscarriage mean')",what does a spontaneous abortion mean,what does a spontaneous miscarriage mean,1,4,google,2026-03-12 19:52:12.850818,abortion definition simple,spontaneous abortion definition simple,what does a mean,miscarriage +abortion,"('what does a spontaneous abortion mean', 'what does incomplete spontaneous abortion mean')",what does a spontaneous abortion mean,what does incomplete spontaneous abortion mean,2,4,google,2026-03-12 19:52:12.850818,abortion definition simple,spontaneous abortion definition simple,what does a mean,incomplete +abortion,"('what does a spontaneous abortion mean', 'what does induced abortion mean')",what does a spontaneous abortion mean,what does induced abortion mean,3,4,google,2026-03-12 19:52:12.850818,abortion definition simple,spontaneous abortion definition simple,what does a mean,induced +abortion,"('what does a spontaneous abortion mean', 'what does induced miscarriage mean')",what does a spontaneous abortion mean,what does induced miscarriage mean,4,4,google,2026-03-12 19:52:12.850818,abortion definition simple,spontaneous abortion definition simple,what does a mean,induced miscarriage +abortion,"('what does a spontaneous abortion mean', 'what does a miscarriage mean')",what does a spontaneous abortion mean,what does a miscarriage mean,5,4,google,2026-03-12 19:52:12.850818,abortion definition simple,spontaneous abortion definition simple,what does a mean,miscarriage +abortion,"('what does a spontaneous abortion mean', 'what does a miscarriage mean spiritually')",what does a spontaneous abortion mean,what does a miscarriage mean spiritually,6,4,google,2026-03-12 19:52:12.850818,abortion definition simple,spontaneous abortion definition simple,what does a mean,miscarriage spiritually +abortion,"('what does a spontaneous abortion mean', 'what does a miscarriage mean in the bible')",what does a spontaneous abortion mean,what does a miscarriage mean in the bible,7,4,google,2026-03-12 19:52:12.850818,abortion definition simple,spontaneous abortion definition simple,what does a mean,miscarriage in the bible +abortion,"('what does a spontaneous abortion mean', 'what does a miscarriage mean in islam')",what does a spontaneous abortion mean,what does a miscarriage mean in islam,8,4,google,2026-03-12 19:52:12.850818,abortion definition simple,spontaneous abortion definition simple,what does a mean,miscarriage in islam +abortion,"('what does a spontaneous abortion mean', 'what does a miscarriage mean for future pregnancies')",what does a spontaneous abortion mean,what does a miscarriage mean for future pregnancies,9,4,google,2026-03-12 19:52:12.850818,abortion definition simple,spontaneous abortion definition simple,what does a mean,miscarriage for future pregnancies +abortion,"('spontaneous abortion synonyms', 'what is a spontaneous abortion mean')",spontaneous abortion synonyms,what is a spontaneous abortion mean,1,4,google,2026-03-12 19:52:13.808123,abortion definition simple,spontaneous abortion definition simple,synonyms,what is a mean +abortion,"('spontaneous abortion synonyms', 'what does a spontaneous abortion mean')",spontaneous abortion synonyms,what does a spontaneous abortion mean,2,4,google,2026-03-12 19:52:13.808123,abortion definition simple,spontaneous abortion definition simple,synonyms,what does a mean +abortion,"('spontaneous abortion synonyms', 'another word for spontaneous abortion is')",spontaneous abortion synonyms,another word for spontaneous abortion is,3,4,google,2026-03-12 19:52:13.808123,abortion definition simple,spontaneous abortion definition simple,synonyms,another word for is +abortion,"('spontaneous abortion synonyms', 'spontaneous abortion acronym')",spontaneous abortion synonyms,spontaneous abortion acronym,4,4,google,2026-03-12 19:52:13.808123,abortion definition simple,spontaneous abortion definition simple,synonyms,acronym +abortion,"('spontaneous abortion synonyms', 'spontaneous abortion terminology')",spontaneous abortion synonyms,spontaneous abortion terminology,5,4,google,2026-03-12 19:52:13.808123,abortion definition simple,spontaneous abortion definition simple,synonyms,terminology +abortion,"('spontaneous abortion synonyms', 'spontaneous abortion def')",spontaneous abortion synonyms,spontaneous abortion def,6,4,google,2026-03-12 19:52:13.808123,abortion definition simple,spontaneous abortion definition simple,synonyms,def +abortion,"('what is the meaning of complete abortion', 'what is the meaning of spontaneous abortion')",what is the meaning of complete abortion,what is the meaning of spontaneous abortion,1,4,google,2026-03-12 19:52:15.027295,abortion definition simple,complete abortion definition simple,what is the meaning of,spontaneous +abortion,"('what is the meaning of complete abortion', 'what is the meaning of complete miscarriage')",what is the meaning of complete abortion,what is the meaning of complete miscarriage,2,4,google,2026-03-12 19:52:15.027295,abortion definition simple,complete abortion definition simple,what is the meaning of,miscarriage +abortion,"('what is the meaning of complete abortion', 'what is the definition of spontaneous abortion')",what is the meaning of complete abortion,what is the definition of spontaneous abortion,3,4,google,2026-03-12 19:52:15.027295,abortion definition simple,complete abortion definition simple,what is the meaning of,definition spontaneous +abortion,"('what is the meaning of complete abortion', 'what is the definition of spontaneous abortion quizlet')",what is the meaning of complete abortion,what is the definition of spontaneous abortion quizlet,4,4,google,2026-03-12 19:52:15.027295,abortion definition simple,complete abortion definition simple,what is the meaning of,definition spontaneous quizlet +abortion,"('what is the meaning of complete abortion', 'what is the meaning of abortion')",what is the meaning of complete abortion,what is the meaning of abortion,5,4,google,2026-03-12 19:52:15.027295,abortion definition simple,complete abortion definition simple,what is the meaning of,what is the meaning of +abortion,"('what is the meaning of complete abortion', 'what is the meaning of abortion in hindi')",what is the meaning of complete abortion,what is the meaning of abortion in hindi,6,4,google,2026-03-12 19:52:15.027295,abortion definition simple,complete abortion definition simple,what is the meaning of,in hindi +abortion,"('what is the meaning of complete abortion', 'what is the meaning of abortion in pregnancy')",what is the meaning of complete abortion,what is the meaning of abortion in pregnancy,7,4,google,2026-03-12 19:52:15.027295,abortion definition simple,complete abortion definition simple,what is the meaning of,in pregnancy +abortion,"('what is the meaning of complete abortion', 'what is the meaning of abortion in english')",what is the meaning of complete abortion,what is the meaning of abortion in english,8,4,google,2026-03-12 19:52:15.027295,abortion definition simple,complete abortion definition simple,what is the meaning of,in english +abortion,"('what is the meaning of complete abortion', 'what is the meaning of abortion pill')",what is the meaning of complete abortion,what is the meaning of abortion pill,9,4,google,2026-03-12 19:52:15.027295,abortion definition simple,complete abortion definition simple,what is the meaning of,pill +abortion,"('complete abortion treatment', 'spontaneous abortion treatment')",complete abortion treatment,spontaneous abortion treatment,1,4,google,2026-03-12 19:52:16.109734,abortion definition simple,complete abortion definition simple,treatment,spontaneous +abortion,"('complete abortion treatment', 'complete miscarriage treatment')",complete abortion treatment,complete miscarriage treatment,2,4,google,2026-03-12 19:52:16.109734,abortion definition simple,complete abortion definition simple,treatment,miscarriage +abortion,"('complete abortion treatment', 'spontaneous abortion treatment drugs')",complete abortion treatment,spontaneous abortion treatment drugs,3,4,google,2026-03-12 19:52:16.109734,abortion definition simple,complete abortion definition simple,treatment,spontaneous drugs +abortion,"('complete abortion treatment', 'complete abortion management')",complete abortion treatment,complete abortion management,4,4,google,2026-03-12 19:52:16.109734,abortion definition simple,complete abortion definition simple,treatment,management +abortion,"('complete abortion treatment', 'complete abortion definition')",complete abortion treatment,complete abortion definition,5,4,google,2026-03-12 19:52:16.109734,abortion definition simple,complete abortion definition simple,treatment,definition +abortion,"('complete abortion treatment', 'complete abortion sign and symptoms')",complete abortion treatment,complete abortion sign and symptoms,6,4,google,2026-03-12 19:52:16.109734,abortion definition simple,complete abortion definition simple,treatment,sign and symptoms +abortion,"('complete abortion treatment', 'complete abortion laws')",complete abortion treatment,complete abortion laws,7,4,google,2026-03-12 19:52:16.109734,abortion definition simple,complete abortion definition simple,treatment,laws +abortion,"('complete abortion treatment', 'complete. abortion')",complete abortion treatment,complete. abortion,8,4,google,2026-03-12 19:52:16.109734,abortion definition simple,complete abortion definition simple,treatment,complete. +abortion,"('complete abortion vs missed abortion', 'complete abortion vs incomplete abortion')",complete abortion vs missed abortion,complete abortion vs incomplete abortion,1,4,google,2026-03-12 19:52:17.480977,abortion definition simple,complete abortion definition simple,vs missed,incomplete +abortion,"('complete abortion vs missed abortion', 'complete abortion vs incomplete abortion symptoms')",complete abortion vs missed abortion,complete abortion vs incomplete abortion symptoms,2,4,google,2026-03-12 19:52:17.480977,abortion definition simple,complete abortion definition simple,vs missed,incomplete symptoms +abortion,"('complete abortion vs missed abortion', 'complete abortion vs incomplete abortion ultrasound')",complete abortion vs missed abortion,complete abortion vs incomplete abortion ultrasound,3,4,google,2026-03-12 19:52:17.480977,abortion definition simple,complete abortion definition simple,vs missed,incomplete ultrasound +abortion,"('complete abortion vs missed abortion', 'complete abortion and incomplete abortion difference between')",complete abortion vs missed abortion,complete abortion and incomplete abortion difference between,4,4,google,2026-03-12 19:52:17.480977,abortion definition simple,complete abortion definition simple,vs missed,and incomplete difference between +abortion,"('complete abortion vs missed abortion', 'complete abortion and incomplete abortion')",complete abortion vs missed abortion,complete abortion and incomplete abortion,5,4,google,2026-03-12 19:52:17.480977,abortion definition simple,complete abortion definition simple,vs missed,and incomplete +abortion,"('complete abortion vs missed abortion', 'complete abortion and incomplete abortion difference between ppt')",complete abortion vs missed abortion,complete abortion and incomplete abortion difference between ppt,6,4,google,2026-03-12 19:52:17.480977,abortion definition simple,complete abortion definition simple,vs missed,and incomplete difference between ppt +abortion,"('complete abortion vs missed abortion', 'complete miscarriage vs missed miscarriage')",complete abortion vs missed abortion,complete miscarriage vs missed miscarriage,7,4,google,2026-03-12 19:52:17.480977,abortion definition simple,complete abortion definition simple,vs missed,miscarriage miscarriage +abortion,"('complete abortion vs missed abortion', 'missed abortion vs spontaneous abortion')",complete abortion vs missed abortion,missed abortion vs spontaneous abortion,8,4,google,2026-03-12 19:52:17.480977,abortion definition simple,complete abortion definition simple,vs missed,spontaneous +abortion,"('complete abortion vs missed abortion', 'missed vs complete abortion')",complete abortion vs missed abortion,missed vs complete abortion,9,4,google,2026-03-12 19:52:17.480977,abortion definition simple,complete abortion definition simple,vs missed,vs missed +abortion,"('threatened abortion definition', 'threatened abortion definition in obg')",threatened abortion definition,threatened abortion definition in obg,1,4,google,2026-03-12 19:52:18.540483,abortion definition simple,threatened abortion simple definition,threatened,in obg +abortion,"('threatened abortion definition', 'threatened abortion definition in hindi')",threatened abortion definition,threatened abortion definition in hindi,2,4,google,2026-03-12 19:52:18.540483,abortion definition simple,threatened abortion simple definition,threatened,in hindi +abortion,"('threatened abortion definition', 'threatened abortion definition in malayalam')",threatened abortion definition,threatened abortion definition in malayalam,3,4,google,2026-03-12 19:52:18.540483,abortion definition simple,threatened abortion simple definition,threatened,in malayalam +abortion,"('threatened abortion definition', 'threatened abortion definition according to who')",threatened abortion definition,threatened abortion definition according to who,4,4,google,2026-03-12 19:52:18.540483,abortion definition simple,threatened abortion simple definition,threatened,according to who +abortion,"('threatened abortion definition', 'threatened abortion definition ppt')",threatened abortion definition,threatened abortion definition ppt,5,4,google,2026-03-12 19:52:18.540483,abortion definition simple,threatened abortion simple definition,threatened,ppt +abortion,"('threatened abortion definition', 'threatened abortion definition in marathi')",threatened abortion definition,threatened abortion definition in marathi,6,4,google,2026-03-12 19:52:18.540483,abortion definition simple,threatened abortion simple definition,threatened,in marathi +abortion,"('threatened abortion definition', 'threatened abortion definition in malayalam wikipedia')",threatened abortion definition,threatened abortion definition in malayalam wikipedia,7,4,google,2026-03-12 19:52:18.540483,abortion definition simple,threatened abortion simple definition,threatened,in malayalam wikipedia +abortion,"('threatened abortion definition', 'threatened abortion definition acog')",threatened abortion definition,threatened abortion definition acog,8,4,google,2026-03-12 19:52:18.540483,abortion definition simple,threatened abortion simple definition,threatened,acog +abortion,"('threatened abortion definition', 'threatened abortion definition dc dutta')",threatened abortion definition,threatened abortion definition dc dutta,9,4,google,2026-03-12 19:52:18.540483,abortion definition simple,threatened abortion simple definition,threatened,dc dutta +abortion,"('threatened abortion medical term', 'threatened miscarriage medical term')",threatened abortion medical term,threatened miscarriage medical term,1,4,google,2026-03-12 19:52:19.686490,abortion definition simple,threatened abortion simple definition,medical term,miscarriage +abortion,"('threatened abortion medical term', 'inevitable abortion medical term')",threatened abortion medical term,inevitable abortion medical term,2,4,google,2026-03-12 19:52:19.686490,abortion definition simple,threatened abortion simple definition,medical term,inevitable +abortion,"('threatened abortion medical term', 'threatened abortion medical definition')",threatened abortion medical term,threatened abortion medical definition,3,4,google,2026-03-12 19:52:19.686490,abortion definition simple,threatened abortion simple definition,medical term,definition +abortion,"('threatened abortion medical term', 'inevitable abortion medical definition')",threatened abortion medical term,inevitable abortion medical definition,4,4,google,2026-03-12 19:52:19.686490,abortion definition simple,threatened abortion simple definition,medical term,inevitable definition +abortion,"('threatened abortion medical term', 'what do you mean by threatened abortion')",threatened abortion medical term,what do you mean by threatened abortion,5,4,google,2026-03-12 19:52:19.686490,abortion definition simple,threatened abortion simple definition,medical term,what do you mean by +abortion,"('threatened abortion medical term', 'what is threatened abortion')",threatened abortion medical term,what is threatened abortion,6,4,google,2026-03-12 19:52:19.686490,abortion definition simple,threatened abortion simple definition,medical term,what is +abortion,"('threatened abortion medical term', 'what is threatened abortion in pregnancy')",threatened abortion medical term,what is threatened abortion in pregnancy,7,4,google,2026-03-12 19:52:19.686490,abortion definition simple,threatened abortion simple definition,medical term,what is in pregnancy +abortion,"('threatened abortion medical term', 'threatened abortion definition')",threatened abortion medical term,threatened abortion definition,8,4,google,2026-03-12 19:52:19.686490,abortion definition simple,threatened abortion simple definition,medical term,definition +abortion,"('threatened abortion medical term', 'threatened abortion mdm')",threatened abortion medical term,threatened abortion mdm,9,4,google,2026-03-12 19:52:19.686490,abortion definition simple,threatened abortion simple definition,medical term,mdm +abortion,"('threatened abortion vs spontaneous abortion', 'inevitable abortion vs spontaneous abortion')",threatened abortion vs spontaneous abortion,inevitable abortion vs spontaneous abortion,1,4,google,2026-03-12 19:52:20.681619,abortion definition simple,threatened abortion simple definition,vs spontaneous,inevitable +abortion,"('threatened abortion vs spontaneous abortion', 'threatened abortion vs induced abortion')",threatened abortion vs spontaneous abortion,threatened abortion vs induced abortion,2,4,google,2026-03-12 19:52:20.681619,abortion definition simple,threatened abortion simple definition,vs spontaneous,induced +abortion,"('threatened abortion vs spontaneous abortion', 'threatened abortion and spontaneous abortion')",threatened abortion vs spontaneous abortion,threatened abortion and spontaneous abortion,3,4,google,2026-03-12 19:52:20.681619,abortion definition simple,threatened abortion simple definition,vs spontaneous,and +abortion,"('threatened abortion vs spontaneous abortion', 'threatened abortion and induced abortion')",threatened abortion vs spontaneous abortion,threatened abortion and induced abortion,4,4,google,2026-03-12 19:52:20.681619,abortion definition simple,threatened abortion simple definition,vs spontaneous,and induced +abortion,"('threatened abortion vs spontaneous abortion', 'threatened miscarriage vs spontaneous miscarriage')",threatened abortion vs spontaneous abortion,threatened miscarriage vs spontaneous miscarriage,5,4,google,2026-03-12 19:52:20.681619,abortion definition simple,threatened abortion simple definition,vs spontaneous,miscarriage miscarriage +abortion,"('threatened abortion vs spontaneous abortion', 'threatened abortion vs spontaneous')",threatened abortion vs spontaneous abortion,threatened abortion vs spontaneous,6,4,google,2026-03-12 19:52:20.681619,abortion definition simple,threatened abortion simple definition,vs spontaneous,vs spontaneous +abortion,"('threatened abortion vs spontaneous abortion', 'difference between miscarriage and threatened abortion')",threatened abortion vs spontaneous abortion,difference between miscarriage and threatened abortion,7,4,google,2026-03-12 19:52:20.681619,abortion definition simple,threatened abortion simple definition,vs spontaneous,difference between miscarriage and +abortion,"('threatened abortion vs spontaneous abortion', 'threatened abortion vs missed abortion')",threatened abortion vs spontaneous abortion,threatened abortion vs missed abortion,8,4,google,2026-03-12 19:52:20.681619,abortion definition simple,threatened abortion simple definition,vs spontaneous,missed +abortion,"('threatened abortion vs spontaneous abortion', 'threatened spontaneous abortion definition')",threatened abortion vs spontaneous abortion,threatened spontaneous abortion definition,9,4,google,2026-03-12 19:52:20.681619,abortion definition simple,threatened abortion simple definition,vs spontaneous,definition +abortion,"('threatened abortion vs inevitable abortion', 'threatened abortion and inevitable abortion difference')",threatened abortion vs inevitable abortion,threatened abortion and inevitable abortion difference,1,4,google,2026-03-12 19:52:21.980612,abortion definition simple,threatened abortion simple definition,vs inevitable,and difference +abortion,"('threatened abortion vs inevitable abortion', 'threatened abortion vs missed abortion')",threatened abortion vs inevitable abortion,threatened abortion vs missed abortion,2,4,google,2026-03-12 19:52:21.980612,abortion definition simple,threatened abortion simple definition,vs inevitable,missed +abortion,"('threatened abortion vs inevitable abortion', 'threatened abortion vs incomplete abortion')",threatened abortion vs inevitable abortion,threatened abortion vs incomplete abortion,3,4,google,2026-03-12 19:52:21.980612,abortion definition simple,threatened abortion simple definition,vs inevitable,incomplete +abortion,"('threatened abortion vs inevitable abortion', 'threatened abortion and inevitable abortion')",threatened abortion vs inevitable abortion,threatened abortion and inevitable abortion,4,4,google,2026-03-12 19:52:21.980612,abortion definition simple,threatened abortion simple definition,vs inevitable,and +abortion,"('threatened abortion vs inevitable abortion', 'threatened abortion vs imminent abortion')",threatened abortion vs inevitable abortion,threatened abortion vs imminent abortion,5,4,google,2026-03-12 19:52:21.980612,abortion definition simple,threatened abortion simple definition,vs inevitable,imminent +abortion,"('threatened abortion vs inevitable abortion', 'threatened abortion and inevitable abortion difference ppt')",threatened abortion vs inevitable abortion,threatened abortion and inevitable abortion difference ppt,6,4,google,2026-03-12 19:52:21.980612,abortion definition simple,threatened abortion simple definition,vs inevitable,and difference ppt +abortion,"('threatened abortion vs inevitable abortion', 'threatened abortion and missed abortion')",threatened abortion vs inevitable abortion,threatened abortion and missed abortion,7,4,google,2026-03-12 19:52:21.980612,abortion definition simple,threatened abortion simple definition,vs inevitable,and missed +abortion,"('threatened abortion vs inevitable abortion', 'threatened abortion and incomplete abortion')",threatened abortion vs inevitable abortion,threatened abortion and incomplete abortion,8,4,google,2026-03-12 19:52:21.980612,abortion definition simple,threatened abortion simple definition,vs inevitable,and incomplete +abortion,"('threatened abortion vs inevitable abortion', 'threatened abortion and imminent abortion')",threatened abortion vs inevitable abortion,threatened abortion and imminent abortion,9,4,google,2026-03-12 19:52:21.980612,abortion definition simple,threatened abortion simple definition,vs inevitable,and imminent +abortion,"('inevitable abortion definition', 'inevitable abortion definition in hindi')",inevitable abortion definition,inevitable abortion definition in hindi,1,4,google,2026-03-12 19:52:22.773110,abortion definition simple,inevitable abortion simple definition,inevitable,in hindi +abortion,"('inevitable abortion definition', 'inevitable abortion definition in obg')",inevitable abortion definition,inevitable abortion definition in obg,2,4,google,2026-03-12 19:52:22.773110,abortion definition simple,inevitable abortion simple definition,inevitable,in obg +abortion,"('inevitable abortion definition', 'inevitable abortion definition acog')",inevitable abortion definition,inevitable abortion definition acog,3,4,google,2026-03-12 19:52:22.773110,abortion definition simple,inevitable abortion simple definition,inevitable,acog +abortion,"('inevitable abortion definition', 'inevitable abortion definition easy')",inevitable abortion definition,inevitable abortion definition easy,4,4,google,2026-03-12 19:52:22.773110,abortion definition simple,inevitable abortion simple definition,inevitable,easy +abortion,"('inevitable abortion definition', 'inevitable abortion definition according to who')",inevitable abortion definition,inevitable abortion definition according to who,5,4,google,2026-03-12 19:52:22.773110,abortion definition simple,inevitable abortion simple definition,inevitable,according to who +abortion,"('inevitable abortion definition', 'threatened abortion definition')",inevitable abortion definition,threatened abortion definition,6,4,google,2026-03-12 19:52:22.773110,abortion definition simple,inevitable abortion simple definition,inevitable,threatened +abortion,"('inevitable abortion definition', 'missed abortion definition')",inevitable abortion definition,missed abortion definition,7,4,google,2026-03-12 19:52:22.773110,abortion definition simple,inevitable abortion simple definition,inevitable,missed +abortion,"('inevitable abortion definition', 'incomplete abortion definition')",inevitable abortion definition,incomplete abortion definition,8,4,google,2026-03-12 19:52:22.773110,abortion definition simple,inevitable abortion simple definition,inevitable,incomplete +abortion,"('inevitable abortion definition', 'inevitable miscarriage definition')",inevitable abortion definition,inevitable miscarriage definition,9,4,google,2026-03-12 19:52:22.773110,abortion definition simple,inevitable abortion simple definition,inevitable,miscarriage +abortion,"('inevitable abortion causes', 'missed abortion causes')",inevitable abortion causes,missed abortion causes,1,4,google,2026-03-12 19:52:23.947714,abortion definition simple,inevitable abortion simple definition,causes,missed +abortion,"('inevitable abortion causes', 'threatened abortion causes')",inevitable abortion causes,threatened abortion causes,2,4,google,2026-03-12 19:52:23.947714,abortion definition simple,inevitable abortion simple definition,causes,threatened +abortion,"('inevitable abortion causes', 'incomplete abortion causes')",inevitable abortion causes,incomplete abortion causes,3,4,google,2026-03-12 19:52:23.947714,abortion definition simple,inevitable abortion simple definition,causes,incomplete +abortion,"('inevitable abortion causes', 'inevitable miscarriage causes')",inevitable abortion causes,inevitable miscarriage causes,4,4,google,2026-03-12 19:52:23.947714,abortion definition simple,inevitable abortion simple definition,causes,miscarriage +abortion,"('inevitable abortion causes', 'complete abortion causes')",inevitable abortion causes,complete abortion causes,5,4,google,2026-03-12 19:52:23.947714,abortion definition simple,inevitable abortion simple definition,causes,complete +abortion,"('inevitable abortion causes', 'missed abortion causes in hindi')",inevitable abortion causes,missed abortion causes in hindi,6,4,google,2026-03-12 19:52:23.947714,abortion definition simple,inevitable abortion simple definition,causes,missed in hindi +abortion,"('inevitable abortion causes', 'threatened abortion causes and treatment')",inevitable abortion causes,threatened abortion causes and treatment,7,4,google,2026-03-12 19:52:23.947714,abortion definition simple,inevitable abortion simple definition,causes,threatened and treatment +abortion,"('inevitable abortion causes', 'incomplete abortion causes ppt')",inevitable abortion causes,incomplete abortion causes ppt,8,4,google,2026-03-12 19:52:23.947714,abortion definition simple,inevitable abortion simple definition,causes,incomplete ppt +abortion,"('inevitable abortion causes', 'threatened abortion causes in hindi')",inevitable abortion causes,threatened abortion causes in hindi,9,4,google,2026-03-12 19:52:23.947714,abortion definition simple,inevitable abortion simple definition,causes,threatened in hindi +abortion,"('inevitable abortion treatment', 'inevitable abortion treatment guidelines')",inevitable abortion treatment,inevitable abortion treatment guidelines,1,4,google,2026-03-12 19:52:24.860114,abortion definition simple,inevitable abortion simple definition,treatment,guidelines +abortion,"('inevitable abortion treatment', 'incomplete abortion treatment')",inevitable abortion treatment,incomplete abortion treatment,2,4,google,2026-03-12 19:52:24.860114,abortion definition simple,inevitable abortion simple definition,treatment,incomplete +abortion,"('inevitable abortion treatment', 'missed abortion treatment')",inevitable abortion treatment,missed abortion treatment,3,4,google,2026-03-12 19:52:24.860114,abortion definition simple,inevitable abortion simple definition,treatment,missed +abortion,"('inevitable abortion treatment', 'threatened abortion treatment')",inevitable abortion treatment,threatened abortion treatment,4,4,google,2026-03-12 19:52:24.860114,abortion definition simple,inevitable abortion simple definition,treatment,threatened +abortion,"('inevitable abortion treatment', 'missed abortion treatment in hindi')",inevitable abortion treatment,missed abortion treatment in hindi,5,4,google,2026-03-12 19:52:24.860114,abortion definition simple,inevitable abortion simple definition,treatment,missed in hindi +abortion,"('inevitable abortion treatment', 'threatened abortion treatment guidelines')",inevitable abortion treatment,threatened abortion treatment guidelines,6,4,google,2026-03-12 19:52:24.860114,abortion definition simple,inevitable abortion simple definition,treatment,threatened guidelines +abortion,"('inevitable abortion treatment', 'complete abortion treatment')",inevitable abortion treatment,complete abortion treatment,7,4,google,2026-03-12 19:52:24.860114,abortion definition simple,inevitable abortion simple definition,treatment,complete +abortion,"('inevitable abortion treatment', 'threatened abortion treatment guidelines pdf')",inevitable abortion treatment,threatened abortion treatment guidelines pdf,8,4,google,2026-03-12 19:52:24.860114,abortion definition simple,inevitable abortion simple definition,treatment,threatened guidelines pdf +abortion,"('inevitable abortion treatment', 'incomplete abortion treatment in hindi')",inevitable abortion treatment,incomplete abortion treatment in hindi,9,4,google,2026-03-12 19:52:24.860114,abortion definition simple,inevitable abortion simple definition,treatment,incomplete in hindi +abortion,"('inevitable.abortion', 'inevitable abortion definition')",inevitable.abortion,inevitable abortion definition,1,4,google,2026-03-12 19:52:25.718896,abortion definition simple,inevitable abortion simple definition,inevitable.abortion,inevitable abortion definition +abortion,"('inevitable.abortion', 'inevitable abortion icd 10')",inevitable.abortion,inevitable abortion icd 10,2,4,google,2026-03-12 19:52:25.718896,abortion definition simple,inevitable abortion simple definition,inevitable.abortion,inevitable abortion icd 10 +abortion,"('inevitable.abortion', 'inevitable abortion treatment')",inevitable.abortion,inevitable abortion treatment,3,4,google,2026-03-12 19:52:25.718896,abortion definition simple,inevitable abortion simple definition,inevitable.abortion,inevitable abortion treatment +abortion,"('inevitable.abortion', 'inevitable abortion radiology')",inevitable.abortion,inevitable abortion radiology,4,4,google,2026-03-12 19:52:25.718896,abortion definition simple,inevitable abortion simple definition,inevitable.abortion,inevitable abortion radiology +abortion,"('inevitable.abortion', 'inevitable abortion ultrasound')",inevitable.abortion,inevitable abortion ultrasound,5,4,google,2026-03-12 19:52:25.718896,abortion definition simple,inevitable abortion simple definition,inevitable.abortion,inevitable abortion ultrasound +abortion,"('inevitable.abortion', 'inevitable abortion vs threatened abortion')",inevitable.abortion,inevitable abortion vs threatened abortion,6,4,google,2026-03-12 19:52:25.718896,abortion definition simple,inevitable abortion simple definition,inevitable.abortion,inevitable abortion vs threatened abortion +abortion,"('inevitable.abortion', 'inevitable abortion in hindi')",inevitable.abortion,inevitable abortion in hindi,7,4,google,2026-03-12 19:52:25.718896,abortion definition simple,inevitable abortion simple definition,inevitable.abortion,inevitable abortion in hindi +abortion,"('inevitable.abortion', 'inevitable abortion meaning in hindi')",inevitable.abortion,inevitable abortion meaning in hindi,8,4,google,2026-03-12 19:52:25.718896,abortion definition simple,inevitable abortion simple definition,inevitable.abortion,inevitable abortion meaning in hindi +abortion,"('inevitable.abortion', 'inevitable abortion management')",inevitable.abortion,inevitable abortion management,9,4,google,2026-03-12 19:52:25.718896,abortion definition simple,inevitable abortion simple definition,inevitable.abortion,inevitable abortion management +abortion,"('inevitable sab', 'inevitable example')",inevitable sab,inevitable example,1,4,google,2026-03-12 19:52:27.010507,abortion definition simple,inevitable abortion simple definition,sab,example +abortion,"('inevitable sab', 'is sinning inevitable')",inevitable sab,is sinning inevitable,2,4,google,2026-03-12 19:52:27.010507,abortion definition simple,inevitable abortion simple definition,sab,is sinning +abortion,"('inevitable sab', 'inevitable samo')",inevitable sab,inevitable samo,3,4,google,2026-03-12 19:52:27.010507,abortion definition simple,inevitable abortion simple definition,sab,samo +abortion,"('inevitable sab', 'inevitable sy')",inevitable sab,inevitable sy,4,4,google,2026-03-12 19:52:27.010507,abortion definition simple,inevitable abortion simple definition,sab,sy +abortion,"('inevitable sab', 'inevitable spanish')",inevitable sab,inevitable spanish,5,4,google,2026-03-12 19:52:27.010507,abortion definition simple,inevitable abortion simple definition,sab,spanish +abortion,"('inevitable sab', 'inevitable sub')",inevitable sab,inevitable sub,6,4,google,2026-03-12 19:52:27.010507,abortion definition simple,inevitable abortion simple definition,sab,sub +abortion,"('inevitable sab', 'inevitable spanish meaning')",inevitable sab,inevitable spanish meaning,7,4,google,2026-03-12 19:52:27.010507,abortion definition simple,inevitable abortion simple definition,sab,spanish meaning +abortion,"('inevitable abortion vs complete abortion', 'missed abortion vs complete abortion')",inevitable abortion vs complete abortion,missed abortion vs complete abortion,1,4,google,2026-03-12 19:52:27.836086,abortion definition simple,inevitable abortion simple definition,vs complete,missed +abortion,"('inevitable abortion vs complete abortion', 'incomplete abortion vs complete abortion')",inevitable abortion vs complete abortion,incomplete abortion vs complete abortion,2,4,google,2026-03-12 19:52:27.836086,abortion definition simple,inevitable abortion simple definition,vs complete,incomplete +abortion,"('inevitable abortion vs complete abortion', 'missed abortion vs spontaneous abortion')",inevitable abortion vs complete abortion,missed abortion vs spontaneous abortion,3,4,google,2026-03-12 19:52:27.836086,abortion definition simple,inevitable abortion simple definition,vs complete,missed spontaneous +abortion,"('inevitable abortion vs complete abortion', 'inevitable abortion vs missed abortion')",inevitable abortion vs complete abortion,inevitable abortion vs missed abortion,4,4,google,2026-03-12 19:52:27.836086,abortion definition simple,inevitable abortion simple definition,vs complete,missed +abortion,"('inevitable abortion vs complete abortion', 'inevitable abortion vs threatened abortion')",inevitable abortion vs complete abortion,inevitable abortion vs threatened abortion,5,4,google,2026-03-12 19:52:27.836086,abortion definition simple,inevitable abortion simple definition,vs complete,threatened +abortion,"('inevitable abortion vs complete abortion', 'missed abortion vs abortion')",inevitable abortion vs complete abortion,missed abortion vs abortion,6,4,google,2026-03-12 19:52:27.836086,abortion definition simple,inevitable abortion simple definition,vs complete,missed +abortion,"('inevitable abortion vs complete abortion', 'threatened vs complete abortion')",inevitable abortion vs complete abortion,threatened vs complete abortion,7,4,google,2026-03-12 19:52:27.836086,abortion definition simple,inevitable abortion simple definition,vs complete,threatened +abortion,"('inevitable abortion vs complete abortion', 'inevitable abortion vs incomplete abortion')",inevitable abortion vs complete abortion,inevitable abortion vs incomplete abortion,8,4,google,2026-03-12 19:52:27.836086,abortion definition simple,inevitable abortion simple definition,vs complete,incomplete +abortion,"('inevitable abortion vs complete abortion', 'inevitable vs incomplete abortion')",inevitable abortion vs complete abortion,inevitable vs incomplete abortion,9,4,google,2026-03-12 19:52:27.836086,abortion definition simple,inevitable abortion simple definition,vs complete,incomplete +abortion,"('spontaneous abortion simple definition', 'induced abortion simple definition')",spontaneous abortion simple definition,induced abortion simple definition,1,4,google,2026-03-12 19:52:28.660676,abortion definition simple,missed abortion simple definition,spontaneous,induced +abortion,"('spontaneous abortion simple definition', 'what is a spontaneous abortion mean')",spontaneous abortion simple definition,what is a spontaneous abortion mean,2,4,google,2026-03-12 19:52:28.660676,abortion definition simple,missed abortion simple definition,spontaneous,what is a mean +abortion,"('spontaneous abortion simple definition', 'what is the definition of spontaneous abortion')",spontaneous abortion simple definition,what is the definition of spontaneous abortion,3,4,google,2026-03-12 19:52:28.660676,abortion definition simple,missed abortion simple definition,spontaneous,what is the of +abortion,"('spontaneous abortion simple definition', 'what does a spontaneous abortion mean')",spontaneous abortion simple definition,what does a spontaneous abortion mean,4,4,google,2026-03-12 19:52:28.660676,abortion definition simple,missed abortion simple definition,spontaneous,what does a mean +abortion,"('spontaneous abortion simple definition', 'spontaneous abortion synonyms')",spontaneous abortion simple definition,spontaneous abortion synonyms,5,4,google,2026-03-12 19:52:28.660676,abortion definition simple,missed abortion simple definition,spontaneous,synonyms +abortion,"('spontaneous abortion simple definition', 'spontaneous abortion def')",spontaneous abortion simple definition,spontaneous abortion def,6,4,google,2026-03-12 19:52:28.660676,abortion definition simple,missed abortion simple definition,spontaneous,def +abortion,"('spontaneous abortion simple definition', 'spontaneous abortion medical definition')",spontaneous abortion simple definition,spontaneous abortion medical definition,7,4,google,2026-03-12 19:52:28.660676,abortion definition simple,missed abortion simple definition,spontaneous,medical +abortion,"('spontaneous abortion simple definition', 'spontaneous abortion acronym')",spontaneous abortion simple definition,spontaneous abortion acronym,8,4,google,2026-03-12 19:52:28.660676,abortion definition simple,missed abortion simple definition,spontaneous,acronym +abortion,"('missed abortion definition', 'missed abortion definition acog')",missed abortion definition,missed abortion definition acog,1,4,google,2026-03-12 19:52:29.469128,abortion definition simple,missed abortion simple definition,missed,acog +abortion,"('missed abortion definition', 'missed abortion definition in obg')",missed abortion definition,missed abortion definition in obg,2,4,google,2026-03-12 19:52:29.469128,abortion definition simple,missed abortion simple definition,missed,in obg +abortion,"('missed abortion definition', 'missed abortion definition in hindi')",missed abortion definition,missed abortion definition in hindi,3,4,google,2026-03-12 19:52:29.469128,abortion definition simple,missed abortion simple definition,missed,in hindi +abortion,"('missed abortion definition', 'missed abortion definition weeks')",missed abortion definition,missed abortion definition weeks,4,4,google,2026-03-12 19:52:29.469128,abortion definition simple,missed abortion simple definition,missed,weeks +abortion,"('missed abortion definition', 'missed abortion definition ultrasound')",missed abortion definition,missed abortion definition ultrasound,5,4,google,2026-03-12 19:52:29.469128,abortion definition simple,missed abortion simple definition,missed,ultrasound +abortion,"('missed abortion definition', 'missed abortion definition radiology')",missed abortion definition,missed abortion definition radiology,6,4,google,2026-03-12 19:52:29.469128,abortion definition simple,missed abortion simple definition,missed,radiology +abortion,"('missed abortion definition', 'missed abortion definition ppt')",missed abortion definition,missed abortion definition ppt,7,4,google,2026-03-12 19:52:29.469128,abortion definition simple,missed abortion simple definition,missed,ppt +abortion,"('missed abortion definition', 'missed abortion definition pregnancy')",missed abortion definition,missed abortion definition pregnancy,8,4,google,2026-03-12 19:52:29.469128,abortion definition simple,missed abortion simple definition,missed,pregnancy +abortion,"('missed abortion definition', 'missed abortion definition medical')",missed abortion definition,missed abortion definition medical,9,4,google,2026-03-12 19:52:29.469128,abortion definition simple,missed abortion simple definition,missed,medical +abortion,"('explain missed abortion', 'what is missed abortion')",explain missed abortion,what is missed abortion,1,4,google,2026-03-12 19:52:30.600996,abortion definition simple,missed abortion simple definition,explain,what is +abortion,"('explain missed abortion', 'define missed abortion')",explain missed abortion,define missed abortion,2,4,google,2026-03-12 19:52:30.600996,abortion definition simple,missed abortion simple definition,explain,define +abortion,"('explain missed abortion', 'what is missed abortion in pregnancy')",explain missed abortion,what is missed abortion in pregnancy,3,4,google,2026-03-12 19:52:30.600996,abortion definition simple,missed abortion simple definition,explain,what is in pregnancy +abortion,"('explain missed abortion', 'what is missed abortion in ultrasound report')",explain missed abortion,what is missed abortion in ultrasound report,4,4,google,2026-03-12 19:52:30.600996,abortion definition simple,missed abortion simple definition,explain,what is in ultrasound report +abortion,"('explain missed abortion', 'what is missed abortion at 6 weeks')",explain missed abortion,what is missed abortion at 6 weeks,5,4,google,2026-03-12 19:52:30.600996,abortion definition simple,missed abortion simple definition,explain,what is at 6 weeks +abortion,"('explain missed abortion', 'what is missed abortion treatment')",explain missed abortion,what is missed abortion treatment,6,4,google,2026-03-12 19:52:30.600996,abortion definition simple,missed abortion simple definition,explain,what is treatment +abortion,"('explain missed abortion', 'explain spontaneous abortion')",explain missed abortion,explain spontaneous abortion,7,4,google,2026-03-12 19:52:30.600996,abortion definition simple,missed abortion simple definition,explain,spontaneous +abortion,"('explain missed abortion', 'what is missed abortion in hindi')",explain missed abortion,what is missed abortion in hindi,8,4,google,2026-03-12 19:52:30.600996,abortion definition simple,missed abortion simple definition,explain,what is in hindi +abortion,"('explain missed abortion', 'explain incomplete abortion')",explain missed abortion,explain incomplete abortion,9,4,google,2026-03-12 19:52:30.600996,abortion definition simple,missed abortion simple definition,explain,incomplete +abortion,"('what is mean by missed abortion', 'what is mean by spontaneous abortion')",what is mean by missed abortion,what is mean by spontaneous abortion,1,4,google,2026-03-12 19:52:32.100282,abortion definition simple,missed abortion simple definition,what is mean by,spontaneous +abortion,"('what is mean by missed abortion', 'what is mean by incomplete abortion')",what is mean by missed abortion,what is mean by incomplete abortion,2,4,google,2026-03-12 19:52:32.100282,abortion definition simple,missed abortion simple definition,what is mean by,incomplete +abortion,"('what is mean by missed abortion', 'what is the meaning of missed abortion in hindi')",what is mean by missed abortion,what is the meaning of missed abortion in hindi,3,4,google,2026-03-12 19:52:32.100282,abortion definition simple,missed abortion simple definition,what is mean by,the meaning of in hindi +abortion,"('what is mean by missed abortion', 'what do you mean by spontaneous abortion')",what is mean by missed abortion,what do you mean by spontaneous abortion,4,4,google,2026-03-12 19:52:32.100282,abortion definition simple,missed abortion simple definition,what is mean by,do you spontaneous +abortion,"('what is mean by missed abortion', 'explain missed abortion')",what is mean by missed abortion,explain missed abortion,5,4,google,2026-03-12 19:52:32.100282,abortion definition simple,missed abortion simple definition,what is mean by,explain +abortion,"('what is mean by missed abortion', 'what does missed abortion mean in pregnancy')",what is mean by missed abortion,what does missed abortion mean in pregnancy,6,4,google,2026-03-12 19:52:32.100282,abortion definition simple,missed abortion simple definition,what is mean by,does in pregnancy +abortion,"('what is mean by missed abortion', 'what does it mean by missed abortion')",what is mean by missed abortion,what does it mean by missed abortion,7,4,google,2026-03-12 19:52:32.100282,abortion definition simple,missed abortion simple definition,what is mean by,does it +abortion,"('what is mean by missed abortion', 'what is meant by missed abortion')",what is mean by missed abortion,what is meant by missed abortion,8,4,google,2026-03-12 19:52:32.100282,abortion definition simple,missed abortion simple definition,what is mean by,meant +abortion,"('what is mean by missed abortion', 'what is missed ab')",what is mean by missed abortion,what is missed ab,9,4,google,2026-03-12 19:52:32.100282,abortion definition simple,missed abortion simple definition,what is mean by,ab +abortion,"('what does it mean by missed abortion', 'what does it mean by incomplete abortion')",what does it mean by missed abortion,what does it mean by incomplete abortion,1,4,google,2026-03-12 19:52:33.261713,abortion definition simple,missed abortion simple definition,what does it mean by,incomplete +abortion,"('what does it mean by missed abortion', 'what does it mean by missed miscarriage')",what does it mean by missed abortion,what does it mean by missed miscarriage,2,4,google,2026-03-12 19:52:33.261713,abortion definition simple,missed abortion simple definition,what does it mean by,miscarriage +abortion,"('what does it mean by missed abortion', 'what does it mean by incomplete miscarriage')",what does it mean by missed abortion,what does it mean by incomplete miscarriage,3,4,google,2026-03-12 19:52:33.261713,abortion definition simple,missed abortion simple definition,what does it mean by,incomplete miscarriage +abortion,"('what does it mean by missed abortion', 'what does it mean spontaneous abortion')",what does it mean by missed abortion,what does it mean spontaneous abortion,4,4,google,2026-03-12 19:52:33.261713,abortion definition simple,missed abortion simple definition,what does it mean by,spontaneous +abortion,"('what does it mean by missed abortion', 'what does missed abortion mean in pregnancy')",what does it mean by missed abortion,what does missed abortion mean in pregnancy,5,4,google,2026-03-12 19:52:33.261713,abortion definition simple,missed abortion simple definition,what does it mean by,in pregnancy +abortion,"('what does it mean by missed abortion', 'is missed abortion dangerous')",what does it mean by missed abortion,is missed abortion dangerous,6,4,google,2026-03-12 19:52:33.261713,abortion definition simple,missed abortion simple definition,what does it mean by,is dangerous +abortion,"('what does it mean by missed abortion', 'what does it mean by missed period')",what does it mean by missed abortion,what does it mean by missed period,7,4,google,2026-03-12 19:52:33.261713,abortion definition simple,missed abortion simple definition,what does it mean by,period +abortion,"('what does it mean by missed abortion', 'what is meant by missed abortion')",what does it mean by missed abortion,what is meant by missed abortion,8,4,google,2026-03-12 19:52:33.261713,abortion definition simple,missed abortion simple definition,what does it mean by,is meant +abortion,"('missed abortion medical definition', 'spontaneous abortion medical definition')",missed abortion medical definition,spontaneous abortion medical definition,1,4,google,2026-03-12 19:52:34.456656,abortion definition simple,missed abortion simple definition,medical,spontaneous +abortion,"('missed abortion medical definition', 'missed miscarriage medical definition')",missed abortion medical definition,missed miscarriage medical definition,2,4,google,2026-03-12 19:52:34.456656,abortion definition simple,missed abortion simple definition,medical,miscarriage +abortion,"('missed abortion medical definition', 'incomplete abortion medical definition')",missed abortion medical definition,incomplete abortion medical definition,3,4,google,2026-03-12 19:52:34.456656,abortion definition simple,missed abortion simple definition,medical,incomplete +abortion,"('missed abortion medical definition', 'missed abortion medical term')",missed abortion medical definition,missed abortion medical term,4,4,google,2026-03-12 19:52:34.456656,abortion definition simple,missed abortion simple definition,medical,term +abortion,"('missed abortion medical definition', 'missed abortion medical abbreviation')",missed abortion medical definition,missed abortion medical abbreviation,5,4,google,2026-03-12 19:52:34.456656,abortion definition simple,missed abortion simple definition,medical,abbreviation +abortion,"('missed abortion medical definition', 'missed ab medical abbreviation')",missed abortion medical definition,missed ab medical abbreviation,6,4,google,2026-03-12 19:52:34.456656,abortion definition simple,missed abortion simple definition,medical,ab abbreviation +abortion,"('missed abortion medical definition', 'missed ab medical term')",missed abortion medical definition,missed ab medical term,7,4,google,2026-03-12 19:52:34.456656,abortion definition simple,missed abortion simple definition,medical,ab term +abortion,"('missed abortion medical definition', 'missed ab medical meaning')",missed abortion medical definition,missed ab medical meaning,8,4,google,2026-03-12 19:52:34.456656,abortion definition simple,missed abortion simple definition,medical,ab meaning +abortion,"('missed abortion medical definition', 'spontaneous abortion medical term')",missed abortion medical definition,spontaneous abortion medical term,9,4,google,2026-03-12 19:52:34.456656,abortion definition simple,missed abortion simple definition,medical,spontaneous term +abortion,"('missed abortion def', 'missed abortion definition')",missed abortion def,missed abortion definition,1,4,google,2026-03-12 19:52:35.350063,abortion definition simple,missed abortion simple definition,def,definition +abortion,"('missed abortion def', 'missed abortion definition acog')",missed abortion def,missed abortion definition acog,2,4,google,2026-03-12 19:52:35.350063,abortion definition simple,missed abortion simple definition,def,definition acog +abortion,"('missed abortion def', 'missed abortion definition in obg')",missed abortion def,missed abortion definition in obg,3,4,google,2026-03-12 19:52:35.350063,abortion definition simple,missed abortion simple definition,def,definition in obg +abortion,"('missed abortion def', 'missed abortion definition in hindi')",missed abortion def,missed abortion definition in hindi,4,4,google,2026-03-12 19:52:35.350063,abortion definition simple,missed abortion simple definition,def,definition in hindi +abortion,"('missed abortion def', 'missed abortion definition weeks')",missed abortion def,missed abortion definition weeks,5,4,google,2026-03-12 19:52:35.350063,abortion definition simple,missed abortion simple definition,def,definition weeks +abortion,"('missed abortion def', 'missed abortion definition ultrasound')",missed abortion def,missed abortion definition ultrasound,6,4,google,2026-03-12 19:52:35.350063,abortion definition simple,missed abortion simple definition,def,definition ultrasound +abortion,"('missed abortion def', 'missed abortion definition radiology')",missed abortion def,missed abortion definition radiology,7,4,google,2026-03-12 19:52:35.350063,abortion definition simple,missed abortion simple definition,def,definition radiology +abortion,"('missed abortion def', 'missed abortion definition ppt')",missed abortion def,missed abortion definition ppt,8,4,google,2026-03-12 19:52:35.350063,abortion definition simple,missed abortion simple definition,def,definition ppt +abortion,"('missed abortion def', 'missed abortion definition pregnancy')",missed abortion def,missed abortion definition pregnancy,9,4,google,2026-03-12 19:52:35.350063,abortion definition simple,missed abortion simple definition,def,definition pregnancy +abortion,"('missed abortion def', 'missed abortion definition medical')",missed abortion def,missed abortion definition medical,10,4,google,2026-03-12 19:52:35.350063,abortion definition simple,missed abortion simple definition,def,definition medical +abortion,"('missed abortion signs', 'missed abortion signs and symptoms')",missed abortion signs,missed abortion signs and symptoms,1,4,google,2026-03-12 19:52:36.250985,abortion definition simple,missed abortion simple definition,signs,and symptoms +abortion,"('missed abortion signs', 'missed miscarriage signs')",missed abortion signs,missed miscarriage signs,2,4,google,2026-03-12 19:52:36.250985,abortion definition simple,missed abortion simple definition,signs,miscarriage +abortion,"('missed abortion signs', 'incomplete abortion signs')",missed abortion signs,incomplete abortion signs,3,4,google,2026-03-12 19:52:36.250985,abortion definition simple,missed abortion simple definition,signs,incomplete +abortion,"('missed abortion signs', 'missed miscarriage signs reddit')",missed abortion signs,missed miscarriage signs reddit,4,4,google,2026-03-12 19:52:36.250985,abortion definition simple,missed abortion simple definition,signs,miscarriage reddit +abortion,"('missed abortion signs', 'missed miscarriage signs at 8 weeks')",missed abortion signs,missed miscarriage signs at 8 weeks,5,4,google,2026-03-12 19:52:36.250985,abortion definition simple,missed abortion simple definition,signs,miscarriage at 8 weeks +abortion,"('missed abortion signs', 'missed miscarriage signs of infection')",missed abortion signs,missed miscarriage signs of infection,6,4,google,2026-03-12 19:52:36.250985,abortion definition simple,missed abortion simple definition,signs,miscarriage of infection +abortion,"('missed abortion signs', 'spontaneous abortion signs')",missed abortion signs,spontaneous abortion signs,7,4,google,2026-03-12 19:52:36.250985,abortion definition simple,missed abortion simple definition,signs,spontaneous +abortion,"('missed abortion signs', 'missed miscarriage signs mumsnet')",missed abortion signs,missed miscarriage signs mumsnet,8,4,google,2026-03-12 19:52:36.250985,abortion definition simple,missed abortion simple definition,signs,miscarriage mumsnet +abortion,"('missed abortion signs', 'missed miscarriage signs 13 weeks')",missed abortion signs,missed miscarriage signs 13 weeks,9,4,google,2026-03-12 19:52:36.250985,abortion definition simple,missed abortion simple definition,signs,miscarriage 13 weeks +abortion,"('missed abortion medical term', 'missed ab medical term')",missed abortion medical term,missed ab medical term,1,4,google,2026-03-12 19:52:37.366808,abortion definition simple,missed abortion simple definition,medical term,ab +abortion,"('missed abortion medical term', 'spontaneous abortion medical term')",missed abortion medical term,spontaneous abortion medical term,2,4,google,2026-03-12 19:52:37.366808,abortion definition simple,missed abortion simple definition,medical term,spontaneous +abortion,"('missed abortion medical term', 'missed miscarriage medical term')",missed abortion medical term,missed miscarriage medical term,3,4,google,2026-03-12 19:52:37.366808,abortion definition simple,missed abortion simple definition,medical term,miscarriage +abortion,"('missed abortion medical term', 'incomplete abortion medical term')",missed abortion medical term,incomplete abortion medical term,4,4,google,2026-03-12 19:52:37.366808,abortion definition simple,missed abortion simple definition,medical term,incomplete +abortion,"('missed abortion medical term', 'missed abortion medical definition')",missed abortion medical term,missed abortion medical definition,5,4,google,2026-03-12 19:52:37.366808,abortion definition simple,missed abortion simple definition,medical term,definition +abortion,"('missed abortion medical term', 'incomplete miscarriage medical term')",missed abortion medical term,incomplete miscarriage medical term,6,4,google,2026-03-12 19:52:37.366808,abortion definition simple,missed abortion simple definition,medical term,incomplete miscarriage +abortion,"('missed abortion medical term', 'spontaneous abortion medical definition')",missed abortion medical term,spontaneous abortion medical definition,7,4,google,2026-03-12 19:52:37.366808,abortion definition simple,missed abortion simple definition,medical term,spontaneous definition +abortion,"('missed abortion medical term', 'incomplete abortion medical definition')",missed abortion medical term,incomplete abortion medical definition,8,4,google,2026-03-12 19:52:37.366808,abortion definition simple,missed abortion simple definition,medical term,incomplete definition +abortion,"('missed abortion medical term', 'missed abortion definition')",missed abortion medical term,missed abortion definition,9,4,google,2026-03-12 19:52:37.366808,abortion definition simple,missed abortion simple definition,medical term,definition +abortion,"('what is induced abortion class 12', 'induced abortion meaning in english')",what is induced abortion class 12,induced abortion meaning in english,1,4,google,2026-03-12 19:52:38.319957,abortion definition simple,induced abortion simple definition,what is class 12,meaning in english +abortion,"('what is induced abortion class 12', 'what is induced abortion meaning')",what is induced abortion class 12,what is induced abortion meaning,2,4,google,2026-03-12 19:52:38.319957,abortion definition simple,induced abortion simple definition,what is class 12,meaning +abortion,"('what is induced abortion class 12', 'what is induced abortion definition')",what is induced abortion class 12,what is induced abortion definition,3,4,google,2026-03-12 19:52:38.319957,abortion definition simple,induced abortion simple definition,what is class 12,definition +abortion,"('what is induced abortion class 12', 'what is induced termination of pregnancy')",what is induced abortion class 12,what is induced termination of pregnancy,4,4,google,2026-03-12 19:52:38.319957,abortion definition simple,induced abortion simple definition,what is class 12,termination of pregnancy +abortion,"('what is induced abortion class 12', 'what is a induced abortion')",what is induced abortion class 12,what is a induced abortion,5,4,google,2026-03-12 19:52:38.319957,abortion definition simple,induced abortion simple definition,what is class 12,a +abortion,"('what is the difference between spontaneous and induced abortion', 'what is abortion write the difference between spontaneous and induced abortion')",what is the difference between spontaneous and induced abortion,what is abortion write the difference between spontaneous and induced abortion,1,4,google,2026-03-12 19:52:39.325335,abortion definition simple,induced abortion simple definition,what is the difference between spontaneous and,write +abortion,"('what is the difference between spontaneous and induced abortion', 'what is the difference between a spontaneous abortion and an induced abortion quizlet')",what is the difference between spontaneous and induced abortion,what is the difference between a spontaneous abortion and an induced abortion quizlet,2,4,google,2026-03-12 19:52:39.325335,abortion definition simple,induced abortion simple definition,what is the difference between spontaneous and,a an quizlet +abortion,"('what is the difference between spontaneous and induced abortion', 'what is abortion compare spontaneous and induced abortion')",what is the difference between spontaneous and induced abortion,what is abortion compare spontaneous and induced abortion,3,4,google,2026-03-12 19:52:39.325335,abortion definition simple,induced abortion simple definition,what is the difference between spontaneous and,compare +abortion,"('induced abortion medical definition', 'spontaneous abortion medical definition')",induced abortion medical definition,spontaneous abortion medical definition,1,4,google,2026-03-12 19:52:40.241229,abortion definition simple,induced abortion simple definition,medical,spontaneous +abortion,"('induced abortion medical definition', 'induced abortion medical term')",induced abortion medical definition,induced abortion medical term,2,4,google,2026-03-12 19:52:40.241229,abortion definition simple,induced abortion simple definition,medical,term +abortion,"('induced abortion medical definition', 'induced abortion medical abbreviation')",induced abortion medical definition,induced abortion medical abbreviation,3,4,google,2026-03-12 19:52:40.241229,abortion definition simple,induced abortion simple definition,medical,abbreviation +abortion,"('induced abortion medical definition', 'spontaneous abortion medical term')",induced abortion medical definition,spontaneous abortion medical term,4,4,google,2026-03-12 19:52:40.241229,abortion definition simple,induced abortion simple definition,medical,spontaneous term +abortion,"('induced abortion medical definition', 'spontaneous abortion medical abbreviation')",induced abortion medical definition,spontaneous abortion medical abbreviation,5,4,google,2026-03-12 19:52:40.241229,abortion definition simple,induced abortion simple definition,medical,spontaneous abbreviation +abortion,"('induced abortion medical definition', 'induced abortion meaning in english')",induced abortion medical definition,induced abortion meaning in english,6,4,google,2026-03-12 19:52:40.241229,abortion definition simple,induced abortion simple definition,medical,meaning in english +abortion,"('induced abortion medical definition', 'what is induced abortion class 12')",induced abortion medical definition,what is induced abortion class 12,7,4,google,2026-03-12 19:52:40.241229,abortion definition simple,induced abortion simple definition,medical,what is class 12 +abortion,"('induced abortion medical definition', 'induced abortion meaning')",induced abortion medical definition,induced abortion meaning,8,4,google,2026-03-12 19:52:40.241229,abortion definition simple,induced abortion simple definition,medical,meaning +abortion,"('induced abortion medical definition', 'induced abortion definition dictionary')",induced abortion medical definition,induced abortion definition dictionary,9,4,google,2026-03-12 19:52:40.241229,abortion definition simple,induced abortion simple definition,medical,dictionary +abortion,"('induced abortion definition', 'induced abortion definition in hindi')",induced abortion definition,induced abortion definition in hindi,1,4,google,2026-03-12 19:52:41.455489,abortion definition simple,induced abortion simple definition,induced,in hindi +abortion,"('induced abortion definition', 'induced abortion definition according to who')",induced abortion definition,induced abortion definition according to who,2,4,google,2026-03-12 19:52:41.455489,abortion definition simple,induced abortion simple definition,induced,according to who +abortion,"('induced abortion definition', 'induced abortion definition ppt')",induced abortion definition,induced abortion definition ppt,3,4,google,2026-03-12 19:52:41.455489,abortion definition simple,induced abortion simple definition,induced,ppt +abortion,"('induced abortion definition', 'induced abortion definition in obg')",induced abortion definition,induced abortion definition in obg,4,4,google,2026-03-12 19:52:41.455489,abortion definition simple,induced abortion simple definition,induced,in obg +abortion,"('induced abortion definition', 'spontaneous abortion definition')",induced abortion definition,spontaneous abortion definition,5,4,google,2026-03-12 19:52:41.455489,abortion definition simple,induced abortion simple definition,induced,spontaneous +abortion,"('induced abortion definition', 'spontaneous abortion definition in hindi')",induced abortion definition,spontaneous abortion definition in hindi,6,4,google,2026-03-12 19:52:41.455489,abortion definition simple,induced abortion simple definition,induced,spontaneous in hindi +abortion,"('induced abortion definition', 'spontaneous abortion definition according to who')",induced abortion definition,spontaneous abortion definition according to who,7,4,google,2026-03-12 19:52:41.455489,abortion definition simple,induced abortion simple definition,induced,spontaneous according to who +abortion,"('induced abortion definition', 'spontaneous abortion definition acog')",induced abortion definition,spontaneous abortion definition acog,8,4,google,2026-03-12 19:52:41.455489,abortion definition simple,induced abortion simple definition,induced,spontaneous acog +abortion,"('induced abortion definition', 'spontaneous abortion definition ppt')",induced abortion definition,spontaneous abortion definition ppt,9,4,google,2026-03-12 19:52:41.455489,abortion definition simple,induced abortion simple definition,induced,spontaneous ppt +abortion,"('induced abortion definition dictionary', 'induced abortion definition dictionary definition')",induced abortion definition dictionary,induced abortion definition dictionary definition,1,4,google,2026-03-12 19:52:42.843339,abortion definition simple,induced abortion simple definition,dictionary,dictionary +abortion,"('induced abortion definition dictionary', 'induced abortion definition dictionary.com')",induced abortion definition dictionary,induced abortion definition dictionary.com,2,4,google,2026-03-12 19:52:42.843339,abortion definition simple,induced abortion simple definition,dictionary,dictionary.com +abortion,"('induced abortion definition dictionary', 'induced abortion definition dictionary meaning')",induced abortion definition dictionary,induced abortion definition dictionary meaning,3,4,google,2026-03-12 19:52:42.843339,abortion definition simple,induced abortion simple definition,dictionary,meaning +abortion,"('induced abortion definition dictionary', 'induced abortion definition dictionary.org')",induced abortion definition dictionary,induced abortion definition dictionary.org,4,4,google,2026-03-12 19:52:42.843339,abortion definition simple,induced abortion simple definition,dictionary,dictionary.org +abortion,"('induced abortion definition dictionary', 'induced abortion definition dictionary dictionary.com')",induced abortion definition dictionary,induced abortion definition dictionary dictionary.com,5,4,google,2026-03-12 19:52:42.843339,abortion definition simple,induced abortion simple definition,dictionary,dictionary.com +abortion,"('induced abortions meaning', 'induced abortion meaning')",induced abortions meaning,induced abortion meaning,1,4,google,2026-03-12 19:52:44.343792,abortion definition simple,induced abortion simple definition,abortions meaning,abortion +abortion,"('induced abortions meaning', 'induced abortion meaning in hindi')",induced abortions meaning,induced abortion meaning in hindi,2,4,google,2026-03-12 19:52:44.343792,abortion definition simple,induced abortion simple definition,abortions meaning,abortion in hindi +abortion,"('induced abortions meaning', 'induced abortion meaning in bengali')",induced abortions meaning,induced abortion meaning in bengali,3,4,google,2026-03-12 19:52:44.343792,abortion definition simple,induced abortion simple definition,abortions meaning,abortion in bengali +abortion,"('induced abortions meaning', 'induced abortion meaning in english')",induced abortions meaning,induced abortion meaning in english,4,4,google,2026-03-12 19:52:44.343792,abortion definition simple,induced abortion simple definition,abortions meaning,abortion in english +abortion,"('induced abortions meaning', 'induced abortion meaning in bengali with example')",induced abortions meaning,induced abortion meaning in bengali with example,5,4,google,2026-03-12 19:52:44.343792,abortion definition simple,induced abortion simple definition,abortions meaning,abortion in bengali with example +abortion,"('induced abortions meaning', 'induced abortion meaning in tagalog')",induced abortions meaning,induced abortion meaning in tagalog,6,4,google,2026-03-12 19:52:44.343792,abortion definition simple,induced abortion simple definition,abortions meaning,abortion in tagalog +abortion,"('induced abortions meaning', 'induced abortion meaning in hindi and examples')",induced abortions meaning,induced abortion meaning in hindi and examples,7,4,google,2026-03-12 19:52:44.343792,abortion definition simple,induced abortion simple definition,abortions meaning,abortion in hindi and examples +abortion,"('induced abortions meaning', 'induced abortion meaning in medical terms')",induced abortions meaning,induced abortion meaning in medical terms,8,4,google,2026-03-12 19:52:44.343792,abortion definition simple,induced abortion simple definition,abortions meaning,abortion in medical terms +abortion,"('induced abortions meaning', 'induced abortion meaning in pregnancy')",induced abortions meaning,induced abortion meaning in pregnancy,9,4,google,2026-03-12 19:52:44.343792,abortion definition simple,induced abortion simple definition,abortions meaning,abortion in pregnancy +abortion,"('induced abortions meaning', 'induced abortion meaning in hindi pdf')",induced abortions meaning,induced abortion meaning in hindi pdf,10,4,google,2026-03-12 19:52:44.343792,abortion definition simple,induced abortion simple definition,abortions meaning,abortion in hindi pdf +abortion,"('induced abortion def', 'induced abortion definition')",induced abortion def,induced abortion definition,1,4,google,2026-03-12 19:52:45.688222,abortion definition simple,induced abortion simple definition,def,definition +abortion,"('induced abortion def', 'induced abortion definition in hindi')",induced abortion def,induced abortion definition in hindi,2,4,google,2026-03-12 19:52:45.688222,abortion definition simple,induced abortion simple definition,def,definition in hindi +abortion,"('induced abortion def', 'induced abortion definition according to who')",induced abortion def,induced abortion definition according to who,3,4,google,2026-03-12 19:52:45.688222,abortion definition simple,induced abortion simple definition,def,definition according to who +abortion,"('induced abortion def', 'induced abortion definition ppt')",induced abortion def,induced abortion definition ppt,4,4,google,2026-03-12 19:52:45.688222,abortion definition simple,induced abortion simple definition,def,definition ppt +abortion,"('induced abortion def', 'induced abortion definition in obg')",induced abortion def,induced abortion definition in obg,5,4,google,2026-03-12 19:52:45.688222,abortion definition simple,induced abortion simple definition,def,definition in obg +abortion,"('induced abortion def', 'induction abortion definition')",induced abortion def,induction abortion definition,6,4,google,2026-03-12 19:52:45.688222,abortion definition simple,induced abortion simple definition,def,induction definition +abortion,"('induced abortion def', 'spontaneous abortion definition')",induced abortion def,spontaneous abortion definition,7,4,google,2026-03-12 19:52:45.688222,abortion definition simple,induced abortion simple definition,def,spontaneous definition +abortion,"('induced abortion def', 'spontaneous abortion definition in hindi')",induced abortion def,spontaneous abortion definition in hindi,8,4,google,2026-03-12 19:52:45.688222,abortion definition simple,induced abortion simple definition,def,spontaneous definition in hindi +abortion,"('induced abortion def', 'spontaneous abortion definition according to who')",induced abortion def,spontaneous abortion definition according to who,9,4,google,2026-03-12 19:52:45.688222,abortion definition simple,induced abortion simple definition,def,spontaneous definition according to who +abortion,"('induced abortion def', 'spontaneous abortion definition acog')",induced abortion def,spontaneous abortion definition acog,10,4,google,2026-03-12 19:52:45.688222,abortion definition simple,induced abortion simple definition,def,spontaneous definition acog +abortion,"('recurrent abortion definition', 'recurrent abortion definition in hindi')",recurrent abortion definition,recurrent abortion definition in hindi,1,4,google,2026-03-12 19:52:46.507759,abortion definition simple,recurrent abortion simple definition,recurrent,in hindi +abortion,"('recurrent abortion definition', 'recurrent abortion definition in obg')",recurrent abortion definition,recurrent abortion definition in obg,2,4,google,2026-03-12 19:52:46.507759,abortion definition simple,recurrent abortion simple definition,recurrent,in obg +abortion,"('recurrent abortion definition', 'habitual abortion definition')",recurrent abortion definition,habitual abortion definition,3,4,google,2026-03-12 19:52:46.507759,abortion definition simple,recurrent abortion simple definition,recurrent,habitual +abortion,"('recurrent abortion definition', 'recurrent pregnancy loss definition')",recurrent abortion definition,recurrent pregnancy loss definition,4,4,google,2026-03-12 19:52:46.507759,abortion definition simple,recurrent abortion simple definition,recurrent,pregnancy loss +abortion,"('recurrent abortion definition', 'recurrent pregnancy loss definition acog')",recurrent abortion definition,recurrent pregnancy loss definition acog,5,4,google,2026-03-12 19:52:46.507759,abortion definition simple,recurrent abortion simple definition,recurrent,pregnancy loss acog +abortion,"('recurrent abortion definition', 'habitual abortion definition in obg')",recurrent abortion definition,habitual abortion definition in obg,6,4,google,2026-03-12 19:52:46.507759,abortion definition simple,recurrent abortion simple definition,recurrent,habitual in obg +abortion,"('recurrent abortion definition', 'habitual abortion definition in marathi')",recurrent abortion definition,habitual abortion definition in marathi,7,4,google,2026-03-12 19:52:46.507759,abortion definition simple,recurrent abortion simple definition,recurrent,habitual in marathi +abortion,"('recurrent abortion definition', 'recurrent pregnancy loss definition asrm')",recurrent abortion definition,recurrent pregnancy loss definition asrm,8,4,google,2026-03-12 19:52:46.507759,abortion definition simple,recurrent abortion simple definition,recurrent,pregnancy loss asrm +abortion,"('recurrent abortion definition', 'recurrent pregnancy loss definition rcog')",recurrent abortion definition,recurrent pregnancy loss definition rcog,9,4,google,2026-03-12 19:52:46.507759,abortion definition simple,recurrent abortion simple definition,recurrent,pregnancy loss rcog +abortion,"('causes of recurrent abortion', 'causes of recurrent abortion in first trimester')",causes of recurrent abortion,causes of recurrent abortion in first trimester,1,4,google,2026-03-12 19:52:47.894917,abortion definition simple,recurrent abortion simple definition,causes of,in first trimester +abortion,"('causes of recurrent abortion', 'causes of recurrent abortion in second trimester')",causes of recurrent abortion,causes of recurrent abortion in second trimester,2,4,google,2026-03-12 19:52:47.894917,abortion definition simple,recurrent abortion simple definition,causes of,in second trimester +abortion,"('causes of recurrent abortion', 'causes of recurrent abortion ppt')",causes of recurrent abortion,causes of recurrent abortion ppt,3,4,google,2026-03-12 19:52:47.894917,abortion definition simple,recurrent abortion simple definition,causes of,ppt +abortion,"('causes of recurrent abortion', 'causes of habitual abortion')",causes of recurrent abortion,causes of habitual abortion,4,4,google,2026-03-12 19:52:47.894917,abortion definition simple,recurrent abortion simple definition,causes of,habitual +abortion,"('causes of recurrent abortion', 'causes of frequent abortion')",causes of recurrent abortion,causes of frequent abortion,5,4,google,2026-03-12 19:52:47.894917,abortion definition simple,recurrent abortion simple definition,causes of,frequent +abortion,"('causes of recurrent abortion', 'causes of persistent abortion')",causes of recurrent abortion,causes of persistent abortion,6,4,google,2026-03-12 19:52:47.894917,abortion definition simple,recurrent abortion simple definition,causes of,persistent +abortion,"('causes of recurrent abortion', 'causes of recurrent missed abortion')",causes of recurrent abortion,causes of recurrent missed abortion,7,4,google,2026-03-12 19:52:47.894917,abortion definition simple,recurrent abortion simple definition,causes of,missed +abortion,"('causes of recurrent abortion', 'causes of recurrent spontaneous abortion')",causes of recurrent abortion,causes of recurrent spontaneous abortion,8,4,google,2026-03-12 19:52:47.894917,abortion definition simple,recurrent abortion simple definition,causes of,spontaneous +abortion,"('causes of recurrent abortion', 'genetic causes of recurrent abortion')",causes of recurrent abortion,genetic causes of recurrent abortion,9,4,google,2026-03-12 19:52:47.894917,abortion definition simple,recurrent abortion simple definition,causes of,genetic +abortion,"('recurrent abortion treatment', 'recurrent abortion treatment in pratap nagar')",recurrent abortion treatment,recurrent abortion treatment in pratap nagar,1,4,google,2026-03-12 19:52:49.372971,abortion definition simple,recurrent abortion simple definition,treatment,in pratap nagar +abortion,"('recurrent abortion treatment', 'recurrent miscarriage treatment')",recurrent abortion treatment,recurrent miscarriage treatment,2,4,google,2026-03-12 19:52:49.372971,abortion definition simple,recurrent abortion simple definition,treatment,miscarriage +abortion,"('recurrent abortion treatment', 'habitual abortion treatment')",recurrent abortion treatment,habitual abortion treatment,3,4,google,2026-03-12 19:52:49.372971,abortion definition simple,recurrent abortion simple definition,treatment,habitual +abortion,"('recurrent abortion treatment', 'recurrent pregnancy loss treatment')",recurrent abortion treatment,recurrent pregnancy loss treatment,4,4,google,2026-03-12 19:52:49.372971,abortion definition simple,recurrent abortion simple definition,treatment,pregnancy loss +abortion,"('recurrent abortion treatment', 'recurrent pregnancy loss treatment in london')",recurrent abortion treatment,recurrent pregnancy loss treatment in london,5,4,google,2026-03-12 19:52:49.372971,abortion definition simple,recurrent abortion simple definition,treatment,pregnancy loss in london +abortion,"('recurrent abortion treatment', 'recurrent pregnancy loss treatment in pune')",recurrent abortion treatment,recurrent pregnancy loss treatment in pune,6,4,google,2026-03-12 19:52:49.372971,abortion definition simple,recurrent abortion simple definition,treatment,pregnancy loss in pune +abortion,"('recurrent abortion treatment', 'recurrent miscarriage treatment nhs')",recurrent abortion treatment,recurrent miscarriage treatment nhs,7,4,google,2026-03-12 19:52:49.372971,abortion definition simple,recurrent abortion simple definition,treatment,miscarriage nhs +abortion,"('recurrent abortion treatment', 'repeated abortion treatment')",recurrent abortion treatment,repeated abortion treatment,8,4,google,2026-03-12 19:52:49.372971,abortion definition simple,recurrent abortion simple definition,treatment,repeated +abortion,"('recurrent abortion treatment', 'recurrent miscarriage treatment reddit')",recurrent abortion treatment,recurrent miscarriage treatment reddit,9,4,google,2026-03-12 19:52:49.372971,abortion definition simple,recurrent abortion simple definition,treatment,miscarriage reddit +abortion,"('most common cause of recurrent abortion', 'most common cause of recurrent abortion in first trimester')",most common cause of recurrent abortion,most common cause of recurrent abortion in first trimester,1,4,google,2026-03-12 19:52:50.541028,abortion definition simple,recurrent abortion simple definition,most common cause of,in first trimester +abortion,"('most common cause of recurrent abortion', 'most common cause of recurrent abortion in second trimester')",most common cause of recurrent abortion,most common cause of recurrent abortion in second trimester,2,4,google,2026-03-12 19:52:50.541028,abortion definition simple,recurrent abortion simple definition,most common cause of,in second trimester +abortion,"('most common cause of recurrent abortion', 'most common cause of habitual abortion')",most common cause of recurrent abortion,most common cause of habitual abortion,3,4,google,2026-03-12 19:52:50.541028,abortion definition simple,recurrent abortion simple definition,most common cause of,habitual +abortion,"('most common cause of recurrent abortion', 'most common cause of recurrent miscarriage')",most common cause of recurrent abortion,most common cause of recurrent miscarriage,4,4,google,2026-03-12 19:52:50.541028,abortion definition simple,recurrent abortion simple definition,most common cause of,miscarriage +abortion,"('most common cause of recurrent abortion', 'most common cause of recurrent pregnancy loss')",most common cause of recurrent abortion,most common cause of recurrent pregnancy loss,5,4,google,2026-03-12 19:52:50.541028,abortion definition simple,recurrent abortion simple definition,most common cause of,pregnancy loss +abortion,"('most common cause of recurrent abortion', 'most common cause of recurrent miscarriage in first trimester')",most common cause of recurrent abortion,most common cause of recurrent miscarriage in first trimester,6,4,google,2026-03-12 19:52:50.541028,abortion definition simple,recurrent abortion simple definition,most common cause of,miscarriage in first trimester +abortion,"('most common cause of recurrent abortion', 'most common cause of recurrent early miscarriage')",most common cause of recurrent abortion,most common cause of recurrent early miscarriage,7,4,google,2026-03-12 19:52:50.541028,abortion definition simple,recurrent abortion simple definition,most common cause of,early miscarriage +abortion,"('most common cause of recurrent abortion', 'most common cause of recurrent pregnancy loss in first trimester')",most common cause of recurrent abortion,most common cause of recurrent pregnancy loss in first trimester,8,4,google,2026-03-12 19:52:50.541028,abortion definition simple,recurrent abortion simple definition,most common cause of,pregnancy loss in first trimester +abortion,"('most common cause of recurrent abortion', 'single most common cause of recurrent pregnancy loss')",most common cause of recurrent abortion,single most common cause of recurrent pregnancy loss,9,4,google,2026-03-12 19:52:50.541028,abortion definition simple,recurrent abortion simple definition,most common cause of,single pregnancy loss +abortion,"('recurrent abortion reasons', 'recurrent pregnancy loss reasons')",recurrent abortion reasons,recurrent pregnancy loss reasons,1,4,google,2026-03-12 19:52:51.950827,abortion definition simple,recurrent abortion simple definition,reasons,pregnancy loss +abortion,"('recurrent abortion reasons', 'recurrent miscarriages reasons')",recurrent abortion reasons,recurrent miscarriages reasons,2,4,google,2026-03-12 19:52:51.950827,abortion definition simple,recurrent abortion simple definition,reasons,miscarriages +abortion,"('recurrent abortion reasons', 'recurrent abortion reason')",recurrent abortion reasons,recurrent abortion reason,3,4,google,2026-03-12 19:52:51.950827,abortion definition simple,recurrent abortion simple definition,reasons,reason +abortion,"('recurrent abortion reasons', 'recurrent abortion causes')",recurrent abortion reasons,recurrent abortion causes,4,4,google,2026-03-12 19:52:51.950827,abortion definition simple,recurrent abortion simple definition,reasons,causes +abortion,"('recurrent abortion reasons', 'most common cause of recurrent abortion')",recurrent abortion reasons,most common cause of recurrent abortion,5,4,google,2026-03-12 19:52:51.950827,abortion definition simple,recurrent abortion simple definition,reasons,most common cause of +abortion,"('recurrent abortion reasons', 'reason for frequent abortions')",recurrent abortion reasons,reason for frequent abortions,6,4,google,2026-03-12 19:52:51.950827,abortion definition simple,recurrent abortion simple definition,reasons,reason for frequent abortions +abortion,"('recurrent abortion reasons', 'recurrent abortion definition')",recurrent abortion reasons,recurrent abortion definition,7,4,google,2026-03-12 19:52:51.950827,abortion definition simple,recurrent abortion simple definition,reasons,definition +abortion,"('recurrent abortion reasons', 'recurrent abortion workup')",recurrent abortion reasons,recurrent abortion workup,8,4,google,2026-03-12 19:52:51.950827,abortion definition simple,recurrent abortion simple definition,reasons,workup +abortion,"('recurrent abortion reasons', 'recurrent abortion labs')",recurrent abortion reasons,recurrent abortion labs,9,4,google,2026-03-12 19:52:51.950827,abortion definition simple,recurrent abortion simple definition,reasons,labs +abortion,"('recurrent abortion reasons', 'recurrent spontaneous abortion')",recurrent abortion reasons,recurrent spontaneous abortion,10,4,google,2026-03-12 19:52:51.950827,abortion definition simple,recurrent abortion simple definition,reasons,spontaneous +abortion,"('recurrent abortion workup', 'recurrent pregnancy loss workup')",recurrent abortion workup,recurrent pregnancy loss workup,1,4,google,2026-03-12 19:52:53.190687,abortion definition simple,recurrent abortion simple definition,workup,pregnancy loss +abortion,"('recurrent abortion workup', 'recurrent miscarriage workup')",recurrent abortion workup,recurrent miscarriage workup,2,4,google,2026-03-12 19:52:53.190687,abortion definition simple,recurrent abortion simple definition,workup,miscarriage +abortion,"('recurrent abortion workup', 'recurrent pregnancy loss workup acog')",recurrent abortion workup,recurrent pregnancy loss workup acog,3,4,google,2026-03-12 19:52:53.190687,abortion definition simple,recurrent abortion simple definition,workup,pregnancy loss acog +abortion,"('recurrent abortion workup', 'recurrent miscarriage workup acog')",recurrent abortion workup,recurrent miscarriage workup acog,4,4,google,2026-03-12 19:52:53.190687,abortion definition simple,recurrent abortion simple definition,workup,miscarriage acog +abortion,"('recurrent abortion workup', 'recurrent pregnancy loss workup algorithm')",recurrent abortion workup,recurrent pregnancy loss workup algorithm,5,4,google,2026-03-12 19:52:53.190687,abortion definition simple,recurrent abortion simple definition,workup,pregnancy loss algorithm +abortion,"('recurrent abortion workup', 'recurrent pregnancy loss workup asrm')",recurrent abortion workup,recurrent pregnancy loss workup asrm,6,4,google,2026-03-12 19:52:53.190687,abortion definition simple,recurrent abortion simple definition,workup,pregnancy loss asrm +abortion,"('recurrent abortion workup', 'habitual abortion workup')",recurrent abortion workup,habitual abortion workup,7,4,google,2026-03-12 19:52:53.190687,abortion definition simple,recurrent abortion simple definition,workup,habitual +abortion,"('recurrent abortion workup', 'recurrent spontaneous abortion workup')",recurrent abortion workup,recurrent spontaneous abortion workup,8,4,google,2026-03-12 19:52:53.190687,abortion definition simple,recurrent abortion simple definition,workup,spontaneous +abortion,"('recurrent abortion workup', 'most common cause of recurrent abortion')",recurrent abortion workup,most common cause of recurrent abortion,9,4,google,2026-03-12 19:52:53.190687,abortion definition simple,recurrent abortion simple definition,workup,most common cause of +abortion,"('recurrent spontaneous abortion', 'recurrent spontaneous abortion icd 10')",recurrent spontaneous abortion,recurrent spontaneous abortion icd 10,1,4,google,2026-03-12 19:52:54.338274,abortion definition simple,recurrent abortion simple definition,spontaneous,icd 10 +abortion,"('recurrent spontaneous abortion', 'recurrent spontaneous abortion causes')",recurrent spontaneous abortion,recurrent spontaneous abortion causes,2,4,google,2026-03-12 19:52:54.338274,abortion definition simple,recurrent abortion simple definition,spontaneous,causes +abortion,"('recurrent spontaneous abortion', 'recurrent spontaneous abortion definition')",recurrent spontaneous abortion,recurrent spontaneous abortion definition,3,4,google,2026-03-12 19:52:54.338274,abortion definition simple,recurrent abortion simple definition,spontaneous,definition +abortion,"('recurrent spontaneous abortion', 'recurrent spontaneous abortion rsa')",recurrent spontaneous abortion,recurrent spontaneous abortion rsa,4,4,google,2026-03-12 19:52:54.338274,abortion definition simple,recurrent abortion simple definition,spontaneous,rsa +abortion,"('recurrent spontaneous abortion', 'repeated spontaneous abortions')",recurrent spontaneous abortion,repeated spontaneous abortions,5,4,google,2026-03-12 19:52:54.338274,abortion definition simple,recurrent abortion simple definition,spontaneous,repeated abortions +abortion,"('recurrent spontaneous abortion', 'recurrent spontaneous miscarriage')",recurrent spontaneous abortion,recurrent spontaneous miscarriage,6,4,google,2026-03-12 19:52:54.338274,abortion definition simple,recurrent abortion simple definition,spontaneous,miscarriage +abortion,"('recurrent spontaneous abortion', 'most common causes of spontaneous abortion')",recurrent spontaneous abortion,most common causes of spontaneous abortion,7,4,google,2026-03-12 19:52:54.338274,abortion definition simple,recurrent abortion simple definition,spontaneous,most common causes of +abortion,"('recurrent spontaneous abortion', 'most common cause of recurrent abortion')",recurrent spontaneous abortion,most common cause of recurrent abortion,8,4,google,2026-03-12 19:52:54.338274,abortion definition simple,recurrent abortion simple definition,spontaneous,most common cause of +abortion,"('recurrent spontaneous abortion', 'recurrent spontaneous abortion workup')",recurrent spontaneous abortion,recurrent spontaneous abortion workup,9,4,google,2026-03-12 19:52:54.338274,abortion definition simple,recurrent abortion simple definition,spontaneous,workup +abortion,"('recurrent spontaneous abortion workup', 'recurrent spontaneous abortion icd 10')",recurrent spontaneous abortion workup,recurrent spontaneous abortion icd 10,1,4,google,2026-03-12 19:52:55.395262,abortion definition simple,recurrent abortion simple definition,spontaneous workup,icd 10 +abortion,"('recurrent spontaneous abortion workup', 'causes of recurrent spontaneous abortion')",recurrent spontaneous abortion workup,causes of recurrent spontaneous abortion,2,4,google,2026-03-12 19:52:55.395262,abortion definition simple,recurrent abortion simple definition,spontaneous workup,causes of +abortion,"('recurrent spontaneous abortion workup', 'diagnosis of spontaneous abortion')",recurrent spontaneous abortion workup,diagnosis of spontaneous abortion,3,4,google,2026-03-12 19:52:55.395262,abortion definition simple,recurrent abortion simple definition,spontaneous workup,diagnosis of +abortion,"('recurrent spontaneous abortion workup', 'recurrent spontaneous abortion')",recurrent spontaneous abortion workup,recurrent spontaneous abortion,4,4,google,2026-03-12 19:52:55.395262,abortion definition simple,recurrent abortion simple definition,spontaneous workup,spontaneous workup +abortion,"('recurrent spontaneous abortion workup', 'recurrent abortion workup')",recurrent spontaneous abortion workup,recurrent abortion workup,5,4,google,2026-03-12 19:52:55.395262,abortion definition simple,recurrent abortion simple definition,spontaneous workup,spontaneous workup +abortion,"('recurrent spontaneous abortion workup', 'spontaneous abortion workup')",recurrent spontaneous abortion workup,spontaneous abortion workup,6,4,google,2026-03-12 19:52:55.395262,abortion definition simple,recurrent abortion simple definition,spontaneous workup,spontaneous workup +abortion,"('recurrent spontaneous abortion workup', 'recurrent abortion reasons')",recurrent spontaneous abortion workup,recurrent abortion reasons,7,4,google,2026-03-12 19:52:55.395262,abortion definition simple,recurrent abortion simple definition,spontaneous workup,reasons +abortion,"('acog missed abortion criteria', 'acog missed ab criteria')",acog missed abortion criteria,acog missed ab criteria,1,4,google,2026-03-12 19:52:56.914128,abortion definition acog,missed abortion definition acog,criteria,ab +abortion,"('acog missed abortion criteria', 'acog spontaneous abortion guidelines')",acog missed abortion criteria,acog spontaneous abortion guidelines,2,4,google,2026-03-12 19:52:56.914128,abortion definition acog,missed abortion definition acog,criteria,spontaneous guidelines +abortion,"('acog missed abortion criteria', 'missed abortion definition acog')",acog missed abortion criteria,missed abortion definition acog,3,4,google,2026-03-12 19:52:56.914128,abortion definition acog,missed abortion definition acog,criteria,definition +abortion,"('acog missed abortion criteria', 'acog abortion guidelines')",acog missed abortion criteria,acog abortion guidelines,4,4,google,2026-03-12 19:52:56.914128,abortion definition acog,missed abortion definition acog,criteria,guidelines +abortion,"('acog missed abortion criteria', 'acog missed abortion')",acog missed abortion criteria,acog missed abortion,5,4,google,2026-03-12 19:52:56.914128,abortion definition acog,missed abortion definition acog,criteria,criteria +abortion,"('acog missed abortion criteria', 'acog missed ab')",acog missed abortion criteria,acog missed ab,6,4,google,2026-03-12 19:52:56.914128,abortion definition acog,missed abortion definition acog,criteria,ab +abortion,"('acog missed abortion criteria', 'acog missed miscarriage')",acog missed abortion criteria,acog missed miscarriage,7,4,google,2026-03-12 19:52:56.914128,abortion definition acog,missed abortion definition acog,criteria,miscarriage +abortion,"('acog missed abortion criteria', 'acog misoprostol missed abortion')",acog missed abortion criteria,acog misoprostol missed abortion,8,4,google,2026-03-12 19:52:56.914128,abortion definition acog,missed abortion definition acog,criteria,misoprostol +abortion,"('missed abortion vs inevitable', 'missed miscarriage vs inevitable')",missed abortion vs inevitable,missed miscarriage vs inevitable,1,4,google,2026-03-12 19:52:57.907003,abortion definition acog,missed abortion definition acog,vs inevitable,miscarriage +abortion,"('missed abortion vs inevitable', 'incomplete abortion vs inevitable')",missed abortion vs inevitable,incomplete abortion vs inevitable,2,4,google,2026-03-12 19:52:57.907003,abortion definition acog,missed abortion definition acog,vs inevitable,incomplete +abortion,"('missed abortion vs inevitable', 'incomplete miscarriage vs inevitable')",missed abortion vs inevitable,incomplete miscarriage vs inevitable,3,4,google,2026-03-12 19:52:57.907003,abortion definition acog,missed abortion definition acog,vs inevitable,incomplete miscarriage +abortion,"('missed abortion vs inevitable', 'spontaneous abortion vs inevitable abortion')",missed abortion vs inevitable,spontaneous abortion vs inevitable abortion,4,4,google,2026-03-12 19:52:57.907003,abortion definition acog,missed abortion definition acog,vs inevitable,spontaneous +abortion,"('missed abortion vs inevitable', 'missed vs threatened vs inevitable abortion')",missed abortion vs inevitable,missed vs threatened vs inevitable abortion,5,4,google,2026-03-12 19:52:57.907003,abortion definition acog,missed abortion definition acog,vs inevitable,threatened +abortion,"('missed abortion vs inevitable', 'missed abortion vs missed miscarriage')",missed abortion vs inevitable,missed abortion vs missed miscarriage,6,4,google,2026-03-12 19:52:57.907003,abortion definition acog,missed abortion definition acog,vs inevitable,miscarriage +abortion,"('missed abortion vs inevitable', 'missed abortion vs incomplete spontaneous abortion')",missed abortion vs inevitable,missed abortion vs incomplete spontaneous abortion,7,4,google,2026-03-12 19:52:57.907003,abortion definition acog,missed abortion definition acog,vs inevitable,incomplete spontaneous +abortion,"('missed abortion vs inevitable', 'missed abortion vs incomplete')",missed abortion vs inevitable,missed abortion vs incomplete,8,4,google,2026-03-12 19:52:57.907003,abortion definition acog,missed abortion definition acog,vs inevitable,incomplete +abortion,"('missed abortion vs inevitable', 'missed abortion vs incomplete abortion')",missed abortion vs inevitable,missed abortion vs incomplete abortion,9,4,google,2026-03-12 19:52:57.907003,abortion definition acog,missed abortion definition acog,vs inevitable,incomplete +abortion,"('missed abortion acog', 'missed abortion acog criteria')",missed abortion acog,missed abortion acog criteria,1,4,google,2026-03-12 19:52:58.932707,abortion definition acog,missed abortion definition acog,missed,criteria +abortion,"('missed abortion acog', 'missed ab acog')",missed abortion acog,missed ab acog,2,4,google,2026-03-12 19:52:58.932707,abortion definition acog,missed abortion definition acog,missed,ab +abortion,"('missed abortion acog', 'spontaneous abortion acog')",missed abortion acog,spontaneous abortion acog,3,4,google,2026-03-12 19:52:58.932707,abortion definition acog,missed abortion definition acog,missed,spontaneous +abortion,"('missed abortion acog', 'incomplete abortion acog')",missed abortion acog,incomplete abortion acog,4,4,google,2026-03-12 19:52:58.932707,abortion definition acog,missed abortion definition acog,missed,incomplete +abortion,"('missed abortion acog', 'missed miscarriage acog')",missed abortion acog,missed miscarriage acog,5,4,google,2026-03-12 19:52:58.932707,abortion definition acog,missed abortion definition acog,missed,miscarriage +abortion,"('missed abortion acog', 'missed abortion definition acog')",missed abortion acog,missed abortion definition acog,6,4,google,2026-03-12 19:52:58.932707,abortion definition acog,missed abortion definition acog,missed,definition +abortion,"('missed abortion acog', 'missed abortion management acog')",missed abortion acog,missed abortion management acog,7,4,google,2026-03-12 19:52:58.932707,abortion definition acog,missed abortion definition acog,missed,management +abortion,"('missed abortion acog', 'misoprostol for missed abortion acog')",missed abortion acog,misoprostol for missed abortion acog,8,4,google,2026-03-12 19:52:58.932707,abortion definition acog,missed abortion definition acog,missed,misoprostol for +abortion,"('missed abortion acog', 'types of abortion acog')",missed abortion acog,types of abortion acog,9,4,google,2026-03-12 19:52:58.932707,abortion definition acog,missed abortion definition acog,missed,types of +abortion,"('missed abortion management acog', 'incomplete abortion management acog')",missed abortion management acog,incomplete abortion management acog,1,4,google,2026-03-12 19:53:00.035270,abortion definition acog,missed abortion definition acog,management,incomplete +abortion,"('missed abortion management acog', 'missed abortion definition acog')",missed abortion management acog,missed abortion definition acog,2,4,google,2026-03-12 19:53:00.035270,abortion definition acog,missed abortion definition acog,management,definition +abortion,"('missed abortion management acog', 'acog criteria for missed abortion')",missed abortion management acog,acog criteria for missed abortion,3,4,google,2026-03-12 19:53:00.035270,abortion definition acog,missed abortion definition acog,management,criteria for +abortion,"('missed abortion management acog', 'missed abortion acog')",missed abortion management acog,missed abortion acog,4,4,google,2026-03-12 19:53:00.035270,abortion definition acog,missed abortion definition acog,management,management +abortion,"('missed abortion management acog', 'missed miscarriage acog')",missed abortion management acog,missed miscarriage acog,5,4,google,2026-03-12 19:53:00.035270,abortion definition acog,missed abortion definition acog,management,miscarriage +abortion,"('missed abortion management acog', 'acog medical management of missed abortion')",missed abortion management acog,acog medical management of missed abortion,6,4,google,2026-03-12 19:53:00.035270,abortion definition acog,missed abortion definition acog,management,medical of +abortion,"('acog spontaneous abortion guidelines', 'acog abortion guidelines')",acog spontaneous abortion guidelines,acog abortion guidelines,1,4,google,2026-03-12 19:53:00.976928,abortion definition acog,spontaneous abortion definition acog,guidelines,guidelines +abortion,"('acog spontaneous abortion guidelines', 'acog abortion policy')",acog spontaneous abortion guidelines,acog abortion policy,2,4,google,2026-03-12 19:53:00.976928,abortion definition acog,spontaneous abortion definition acog,guidelines,policy +abortion,"('acog spontaneous abortion guidelines', 'acog spontaneous abortion')",acog spontaneous abortion guidelines,acog spontaneous abortion,3,4,google,2026-03-12 19:53:00.976928,abortion definition acog,spontaneous abortion definition acog,guidelines,guidelines +abortion,"('acog spontaneous abortion guidelines', 'acog abortion guidelines pdf')",acog spontaneous abortion guidelines,acog abortion guidelines pdf,4,4,google,2026-03-12 19:53:00.976928,abortion definition acog,spontaneous abortion definition acog,guidelines,pdf +abortion,"('acog definition of abortion', 'acog definition of missed abortion')",acog definition of abortion,acog definition of missed abortion,1,4,google,2026-03-12 19:53:01.799877,abortion definition acog,spontaneous abortion definition acog,of,missed +abortion,"('acog definition of abortion', 'acog definition of spontaneous abortion')",acog definition of abortion,acog definition of spontaneous abortion,2,4,google,2026-03-12 19:53:01.799877,abortion definition acog,spontaneous abortion definition acog,of,spontaneous +abortion,"('acog definition of abortion', 'acog definition of miscarriage')",acog definition of abortion,acog definition of miscarriage,3,4,google,2026-03-12 19:53:01.799877,abortion definition acog,spontaneous abortion definition acog,of,miscarriage +abortion,"('acog definition of abortion', 'types of abortion acog')",acog definition of abortion,types of abortion acog,4,4,google,2026-03-12 19:53:01.799877,abortion definition acog,spontaneous abortion definition acog,of,types +abortion,"('acog definition of abortion', 'acog abortion policy')",acog definition of abortion,acog abortion policy,5,4,google,2026-03-12 19:53:01.799877,abortion definition acog,spontaneous abortion definition acog,of,policy +abortion,"('acog definition of abortion', 'acog definition of fetus')",acog definition of abortion,acog definition of fetus,6,4,google,2026-03-12 19:53:01.799877,abortion definition acog,spontaneous abortion definition acog,of,fetus +abortion,"('acog definition of abortion', 'acog definition of pregnancy')",acog definition of abortion,acog definition of pregnancy,7,4,google,2026-03-12 19:53:01.799877,abortion definition acog,spontaneous abortion definition acog,of,pregnancy +abortion,"('spontaneous abortion acog', 'induced abortion acog')",spontaneous abortion acog,induced abortion acog,1,4,google,2026-03-12 19:53:03.046497,abortion definition acog,spontaneous abortion definition acog,spontaneous,induced +abortion,"('spontaneous abortion acog', 'spontaneous abortion definition acog')",spontaneous abortion acog,spontaneous abortion definition acog,2,4,google,2026-03-12 19:53:03.046497,abortion definition acog,spontaneous abortion definition acog,spontaneous,definition +abortion,"('spontaneous abortion acog', 'acog spontaneous abortion guidelines')",spontaneous abortion acog,acog spontaneous abortion guidelines,3,4,google,2026-03-12 19:53:03.046497,abortion definition acog,spontaneous abortion definition acog,spontaneous,guidelines +abortion,"('spontaneous abortion acog', 'types of abortion acog')",spontaneous abortion acog,types of abortion acog,4,4,google,2026-03-12 19:53:03.046497,abortion definition acog,spontaneous abortion definition acog,spontaneous,types of +abortion,"('spontaneous abortion acog', 'acog missed abortion criteria')",spontaneous abortion acog,acog missed abortion criteria,5,4,google,2026-03-12 19:53:03.046497,abortion definition acog,spontaneous abortion definition acog,spontaneous,missed criteria +abortion,"('spontaneous abortion acog', 'spontaneous abortion acronym')",spontaneous abortion acog,spontaneous abortion acronym,6,4,google,2026-03-12 19:53:03.046497,abortion definition acog,spontaneous abortion definition acog,spontaneous,acronym +abortion,"('spontaneous abortion acog', 'spontaneous abortion aafp')",spontaneous abortion acog,spontaneous abortion aafp,7,4,google,2026-03-12 19:53:03.046497,abortion definition acog,spontaneous abortion definition acog,spontaneous,aafp +abortion,"('spontaneous abortion acog', 'spontaneous abortion treatment')",spontaneous abortion acog,spontaneous abortion treatment,8,4,google,2026-03-12 19:53:03.046497,abortion definition acog,spontaneous abortion definition acog,spontaneous,treatment +abortion,"('spontaneous abortion definition', 'spontaneous abortion definition according to who')",spontaneous abortion definition,spontaneous abortion definition according to who,1,4,google,2026-03-12 19:53:04.059682,abortion definition acog,spontaneous abortion definition acog,spontaneous,according to who +abortion,"('spontaneous abortion definition', 'spontaneous abortion definition in hindi')",spontaneous abortion definition,spontaneous abortion definition in hindi,2,4,google,2026-03-12 19:53:04.059682,abortion definition acog,spontaneous abortion definition acog,spontaneous,in hindi +abortion,"('spontaneous abortion definition', 'spontaneous abortion definition ppt')",spontaneous abortion definition,spontaneous abortion definition ppt,3,4,google,2026-03-12 19:53:04.059682,abortion definition acog,spontaneous abortion definition acog,spontaneous,ppt +abortion,"('spontaneous abortion definition', 'spontaneous abortion definition acog')",spontaneous abortion definition,spontaneous abortion definition acog,4,4,google,2026-03-12 19:53:04.059682,abortion definition acog,spontaneous abortion definition acog,spontaneous,acog +abortion,"('spontaneous abortion definition', 'spontaneous abortion definition in obg')",spontaneous abortion definition,spontaneous abortion definition in obg,5,4,google,2026-03-12 19:53:04.059682,abortion definition acog,spontaneous abortion definition acog,spontaneous,in obg +abortion,"('spontaneous abortion definition', 'spontaneous abortion definition simple')",spontaneous abortion definition,spontaneous abortion definition simple,6,4,google,2026-03-12 19:53:04.059682,abortion definition acog,spontaneous abortion definition acog,spontaneous,simple +abortion,"('spontaneous abortion definition', 'induced abortion definition')",spontaneous abortion definition,induced abortion definition,7,4,google,2026-03-12 19:53:04.059682,abortion definition acog,spontaneous abortion definition acog,spontaneous,induced +abortion,"('spontaneous abortion definition', 'spontaneous miscarriage definition')",spontaneous abortion definition,spontaneous miscarriage definition,8,4,google,2026-03-12 19:53:04.059682,abortion definition acog,spontaneous abortion definition acog,spontaneous,miscarriage +abortion,"('spontaneous abortion definition', 'natural abortion definition')",spontaneous abortion definition,natural abortion definition,9,4,google,2026-03-12 19:53:04.059682,abortion definition acog,spontaneous abortion definition acog,spontaneous,natural +abortion,"('acog abortion guidelines', 'acog abortion guidelines pdf')",acog abortion guidelines,acog abortion guidelines pdf,1,4,google,2026-03-12 19:53:04.884030,abortion definition acog,abortion medical definition acog,guidelines,pdf +abortion,"('acog abortion guidelines', 'acog medical abortion guidelines')",acog abortion guidelines,acog medical abortion guidelines,2,4,google,2026-03-12 19:53:04.884030,abortion definition acog,abortion medical definition acog,guidelines,medical +abortion,"('acog abortion guidelines', 'acog septic abortion guidelines')",acog abortion guidelines,acog septic abortion guidelines,3,4,google,2026-03-12 19:53:04.884030,abortion definition acog,abortion medical definition acog,guidelines,septic +abortion,"('acog abortion guidelines', 'acog spontaneous abortion guidelines')",acog abortion guidelines,acog spontaneous abortion guidelines,4,4,google,2026-03-12 19:53:04.884030,abortion definition acog,abortion medical definition acog,guidelines,spontaneous +abortion,"('acog abortion guidelines', 'types of abortion acog')",acog abortion guidelines,types of abortion acog,5,4,google,2026-03-12 19:53:04.884030,abortion definition acog,abortion medical definition acog,guidelines,types of +abortion,"('acog abortion guidelines', 'acog abortion policy')",acog abortion guidelines,acog abortion policy,6,4,google,2026-03-12 19:53:04.884030,abortion definition acog,abortion medical definition acog,guidelines,policy +abortion,"('acog abortion guidelines', 'acog abortion 2022')",acog abortion guidelines,acog abortion 2022,7,4,google,2026-03-12 19:53:04.884030,abortion definition acog,abortion medical definition acog,guidelines,2022 +abortion,"('acog abortion guidelines', 'acog abortion access')",acog abortion guidelines,acog abortion access,8,4,google,2026-03-12 19:53:04.884030,abortion definition acog,abortion medical definition acog,guidelines,access +abortion,"('acog medical abortion guidelines', 'acog abortion guidelines')",acog medical abortion guidelines,acog abortion guidelines,1,4,google,2026-03-12 19:53:05.708041,abortion definition acog,abortion medical definition acog,guidelines,guidelines +abortion,"('acog medical abortion guidelines', 'acog abortion policy')",acog medical abortion guidelines,acog abortion policy,2,4,google,2026-03-12 19:53:05.708041,abortion definition acog,abortion medical definition acog,guidelines,policy +abortion,"('acog medical abortion guidelines', 'types of abortion acog')",acog medical abortion guidelines,types of abortion acog,3,4,google,2026-03-12 19:53:05.708041,abortion definition acog,abortion medical definition acog,guidelines,types of +abortion,"('acog medical abortion guidelines', 'acog medical abortion')",acog medical abortion guidelines,acog medical abortion,4,4,google,2026-03-12 19:53:05.708041,abortion definition acog,abortion medical definition acog,guidelines,guidelines +abortion,"('acog medical abortion guidelines', 'acog abortion medically necessary')",acog medical abortion guidelines,acog abortion medically necessary,5,4,google,2026-03-12 19:53:05.708041,abortion definition acog,abortion medical definition acog,guidelines,medically necessary +abortion,"('acog medical abortion guidelines', 'acog abortion guidelines pdf')",acog medical abortion guidelines,acog abortion guidelines pdf,6,4,google,2026-03-12 19:53:05.708041,abortion definition acog,abortion medical definition acog,guidelines,pdf +abortion,"('acog medical abortion', 'acog medical abortion guidelines')",acog medical abortion,acog medical abortion guidelines,1,4,google,2026-03-12 19:53:06.708195,abortion definition acog,abortion medical definition acog,medical,guidelines +abortion,"('acog medical abortion', 'acog medication abortion practice bulletin')",acog medical abortion,acog medication abortion practice bulletin,2,4,google,2026-03-12 19:53:06.708195,abortion definition acog,abortion medical definition acog,medical,medication practice bulletin +abortion,"('acog medical abortion', 'acog medical termination of pregnancy')",acog medical abortion,acog medical termination of pregnancy,3,4,google,2026-03-12 19:53:06.708195,abortion definition acog,abortion medical definition acog,medical,termination of pregnancy +abortion,"('acog medical abortion', 'acog medical management of missed abortion')",acog medical abortion,acog medical management of missed abortion,4,4,google,2026-03-12 19:53:06.708195,abortion definition acog,abortion medical definition acog,medical,management of missed +abortion,"('acog medical abortion', 'acog abortion guidelines')",acog medical abortion,acog abortion guidelines,5,4,google,2026-03-12 19:53:06.708195,abortion definition acog,abortion medical definition acog,medical,guidelines +abortion,"('acog medical abortion', 'types of abortion acog')",acog medical abortion,types of abortion acog,6,4,google,2026-03-12 19:53:06.708195,abortion definition acog,abortion medical definition acog,medical,types of +abortion,"('acog medical abortion', 'acog abortion policy')",acog medical abortion,acog abortion policy,7,4,google,2026-03-12 19:53:06.708195,abortion definition acog,abortion medical definition acog,medical,policy +abortion,"('acog medical abortion', 'acog abortion medically necessary')",acog medical abortion,acog abortion medically necessary,8,4,google,2026-03-12 19:53:06.708195,abortion definition acog,abortion medical definition acog,medical,medically necessary +abortion,"('threatened abortion acog', 'threatened miscarriage acog')",threatened abortion acog,threatened miscarriage acog,1,4,google,2026-03-12 19:53:07.550264,abortion definition acog,threatened abortion definition acog,threatened,miscarriage +abortion,"('threatened abortion acog', 'inevitable abortion acog')",threatened abortion acog,inevitable abortion acog,2,4,google,2026-03-12 19:53:07.550264,abortion definition acog,threatened abortion definition acog,threatened,inevitable +abortion,"('threatened abortion acog', 'threatened abortion management acog')",threatened abortion acog,threatened abortion management acog,3,4,google,2026-03-12 19:53:07.550264,abortion definition acog,threatened abortion definition acog,threatened,management +abortion,"('threatened abortion acog', 'threatened abortion definition acog')",threatened abortion acog,threatened abortion definition acog,4,4,google,2026-03-12 19:53:07.550264,abortion definition acog,threatened abortion definition acog,threatened,definition +abortion,"('threatened abortion acog', 'types of abortion acog')",threatened abortion acog,types of abortion acog,5,4,google,2026-03-12 19:53:07.550264,abortion definition acog,threatened abortion definition acog,threatened,types of +abortion,"('threatened abortion acog', 'abortion acog guidelines')",threatened abortion acog,abortion acog guidelines,6,4,google,2026-03-12 19:53:07.550264,abortion definition acog,threatened abortion definition acog,threatened,guidelines +abortion,"('threatened abortion acog', 'acog definition of abortion')",threatened abortion acog,acog definition of abortion,7,4,google,2026-03-12 19:53:07.550264,abortion definition acog,threatened abortion definition acog,threatened,definition of +abortion,"('threatened abortion acog', 'acog abortion policy')",threatened abortion acog,acog abortion policy,8,4,google,2026-03-12 19:53:07.550264,abortion definition acog,threatened abortion definition acog,threatened,policy +abortion,"('threatened abortion acog', 'threatened abortion aafp')",threatened abortion acog,threatened abortion aafp,9,4,google,2026-03-12 19:53:07.550264,abortion definition acog,threatened abortion definition acog,threatened,aafp +abortion,"('threatened abortion management acog', 'what are the management of threatened abortion')",threatened abortion management acog,what are the management of threatened abortion,1,4,google,2026-03-12 19:53:08.504342,abortion definition acog,threatened abortion definition acog,management,what are the of +abortion,"('threatened abortion management acog', 'types of abortion acog')",threatened abortion management acog,types of abortion acog,2,4,google,2026-03-12 19:53:08.504342,abortion definition acog,threatened abortion definition acog,management,types of +abortion,"('threatened abortion management acog', 'abortion acog guidelines')",threatened abortion management acog,abortion acog guidelines,3,4,google,2026-03-12 19:53:08.504342,abortion definition acog,threatened abortion definition acog,management,guidelines +abortion,"('threatened abortion management acog', 'acog abortion policy')",threatened abortion management acog,acog abortion policy,4,4,google,2026-03-12 19:53:08.504342,abortion definition acog,threatened abortion definition acog,management,policy +abortion,"('threatened abortion management acog', 'threatened abortion acog')",threatened abortion management acog,threatened abortion acog,5,4,google,2026-03-12 19:53:08.504342,abortion definition acog,threatened abortion definition acog,management,management +abortion,"('threatened abortion management acog', 'threatened miscarriage acog')",threatened abortion management acog,threatened miscarriage acog,6,4,google,2026-03-12 19:53:08.504342,abortion definition acog,threatened abortion definition acog,management,miscarriage +abortion,"('threatened abortion management acog', 'threatened abortion aafp')",threatened abortion management acog,threatened abortion aafp,7,4,google,2026-03-12 19:53:08.504342,abortion definition acog,threatened abortion definition acog,management,aafp +abortion,"('threatened abortion diagnosis', 'threatened abortion diagnosis code')",threatened abortion diagnosis,threatened abortion diagnosis code,1,4,google,2026-03-12 19:53:09.506611,abortion definition acog,threatened abortion definition acog,diagnosis,code +abortion,"('threatened abortion diagnosis', 'threatened abortion diagnosis meaning')",threatened abortion diagnosis,threatened abortion diagnosis meaning,2,4,google,2026-03-12 19:53:09.506611,abortion definition acog,threatened abortion definition acog,diagnosis,meaning +abortion,"('threatened abortion diagnosis', 'threatened miscarriage diagnosis')",threatened abortion diagnosis,threatened miscarriage diagnosis,3,4,google,2026-03-12 19:53:09.506611,abortion definition acog,threatened abortion definition acog,diagnosis,miscarriage +abortion,"('threatened abortion diagnosis', 'inevitable abortion diagnosis')",threatened abortion diagnosis,inevitable abortion diagnosis,4,4,google,2026-03-12 19:53:09.506611,abortion definition acog,threatened abortion definition acog,diagnosis,inevitable +abortion,"('threatened abortion diagnosis', 'threatened miscarriage diagnosis code')",threatened abortion diagnosis,threatened miscarriage diagnosis code,5,4,google,2026-03-12 19:53:09.506611,abortion definition acog,threatened abortion definition acog,diagnosis,miscarriage code +abortion,"('threatened abortion diagnosis', 'threatened abortion diagnostic test')",threatened abortion diagnosis,threatened abortion diagnostic test,6,4,google,2026-03-12 19:53:09.506611,abortion definition acog,threatened abortion definition acog,diagnosis,diagnostic test +abortion,"('threatened abortion diagnosis', 'threatened abortion diagnostic evaluation')",threatened abortion diagnosis,threatened abortion diagnostic evaluation,7,4,google,2026-03-12 19:53:09.506611,abortion definition acog,threatened abortion definition acog,diagnosis,diagnostic evaluation +abortion,"('threatened abortion diagnosis', 'threatened abortion diagnostic.criteria')",threatened abortion diagnosis,threatened abortion diagnostic.criteria,8,4,google,2026-03-12 19:53:09.506611,abortion definition acog,threatened abortion definition acog,diagnosis,diagnostic.criteria +abortion,"('threatened abortion diagnosis', 'threatened abortion nursing diagnosis')",threatened abortion diagnosis,threatened abortion nursing diagnosis,9,4,google,2026-03-12 19:53:09.506611,abortion definition acog,threatened abortion definition acog,diagnosis,nursing +abortion,"('threatened abortion aafp', 'threatened miscarriage aafp')",threatened abortion aafp,threatened miscarriage aafp,1,4,google,2026-03-12 19:53:10.548274,abortion definition acog,threatened abortion definition acog,aafp,miscarriage +abortion,"('threatened abortion aafp', 'what is threatened abortion')",threatened abortion aafp,what is threatened abortion,2,4,google,2026-03-12 19:53:10.548274,abortion definition acog,threatened abortion definition acog,aafp,what is +abortion,"('threatened abortion aafp', 'types of abortion threatened')",threatened abortion aafp,types of abortion threatened,3,4,google,2026-03-12 19:53:10.548274,abortion definition acog,threatened abortion definition acog,aafp,types of +abortion,"('threatened abortion aafp', 'apa itu threatened abortion')",threatened abortion aafp,apa itu threatened abortion,4,4,google,2026-03-12 19:53:10.548274,abortion definition acog,threatened abortion definition acog,aafp,apa itu +abortion,"('threatened abortion aafp', 'what do you mean by threatened abortion')",threatened abortion aafp,what do you mean by threatened abortion,5,4,google,2026-03-12 19:53:10.548274,abortion definition acog,threatened abortion definition acog,aafp,what do you mean by +abortion,"('threatened abortion aafp', 'threatened abortion acog')",threatened abortion aafp,threatened abortion acog,6,4,google,2026-03-12 19:53:10.548274,abortion definition acog,threatened abortion definition acog,aafp,acog +abortion,"('threatened abortion aafp', 'threatened abortion management acog')",threatened abortion aafp,threatened abortion management acog,7,4,google,2026-03-12 19:53:10.548274,abortion definition acog,threatened abortion definition acog,aafp,management acog +abortion,"('threatened abortion aafp', 'threatened abortion antepartum')",threatened abortion aafp,threatened abortion antepartum,8,4,google,2026-03-12 19:53:10.548274,abortion definition acog,threatened abortion definition acog,aafp,antepartum +abortion,"('inevitable ab', 'inevitable abortion')",inevitable ab,inevitable abortion,1,4,google,2026-03-12 19:53:11.808245,abortion definition acog,inevitable abortion definition acog,ab,abortion +abortion,"('inevitable ab', 'inevitable abortion definition')",inevitable ab,inevitable abortion definition,2,4,google,2026-03-12 19:53:11.808245,abortion definition acog,inevitable abortion definition acog,ab,abortion definition +abortion,"('inevitable ab', 'inevitable abortion icd 10')",inevitable ab,inevitable abortion icd 10,3,4,google,2026-03-12 19:53:11.808245,abortion definition acog,inevitable abortion definition acog,ab,abortion icd 10 +abortion,"('inevitable ab', 'inevitable abortion vs incomplete abortion')",inevitable ab,inevitable abortion vs incomplete abortion,4,4,google,2026-03-12 19:53:11.808245,abortion definition acog,inevitable abortion definition acog,ab,abortion vs incomplete abortion +abortion,"('inevitable ab', 'inevitable abortion treatment')",inevitable ab,inevitable abortion treatment,5,4,google,2026-03-12 19:53:11.808245,abortion definition acog,inevitable abortion definition acog,ab,abortion treatment +abortion,"('inevitable ab', 'inevitable abortion radiology')",inevitable ab,inevitable abortion radiology,6,4,google,2026-03-12 19:53:11.808245,abortion definition acog,inevitable abortion definition acog,ab,abortion radiology +abortion,"('inevitable ab', 'inevitable abortion vs missed abortion')",inevitable ab,inevitable abortion vs missed abortion,7,4,google,2026-03-12 19:53:11.808245,abortion definition acog,inevitable abortion definition acog,ab,abortion vs missed abortion +abortion,"('inevitable ab', 'inevitable abortion ultrasound')",inevitable ab,inevitable abortion ultrasound,8,4,google,2026-03-12 19:53:11.808245,abortion definition acog,inevitable abortion definition acog,ab,abortion ultrasound +abortion,"('inevitable ab', 'inevitable abortion vs threatened abortion')",inevitable ab,inevitable abortion vs threatened abortion,9,4,google,2026-03-12 19:53:11.808245,abortion definition acog,inevitable abortion definition acog,ab,abortion vs threatened abortion +abortion,"('inevitable abortion icd-10', 'missed abortion icd 10')",inevitable abortion icd-10,missed abortion icd 10,1,4,google,2026-03-12 19:53:13.056277,abortion definition acog,inevitable abortion definition acog,icd-10,missed icd 10 +abortion,"('inevitable abortion icd-10', 'incomplete abortion icd 10')",inevitable abortion icd-10,incomplete abortion icd 10,2,4,google,2026-03-12 19:53:13.056277,abortion definition acog,inevitable abortion definition acog,icd-10,incomplete icd 10 +abortion,"('inevitable abortion icd-10', 'threatened abortion icd 10')",inevitable abortion icd-10,threatened abortion icd 10,3,4,google,2026-03-12 19:53:13.056277,abortion definition acog,inevitable abortion definition acog,icd-10,threatened icd 10 +abortion,"('inevitable abortion icd-10', 'inevitable miscarriage icd 10')",inevitable abortion icd-10,inevitable miscarriage icd 10,4,4,google,2026-03-12 19:53:13.056277,abortion definition acog,inevitable abortion definition acog,icd-10,miscarriage icd 10 +abortion,"('inevitable abortion icd-10', 'imminent abortion icd 10')",inevitable abortion icd-10,imminent abortion icd 10,5,4,google,2026-03-12 19:53:13.056277,abortion definition acog,inevitable abortion definition acog,icd-10,imminent icd 10 +abortion,"('inevitable abortion icd-10', 'threatened abortion icd 10 o20 0')",inevitable abortion icd-10,threatened abortion icd 10 o20 0,6,4,google,2026-03-12 19:53:13.056277,abortion definition acog,inevitable abortion definition acog,icd-10,threatened icd 10 o20 0 +abortion,"('inevitable abortion icd-10', 'missed abortion icd 10 pcs')",inevitable abortion icd-10,missed abortion icd 10 pcs,7,4,google,2026-03-12 19:53:13.056277,abortion definition acog,inevitable abortion definition acog,icd-10,missed icd 10 pcs +abortion,"('inevitable abortion icd-10', 'missed abortion icd 10 o02 1')",inevitable abortion icd-10,missed abortion icd 10 o02 1,8,4,google,2026-03-12 19:53:13.056277,abortion definition acog,inevitable abortion definition acog,icd-10,missed icd 10 o02 1 +abortion,"('inevitable abortion icd-10', 'threatened abortion icd 10 quizlet')",inevitable abortion icd-10,threatened abortion icd 10 quizlet,9,4,google,2026-03-12 19:53:13.056277,abortion definition acog,inevitable abortion definition acog,icd-10,threatened icd 10 quizlet +abortion,"('septic abortion acog', 'septic abortion antibiotics acog')",septic abortion acog,septic abortion antibiotics acog,1,4,google,2026-03-12 19:53:14.892596,abortion definition acog,septic abortion definition acog,septic,antibiotics +abortion,"('septic abortion acog', 'septic abortion treatment acog')",septic abortion acog,septic abortion treatment acog,2,4,google,2026-03-12 19:53:14.892596,abortion definition acog,septic abortion definition acog,septic,treatment +abortion,"('septic abortion acog', 'septic abortion definition acog')",septic abortion acog,septic abortion definition acog,3,4,google,2026-03-12 19:53:14.892596,abortion definition acog,septic abortion definition acog,septic,definition +abortion,"('septic abortion acog', 'acog septic abortion guidelines')",septic abortion acog,acog septic abortion guidelines,4,4,google,2026-03-12 19:53:14.892596,abortion definition acog,septic abortion definition acog,septic,guidelines +abortion,"('septic abortion acog', 'abortion acog guidelines')",septic abortion acog,abortion acog guidelines,5,4,google,2026-03-12 19:53:14.892596,abortion definition acog,septic abortion definition acog,septic,guidelines +abortion,"('septic abortion acog', 'types of abortion acog')",septic abortion acog,types of abortion acog,6,4,google,2026-03-12 19:53:14.892596,abortion definition acog,septic abortion definition acog,septic,types of +abortion,"('septic abortion acog', 'acog abortion policy')",septic abortion acog,acog abortion policy,7,4,google,2026-03-12 19:53:14.892596,abortion definition acog,septic abortion definition acog,septic,policy +abortion,"('septic abortion acog', 'acog spontaneous abortion guidelines')",septic abortion acog,acog spontaneous abortion guidelines,8,4,google,2026-03-12 19:53:14.892596,abortion definition acog,septic abortion definition acog,septic,spontaneous guidelines +abortion,"('septic abortion acog', 'septic abortion treatment')",septic abortion acog,septic abortion treatment,9,4,google,2026-03-12 19:53:14.892596,abortion definition acog,septic abortion definition acog,septic,treatment +abortion,"('septic abortion treatment acog', 'abortion treatment guidelines')",septic abortion treatment acog,abortion treatment guidelines,1,4,google,2026-03-12 19:53:16.301955,abortion definition acog,septic abortion definition acog,treatment,guidelines +abortion,"('septic abortion treatment acog', 'threatened abortion treatment guidelines rcog')",septic abortion treatment acog,threatened abortion treatment guidelines rcog,2,4,google,2026-03-12 19:53:16.301955,abortion definition acog,septic abortion definition acog,treatment,threatened guidelines rcog +abortion,"('septic abortion treatment acog', 'types of abortion acog')",septic abortion treatment acog,types of abortion acog,3,4,google,2026-03-12 19:53:16.301955,abortion definition acog,septic abortion definition acog,treatment,types of +abortion,"('septic abortion treatment acog', 'acog abortion guidelines')",septic abortion treatment acog,acog abortion guidelines,4,4,google,2026-03-12 19:53:16.301955,abortion definition acog,septic abortion definition acog,treatment,guidelines +abortion,"('septic abortion treatment acog', 'septic abortion acog')",septic abortion treatment acog,septic abortion acog,5,4,google,2026-03-12 19:53:16.301955,abortion definition acog,septic abortion definition acog,treatment,treatment +abortion,"('septic abortion treatment acog', 'septic abortion antibiotics acog')",septic abortion treatment acog,septic abortion antibiotics acog,6,4,google,2026-03-12 19:53:16.301955,abortion definition acog,septic abortion definition acog,treatment,antibiotics +abortion,"('septic abortion treatment acog', 'septic abortion treatment')",septic abortion treatment acog,septic abortion treatment,7,4,google,2026-03-12 19:53:16.301955,abortion definition acog,septic abortion definition acog,treatment,treatment +abortion,"('septic abortion antibiotics acog', 'septic abortion antibiotics')",septic abortion antibiotics acog,septic abortion antibiotics,1,4,google,2026-03-12 19:53:17.581268,abortion definition acog,septic abortion definition acog,antibiotics,antibiotics +abortion,"('septic abortion antibiotics acog', 'antibiotics during abortion')",septic abortion antibiotics acog,antibiotics during abortion,2,4,google,2026-03-12 19:53:17.581268,abortion definition acog,septic abortion definition acog,antibiotics,during +abortion,"('septic abortion antibiotics acog', 'septic abortion treatment acog')",septic abortion antibiotics acog,septic abortion treatment acog,3,4,google,2026-03-12 19:53:17.581268,abortion definition acog,septic abortion definition acog,antibiotics,treatment +abortion,"('septic abortion antibiotics acog', 'septic abortion acog')",septic abortion antibiotics acog,septic abortion acog,4,4,google,2026-03-12 19:53:17.581268,abortion definition acog,septic abortion definition acog,antibiotics,antibiotics +abortion,"('septic abortion antibiotics acog', 'septic abortion treatment')",septic abortion antibiotics acog,septic abortion treatment,5,4,google,2026-03-12 19:53:17.581268,abortion definition acog,septic abortion definition acog,antibiotics,treatment +abortion,"('incomplete abortion acog', 'missed abortion acog')",incomplete abortion acog,missed abortion acog,1,4,google,2026-03-12 19:53:18.694367,abortion definition acog,incomplete abortion definition acog,incomplete,missed +abortion,"('incomplete abortion acog', 'spontaneous abortion acog')",incomplete abortion acog,spontaneous abortion acog,2,4,google,2026-03-12 19:53:18.694367,abortion definition acog,incomplete abortion definition acog,incomplete,spontaneous +abortion,"('incomplete abortion acog', 'inevitable abortion acog')",incomplete abortion acog,inevitable abortion acog,3,4,google,2026-03-12 19:53:18.694367,abortion definition acog,incomplete abortion definition acog,incomplete,inevitable +abortion,"('incomplete abortion acog', 'missed abortion acog criteria')",incomplete abortion acog,missed abortion acog criteria,4,4,google,2026-03-12 19:53:18.694367,abortion definition acog,incomplete abortion definition acog,incomplete,missed criteria +abortion,"('incomplete abortion acog', 'incomplete abortion management acog')",incomplete abortion acog,incomplete abortion management acog,5,4,google,2026-03-12 19:53:18.694367,abortion definition acog,incomplete abortion definition acog,incomplete,management +abortion,"('incomplete abortion acog', 'incomplete abortion definition acog')",incomplete abortion acog,incomplete abortion definition acog,6,4,google,2026-03-12 19:53:18.694367,abortion definition acog,incomplete abortion definition acog,incomplete,definition +abortion,"('incomplete abortion acog', 'types of abortion acog')",incomplete abortion acog,types of abortion acog,7,4,google,2026-03-12 19:53:18.694367,abortion definition acog,incomplete abortion definition acog,incomplete,types of +abortion,"('incomplete abortion acog', 'missed abortion definition acog')",incomplete abortion acog,missed abortion definition acog,8,4,google,2026-03-12 19:53:18.694367,abortion definition acog,incomplete abortion definition acog,incomplete,missed definition +abortion,"('incomplete abortion acog', 'acog abortion policy')",incomplete abortion acog,acog abortion policy,9,4,google,2026-03-12 19:53:18.694367,abortion definition acog,incomplete abortion definition acog,incomplete,policy +abortion,"('incomplete abortion definition', 'incomplete abortion definition in hindi')",incomplete abortion definition,incomplete abortion definition in hindi,1,4,google,2026-03-12 19:53:19.813475,abortion definition acog,incomplete abortion definition acog,incomplete,in hindi +abortion,"('incomplete abortion definition', 'incomplete abortion definition in obg')",incomplete abortion definition,incomplete abortion definition in obg,2,4,google,2026-03-12 19:53:19.813475,abortion definition acog,incomplete abortion definition acog,incomplete,in obg +abortion,"('incomplete abortion definition', 'incomplete abortion definition according to who')",incomplete abortion definition,incomplete abortion definition according to who,3,4,google,2026-03-12 19:53:19.813475,abortion definition acog,incomplete abortion definition acog,incomplete,according to who +abortion,"('incomplete abortion definition', 'incomplete abortion definition ppt')",incomplete abortion definition,incomplete abortion definition ppt,4,4,google,2026-03-12 19:53:19.813475,abortion definition acog,incomplete abortion definition acog,incomplete,ppt +abortion,"('incomplete abortion definition', 'incomplete abortion definition ultrasound')",incomplete abortion definition,incomplete abortion definition ultrasound,5,4,google,2026-03-12 19:53:19.813475,abortion definition acog,incomplete abortion definition acog,incomplete,ultrasound +abortion,"('incomplete abortion definition', 'incomplete abortion definition acog')",incomplete abortion definition,incomplete abortion definition acog,6,4,google,2026-03-12 19:53:19.813475,abortion definition acog,incomplete abortion definition acog,incomplete,acog +abortion,"('incomplete abortion definition', 'missed abortion definition')",incomplete abortion definition,missed abortion definition,7,4,google,2026-03-12 19:53:19.813475,abortion definition acog,incomplete abortion definition acog,incomplete,missed +abortion,"('incomplete abortion definition', 'spontaneous abortion definition')",incomplete abortion definition,spontaneous abortion definition,8,4,google,2026-03-12 19:53:19.813475,abortion definition acog,incomplete abortion definition acog,incomplete,spontaneous +abortion,"('incomplete abortion definition', 'inevitable abortion definition')",incomplete abortion definition,inevitable abortion definition,9,4,google,2026-03-12 19:53:19.813475,abortion definition acog,incomplete abortion definition acog,incomplete,inevitable +abortion,"('incomplete abortion d&c', 'missed abortion d&c')",incomplete abortion d&c,missed abortion d&c,1,4,google,2026-03-12 19:53:21.058685,abortion definition acog,incomplete abortion definition acog,d&c,missed +abortion,"('incomplete abortion d&c', 'incomplete miscarriage d&c')",incomplete abortion d&c,incomplete miscarriage d&c,2,4,google,2026-03-12 19:53:21.058685,abortion definition acog,incomplete abortion definition acog,d&c,miscarriage +abortion,"('incomplete abortion d&c', 'missed abortion d&c procedure')",incomplete abortion d&c,missed abortion d&c procedure,3,4,google,2026-03-12 19:53:21.058685,abortion definition acog,incomplete abortion definition acog,d&c,missed procedure +abortion,"('incomplete abortion d&c', 'spontaneous abortion d&c')",incomplete abortion d&c,spontaneous abortion d&c,4,4,google,2026-03-12 19:53:21.058685,abortion definition acog,incomplete abortion definition acog,d&c,spontaneous +abortion,"('incomplete abortion d&c', 'incomplete abortion d&c cpt code')",incomplete abortion d&c,incomplete abortion d&c cpt code,5,4,google,2026-03-12 19:53:21.058685,abortion definition acog,incomplete abortion definition acog,d&c,cpt code +abortion,"('incomplete abortion d&c', 'incomplete abortion after d&c')",incomplete abortion d&c,incomplete abortion after d&c,6,4,google,2026-03-12 19:53:21.058685,abortion definition acog,incomplete abortion definition acog,d&c,after +abortion,"('incomplete abortion d&c', 'incomplete abortion d&c cpt')",incomplete abortion d&c,incomplete abortion d&c cpt,7,4,google,2026-03-12 19:53:21.058685,abortion definition acog,incomplete abortion definition acog,d&c,cpt +abortion,"('incomplete abortion d&c', 'missed abortion d&c cpt')",incomplete abortion d&c,missed abortion d&c cpt,8,4,google,2026-03-12 19:53:21.058685,abortion definition acog,incomplete abortion definition acog,d&c,missed cpt +abortion,"('incomplete abortion d&c', 'incomplete miscarriage after d&c')",incomplete abortion d&c,incomplete miscarriage after d&c,9,4,google,2026-03-12 19:53:21.058685,abortion definition acog,incomplete abortion definition acog,d&c,miscarriage after +abortion,"('types of acog', 'types of acog scopes')",types of acog,types of acog scopes,1,4,google,2026-03-12 19:53:22.347985,abortion definition acog,types of abortion acog,types of,scopes +abortion,"('types of acog', 'types of acogs')",types of acog,types of acogs,2,4,google,2026-03-12 19:53:22.347985,abortion definition acog,types of abortion acog,types of,acogs +abortion,"('types of acog', 'types of acog sights')",types of acog,types of acog sights,3,4,google,2026-03-12 19:53:22.347985,abortion definition acog,types of abortion acog,types of,sights +abortion,"('types of acog', 'types of acog reticles')",types of acog,types of acog reticles,4,4,google,2026-03-12 19:53:22.347985,abortion definition acog,types of abortion acog,types of,reticles +abortion,"('types of acog', 'types of abortion acog')",types of acog,types of abortion acog,5,4,google,2026-03-12 19:53:22.347985,abortion definition acog,types of abortion acog,types of,abortion +abortion,"('types of acog', 'types of miscarriage acog')",types of acog,types of miscarriage acog,6,4,google,2026-03-12 19:53:22.347985,abortion definition acog,types of abortion acog,types of,miscarriage +abortion,"('types of acog', 'types of hysterectomy acog')",types of acog,types of hysterectomy acog,7,4,google,2026-03-12 19:53:22.347985,abortion definition acog,types of abortion acog,types of,hysterectomy +abortion,"('types of acog', 'types of placenta previa acog')",types of acog,types of placenta previa acog,8,4,google,2026-03-12 19:53:22.347985,abortion definition acog,types of abortion acog,types of,placenta previa +abortion,"('types of acog', 'types of ovarian cysts acog')",types of acog,types of ovarian cysts acog,9,4,google,2026-03-12 19:53:22.347985,abortion definition acog,types of abortion acog,types of,ovarian cysts +abortion,"('types of acog', 'acog types of birth control')",types of acog,acog types of birth control,10,4,google,2026-03-12 19:53:22.347985,abortion definition acog,types of abortion acog,types of,birth control +abortion,"('acog abortion access', 'acog abortion access 2024')",acog abortion access,acog abortion access 2024,1,4,google,2026-03-12 19:53:23.605108,abortion definition acog,acog abortion policy,access,2024 +abortion,"('acog abortion access', 'acog abortion accessibility')",acog abortion access,acog abortion accessibility,2,4,google,2026-03-12 19:53:23.605108,abortion definition acog,acog abortion policy,access,accessibility +abortion,"('acog abortion access', 'acog abortion access policy')",acog abortion access,acog abortion access policy,3,4,google,2026-03-12 19:53:23.605108,abortion definition acog,acog abortion policy,access,policy +abortion,"('acog abortion access', 'acog abortion access guidelines')",acog abortion access,acog abortion access guidelines,4,4,google,2026-03-12 19:53:23.605108,abortion definition acog,acog abortion policy,access,guidelines +abortion,"('acog abortion access', 'acog abortion access 2023')",acog abortion access,acog abortion access 2023,5,4,google,2026-03-12 19:53:23.605108,abortion definition acog,acog abortion policy,access,2023 +abortion,"('acog abortion access', 'acog abortion accessories')",acog abortion access,acog abortion accessories,6,4,google,2026-03-12 19:53:23.605108,abortion definition acog,acog abortion policy,access,accessories +abortion,"('acog abortion access', 'acog abortion access to contraception')",acog abortion access,acog abortion access to contraception,7,4,google,2026-03-12 19:53:23.605108,abortion definition acog,acog abortion policy,access,to contraception +abortion,"('acog abortion guidelines pdf', 'acog abortion guidelines')",acog abortion guidelines pdf,acog abortion guidelines,1,4,google,2026-03-12 19:53:24.456911,abortion definition acog,acog abortion policy,guidelines pdf,guidelines pdf +abortion,"('acog abortion guidelines pdf', 'acog pregnancy guidelines')",acog abortion guidelines pdf,acog pregnancy guidelines,2,4,google,2026-03-12 19:53:24.456911,abortion definition acog,acog abortion policy,guidelines pdf,pregnancy +abortion,"('acog abortion guidelines pdf', 'acog abortion practice bulletin')",acog abortion guidelines pdf,acog abortion practice bulletin,3,4,google,2026-03-12 19:53:24.456911,abortion definition acog,acog abortion policy,guidelines pdf,practice bulletin +abortion,"('acog abortion guidelines pdf', 'acog abortion policy')",acog abortion guidelines pdf,acog abortion policy,4,4,google,2026-03-12 19:53:24.456911,abortion definition acog,acog abortion policy,guidelines pdf,policy +abortion,"('acog abortion', 'acog abortion guidelines pdf')",acog abortion,acog abortion guidelines pdf,1,4,google,2026-03-12 19:53:25.400725,abortion definition acog,acog abortion policy,policy,guidelines pdf +abortion,"('acog abortion', 'acog abortion definition')",acog abortion,acog abortion definition,2,4,google,2026-03-12 19:53:25.400725,abortion definition acog,acog abortion policy,policy,definition +abortion,"('acog abortion', 'acog abortion guidelines')",acog abortion,acog abortion guidelines,3,4,google,2026-03-12 19:53:25.400725,abortion definition acog,acog abortion policy,policy,guidelines +abortion,"('acog abortion', 'acog abortion policy')",acog abortion,acog abortion policy,4,4,google,2026-03-12 19:53:25.400725,abortion definition acog,acog abortion policy,policy,policy +abortion,"('acog abortion', 'acog abortion is healthcare')",acog abortion,acog abortion is healthcare,5,4,google,2026-03-12 19:53:25.400725,abortion definition acog,acog abortion policy,policy,is healthcare +abortion,"('acog abortion', 'acog abortion language')",acog abortion,acog abortion language,6,4,google,2026-03-12 19:53:25.400725,abortion definition acog,acog abortion policy,policy,language +abortion,"('acog abortion', 'acog abortion terminology')",acog abortion,acog abortion terminology,7,4,google,2026-03-12 19:53:25.400725,abortion definition acog,acog abortion policy,policy,terminology +abortion,"('acog abortion', 'acog abortion practice bulletin')",acog abortion,acog abortion practice bulletin,8,4,google,2026-03-12 19:53:25.400725,abortion definition acog,acog abortion policy,policy,practice bulletin +abortion,"('acog abortion', 'acog abortion care')",acog abortion,acog abortion care,9,4,google,2026-03-12 19:53:25.400725,abortion definition acog,acog abortion policy,policy,care +abortion,"('what is abortion ppt', 'what is abortion slideshare')",what is abortion ppt,what is abortion slideshare,1,4,google,2026-03-12 19:53:26.792825,abortion definition in nursing,abortion definition in nursing ppt,what is,slideshare +abortion,"('what is abortion ppt', 'what is induced abortion ppt')",what is abortion ppt,what is induced abortion ppt,2,4,google,2026-03-12 19:53:26.792825,abortion definition in nursing,abortion definition in nursing ppt,what is,induced +abortion,"('what is abortion ppt', 'what is septic abortion ppt')",what is abortion ppt,what is septic abortion ppt,3,4,google,2026-03-12 19:53:26.792825,abortion definition in nursing,abortion definition in nursing ppt,what is,septic +abortion,"('what is abortion ppt', 'what is safe abortion class 8 ppt')",what is abortion ppt,what is safe abortion class 8 ppt,4,4,google,2026-03-12 19:53:26.792825,abortion definition in nursing,abortion definition in nursing ppt,what is,safe class 8 +abortion,"('what is abortion ppt', 'what is the difference between miscarriage and abortion ppt')",what is abortion ppt,what is the difference between miscarriage and abortion ppt,5,4,google,2026-03-12 19:53:26.792825,abortion definition in nursing,abortion definition in nursing ppt,what is,the difference between miscarriage and +abortion,"('what is abortion ppt', 'types of abortion ppt')",what is abortion ppt,types of abortion ppt,6,4,google,2026-03-12 19:53:26.792825,abortion definition in nursing,abortion definition in nursing ppt,what is,types of +abortion,"('what is abortion ppt', 'explain abortion in detail')",what is abortion ppt,explain abortion in detail,7,4,google,2026-03-12 19:53:26.792825,abortion definition in nursing,abortion definition in nursing ppt,what is,explain in detail +abortion,"('what is abortion ppt', 'power point presentation on abortion')",what is abortion ppt,power point presentation on abortion,8,4,google,2026-03-12 19:53:26.792825,abortion definition in nursing,abortion definition in nursing ppt,what is,power point presentation on +abortion,"('what is abortion ppt', 'what is ppt abbreviation')",what is abortion ppt,what is ppt abbreviation,9,4,google,2026-03-12 19:53:26.792825,abortion definition in nursing,abortion definition in nursing ppt,what is,abbreviation +abortion,"('what is ppt in nursing', 'what is ethics in nursing ppt')",what is ppt in nursing,what is ethics in nursing ppt,1,4,google,2026-03-12 19:53:27.599599,abortion definition in nursing,abortion definition in nursing ppt,what is,ethics +abortion,"('what is ppt in nursing', 'what is code of ethics in nursing ppt')",what is ppt in nursing,what is code of ethics in nursing ppt,2,4,google,2026-03-12 19:53:27.599599,abortion definition in nursing,abortion definition in nursing ppt,what is,code of ethics +abortion,"('what is ppt in nursing', 'what is the importance of microbiology in nursing ppt')",what is ppt in nursing,what is the importance of microbiology in nursing ppt,3,4,google,2026-03-12 19:53:27.599599,abortion definition in nursing,abortion definition in nursing ppt,what is,the importance of microbiology +abortion,"('what is ppt in nursing', 'what is ppt in health care')",what is ppt in nursing,what is ppt in health care,4,4,google,2026-03-12 19:53:27.599599,abortion definition in nursing,abortion definition in nursing ppt,what is,health care +abortion,"('what is ppt in nursing', 'what is ppt in medical')",what is ppt in nursing,what is ppt in medical,5,4,google,2026-03-12 19:53:27.599599,abortion definition in nursing,abortion definition in nursing ppt,what is,medical +abortion,"('what is ppt in nursing', 'what is ppt in medical terms')",what is ppt in nursing,what is ppt in medical terms,6,4,google,2026-03-12 19:53:27.599599,abortion definition in nursing,abortion definition in nursing ppt,what is,medical terms +abortion,"('what is ppt in nursing', 'what is ptt nursing')",what is ppt in nursing,what is ptt nursing,7,4,google,2026-03-12 19:53:27.599599,abortion definition in nursing,abortion definition in nursing ppt,what is,ptt +abortion,"('types of abortion ppt', 'types of abortion ppt for nursing students')",types of abortion ppt,types of abortion ppt for nursing students,1,4,google,2026-03-12 19:53:28.890995,abortion definition in nursing,abortion definition in nursing ppt,types of,for nursing students +abortion,"('types of abortion ppt', 'types of abortion ppt free download')",types of abortion ppt,types of abortion ppt free download,2,4,google,2026-03-12 19:53:28.890995,abortion definition in nursing,abortion definition in nursing ppt,types of,free download +abortion,"('types of abortion ppt', 'types of abortion ppt in hindi')",types of abortion ppt,types of abortion ppt in hindi,3,4,google,2026-03-12 19:53:28.890995,abortion definition in nursing,abortion definition in nursing ppt,types of,in hindi +abortion,"('types of abortion ppt', 'types of abortion ppt nursing')",types of abortion ppt,types of abortion ppt nursing,4,4,google,2026-03-12 19:53:28.890995,abortion definition in nursing,abortion definition in nursing ppt,types of,nursing +abortion,"('types of abortion ppt', 'types of abortion ppt 2021')",types of abortion ppt,types of abortion ppt 2021,5,4,google,2026-03-12 19:53:28.890995,abortion definition in nursing,abortion definition in nursing ppt,types of,2021 +abortion,"('types of abortion ppt', 'procedure of abortion ppt')",types of abortion ppt,procedure of abortion ppt,6,4,google,2026-03-12 19:53:28.890995,abortion definition in nursing,abortion definition in nursing ppt,types of,procedure +abortion,"('types of abortion ppt', 'types of abortion slideshare')",types of abortion ppt,types of abortion slideshare,7,4,google,2026-03-12 19:53:28.890995,abortion definition in nursing,abortion definition in nursing ppt,types of,slideshare +abortion,"('types of abortion ppt', 'types of abortion slideshare nursing')",types of abortion ppt,types of abortion slideshare nursing,8,4,google,2026-03-12 19:53:28.890995,abortion definition in nursing,abortion definition in nursing ppt,types of,slideshare nursing +abortion,"('types of abortion ppt', '7 types of abortion ppt')",types of abortion ppt,7 types of abortion ppt,9,4,google,2026-03-12 19:53:28.890995,abortion definition in nursing,abortion definition in nursing ppt,types of,7 +abortion,"('definition abortion nursing', 'abortion definition nursing')",definition abortion nursing,abortion definition nursing,1,4,google,2026-03-12 19:53:30.365061,abortion definition in nursing,abortion definition in nursing ppt,ppt,ppt +abortion,"('definition abortion nursing', 'abortion definition in nursing ppt')",definition abortion nursing,abortion definition in nursing ppt,2,4,google,2026-03-12 19:53:30.365061,abortion definition in nursing,abortion definition in nursing ppt,ppt,in ppt +abortion,"('definition abortion nursing', 'abortion definition in nursing according to who')",definition abortion nursing,abortion definition in nursing according to who,3,4,google,2026-03-12 19:53:30.365061,abortion definition in nursing,abortion definition in nursing ppt,ppt,in according to who +abortion,"('definition abortion nursing', 'abortion definition in nursing pdf')",definition abortion nursing,abortion definition in nursing pdf,4,4,google,2026-03-12 19:53:30.365061,abortion definition in nursing,abortion definition in nursing ppt,ppt,in pdf +abortion,"('definition abortion nursing', 'abortion definition in nursing in hindi')",definition abortion nursing,abortion definition in nursing in hindi,5,4,google,2026-03-12 19:53:30.365061,abortion definition in nursing,abortion definition in nursing ppt,ppt,in in hindi +abortion,"('definition abortion nursing', 'definition of abortion in nursing wikipedia')",definition abortion nursing,definition of abortion in nursing wikipedia,6,4,google,2026-03-12 19:53:30.365061,abortion definition in nursing,abortion definition in nursing ppt,ppt,of in wikipedia +abortion,"('definition abortion nursing', 'definition of abortion in nursing slideshare')",definition abortion nursing,definition of abortion in nursing slideshare,7,4,google,2026-03-12 19:53:30.365061,abortion definition in nursing,abortion definition in nursing ppt,ppt,of in slideshare +abortion,"('definition abortion nursing', 'what is abortion in nursing')",definition abortion nursing,what is abortion in nursing,8,4,google,2026-03-12 19:53:30.365061,abortion definition in nursing,abortion definition in nursing ppt,ppt,what is in +abortion,"('definition abortion nursing', 'types of abortion nursing')",definition abortion nursing,types of abortion nursing,9,4,google,2026-03-12 19:53:30.365061,abortion definition in nursing,abortion definition in nursing ppt,ppt,types of +abortion,"('definition abortion nursing', 'types of abortion and its nursing management')",definition abortion nursing,types of abortion and its nursing management,10,4,google,2026-03-12 19:53:30.365061,abortion definition in nursing,abortion definition in nursing ppt,ppt,types of and its management +abortion,"('abortion in nursing lecture', 'abortion in nursing lectures')",abortion in nursing lecture,abortion in nursing lectures,1,4,google,2026-03-12 19:53:31.856522,abortion definition in nursing,abortion definition in nursing ppt,lecture,lectures +abortion,"('abortion in nursing lecture', 'abortion in nursing lecture notes')",abortion in nursing lecture,abortion in nursing lecture notes,2,4,google,2026-03-12 19:53:31.856522,abortion definition in nursing,abortion definition in nursing ppt,lecture,notes +abortion,"('abortion in nursing lecture', 'abortion in nursing lecture video')",abortion in nursing lecture,abortion in nursing lecture video,3,4,google,2026-03-12 19:53:31.856522,abortion definition in nursing,abortion definition in nursing ppt,lecture,video +abortion,"('abortion in nursing lecture', 'abortion in nursing lecture notes pdf')",abortion in nursing lecture,abortion in nursing lecture notes pdf,4,4,google,2026-03-12 19:53:31.856522,abortion definition in nursing,abortion definition in nursing ppt,lecture,notes pdf +abortion,"('abortion in nursing lecture', 'abortion in nursing lecture series')",abortion in nursing lecture,abortion in nursing lecture series,5,4,google,2026-03-12 19:53:31.856522,abortion definition in nursing,abortion definition in nursing ppt,lecture,series +abortion,"('abortion in nursing lecture', 'abortion in nursing lecture english')",abortion in nursing lecture,abortion in nursing lecture english,6,4,google,2026-03-12 19:53:31.856522,abortion definition in nursing,abortion definition in nursing ppt,lecture,english +abortion,"('abortion in nursing lecture', 'abortion in nursing lecture gnm 3rd year')",abortion in nursing lecture,abortion in nursing lecture gnm 3rd year,7,4,google,2026-03-12 19:53:31.856522,abortion definition in nursing,abortion definition in nursing ppt,lecture,gnm 3rd year +abortion,"('abortion in nursing ppt', 'abortion definition in nursing ppt')",abortion in nursing ppt,abortion definition in nursing ppt,1,4,google,2026-03-12 19:53:33.251807,abortion definition in nursing,abortion definition in nursing ppt,ppt,definition +abortion,"('abortion in nursing ppt', 'abortion obg nursing ppt')",abortion in nursing ppt,abortion obg nursing ppt,2,4,google,2026-03-12 19:53:33.251807,abortion definition in nursing,abortion definition in nursing ppt,ppt,obg +abortion,"('abortion in nursing ppt', 'what is abortion in nursing')",abortion in nursing ppt,what is abortion in nursing,3,4,google,2026-03-12 19:53:33.251807,abortion definition in nursing,abortion definition in nursing ppt,ppt,what is +abortion,"('abortion in nursing ppt', 'what is abortion ppt')",abortion in nursing ppt,what is abortion ppt,4,4,google,2026-03-12 19:53:33.251807,abortion definition in nursing,abortion definition in nursing ppt,ppt,what is +abortion,"('abortion in nursing ppt', 'types of abortion ppt')",abortion in nursing ppt,types of abortion ppt,5,4,google,2026-03-12 19:53:33.251807,abortion definition in nursing,abortion definition in nursing ppt,ppt,types of +abortion,"('abortion in nursing ppt', 'types of abortion nursing')",abortion in nursing ppt,types of abortion nursing,6,4,google,2026-03-12 19:53:33.251807,abortion definition in nursing,abortion definition in nursing ppt,ppt,types of +abortion,"('abortion in nursing ppt', 'abortion in nursing lecture')",abortion in nursing ppt,abortion in nursing lecture,7,4,google,2026-03-12 19:53:33.251807,abortion definition in nursing,abortion definition in nursing ppt,ppt,lecture +abortion,"('explain abortion in detail', 'explain about abortion')",explain abortion in detail,explain about abortion,1,4,google,2026-03-12 19:53:34.060794,abortion definition in nursing,abortion definition in nursing pdf,explain detail,about +abortion,"('explain abortion in detail', 'explain types of abortion')",explain abortion in detail,explain types of abortion,2,4,google,2026-03-12 19:53:34.060794,abortion definition in nursing,abortion definition in nursing pdf,explain detail,types of +abortion,"('explain abortion in detail', 'what is abortion and why is it important')",explain abortion in detail,what is abortion and why is it important,3,4,google,2026-03-12 19:53:34.060794,abortion definition in nursing,abortion definition in nursing pdf,explain detail,what is and why is it important +abortion,"('explain abortion in detail', 'explain abortion procedure')",explain abortion in detail,explain abortion procedure,4,4,google,2026-03-12 19:53:34.060794,abortion definition in nursing,abortion definition in nursing pdf,explain detail,procedure +abortion,"('explain abortion in detail', 'describe abortion in detail')",explain abortion in detail,describe abortion in detail,5,4,google,2026-03-12 19:53:34.060794,abortion definition in nursing,abortion definition in nursing pdf,explain detail,describe +abortion,"('explain abortion in detail', 'explain abortion law')",explain abortion in detail,explain abortion law,6,4,google,2026-03-12 19:53:34.060794,abortion definition in nursing,abortion definition in nursing pdf,explain detail,law +abortion,"('explain abortion in detail', 'explanation of abortion')",explain abortion in detail,explanation of abortion,7,4,google,2026-03-12 19:53:34.060794,abortion definition in nursing,abortion definition in nursing pdf,explain detail,explanation of +abortion,"('abortion in nursing', 'abortion in nursing ppt')",abortion in nursing,abortion in nursing ppt,1,4,google,2026-03-12 19:53:34.894834,abortion definition in nursing,abortion definition in nursing in hindi,hindi,ppt +abortion,"('abortion in nursing', 'abortion in nursing school')",abortion in nursing,abortion in nursing school,2,4,google,2026-03-12 19:53:34.894834,abortion definition in nursing,abortion definition in nursing in hindi,hindi,school +abortion,"('abortion in nursing', 'abortion in nursing ethics')",abortion in nursing,abortion in nursing ethics,3,4,google,2026-03-12 19:53:34.894834,abortion definition in nursing,abortion definition in nursing in hindi,hindi,ethics +abortion,"('abortion in nursing', 'abortion definition in nursing')",abortion in nursing,abortion definition in nursing,4,4,google,2026-03-12 19:53:34.894834,abortion definition in nursing,abortion definition in nursing in hindi,hindi,definition +abortion,"('abortion in nursing', 'abortion types in nursing')",abortion in nursing,abortion types in nursing,5,4,google,2026-03-12 19:53:34.894834,abortion definition in nursing,abortion definition in nursing in hindi,hindi,types +abortion,"('abortion in nursing', 'abortion definition in nursing ppt')",abortion in nursing,abortion definition in nursing ppt,6,4,google,2026-03-12 19:53:34.894834,abortion definition in nursing,abortion definition in nursing in hindi,hindi,definition ppt +abortion,"('abortion in nursing', 'abortion in obg nursing')",abortion in nursing,abortion in obg nursing,7,4,google,2026-03-12 19:53:34.894834,abortion definition in nursing,abortion definition in nursing in hindi,hindi,obg +abortion,"('abortion in nursing', 'explain abortion in nursing')",abortion in nursing,explain abortion in nursing,8,4,google,2026-03-12 19:53:34.894834,abortion definition in nursing,abortion definition in nursing in hindi,hindi,explain +abortion,"('abortion in nursing', 'abortion definition in nursing according to who')",abortion in nursing,abortion definition in nursing according to who,9,4,google,2026-03-12 19:53:34.894834,abortion definition in nursing,abortion definition in nursing in hindi,hindi,definition according to who +abortion,"('abortion nursing lecture in hindi', 'abortion nursing lecture in hindi pdf')",abortion nursing lecture in hindi,abortion nursing lecture in hindi pdf,1,4,google,2026-03-12 19:53:35.872628,abortion definition in nursing,abortion definition in nursing in hindi,lecture,pdf +abortion,"('abortion nursing lecture in hindi', 'abortion nursing lecture in hindi youtube')",abortion nursing lecture in hindi,abortion nursing lecture in hindi youtube,2,4,google,2026-03-12 19:53:35.872628,abortion definition in nursing,abortion definition in nursing in hindi,lecture,youtube +abortion,"('abortion nursing lecture in hindi', 'abortion nursing lecture in hindi language')",abortion nursing lecture in hindi,abortion nursing lecture in hindi language,3,4,google,2026-03-12 19:53:35.872628,abortion definition in nursing,abortion definition in nursing in hindi,lecture,language +abortion,"('abortion nursing lecture in hindi', 'abortion nursing lecture in hindi pdf free download')",abortion nursing lecture in hindi,abortion nursing lecture in hindi pdf free download,4,4,google,2026-03-12 19:53:35.872628,abortion definition in nursing,abortion definition in nursing in hindi,lecture,pdf free download +abortion,"('abortion nursing lecture in hindi', 'abortion nursing lecture in hindi youtube video')",abortion nursing lecture in hindi,abortion nursing lecture in hindi youtube video,5,4,google,2026-03-12 19:53:35.872628,abortion definition in nursing,abortion definition in nursing in hindi,lecture,youtube video +abortion,"('abortion definition nursing', 'abortion definition in nursing ppt')",abortion definition nursing,abortion definition in nursing ppt,1,4,google,2026-03-12 19:53:36.794460,abortion definition in nursing,abortion definition in nursing in hindi,hindi,in ppt +abortion,"('abortion definition nursing', 'abortion definition in nursing according to who')",abortion definition nursing,abortion definition in nursing according to who,2,4,google,2026-03-12 19:53:36.794460,abortion definition in nursing,abortion definition in nursing in hindi,hindi,in according to who +abortion,"('abortion definition nursing', 'abortion definition in nursing pdf')",abortion definition nursing,abortion definition in nursing pdf,3,4,google,2026-03-12 19:53:36.794460,abortion definition in nursing,abortion definition in nursing in hindi,hindi,in pdf +abortion,"('abortion definition nursing', 'abortion definition in nursing in hindi')",abortion definition nursing,abortion definition in nursing in hindi,4,4,google,2026-03-12 19:53:36.794460,abortion definition in nursing,abortion definition in nursing in hindi,hindi,in in hindi +abortion,"('abortion definition nursing', 'abortion definition in community health nursing')",abortion definition nursing,abortion definition in community health nursing,5,4,google,2026-03-12 19:53:36.794460,abortion definition in nursing,abortion definition in nursing in hindi,hindi,in community health +abortion,"('abortion definition nursing', 'what is abortion in nursing')",abortion definition nursing,what is abortion in nursing,6,4,google,2026-03-12 19:53:36.794460,abortion definition in nursing,abortion definition in nursing in hindi,hindi,what is in +abortion,"('abortion definition nursing', 'types of abortion nursing')",abortion definition nursing,types of abortion nursing,7,4,google,2026-03-12 19:53:36.794460,abortion definition in nursing,abortion definition in nursing in hindi,hindi,types of +abortion,"('abortion definition nursing', 'types of abortion and its nursing management')",abortion definition nursing,types of abortion and its nursing management,8,4,google,2026-03-12 19:53:36.794460,abortion definition in nursing,abortion definition in nursing in hindi,hindi,types of and its management +abortion,"('abortion definition nursing', 'abortion definition types')",abortion definition nursing,abortion definition types,9,4,google,2026-03-12 19:53:36.794460,abortion definition in nursing,abortion definition in nursing in hindi,hindi,types +abortion,"('abortion nursing lecture in english', 'abortion nursing lecture in english pdf')",abortion nursing lecture in english,abortion nursing lecture in english pdf,1,4,google,2026-03-12 19:53:38.277148,abortion definition in nursing,abortion definition in nursing in hindi,lecture english,pdf +abortion,"('abortion nursing lecture in english', 'abortion nursing lecture in english and spanish')",abortion nursing lecture in english,abortion nursing lecture in english and spanish,2,4,google,2026-03-12 19:53:38.277148,abortion definition in nursing,abortion definition in nursing in hindi,lecture english,and spanish +abortion,"('abortion nursing lecture in english', 'abortion nursing lecture in english youtube')",abortion nursing lecture in english,abortion nursing lecture in english youtube,3,4,google,2026-03-12 19:53:38.277148,abortion definition in nursing,abortion definition in nursing in hindi,lecture english,youtube +abortion,"('abortion nursing lecture in english', 'abortion nursing lecture in english translation')",abortion nursing lecture in english,abortion nursing lecture in english translation,4,4,google,2026-03-12 19:53:38.277148,abortion definition in nursing,abortion definition in nursing in hindi,lecture english,translation +abortion,"('abortion nursing lecture in english', 'abortion nursing lecture in english language')",abortion nursing lecture in english,abortion nursing lecture in english language,5,4,google,2026-03-12 19:53:38.277148,abortion definition in nursing,abortion definition in nursing in hindi,lecture english,language +abortion,"('define the community health nursing', 'what is the community health nursing')",define the community health nursing,what is the community health nursing,1,4,google,2026-03-12 19:53:39.201651,abortion definition in nursing,abortion definition in community health nursing,define the,what is +abortion,"('define the community health nursing', 'explain the community health nursing process')",define the community health nursing,explain the community health nursing process,2,4,google,2026-03-12 19:53:39.201651,abortion definition in nursing,abortion definition in community health nursing,define the,explain process +abortion,"('define the community health nursing', 'explain the community health nursing')",define the community health nursing,explain the community health nursing,3,4,google,2026-03-12 19:53:39.201651,abortion definition in nursing,abortion definition in community health nursing,define the,explain +abortion,"('define the community health nursing', 'what is the community health nursing process')",define the community health nursing,what is the community health nursing process,4,4,google,2026-03-12 19:53:39.201651,abortion definition in nursing,abortion definition in community health nursing,define the,what is process +abortion,"('define the community health nursing', 'define community health nursing ppt')",define the community health nursing,define community health nursing ppt,5,4,google,2026-03-12 19:53:39.201651,abortion definition in nursing,abortion definition in community health nursing,define the,ppt +abortion,"('define the community health nursing', 'define community health nursing according to who')",define the community health nursing,define community health nursing according to who,6,4,google,2026-03-12 19:53:39.201651,abortion definition in nursing,abortion definition in community health nursing,define the,according to who +abortion,"('define the community health nursing', 'define community health nursing process')",define the community health nursing,define community health nursing process,7,4,google,2026-03-12 19:53:39.201651,abortion definition in nursing,abortion definition in community health nursing,define the,process +abortion,"('define the community health nursing', 'define community health nursing in hindi')",define the community health nursing,define community health nursing in hindi,8,4,google,2026-03-12 19:53:39.201651,abortion definition in nursing,abortion definition in community health nursing,define the,in hindi +abortion,"('define the community health nursing', 'define community health nursing slideshare')",define the community health nursing,define community health nursing slideshare,9,4,google,2026-03-12 19:53:39.201651,abortion definition in nursing,abortion definition in community health nursing,define the,slideshare +abortion,"('explain the concept of community health nursing', 'what is the concept of community health nursing')",explain the concept of community health nursing,what is the concept of community health nursing,1,4,google,2026-03-12 19:53:40.069274,abortion definition in nursing,abortion definition in community health nursing,explain the concept of,what is +abortion,"('explain the concept of community health nursing', 'what is the meaning of community health nursing')",explain the concept of community health nursing,what is the meaning of community health nursing,2,4,google,2026-03-12 19:53:40.069274,abortion definition in nursing,abortion definition in community health nursing,explain the concept of,what is meaning +abortion,"('explain the concept of community health nursing', 'what is the definition of community health nursing')",explain the concept of community health nursing,what is the definition of community health nursing,3,4,google,2026-03-12 19:53:40.069274,abortion definition in nursing,abortion definition in community health nursing,explain the concept of,what is definition +abortion,"('explain the concept of community health nursing', 'what is the definition of community health nursing according to who')",explain the concept of community health nursing,what is the definition of community health nursing according to who,4,4,google,2026-03-12 19:53:40.069274,abortion definition in nursing,abortion definition in community health nursing,explain the concept of,what is definition according to who +abortion,"('explain the concept of community health nursing', 'explain the concept and scope of community health nursing')",explain the concept of community health nursing,explain the concept and scope of community health nursing,5,4,google,2026-03-12 19:53:40.069274,abortion definition in nursing,abortion definition in community health nursing,explain the concept of,and scope +abortion,"('explain the concept of community health nursing', 'what are the 5 concepts of community health nursing')",explain the concept of community health nursing,what are the 5 concepts of community health nursing,6,4,google,2026-03-12 19:53:40.069274,abortion definition in nursing,abortion definition in community health nursing,explain the concept of,what are 5 concepts +abortion,"('explain the concept of community health nursing', 'explain the concept of health care in community health nursing')",explain the concept of community health nursing,explain the concept of health care in community health nursing,7,4,google,2026-03-12 19:53:40.069274,abortion definition in nursing,abortion definition in community health nursing,explain the concept of,care in +abortion,"('explain the concept of community health nursing', 'describe the concept and importance of community health nursing')",explain the concept of community health nursing,describe the concept and importance of community health nursing,8,4,google,2026-03-12 19:53:40.069274,abortion definition in nursing,abortion definition in community health nursing,explain the concept of,describe and importance +abortion,"('explain the concept of community health nursing', 'what is the best definition of community health nursing')",explain the concept of community health nursing,what is the best definition of community health nursing,9,4,google,2026-03-12 19:53:40.069274,abortion definition in nursing,abortion definition in community health nursing,explain the concept of,what is best definition +abortion,"('what do you mean by community health nursing', 'what is the meaning of community health nursing')",what do you mean by community health nursing,what is the meaning of community health nursing,1,4,google,2026-03-12 19:53:41.257112,abortion definition in nursing,abortion definition in community health nursing,what do you mean by,is the meaning of +abortion,"('what do you mean by community health nursing', 'what is community health nursing')",what do you mean by community health nursing,what is community health nursing,2,4,google,2026-03-12 19:53:41.257112,abortion definition in nursing,abortion definition in community health nursing,what do you mean by,is +abortion,"('what do you mean by community health nursing', 'define the community health nursing')",what do you mean by community health nursing,define the community health nursing,3,4,google,2026-03-12 19:53:41.257112,abortion definition in nursing,abortion definition in community health nursing,what do you mean by,define the +abortion,"('what do you mean by community health nursing', 'what is the community health nursing definition of health')",what do you mean by community health nursing,what is the community health nursing definition of health,4,4,google,2026-03-12 19:53:41.257112,abortion definition in nursing,abortion definition in community health nursing,what do you mean by,is the definition of +abortion,"('what do you mean by community health nursing', 'what do community health nurses do')",what do you mean by community health nursing,what do community health nurses do,5,4,google,2026-03-12 19:53:41.257112,abortion definition in nursing,abortion definition in community health nursing,what do you mean by,nurses +abortion,"('what do you mean by community health nursing', 'what is community/public health nursing')",what do you mean by community health nursing,what is community/public health nursing,6,4,google,2026-03-12 19:53:41.257112,abortion definition in nursing,abortion definition in community health nursing,what do you mean by,is community/public +abortion,"('what do you mean by community health nursing', 'what is community health nursing class')",what do you mean by community health nursing,what is community health nursing class,7,4,google,2026-03-12 19:53:41.257112,abortion definition in nursing,abortion definition in community health nursing,what do you mean by,is class +abortion,"('examples of community health nursing', 'examples of community health nursing diagnosis')",examples of community health nursing,examples of community health nursing diagnosis,1,4,google,2026-03-12 19:53:43.361683,abortion definition in nursing,abortion definition in community health nursing,examples of,diagnosis +abortion,"('examples of community health nursing', 'examples of community health nursing jobs')",examples of community health nursing,examples of community health nursing jobs,2,4,google,2026-03-12 19:53:43.361683,abortion definition in nursing,abortion definition in community health nursing,examples of,jobs +abortion,"('examples of community health nursing', 'examples of community health nursing interventions')",examples of community health nursing,examples of community health nursing interventions,3,4,google,2026-03-12 19:53:43.361683,abortion definition in nursing,abortion definition in community health nursing,examples of,interventions +abortion,"('examples of community health nursing', 'example of community health nursing process')",examples of community health nursing,example of community health nursing process,4,4,google,2026-03-12 19:53:43.361683,abortion definition in nursing,abortion definition in community health nursing,examples of,example process +abortion,"('examples of community health nursing', 'example of community health nursing diagnosis statement')",examples of community health nursing,example of community health nursing diagnosis statement,5,4,google,2026-03-12 19:53:43.361683,abortion definition in nursing,abortion definition in community health nursing,examples of,example diagnosis statement +abortion,"('examples of community health nursing', 'examples of community based nursing')",examples of community health nursing,examples of community based nursing,6,4,google,2026-03-12 19:53:43.361683,abortion definition in nursing,abortion definition in community health nursing,examples of,based +abortion,"('examples of community health nursing', 'example of community nursing care plan')",examples of community health nursing,example of community nursing care plan,7,4,google,2026-03-12 19:53:43.361683,abortion definition in nursing,abortion definition in community health nursing,examples of,example care plan +abortion,"('examples of community health nursing', 'sample paper of community health nursing')",examples of community health nursing,sample paper of community health nursing,8,4,google,2026-03-12 19:53:43.361683,abortion definition in nursing,abortion definition in community health nursing,examples of,sample paper +abortion,"('examples of community health nursing', 'examples of appropriate technology in community health nursing')",examples of community health nursing,examples of appropriate technology in community health nursing,9,4,google,2026-03-12 19:53:43.361683,abortion definition in nursing,abortion definition in community health nursing,examples of,appropriate technology in +abortion,"('what does abortion is health care mean', 'why abortion is healthcare')",what does abortion is health care mean,why abortion is healthcare,1,4,google,2026-03-12 19:53:44.490937,abortion definition in nursing,abortion definition in community health nursing,what does is care mean,why healthcare +abortion,"('what does abortion is health care mean', 'abortion care is healthcare')",what does abortion is health care mean,abortion care is healthcare,2,4,google,2026-03-12 19:53:44.490937,abortion definition in nursing,abortion definition in community health nursing,what does is care mean,healthcare +abortion,"('types of abortion nursing', 'types of abortion nursing pdf')",types of abortion nursing,types of abortion nursing pdf,1,4,google,2026-03-12 19:53:45.389437,abortion definition in nursing,types of abortion definition in nursing,types of,pdf +abortion,"('types of abortion nursing', 'types of abortion nursing ppt')",types of abortion nursing,types of abortion nursing ppt,2,4,google,2026-03-12 19:53:45.389437,abortion definition in nursing,types of abortion definition in nursing,types of,ppt +abortion,"('types of abortion nursing', 'types of abortion nursing pdf free download')",types of abortion nursing,types of abortion nursing pdf free download,3,4,google,2026-03-12 19:53:45.389437,abortion definition in nursing,types of abortion definition in nursing,types of,pdf free download +abortion,"('types of abortion nursing', 'types of abortion nursing in hindi')",types of abortion nursing,types of abortion nursing in hindi,4,4,google,2026-03-12 19:53:45.389437,abortion definition in nursing,types of abortion definition in nursing,types of,in hindi +abortion,"('types of abortion nursing', 'types of spontaneous abortion nursing')",types of abortion nursing,types of spontaneous abortion nursing,5,4,google,2026-03-12 19:53:45.389437,abortion definition in nursing,types of abortion definition in nursing,types of,spontaneous +abortion,"('types of abortion nursing', 'types of abortion slideshare nursing')",types of abortion nursing,types of abortion slideshare nursing,6,4,google,2026-03-12 19:53:45.389437,abortion definition in nursing,types of abortion definition in nursing,types of,slideshare +abortion,"('types of abortion nursing', 'types of abortion ppt for nursing students')",types of abortion nursing,types of abortion ppt for nursing students,7,4,google,2026-03-12 19:53:45.389437,abortion definition in nursing,types of abortion definition in nursing,types of,ppt for students +abortion,"('types of abortion nursing', 'types of abortion and its nursing management')",types of abortion nursing,types of abortion and its nursing management,8,4,google,2026-03-12 19:53:45.389437,abortion definition in nursing,types of abortion definition in nursing,types of,and its management +abortion,"('types of abortion nursing', 'types of abortion definition in nursing')",types of abortion nursing,types of abortion definition in nursing,9,4,google,2026-03-12 19:53:45.389437,abortion definition in nursing,types of abortion definition in nursing,types of,definition in +abortion,"('explain types of abortion', 'define types of abortion')",explain types of abortion,define types of abortion,1,4,google,2026-03-12 19:53:46.542665,abortion definition in nursing,types of abortion definition in nursing,explain,define +abortion,"('explain types of abortion', 'explain types of spontaneous abortion')",explain types of abortion,explain types of spontaneous abortion,2,4,google,2026-03-12 19:53:46.542665,abortion definition in nursing,types of abortion definition in nursing,explain,spontaneous +abortion,"('explain types of abortion', 'explain two types of abortion')",explain types of abortion,explain two types of abortion,3,4,google,2026-03-12 19:53:46.542665,abortion definition in nursing,types of abortion definition in nursing,explain,two +abortion,"('explain types of abortion', 'list and explain types of abortion')",explain types of abortion,list and explain types of abortion,4,4,google,2026-03-12 19:53:46.542665,abortion definition in nursing,types of abortion definition in nursing,explain,list and +abortion,"('explain types of abortion', 'explain the process of abortion')",explain types of abortion,explain the process of abortion,5,4,google,2026-03-12 19:53:46.542665,abortion definition in nursing,types of abortion definition in nursing,explain,the process +abortion,"('explain types of abortion', 'define 10 types of abortion')",explain types of abortion,define 10 types of abortion,6,4,google,2026-03-12 19:53:46.542665,abortion definition in nursing,types of abortion definition in nursing,explain,define 10 +abortion,"('explain types of abortion', 'what are the different types of abortion')",explain types of abortion,what are the different types of abortion,7,4,google,2026-03-12 19:53:46.542665,abortion definition in nursing,types of abortion definition in nursing,explain,what are the different +abortion,"('explain types of abortion', 'types of abortion definition')",explain types of abortion,types of abortion definition,8,4,google,2026-03-12 19:53:46.542665,abortion definition in nursing,types of abortion definition in nursing,explain,definition +abortion,"('explain types of abortion', 'types of abortion')",explain types of abortion,types of abortion,9,4,google,2026-03-12 19:53:46.542665,abortion definition in nursing,types of abortion definition in nursing,explain,explain +abortion,"('types of abortion and its nursing management', 'types of abortion and its management')",types of abortion and its nursing management,types of abortion and its management,1,4,google,2026-03-12 19:53:47.401985,abortion definition in nursing,types of abortion definition in nursing,and its management,and its management +abortion,"('types of abortion and its nursing management', 'types of abortion and management pdf')",types of abortion and its nursing management,types of abortion and management pdf,2,4,google,2026-03-12 19:53:47.401985,abortion definition in nursing,types of abortion definition in nursing,and its management,pdf +abortion,"('types of abortion and its nursing management', 'types of abortions nursing')",types of abortion and its nursing management,types of abortions nursing,3,4,google,2026-03-12 19:53:47.401985,abortion definition in nursing,types of abortion definition in nursing,and its management,abortions +abortion,"('types of abortion and its nursing management', 'types of abortion acog')",types of abortion and its nursing management,types of abortion acog,4,4,google,2026-03-12 19:53:47.401985,abortion definition in nursing,types of abortion definition in nursing,and its management,acog +abortion,"('types of abortion methods', 'types of abortion procedure ppt')",types of abortion methods,types of abortion procedure ppt,1,4,google,2026-03-12 19:53:48.322062,abortion definition in nursing,types of abortion definition in nursing,methods,procedure ppt +abortion,"('types of abortion methods', 'types of abortion procedure slideshare')",types of abortion methods,types of abortion procedure slideshare,2,4,google,2026-03-12 19:53:48.322062,abortion definition in nursing,types of abortion definition in nursing,methods,procedure slideshare +abortion,"('types of abortion methods', 'types of abortion')",types of abortion methods,types of abortion,3,4,google,2026-03-12 19:53:48.322062,abortion definition in nursing,types of abortion definition in nursing,methods,methods +abortion,"('types of abortion methods', 'what are the different types of abortion')",types of abortion methods,what are the different types of abortion,4,4,google,2026-03-12 19:53:48.322062,abortion definition in nursing,types of abortion definition in nursing,methods,what are the different +abortion,"('types of abortion methods', 'types of abortion medical term')",types of abortion methods,types of abortion medical term,5,4,google,2026-03-12 19:53:48.322062,abortion definition in nursing,types of abortion definition in nursing,methods,medical term +abortion,"('types of abortion methods', 'methods of abortion include')",types of abortion methods,methods of abortion include,6,4,google,2026-03-12 19:53:48.322062,abortion definition in nursing,types of abortion definition in nursing,methods,include +abortion,"('types of abortions pdf', 'types of abortion pdf notes')",types of abortions pdf,types of abortion pdf notes,1,4,google,2026-03-12 19:53:49.353167,abortion definition in nursing,types of abortion definition in nursing,abortions pdf,abortion notes +abortion,"('types of abortions pdf', 'types of abortion pdf download')",types of abortions pdf,types of abortion pdf download,2,4,google,2026-03-12 19:53:49.353167,abortion definition in nursing,types of abortion definition in nursing,abortions pdf,abortion download +abortion,"('types of abortions pdf', 'types of abortion pdf slideshare')",types of abortions pdf,types of abortion pdf slideshare,3,4,google,2026-03-12 19:53:49.353167,abortion definition in nursing,types of abortion definition in nursing,abortions pdf,abortion slideshare +abortion,"('types of abortions pdf', 'types of abortion pdf free download')",types of abortions pdf,types of abortion pdf free download,4,4,google,2026-03-12 19:53:49.353167,abortion definition in nursing,types of abortion definition in nursing,abortions pdf,abortion free download +abortion,"('types of abortions pdf', 'types of miscarriage pdf')",types of abortions pdf,types of miscarriage pdf,5,4,google,2026-03-12 19:53:49.353167,abortion definition in nursing,types of abortion definition in nursing,abortions pdf,miscarriage +abortion,"('types of abortions pdf', '7 types of abortion pdf')",types of abortions pdf,7 types of abortion pdf,6,4,google,2026-03-12 19:53:49.353167,abortion definition in nursing,types of abortion definition in nursing,abortions pdf,7 abortion +abortion,"('types of abortions pdf', 'types of abortion nursing pdf')",types of abortions pdf,types of abortion nursing pdf,7,4,google,2026-03-12 19:53:49.353167,abortion definition in nursing,types of abortion definition in nursing,abortions pdf,abortion nursing +abortion,"('types of abortions pdf', '7 types of abortion pdf notes')",types of abortions pdf,7 types of abortion pdf notes,8,4,google,2026-03-12 19:53:49.353167,abortion definition in nursing,types of abortion definition in nursing,abortions pdf,7 abortion notes +abortion,"('types of abortions pdf', '7 types of abortion pdf free download')",types of abortions pdf,7 types of abortion pdf free download,9,4,google,2026-03-12 19:53:49.353167,abortion definition in nursing,types of abortion definition in nursing,abortions pdf,7 abortion free download +abortion,"('nursing definition of abortion', 'definition of abortion in nursing')",nursing definition of abortion,definition of abortion in nursing,1,4,google,2026-03-12 19:53:50.558353,abortion definition in nursing,types of abortion definition in nursing,types of,in +abortion,"('nursing definition of abortion', 'definition of abortion ppt nursing')",nursing definition of abortion,definition of abortion ppt nursing,2,4,google,2026-03-12 19:53:50.558353,abortion definition in nursing,types of abortion definition in nursing,types of,ppt +abortion,"('nursing definition of abortion', 'definition of abortion in nursing wikipedia')",nursing definition of abortion,definition of abortion in nursing wikipedia,3,4,google,2026-03-12 19:53:50.558353,abortion definition in nursing,types of abortion definition in nursing,types of,in wikipedia +abortion,"('nursing definition of abortion', 'definition of abortion in nursing slideshare')",nursing definition of abortion,definition of abortion in nursing slideshare,4,4,google,2026-03-12 19:53:50.558353,abortion definition in nursing,types of abortion definition in nursing,types of,in slideshare +abortion,"('nursing definition of abortion', 'what is abortion in nursing')",nursing definition of abortion,what is abortion in nursing,5,4,google,2026-03-12 19:53:50.558353,abortion definition in nursing,types of abortion definition in nursing,types of,what is in +abortion,"('nursing definition of abortion', 'types of abortion nursing')",nursing definition of abortion,types of abortion nursing,6,4,google,2026-03-12 19:53:50.558353,abortion definition in nursing,types of abortion definition in nursing,types of,types +abortion,"('nursing definition of abortion', 'types of abortion and its nursing management')",nursing definition of abortion,types of abortion and its nursing management,7,4,google,2026-03-12 19:53:50.558353,abortion definition in nursing,types of abortion definition in nursing,types of,types and its management +abortion,"('nursing definition of abortion', 'nursing definition of autonomy')",nursing definition of abortion,nursing definition of autonomy,8,4,google,2026-03-12 19:53:50.558353,abortion definition in nursing,types of abortion definition in nursing,types of,autonomy +abortion,"('definition of nursing intervention', 'definition of nursing interventions')",definition of nursing intervention,definition of nursing interventions,1,4,google,2026-03-12 19:53:51.412692,abortion definition in nursing,definition of abortion in nursing wikipedia,intervention,interventions +abortion,"('definition of nursing intervention', 'definition of nursing interventions for pain control')",definition of nursing intervention,definition of nursing interventions for pain control,2,4,google,2026-03-12 19:53:51.412692,abortion definition in nursing,definition of abortion in nursing wikipedia,intervention,interventions for pain control +abortion,"('definition of nursing intervention', 'meaning of nursing interventions')",definition of nursing intervention,meaning of nursing interventions,3,4,google,2026-03-12 19:53:51.412692,abortion definition in nursing,definition of abortion in nursing wikipedia,intervention,meaning interventions +abortion,"('definition of nursing intervention', 'meaning of nursing intervention in hindi')",definition of nursing intervention,meaning of nursing intervention in hindi,4,4,google,2026-03-12 19:53:51.412692,abortion definition in nursing,definition of abortion in nursing wikipedia,intervention,meaning in hindi +abortion,"('definition of nursing intervention', 'definition of nursing care plan')",definition of nursing intervention,definition of nursing care plan,5,4,google,2026-03-12 19:53:51.412692,abortion definition in nursing,definition of abortion in nursing wikipedia,intervention,care plan +abortion,"('definition of nursing intervention', 'definition of nursing care')",definition of nursing intervention,definition of nursing care,6,4,google,2026-03-12 19:53:51.412692,abortion definition in nursing,definition of abortion in nursing wikipedia,intervention,care +abortion,"('definition of nursing intervention', 'definition of nursing diagnosis according to nanda')",definition of nursing intervention,definition of nursing diagnosis according to nanda,7,4,google,2026-03-12 19:53:51.412692,abortion definition in nursing,definition of abortion in nursing wikipedia,intervention,diagnosis according to nanda +abortion,"('definition of nursing intervention', 'definition of nursing care delivery system')",definition of nursing intervention,definition of nursing care delivery system,8,4,google,2026-03-12 19:53:51.412692,abortion definition in nursing,definition of abortion in nursing wikipedia,intervention,care delivery system +abortion,"('definition of nursing intervention', 'definition of nursing care process')",definition of nursing intervention,definition of nursing care process,9,4,google,2026-03-12 19:53:51.412692,abortion definition in nursing,definition of abortion in nursing wikipedia,intervention,care process +abortion,"('definition of nursing intervention', 'definition of nursing care plan according to nanda')",definition of nursing intervention,definition of nursing care plan according to nanda,10,4,google,2026-03-12 19:53:51.412692,abortion definition in nursing,definition of abortion in nursing wikipedia,intervention,care plan according to nanda +abortion,"('definition of abortion ppt nursing', 'definition of abortion in nursing slideshare')",definition of abortion ppt nursing,definition of abortion in nursing slideshare,1,4,google,2026-03-12 19:53:52.323090,abortion definition in nursing,definition of abortion in nursing slideshare,ppt,in slideshare +abortion,"('definition of abortion ppt nursing', 'what is abortion ppt')",definition of abortion ppt nursing,what is abortion ppt,2,4,google,2026-03-12 19:53:52.323090,abortion definition in nursing,definition of abortion in nursing slideshare,ppt,what is +abortion,"('definition of abortion ppt nursing', 'types of abortion ppt')",definition of abortion ppt nursing,types of abortion ppt,3,4,google,2026-03-12 19:53:52.323090,abortion definition in nursing,definition of abortion in nursing slideshare,ppt,types +abortion,"('definition of abortion ppt nursing', 'what is abortion in nursing')",definition of abortion ppt nursing,what is abortion in nursing,4,4,google,2026-03-12 19:53:52.323090,abortion definition in nursing,definition of abortion in nursing slideshare,ppt,what is in +abortion,"('definition of abortion ppt nursing', 'types of abortion and its nursing management')",definition of abortion ppt nursing,types of abortion and its nursing management,5,4,google,2026-03-12 19:53:52.323090,abortion definition in nursing,definition of abortion in nursing slideshare,ppt,types and its management +abortion,"('definition of abortion ppt nursing', 'abortion ppt for nursing students')",definition of abortion ppt nursing,abortion ppt for nursing students,6,4,google,2026-03-12 19:53:52.323090,abortion definition in nursing,definition of abortion in nursing slideshare,ppt,for students +abortion,"('definition of abortion ppt nursing', 'different types of abortion ppt')",definition of abortion ppt nursing,different types of abortion ppt,7,4,google,2026-03-12 19:53:52.323090,abortion definition in nursing,definition of abortion in nursing slideshare,ppt,different types +abortion,"('definition of abortion ppt nursing', 'definition of abortion medical')",definition of abortion ppt nursing,definition of abortion medical,8,4,google,2026-03-12 19:53:52.323090,abortion definition in nursing,definition of abortion in nursing slideshare,ppt,medical +abortion,"('what is abortion definition in nursing', 'what is abortion in nursing')",what is abortion definition in nursing,what is abortion in nursing,1,4,google,2026-03-12 19:53:53.676873,abortion definition in nursing,what is abortion in nursing,definition,definition +abortion,"('what is abortion definition in nursing', 'what is abortion according to who')",what is abortion definition in nursing,what is abortion according to who,2,4,google,2026-03-12 19:53:53.676873,abortion definition in nursing,what is abortion in nursing,definition,according to who +abortion,"('what is abortion definition in nursing', 'types of abortion nursing')",what is abortion definition in nursing,types of abortion nursing,3,4,google,2026-03-12 19:53:53.676873,abortion definition in nursing,what is abortion in nursing,definition,types of +abortion,"('what is abortion definition in nursing', 'what is abortion defined as')",what is abortion definition in nursing,what is abortion defined as,4,4,google,2026-03-12 19:53:53.676873,abortion definition in nursing,what is abortion in nursing,definition,defined as +abortion,"('what is abortion definition in nursing', 'what is abortion in detail')",what is abortion definition in nursing,what is abortion in detail,5,4,google,2026-03-12 19:53:53.676873,abortion definition in nursing,what is abortion in nursing,definition,detail +abortion,"('what is an incomplete abortion in nursing diagnosis', 'nursing diagnosis for complete abortion')",what is an incomplete abortion in nursing diagnosis,nursing diagnosis for complete abortion,1,4,google,2026-03-12 19:53:54.991447,abortion definition in nursing,what is abortion in nursing,an incomplete diagnosis,for complete +abortion,"('what is an incomplete abortion in nursing diagnosis', 'differential diagnosis for incomplete abortion')",what is an incomplete abortion in nursing diagnosis,differential diagnosis for incomplete abortion,2,4,google,2026-03-12 19:53:54.991447,abortion definition in nursing,what is abortion in nursing,an incomplete diagnosis,differential for +abortion,"('what is an incomplete abortion in nursing diagnosis', 'nursing diagnosis for incomplete miscarriage')",what is an incomplete abortion in nursing diagnosis,nursing diagnosis for incomplete miscarriage,3,4,google,2026-03-12 19:53:54.991447,abortion definition in nursing,what is abortion in nursing,an incomplete diagnosis,for miscarriage +abortion,"('what is an incomplete abortion in nursing diagnosis', 'what is a incomplete abortion')",what is an incomplete abortion in nursing diagnosis,what is a incomplete abortion,4,4,google,2026-03-12 19:53:54.991447,abortion definition in nursing,what is abortion in nursing,an incomplete diagnosis,a +abortion,"('what is an incomplete abortion in nursing diagnosis', 'what is an incomplete abortion and what causes it')",what is an incomplete abortion in nursing diagnosis,what is an incomplete abortion and what causes it,5,4,google,2026-03-12 19:53:54.991447,abortion definition in nursing,what is abortion in nursing,an incomplete diagnosis,and causes it +abortion,"('what is an incomplete abortion in nursing diagnosis', 'incomplete abortion nursing intervention')",what is an incomplete abortion in nursing diagnosis,incomplete abortion nursing intervention,6,4,google,2026-03-12 19:53:54.991447,abortion definition in nursing,what is abortion in nursing,an incomplete diagnosis,intervention +abortion,"('what is an incomplete abortion in nursing diagnosis', 'what does an incomplete abortion look like')",what is an incomplete abortion in nursing diagnosis,what does an incomplete abortion look like,7,4,google,2026-03-12 19:53:54.991447,abortion definition in nursing,what is abortion in nursing,an incomplete diagnosis,does look like +abortion,"('what is an incomplete abortion in nursing diagnosis', 'incomplete abortion nurseslabs')",what is an incomplete abortion in nursing diagnosis,incomplete abortion nurseslabs,8,4,google,2026-03-12 19:53:54.991447,abortion definition in nursing,what is abortion in nursing,an incomplete diagnosis,nurseslabs +abortion,"('nursing care in abortions', 'nursing care in abortion')",nursing care in abortions,nursing care in abortion,1,4,google,2026-03-12 19:53:56.057856,abortion definition in nursing,what is abortion in nursing,care abortions,abortion +abortion,"('nursing care in abortions', 'nursing care plan in abortion')",nursing care in abortions,nursing care plan in abortion,2,4,google,2026-03-12 19:53:56.057856,abortion definition in nursing,what is abortion in nursing,care abortions,plan abortion +abortion,"('nursing care in abortions', 'nursing management of complete abortion')",nursing care in abortions,nursing management of complete abortion,3,4,google,2026-03-12 19:53:56.057856,abortion definition in nursing,what is abortion in nursing,care abortions,management of complete abortion +abortion,"('nursing care in abortions', 'what is abortion in nursing')",nursing care in abortions,what is abortion in nursing,4,4,google,2026-03-12 19:53:56.057856,abortion definition in nursing,what is abortion in nursing,care abortions,what is abortion +abortion,"('nursing care in abortions', 'types of post abortion care')",nursing care in abortions,types of post abortion care,5,4,google,2026-03-12 19:53:56.057856,abortion definition in nursing,what is abortion in nursing,care abortions,types of post abortion +abortion,"('nursing care in abortions', 'nice abortion care guidelines')",nursing care in abortions,nice abortion care guidelines,6,4,google,2026-03-12 19:53:56.057856,abortion definition in nursing,what is abortion in nursing,care abortions,nice abortion guidelines +abortion,"('nursing care in abortions', 'nurses role in abortion')",nursing care in abortions,nurses role in abortion,7,4,google,2026-03-12 19:53:56.057856,abortion definition in nursing,what is abortion in nursing,care abortions,nurses role abortion +abortion,"('what is abandonment in nursing', 'what is patient abandonment in nursing')",what is abandonment in nursing,what is patient abandonment in nursing,1,4,google,2026-03-12 19:53:57.260113,abortion definition in nursing,what is abortion in nursing,abandonment,patient +abortion,"('what is abandonment in nursing', 'what is considered abandonment in nursing')",what is abandonment in nursing,what is considered abandonment in nursing,2,4,google,2026-03-12 19:53:57.260113,abortion definition in nursing,what is abortion in nursing,abandonment,considered +abortion,"('what is abandonment in nursing', 'what is job abandonment in nursing')",what is abandonment in nursing,what is job abandonment in nursing,3,4,google,2026-03-12 19:53:57.260113,abortion definition in nursing,what is abortion in nursing,abandonment,job +abortion,"('what is abandonment in nursing', 'what is abandonment in a nursing home')",what is abandonment in nursing,what is abandonment in a nursing home,4,4,google,2026-03-12 19:53:57.260113,abortion definition in nursing,what is abortion in nursing,abandonment,a home +abortion,"('what is abandonment in nursing', 'what is considered patient abandonment in nursing')",what is abandonment in nursing,what is considered patient abandonment in nursing,5,4,google,2026-03-12 19:53:57.260113,abortion definition in nursing,what is abortion in nursing,abandonment,considered patient +abortion,"('what is abandonment in nursing', 'what is considered abandonment in a nursing home')",what is abandonment in nursing,what is considered abandonment in a nursing home,6,4,google,2026-03-12 19:53:57.260113,abortion definition in nursing,what is abortion in nursing,abandonment,considered a home +abortion,"('what is abandonment in nursing', 'what is the definition of abandonment in nursing')",what is abandonment in nursing,what is the definition of abandonment in nursing,7,4,google,2026-03-12 19:53:57.260113,abortion definition in nursing,what is abortion in nursing,abandonment,the definition of +abortion,"('what is abandonment in nursing', 'what constitutes patient abandonment in nursing')",what is abandonment in nursing,what constitutes patient abandonment in nursing,8,4,google,2026-03-12 19:53:57.260113,abortion definition in nursing,what is abortion in nursing,abandonment,constitutes patient +abortion,"('what is a nursing interventions', 'what is a nursing intervention for hypertension')",what is a nursing interventions,what is a nursing intervention for hypertension,1,4,google,2026-03-12 19:53:58.618065,abortion definition in nursing,what is abortion in nursing,a interventions,intervention for hypertension +abortion,"('what is a nursing interventions', 'what is a nursing intervention for constipation')",what is a nursing interventions,what is a nursing intervention for constipation,2,4,google,2026-03-12 19:53:58.618065,abortion definition in nursing,what is abortion in nursing,a interventions,intervention for constipation +abortion,"('what is a nursing interventions', 'what is a nursing intervention for pain')",what is a nursing interventions,what is a nursing intervention for pain,3,4,google,2026-03-12 19:53:58.618065,abortion definition in nursing,what is abortion in nursing,a interventions,intervention for pain +abortion,"('what is a nursing interventions', 'what is a nursing intervention for pneumonia')",what is a nursing interventions,what is a nursing intervention for pneumonia,4,4,google,2026-03-12 19:53:58.618065,abortion definition in nursing,what is abortion in nursing,a interventions,intervention for pneumonia +abortion,"('what is a nursing interventions', 'what is a nursing intervention for anxiety')",what is a nursing interventions,what is a nursing intervention for anxiety,5,4,google,2026-03-12 19:53:58.618065,abortion definition in nursing,what is abortion in nursing,a interventions,intervention for anxiety +abortion,"('what is a nursing interventions', 'what is nursing interventions classification')",what is a nursing interventions,what is nursing interventions classification,6,4,google,2026-03-12 19:53:58.618065,abortion definition in nursing,what is abortion in nursing,a interventions,classification +abortion,"('what is a nursing interventions', 'what is a nursing diagnosis')",what is a nursing interventions,what is a nursing diagnosis,7,4,google,2026-03-12 19:53:58.618065,abortion definition in nursing,what is abortion in nursing,a interventions,diagnosis +abortion,"('what is a nursing interventions', 'what is a nursing care plan')",what is a nursing interventions,what is a nursing care plan,8,4,google,2026-03-12 19:53:58.618065,abortion definition in nursing,what is abortion in nursing,a interventions,care plan +abortion,"('what is a nursing interventions', 'what is a nursing diagnosis for hypertension')",what is a nursing interventions,what is a nursing diagnosis for hypertension,9,4,google,2026-03-12 19:53:58.618065,abortion definition in nursing,what is abortion in nursing,a interventions,diagnosis for hypertension +abortion,"('abortion pill side effects long-term', 'abortion pill side effects long term reddit')",abortion pill side effects long-term,abortion pill side effects long term reddit,1,4,google,2026-03-12 19:53:59.425356,abortion pill side effects long term,abortion pill side effects long term reddit,long-term,long term reddit +abortion,"('abortion pill side effects long-term', 'morning after pill side effects long term reddit')",abortion pill side effects long-term,morning after pill side effects long term reddit,2,4,google,2026-03-12 19:53:59.425356,abortion pill side effects long term,abortion pill side effects long term reddit,long-term,morning after long term reddit +abortion,"('abortion pill side effects long-term', 'morning after pill effects long term')",abortion pill side effects long-term,morning after pill effects long term,3,4,google,2026-03-12 19:53:59.425356,abortion pill side effects long term,abortion pill side effects long term reddit,long-term,morning after long term +abortion,"('abortion pill side effects long-term', 'morning after pill effects long term several times')",abortion pill side effects long-term,morning after pill effects long term several times,4,4,google,2026-03-12 19:53:59.425356,abortion pill side effects long term,abortion pill side effects long term reddit,long-term,morning after long term several times +abortion,"('abortion pill side effects long-term', 'does abortion pill have long term side effects')",abortion pill side effects long-term,does abortion pill have long term side effects,5,4,google,2026-03-12 19:53:59.425356,abortion pill side effects long term,abortion pill side effects long term reddit,long-term,does have long term +abortion,"('abortion pill side effects long-term', 'what are the long term effects of the abortion pill')",abortion pill side effects long-term,what are the long term effects of the abortion pill,6,4,google,2026-03-12 19:53:59.425356,abortion pill side effects long term,abortion pill side effects long term reddit,long-term,what are the long term of the +abortion,"('abortion pill side effects long-term', 'long term effects of medical abortion')",abortion pill side effects long-term,long term effects of medical abortion,7,4,google,2026-03-12 19:53:59.425356,abortion pill side effects long term,abortion pill side effects long term reddit,long-term,long term of medical +abortion,"('abortion pill symptoms reddit', 'abortion pill effects reddit')",abortion pill symptoms reddit,abortion pill effects reddit,1,4,google,2026-03-12 19:54:00.637613,abortion pill side effects long term,abortion pill side effects long term reddit,symptoms,effects +abortion,"('abortion pill symptoms reddit', 'abortion pill risks reddit')",abortion pill symptoms reddit,abortion pill risks reddit,2,4,google,2026-03-12 19:54:00.637613,abortion pill side effects long term,abortion pill side effects long term reddit,symptoms,risks +abortion,"('abortion pill symptoms reddit', 'abortion pill side effects reddit')",abortion pill symptoms reddit,abortion pill side effects reddit,3,4,google,2026-03-12 19:54:00.637613,abortion pill side effects long term,abortion pill side effects long term reddit,symptoms,side effects +abortion,"('abortion pill symptoms reddit', 'abortion pill after effects reddit')",abortion pill symptoms reddit,abortion pill after effects reddit,4,4,google,2026-03-12 19:54:00.637613,abortion pill side effects long term,abortion pill side effects long term reddit,symptoms,after effects +abortion,"('abortion pill symptoms reddit', 'symptoms after abortion pill reddit')",abortion pill symptoms reddit,symptoms after abortion pill reddit,5,4,google,2026-03-12 19:54:00.637613,abortion pill side effects long term,abortion pill side effects long term reddit,symptoms,after +abortion,"('abortion pill symptoms reddit', 'abortion pill vs surgery reddit')",abortion pill symptoms reddit,abortion pill vs surgery reddit,6,4,google,2026-03-12 19:54:00.637613,abortion pill side effects long term,abortion pill side effects long term reddit,symptoms,vs surgery +abortion,"('abortion pill symptoms reddit', 'abortion pill reviews reddit')",abortion pill symptoms reddit,abortion pill reviews reddit,7,4,google,2026-03-12 19:54:00.637613,abortion pill side effects long term,abortion pill side effects long term reddit,symptoms,reviews +abortion,"('abortion pill symptoms reddit', 'what does the abortion pill feel like reddit')",abortion pill symptoms reddit,what does the abortion pill feel like reddit,8,4,google,2026-03-12 19:54:00.637613,abortion pill side effects long term,abortion pill side effects long term reddit,symptoms,what does the feel like +abortion,"('abortion pill symptoms reddit', 'abortion pill reddit pain')",abortion pill symptoms reddit,abortion pill reddit pain,9,4,google,2026-03-12 19:54:00.637613,abortion pill side effects long term,abortion pill side effects long term reddit,symptoms,pain +abortion,"('abortion side effects reddit', 'abortion after effects reddit')",abortion side effects reddit,abortion after effects reddit,1,4,google,2026-03-12 19:54:02.055084,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,after +abortion,"('abortion side effects reddit', 'abortion pill side effects reddit')",abortion side effects reddit,abortion pill side effects reddit,2,4,google,2026-03-12 19:54:02.055084,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,pill +abortion,"('abortion side effects reddit', 'medical abortion side effects reddit')",abortion side effects reddit,medical abortion side effects reddit,3,4,google,2026-03-12 19:54:02.055084,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,medical +abortion,"('abortion side effects reddit', 'surgical abortion side effects reddit')",abortion side effects reddit,surgical abortion side effects reddit,4,4,google,2026-03-12 19:54:02.055084,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,surgical +abortion,"('abortion side effects reddit', 'abortion pill after effects reddit')",abortion side effects reddit,abortion pill after effects reddit,5,4,google,2026-03-12 19:54:02.055084,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,pill after +abortion,"('abortion side effects reddit', 'surgical.abortion after effects reddit')",abortion side effects reddit,surgical.abortion after effects reddit,6,4,google,2026-03-12 19:54:02.055084,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,surgical.abortion after +abortion,"('abortion side effects reddit', 'medical abortion after effects reddit')",abortion side effects reddit,medical abortion after effects reddit,7,4,google,2026-03-12 19:54:02.055084,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,medical after +abortion,"('abortion side effects reddit', 'abortion pill long term side effects reddit')",abortion side effects reddit,abortion pill long term side effects reddit,8,4,google,2026-03-12 19:54:02.055084,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,pill long term +abortion,"('abortion side effects reddit', 'first abortion pill side effects reddit')",abortion side effects reddit,first abortion pill side effects reddit,9,4,google,2026-03-12 19:54:02.055084,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,first pill +abortion,"('abortion pill effects reddit', 'abortion pill experience reddit')",abortion pill effects reddit,abortion pill experience reddit,1,4,google,2026-03-12 19:54:03.076558,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,experience +abortion,"('abortion pill effects reddit', 'abortion side effects reddit')",abortion pill effects reddit,abortion side effects reddit,2,4,google,2026-03-12 19:54:03.076558,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,side +abortion,"('abortion pill effects reddit', 'abortion pill experience reddit 4 weeks')",abortion pill effects reddit,abortion pill experience reddit 4 weeks,3,4,google,2026-03-12 19:54:03.076558,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,experience 4 weeks +abortion,"('abortion pill effects reddit', 'abortion pill experience reddit india')",abortion pill effects reddit,abortion pill experience reddit india,4,4,google,2026-03-12 19:54:03.076558,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,experience india +abortion,"('abortion pill effects reddit', 'abortion pill side effects reddit')",abortion pill effects reddit,abortion pill side effects reddit,5,4,google,2026-03-12 19:54:03.076558,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,side +abortion,"('abortion pill effects reddit', 'abortion pill after effects reddit')",abortion pill effects reddit,abortion pill after effects reddit,6,4,google,2026-03-12 19:54:03.076558,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,after +abortion,"('abortion pill effects reddit', 'miscarriage pill experience reddit')",abortion pill effects reddit,miscarriage pill experience reddit,7,4,google,2026-03-12 19:54:03.076558,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,miscarriage experience +abortion,"('abortion pill effects reddit', 'morning after pill side effects reddit')",abortion pill effects reddit,morning after pill side effects reddit,8,4,google,2026-03-12 19:54:03.076558,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,morning after side +abortion,"('abortion pill effects reddit', 'medical abortion side effects reddit')",abortion pill effects reddit,medical abortion side effects reddit,9,4,google,2026-03-12 19:54:03.076558,abortion pill side effects long term,abortion pill side effects long term reddit,reddit,medical side +abortion,"('does the morning after pill have long term effects', 'can the morning after pill have long term effects')",does the morning after pill have long term effects,can the morning after pill have long term effects,1,4,google,2026-03-12 19:54:03.915319,abortion pill side effects long term,morning after pill side effects long term reddit,does the have,can +abortion,"('does the morning after pill have long term effects', 'does taking the morning after pill have long term effects')",does the morning after pill have long term effects,does taking the morning after pill have long term effects,2,4,google,2026-03-12 19:54:03.915319,abortion pill side effects long term,morning after pill side effects long term reddit,does the have,taking +abortion,"('does the morning after pill have long term effects', 'does the morning after pill have any long lasting side effects')",does the morning after pill have long term effects,does the morning after pill have any long lasting side effects,3,4,google,2026-03-12 19:54:03.915319,abortion pill side effects long term,morning after pill side effects long term reddit,does the have,any lasting side +abortion,"('does the morning after pill have long term effects', 'does morning after pill have long term side effects')",does the morning after pill have long term effects,does morning after pill have long term side effects,4,4,google,2026-03-12 19:54:03.915319,abortion pill side effects long term,morning after pill side effects long term reddit,does the have,side +abortion,"('does the morning after pill have long term effects', 'how long can side effects of the morning after pill last')",does the morning after pill have long term effects,how long can side effects of the morning after pill last,5,4,google,2026-03-12 19:54:03.915319,abortion pill side effects long term,morning after pill side effects long term reddit,does the have,how can side of last +abortion,"('does the morning after pill have long term effects', 'can the morning after pill cause permanent damage')",does the morning after pill have long term effects,can the morning after pill cause permanent damage,6,4,google,2026-03-12 19:54:03.915319,abortion pill side effects long term,morning after pill side effects long term reddit,does the have,can cause permanent damage +abortion,"('does the morning after pill have long term effects', 'can the morning after pill cause long term effects')",does the morning after pill have long term effects,can the morning after pill cause long term effects,7,4,google,2026-03-12 19:54:03.915319,abortion pill side effects long term,morning after pill side effects long term reddit,does the have,can cause +abortion,"('does the morning after pill have long term effects', 'long term side effects of morning-after pill')",does the morning after pill have long term effects,long term side effects of morning-after pill,8,4,google,2026-03-12 19:54:03.915319,abortion pill side effects long term,morning after pill side effects long term reddit,does the have,side of morning-after +abortion,"('does the morning after pill have long term effects', 'does the morning after pill affect your period')",does the morning after pill have long term effects,does the morning after pill affect your period,9,4,google,2026-03-12 19:54:03.915319,abortion pill side effects long term,morning after pill side effects long term reddit,does the have,affect your period +abortion,"('long term effects of plan b reddit', 'long term side effects of plan b reddit')",long term effects of plan b reddit,long term side effects of plan b reddit,1,4,google,2026-03-12 19:54:04.732486,abortion pill side effects long term,morning after pill side effects long term reddit,of plan b,side +abortion,"('long term effects of plan b reddit', 'common side effects of plan b reddit')",long term effects of plan b reddit,common side effects of plan b reddit,2,4,google,2026-03-12 19:54:04.732486,abortion pill side effects long term,morning after pill side effects long term reddit,of plan b,common side +abortion,"('long term effects of plan b reddit', 'emotional side effects of plan b reddit')",long term effects of plan b reddit,emotional side effects of plan b reddit,3,4,google,2026-03-12 19:54:04.732486,abortion pill side effects long term,morning after pill side effects long term reddit,of plan b,emotional side +abortion,"('long term effects of plan b reddit', 'does plan b have long term effects')",long term effects of plan b reddit,does plan b have long term effects,4,4,google,2026-03-12 19:54:04.732486,abortion pill side effects long term,morning after pill side effects long term reddit,of plan b,does have +abortion,"('long term effects of plan b reddit', 'how does plan b affect you long term')",long term effects of plan b reddit,how does plan b affect you long term,5,4,google,2026-03-12 19:54:04.732486,abortion pill side effects long term,morning after pill side effects long term reddit,of plan b,how does affect you +abortion,"('long term effects of plan b reddit', 'what does plan b do to your body long term')",long term effects of plan b reddit,what does plan b do to your body long term,6,4,google,2026-03-12 19:54:04.732486,abortion pill side effects long term,morning after pill side effects long term reddit,of plan b,what does do to your body +abortion,"('long term effects of plan b reddit', 'long term effects of.plan b')",long term effects of plan b reddit,long term effects of.plan b,7,4,google,2026-03-12 19:54:04.732486,abortion pill side effects long term,morning after pill side effects long term reddit,of plan b,of.plan +abortion,"('plan b side effects long-term reddit', 'plan b side effects long term reddit')",plan b side effects long-term reddit,plan b side effects long term reddit,1,4,google,2026-03-12 19:54:05.827021,abortion pill side effects long term,morning after pill side effects long term reddit,plan b long-term,long term +abortion,"('plan b side effects long-term reddit', 'morning after pill side effects long term reddit')",plan b side effects long-term reddit,morning after pill side effects long term reddit,2,4,google,2026-03-12 19:54:05.827021,abortion pill side effects long term,morning after pill side effects long term reddit,plan b long-term,morning after pill long term +abortion,"('plan b side effects long-term reddit', 'long term effects of plan b reddit')",plan b side effects long-term reddit,long term effects of plan b reddit,3,4,google,2026-03-12 19:54:05.827021,abortion pill side effects long term,morning after pill side effects long term reddit,plan b long-term,long term of +abortion,"('plan b side effects long-term reddit', 'does plan b have long term effects')",plan b side effects long-term reddit,does plan b have long term effects,4,4,google,2026-03-12 19:54:05.827021,abortion pill side effects long term,morning after pill side effects long term reddit,plan b long-term,does have long term +abortion,"('plan b side effects long-term reddit', 'can plan b have side effects a week later')",plan b side effects long-term reddit,can plan b have side effects a week later,5,4,google,2026-03-12 19:54:05.827021,abortion pill side effects long term,morning after pill side effects long term reddit,plan b long-term,can have a week later +abortion,"('plan b side effects long-term reddit', 'how does plan b affect you long term')",plan b side effects long-term reddit,how does plan b affect you long term,6,4,google,2026-03-12 19:54:05.827021,abortion pill side effects long term,morning after pill side effects long term reddit,plan b long-term,how does affect you long term +abortion,"('plan b side effects long-term reddit', 'plan b side effects how long reddit')",plan b side effects long-term reddit,plan b side effects how long reddit,7,4,google,2026-03-12 19:54:05.827021,abortion pill side effects long term,morning after pill side effects long term reddit,plan b long-term,how long +abortion,"('plan b side effects long-term reddit', 'plan b long-term side effects in fertility reddit')",plan b side effects long-term reddit,plan b long-term side effects in fertility reddit,8,4,google,2026-03-12 19:54:05.827021,abortion pill side effects long term,morning after pill side effects long term reddit,plan b long-term,in fertility +abortion,"('plan b side effects long-term reddit', 'plan b side effects months later reddit')",plan b side effects long-term reddit,plan b side effects months later reddit,9,4,google,2026-03-12 19:54:05.827021,abortion pill side effects long term,morning after pill side effects long term reddit,plan b long-term,months later +abortion,"('metformin side effects long-term reddit', 'metformin side effects long term reddit')",metformin side effects long-term reddit,metformin side effects long term reddit,1,4,google,2026-03-12 19:54:06.799725,abortion pill side effects long term,morning after pill side effects long term reddit,metformin long-term,long term +abortion,"('metformin side effects long-term reddit', 'metformin side effects in women long term reddit')",metformin side effects long-term reddit,metformin side effects in women long term reddit,2,4,google,2026-03-12 19:54:06.799725,abortion pill side effects long term,morning after pill side effects long term reddit,metformin long-term,in women long term +abortion,"('metformin side effects long-term reddit', 'is metformin bad for you long term')",metformin side effects long-term reddit,is metformin bad for you long term,3,4,google,2026-03-12 19:54:06.799725,abortion pill side effects long term,morning after pill side effects long term reddit,metformin long-term,is bad for you long term +abortion,"('metformin side effects long-term reddit', 'is metformin safe to take long term')",metformin side effects long-term reddit,is metformin safe to take long term,4,4,google,2026-03-12 19:54:06.799725,abortion pill side effects long term,morning after pill side effects long term reddit,metformin long-term,is safe to take long term +abortion,"('metformin side effects long-term reddit', 'does metformin have long term side effects')",metformin side effects long-term reddit,does metformin have long term side effects,5,4,google,2026-03-12 19:54:06.799725,abortion pill side effects long term,morning after pill side effects long term reddit,metformin long-term,does have long term +abortion,"('metformin side effects long-term reddit', 'is taking metformin long term dangerous')",metformin side effects long-term reddit,is taking metformin long term dangerous,6,4,google,2026-03-12 19:54:06.799725,abortion pill side effects long term,morning after pill side effects long term reddit,metformin long-term,is taking long term dangerous +abortion,"('metformin side effects long-term reddit', 'metformin side effects long term use')",metformin side effects long-term reddit,metformin side effects long term use,7,4,google,2026-03-12 19:54:06.799725,abortion pill side effects long term,morning after pill side effects long term reddit,metformin long-term,long term use +abortion,"('metformin side effects long-term reddit', 'metformin side effects reddit')",metformin side effects long-term reddit,metformin side effects reddit,8,4,google,2026-03-12 19:54:06.799725,abortion pill side effects long term,morning after pill side effects long term reddit,metformin long-term,metformin long-term +abortion,"('metformin side effects long-term reddit', 'metformin side effects long-term')",metformin side effects long-term reddit,metformin side effects long-term,9,4,google,2026-03-12 19:54:06.799725,abortion pill side effects long term,morning after pill side effects long term reddit,metformin long-term,metformin long-term +abortion,"('moringa side effects reddit', 'moringa powder side effects reddit')",moringa side effects reddit,moringa powder side effects reddit,1,4,google,2026-03-12 19:54:07.663993,abortion pill side effects long term,morning after pill side effects long term reddit,moringa,powder +abortion,"('moringa side effects reddit', 'moringa tea side effects reddit')",moringa side effects reddit,moringa tea side effects reddit,2,4,google,2026-03-12 19:54:07.663993,abortion pill side effects long term,morning after pill side effects long term reddit,moringa,tea +abortion,"('moringa side effects reddit', 'does moringa have side effects')",moringa side effects reddit,does moringa have side effects,3,4,google,2026-03-12 19:54:07.663993,abortion pill side effects long term,morning after pill side effects long term reddit,moringa,does have +abortion,"('moringa side effects reddit', 'does moringa leaf have side effects')",moringa side effects reddit,does moringa leaf have side effects,4,4,google,2026-03-12 19:54:07.663993,abortion pill side effects long term,morning after pill side effects long term reddit,moringa,does leaf have +abortion,"('moringa side effects reddit', 'does moringa leaves have side effects')",moringa side effects reddit,does moringa leaves have side effects,5,4,google,2026-03-12 19:54:07.663993,abortion pill side effects long term,morning after pill side effects long term reddit,moringa,does leaves have +abortion,"('moringa side effects reddit', 'can moringa be harmful')",moringa side effects reddit,can moringa be harmful,6,4,google,2026-03-12 19:54:07.663993,abortion pill side effects long term,morning after pill side effects long term reddit,moringa,can be harmful +abortion,"('moringa side effects reddit', 'side effects of consuming moringa')",moringa side effects reddit,side effects of consuming moringa,7,4,google,2026-03-12 19:54:07.663993,abortion pill side effects long term,morning after pill side effects long term reddit,moringa,of consuming +abortion,"('moringa side effects reddit', 'moringa side effects diarrhea')",moringa side effects reddit,moringa side effects diarrhea,8,4,google,2026-03-12 19:54:07.663993,abortion pill side effects long term,morning after pill side effects long term reddit,moringa,diarrhea +abortion,"('moringa side effects reddit', 'moringa side effects on skin')",moringa side effects reddit,moringa side effects on skin,9,4,google,2026-03-12 19:54:07.663993,abortion pill side effects long term,morning after pill side effects long term reddit,moringa,on skin +abortion,"('is it bad to take morning after pill multiple times', 'is it safe to take the morning after pill multiple times')",is it bad to take morning after pill multiple times,is it safe to take the morning after pill multiple times,1,4,google,2026-03-12 19:54:09.114880,abortion pill side effects long term,morning after pill effects long term several times,is it bad to take multiple,safe the +abortion,"('is it bad to take morning after pill multiple times', 'is it bad to take morning after pill too many times')",is it bad to take morning after pill multiple times,is it bad to take morning after pill too many times,2,4,google,2026-03-12 19:54:09.114880,abortion pill side effects long term,morning after pill effects long term several times,is it bad to take multiple,too many +abortion,"('is it bad to take morning after pill multiple times', 'is it dangerous to take the morning after pill multiple.times')",is it bad to take morning after pill multiple times,is it dangerous to take the morning after pill multiple.times,3,4,google,2026-03-12 19:54:09.114880,abortion pill side effects long term,morning after pill effects long term several times,is it bad to take multiple,dangerous the multiple.times +abortion,"('is it bad to take morning after pill multiple times', 'can you take morning after pill multiple times')",is it bad to take morning after pill multiple times,can you take morning after pill multiple times,4,4,google,2026-03-12 19:54:09.114880,abortion pill side effects long term,morning after pill effects long term several times,is it bad to take multiple,can you +abortion,"('is it bad to take morning after pill multiple times', 'how many times is it safe to take morning after pill')",is it bad to take morning after pill multiple times,how many times is it safe to take morning after pill,5,4,google,2026-03-12 19:54:09.114880,abortion pill side effects long term,morning after pill effects long term several times,is it bad to take multiple,how many safe +abortion,"('is it bad to take morning after pill multiple times', 'is it bad to take morning after pill too often')",is it bad to take morning after pill multiple times,is it bad to take morning after pill too often,6,4,google,2026-03-12 19:54:09.114880,abortion pill side effects long term,morning after pill effects long term several times,is it bad to take multiple,too often +abortion,"('is it bad to take morning after pill multiple times', 'is it bad to take morning after pill frequently')",is it bad to take morning after pill multiple times,is it bad to take morning after pill frequently,7,4,google,2026-03-12 19:54:09.114880,abortion pill side effects long term,morning after pill effects long term several times,is it bad to take multiple,frequently +abortion,"('is it bad to take morning after pill multiple times', 'is it bad to take multiple pills at once')",is it bad to take morning after pill multiple times,is it bad to take multiple pills at once,8,4,google,2026-03-12 19:54:09.114880,abortion pill side effects long term,morning after pill effects long term several times,is it bad to take multiple,pills at once +abortion,"('is it bad to take morning after pill multiple times', 'is it bad to take plan b multiple times in a month')",is it bad to take morning after pill multiple times,is it bad to take plan b multiple times in a month,9,4,google,2026-03-12 19:54:09.114880,abortion pill side effects long term,morning after pill effects long term several times,is it bad to take multiple,plan b in a month +abortion,"('can taking too many morning after pills be harmful', 'can taking too many plan b pills be harmful')",can taking too many morning after pills be harmful,can taking too many plan b pills be harmful,1,4,google,2026-03-12 19:54:10.407479,abortion pill side effects long term,morning after pill effects long term several times,can taking too many pills be harmful,plan b +abortion,"('can taking too many morning after pills be harmful', 'is taking too much morning after pills be harmful')",can taking too many morning after pills be harmful,is taking too much morning after pills be harmful,2,4,google,2026-03-12 19:54:10.407479,abortion pill side effects long term,morning after pill effects long term several times,can taking too many pills be harmful,is much +abortion,"('can taking too many morning after pills be harmful', 'can taking too many plan b pills be bad')",can taking too many morning after pills be harmful,can taking too many plan b pills be bad,3,4,google,2026-03-12 19:54:10.407479,abortion pill side effects long term,morning after pill effects long term several times,can taking too many pills be harmful,plan b bad +abortion,"('can taking too many morning after pills be harmful', 'what happens if you take morning after pill too much')",can taking too many morning after pills be harmful,what happens if you take morning after pill too much,4,4,google,2026-03-12 19:54:10.407479,abortion pill side effects long term,morning after pill effects long term several times,can taking too many pills be harmful,what happens if you take pill much +abortion,"('can taking too many morning after pills be harmful', 'is it bad to take morning after pill too often')",can taking too many morning after pills be harmful,is it bad to take morning after pill too often,5,4,google,2026-03-12 19:54:10.407479,abortion pill side effects long term,morning after pill effects long term several times,can taking too many pills be harmful,is it bad to take pill often +abortion,"('can taking too many morning after pills be harmful', 'can taking too many plan b pills affect you')",can taking too many morning after pills be harmful,can taking too many plan b pills affect you,6,4,google,2026-03-12 19:54:10.407479,abortion pill side effects long term,morning after pill effects long term several times,can taking too many pills be harmful,plan b affect you +abortion,"('can taking too many morning after pills be harmful', 'can taking too many plan b pills hurt you')",can taking too many morning after pills be harmful,can taking too many plan b pills hurt you,7,4,google,2026-03-12 19:54:10.407479,abortion pill side effects long term,morning after pill effects long term several times,can taking too many pills be harmful,plan b hurt you +abortion,"('long term side effects of morning-after pill', 'long term side effects of plan b morning after pill')",long term side effects of morning-after pill,long term side effects of plan b morning after pill,1,4,google,2026-03-12 19:54:11.327508,abortion pill side effects long term,morning after pill effects long term several times,side of morning-after,plan b morning after +abortion,"('long term side effects of morning-after pill', 'are there long term side effects of morning after pill')",long term side effects of morning-after pill,are there long term side effects of morning after pill,2,4,google,2026-03-12 19:54:11.327508,abortion pill side effects long term,morning after pill effects long term several times,side of morning-after,are there morning after +abortion,"('long term side effects of morning-after pill', 'long term side effects of plan b pill')",long term side effects of morning-after pill,long term side effects of plan b pill,3,4,google,2026-03-12 19:54:11.327508,abortion pill side effects long term,morning after pill effects long term several times,side of morning-after,plan b +abortion,"('long term side effects of morning-after pill', 'long term side effects of emergency pills')",long term side effects of morning-after pill,long term side effects of emergency pills,4,4,google,2026-03-12 19:54:11.327508,abortion pill side effects long term,morning after pill effects long term several times,side of morning-after,emergency pills +abortion,"('long term side effects of morning-after pill', 'long term side effects of emergency contraceptive pills')",long term side effects of morning-after pill,long term side effects of emergency contraceptive pills,5,4,google,2026-03-12 19:54:11.327508,abortion pill side effects long term,morning after pill effects long term several times,side of morning-after,emergency contraceptive pills +abortion,"('long term side effects of morning-after pill', 'does the morning after pill have long term effects')",long term side effects of morning-after pill,does the morning after pill have long term effects,6,4,google,2026-03-12 19:54:11.327508,abortion pill side effects long term,morning after pill effects long term several times,side of morning-after,does the morning after have +abortion,"('long term side effects of morning-after pill', 'long term use of morning after pill')",long term side effects of morning-after pill,long term use of morning after pill,7,4,google,2026-03-12 19:54:11.327508,abortion pill side effects long term,morning after pill effects long term several times,side of morning-after,use morning after +abortion,"('long term side effects of morning-after pill', 'can the morning after pill cause long term effects')",long term side effects of morning-after pill,can the morning after pill cause long term effects,8,4,google,2026-03-12 19:54:11.327508,abortion pill side effects long term,morning after pill effects long term several times,side of morning-after,can the morning after cause +abortion,"('morning after pill side effects a week later', 'morning after pill side effects 1 week later')",morning after pill side effects a week later,morning after pill side effects 1 week later,1,4,google,2026-03-12 19:54:12.484086,abortion pill side effects long term,morning after pill effects long term several times,side a week later,1 +abortion,"('morning after pill side effects a week later', 'morning after pill side effects bleeding week later')",morning after pill side effects a week later,morning after pill side effects bleeding week later,2,4,google,2026-03-12 19:54:12.484086,abortion pill side effects long term,morning after pill effects long term several times,side a week later,bleeding +abortion,"('morning after pill side effects a week later', 'morning after pill side effects 2 weeks later')",morning after pill side effects a week later,morning after pill side effects 2 weeks later,3,4,google,2026-03-12 19:54:12.484086,abortion pill side effects long term,morning after pill effects long term several times,side a week later,2 weeks +abortion,"('morning after pill side effects a week later', 'morning after pill side effects 3 weeks later')",morning after pill side effects a week later,morning after pill side effects 3 weeks later,4,4,google,2026-03-12 19:54:12.484086,abortion pill side effects long term,morning after pill effects long term several times,side a week later,3 weeks +abortion,"('morning after pill side effects a week later', 'can plan b have side effects a week later')",morning after pill side effects a week later,can plan b have side effects a week later,5,4,google,2026-03-12 19:54:12.484086,abortion pill side effects long term,morning after pill effects long term several times,side a week later,can plan b have +abortion,"('morning after pill side effects a week later', 'can plan b give you side effects a week later')",morning after pill side effects a week later,can plan b give you side effects a week later,6,4,google,2026-03-12 19:54:12.484086,abortion pill side effects long term,morning after pill effects long term several times,side a week later,can plan b give you +abortion,"('morning after pill side effects a week later', 'can the morning after pill make you feel sick a week later')",morning after pill side effects a week later,can the morning after pill make you feel sick a week later,7,4,google,2026-03-12 19:54:12.484086,abortion pill side effects long term,morning after pill effects long term several times,side a week later,can the make you feel sick +abortion,"('morning after pill side effects a week later', 'morning after pill symptoms a week later')",morning after pill side effects a week later,morning after pill symptoms a week later,8,4,google,2026-03-12 19:54:12.484086,abortion pill side effects long term,morning after pill effects long term several times,side a week later,symptoms +abortion,"('morning after pill side effects a week later', 'morning after pill side effects menstrual cycle')",morning after pill side effects a week later,morning after pill side effects menstrual cycle,9,4,google,2026-03-12 19:54:12.484086,abortion pill side effects long term,morning after pill effects long term several times,side a week later,menstrual cycle +abortion,"('morning-after pills works after how long', 'morning after pills works after how long')",morning-after pills works after how long,morning after pills works after how long,1,4,google,2026-03-12 19:54:13.485607,abortion pill side effects long term,morning after pill effects long term several times,morning-after pills works how,morning +abortion,"('morning-after pills works after how long', 'morning after pills works after how many hours')",morning-after pills works after how long,morning after pills works after how many hours,2,4,google,2026-03-12 19:54:13.485607,abortion pill side effects long term,morning after pill effects long term several times,morning-after pills works how,morning many hours +abortion,"('morning-after pills works after how long', 'morning after pills works after how many days')",morning-after pills works after how long,morning after pills works after how many days,3,4,google,2026-03-12 19:54:13.485607,abortion pill side effects long term,morning after pill effects long term several times,morning-after pills works how,morning many days +abortion,"('morning-after pills works after how long', 'day after pill works for how long')",morning-after pills works after how long,day after pill works for how long,4,4,google,2026-03-12 19:54:13.485607,abortion pill side effects long term,morning after pill effects long term several times,morning-after pills works how,day pill for +abortion,"('morning-after pills works after how long', 'how many days does it take for the morning after pill to work')",morning-after pills works after how long,how many days does it take for the morning after pill to work,5,4,google,2026-03-12 19:54:13.485607,abortion pill side effects long term,morning after pill effects long term several times,morning-after pills works how,many days does it take for the morning pill to work +abortion,"('morning-after pills works after how long', 'how effective is the morning after pill after 3 days')",morning-after pills works after how long,how effective is the morning after pill after 3 days,6,4,google,2026-03-12 19:54:13.485607,abortion pill side effects long term,morning after pill effects long term several times,morning-after pills works how,effective is the morning pill 3 days +abortion,"('morning-after pills works after how long', 'does the morning after pill work the day after')",morning-after pills works after how long,does the morning after pill work the day after,7,4,google,2026-03-12 19:54:13.485607,abortion pill side effects long term,morning after pill effects long term several times,morning-after pills works how,does the morning pill work the day +abortion,"('morning-after pills works after how long', 'can you still take the morning after pill after 3 days')",morning-after pills works after how long,can you still take the morning after pill after 3 days,8,4,google,2026-03-12 19:54:13.485607,abortion pill side effects long term,morning after pill effects long term several times,morning-after pills works how,can you still take the morning pill 3 days +abortion,"('morning-after pills works after how long', 'how effective is the morning after pill after 4 days')",morning-after pills works after how long,how effective is the morning after pill after 4 days,9,4,google,2026-03-12 19:54:13.485607,abortion pill side effects long term,morning after pill effects long term several times,morning-after pills works how,effective is the morning pill 4 days +abortion,"('morning-after pills works after how long', 'morning after pill how long does it work')",morning-after pills works after how long,morning after pill how long does it work,10,4,google,2026-03-12 19:54:13.485607,abortion pill side effects long term,morning after pill effects long term several times,morning-after pills works how,morning pill does it work +abortion,"('morning after pill cause longer period', 'morning after pill causing long period')",morning after pill cause longer period,morning after pill causing long period,1,4,google,2026-03-12 19:54:14.313919,abortion pill side effects long term,morning after pill effects long term several times,cause longer period,causing long +abortion,"('morning after pill cause longer period', 'morning after pill side effects long period')",morning after pill cause longer period,morning after pill side effects long period,2,4,google,2026-03-12 19:54:14.313919,abortion pill side effects long term,morning after pill effects long term several times,cause longer period,side effects long +abortion,"('morning after pill cause longer period', 'can morning after pill cause longer period')",morning after pill cause longer period,can morning after pill cause longer period,3,4,google,2026-03-12 19:54:14.313919,abortion pill side effects long term,morning after pill effects long term several times,cause longer period,can +abortion,"('morning after pill cause longer period', 'can morning after pill cause long periods')",morning after pill cause longer period,can morning after pill cause long periods,4,4,google,2026-03-12 19:54:14.313919,abortion pill side effects long term,morning after pill effects long term several times,cause longer period,can long periods +abortion,"('morning after pill cause longer period', 'can morning after pill cause prolonged periods')",morning after pill cause longer period,can morning after pill cause prolonged periods,5,4,google,2026-03-12 19:54:14.313919,abortion pill side effects long term,morning after pill effects long term several times,cause longer period,can prolonged periods +abortion,"('morning after pill cause longer period', 'can taking the morning after pill make your period longer')",morning after pill cause longer period,can taking the morning after pill make your period longer,6,4,google,2026-03-12 19:54:14.313919,abortion pill side effects long term,morning after pill effects long term several times,cause longer period,can taking the make your +abortion,"('morning after pill cause longer period', 'can the morning after pill make your period longer')",morning after pill cause longer period,can the morning after pill make your period longer,7,4,google,2026-03-12 19:54:14.313919,abortion pill side effects long term,morning after pill effects long term several times,cause longer period,can the make your +abortion,"('morning after pill cause longer period', 'morning after pill makes period early')",morning after pill cause longer period,morning after pill makes period early,8,4,google,2026-03-12 19:54:14.313919,abortion pill side effects long term,morning after pill effects long term several times,cause longer period,makes early +abortion,"('morning after pill cause longer period', 'morning after pill change cycle')",morning after pill cause longer period,morning after pill change cycle,9,4,google,2026-03-12 19:54:14.313919,abortion pill side effects long term,morning after pill effects long term several times,cause longer period,change cycle +abortion,"('what are the long term side effects of abortion pills', 'what are the long term side effects of taking abortion pill')",what are the long term side effects of abortion pills,what are the long term side effects of taking abortion pill,1,4,google,2026-03-12 19:54:16.626500,abortion pill side effects long term,does abortion pill have long term side effects,what are the of pills,taking pill +abortion,"('what are the long term side effects of abortion pills', 'long term side effects of abortion pills procedures')",what are the long term side effects of abortion pills,long term side effects of abortion pills procedures,2,4,google,2026-03-12 19:54:16.626500,abortion pill side effects long term,does abortion pill have long term side effects,what are the of pills,procedures +abortion,"('what are the long term side effects of abortion pills', 'long term side effects of abortion pill reddit')",what are the long term side effects of abortion pills,long term side effects of abortion pill reddit,3,4,google,2026-03-12 19:54:16.626500,abortion pill side effects long term,does abortion pill have long term side effects,what are the of pills,pill reddit +abortion,"('what are the long term side effects of abortion pills', 'are there any long term side effects of abortion pills')",what are the long term side effects of abortion pills,are there any long term side effects of abortion pills,4,4,google,2026-03-12 19:54:16.626500,abortion pill side effects long term,does abortion pill have long term side effects,what are the of pills,there any +abortion,"('what are the long term side effects of abortion pills', 'what are the long term effects of the abortion pill')",what are the long term side effects of abortion pills,what are the long term effects of the abortion pill,5,4,google,2026-03-12 19:54:16.626500,abortion pill side effects long term,does abortion pill have long term side effects,what are the of pills,pill +abortion,"('what are the long term side effects of abortion pills', 'what are long term side effects of abortion')",what are the long term side effects of abortion pills,what are long term side effects of abortion,6,4,google,2026-03-12 19:54:16.626500,abortion pill side effects long term,does abortion pill have long term side effects,what are the of pills,what are the of pills +abortion,"('what are the long term side effects of abortion pills', 'what are the long term effects of an abortion')",what are the long term side effects of abortion pills,what are the long term effects of an abortion,7,4,google,2026-03-12 19:54:16.626500,abortion pill side effects long term,does abortion pill have long term side effects,what are the of pills,an +abortion,"('what are the long term side effects of abortion pills', 'long term effects of abortion pill on the body')",what are the long term side effects of abortion pills,long term effects of abortion pill on the body,8,4,google,2026-03-12 19:54:16.626500,abortion pill side effects long term,does abortion pill have long term side effects,what are the of pills,pill on body +abortion,"('does abortion pill have side effects', 'does morning after pill have side effects')",does abortion pill have side effects,does morning after pill have side effects,1,4,google,2026-03-12 19:54:17.655137,abortion pill side effects long term,does abortion pill have long term side effects,does have,morning after +abortion,"('does abortion pill have side effects', 'can abortion pill have side effects')",does abortion pill have side effects,can abortion pill have side effects,2,4,google,2026-03-12 19:54:17.655137,abortion pill side effects long term,does abortion pill have long term side effects,does have,can +abortion,"('does abortion pill have side effects', 'do morning after pill have side effects')",does abortion pill have side effects,do morning after pill have side effects,3,4,google,2026-03-12 19:54:17.655137,abortion pill side effects long term,does abortion pill have long term side effects,does have,do morning after +abortion,"('does abortion pill have side effects', 'does first abortion pill have side effects')",does abortion pill have side effects,does first abortion pill have side effects,4,4,google,2026-03-12 19:54:17.655137,abortion pill side effects long term,does abortion pill have long term side effects,does have,first +abortion,"('does abortion pill have side effects', 'does abortion pill have bad side effects')",does abortion pill have side effects,does abortion pill have bad side effects,5,4,google,2026-03-12 19:54:17.655137,abortion pill side effects long term,does abortion pill have long term side effects,does have,bad +abortion,"('does abortion pill have side effects', 'what are the long term side effects of abortion pills')",does abortion pill have side effects,what are the long term side effects of abortion pills,6,4,google,2026-03-12 19:54:17.655137,abortion pill side effects long term,does abortion pill have long term side effects,does have,what are the long term of pills +abortion,"('does abortion pill have side effects', 'what are the long term effects of the abortion pill')",does abortion pill have side effects,what are the long term effects of the abortion pill,7,4,google,2026-03-12 19:54:17.655137,abortion pill side effects long term,does abortion pill have long term side effects,does have,what are the long term of the +abortion,"('does abortion pill have side effects', 'does abortion have side effects')",does abortion pill have side effects,does abortion have side effects,8,4,google,2026-03-12 19:54:17.655137,abortion pill side effects long term,does abortion pill have long term side effects,does have,does have +abortion,"('does abortion pill have side effects', 'does abortion pill make you sick')",does abortion pill have side effects,does abortion pill make you sick,9,4,google,2026-03-12 19:54:17.655137,abortion pill side effects long term,does abortion pill have long term side effects,does have,make you sick +abortion,"('long term effects of abortion pill on the body', 'long term effects of a medical abortion')",long term effects of abortion pill on the body,long term effects of a medical abortion,1,4,google,2026-03-12 19:54:19.043955,abortion pill side effects long term,does abortion pill have long term side effects,of on the body,a medical +abortion,"('long term effects of abortion pill on the body', 'long term effects of abortion on the body')",long term effects of abortion pill on the body,long term effects of abortion on the body,2,4,google,2026-03-12 19:54:19.043955,abortion pill side effects long term,does abortion pill have long term side effects,of on the body,of on the body +abortion,"('long term effects of abortion pill on the body', 'long term effects of abortion')",long term effects of abortion pill on the body,long term effects of abortion,3,4,google,2026-03-12 19:54:19.043955,abortion pill side effects long term,does abortion pill have long term side effects,of on the body,of on the body +abortion,"('long term effects of abortion pill on the body', 'long term effects of the abortion pill')",long term effects of abortion pill on the body,long term effects of the abortion pill,4,4,google,2026-03-12 19:54:19.043955,abortion pill side effects long term,does abortion pill have long term side effects,of on the body,of on the body +abortion,"('what are the long term effects of the morning after pill', 'what are the long term side effects of the morning after pill')",what are the long term effects of the morning after pill,what are the long term side effects of the morning after pill,1,4,google,2026-03-12 19:54:19.980330,abortion pill side effects long term,what are the long term effects of the abortion pill,morning after,side +abortion,"('what are the long term effects of the morning after pill', 'does the morning after pill have long term effects')",what are the long term effects of the morning after pill,does the morning after pill have long term effects,2,4,google,2026-03-12 19:54:19.980330,abortion pill side effects long term,what are the long term effects of the abortion pill,morning after,does have +abortion,"('what are the long term effects of the morning after pill', 'what are the long term effects of plan b')",what are the long term effects of the morning after pill,what are the long term effects of plan b,3,4,google,2026-03-12 19:54:19.980330,abortion pill side effects long term,what are the long term effects of the abortion pill,morning after,plan b +abortion,"('what are the long term side effects of the abortion pill', 'what are the long term effects of the abortion pill')",what are the long term side effects of the abortion pill,what are the long term effects of the abortion pill,1,4,google,2026-03-12 19:54:21.149964,abortion pill side effects long term,what are the long term effects of the abortion pill,side,side +abortion,"('what are the long term side effects of the abortion pill', 'what are long term side effects of abortion')",what are the long term side effects of the abortion pill,what are long term side effects of abortion,2,4,google,2026-03-12 19:54:21.149964,abortion pill side effects long term,what are the long term effects of the abortion pill,side,side +abortion,"('what are the long term side effects of the abortion pill', 'what are the long term effects of an abortion')",what are the long term side effects of the abortion pill,what are the long term effects of an abortion,3,4,google,2026-03-12 19:54:21.149964,abortion pill side effects long term,what are the long term effects of the abortion pill,side,an +abortion,"('what are the long term side effects of the abortion pill', 'long term effects of abortion pill on the body')",what are the long term side effects of the abortion pill,long term effects of abortion pill on the body,4,4,google,2026-03-12 19:54:21.149964,abortion pill side effects long term,what are the long term effects of the abortion pill,side,on body +abortion,"('what are the long term effects of taking the abortion pill', 'what are the long term effects of the abortion pill')",what are the long term effects of taking the abortion pill,what are the long term effects of the abortion pill,1,4,google,2026-03-12 19:54:22.236471,abortion pill side effects long term,what are the long term effects of the abortion pill,taking,taking +abortion,"('what are the long term effects of taking the abortion pill', 'what are the long term side effects of abortion pills')",what are the long term effects of taking the abortion pill,what are the long term side effects of abortion pills,2,4,google,2026-03-12 19:54:22.236471,abortion pill side effects long term,what are the long term effects of the abortion pill,taking,side pills +abortion,"('what are the long term effects of taking the abortion pill', 'long term effects of a medical abortion')",what are the long term effects of taking the abortion pill,long term effects of a medical abortion,3,4,google,2026-03-12 19:54:22.236471,abortion pill side effects long term,what are the long term effects of the abortion pill,taking,a medical +abortion,"('what are the long term effects of taking the abortion pill', 'what are the long term effects of an abortion')",what are the long term effects of taking the abortion pill,what are the long term effects of an abortion,4,4,google,2026-03-12 19:54:22.236471,abortion pill side effects long term,what are the long term effects of the abortion pill,taking,an +abortion,"('what are the long term effects of taking the abortion pill', 'long term effects of abortion pill on the body')",what are the long term effects of taking the abortion pill,long term effects of abortion pill on the body,5,4,google,2026-03-12 19:54:22.236471,abortion pill side effects long term,what are the long term effects of the abortion pill,taking,on body +abortion,"('what are the side effects of the morning after pill', 'what are the side effects of the morning after pill and how long does it last')",what are the side effects of the morning after pill,what are the side effects of the morning after pill and how long does it last,1,4,google,2026-03-12 19:54:24.408314,abortion pill side effects long term,what are the long term effects of the abortion pill,side morning after,and how long does it last +abortion,"('what are the side effects of the morning after pill', 'what are the side effects of the morning after pill long term')",what are the side effects of the morning after pill,what are the side effects of the morning after pill long term,2,4,google,2026-03-12 19:54:24.408314,abortion pill side effects long term,what are the long term effects of the abortion pill,side morning after,long term +abortion,"('what are the side effects of the morning after pill', 'what are the side effects of the day after pill')",what are the side effects of the morning after pill,what are the side effects of the day after pill,3,4,google,2026-03-12 19:54:24.408314,abortion pill side effects long term,what are the long term effects of the abortion pill,side morning after,day +abortion,"('what are the side effects of the morning after pill', 'what are the side effects of taking the morning after pill too often')",what are the side effects of the morning after pill,what are the side effects of taking the morning after pill too often,4,4,google,2026-03-12 19:54:24.408314,abortion pill side effects long term,what are the long term effects of the abortion pill,side morning after,taking too often +abortion,"('what are the side effects of the morning after pill', 'what are the negative side effects of the morning after pill')",what are the side effects of the morning after pill,what are the negative side effects of the morning after pill,5,4,google,2026-03-12 19:54:24.408314,abortion pill side effects long term,what are the long term effects of the abortion pill,side morning after,negative +abortion,"('what are the side effects of the morning after pill', 'what are the worst side effects of the morning after pill')",what are the side effects of the morning after pill,what are the worst side effects of the morning after pill,6,4,google,2026-03-12 19:54:24.408314,abortion pill side effects long term,what are the long term effects of the abortion pill,side morning after,worst +abortion,"('what are the side effects of the morning after pill', 'what are the side effects of the ellaone morning after pill')",what are the side effects of the morning after pill,what are the side effects of the ellaone morning after pill,7,4,google,2026-03-12 19:54:24.408314,abortion pill side effects long term,what are the long term effects of the abortion pill,side morning after,ellaone +abortion,"('what are the side effects of the morning after pill', 'what are the most common side effects of the morning after pill')",what are the side effects of the morning after pill,what are the most common side effects of the morning after pill,8,4,google,2026-03-12 19:54:24.408314,abortion pill side effects long term,what are the long term effects of the abortion pill,side morning after,most common +abortion,"('what are the side effects of the morning after pill', 'what are the side effects of norlevo morning after pill')",what are the side effects of the morning after pill,what are the side effects of norlevo morning after pill,9,4,google,2026-03-12 19:54:24.408314,abortion pill side effects long term,what are the long term effects of the abortion pill,side morning after,norlevo +abortion,"('are there long term effects of the abortion pill', 'are there long term effects of the morning after pill')",are there long term effects of the abortion pill,are there long term effects of the morning after pill,1,4,google,2026-03-12 19:54:25.656280,abortion pill side effects long term,what are the long term effects of the abortion pill,there,morning after +abortion,"('are there long term effects of the abortion pill', 'are there long term side effects of the abortion pill')",are there long term effects of the abortion pill,are there long term side effects of the abortion pill,2,4,google,2026-03-12 19:54:25.656280,abortion pill side effects long term,what are the long term effects of the abortion pill,there,side +abortion,"('are there long term effects of the abortion pill', 'are there any long term side effects of the morning after pill')",are there long term effects of the abortion pill,are there any long term side effects of the morning after pill,3,4,google,2026-03-12 19:54:25.656280,abortion pill side effects long term,what are the long term effects of the abortion pill,there,any side morning after +abortion,"('are there long term effects of the abortion pill', 'are there side effects of the abortion pill')",are there long term effects of the abortion pill,are there side effects of the abortion pill,4,4,google,2026-03-12 19:54:25.656280,abortion pill side effects long term,what are the long term effects of the abortion pill,there,side +abortion,"('are there long term effects of the abortion pill', 'are there side effects of the morning after pill')",are there long term effects of the abortion pill,are there side effects of the morning after pill,5,4,google,2026-03-12 19:54:25.656280,abortion pill side effects long term,what are the long term effects of the abortion pill,there,side morning after +abortion,"('are there long term effects of the abortion pill', 'what are the long term effects of the abortion pill')",are there long term effects of the abortion pill,what are the long term effects of the abortion pill,6,4,google,2026-03-12 19:54:25.656280,abortion pill side effects long term,what are the long term effects of the abortion pill,there,what +abortion,"('are there long term effects of the abortion pill', 'long term effects of abortion')",are there long term effects of the abortion pill,long term effects of abortion,7,4,google,2026-03-12 19:54:25.656280,abortion pill side effects long term,what are the long term effects of the abortion pill,there,there +abortion,"('are there long term effects of the abortion pill', 'does abortion have long term effects')",are there long term effects of the abortion pill,does abortion have long term effects,8,4,google,2026-03-12 19:54:25.656280,abortion pill side effects long term,what are the long term effects of the abortion pill,there,does have +abortion,"('what are the side effects of the first abortion pill', 'what are the symptoms of the first abortion pill')",what are the side effects of the first abortion pill,what are the symptoms of the first abortion pill,1,4,google,2026-03-12 19:54:27.131630,abortion pill side effects long term,what are the long term effects of the abortion pill,side first,symptoms +abortion,"('what are the side effects of the first abortion pill', 'how does first abortion pill make you feel')",what are the side effects of the first abortion pill,how does first abortion pill make you feel,2,4,google,2026-03-12 19:54:27.131630,abortion pill side effects long term,what are the long term effects of the abortion pill,side first,how does make you feel +abortion,"('what are the negative side effects of the morning after pill', 'negative impact of morning after pill')",what are the negative side effects of the morning after pill,negative impact of morning after pill,1,4,google,2026-03-12 19:54:29.119319,abortion pill side effects long term,what are the long term effects of the abortion pill,negative side morning after,impact +abortion,"('what are the negative side effects of the morning after pill', 'does the morning after pill have long term effects')",what are the negative side effects of the morning after pill,does the morning after pill have long term effects,2,4,google,2026-03-12 19:54:29.119319,abortion pill side effects long term,what are the long term effects of the abortion pill,negative side morning after,does have long term +abortion,"('what are the negative side effects of the morning after pill', 'what are side effects of the morning after pill')",what are the negative side effects of the morning after pill,what are side effects of the morning after pill,3,4,google,2026-03-12 19:54:29.119319,abortion pill side effects long term,what are the long term effects of the abortion pill,negative side morning after,negative side morning after +abortion,"('long term risks of medical abortion', 'long term effects of medical abortion')",long term risks of medical abortion,long term effects of medical abortion,1,4,google,2026-03-12 19:54:30.421523,abortion pill side effects long term,long term effects of medical abortion,risks,effects +abortion,"('long term risks of medical abortion', 'long term complications of medical abortion')",long term risks of medical abortion,long term complications of medical abortion,2,4,google,2026-03-12 19:54:30.421523,abortion pill side effects long term,long term effects of medical abortion,risks,complications +abortion,"('long term risks of medical abortion', 'long term side effects of medical abortion')",long term risks of medical abortion,long term side effects of medical abortion,3,4,google,2026-03-12 19:54:30.421523,abortion pill side effects long term,long term effects of medical abortion,risks,side effects +abortion,"('long term risks of medical abortion', 'long term side effects of abortion medicine')",long term risks of medical abortion,long term side effects of abortion medicine,4,4,google,2026-03-12 19:54:30.421523,abortion pill side effects long term,long term effects of medical abortion,risks,side effects medicine +abortion,"('long term risks of medical abortion', 'long term risks of abortion')",long term risks of medical abortion,long term risks of abortion,5,4,google,2026-03-12 19:54:30.421523,abortion pill side effects long term,long term effects of medical abortion,risks,risks +abortion,"('long term risks of medical abortion', 'long term risks of abortion pill')",long term risks of medical abortion,long term risks of abortion pill,6,4,google,2026-03-12 19:54:30.421523,abortion pill side effects long term,long term effects of medical abortion,risks,pill +abortion,"('long term side effects of medical abortion', 'long term side effects of abortion medicine')",long term side effects of medical abortion,long term side effects of abortion medicine,1,4,google,2026-03-12 19:54:31.334123,abortion pill side effects long term,long term effects of medical abortion,side,medicine +abortion,"('long term side effects of medical abortion', 'are there long term side effects of medical abortion')",long term side effects of medical abortion,are there long term side effects of medical abortion,2,4,google,2026-03-12 19:54:31.334123,abortion pill side effects long term,long term effects of medical abortion,side,are there +abortion,"('long term side effects of medical abortion', 'long term complications of medical abortion')",long term side effects of medical abortion,long term complications of medical abortion,3,4,google,2026-03-12 19:54:31.334123,abortion pill side effects long term,long term effects of medical abortion,side,complications +abortion,"('long term side effects of medical abortion', 'long term effects of a medical abortion')",long term side effects of medical abortion,long term effects of a medical abortion,4,4,google,2026-03-12 19:54:31.334123,abortion pill side effects long term,long term effects of medical abortion,side,a +abortion,"('long term side effects of medical abortion', 'long-term side effects of abortion procedures')",long term side effects of medical abortion,long-term side effects of abortion procedures,5,4,google,2026-03-12 19:54:31.334123,abortion pill side effects long term,long term effects of medical abortion,side,long-term procedures +abortion,"('long term side effects of abortion medicine', 'long term side effects of abortion pill reddit')",long term side effects of abortion medicine,long term side effects of abortion pill reddit,1,4,google,2026-03-12 19:54:32.473291,abortion pill side effects long term,long term effects of medical abortion,side medicine,pill reddit +abortion,"('long term side effects of abortion medicine', 'long term side effects of medical abortion procedures')",long term side effects of abortion medicine,long term side effects of medical abortion procedures,2,4,google,2026-03-12 19:54:32.473291,abortion pill side effects long term,long term effects of medical abortion,side medicine,medical procedures +abortion,"('long term side effects of abortion medicine', 'any long term side effects of abortion pill')",long term side effects of abortion medicine,any long term side effects of abortion pill,3,4,google,2026-03-12 19:54:32.473291,abortion pill side effects long term,long term effects of medical abortion,side medicine,any pill +abortion,"('long term side effects of abortion medicine', 'are there long term side effects of medical abortion')",long term side effects of abortion medicine,are there long term side effects of medical abortion,4,4,google,2026-03-12 19:54:32.473291,abortion pill side effects long term,long term effects of medical abortion,side medicine,are there medical +abortion,"('long term side effects of abortion medicine', 'long term effects of a medical abortion')",long term side effects of abortion medicine,long term effects of a medical abortion,5,4,google,2026-03-12 19:54:32.473291,abortion pill side effects long term,long term effects of medical abortion,side medicine,a medical +abortion,"('long term side effects of abortion medicine', 'long term effects of abortion')",long term side effects of abortion medicine,long term effects of abortion,6,4,google,2026-03-12 19:54:32.473291,abortion pill side effects long term,long term effects of medical abortion,side medicine,side medicine +abortion,"('long term side effects of abortion medicine', 'long-term side effects of abortion procedures')",long term side effects of abortion medicine,long-term side effects of abortion procedures,7,4,google,2026-03-12 19:54:32.473291,abortion pill side effects long term,long term effects of medical abortion,side medicine,long-term procedures +abortion,"('are there long term side effects of medical abortion', 'what are the long term side effects of medical abortion')",are there long term side effects of medical abortion,what are the long term side effects of medical abortion,1,4,google,2026-03-12 19:54:33.843594,abortion pill side effects long term,long term effects of medical abortion,are there side,what the +abortion,"('are there long term side effects of medical abortion', 'long term effects of a medical abortion')",are there long term side effects of medical abortion,long term effects of a medical abortion,2,4,google,2026-03-12 19:54:33.843594,abortion pill side effects long term,long term effects of medical abortion,are there side,a +abortion,"('are there long term side effects of medical abortion', 'does abortion have long term effects')",are there long term side effects of medical abortion,does abortion have long term effects,3,4,google,2026-03-12 19:54:33.843594,abortion pill side effects long term,long term effects of medical abortion,are there side,does have +abortion,"('are there long term side effects of medical abortion', 'what are the long term effects of an abortion')",are there long term side effects of medical abortion,what are the long term effects of an abortion,4,4,google,2026-03-12 19:54:33.843594,abortion pill side effects long term,long term effects of medical abortion,are there side,what the an +abortion,"('are there long term effects of a medical abortion', 'are there long term side effects of medical abortion')",are there long term effects of a medical abortion,are there long term side effects of medical abortion,1,4,google,2026-03-12 19:54:34.688023,abortion pill side effects long term,long term effects of medical abortion,are there a,side +abortion,"('are there long term effects of a medical abortion', 'are there long term effects of abortion pill')",are there long term effects of a medical abortion,are there long term effects of abortion pill,2,4,google,2026-03-12 19:54:34.688023,abortion pill side effects long term,long term effects of medical abortion,are there a,pill +abortion,"('are there long term effects of a medical abortion', 'are there long term side effects of having a pill abortion')",are there long term effects of a medical abortion,are there long term side effects of having a pill abortion,3,4,google,2026-03-12 19:54:34.688023,abortion pill side effects long term,long term effects of medical abortion,are there a,side having pill +abortion,"('are there long term effects of a medical abortion', 'what are the long term effects of a medical abortion')",are there long term effects of a medical abortion,what are the long term effects of a medical abortion,4,4,google,2026-03-12 19:54:34.688023,abortion pill side effects long term,long term effects of medical abortion,are there a,what the +abortion,"('are there long term effects of a medical abortion', 'are there side effects of medical abortion')",are there long term effects of a medical abortion,are there side effects of medical abortion,5,4,google,2026-03-12 19:54:34.688023,abortion pill side effects long term,long term effects of medical abortion,are there a,side +abortion,"('are there long term effects of a medical abortion', 'does abortion have long term effects')",are there long term effects of a medical abortion,does abortion have long term effects,6,4,google,2026-03-12 19:54:34.688023,abortion pill side effects long term,long term effects of medical abortion,are there a,does have +abortion,"('are there long term effects of a medical abortion', 'what are the long term effects of an abortion')",are there long term effects of a medical abortion,what are the long term effects of an abortion,7,4,google,2026-03-12 19:54:34.688023,abortion pill side effects long term,long term effects of medical abortion,are there a,what the an +abortion,"('how long do side effects of medical abortion last', 'how long do symptoms of medical abortion last')",how long do side effects of medical abortion last,how long do symptoms of medical abortion last,1,4,google,2026-03-12 19:54:36.084506,abortion pill side effects long term,long term effects of medical abortion,how do side last,symptoms +abortion,"('how long do side effects of medical abortion last', 'how long does the bleeding after abortion last')",how long do side effects of medical abortion last,how long does the bleeding after abortion last,2,4,google,2026-03-12 19:54:36.084506,abortion pill side effects long term,long term effects of medical abortion,how do side last,does the bleeding after +abortion,"('how long do side effects of medical abortion last', 'how long does pain after medical abortion last')",how long do side effects of medical abortion last,how long does pain after medical abortion last,3,4,google,2026-03-12 19:54:36.084506,abortion pill side effects long term,long term effects of medical abortion,how do side last,does pain after +abortion,"('how long do side effects of medical abortion last', 'how long pain after abortion')",how long do side effects of medical abortion last,how long pain after abortion,4,4,google,2026-03-12 19:54:36.084506,abortion pill side effects long term,long term effects of medical abortion,how do side last,pain after +abortion,"('how long do side effects of medical abortion last', 'how long do side effects of abortion last')",how long do side effects of medical abortion last,how long do side effects of abortion last,5,4,google,2026-03-12 19:54:36.084506,abortion pill side effects long term,long term effects of medical abortion,how do side last,how do side last +abortion,"('side effects of medical abortion', 'side effects of medical abortion in future pregnancy')",side effects of medical abortion,side effects of medical abortion in future pregnancy,1,4,google,2026-03-12 19:54:37.528449,abortion pill side effects long term,long term effects of medical abortion,side,in future pregnancy +abortion,"('side effects of medical abortion', 'side effects of medical abortion pill')",side effects of medical abortion,side effects of medical abortion pill,2,4,google,2026-03-12 19:54:37.528449,abortion pill side effects long term,long term effects of medical abortion,side,pill +abortion,"('side effects of medical abortion', 'side effects of medical abortion procedures')",side effects of medical abortion,side effects of medical abortion procedures,3,4,google,2026-03-12 19:54:37.528449,abortion pill side effects long term,long term effects of medical abortion,side,procedures +abortion,"('side effects of medical abortion', 'side effects of medical abortion at 6 weeks')",side effects of medical abortion,side effects of medical abortion at 6 weeks,4,4,google,2026-03-12 19:54:37.528449,abortion pill side effects long term,long term effects of medical abortion,side,at 6 weeks +abortion,"('side effects of medical abortion', 'side effects of medical abortion long term')",side effects of medical abortion,side effects of medical abortion long term,5,4,google,2026-03-12 19:54:37.528449,abortion pill side effects long term,long term effects of medical abortion,side,long term +abortion,"('side effects of medical abortion', 'side effects of medical abortion in future')",side effects of medical abortion,side effects of medical abortion in future,6,4,google,2026-03-12 19:54:37.528449,abortion pill side effects long term,long term effects of medical abortion,side,in future +abortion,"('side effects of medical abortion', 'side effects of medical abortion marie stopes')",side effects of medical abortion,side effects of medical abortion marie stopes,7,4,google,2026-03-12 19:54:37.528449,abortion pill side effects long term,long term effects of medical abortion,side,marie stopes +abortion,"('side effects of medical abortion', 'side effects of medical abortion reddit')",side effects of medical abortion,side effects of medical abortion reddit,8,4,google,2026-03-12 19:54:37.528449,abortion pill side effects long term,long term effects of medical abortion,side,reddit +abortion,"('side effects of medical abortion', 'side effects of medical abortion at 4 weeks')",side effects of medical abortion,side effects of medical abortion at 4 weeks,9,4,google,2026-03-12 19:54:37.528449,abortion pill side effects long term,long term effects of medical abortion,side,at 4 weeks +abortion,"('side effects of medical abortion in future pregnancy', 'does medical abortion affect future pregnancy')",side effects of medical abortion in future pregnancy,does medical abortion affect future pregnancy,1,4,google,2026-03-12 19:54:38.396214,abortion pill side effects long term,long term effects of medical abortion,side in future pregnancy,does affect +abortion,"('side effects of medical abortion in future pregnancy', 'do medical abortion affect future pregnancies')",side effects of medical abortion in future pregnancy,do medical abortion affect future pregnancies,2,4,google,2026-03-12 19:54:38.396214,abortion pill side effects long term,long term effects of medical abortion,side in future pregnancy,do affect pregnancies +abortion,"('side effects of medical abortion in future pregnancy', 'long term effects of medical abortion')",side effects of medical abortion in future pregnancy,long term effects of medical abortion,3,4,google,2026-03-12 19:54:38.396214,abortion pill side effects long term,long term effects of medical abortion,side in future pregnancy,long term +abortion,"('side effects of medical abortion in future pregnancy', 'side effects of medical abortion procedures')",side effects of medical abortion in future pregnancy,side effects of medical abortion procedures,4,4,google,2026-03-12 19:54:38.396214,abortion pill side effects long term,long term effects of medical abortion,side in future pregnancy,procedures +abortion,"('side effects of medical abortion in future pregnancy', 'side effects of abortion pill for future pregnancy')",side effects of medical abortion in future pregnancy,side effects of abortion pill for future pregnancy,5,4,google,2026-03-12 19:54:38.396214,abortion pill side effects long term,long term effects of medical abortion,side in future pregnancy,pill for +abortion,"('side effects of medical abortion pill', 'side effects of first medical abortion pill')",side effects of medical abortion pill,side effects of first medical abortion pill,1,4,google,2026-03-12 19:54:39.268642,abortion pill side effects long term,long term effects of medical abortion,side pill,first +abortion,"('side effects of medical abortion pill', 'side effects of termination pill')",side effects of medical abortion pill,side effects of termination pill,2,4,google,2026-03-12 19:54:39.268642,abortion pill side effects long term,long term effects of medical abortion,side pill,termination +abortion,"('side effects of medical abortion pill', 'symptoms of medical abortion pill')",side effects of medical abortion pill,symptoms of medical abortion pill,3,4,google,2026-03-12 19:54:39.268642,abortion pill side effects long term,long term effects of medical abortion,side pill,symptoms +abortion,"('side effects of medical abortion pill', 'how long do side effects of misoprostol last')",side effects of medical abortion pill,how long do side effects of misoprostol last,4,4,google,2026-03-12 19:54:39.268642,abortion pill side effects long term,long term effects of medical abortion,side pill,how long do misoprostol last +abortion,"('side effects of medical abortion pill', 'how long do the side effects of medical abortion last')",side effects of medical abortion pill,how long do the side effects of medical abortion last,5,4,google,2026-03-12 19:54:39.268642,abortion pill side effects long term,long term effects of medical abortion,side pill,how long do the last +abortion,"('side effects of medical abortion pill', 'side effects of misoprostol after abortion')",side effects of medical abortion pill,side effects of misoprostol after abortion,6,4,google,2026-03-12 19:54:39.268642,abortion pill side effects long term,long term effects of medical abortion,side pill,misoprostol after +abortion,"('side effects of medical abortion pill', 'side effects of medical abortion procedures')",side effects of medical abortion pill,side effects of medical abortion procedures,7,4,google,2026-03-12 19:54:39.268642,abortion pill side effects long term,long term effects of medical abortion,side pill,procedures +abortion,"('side effects of medical abortion pill', 'side effects of medical abortion')",side effects of medical abortion pill,side effects of medical abortion,8,4,google,2026-03-12 19:54:39.268642,abortion pill side effects long term,long term effects of medical abortion,side pill,side pill +abortion,"('day after pill side effects reddit', 'morning after pill side effects reddit')",day after pill side effects reddit,morning after pill side effects reddit,1,4,google,2026-03-12 19:54:40.468425,abortion pill side effects reddit,morning after pill side effects reddit,day,morning +abortion,"('day after pill side effects reddit', 'ella morning after pill side effects reddit')",day after pill side effects reddit,ella morning after pill side effects reddit,2,4,google,2026-03-12 19:54:40.468425,abortion pill side effects reddit,morning after pill side effects reddit,day,ella morning +abortion,"('day after pill side effects reddit', 'morning after pill emotional side effects reddit')",day after pill side effects reddit,morning after pill emotional side effects reddit,3,4,google,2026-03-12 19:54:40.468425,abortion pill side effects reddit,morning after pill side effects reddit,day,morning emotional +abortion,"('day after pill side effects reddit', 'morning after pill long term side effects reddit')",day after pill side effects reddit,morning after pill long term side effects reddit,4,4,google,2026-03-12 19:54:40.468425,abortion pill side effects reddit,morning after pill side effects reddit,day,morning long term +abortion,"('day after pill side effects reddit', 'morning after pill side effects menstrual cycle reddit')",day after pill side effects reddit,morning after pill side effects menstrual cycle reddit,5,4,google,2026-03-12 19:54:40.468425,abortion pill side effects reddit,morning after pill side effects reddit,day,morning menstrual cycle +abortion,"('day after pill side effects reddit', 'day after pill side effects')",day after pill side effects reddit,day after pill side effects,6,4,google,2026-03-12 19:54:40.468425,abortion pill side effects reddit,morning after pill side effects reddit,day,day +abortion,"('day after pill side effects reddit', 'side effect of next day pill')",day after pill side effects reddit,side effect of next day pill,7,4,google,2026-03-12 19:54:40.468425,abortion pill side effects reddit,morning after pill side effects reddit,day,effect of next +abortion,"('day after pill side effects reddit', 'day after pill side effects period')",day after pill side effects reddit,day after pill side effects period,8,4,google,2026-03-12 19:54:40.468425,abortion pill side effects reddit,morning after pill side effects reddit,day,period +abortion,"('day after pill side effects reddit', 'day after pill side effects long term')",day after pill side effects reddit,day after pill side effects long term,9,4,google,2026-03-12 19:54:40.468425,abortion pill side effects reddit,morning after pill side effects reddit,day,long term +abortion,"('does the morning after pill cause side effects', 'does the day after pill have side effects')",does the morning after pill cause side effects,does the day after pill have side effects,1,4,google,2026-03-12 19:54:41.380733,abortion pill side effects reddit,morning after pill side effects reddit,does the cause,day have +abortion,"('does the morning after pill cause side effects', 'does the morning after pill have negative side effects')",does the morning after pill cause side effects,does the morning after pill have negative side effects,2,4,google,2026-03-12 19:54:41.380733,abortion pill side effects reddit,morning after pill side effects reddit,does the cause,have negative +abortion,"('does the morning after pill cause side effects', 'does the morning after pill always have side effects')",does the morning after pill cause side effects,does the morning after pill always have side effects,3,4,google,2026-03-12 19:54:41.380733,abortion pill side effects reddit,morning after pill side effects reddit,does the cause,always have +abortion,"('does the morning after pill cause side effects', 'does the morning after pill have long term side effects')",does the morning after pill cause side effects,does the morning after pill have long term side effects,4,4,google,2026-03-12 19:54:41.380733,abortion pill side effects reddit,morning after pill side effects reddit,does the cause,have long term +abortion,"('does the morning after pill cause side effects', 'how long does the morning after pill have side effects')",does the morning after pill cause side effects,how long does the morning after pill have side effects,5,4,google,2026-03-12 19:54:41.380733,abortion pill side effects reddit,morning after pill side effects reddit,does the cause,how long have +abortion,"('does the morning after pill cause side effects', 'does the morning after pill have any long lasting side effects')",does the morning after pill cause side effects,does the morning after pill have any long lasting side effects,6,4,google,2026-03-12 19:54:41.380733,abortion pill side effects reddit,morning after pill side effects reddit,does the cause,have any long lasting +abortion,"('does the morning after pill cause side effects', 'do morning after pills have any side effects')",does the morning after pill cause side effects,do morning after pills have any side effects,7,4,google,2026-03-12 19:54:41.380733,abortion pill side effects reddit,morning after pill side effects reddit,does the cause,do pills have any +abortion,"('morning after pill side effects bleeding', 'morning after pill side effects bleeding between periods')",morning after pill side effects bleeding,morning after pill side effects bleeding between periods,1,4,google,2026-03-12 19:54:42.720296,abortion pill side effects reddit,morning after pill side effects reddit,bleeding,between periods +abortion,"('morning after pill side effects bleeding', 'morning after pill side effects bleeding week later')",morning after pill side effects bleeding,morning after pill side effects bleeding week later,2,4,google,2026-03-12 19:54:42.720296,abortion pill side effects reddit,morning after pill side effects reddit,bleeding,week later +abortion,"('morning after pill side effects bleeding', 'morning after pill side effects spotting')",morning after pill side effects bleeding,morning after pill side effects spotting,3,4,google,2026-03-12 19:54:42.720296,abortion pill side effects reddit,morning after pill side effects reddit,bleeding,spotting +abortion,"('morning after pill side effects bleeding', 'morning after pill side effects blood clots')",morning after pill side effects bleeding,morning after pill side effects blood clots,4,4,google,2026-03-12 19:54:42.720296,abortion pill side effects reddit,morning after pill side effects reddit,bleeding,blood clots +abortion,"('morning after pill side effects bleeding', 'morning after pill side effects heavy bleeding')",morning after pill side effects bleeding,morning after pill side effects heavy bleeding,5,4,google,2026-03-12 19:54:42.720296,abortion pill side effects reddit,morning after pill side effects reddit,bleeding,heavy +abortion,"('morning after pill side effects bleeding', 'morning after pill side effects light bleeding')",morning after pill side effects bleeding,morning after pill side effects light bleeding,6,4,google,2026-03-12 19:54:42.720296,abortion pill side effects reddit,morning after pill side effects reddit,bleeding,light +abortion,"('morning after pill side effects bleeding', 'plan b morning after pill side effects bleeding')",morning after pill side effects bleeding,plan b morning after pill side effects bleeding,7,4,google,2026-03-12 19:54:42.720296,abortion pill side effects reddit,morning after pill side effects reddit,bleeding,plan b +abortion,"('morning after pill side effects bleeding', 'plan b pill side effects bleeding')",morning after pill side effects bleeding,plan b pill side effects bleeding,8,4,google,2026-03-12 19:54:42.720296,abortion pill side effects reddit,morning after pill side effects reddit,bleeding,plan b +abortion,"('morning after pill side effects bleeding', 'emergency pill side effects bleeding')",morning after pill side effects bleeding,emergency pill side effects bleeding,9,4,google,2026-03-12 19:54:42.720296,abortion pill side effects reddit,morning after pill side effects reddit,bleeding,emergency +abortion,"('abortion pill long term effects reddit', 'abortion pill long term side effects reddit')",abortion pill long term effects reddit,abortion pill long term side effects reddit,1,4,google,2026-03-12 19:54:44.033062,abortion pill side effects reddit,abortion pill after effects reddit,long term,side +abortion,"('abortion pill long term effects reddit', 'abortion pill reviews reddit')",abortion pill long term effects reddit,abortion pill reviews reddit,2,4,google,2026-03-12 19:54:44.033062,abortion pill side effects reddit,abortion pill after effects reddit,long term,reviews +abortion,"('abortion pill long term effects reddit', 'long term effects of a medical abortion')",abortion pill long term effects reddit,long term effects of a medical abortion,3,4,google,2026-03-12 19:54:44.033062,abortion pill side effects reddit,abortion pill after effects reddit,long term,of a medical +abortion,"('abortion pill long term effects reddit', 'abortion pill 3 weeks reddit')",abortion pill long term effects reddit,abortion pill 3 weeks reddit,4,4,google,2026-03-12 19:54:44.033062,abortion pill side effects reddit,abortion pill after effects reddit,long term,3 weeks +abortion,"('abortion pill long term effects reddit', 'abortion pill timeline reddit')",abortion pill long term effects reddit,abortion pill timeline reddit,5,4,google,2026-03-12 19:54:44.033062,abortion pill side effects reddit,abortion pill after effects reddit,long term,timeline +abortion,"('abortion pill long term effects reddit', 'abortion pill long term side effects')",abortion pill long term effects reddit,abortion pill long term side effects,6,4,google,2026-03-12 19:54:44.033062,abortion pill side effects reddit,abortion pill after effects reddit,long term,side +abortion,"('abortion pill long term effects reddit', 'abortion pill pain level reddit')",abortion pill long term effects reddit,abortion pill pain level reddit,7,4,google,2026-03-12 19:54:44.033062,abortion pill side effects reddit,abortion pill after effects reddit,long term,pain level +abortion,"('abortion pill long term effects reddit', 'abortion pill effects reddit')",abortion pill long term effects reddit,abortion pill effects reddit,8,4,google,2026-03-12 19:54:44.033062,abortion pill side effects reddit,abortion pill after effects reddit,long term,long term +abortion,"('abortion after effects', 'abortion after effects on body')",abortion after effects,abortion after effects on body,1,4,google,2026-03-12 19:54:45.237098,abortion pill side effects reddit,abortion pill after effects reddit,after,on body +abortion,"('abortion after effects', 'abortion after effects malayalam')",abortion after effects,abortion after effects malayalam,2,4,google,2026-03-12 19:54:45.237098,abortion pill side effects reddit,abortion pill after effects reddit,after,malayalam +abortion,"('abortion after effects', 'abortion after effects symptoms')",abortion after effects,abortion after effects symptoms,3,4,google,2026-03-12 19:54:45.237098,abortion pill side effects reddit,abortion pill after effects reddit,after,symptoms +abortion,"('abortion after effects', 'abortion after effects mentally')",abortion after effects,abortion after effects mentally,4,4,google,2026-03-12 19:54:45.237098,abortion pill side effects reddit,abortion pill after effects reddit,after,mentally +abortion,"('abortion after effects', 'abortion after effects reddit')",abortion after effects,abortion after effects reddit,5,4,google,2026-03-12 19:54:45.237098,abortion pill side effects reddit,abortion pill after effects reddit,after,reddit +abortion,"('abortion after effects', 'abortion effects after 4 weeks')",abortion after effects,abortion effects after 4 weeks,6,4,google,2026-03-12 19:54:45.237098,abortion pill side effects reddit,abortion pill after effects reddit,after,4 weeks +abortion,"('abortion after effects', 'abortion side effects')",abortion after effects,abortion side effects,7,4,google,2026-03-12 19:54:45.237098,abortion pill side effects reddit,abortion pill after effects reddit,after,side +abortion,"('abortion after effects', 'miscarriage after effects')",abortion after effects,miscarriage after effects,8,4,google,2026-03-12 19:54:45.237098,abortion pill side effects reddit,abortion pill after effects reddit,after,miscarriage +abortion,"('abortion after effects', 'abortion side effects long term')",abortion after effects,abortion side effects long term,9,4,google,2026-03-12 19:54:45.237098,abortion pill side effects reddit,abortion pill after effects reddit,after,side long term +abortion,"('abortion after effects on body', 'abortion side effects on body')",abortion after effects on body,abortion side effects on body,1,4,google,2026-03-12 19:54:46.589208,abortion pill side effects reddit,abortion pill after effects reddit,on body,side +abortion,"('abortion after effects on body', 'abortion pill side effects on body')",abortion after effects on body,abortion pill side effects on body,2,4,google,2026-03-12 19:54:46.589208,abortion pill side effects reddit,abortion pill after effects reddit,on body,pill side +abortion,"('abortion after effects on body', 'miscarriage after effects body')",abortion after effects on body,miscarriage after effects body,3,4,google,2026-03-12 19:54:46.589208,abortion pill side effects reddit,abortion pill after effects reddit,on body,miscarriage +abortion,"('abortion after effects on body', 'abortion after effects')",abortion after effects on body,abortion after effects,4,4,google,2026-03-12 19:54:46.589208,abortion pill side effects reddit,abortion pill after effects reddit,on body,on body +abortion,"('abortion after effects on body', 'abortion after effects symptoms')",abortion after effects on body,abortion after effects symptoms,5,4,google,2026-03-12 19:54:46.589208,abortion pill side effects reddit,abortion pill after effects reddit,on body,symptoms +abortion,"('abortion after effects on body', ""what happens to a woman's body after an abortion"")",abortion after effects on body,what happens to a woman's body after an abortion,6,4,google,2026-03-12 19:54:46.589208,abortion pill side effects reddit,abortion pill after effects reddit,on body,what happens to a woman's an +abortion,"('first abortion side effects', 'first abortion side effects in hindi')",first abortion side effects,first abortion side effects in hindi,1,4,google,2026-03-12 19:54:47.535177,abortion pill side effects reddit,first abortion pill side effects reddit,first,in hindi +abortion,"('first abortion side effects', 'early abortion side effects')",first abortion side effects,early abortion side effects,2,4,google,2026-03-12 19:54:47.535177,abortion pill side effects reddit,first abortion pill side effects reddit,first,early +abortion,"('first abortion side effects', 'first abortion pill side effects')",first abortion side effects,first abortion pill side effects,3,4,google,2026-03-12 19:54:47.535177,abortion pill side effects reddit,first abortion pill side effects reddit,first,pill +abortion,"('first abortion side effects', 'first pregnancy abortion side effects')",first abortion side effects,first pregnancy abortion side effects,4,4,google,2026-03-12 19:54:47.535177,abortion pill side effects reddit,first abortion pill side effects reddit,first,pregnancy +abortion,"('first abortion side effects', 'first month abortion side effects')",first abortion side effects,first month abortion side effects,5,4,google,2026-03-12 19:54:47.535177,abortion pill side effects reddit,first abortion pill side effects reddit,first,month +abortion,"('first abortion side effects', 'first trimester abortion side effects')",first abortion side effects,first trimester abortion side effects,6,4,google,2026-03-12 19:54:47.535177,abortion pill side effects reddit,first abortion pill side effects reddit,first,trimester +abortion,"('first abortion side effects', 'first abortion pill side effects reddit')",first abortion side effects,first abortion pill side effects reddit,7,4,google,2026-03-12 19:54:47.535177,abortion pill side effects reddit,first abortion pill side effects reddit,first,pill reddit +abortion,"('first abortion side effects', 'early pregnancy abortion side effects')",first abortion side effects,early pregnancy abortion side effects,8,4,google,2026-03-12 19:54:47.535177,abortion pill side effects reddit,first abortion pill side effects reddit,first,early pregnancy +abortion,"('first abortion side effects', 'early medical abortion side effects')",first abortion side effects,early medical abortion side effects,9,4,google,2026-03-12 19:54:47.535177,abortion pill side effects reddit,first abortion pill side effects reddit,first,early medical +abortion,"('how does first abortion pill make you feel', 'does the first abortion pill make you feel sick')",how does first abortion pill make you feel,does the first abortion pill make you feel sick,1,4,google,2026-03-12 19:54:48.531284,abortion pill side effects reddit,first abortion pill side effects reddit,how does make you feel,the sick +abortion,"('how does first abortion pill make you feel', 'does the first abortion pill make you feel anything')",how does first abortion pill make you feel,does the first abortion pill make you feel anything,2,4,google,2026-03-12 19:54:48.531284,abortion pill side effects reddit,first abortion pill side effects reddit,how does make you feel,the anything +abortion,"('how does first abortion pill make you feel', 'does the first abortion pill make you feel bad')",how does first abortion pill make you feel,does the first abortion pill make you feel bad,3,4,google,2026-03-12 19:54:48.531284,abortion pill side effects reddit,first abortion pill side effects reddit,how does make you feel,the bad +abortion,"('how does first abortion pill make you feel', 'how long does it take to feel normal after abortion pill')",how does first abortion pill make you feel,how long does it take to feel normal after abortion pill,4,4,google,2026-03-12 19:54:48.531284,abortion pill side effects reddit,first abortion pill side effects reddit,how does make you feel,long it take to normal after +abortion,"('how does first abortion pill make you feel', 'how do i know the first abortion pill worked')",how does first abortion pill make you feel,how do i know the first abortion pill worked,5,4,google,2026-03-12 19:54:48.531284,abortion pill side effects reddit,first abortion pill side effects reddit,how does make you feel,do i know the worked +abortion,"('how does first abortion pill make you feel', 'how does the first abortion pill make u feel')",how does first abortion pill make you feel,how does the first abortion pill make u feel,6,4,google,2026-03-12 19:54:48.531284,abortion pill side effects reddit,first abortion pill side effects reddit,how does make you feel,the u +abortion,"('first abortion pill symptoms', 'early abortion pill symptoms')",first abortion pill symptoms,early abortion pill symptoms,1,4,google,2026-03-12 19:54:49.757331,abortion pill side effects reddit,first abortion pill side effects reddit,symptoms,early +abortion,"('first abortion pill symptoms', 'first abortion pill effects')",first abortion pill symptoms,first abortion pill effects,2,4,google,2026-03-12 19:54:49.757331,abortion pill side effects reddit,first abortion pill side effects reddit,symptoms,effects +abortion,"('first abortion pill symptoms', 'medical abortion first pill symptoms')",first abortion pill symptoms,medical abortion first pill symptoms,3,4,google,2026-03-12 19:54:49.757331,abortion pill side effects reddit,first abortion pill side effects reddit,symptoms,medical +abortion,"('first abortion pill symptoms', 'first abortion pill side effects')",first abortion pill symptoms,first abortion pill side effects,4,4,google,2026-03-12 19:54:49.757331,abortion pill side effects reddit,first abortion pill side effects reddit,symptoms,side effects +abortion,"('first abortion pill symptoms', 'first abortion pill side effects reddit')",first abortion pill symptoms,first abortion pill side effects reddit,5,4,google,2026-03-12 19:54:49.757331,abortion pill side effects reddit,first abortion pill side effects reddit,symptoms,side effects reddit +abortion,"('first abortion pill symptoms', 'symptoms after first abortion pill')",first abortion pill symptoms,symptoms after first abortion pill,6,4,google,2026-03-12 19:54:49.757331,abortion pill side effects reddit,first abortion pill side effects reddit,symptoms,after +abortion,"('first abortion pill symptoms', 'does the first abortion pill cause symptoms')",first abortion pill symptoms,does the first abortion pill cause symptoms,7,4,google,2026-03-12 19:54:49.757331,abortion pill side effects reddit,first abortion pill side effects reddit,symptoms,does the cause +abortion,"('first abortion pill symptoms', 'does the first abortion pill stop pregnancy symptoms')",first abortion pill symptoms,does the first abortion pill stop pregnancy symptoms,8,4,google,2026-03-12 19:54:49.757331,abortion pill side effects reddit,first abortion pill side effects reddit,symptoms,does the stop pregnancy +abortion,"('first abortion pill symptoms', 'does the first abortion pill cause any symptoms')",first abortion pill symptoms,does the first abortion pill cause any symptoms,9,4,google,2026-03-12 19:54:49.757331,abortion pill side effects reddit,first abortion pill side effects reddit,symptoms,does the cause any +abortion,"('first abortion pill effects', 'first abortion side effects')",first abortion pill effects,first abortion side effects,1,4,google,2026-03-12 19:54:50.828334,abortion pill side effects reddit,first abortion pill side effects reddit,first,side +abortion,"('first abortion pill effects', 'first abortion pill side effects')",first abortion pill effects,first abortion pill side effects,2,4,google,2026-03-12 19:54:50.828334,abortion pill side effects reddit,first abortion pill side effects reddit,first,side +abortion,"('first abortion pill effects', 'early abortion side effects')",first abortion pill effects,early abortion side effects,3,4,google,2026-03-12 19:54:50.828334,abortion pill side effects reddit,first abortion pill side effects reddit,first,early side +abortion,"('first abortion pill effects', 'first abortion pill side effects reddit')",first abortion pill effects,first abortion pill side effects reddit,4,4,google,2026-03-12 19:54:50.828334,abortion pill side effects reddit,first abortion pill side effects reddit,first,side reddit +abortion,"('first abortion pill effects', 'first pregnancy abortion side effects')",first abortion pill effects,first pregnancy abortion side effects,5,4,google,2026-03-12 19:54:50.828334,abortion pill side effects reddit,first abortion pill side effects reddit,first,pregnancy side +abortion,"('first abortion pill effects', 'first month abortion side effects')",first abortion pill effects,first month abortion side effects,6,4,google,2026-03-12 19:54:50.828334,abortion pill side effects reddit,first abortion pill side effects reddit,first,month side +abortion,"('first abortion pill effects', 'first abortion pill mumsnet side effects')",first abortion pill effects,first abortion pill mumsnet side effects,7,4,google,2026-03-12 19:54:50.828334,abortion pill side effects reddit,first abortion pill side effects reddit,first,mumsnet side +abortion,"('first abortion pill effects', 'first trimester abortion side effects')",first abortion pill effects,first trimester abortion side effects,8,4,google,2026-03-12 19:54:50.828334,abortion pill side effects reddit,first abortion pill side effects reddit,first,trimester side +abortion,"('first abortion pill effects', 'does first abortion pill have side effects')",first abortion pill effects,does first abortion pill have side effects,9,4,google,2026-03-12 19:54:50.828334,abortion pill side effects reddit,first abortion pill side effects reddit,first,does have side +abortion,"('what does abortion pill feel like reddit', 'what does taking an abortion pill feel like reddit')",what does abortion pill feel like reddit,what does taking an abortion pill feel like reddit,1,4,google,2026-03-12 19:54:51.853760,abortion pill side effects reddit,first abortion pill side effects reddit,what does feel like,taking an +abortion,"('what does abortion pill feel like reddit', 'what is an abortion like reddit')",what does abortion pill feel like reddit,what is an abortion like reddit,2,4,google,2026-03-12 19:54:51.853760,abortion pill side effects reddit,first abortion pill side effects reddit,what does feel like,is an +abortion,"('what does abortion pill feel like reddit', 'abortion pill reviews reddit')",what does abortion pill feel like reddit,abortion pill reviews reddit,3,4,google,2026-03-12 19:54:51.853760,abortion pill side effects reddit,first abortion pill side effects reddit,what does feel like,reviews +abortion,"('what does abortion pill feel like reddit', 'abortion pill vs surgery reddit')",what does abortion pill feel like reddit,abortion pill vs surgery reddit,4,4,google,2026-03-12 19:54:51.853760,abortion pill side effects reddit,first abortion pill side effects reddit,what does feel like,vs surgery +abortion,"('what does abortion pill feel like reddit', 'what does abortion feel like reddit')",what does abortion pill feel like reddit,what does abortion feel like reddit,5,4,google,2026-03-12 19:54:51.853760,abortion pill side effects reddit,first abortion pill side effects reddit,what does feel like,what does feel like +abortion,"('what does abortion pill feel like reddit', 'what does a medical abortion feel like reddit')",what does abortion pill feel like reddit,what does a medical abortion feel like reddit,6,4,google,2026-03-12 19:54:51.853760,abortion pill side effects reddit,first abortion pill side effects reddit,what does feel like,a medical +abortion,"('side effects of abortion pill reddit', 'long term side effects of abortion pill reddit')",side effects of abortion pill reddit,long term side effects of abortion pill reddit,1,4,google,2026-03-12 19:54:52.813282,abortion pill side effects reddit,first abortion pill side effects reddit,of,long term +abortion,"('side effects of abortion pill reddit', 'symptoms of abortion pill reddit')",side effects of abortion pill reddit,symptoms of abortion pill reddit,2,4,google,2026-03-12 19:54:52.813282,abortion pill side effects reddit,first abortion pill side effects reddit,of,symptoms +abortion,"('side effects of abortion pill reddit', 'abortion pill reviews reddit')",side effects of abortion pill reddit,abortion pill reviews reddit,3,4,google,2026-03-12 19:54:52.813282,abortion pill side effects reddit,first abortion pill side effects reddit,of,reviews +abortion,"('side effects of abortion pill reddit', 'side effects of abortion pill diarrhea')",side effects of abortion pill reddit,side effects of abortion pill diarrhea,4,4,google,2026-03-12 19:54:52.813282,abortion pill side effects reddit,first abortion pill side effects reddit,of,diarrhea +abortion,"('side effects of abortion pill reddit', 'side effects of abortion pill after')",side effects of abortion pill reddit,side effects of abortion pill after,5,4,google,2026-03-12 19:54:52.813282,abortion pill side effects reddit,first abortion pill side effects reddit,of,after +abortion,"('side effects of abortion pill reddit', 'what does the abortion pill feel like reddit')",side effects of abortion pill reddit,what does the abortion pill feel like reddit,6,4,google,2026-03-12 19:54:52.813282,abortion pill side effects reddit,first abortion pill side effects reddit,of,what does the feel like +abortion,"('abortion pill long term side effects', 'abortion pill long term side effects reddit')",abortion pill long term side effects,abortion pill long term side effects reddit,1,4,google,2026-03-12 19:54:54.040674,abortion pill side effects reddit,abortion pill long term side effects reddit,long term,reddit +abortion,"('abortion pill long term side effects', 'morning after pill long term side effects fertility')",abortion pill long term side effects,morning after pill long term side effects fertility,2,4,google,2026-03-12 19:54:54.040674,abortion pill side effects reddit,abortion pill long term side effects reddit,long term,morning after fertility +abortion,"('abortion pill long term side effects', 'morning after pill long term side effects reddit')",abortion pill long term side effects,morning after pill long term side effects reddit,3,4,google,2026-03-12 19:54:54.040674,abortion pill side effects reddit,abortion pill long term side effects reddit,long term,morning after reddit +abortion,"('abortion pill long term side effects', 'medication abortion long term side effects')",abortion pill long term side effects,medication abortion long term side effects,4,4,google,2026-03-12 19:54:54.040674,abortion pill side effects reddit,abortion pill long term side effects reddit,long term,medication +abortion,"('abortion pill long term side effects', 'does abortion pill have long term side effects')",abortion pill long term side effects,does abortion pill have long term side effects,5,4,google,2026-03-12 19:54:54.040674,abortion pill side effects reddit,abortion pill long term side effects reddit,long term,does have +abortion,"('abortion pill long term side effects', 'what are the long term effects of the abortion pill')",abortion pill long term side effects,what are the long term effects of the abortion pill,6,4,google,2026-03-12 19:54:54.040674,abortion pill side effects reddit,abortion pill long term side effects reddit,long term,what are the of the +abortion,"('abortion pill long term side effects', 'long term effects of medical abortion')",abortion pill long term side effects,long term effects of medical abortion,7,4,google,2026-03-12 19:54:54.040674,abortion pill side effects reddit,abortion pill long term side effects reddit,long term,of medical +abortion,"('abortion pill long term side effects', 'abortion pill long term')",abortion pill long term side effects,abortion pill long term,8,4,google,2026-03-12 19:54:54.040674,abortion pill side effects reddit,abortion pill long term side effects reddit,long term,long term +abortion,"('abortion pill pain level reddit', 'abortion pill pain level reviews')",abortion pill pain level reddit,abortion pill pain level reviews,1,4,google,2026-03-12 19:54:55.014031,abortion pill side effects reddit,abortion pill long term side effects reddit,pain level,reviews +abortion,"('abortion pill pain level reddit', 'abortion pill pain level')",abortion pill pain level reddit,abortion pill pain level,2,4,google,2026-03-12 19:54:55.014031,abortion pill side effects reddit,abortion pill long term side effects reddit,pain level,pain level +abortion,"('abortion pill pain level reddit', 'abortion pill pain vs labor pain')",abortion pill pain level reddit,abortion pill pain vs labor pain,3,4,google,2026-03-12 19:54:55.014031,abortion pill side effects reddit,abortion pill long term side effects reddit,pain level,vs labor +abortion,"('abortion pill pain level reddit', 'abortion pill pain reddit')",abortion pill pain level reddit,abortion pill pain reddit,4,4,google,2026-03-12 19:54:55.014031,abortion pill side effects reddit,abortion pill long term side effects reddit,pain level,pain level +abortion,"('abortion pill 3 weeks reddit', 'abortion pill vs surgery reddit')",abortion pill 3 weeks reddit,abortion pill vs surgery reddit,1,4,google,2026-03-12 19:54:56.215050,abortion pill side effects reddit,abortion pill long term side effects reddit,3 weeks,vs surgery +abortion,"('abortion pill 3 weeks reddit', 'abortion pill reviews reddit')",abortion pill 3 weeks reddit,abortion pill reviews reddit,2,4,google,2026-03-12 19:54:56.215050,abortion pill side effects reddit,abortion pill long term side effects reddit,3 weeks,reviews +abortion,"('abortion pill 3 weeks reddit', 'abortion pill 4 weeks reddit')",abortion pill 3 weeks reddit,abortion pill 4 weeks reddit,3,4,google,2026-03-12 19:54:56.215050,abortion pill side effects reddit,abortion pill long term side effects reddit,3 weeks,4 +abortion,"('abortion pill 3 weeks reddit', 'abortion pill 5 weeks reddit')",abortion pill 3 weeks reddit,abortion pill 5 weeks reddit,4,4,google,2026-03-12 19:54:56.215050,abortion pill side effects reddit,abortion pill long term side effects reddit,3 weeks,5 +abortion,"('abortion pill 3 weeks reddit', 'abortion pill 6 weeks reddit')",abortion pill 3 weeks reddit,abortion pill 6 weeks reddit,5,4,google,2026-03-12 19:54:56.215050,abortion pill side effects reddit,abortion pill long term side effects reddit,3 weeks,6 +abortion,"('ella morning after pill side effects', 'ella morning after pill side effects reddit')",ella morning after pill side effects,ella morning after pill side effects reddit,1,4,google,2026-03-12 19:54:57.400024,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,reddit +abortion,"('ella morning after pill side effects', 'ella day after pill side effects')",ella morning after pill side effects,ella day after pill side effects,2,4,google,2026-03-12 19:54:57.400024,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,day +abortion,"('ella morning after pill side effects', 'ellaone morning after pill side effects')",ella morning after pill side effects,ellaone morning after pill side effects,3,4,google,2026-03-12 19:54:57.400024,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,ellaone +abortion,"('ella morning after pill side effects', 'ella plan b pill side effects')",ella morning after pill side effects,ella plan b pill side effects,4,4,google,2026-03-12 19:54:57.400024,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,plan b +abortion,"('ella morning after pill side effects', 'ella emergency pill side effects')",ella morning after pill side effects,ella emergency pill side effects,5,4,google,2026-03-12 19:54:57.400024,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,emergency +abortion,"('ella morning after pill side effects', 'plan b ella side effects')",ella morning after pill side effects,plan b ella side effects,6,4,google,2026-03-12 19:54:57.400024,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,plan b +abortion,"('ella morning after pill side effects', 'does ellaone have side effects')",ella morning after pill side effects,does ellaone have side effects,7,4,google,2026-03-12 19:54:57.400024,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,does ellaone have +abortion,"('ella morning after pill side effects', 'ella morning after pill reviews')",ella morning after pill side effects,ella morning after pill reviews,8,4,google,2026-03-12 19:54:57.400024,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,reviews +abortion,"('ella morning after pill side effects', 'ella morning after pill after ovulation')",ella morning after pill side effects,ella morning after pill after ovulation,9,4,google,2026-03-12 19:54:57.400024,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,ovulation +abortion,"('plan b ella side effects', 'plan b vs ella side effects')",plan b ella side effects,plan b vs ella side effects,1,4,google,2026-03-12 19:54:58.588414,abortion pill side effects reddit,ella morning after pill side effects reddit,plan b,vs +abortion,"('plan b ella side effects', 'plan b vs ella side effects reddit')",plan b ella side effects,plan b vs ella side effects reddit,2,4,google,2026-03-12 19:54:58.588414,abortion pill side effects reddit,ella morning after pill side effects reddit,plan b,vs reddit +abortion,"('plan b ella side effects', 'ella plan b side effects reddit')",plan b ella side effects,ella plan b side effects reddit,3,4,google,2026-03-12 19:54:58.588414,abortion pill side effects reddit,ella morning after pill side effects reddit,plan b,reddit +abortion,"('plan b ella side effects', 'ella plan b pill side effects')",plan b ella side effects,ella plan b pill side effects,4,4,google,2026-03-12 19:54:58.588414,abortion pill side effects reddit,ella morning after pill side effects reddit,plan b,pill +abortion,"('plan b ella side effects', 'does ella or plan b have more side effects')",plan b ella side effects,does ella or plan b have more side effects,5,4,google,2026-03-12 19:54:58.588414,abortion pill side effects reddit,ella morning after pill side effects reddit,plan b,does or have more +abortion,"('plan b ella side effects', 'does ella or plan b have worse side effects')",plan b ella side effects,does ella or plan b have worse side effects,6,4,google,2026-03-12 19:54:58.588414,abortion pill side effects reddit,ella morning after pill side effects reddit,plan b,does or have worse +abortion,"('plan b ella side effects', 'plan b vs ella')",plan b ella side effects,plan b vs ella,7,4,google,2026-03-12 19:54:58.588414,abortion pill side effects reddit,ella morning after pill side effects reddit,plan b,vs +abortion,"('plan b ella side effects', 'plan b side effects pregnancy')",plan b ella side effects,plan b side effects pregnancy,8,4,google,2026-03-12 19:54:58.588414,abortion pill side effects reddit,ella morning after pill side effects reddit,plan b,pregnancy +abortion,"('plan b ella side effects', 'plan b side effects bad')",plan b ella side effects,plan b side effects bad,9,4,google,2026-03-12 19:54:58.588414,abortion pill side effects reddit,ella morning after pill side effects reddit,plan b,bad +abortion,"('does ellaone have side effects', 'does ella one have fewer side effects')",does ellaone have side effects,does ella one have fewer side effects,1,4,google,2026-03-12 19:54:59.581959,abortion pill side effects reddit,ella morning after pill side effects reddit,does ellaone have,ella one fewer +abortion,"('does ellaone have side effects', 'what does ellaone do to your body')",does ellaone have side effects,what does ellaone do to your body,2,4,google,2026-03-12 19:54:59.581959,abortion pill side effects reddit,ella morning after pill side effects reddit,does ellaone have,what do to your body +abortion,"('does ellaone have side effects', 'how long does ellaone stay in your system')",does ellaone have side effects,how long does ellaone stay in your system,3,4,google,2026-03-12 19:54:59.581959,abortion pill side effects reddit,ella morning after pill side effects reddit,does ellaone have,how long stay in your system +abortion,"('does ellaone have side effects', 'how long do ellaone side effects last')",does ellaone have side effects,how long do ellaone side effects last,4,4,google,2026-03-12 19:54:59.581959,abortion pill side effects reddit,ella morning after pill side effects reddit,does ellaone have,how long do last +abortion,"('does ellaone have side effects', 'is ellaone bad for you')",does ellaone have side effects,is ellaone bad for you,5,4,google,2026-03-12 19:54:59.581959,abortion pill side effects reddit,ella morning after pill side effects reddit,does ellaone have,is bad for you +abortion,"('does ellaone have side effects', 'does ella have side effects')",does ellaone have side effects,does ella have side effects,6,4,google,2026-03-12 19:54:59.581959,abortion pill side effects reddit,ella morning after pill side effects reddit,does ellaone have,ella +abortion,"('does ellaone have side effects', 'how long does ella side effects last')",does ellaone have side effects,how long does ella side effects last,7,4,google,2026-03-12 19:54:59.581959,abortion pill side effects reddit,ella morning after pill side effects reddit,does ellaone have,how long ella last +abortion,"('does ellaone have side effects', 'does ella have hormones')",does ellaone have side effects,does ella have hormones,8,4,google,2026-03-12 19:54:59.581959,abortion pill side effects reddit,ella morning after pill side effects reddit,does ellaone have,ella hormones +abortion,"('does ellaone have side effects', 'does ella work after implantation')",does ellaone have side effects,does ella work after implantation,9,4,google,2026-03-12 19:54:59.581959,abortion pill side effects reddit,ella morning after pill side effects reddit,does ellaone have,ella work after implantation +abortion,"('ella morning after pill reddit', 'ella morning after pill side effects reddit')",ella morning after pill reddit,ella morning after pill side effects reddit,1,4,google,2026-03-12 19:55:00.749243,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,side effects +abortion,"('ella morning after pill reddit', 'ella morning after pill reviews')",ella morning after pill reddit,ella morning after pill reviews,2,4,google,2026-03-12 19:55:00.749243,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,reviews +abortion,"('ella morning after pill reddit', 'ella morning after pill walgreens')",ella morning after pill reddit,ella morning after pill walgreens,3,4,google,2026-03-12 19:55:00.749243,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,walgreens +abortion,"('ella morning after pill reddit', 'ella morning after pill cvs')",ella morning after pill reddit,ella morning after pill cvs,4,4,google,2026-03-12 19:55:00.749243,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,cvs +abortion,"('ella pill side effects reddit', 'ella morning after pill side effects reddit')",ella pill side effects reddit,ella morning after pill side effects reddit,1,4,google,2026-03-12 19:55:01.770892,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,morning after +abortion,"('ella pill side effects reddit', 'ella side effects reddit')",ella pill side effects reddit,ella side effects reddit,2,4,google,2026-03-12 19:55:01.770892,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,ella morning after +abortion,"('ella pill side effects reddit', 'ella pill side effects reviews')",ella pill side effects reddit,ella pill side effects reviews,3,4,google,2026-03-12 19:55:01.770892,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,reviews +abortion,"('ella pill side effects reddit', 'ella pill side effects bleeding')",ella pill side effects reddit,ella pill side effects bleeding,4,4,google,2026-03-12 19:55:01.770892,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,bleeding +abortion,"('ella pill side effects reddit', 'ella pill reddit')",ella pill side effects reddit,ella pill reddit,5,4,google,2026-03-12 19:55:01.770892,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,ella morning after +abortion,"('ella side effects reddit', 'ella pill side effects reddit')",ella side effects reddit,ella pill side effects reddit,1,4,google,2026-03-12 19:55:02.931186,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,pill +abortion,"('ella side effects reddit', 'ellaone side effects reddit')",ella side effects reddit,ellaone side effects reddit,2,4,google,2026-03-12 19:55:02.931186,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,ellaone +abortion,"('ella side effects reddit', 'ella plan b side effects reddit')",ella side effects reddit,ella plan b side effects reddit,3,4,google,2026-03-12 19:55:02.931186,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,plan b +abortion,"('ella side effects reddit', 'ella vs plan b side effects reddit')",ella side effects reddit,ella vs plan b side effects reddit,4,4,google,2026-03-12 19:55:02.931186,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,vs plan b +abortion,"('ella side effects reddit', 'ella morning after pill side effects reddit')",ella side effects reddit,ella morning after pill side effects reddit,5,4,google,2026-03-12 19:55:02.931186,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,morning after pill +abortion,"('ella side effects reddit', 'how long do ella side effects last reddit')",ella side effects reddit,how long do ella side effects last reddit,6,4,google,2026-03-12 19:55:02.931186,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,how long do last +abortion,"('ella side effects reddit', 'ella side effects mood')",ella side effects reddit,ella side effects mood,7,4,google,2026-03-12 19:55:02.931186,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,mood +abortion,"('ella side effects reddit', 'ella.side effects')",ella side effects reddit,ella.side effects,8,4,google,2026-03-12 19:55:02.931186,abortion pill side effects reddit,ella morning after pill side effects reddit,ella morning after,ella.side +abortion,"('ella morning after pill reviews', 'ella plan b reviews')",ella morning after pill reviews,ella plan b reviews,1,4,google,2026-03-12 19:55:04.467359,abortion pill side effects reddit,ella morning after pill side effects reddit,reviews,plan b +abortion,"('ella morning after pill reviews', 'is ella or plan b better')",ella morning after pill reviews,is ella or plan b better,2,4,google,2026-03-12 19:55:04.467359,abortion pill side effects reddit,ella morning after pill side effects reddit,reviews,is or plan b better +abortion,"('ella morning after pill reviews', 'ella morning after pill where to buy')",ella morning after pill reviews,ella morning after pill where to buy,3,4,google,2026-03-12 19:55:04.467359,abortion pill side effects reddit,ella morning after pill side effects reddit,reviews,where to buy +abortion,"('ella morning after pill reviews', 'plan b ella side effects')",ella morning after pill reviews,plan b ella side effects,4,4,google,2026-03-12 19:55:04.467359,abortion pill side effects reddit,ella morning after pill side effects reddit,reviews,plan b side effects +abortion,"('ella morning after pill reviews', 'how effective is ella plan b')",ella morning after pill reviews,how effective is ella plan b,5,4,google,2026-03-12 19:55:04.467359,abortion pill side effects reddit,ella morning after pill side effects reddit,reviews,how effective is plan b +abortion,"('ella morning after pill reviews', 'ella morning after pill reddit')",ella morning after pill reviews,ella morning after pill reddit,6,4,google,2026-03-12 19:55:04.467359,abortion pill side effects reddit,ella morning after pill side effects reddit,reviews,reddit +abortion,"('ella morning after pill reviews', 'ella morning-after pill walgreens')",ella morning after pill reviews,ella morning-after pill walgreens,7,4,google,2026-03-12 19:55:04.467359,abortion pill side effects reddit,ella morning after pill side effects reddit,reviews,morning-after walgreens +abortion,"('ella morning after pill reviews', 'ella morning after pill vs plan b')",ella morning after pill reviews,ella morning after pill vs plan b,8,4,google,2026-03-12 19:55:04.467359,abortion pill side effects reddit,ella morning after pill side effects reddit,reviews,vs plan b +abortion,"('ella morning after pill reviews', 'ella morning after pill prescription')",ella morning after pill reviews,ella morning after pill prescription,9,4,google,2026-03-12 19:55:04.467359,abortion pill side effects reddit,ella morning after pill side effects reddit,reviews,prescription +abortion,"('morning after pill emotional side effects', 'morning after pill emotional side effects reddit')",morning after pill emotional side effects,morning after pill emotional side effects reddit,1,4,google,2026-03-12 19:55:05.708358,abortion pill side effects reddit,morning after pill emotional side effects reddit,morning after emotional,reddit +abortion,"('morning after pill emotional side effects', 'morning after pill mental side effects')",morning after pill emotional side effects,morning after pill mental side effects,2,4,google,2026-03-12 19:55:05.708358,abortion pill side effects reddit,morning after pill emotional side effects reddit,morning after emotional,mental +abortion,"('morning after pill emotional side effects', 'morning after pill mood side effects')",morning after pill emotional side effects,morning after pill mood side effects,3,4,google,2026-03-12 19:55:05.708358,abortion pill side effects reddit,morning after pill emotional side effects reddit,morning after emotional,mood +abortion,"('morning after pill emotional side effects', 'morning after pill psychological side effects')",morning after pill emotional side effects,morning after pill psychological side effects,4,4,google,2026-03-12 19:55:05.708358,abortion pill side effects reddit,morning after pill emotional side effects reddit,morning after emotional,psychological +abortion,"('morning after pill emotional side effects', 'morning after pill side effects mood swings')",morning after pill emotional side effects,morning after pill side effects mood swings,5,4,google,2026-03-12 19:55:05.708358,abortion pill side effects reddit,morning after pill emotional side effects reddit,morning after emotional,mood swings +abortion,"('morning after pill emotional side effects', 'plan b pill emotional side effects')",morning after pill emotional side effects,plan b pill emotional side effects,6,4,google,2026-03-12 19:55:05.708358,abortion pill side effects reddit,morning after pill emotional side effects reddit,morning after emotional,plan b +abortion,"('morning after pill emotional side effects', 'morning after pill side effects depression')",morning after pill emotional side effects,morning after pill side effects depression,7,4,google,2026-03-12 19:55:05.708358,abortion pill side effects reddit,morning after pill emotional side effects reddit,morning after emotional,depression +abortion,"('morning after pill emotional side effects', 'does the morning after pill make you emotional')",morning after pill emotional side effects,does the morning after pill make you emotional,8,4,google,2026-03-12 19:55:05.708358,abortion pill side effects reddit,morning after pill emotional side effects reddit,morning after emotional,does the make you +abortion,"('morning after pill emotional side effects', 'can the morning after pill cause mood swings')",morning after pill emotional side effects,can the morning after pill cause mood swings,9,4,google,2026-03-12 19:55:05.708358,abortion pill side effects reddit,morning after pill emotional side effects reddit,morning after emotional,can the cause mood swings +abortion,"('does the morning after pill make you emotional', 'does the day after pill make you emotional')",does the morning after pill make you emotional,does the day after pill make you emotional,1,4,google,2026-03-12 19:55:07.028435,abortion pill side effects reddit,morning after pill emotional side effects reddit,does the make you,day +abortion,"('does the morning after pill make you emotional', 'does the morning after pill make you moody')",does the morning after pill make you emotional,does the morning after pill make you moody,2,4,google,2026-03-12 19:55:07.028435,abortion pill side effects reddit,morning after pill emotional side effects reddit,does the make you,moody +abortion,"('does the morning after pill make you emotional', 'does the morning after pill make you sad')",does the morning after pill make you emotional,does the morning after pill make you sad,3,4,google,2026-03-12 19:55:07.028435,abortion pill side effects reddit,morning after pill emotional side effects reddit,does the make you,sad +abortion,"('does the morning after pill make you emotional', 'does the morning after pill make you more emotional')",does the morning after pill make you emotional,does the morning after pill make you more emotional,4,4,google,2026-03-12 19:55:07.028435,abortion pill side effects reddit,morning after pill emotional side effects reddit,does the make you,more +abortion,"('does the morning after pill make you emotional', 'can the morning after pill make you sad')",does the morning after pill make you emotional,can the morning after pill make you sad,5,4,google,2026-03-12 19:55:07.028435,abortion pill side effects reddit,morning after pill emotional side effects reddit,does the make you,can sad +abortion,"('does the morning after pill make you emotional', 'can the morning after pill cause you to be emotional')",does the morning after pill make you emotional,can the morning after pill cause you to be emotional,6,4,google,2026-03-12 19:55:07.028435,abortion pill side effects reddit,morning after pill emotional side effects reddit,does the make you,can cause to be +abortion,"('does the morning after pill make you emotional', 'morning after pill make you emotional')",does the morning after pill make you emotional,morning after pill make you emotional,7,4,google,2026-03-12 19:55:07.028435,abortion pill side effects reddit,morning after pill emotional side effects reddit,does the make you,does the make you +abortion,"('does the morning after pill make you emotional', 'morning after pill make you sad')",does the morning after pill make you emotional,morning after pill make you sad,8,4,google,2026-03-12 19:55:07.028435,abortion pill side effects reddit,morning after pill emotional side effects reddit,does the make you,sad +abortion,"('does the morning after pill make you emotional', 'can the morning after pill cause mood swings')",does the morning after pill make you emotional,can the morning after pill cause mood swings,9,4,google,2026-03-12 19:55:07.028435,abortion pill side effects reddit,morning after pill emotional side effects reddit,does the make you,can cause mood swings +abortion,"('can the morning after pill cause mood swings', 'morning after pill cause mood swings')",can the morning after pill cause mood swings,morning after pill cause mood swings,1,4,google,2026-03-12 19:55:08.199266,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the cause mood swings,can the cause mood swings +abortion,"('can the morning after pill cause mood swings', 'morning after pill side effects mood swings')",can the morning after pill cause mood swings,morning after pill side effects mood swings,2,4,google,2026-03-12 19:55:08.199266,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the cause mood swings,side effects +abortion,"('can the morning after pill cause mood swings', 'morning after pill and mood swings')",can the morning after pill cause mood swings,morning after pill and mood swings,3,4,google,2026-03-12 19:55:08.199266,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the cause mood swings,and +abortion,"('can the morning after pill cause mood swings', 'can emergency pill cause mood swings')",can the morning after pill cause mood swings,can emergency pill cause mood swings,4,4,google,2026-03-12 19:55:08.199266,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the cause mood swings,emergency +abortion,"('can the morning after pill cause mood swings', 'can the morning after pill make you moody')",can the morning after pill cause mood swings,can the morning after pill make you moody,5,4,google,2026-03-12 19:55:08.199266,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the cause mood swings,make you moody +abortion,"('can the morning after pill cause mood swings', 'can the morning after pill make you irritable')",can the morning after pill cause mood swings,can the morning after pill make you irritable,6,4,google,2026-03-12 19:55:08.199266,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the cause mood swings,make you irritable +abortion,"('can the morning after pill cause mood swings', 'does the morning after pill make you emotional')",can the morning after pill cause mood swings,does the morning after pill make you emotional,7,4,google,2026-03-12 19:55:08.199266,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the cause mood swings,does make you emotional +abortion,"('can the morning after pill cause mood swings', 'can the morning after pill cause menopause')",can the morning after pill cause mood swings,can the morning after pill cause menopause,8,4,google,2026-03-12 19:55:08.199266,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the cause mood swings,menopause +abortion,"('can the morning after pill cause mood swings', 'can the morning after pill make you sleepy')",can the morning after pill cause mood swings,can the morning after pill make you sleepy,9,4,google,2026-03-12 19:55:08.199266,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the cause mood swings,make you sleepy +abortion,"('does plan b make you emotional reddit', 'does plan b make you moody reddit')",does plan b make you emotional reddit,does plan b make you moody reddit,1,4,google,2026-03-12 19:55:09.444575,abortion pill side effects reddit,morning after pill emotional side effects reddit,does plan b make you,moody +abortion,"('does plan b make you emotional reddit', 'does plan b make you emotional')",does plan b make you emotional reddit,does plan b make you emotional,2,4,google,2026-03-12 19:55:09.444575,abortion pill side effects reddit,morning after pill emotional side effects reddit,does plan b make you,does plan b make you +abortion,"('does plan b make you emotional reddit', 'does plan b cause mood swings')",does plan b make you emotional reddit,does plan b cause mood swings,3,4,google,2026-03-12 19:55:09.444575,abortion pill side effects reddit,morning after pill emotional side effects reddit,does plan b make you,cause mood swings +abortion,"('does plan b make you emotional reddit', 'how long does plan b make you emotional')",does plan b make you emotional reddit,how long does plan b make you emotional,4,4,google,2026-03-12 19:55:09.444575,abortion pill side effects reddit,morning after pill emotional side effects reddit,does plan b make you,how long +abortion,"('does plan b make you emotional reddit', 'does plan b have emotional side effects')",does plan b make you emotional reddit,does plan b have emotional side effects,5,4,google,2026-03-12 19:55:09.444575,abortion pill side effects reddit,morning after pill emotional side effects reddit,does plan b make you,have side effects +abortion,"('does plan b make you emotional reddit', 'does plan b make you more emotional')",does plan b make you emotional reddit,does plan b make you more emotional,6,4,google,2026-03-12 19:55:09.444575,abortion pill side effects reddit,morning after pill emotional side effects reddit,does plan b make you,more +abortion,"('does plan b make you emotional reddit', 'does plan b make u emotional')",does plan b make you emotional reddit,does plan b make u emotional,7,4,google,2026-03-12 19:55:09.444575,abortion pill side effects reddit,morning after pill emotional side effects reddit,does plan b make you,u +abortion,"('can the morning after pill affect your mood', 'can the morning after pill affect your emotions')",can the morning after pill affect your mood,can the morning after pill affect your emotions,1,4,google,2026-03-12 19:55:10.615943,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the affect your mood,emotions +abortion,"('can the morning after pill affect your mood', 'how long can the morning after pill affect your mood')",can the morning after pill affect your mood,how long can the morning after pill affect your mood,2,4,google,2026-03-12 19:55:10.615943,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the affect your mood,how long +abortion,"('can the morning after pill affect your mood', 'does the morning after pill affect your cycle and mood')",can the morning after pill affect your mood,does the morning after pill affect your cycle and mood,3,4,google,2026-03-12 19:55:10.615943,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the affect your mood,does cycle and +abortion,"('can the morning after pill affect your mood', 'morning after pill affect your mood')",can the morning after pill affect your mood,morning after pill affect your mood,4,4,google,2026-03-12 19:55:10.615943,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the affect your mood,can the affect your mood +abortion,"('can the morning after pill affect your mood', 'can the morning after pill cause mood swings')",can the morning after pill affect your mood,can the morning after pill cause mood swings,5,4,google,2026-03-12 19:55:10.615943,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the affect your mood,cause swings +abortion,"('can the morning after pill affect your mood', 'can the morning after pill make you moody')",can the morning after pill affect your mood,can the morning after pill make you moody,6,4,google,2026-03-12 19:55:10.615943,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the affect your mood,make you moody +abortion,"('can the morning after pill affect your mood', 'how does the morning after pill affect your mood')",can the morning after pill affect your mood,how does the morning after pill affect your mood,7,4,google,2026-03-12 19:55:10.615943,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the affect your mood,how does +abortion,"('can the morning after pill affect your mood', 'can the morning after pill make you depressed')",can the morning after pill affect your mood,can the morning after pill make you depressed,8,4,google,2026-03-12 19:55:10.615943,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the affect your mood,make you depressed +abortion,"('can the morning after pill affect your mood', 'can the morning after pill make you sleepy')",can the morning after pill affect your mood,can the morning after pill make you sleepy,9,4,google,2026-03-12 19:55:10.615943,abortion pill side effects reddit,morning after pill emotional side effects reddit,can the affect your mood,make you sleepy +abortion,"('morning after pill depression reddit', 'morning after pill depression')",morning after pill depression reddit,morning after pill depression,1,4,google,2026-03-12 19:55:11.998670,abortion pill side effects reddit,morning after pill emotional side effects reddit,depression,depression +abortion,"('morning after pill depression reddit', 'morning after pill depression how long')",morning after pill depression reddit,morning after pill depression how long,2,4,google,2026-03-12 19:55:11.998670,abortion pill side effects reddit,morning after pill emotional side effects reddit,depression,how long +abortion,"('morning after pill depression reddit', 'morning after pill side effects depression')",morning after pill depression reddit,morning after pill side effects depression,3,4,google,2026-03-12 19:55:11.998670,abortion pill side effects reddit,morning after pill emotional side effects reddit,depression,side effects +abortion,"('morning after pill depression reddit', 'morning after pill depression anxiety')",morning after pill depression reddit,morning after pill depression anxiety,4,4,google,2026-03-12 19:55:11.998670,abortion pill side effects reddit,morning after pill emotional side effects reddit,depression,anxiety +abortion,"('morning after pill depression reddit', 'morning depression and anxiety reddit')",morning after pill depression reddit,morning depression and anxiety reddit,5,4,google,2026-03-12 19:55:11.998670,abortion pill side effects reddit,morning after pill emotional side effects reddit,depression,and anxiety +abortion,"('morning after pill depression reddit', 'morning depression reddit')",morning after pill depression reddit,morning depression reddit,6,4,google,2026-03-12 19:55:11.998670,abortion pill side effects reddit,morning after pill emotional side effects reddit,depression,depression +abortion,"('emotional after plan b reddit', 'does plan b make you emotional reddit')",emotional after plan b reddit,does plan b make you emotional reddit,1,4,google,2026-03-12 19:55:13.228555,abortion pill side effects reddit,morning after pill emotional side effects reddit,plan b,does make you +abortion,"('emotional after plan b reddit', 'does plan b make you emotional')",emotional after plan b reddit,does plan b make you emotional,2,4,google,2026-03-12 19:55:13.228555,abortion pill side effects reddit,morning after pill emotional side effects reddit,plan b,does make you +abortion,"('emotional after plan b reddit', 'how long does plan b make you emotional')",emotional after plan b reddit,how long does plan b make you emotional,3,4,google,2026-03-12 19:55:13.228555,abortion pill side effects reddit,morning after pill emotional side effects reddit,plan b,how long does make you +abortion,"('emotional after plan b reddit', 'can a plan b make you emotional')",emotional after plan b reddit,can a plan b make you emotional,4,4,google,2026-03-12 19:55:13.228555,abortion pill side effects reddit,morning after pill emotional side effects reddit,plan b,can a make you +abortion,"('emotional after plan b reddit', 'emotional after plan b')",emotional after plan b reddit,emotional after plan b,5,4,google,2026-03-12 19:55:13.228555,abortion pill side effects reddit,morning after pill emotional side effects reddit,plan b,plan b +abortion,"('emotional after plan b reddit', 'emotional after taking plan b')",emotional after plan b reddit,emotional after taking plan b,6,4,google,2026-03-12 19:55:13.228555,abortion pill side effects reddit,morning after pill emotional side effects reddit,plan b,taking +abortion,"('emotional after plan b reddit', 'plan b emotional side effects reddit')",emotional after plan b reddit,plan b emotional side effects reddit,7,4,google,2026-03-12 19:55:13.228555,abortion pill side effects reddit,morning after pill emotional side effects reddit,plan b,side effects +abortion,"('modafinil long term side effects reddit', 'modafinil long term effects reddit')",modafinil long term side effects reddit,modafinil long term effects reddit,1,4,google,2026-03-12 19:55:14.432206,abortion pill side effects reddit,morning after pill long term side effects reddit,modafinil,modafinil +abortion,"('modafinil long term side effects reddit', 'is modafinil safe long term')",modafinil long term side effects reddit,is modafinil safe long term,2,4,google,2026-03-12 19:55:14.432206,abortion pill side effects reddit,morning after pill long term side effects reddit,modafinil,is safe +abortion,"('modafinil long term side effects reddit', 'modafinil long term effects')",modafinil long term side effects reddit,modafinil long term effects,3,4,google,2026-03-12 19:55:14.432206,abortion pill side effects reddit,morning after pill long term side effects reddit,modafinil,modafinil +abortion,"('modafinil long term side effects reddit', 'modafinil long term reddit')",modafinil long term side effects reddit,modafinil long term reddit,4,4,google,2026-03-12 19:55:14.432206,abortion pill side effects reddit,morning after pill long term side effects reddit,modafinil,modafinil +abortion,"('modafinil long term side effects reddit', 'modafinil long term side effects')",modafinil long term side effects reddit,modafinil long term side effects,5,4,google,2026-03-12 19:55:14.432206,abortion pill side effects reddit,morning after pill long term side effects reddit,modafinil,modafinil +abortion,"('morning-after pill bleeding 1 week later reddit', 'morning after pill bleeding 1 week later reddit')",morning-after pill bleeding 1 week later reddit,morning after pill bleeding 1 week later reddit,1,4,google,2026-03-12 19:55:15.907743,abortion pill side effects reddit,morning after pill long term side effects reddit,morning-after bleeding 1 week later,morning after +abortion,"('morning-after pill bleeding 1 week later reddit', 'morning after pill bleeding 1 week later')",morning-after pill bleeding 1 week later reddit,morning after pill bleeding 1 week later,2,4,google,2026-03-12 19:55:15.907743,abortion pill side effects reddit,morning after pill long term side effects reddit,morning-after bleeding 1 week later,morning after +abortion,"('morning-after pill bleeding 1 week later reddit', 'light bleeding a week after morning after pill')",morning-after pill bleeding 1 week later reddit,light bleeding a week after morning after pill,3,4,google,2026-03-12 19:55:15.907743,abortion pill side effects reddit,morning after pill long term side effects reddit,morning-after bleeding 1 week later,light a after morning after +abortion,"('morning-after pill bleeding 1 week later reddit', 'is bleeding a week after taking the morning after pill normal')",morning-after pill bleeding 1 week later reddit,is bleeding a week after taking the morning after pill normal,4,4,google,2026-03-12 19:55:15.907743,abortion pill side effects reddit,morning after pill long term side effects reddit,morning-after bleeding 1 week later,is a after taking the morning after normal +abortion,"('morning-after pill bleeding 1 week later reddit', 'can the morning after pill cause spotting a week later')",morning-after pill bleeding 1 week later reddit,can the morning after pill cause spotting a week later,5,4,google,2026-03-12 19:55:15.907743,abortion pill side effects reddit,morning after pill long term side effects reddit,morning-after bleeding 1 week later,can the morning after cause spotting a +abortion,"('morning-after pill bleeding 1 week later reddit', 'morning after pill bleeding for 2 weeks reddit')",morning-after pill bleeding 1 week later reddit,morning after pill bleeding for 2 weeks reddit,6,4,google,2026-03-12 19:55:15.907743,abortion pill side effects reddit,morning after pill long term side effects reddit,morning-after bleeding 1 week later,morning after for 2 weeks +abortion,"('how long can morning after pill affect your cycle', 'how long can morning after pill affect your period')",how long can morning after pill affect your cycle,how long can morning after pill affect your period,1,4,google,2026-03-12 19:55:16.956735,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can affect your,period +abortion,"('how long can morning after pill affect your cycle', 'how does morning after pill affect your cycle')",how long can morning after pill affect your cycle,how does morning after pill affect your cycle,2,4,google,2026-03-12 19:55:16.956735,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can affect your,does +abortion,"('how long can morning after pill affect your cycle', 'how can morning after pill affect your period')",how long can morning after pill affect your cycle,how can morning after pill affect your period,3,4,google,2026-03-12 19:55:16.956735,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can affect your,period +abortion,"('how long can morning after pill affect your cycle', 'how long can a plan b pill affect your period')",how long can morning after pill affect your cycle,how long can a plan b pill affect your period,4,4,google,2026-03-12 19:55:16.956735,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can affect your,a plan b period +abortion,"('how long can morning after pill affect your cycle', 'can morning after pill change your cycle')",how long can morning after pill affect your cycle,can morning after pill change your cycle,5,4,google,2026-03-12 19:55:16.956735,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can affect your,change +abortion,"('how long can morning after pill affect your cycle', 'can morning after pill affect menstrual cycle')",how long can morning after pill affect your cycle,can morning after pill affect menstrual cycle,6,4,google,2026-03-12 19:55:16.956735,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can affect your,menstrual +abortion,"('how long can morning after pill affect your cycle', 'can the morning after pill affect your period')",how long can morning after pill affect your cycle,can the morning after pill affect your period,7,4,google,2026-03-12 19:55:16.956735,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can affect your,the period +abortion,"('how long can morning after pill affect your cycle', 'can morning after pill affect your period start')",how long can morning after pill affect your cycle,can morning after pill affect your period start,8,4,google,2026-03-12 19:55:16.956735,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can affect your,period start +abortion,"('how long can morning after pill affect your cycle', 'how long does the plan b pill affect your period')",how long can morning after pill affect your cycle,how long does the plan b pill affect your period,9,4,google,2026-03-12 19:55:16.956735,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can affect your,does the plan b period +abortion,"('morning after pill side effects menstrual cycle', 'morning after pill side effects menstrual cycle reddit')",morning after pill side effects menstrual cycle,morning after pill side effects menstrual cycle reddit,1,4,google,2026-03-12 19:55:17.815425,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,morning after menstrual cycle,reddit +abortion,"('morning after pill side effects menstrual cycle', 'morning after pill affect menstrual cycle')",morning after pill side effects menstrual cycle,morning after pill affect menstrual cycle,2,4,google,2026-03-12 19:55:17.815425,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,morning after menstrual cycle,affect +abortion,"('morning after pill side effects menstrual cycle', 'how long can the morning after pill affect your period')",morning after pill side effects menstrual cycle,how long can the morning after pill affect your period,3,4,google,2026-03-12 19:55:17.815425,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,morning after menstrual cycle,how long can the affect your period +abortion,"('morning after pill side effects menstrual cycle', 'can taking the morning after pill make your period longer')",morning after pill side effects menstrual cycle,can taking the morning after pill make your period longer,4,4,google,2026-03-12 19:55:17.815425,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,morning after menstrual cycle,can taking the make your period longer +abortion,"('morning after pill side effects menstrual cycle', 'can the morning after pill make your period longer')",morning after pill side effects menstrual cycle,can the morning after pill make your period longer,5,4,google,2026-03-12 19:55:17.815425,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,morning after menstrual cycle,can the make your period longer +abortion,"('morning after pill side effects menstrual cycle', 'does the morning after pill affect your period')",morning after pill side effects menstrual cycle,does the morning after pill affect your period,6,4,google,2026-03-12 19:55:17.815425,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,morning after menstrual cycle,does the affect your period +abortion,"('morning after pill side effects menstrual cycle', 'morning after pill side effects a week later')",morning after pill side effects menstrual cycle,morning after pill side effects a week later,7,4,google,2026-03-12 19:55:17.815425,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,morning after menstrual cycle,a week later +abortion,"('morning after pill side effects menstrual cycle', 'morning after pill side effects bleeding')",morning after pill side effects menstrual cycle,morning after pill side effects bleeding,8,4,google,2026-03-12 19:55:17.815425,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,morning after menstrual cycle,bleeding +abortion,"('morning after pill side effects menstrual cycle', 'side effects of morning after pill before period')",morning after pill side effects menstrual cycle,side effects of morning after pill before period,9,4,google,2026-03-12 19:55:17.815425,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,morning after menstrual cycle,of before period +abortion,"('how long can the morning after pill affect your period', 'how long can the morning after pill delay your period')",how long can the morning after pill affect your period,how long can the morning after pill delay your period,1,4,google,2026-03-12 19:55:18.888867,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can the affect your period,delay +abortion,"('how long can the morning after pill affect your period', 'how long can the morning after pill affect your cycle')",how long can the morning after pill affect your period,how long can the morning after pill affect your cycle,2,4,google,2026-03-12 19:55:18.888867,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can the affect your period,cycle +abortion,"('how long can the morning after pill affect your period', 'how long does the morning after pill delay your period')",how long can the morning after pill affect your period,how long does the morning after pill delay your period,3,4,google,2026-03-12 19:55:18.888867,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can the affect your period,does delay +abortion,"('how long can the morning after pill affect your period', 'how many days can the morning after pill delay your period')",how long can the morning after pill affect your period,how many days can the morning after pill delay your period,4,4,google,2026-03-12 19:55:18.888867,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can the affect your period,many days delay +abortion,"('how long can the morning after pill affect your period', 'how long does the day after pill delay your period')",how long can the morning after pill affect your period,how long does the day after pill delay your period,5,4,google,2026-03-12 19:55:18.888867,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can the affect your period,does day delay +abortion,"('how long can the morning after pill affect your period', 'how can the morning after pill affect your period')",how long can the morning after pill affect your period,how can the morning after pill affect your period,6,4,google,2026-03-12 19:55:18.888867,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can the affect your period,how long can the affect your period +abortion,"('how long can the morning after pill affect your period', 'how long does the morning after pill delay your next period')",how long can the morning after pill affect your period,how long does the morning after pill delay your next period,7,4,google,2026-03-12 19:55:18.888867,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can the affect your period,does delay next +abortion,"('how long can the morning after pill affect your period', 'can the morning after pill delay your period for 2 months')",how long can the morning after pill affect your period,can the morning after pill delay your period for 2 months,8,4,google,2026-03-12 19:55:18.888867,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can the affect your period,delay for 2 months +abortion,"('how long can the morning after pill affect your period', 'how does the morning after pill affect your period')",how long can the morning after pill affect your period,how does the morning after pill affect your period,9,4,google,2026-03-12 19:55:18.888867,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,how long can the affect your period,does +abortion,"('can taking the morning after pill make your period longer', 'can taking the morning after pill make your period more painful')",can taking the morning after pill make your period longer,can taking the morning after pill make your period more painful,1,4,google,2026-03-12 19:55:20.079260,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,can taking the make your period longer,more painful +abortion,"('can taking the morning after pill make your period longer', 'can taking the morning after pill make your period heavier')",can taking the morning after pill make your period longer,can taking the morning after pill make your period heavier,2,4,google,2026-03-12 19:55:20.079260,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,can taking the make your period longer,heavier +abortion,"('can taking the morning after pill make your period longer', 'does taking the morning after pill make your period heavier')",can taking the morning after pill make your period longer,does taking the morning after pill make your period heavier,3,4,google,2026-03-12 19:55:20.079260,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,can taking the make your period longer,does heavier +abortion,"('can taking the morning after pill make your period longer', 'can the morning after pill make your period last longer')",can taking the morning after pill make your period longer,can the morning after pill make your period last longer,4,4,google,2026-03-12 19:55:20.079260,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,can taking the make your period longer,last +abortion,"('can taking the morning after pill make your period longer', 'does the morning after pill make your cycle longer')",can taking the morning after pill make your period longer,does the morning after pill make your cycle longer,5,4,google,2026-03-12 19:55:20.079260,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,can taking the make your period longer,does cycle +abortion,"('can taking the morning after pill make your period longer', 'does the morning after pill make your period last longer')",can taking the morning after pill make your period longer,does the morning after pill make your period last longer,6,4,google,2026-03-12 19:55:20.079260,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,can taking the make your period longer,does last +abortion,"('can taking the morning after pill make your period longer', 'morning after pill make your period longer')",can taking the morning after pill make your period longer,morning after pill make your period longer,7,4,google,2026-03-12 19:55:20.079260,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,can taking the make your period longer,can taking the make your period longer +abortion,"('can taking the morning after pill make your period longer', 'can the morning after pill make your period longer')",can taking the morning after pill make your period longer,can the morning after pill make your period longer,8,4,google,2026-03-12 19:55:20.079260,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,can taking the make your period longer,can taking the make your period longer +abortion,"('can taking the morning after pill make your period longer', 'can plan b make your period longer')",can taking the morning after pill make your period longer,can plan b make your period longer,9,4,google,2026-03-12 19:55:20.079260,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,can taking the make your period longer,plan b +abortion,"('morning after pill mess with cycle', 'morning after pill messing with period')",morning after pill mess with cycle,morning after pill messing with period,1,4,google,2026-03-12 19:55:21.411696,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,mess with,messing period +abortion,"('morning after pill mess with cycle', 'morning after pill mess up cycle')",morning after pill mess with cycle,morning after pill mess up cycle,2,4,google,2026-03-12 19:55:21.411696,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,mess with,up +abortion,"('morning after pill mess with cycle', 'morning after pill messed up cycle for months')",morning after pill mess with cycle,morning after pill messed up cycle for months,3,4,google,2026-03-12 19:55:21.411696,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,mess with,messed up for months +abortion,"('morning after pill mess with cycle', 'does the morning after pill mess with period')",morning after pill mess with cycle,does the morning after pill mess with period,4,4,google,2026-03-12 19:55:21.411696,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,mess with,does the period +abortion,"('morning after pill mess with cycle', 'can morning after pill mess with period')",morning after pill mess with cycle,can morning after pill mess with period,5,4,google,2026-03-12 19:55:21.411696,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,mess with,can period +abortion,"('morning after pill mess with cycle', 'does morning after pill mess with your cycle')",morning after pill mess with cycle,does morning after pill mess with your cycle,6,4,google,2026-03-12 19:55:21.411696,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,mess with,does your +abortion,"('morning after pill mess with cycle', 'can the morning after pill.mess with your cycle')",morning after pill mess with cycle,can the morning after pill.mess with your cycle,7,4,google,2026-03-12 19:55:21.411696,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,mess with,can the pill.mess your +abortion,"('morning after pill mess with cycle', 'morning after pill messed up my cycle')",morning after pill mess with cycle,morning after pill messed up my cycle,8,4,google,2026-03-12 19:55:21.411696,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,mess with,messed up my +abortion,"('morning after pill mess with cycle', 'morning after pill mess up period')",morning after pill mess with cycle,morning after pill mess up period,9,4,google,2026-03-12 19:55:21.411696,abortion pill side effects reddit,morning after pill side effects menstrual cycle reddit,mess with,up period +abortion,"('abuzz abortion pills reviews reddit', 'abortion pill reviews reddit')",abuzz abortion pills reviews reddit,abortion pill reviews reddit,1,4,google,2026-03-12 19:55:22.474713,abortion pill side effects reddit,abortion pill reviews reddit,abuzz pills,pill +abortion,"('abuzz abortion pills reviews reddit', 'how does abortion pill work reddit')",abuzz abortion pills reviews reddit,how does abortion pill work reddit,2,4,google,2026-03-12 19:55:22.474713,abortion pill side effects reddit,abortion pill reviews reddit,abuzz pills,how does pill work +abortion,"('abuzz abortion pills reviews reddit', 'what does the abortion pill feel like reddit')",abuzz abortion pills reviews reddit,what does the abortion pill feel like reddit,3,4,google,2026-03-12 19:55:22.474713,abortion pill side effects reddit,abortion pill reviews reddit,abuzz pills,what does the pill feel like +abortion,"('abuzz abortion pills reviews reddit', 'abortion pill reviews 2021')",abuzz abortion pills reviews reddit,abortion pill reviews 2021,4,4,google,2026-03-12 19:55:22.474713,abortion pill side effects reddit,abortion pill reviews reddit,abuzz pills,pill 2021 +abortion,"('abuzz abortion pills reviews reddit', 'abortion pill reviews usa')",abuzz abortion pills reviews reddit,abortion pill reviews usa,5,4,google,2026-03-12 19:55:22.474713,abortion pill side effects reddit,abortion pill reviews reddit,abuzz pills,pill usa +abortion,"('carafem abortion pill review reddit', 'abortion pill reviews reddit')",carafem abortion pill review reddit,abortion pill reviews reddit,1,4,google,2026-03-12 19:55:23.849787,abortion pill side effects reddit,abortion pill reviews reddit,carafem review,reviews +abortion,"('carafem abortion pill review reddit', 'what does the abortion pill feel like reddit')",carafem abortion pill review reddit,what does the abortion pill feel like reddit,2,4,google,2026-03-12 19:55:23.849787,abortion pill side effects reddit,abortion pill reviews reddit,carafem review,what does the feel like +abortion,"('carafem abortion pill review reddit', 'carafem abortion pill reviews')",carafem abortion pill review reddit,carafem abortion pill reviews,3,4,google,2026-03-12 19:55:23.849787,abortion pill side effects reddit,abortion pill reviews reddit,carafem review,reviews +abortion,"('carafem abortion pill review reddit', 'how does abortion pill work reddit')",carafem abortion pill review reddit,how does abortion pill work reddit,4,4,google,2026-03-12 19:55:23.849787,abortion pill side effects reddit,abortion pill reviews reddit,carafem review,how does work +abortion,"('carafem abortion pill review reddit', 'carafem abortion reddit')",carafem abortion pill review reddit,carafem abortion reddit,5,4,google,2026-03-12 19:55:23.849787,abortion pill side effects reddit,abortion pill reviews reddit,carafem review,carafem review +abortion,"('carafem abortion pill review reddit', 'carafem reviews reddit')",carafem abortion pill review reddit,carafem reviews reddit,6,4,google,2026-03-12 19:55:23.849787,abortion pill side effects reddit,abortion pill reviews reddit,carafem review,reviews +abortion,"('carafem abortion pill review reddit', 'carafem reddit')",carafem abortion pill review reddit,carafem reddit,7,4,google,2026-03-12 19:55:23.849787,abortion pill side effects reddit,abortion pill reviews reddit,carafem review,carafem review +abortion,"('aid access abortion pill reviews reddit', 'aid access abortion pill reviews')",aid access abortion pill reviews reddit,aid access abortion pill reviews,1,4,google,2026-03-12 19:55:25.120815,abortion pill side effects reddit,abortion pill reviews reddit,aid access,aid access +abortion,"('aid access abortion pill reviews reddit', 'abortion pill reviews reddit')",aid access abortion pill reviews reddit,abortion pill reviews reddit,2,4,google,2026-03-12 19:55:25.120815,abortion pill side effects reddit,abortion pill reviews reddit,aid access,aid access +abortion,"('aid access abortion pill reviews reddit', 'aid access reviews reddit')",aid access abortion pill reviews reddit,aid access reviews reddit,3,4,google,2026-03-12 19:55:25.120815,abortion pill side effects reddit,abortion pill reviews reddit,aid access,aid access +abortion,"('aid access abortion pill reviews reddit', 'aid access abortion pill reddit')",aid access abortion pill reviews reddit,aid access abortion pill reddit,4,4,google,2026-03-12 19:55:25.120815,abortion pill side effects reddit,abortion pill reviews reddit,aid access,aid access +abortion,"('hey jane abortion pill reviews reddit', 'hey jane abortion reviews')",hey jane abortion pill reviews reddit,hey jane abortion reviews,1,4,google,2026-03-12 19:55:26.527879,abortion pill side effects reddit,abortion pill reviews reddit,hey jane,hey jane +abortion,"('hey jane abortion pill reviews reddit', 'abortion pill reviews reddit')",hey jane abortion pill reviews reddit,abortion pill reviews reddit,2,4,google,2026-03-12 19:55:26.527879,abortion pill side effects reddit,abortion pill reviews reddit,hey jane,hey jane +abortion,"('hey jane abortion pill reviews reddit', 'how does abortion pill work reddit')",hey jane abortion pill reviews reddit,how does abortion pill work reddit,3,4,google,2026-03-12 19:55:26.527879,abortion pill side effects reddit,abortion pill reviews reddit,hey jane,how does work +abortion,"('hey jane abortion pill reviews reddit', 'hey jane abortion reviews reddit')",hey jane abortion pill reviews reddit,hey jane abortion reviews reddit,4,4,google,2026-03-12 19:55:26.527879,abortion pill side effects reddit,abortion pill reviews reddit,hey jane,hey jane +abortion,"('hey jane abortion pill reviews reddit', 'hey jane reviews reddit')",hey jane abortion pill reviews reddit,hey jane reviews reddit,5,4,google,2026-03-12 19:55:26.527879,abortion pill side effects reddit,abortion pill reviews reddit,hey jane,hey jane +abortion,"('abortion pill reddit experience', 'abortion pill experience reddit 4 weeks')",abortion pill reddit experience,abortion pill experience reddit 4 weeks,1,4,google,2026-03-12 19:55:27.348090,abortion pill side effects reddit,abortion pill reviews reddit,experience,4 weeks +abortion,"('abortion pill reddit experience', 'abortion pill experience reddit india')",abortion pill reddit experience,abortion pill experience reddit india,2,4,google,2026-03-12 19:55:27.348090,abortion pill side effects reddit,abortion pill reviews reddit,experience,india +abortion,"('abortion pill reddit experience', 'miscarriage pill experience reddit')",abortion pill reddit experience,miscarriage pill experience reddit,3,4,google,2026-03-12 19:55:27.348090,abortion pill side effects reddit,abortion pill reviews reddit,experience,miscarriage +abortion,"('abortion pill reddit experience', 'medical abortion pill experience reddit')",abortion pill reddit experience,medical abortion pill experience reddit,4,4,google,2026-03-12 19:55:27.348090,abortion pill side effects reddit,abortion pill reviews reddit,experience,medical +abortion,"('abortion pill reddit experience', 'abortion pill positive experience reddit')",abortion pill reddit experience,abortion pill positive experience reddit,5,4,google,2026-03-12 19:55:27.348090,abortion pill side effects reddit,abortion pill reviews reddit,experience,positive +abortion,"('abortion pill reddit experience', 'my abortion pill experience reddit')",abortion pill reddit experience,my abortion pill experience reddit,6,4,google,2026-03-12 19:55:27.348090,abortion pill side effects reddit,abortion pill reviews reddit,experience,my +abortion,"('abortion pill reddit experience', 'abortion pill good experience reddit')",abortion pill reddit experience,abortion pill good experience reddit,7,4,google,2026-03-12 19:55:27.348090,abortion pill side effects reddit,abortion pill reviews reddit,experience,good +abortion,"('abortion pill reddit experience', 'planned parenthood abortion pill experience reddit')",abortion pill reddit experience,planned parenthood abortion pill experience reddit,8,4,google,2026-03-12 19:55:27.348090,abortion pill side effects reddit,abortion pill reviews reddit,experience,planned parenthood +abortion,"('abortion pill reddit experience', 'aid access abortion pill experience reddit')",abortion pill reddit experience,aid access abortion pill experience reddit,9,4,google,2026-03-12 19:55:27.348090,abortion pill side effects reddit,abortion pill reviews reddit,experience,aid access +abortion,"('morning after pill side effects how long does it last', 'morning after pill side effects and how long they last')",morning after pill side effects how long does it last,morning after pill side effects and how long they last,1,4,google,2026-03-12 19:55:29.320803,abortion pill side effects how long,morning after pill side effects and how long they last,does it,and they +abortion,"('morning after pill side effects how long does it last', 'plan b pill side effects how long do they last')",morning after pill side effects how long does it last,plan b pill side effects how long do they last,2,4,google,2026-03-12 19:55:29.320803,abortion pill side effects how long,morning after pill side effects and how long they last,does it,plan b do they +abortion,"('morning after pill side effects how long does it last', 'how long can side effects of the morning after pill last')",morning after pill side effects how long does it last,how long can side effects of the morning after pill last,3,4,google,2026-03-12 19:55:29.320803,abortion pill side effects how long,morning after pill side effects and how long they last,does it,can of the +abortion,"('morning after pill side effects how long does it last', 'morning after pill side effects a week later')",morning after pill side effects how long does it last,morning after pill side effects a week later,4,4,google,2026-03-12 19:55:29.320803,abortion pill side effects how long,morning after pill side effects and how long they last,does it,a week later +abortion,"('morning after pill side effects how long does it last', 'morning after pill how long does it stay in your system')",morning after pill side effects how long does it last,morning after pill how long does it stay in your system,5,4,google,2026-03-12 19:55:29.320803,abortion pill side effects how long,morning after pill side effects and how long they last,does it,stay in your system +abortion,"('morning after pill side effects how long does it last', 'morning after pill how it works side effects')",morning after pill side effects how long does it last,morning after pill how it works side effects,6,4,google,2026-03-12 19:55:29.320803,abortion pill side effects how long,morning after pill side effects and how long they last,does it,works +abortion,"('morning after pill side effects how long does it last', 'morning after pill how long does it work')",morning after pill side effects how long does it last,morning after pill how long does it work,7,4,google,2026-03-12 19:55:29.320803,abortion pill side effects how long,morning after pill side effects and how long they last,does it,work +abortion,"('morning after pill side effects how long does it last', 'morning-after pills works after how long')",morning after pill side effects how long does it last,morning-after pills works after how long,8,4,google,2026-03-12 19:55:29.320803,abortion pill side effects how long,morning after pill side effects and how long they last,does it,morning-after pills works +abortion,"('how many days do morning after pill side effects last', 'how many days does emergency pill side effects last')",how many days do morning after pill side effects last,how many days does emergency pill side effects last,1,4,google,2026-03-12 19:55:31.862615,abortion pill side effects how long,morning after pill side effects and how long they last,many days do,does emergency +abortion,"('how many days do morning after pill side effects last', 'how long do day after pill side effects last')",how many days do morning after pill side effects last,how long do day after pill side effects last,2,4,google,2026-03-12 19:55:31.862615,abortion pill side effects how long,morning after pill side effects and how long they last,many days do,long day +abortion,"('how many days do morning after pill side effects last', 'how long does the morning after pill side effects last in your system')",how many days do morning after pill side effects last,how long does the morning after pill side effects last in your system,3,4,google,2026-03-12 19:55:31.862615,abortion pill side effects how long,morning after pill side effects and how long they last,many days do,long does the in your system +abortion,"('how many days do morning after pill side effects last', 'how long does morning after pills side effects last')",how many days do morning after pill side effects last,how long does morning after pills side effects last,4,4,google,2026-03-12 19:55:31.862615,abortion pill side effects how long,morning after pill side effects and how long they last,many days do,long does pills +abortion,"('how many days do morning after pill side effects last', 'how many days does the morning after pill last')",how many days do morning after pill side effects last,how many days does the morning after pill last,5,4,google,2026-03-12 19:55:31.862615,abortion pill side effects how long,morning after pill side effects and how long they last,many days do,does the +abortion,"('how many days do morning after pill side effects last', 'how long does morning after pill work after taking')",how many days do morning after pill side effects last,how long does morning after pill work after taking,6,4,google,2026-03-12 19:55:31.862615,abortion pill side effects how long,morning after pill side effects and how long they last,many days do,long does work taking +abortion,"('how many days do morning after pill side effects last', 'how long does the morning after pill effects last')",how many days do morning after pill side effects last,how long does the morning after pill effects last,7,4,google,2026-03-12 19:55:31.862615,abortion pill side effects how long,morning after pill side effects and how long they last,many days do,long does the +abortion,"('how many days do morning after pill side effects last', 'how many days do plan b side effects last')",how many days do morning after pill side effects last,how many days do plan b side effects last,8,4,google,2026-03-12 19:55:31.862615,abortion pill side effects how long,morning after pill side effects and how long they last,many days do,plan b +abortion,"('morning after pill how it works side effects', 'how long does morning after pills side effects last')",morning after pill how it works side effects,how long does morning after pills side effects last,1,4,google,2026-03-12 19:55:32.886816,abortion pill side effects how long,morning after pill side effects and how long they last,it works,long does pills last +abortion,"('morning after pill how it works side effects', 'does the morning after pill cause side effects')",morning after pill how it works side effects,does the morning after pill cause side effects,2,4,google,2026-03-12 19:55:32.886816,abortion pill side effects how long,morning after pill side effects and how long they last,it works,does the cause +abortion,"('morning after pill how it works side effects', 'how long after taking morning after pill does it work')",morning after pill how it works side effects,how long after taking morning after pill does it work,3,4,google,2026-03-12 19:55:32.886816,abortion pill side effects how long,morning after pill side effects and how long they last,it works,long taking does work +abortion,"('morning after pill how it works side effects', 'morning-after pills works after how long')",morning after pill how it works side effects,morning-after pills works after how long,4,4,google,2026-03-12 19:55:32.886816,abortion pill side effects how long,morning after pill side effects and how long they last,it works,morning-after pills long +abortion,"('morning after pill how it works side effects', 'morning after pill how it works')",morning after pill how it works side effects,morning after pill how it works,5,4,google,2026-03-12 19:55:32.886816,abortion pill side effects how long,morning after pill side effects and how long they last,it works,it works +abortion,"('morning after pill how long does it stay in your system', 'how long does it take for the morning after pill to leave your system')",morning after pill how long does it stay in your system,how long does it take for the morning after pill to leave your system,1,4,google,2026-03-12 19:55:33.706539,abortion pill side effects how long,morning after pill side effects and how long they last,does it stay in your system,take for the to leave +abortion,"('morning after pill how long does it stay in your system', 'how long does a morning after stay in your system')",morning after pill how long does it stay in your system,how long does a morning after stay in your system,2,4,google,2026-03-12 19:55:33.706539,abortion pill side effects how long,morning after pill side effects and how long they last,does it stay in your system,a +abortion,"('morning after pill how long does it stay in your system', 'how long does morning after pill last in the system')",morning after pill how long does it stay in your system,how long does morning after pill last in the system,3,4,google,2026-03-12 19:55:33.706539,abortion pill side effects how long,morning after pill side effects and how long they last,does it stay in your system,last the +abortion,"('morning after pill how long does it stay in your system', 'morning after pill how long does it work')",morning after pill how long does it stay in your system,morning after pill how long does it work,4,4,google,2026-03-12 19:55:33.706539,abortion pill side effects how long,morning after pill side effects and how long they last,does it stay in your system,work +abortion,"('morning after pill how long does it stay in your system', 'morning-after pills works after how long')",morning after pill how long does it stay in your system,morning-after pills works after how long,5,4,google,2026-03-12 19:55:33.706539,abortion pill side effects how long,morning after pill side effects and how long they last,does it stay in your system,morning-after pills works +abortion,"('morning after pill how long does it stay in your system', 'morning after pill how it works side effects')",morning after pill how long does it stay in your system,morning after pill how it works side effects,6,4,google,2026-03-12 19:55:33.706539,abortion pill side effects how long,morning after pill side effects and how long they last,does it stay in your system,works side effects +abortion,"('how long do you get side effects from the morning after pill', 'how long does morning after pills side effects last')",how long do you get side effects from the morning after pill,how long does morning after pills side effects last,1,4,google,2026-03-12 19:55:34.785796,abortion pill side effects how long,morning after pill side effects and how long they last,do you get from the,does pills last +abortion,"('how long do you get side effects from the morning after pill', 'how long does the morning after pill effects last')",how long do you get side effects from the morning after pill,how long does the morning after pill effects last,2,4,google,2026-03-12 19:55:34.785796,abortion pill side effects how long,morning after pill side effects and how long they last,do you get from the,does last +abortion,"('how long do you get side effects from the morning after pill', 'how long do you feel the side effects of plan b')",how long do you get side effects from the morning after pill,how long do you feel the side effects of plan b,3,4,google,2026-03-12 19:55:34.785796,abortion pill side effects how long,morning after pill side effects and how long they last,do you get from the,feel of plan b +abortion,"('how long do you get side effects from the morning after pill', 'morning after pill side effects a week later')",how long do you get side effects from the morning after pill,morning after pill side effects a week later,4,4,google,2026-03-12 19:55:34.785796,abortion pill side effects how long,morning after pill side effects and how long they last,do you get from the,a week later +abortion,"('how long do you get side effects from the morning after pill', 'how long does the morning after pill stay in your body')",how long do you get side effects from the morning after pill,how long does the morning after pill stay in your body,5,4,google,2026-03-12 19:55:34.785796,abortion pill side effects how long,morning after pill side effects and how long they last,do you get from the,does stay in your body +abortion,"('morning after pill side effects how long do they last', 'plan b pill side effects how long do they last')",morning after pill side effects how long do they last,plan b pill side effects how long do they last,1,4,google,2026-03-12 19:55:36.252698,abortion pill side effects how long,morning after pill effects how long,side do they last,plan b +abortion,"('morning after pill side effects how long do they last', 'morning after pill side effects and how long they last')",morning after pill side effects how long do they last,morning after pill side effects and how long they last,2,4,google,2026-03-12 19:55:36.252698,abortion pill side effects how long,morning after pill effects how long,side do they last,and +abortion,"('morning after pill side effects how long do they last', 'how long can side effects of the morning after pill last')",morning after pill side effects how long do they last,how long can side effects of the morning after pill last,3,4,google,2026-03-12 19:55:36.252698,abortion pill side effects how long,morning after pill effects how long,side do they last,can of the +abortion,"('morning after pill side effects how long do they last', 'how long does morning after pills side effects last')",morning after pill side effects how long do they last,how long does morning after pills side effects last,4,4,google,2026-03-12 19:55:36.252698,abortion pill side effects how long,morning after pill effects how long,side do they last,does pills +abortion,"('morning after pill side effects how long do they last', 'how long does it take for the morning after pill to leave your system')",morning after pill side effects how long do they last,how long does it take for the morning after pill to leave your system,5,4,google,2026-03-12 19:55:36.252698,abortion pill side effects how long,morning after pill effects how long,side do they last,does it take for the to leave your system +abortion,"('morning after pill side effects how long do they last', 'morning after pill how long does it stay in your system')",morning after pill side effects how long do they last,morning after pill how long does it stay in your system,6,4,google,2026-03-12 19:55:36.252698,abortion pill side effects how long,morning after pill effects how long,side do they last,does it stay in your system +abortion,"('morning after pill side effects how long do they last', 'morning after pill how long does it work')",morning after pill side effects how long do they last,morning after pill how long does it work,7,4,google,2026-03-12 19:55:36.252698,abortion pill side effects how long,morning after pill effects how long,side do they last,does it work +abortion,"('morning after pill side effects how long do they last', 'morning after pill side effects a week later')",morning after pill side effects how long do they last,morning after pill side effects a week later,8,4,google,2026-03-12 19:55:36.252698,abortion pill side effects how long,morning after pill effects how long,side do they last,a week later +abortion,"('morning after pill side effects how long do they last', 'morning after pill how it works side effects')",morning after pill side effects how long do they last,morning after pill how it works side effects,9,4,google,2026-03-12 19:55:36.252698,abortion pill side effects how long,morning after pill effects how long,side do they last,it works +abortion,"('morning after pill side effects how long', 'morning after pill side effects how long do they last')",morning after pill side effects how long,morning after pill side effects how long do they last,1,4,google,2026-03-12 19:55:37.214904,abortion pill side effects how long,morning after pill effects how long,side,do they last +abortion,"('morning after pill side effects how long', 'day after pill side effects how long')",morning after pill side effects how long,day after pill side effects how long,2,4,google,2026-03-12 19:55:37.214904,abortion pill side effects how long,morning after pill effects how long,side,day +abortion,"('morning after pill side effects how long', 'morning after pill side effects how many days')",morning after pill side effects how long,morning after pill side effects how many days,3,4,google,2026-03-12 19:55:37.214904,abortion pill side effects how long,morning after pill effects how long,side,many days +abortion,"('morning after pill side effects how long', 'morning after pill side effects how soon')",morning after pill side effects how long,morning after pill side effects how soon,4,4,google,2026-03-12 19:55:37.214904,abortion pill side effects how long,morning after pill effects how long,side,soon +abortion,"('morning after pill side effects how long', 'morning after pill side effects and how long they last')",morning after pill side effects how long,morning after pill side effects and how long they last,5,4,google,2026-03-12 19:55:37.214904,abortion pill side effects how long,morning after pill effects how long,side,and they last +abortion,"('morning after pill side effects how long', 'morning after pill side effects long term')",morning after pill side effects how long,morning after pill side effects long term,6,4,google,2026-03-12 19:55:37.214904,abortion pill side effects how long,morning after pill effects how long,side,term +abortion,"('morning after pill side effects how long', 'morning after pill side effects long period')",morning after pill side effects how long,morning after pill side effects long period,7,4,google,2026-03-12 19:55:37.214904,abortion pill side effects how long,morning after pill effects how long,side,period +abortion,"('morning after pill side effects how long', 'morning after pill side effects long term reddit')",morning after pill side effects how long,morning after pill side effects long term reddit,8,4,google,2026-03-12 19:55:37.214904,abortion pill side effects how long,morning after pill effects how long,side,term reddit +abortion,"('morning after pill side effects how long', 'day after pill side effects long term')",morning after pill side effects how long,day after pill side effects long term,9,4,google,2026-03-12 19:55:37.214904,abortion pill side effects how long,morning after pill effects how long,side,day term +abortion,"('morning after pill side effects long term', 'morning after pill side effects long term reddit')",morning after pill side effects long term,morning after pill side effects long term reddit,1,4,google,2026-03-12 19:55:38.550294,abortion pill side effects how long,morning after pill effects how long,side term,reddit +abortion,"('morning after pill side effects long term', 'day after pill side effects long term')",morning after pill side effects long term,day after pill side effects long term,2,4,google,2026-03-12 19:55:38.550294,abortion pill side effects how long,morning after pill effects how long,side term,day +abortion,"('morning after pill side effects long term', 'plan b pill side effects long term')",morning after pill side effects long term,plan b pill side effects long term,3,4,google,2026-03-12 19:55:38.550294,abortion pill side effects how long,morning after pill effects how long,side term,plan b +abortion,"('morning after pill side effects long term', 'emergency pill side effects long term')",morning after pill side effects long term,emergency pill side effects long term,4,4,google,2026-03-12 19:55:38.550294,abortion pill side effects how long,morning after pill effects how long,side term,emergency +abortion,"('morning after pill side effects long term', 'morning after pill long term side effects fertility')",morning after pill side effects long term,morning after pill long term side effects fertility,5,4,google,2026-03-12 19:55:38.550294,abortion pill side effects how long,morning after pill effects how long,side term,fertility +abortion,"('morning after pill side effects long term', 'does the morning after pill have long term effects')",morning after pill side effects long term,does the morning after pill have long term effects,6,4,google,2026-03-12 19:55:38.550294,abortion pill side effects how long,morning after pill effects how long,side term,does the have +abortion,"('morning after pill side effects long term', 'morning after pill side effects a week later')",morning after pill side effects long term,morning after pill side effects a week later,7,4,google,2026-03-12 19:55:38.550294,abortion pill side effects how long,morning after pill effects how long,side term,a week later +abortion,"('morning after pill side effects long term', 'morning after pill side effects menstrual cycle')",morning after pill side effects long term,morning after pill side effects menstrual cycle,8,4,google,2026-03-12 19:55:38.550294,abortion pill side effects how long,morning after pill effects how long,side term,menstrual cycle +abortion,"('day after pill side effects long term', 'morning after pill side effects long term reddit')",day after pill side effects long term,morning after pill side effects long term reddit,1,4,google,2026-03-12 19:55:39.450332,abortion pill side effects how long,morning after pill effects how long,day side term,morning reddit +abortion,"('day after pill side effects long term', 'morning pill side effects long term')",day after pill side effects long term,morning pill side effects long term,2,4,google,2026-03-12 19:55:39.450332,abortion pill side effects how long,morning after pill effects how long,day side term,morning +abortion,"('day after pill side effects long term', 'does the morning after pill have long term effects')",day after pill side effects long term,does the morning after pill have long term effects,3,4,google,2026-03-12 19:55:39.450332,abortion pill side effects how long,morning after pill effects how long,day side term,does the morning have +abortion,"('day after pill side effects long term', 'how long does the side effect of post pill last')",day after pill side effects long term,how long does the side effect of post pill last,4,4,google,2026-03-12 19:55:39.450332,abortion pill side effects how long,morning after pill effects how long,day side term,how does the effect of post last +abortion,"('day after pill side effects long term', 'how many days do morning after pill side effects last')",day after pill side effects long term,how many days do morning after pill side effects last,5,4,google,2026-03-12 19:55:39.450332,abortion pill side effects how long,morning after pill effects how long,day side term,how many days do morning last +abortion,"('day after pill side effects long term', 'how long do side effects of contraceptive pills last')",day after pill side effects long term,how long do side effects of contraceptive pills last,6,4,google,2026-03-12 19:55:39.450332,abortion pill side effects how long,morning after pill effects how long,day side term,how do of contraceptive pills last +abortion,"('day after pill side effects long term', 'day after pill side effects period')",day after pill side effects long term,day after pill side effects period,7,4,google,2026-03-12 19:55:39.450332,abortion pill side effects how long,morning after pill effects how long,day side term,period +abortion,"('day after pill side effects long term', 'day after pill affect your period')",day after pill side effects long term,day after pill affect your period,8,4,google,2026-03-12 19:55:39.450332,abortion pill side effects how long,morning after pill effects how long,day side term,affect your period +abortion,"('day after pill side effects long term', 'day after pill side effects')",day after pill side effects long term,day after pill side effects,9,4,google,2026-03-12 19:55:39.450332,abortion pill side effects how long,morning after pill effects how long,day side term,day side term +abortion,"('how long does morning after pill side effects take', 'how long does it take for morning after pill side effects to kick in')",how long does morning after pill side effects take,how long does it take for morning after pill side effects to kick in,1,4,google,2026-03-12 19:55:40.720574,abortion pill side effects how long,morning after pill effects how long,does side take,it for to kick in +abortion,"('how long does morning after pill side effects take', 'how long after taking the morning after pill do side effects occur')",how long does morning after pill side effects take,how long after taking the morning after pill do side effects occur,2,4,google,2026-03-12 19:55:40.720574,abortion pill side effects how long,morning after pill effects how long,does side take,taking the do occur +abortion,"('how long does morning after pill side effects take', 'how long does morning after pills side effects last')",how long does morning after pill side effects take,how long does morning after pills side effects last,3,4,google,2026-03-12 19:55:40.720574,abortion pill side effects how long,morning after pill effects how long,does side take,pills last +abortion,"('how long does morning after pill side effects take', 'side effects of morning after pills and how long they last')",how long does morning after pill side effects take,side effects of morning after pills and how long they last,4,4,google,2026-03-12 19:55:40.720574,abortion pill side effects how long,morning after pill effects how long,does side take,of pills and they last +abortion,"('how long does morning after pill side effects take', 'how long does morning after pill work after taking')",how long does morning after pill side effects take,how long does morning after pill work after taking,5,4,google,2026-03-12 19:55:40.720574,abortion pill side effects how long,morning after pill effects how long,does side take,work taking +abortion,"('how long does morning after pill side effects take', 'how long does the morning after pill effects last')",how long does morning after pill side effects take,how long does the morning after pill effects last,6,4,google,2026-03-12 19:55:40.720574,abortion pill side effects how long,morning after pill effects how long,does side take,the last +abortion,"('how long does morning after pill side effects take', 'how long does morning after pill delay period')",how long does morning after pill side effects take,how long does morning after pill delay period,7,4,google,2026-03-12 19:55:40.720574,abortion pill side effects how long,morning after pill effects how long,does side take,delay period +abortion,"('how long does morning after pills side effects last', 'how long do day after pill side effects last')",how long does morning after pills side effects last,how long do day after pill side effects last,1,4,google,2026-03-12 19:55:41.929388,abortion pill side effects how long,morning after pill effects how long,does pills side last,do day pill +abortion,"('how long does morning after pills side effects last', 'how long does the morning after pill side effects last in your system')",how long does morning after pills side effects last,how long does the morning after pill side effects last in your system,2,4,google,2026-03-12 19:55:41.929388,abortion pill side effects how long,morning after pill effects how long,does pills side last,the pill in your system +abortion,"('how long does morning after pills side effects last', 'how long does plan b pill side effects last')",how long does morning after pills side effects last,how long does plan b pill side effects last,3,4,google,2026-03-12 19:55:41.929388,abortion pill side effects how long,morning after pill effects how long,does pills side last,plan b pill +abortion,"('how long does morning after pills side effects last', 'how long does emergency contraceptive pill side effects last')",how long does morning after pills side effects last,how long does emergency contraceptive pill side effects last,4,4,google,2026-03-12 19:55:41.929388,abortion pill side effects how long,morning after pill effects how long,does pills side last,emergency contraceptive pill +abortion,"('how long does morning after pills side effects last', 'can morning after pill side effects last a week')",how long does morning after pills side effects last,can morning after pill side effects last a week,5,4,google,2026-03-12 19:55:41.929388,abortion pill side effects how long,morning after pill effects how long,does pills side last,can pill a week +abortion,"('how long does morning after pills side effects last', 'can morning after pill side effects last for 2 weeks')",how long does morning after pills side effects last,can morning after pill side effects last for 2 weeks,6,4,google,2026-03-12 19:55:41.929388,abortion pill side effects how long,morning after pill effects how long,does pills side last,can pill for 2 weeks +abortion,"('how long does morning after pills side effects last', 'side effects of morning after pills and how long they last')",how long does morning after pills side effects last,side effects of morning after pills and how long they last,7,4,google,2026-03-12 19:55:41.929388,abortion pill side effects how long,morning after pill effects how long,does pills side last,of and they +abortion,"('how long does morning after pills side effects last', 'how long does morning after pill work after taking')",how long does morning after pills side effects last,how long does morning after pill work after taking,8,4,google,2026-03-12 19:55:41.929388,abortion pill side effects how long,morning after pill effects how long,does pills side last,pill work taking +abortion,"('how long does morning after pills side effects last', 'how long does the morning after pill effects last')",how long does morning after pills side effects last,how long does the morning after pill effects last,9,4,google,2026-03-12 19:55:41.929388,abortion pill side effects how long,morning after pill effects how long,does pills side last,the pill +abortion,"('how effective is the morning after pill 48 hours later', 'how effective is the morning after pill after 48 hours')",how effective is the morning after pill 48 hours later,how effective is the morning after pill after 48 hours,1,4,google,2026-03-12 19:55:43.396015,abortion pill side effects how long,morning after pill effects how long,effective is the 48 hours later,effective is the 48 hours later +abortion,"('how effective is the morning after pill 48 hours later', 'how effective is the morning after pill after 3 days')",how effective is the morning after pill 48 hours later,how effective is the morning after pill after 3 days,2,4,google,2026-03-12 19:55:43.396015,abortion pill side effects how long,morning after pill effects how long,effective is the 48 hours later,3 days +abortion,"('how effective is the morning after pill 48 hours later', 'how effective is the morning after pill after 4 days')",how effective is the morning after pill 48 hours later,how effective is the morning after pill after 4 days,3,4,google,2026-03-12 19:55:43.396015,abortion pill side effects how long,morning after pill effects how long,effective is the 48 hours later,4 days +abortion,"('how effective is the morning after pill 48 hours later', 'how effective is the morning after pill within 24 hours')",how effective is the morning after pill 48 hours later,how effective is the morning after pill within 24 hours,4,4,google,2026-03-12 19:55:43.396015,abortion pill side effects how long,morning after pill effects how long,effective is the 48 hours later,within 24 +abortion,"('how effective is the morning after pill 48 hours later', 'how effective is the morning after pill after 1 day')",how effective is the morning after pill 48 hours later,how effective is the morning after pill after 1 day,5,4,google,2026-03-12 19:55:43.396015,abortion pill side effects how long,morning after pill effects how long,effective is the 48 hours later,1 day +abortion,"('how effective is the morning after pill 48 hours later', 'how effective is the morning after pill the next day')",how effective is the morning after pill 48 hours later,how effective is the morning after pill the next day,6,4,google,2026-03-12 19:55:43.396015,abortion pill side effects how long,morning after pill effects how long,effective is the 48 hours later,next day +abortion,"('how effective is the morning after pill 48 hours later', 'how effective is the morning after pill with birth control')",how effective is the morning after pill 48 hours later,how effective is the morning after pill with birth control,7,4,google,2026-03-12 19:55:43.396015,abortion pill side effects how long,morning after pill effects how long,effective is the 48 hours later,with birth control +abortion,"('how soon after an abortion can i start the pill', 'how long after an abortion can you start the pill')",how soon after an abortion can i start the pill,how long after an abortion can you start the pill,1,4,google,2026-03-12 19:55:44.456389,abortion pill side effects first pill,abortion pill side effects after first pill,how soon an can i start the,long you +abortion,"('how soon after an abortion can i start the pill', 'how long after an abortion can you start taking the pill')",how soon after an abortion can i start the pill,how long after an abortion can you start taking the pill,2,4,google,2026-03-12 19:55:44.456389,abortion pill side effects first pill,abortion pill side effects after first pill,how soon an can i start the,long you taking +abortion,"('how soon after an abortion can i start the pill', 'how soon after an abortion can i start birth control')",how soon after an abortion can i start the pill,how soon after an abortion can i start birth control,3,4,google,2026-03-12 19:55:44.456389,abortion pill side effects first pill,abortion pill side effects after first pill,how soon an can i start the,birth control +abortion,"('how soon after an abortion can i start the pill', 'how soon after an abortion can you take birth control')",how soon after an abortion can i start the pill,how soon after an abortion can you take birth control,4,4,google,2026-03-12 19:55:44.456389,abortion pill side effects first pill,abortion pill side effects after first pill,how soon an can i start the,you take birth control +abortion,"('how soon after abortion pill can i get pregnant', 'how long after abortion pill can i get pregnant')",how soon after abortion pill can i get pregnant,how long after abortion pill can i get pregnant,1,4,google,2026-03-12 19:55:45.840048,abortion pill side effects first pill,how soon after abortion can i take the pill,get pregnant,long +abortion,"('how soon after abortion pill can i get pregnant', 'how long after the morning after pill can i get pregnant')",how soon after abortion pill can i get pregnant,how long after the morning after pill can i get pregnant,2,4,google,2026-03-12 19:55:45.840048,abortion pill side effects first pill,how soon after abortion can i take the pill,get pregnant,long the morning +abortion,"('how soon after abortion pill can i get pregnant', 'how soon after abortion pill can i take pregnancy test')",how soon after abortion pill can i get pregnant,how soon after abortion pill can i take pregnancy test,3,4,google,2026-03-12 19:55:45.840048,abortion pill side effects first pill,how soon after abortion can i take the pill,get pregnant,take pregnancy test +abortion,"('how soon after abortion pill can i get pregnant', 'how soon after abortion pill can you get pregnant again')",how soon after abortion pill can i get pregnant,how soon after abortion pill can you get pregnant again,4,4,google,2026-03-12 19:55:45.840048,abortion pill side effects first pill,how soon after abortion can i take the pill,get pregnant,you again +abortion,"('how soon after abortion pill can i get pregnant', 'how long after abortion pill should i take pregnancy test')",how soon after abortion pill can i get pregnant,how long after abortion pill should i take pregnancy test,5,4,google,2026-03-12 19:55:45.840048,abortion pill side effects first pill,how soon after abortion can i take the pill,get pregnant,long should take pregnancy test +abortion,"('how soon after abortion pill can i get pregnant', 'how soon after termination can i get pregnant')",how soon after abortion pill can i get pregnant,how soon after termination can i get pregnant,6,4,google,2026-03-12 19:55:45.840048,abortion pill side effects first pill,how soon after abortion can i take the pill,get pregnant,termination +abortion,"('how soon after abortion pill can i get pregnant', 'how soon after morning after pill can i take a pregnancy test')",how soon after abortion pill can i get pregnant,how soon after morning after pill can i take a pregnancy test,7,4,google,2026-03-12 19:55:45.840048,abortion pill side effects first pill,how soon after abortion can i take the pill,get pregnant,morning take a pregnancy test +abortion,"('how soon after abortion pill can i get pregnant', 'how long after termination can i get pregnant')",how soon after abortion pill can i get pregnant,how long after termination can i get pregnant,8,4,google,2026-03-12 19:55:45.840048,abortion pill side effects first pill,how soon after abortion can i take the pill,get pregnant,long termination +abortion,"('how soon after abortion pill can i get pregnant', 'can you get pregnant a week after abortion pill')",how soon after abortion pill can i get pregnant,can you get pregnant a week after abortion pill,9,4,google,2026-03-12 19:55:45.840048,abortion pill side effects first pill,how soon after abortion can i take the pill,get pregnant,you a week +abortion,"('how soon after taking abortion pill can i get pregnant', 'how soon after abortion pill can i get pregnant')",how soon after taking abortion pill can i get pregnant,how soon after abortion pill can i get pregnant,1,4,google,2026-03-12 19:55:46.823722,abortion pill side effects first pill,how soon after abortion can i take the pill,taking get pregnant,taking get pregnant +abortion,"('how soon after taking abortion pill can i get pregnant', 'how long after taking abortion pill can you get pregnant again')",how soon after taking abortion pill can i get pregnant,how long after taking abortion pill can you get pregnant again,2,4,google,2026-03-12 19:55:46.823722,abortion pill side effects first pill,how soon after abortion can i take the pill,taking get pregnant,long you again +abortion,"('how soon after taking abortion pill can i get pregnant', 'how long after taking abortion pill should i take pregnancy test')",how soon after taking abortion pill can i get pregnant,how long after taking abortion pill should i take pregnancy test,3,4,google,2026-03-12 19:55:46.823722,abortion pill side effects first pill,how soon after abortion can i take the pill,taking get pregnant,long should take pregnancy test +abortion,"('how soon after taking abortion pill can i get pregnant', 'how long after taking abortion pill can i take a pregnancy test')",how soon after taking abortion pill can i get pregnant,how long after taking abortion pill can i take a pregnancy test,4,4,google,2026-03-12 19:55:46.823722,abortion pill side effects first pill,how soon after abortion can i take the pill,taking get pregnant,long take a pregnancy test +abortion,"('how soon after taking abortion pill can i get pregnant', 'after taking abortion pill can i get pregnant again')",how soon after taking abortion pill can i get pregnant,after taking abortion pill can i get pregnant again,5,4,google,2026-03-12 19:55:46.823722,abortion pill side effects first pill,how soon after abortion can i take the pill,taking get pregnant,again +abortion,"('how soon after taking abortion pill can i get pregnant', 'can you get pregnant a week after abortion pill')",how soon after taking abortion pill can i get pregnant,can you get pregnant a week after abortion pill,6,4,google,2026-03-12 19:55:46.823722,abortion pill side effects first pill,how soon after abortion can i take the pill,taking get pregnant,you a week +abortion,"('how soon after taking abortion pill can i get pregnant', 'how long after an abortion pill can you get pregnant')",how soon after taking abortion pill can i get pregnant,how long after an abortion pill can you get pregnant,7,4,google,2026-03-12 19:55:46.823722,abortion pill side effects first pill,how soon after abortion can i take the pill,taking get pregnant,long an you +abortion,"('how soon after abortion can you take birth control', 'how soon after abortion can you get birth control')",how soon after abortion can you take birth control,how soon after abortion can you get birth control,1,4,google,2026-03-12 19:55:48.121203,abortion pill side effects first pill,how soon after abortion can i take the pill,you birth control,get +abortion,"('how soon after abortion can you take birth control', 'how soon after abortion pill can you take birth control')",how soon after abortion can you take birth control,how soon after abortion pill can you take birth control,2,4,google,2026-03-12 19:55:48.121203,abortion pill side effects first pill,how soon after abortion can i take the pill,you birth control,pill +abortion,"('how soon after abortion can you take birth control', 'how long after medical abortion can you take birth control')",how soon after abortion can you take birth control,how long after medical abortion can you take birth control,3,4,google,2026-03-12 19:55:48.121203,abortion pill side effects first pill,how soon after abortion can i take the pill,you birth control,long medical +abortion,"('how soon after abortion can you take birth control', 'how soon after abortion can you go on birth control')",how soon after abortion can you take birth control,how soon after abortion can you go on birth control,4,4,google,2026-03-12 19:55:48.121203,abortion pill side effects first pill,how soon after abortion can i take the pill,you birth control,go on +abortion,"('how soon after abortion can you take birth control', 'how soon after abortion can i take the pill')",how soon after abortion can you take birth control,how soon after abortion can i take the pill,5,4,google,2026-03-12 19:55:48.121203,abortion pill side effects first pill,how soon after abortion can i take the pill,you birth control,i the pill +abortion,"('how soon after abortion can you take birth control', 'can you take birth control after an abortion')",how soon after abortion can you take birth control,can you take birth control after an abortion,6,4,google,2026-03-12 19:55:48.121203,abortion pill side effects first pill,how soon after abortion can i take the pill,you birth control,an +abortion,"('how soon after abortion can you take birth control', 'how soon after an abortion can i start the pill')",how soon after abortion can you take birth control,how soon after an abortion can i start the pill,7,4,google,2026-03-12 19:55:48.121203,abortion pill side effects first pill,how soon after abortion can i take the pill,you birth control,an i start the pill +abortion,"('how soon after abortion can you take birth control', 'how soon after abortion can you start birth control')",how soon after abortion can you take birth control,how soon after abortion can you start birth control,8,4,google,2026-03-12 19:55:48.121203,abortion pill side effects first pill,how soon after abortion can i take the pill,you birth control,start +abortion,"('how long after an abortion can you start birth control', 'how soon after an abortion can you start birth control pills')",how long after an abortion can you start birth control,how soon after an abortion can you start birth control pills,1,4,google,2026-03-12 19:55:49.540700,abortion pill side effects first pill,how long after an abortion can you start taking the pill,birth control,soon pills +abortion,"('how long after an abortion can you start birth control', 'how long after medical abortion can you start birth control')",how long after an abortion can you start birth control,how long after medical abortion can you start birth control,2,4,google,2026-03-12 19:55:49.540700,abortion pill side effects first pill,how long after an abortion can you start taking the pill,birth control,medical +abortion,"('how long after an abortion can you start birth control', 'how long after abortion pill can you start birth control')",how long after an abortion can you start birth control,how long after abortion pill can you start birth control,3,4,google,2026-03-12 19:55:49.540700,abortion pill side effects first pill,how long after an abortion can you start taking the pill,birth control,pill +abortion,"('how long after an abortion can you start birth control', 'how long after an abortion can you go on birth control')",how long after an abortion can you start birth control,how long after an abortion can you go on birth control,4,4,google,2026-03-12 19:55:49.540700,abortion pill side effects first pill,how long after an abortion can you start taking the pill,birth control,go on +abortion,"('how long after an abortion can you start birth control', 'how soon after an abortion can you take birth control pills')",how long after an abortion can you start birth control,how soon after an abortion can you take birth control pills,5,4,google,2026-03-12 19:55:49.540700,abortion pill side effects first pill,how long after an abortion can you start taking the pill,birth control,soon take pills +abortion,"('how long after an abortion can you start birth control', 'how soon after an abortion can i start the pill')",how long after an abortion can you start birth control,how soon after an abortion can i start the pill,6,4,google,2026-03-12 19:55:49.540700,abortion pill side effects first pill,how long after an abortion can you start taking the pill,birth control,soon i the pill +abortion,"('how long after an abortion can you start birth control', 'how long after an abortion can you start the pill')",how long after an abortion can you start birth control,how long after an abortion can you start the pill,7,4,google,2026-03-12 19:55:49.540700,abortion pill side effects first pill,how long after an abortion can you start taking the pill,birth control,the pill +abortion,"('how long after an abortion can you start birth control', 'how long after an abortion can you start taking the pill')",how long after an abortion can you start birth control,how long after an abortion can you start taking the pill,8,4,google,2026-03-12 19:55:49.540700,abortion pill side effects first pill,how long after an abortion can you start taking the pill,birth control,taking the pill +abortion,"('how long after an abortion can you start birth control', 'how long after an abortion can you get birth control')",how long after an abortion can you start birth control,how long after an abortion can you get birth control,9,4,google,2026-03-12 19:55:49.540700,abortion pill side effects first pill,how long after an abortion can you start taking the pill,birth control,get +abortion,"('how long after an abortion can you take a plan b pill', 'how long after an abortion can you take a plan b pills')",how long after an abortion can you take a plan b pill,how long after an abortion can you take a plan b pills,1,4,google,2026-03-12 19:55:50.858604,abortion pill side effects first pill,how long after an abortion can you start taking the pill,take a plan b,pills +abortion,"('how long after an abortion can you take a plan b pill', 'how long after an abortion can you take a plan b pill in california')",how long after an abortion can you take a plan b pill,how long after an abortion can you take a plan b pill in california,2,4,google,2026-03-12 19:55:50.858604,abortion pill side effects first pill,how long after an abortion can you start taking the pill,take a plan b,in california +abortion,"('how long after an abortion can you take a plan b pill', 'how long after an abortion can you take a plan b pill for dogs')",how long after an abortion can you take a plan b pill,how long after an abortion can you take a plan b pill for dogs,3,4,google,2026-03-12 19:55:50.858604,abortion pill side effects first pill,how long after an abortion can you start taking the pill,take a plan b,for dogs +abortion,"('how long after an abortion can you take a plan b pill', 'how long after an abortion can you take a plan b pill work')",how long after an abortion can you take a plan b pill,how long after an abortion can you take a plan b pill work,4,4,google,2026-03-12 19:55:50.858604,abortion pill side effects first pill,how long after an abortion can you start taking the pill,take a plan b,work +abortion,"('how long after an abortion can you take birth control', 'how long after an abortion can you get birth control')",how long after an abortion can you take birth control,how long after an abortion can you get birth control,1,4,google,2026-03-12 19:55:51.695379,abortion pill side effects first pill,how long after an abortion can you start taking the pill,take birth control,get +abortion,"('how long after an abortion can you take birth control', 'how soon after an abortion can you take birth control pills')",how long after an abortion can you take birth control,how soon after an abortion can you take birth control pills,2,4,google,2026-03-12 19:55:51.695379,abortion pill side effects first pill,how long after an abortion can you start taking the pill,take birth control,soon pills +abortion,"('how long after an abortion can you take birth control', 'how long after medical abortion can you take birth control')",how long after an abortion can you take birth control,how long after medical abortion can you take birth control,3,4,google,2026-03-12 19:55:51.695379,abortion pill side effects first pill,how long after an abortion can you start taking the pill,take birth control,medical +abortion,"('how long after an abortion can you take birth control', 'how long after abortion pill can you take birth control')",how long after an abortion can you take birth control,how long after abortion pill can you take birth control,4,4,google,2026-03-12 19:55:51.695379,abortion pill side effects first pill,how long after an abortion can you start taking the pill,take birth control,pill +abortion,"('how long after an abortion can you take birth control', 'how long after an abortion can you go on birth control')",how long after an abortion can you take birth control,how long after an abortion can you go on birth control,5,4,google,2026-03-12 19:55:51.695379,abortion pill side effects first pill,how long after an abortion can you start taking the pill,take birth control,go on +abortion,"('how long after an abortion can you take birth control', 'can you take birth control after an abortion')",how long after an abortion can you take birth control,can you take birth control after an abortion,6,4,google,2026-03-12 19:55:51.695379,abortion pill side effects first pill,how long after an abortion can you start taking the pill,take birth control,take birth control +abortion,"('how long after an abortion can you take birth control', 'how soon after abortion can i take the pill')",how long after an abortion can you take birth control,how soon after abortion can i take the pill,7,4,google,2026-03-12 19:55:51.695379,abortion pill side effects first pill,how long after an abortion can you start taking the pill,take birth control,soon i the pill +abortion,"('how long after an abortion can you take birth control', 'how long after an abortion can you start birth control')",how long after an abortion can you take birth control,how long after an abortion can you start birth control,8,4,google,2026-03-12 19:55:51.695379,abortion pill side effects first pill,how long after an abortion can you start taking the pill,take birth control,start +abortion,"('how long after an abortion pill can you get pregnant', 'how long after an abortion pill can you get pregnant again')",how long after an abortion pill can you get pregnant,how long after an abortion pill can you get pregnant again,1,4,google,2026-03-12 19:55:52.744229,abortion pill side effects first pill,how long after an abortion can you start taking the pill,get pregnant,again +abortion,"('how long after an abortion pill can you get pregnant', 'how long after medication abortion can you get pregnant again')",how long after an abortion pill can you get pregnant,how long after medication abortion can you get pregnant again,2,4,google,2026-03-12 19:55:52.744229,abortion pill side effects first pill,how long after an abortion can you start taking the pill,get pregnant,medication again +abortion,"('how long after an abortion pill can you get pregnant', 'how long after abortion pill do you get a negative pregnancy test')",how long after an abortion pill can you get pregnant,how long after abortion pill do you get a negative pregnancy test,3,4,google,2026-03-12 19:55:52.744229,abortion pill side effects first pill,how long after an abortion can you start taking the pill,get pregnant,do a negative pregnancy test +abortion,"('how long after an abortion pill can you get pregnant', 'how soon after abortion pill can i get pregnant')",how long after an abortion pill can you get pregnant,how soon after abortion pill can i get pregnant,4,4,google,2026-03-12 19:55:52.744229,abortion pill side effects first pill,how long after an abortion can you start taking the pill,get pregnant,soon i +abortion,"('how long after an abortion pill can you get pregnant', 'how soon after an abortion can you get pregnant')",how long after an abortion pill can you get pregnant,how soon after an abortion can you get pregnant,5,4,google,2026-03-12 19:55:52.744229,abortion pill side effects first pill,how long after an abortion can you start taking the pill,get pregnant,soon +abortion,"('how long after an abortion pill can you get pregnant', 'how soon can you get an abortion after getting pregnant')",how long after an abortion pill can you get pregnant,how soon can you get an abortion after getting pregnant,6,4,google,2026-03-12 19:55:52.744229,abortion pill side effects first pill,how long after an abortion can you start taking the pill,get pregnant,soon getting +abortion,"('how long after an abortion pill can you get pregnant', 'can you get pregnant a week after abortion pill')",how long after an abortion pill can you get pregnant,can you get pregnant a week after abortion pill,7,4,google,2026-03-12 19:55:52.744229,abortion pill side effects first pill,how long after an abortion can you start taking the pill,get pregnant,a week +abortion,"('how long after an abortion pill can you get pregnant', 'can you get pregnant a week after a medical abortion')",how long after an abortion pill can you get pregnant,can you get pregnant a week after a medical abortion,8,4,google,2026-03-12 19:55:52.744229,abortion pill side effects first pill,how long after an abortion can you start taking the pill,get pregnant,a week a medical +abortion,"('first abortion pill mumsnet side effects', '4 days after abortion pill')",first abortion pill mumsnet side effects,4 days after abortion pill,1,4,google,2026-03-12 19:55:53.577029,abortion pill side effects first pill,abortion first pill side effects,mumsnet,4 days after +abortion,"('first abortion pill mumsnet side effects', 'first abortion pill symptoms')",first abortion pill mumsnet side effects,first abortion pill symptoms,2,4,google,2026-03-12 19:55:53.577029,abortion pill side effects first pill,abortion first pill side effects,mumsnet,symptoms +abortion,"('first abortion pill mumsnet side effects', 'first abortion pill mumsnet')",first abortion pill mumsnet side effects,first abortion pill mumsnet,3,4,google,2026-03-12 19:55:53.577029,abortion pill side effects first pill,abortion first pill side effects,mumsnet,mumsnet +abortion,"('first abortion pill mumsnet side effects', 'first abortion pill effects')",first abortion pill mumsnet side effects,first abortion pill effects,4,4,google,2026-03-12 19:55:53.577029,abortion pill side effects first pill,abortion first pill side effects,mumsnet,mumsnet +abortion,"('first abortion pill mumsnet side effects', 'abortion pill mumsnet')",first abortion pill mumsnet side effects,abortion pill mumsnet,5,4,google,2026-03-12 19:55:53.577029,abortion pill side effects first pill,abortion first pill side effects,mumsnet,mumsnet +abortion,"('does first abortion pill have side effects', 'how does first abortion pill make you feel')",does first abortion pill have side effects,how does first abortion pill make you feel,1,4,google,2026-03-12 19:55:54.460354,abortion pill side effects first pill,abortion first pill side effects,does have,how make you feel +abortion,"('does first abortion pill have side effects', 'abortion first pill side effects')",does first abortion pill have side effects,abortion first pill side effects,2,4,google,2026-03-12 19:55:54.460354,abortion pill side effects first pill,abortion first pill side effects,does have,does have +abortion,"('does first abortion pill have side effects', 'does the first abortion pill cause bleeding')",does first abortion pill have side effects,does the first abortion pill cause bleeding,3,4,google,2026-03-12 19:55:54.460354,abortion pill side effects first pill,abortion first pill side effects,does have,the cause bleeding +abortion,"('morning after pill take action side effects', 'side effects of plan b take action')",morning after pill take action side effects,side effects of plan b take action,1,4,google,2026-03-12 19:55:55.368519,abortion pill side effects timeline,morning after pill side effects timeline,take action,of plan b +abortion,"('morning after pill take action side effects', 'does the morning after pill cause side effects')",morning after pill take action side effects,does the morning after pill cause side effects,2,4,google,2026-03-12 19:55:55.368519,abortion pill side effects timeline,morning after pill side effects timeline,take action,does the cause +abortion,"('morning after pill take action side effects', 'how long does morning after pills side effects last')",morning after pill take action side effects,how long does morning after pills side effects last,3,4,google,2026-03-12 19:55:55.368519,abortion pill side effects timeline,morning after pill side effects timeline,take action,how long does pills last +abortion,"('morning after pill take action side effects', 'take action pill side effects last')",morning after pill take action side effects,take action pill side effects last,4,4,google,2026-03-12 19:55:55.368519,abortion pill side effects timeline,morning after pill side effects timeline,take action,last +abortion,"('morning after pill take action side effects', 'side effects after taking take action pill')",morning after pill take action side effects,side effects after taking take action pill,5,4,google,2026-03-12 19:55:55.368519,abortion pill side effects timeline,morning after pill side effects timeline,take action,taking +abortion,"('morning after pill take action side effects', 'morning after pill take action')",morning after pill take action side effects,morning after pill take action,6,4,google,2026-03-12 19:55:55.368519,abortion pill side effects timeline,morning after pill side effects timeline,take action,take action +abortion,"('morning-after pill side effects', 'morning after pill side effects menstrual cycle')",morning-after pill side effects,morning after pill side effects menstrual cycle,1,4,google,2026-03-12 19:55:56.433518,abortion pill side effects timeline,morning after pill side effects timeline,morning-after,morning after menstrual cycle +abortion,"('morning-after pill side effects', 'morning after pill side effects reddit')",morning-after pill side effects,morning after pill side effects reddit,2,4,google,2026-03-12 19:55:56.433518,abortion pill side effects timeline,morning after pill side effects timeline,morning-after,morning after reddit +abortion,"('morning-after pill side effects', 'morning after pill side effects emotional')",morning-after pill side effects,morning after pill side effects emotional,3,4,google,2026-03-12 19:55:56.433518,abortion pill side effects timeline,morning after pill side effects timeline,morning-after,morning after emotional +abortion,"('morning-after pill side effects', 'morning after pill side effects mood')",morning-after pill side effects,morning after pill side effects mood,4,4,google,2026-03-12 19:55:56.433518,abortion pill side effects timeline,morning after pill side effects timeline,morning-after,morning after mood +abortion,"('morning-after pill side effects', 'morning after pill side effects a week later')",morning-after pill side effects,morning after pill side effects a week later,5,4,google,2026-03-12 19:55:56.433518,abortion pill side effects timeline,morning after pill side effects timeline,morning-after,morning after a week later +abortion,"('morning-after pill side effects', 'morning after pill side effects in hindi')",morning-after pill side effects,morning after pill side effects in hindi,6,4,google,2026-03-12 19:55:56.433518,abortion pill side effects timeline,morning after pill side effects timeline,morning-after,morning after in hindi +abortion,"('morning-after pill side effects', 'morning after pill side effects on period')",morning-after pill side effects,morning after pill side effects on period,7,4,google,2026-03-12 19:55:56.433518,abortion pill side effects timeline,morning after pill side effects timeline,morning-after,morning after on period +abortion,"('morning-after pill side effects', 'morning after pill side effects diarrhea')",morning-after pill side effects,morning after pill side effects diarrhea,8,4,google,2026-03-12 19:55:56.433518,abortion pill side effects timeline,morning after pill side effects timeline,morning-after,morning after diarrhea +abortion,"('morning-after pill side effects', 'morning after pill side effects future pregnancy')",morning-after pill side effects,morning after pill side effects future pregnancy,9,4,google,2026-03-12 19:55:56.433518,abortion pill side effects timeline,morning after pill side effects timeline,morning-after,morning after future pregnancy +abortion,"('how long does pain last after abortion pills', 'how long does abortion pill pain last')",how long does pain last after abortion pills,how long does abortion pill pain last,1,4,google,2026-03-12 19:55:57.502253,abortion pill side effects timeline,abortion pill side effects duration,how long does pain last after pills,pill +abortion,"('how long does pain last after abortion pills', 'how long does pain last after pill abortion reddit')",how long does pain last after abortion pills,how long does pain last after pill abortion reddit,2,4,google,2026-03-12 19:55:57.502253,abortion pill side effects timeline,abortion pill side effects duration,how long does pain last after pills,pill reddit +abortion,"('how long does pain last after abortion pills', 'how long does pain last after medication abortion')",how long does pain last after abortion pills,how long does pain last after medication abortion,3,4,google,2026-03-12 19:55:57.502253,abortion pill side effects timeline,abortion pill side effects duration,how long does pain last after pills,medication +abortion,"('how long does pain last after abortion pills', 'how long does pain last after second abortion pill')",how long does pain last after abortion pills,how long does pain last after second abortion pill,4,4,google,2026-03-12 19:55:57.502253,abortion pill side effects timeline,abortion pill side effects duration,how long does pain last after pills,second pill +abortion,"('how long does pain last after abortion pills', 'how long does severe pain last after abortion pill')",how long does pain last after abortion pills,how long does severe pain last after abortion pill,5,4,google,2026-03-12 19:55:57.502253,abortion pill side effects timeline,abortion pill side effects duration,how long does pain last after pills,severe pill +abortion,"('how long does pain last after abortion pills', 'how long does pain and bleeding last after abortion pill')",how long does pain last after abortion pills,how long does pain and bleeding last after abortion pill,6,4,google,2026-03-12 19:55:57.502253,abortion pill side effects timeline,abortion pill side effects duration,how long does pain last after pills,and bleeding pill +abortion,"('how long does pain last after abortion pills', 'how long does pain last during abortion pill')",how long does pain last after abortion pills,how long does pain last during abortion pill,7,4,google,2026-03-12 19:55:57.502253,abortion pill side effects timeline,abortion pill side effects duration,how long does pain last after pills,during pill +abortion,"('how long does pain last after abortion pills', 'how long does pain last medication abortion')",how long does pain last after abortion pills,how long does pain last medication abortion,8,4,google,2026-03-12 19:55:57.502253,abortion pill side effects timeline,abortion pill side effects duration,how long does pain last after pills,medication +abortion,"('how long pain after abortion', 'how long pain after abortion pill')",how long pain after abortion,how long pain after abortion pill,1,4,google,2026-03-12 19:55:58.345132,abortion pill side effects timeline,abortion pill side effects duration,how long pain after,pill +abortion,"('how long pain after abortion', 'how many days pain after abortion')",how long pain after abortion,how many days pain after abortion,2,4,google,2026-03-12 19:55:58.345132,abortion pill side effects timeline,abortion pill side effects duration,how long pain after,many days +abortion,"('how long pain after abortion', 'how many days pain after abortion pill')",how long pain after abortion,how many days pain after abortion pill,3,4,google,2026-03-12 19:55:58.345132,abortion pill side effects timeline,abortion pill side effects duration,how long pain after,many days pill +abortion,"('how long pain after abortion', 'how many days breast pain after abortion')",how long pain after abortion,how many days breast pain after abortion,4,4,google,2026-03-12 19:55:58.345132,abortion pill side effects timeline,abortion pill side effects duration,how long pain after,many days breast +abortion,"('how long pain after abortion', 'how many days pain after medical abortion')",how long pain after abortion,how many days pain after medical abortion,5,4,google,2026-03-12 19:55:58.345132,abortion pill side effects timeline,abortion pill side effects duration,how long pain after,many days medical +abortion,"('how long pain after abortion', 'how long cramps after medical abortion')",how long pain after abortion,how long cramps after medical abortion,6,4,google,2026-03-12 19:55:58.345132,abortion pill side effects timeline,abortion pill side effects duration,how long pain after,cramps medical +abortion,"('how long pain after abortion', 'how long does pain after medical abortion last')",how long pain after abortion,how long does pain after medical abortion last,7,4,google,2026-03-12 19:55:58.345132,abortion pill side effects timeline,abortion pill side effects duration,how long pain after,does medical last +abortion,"('how long pain after abortion', 'how long should pain last after abortion')",how long pain after abortion,how long should pain last after abortion,8,4,google,2026-03-12 19:55:58.345132,abortion pill side effects timeline,abortion pill side effects duration,how long pain after,should last +abortion,"('how long pain after abortion', 'how long do you hurt after abortion pill')",how long pain after abortion,how long do you hurt after abortion pill,9,4,google,2026-03-12 19:55:58.345132,abortion pill side effects timeline,abortion pill side effects duration,how long pain after,do you hurt pill +abortion,"('side effects months after abortion', 'side effects of abortion after 2 months')",side effects months after abortion,side effects of abortion after 2 months,1,4,google,2026-03-12 19:55:59.192285,abortion pill side effects timeline,abortion pill side effects duration,months after,of 2 +abortion,"('side effects months after abortion', 'side effects of abortion after 3 months')",side effects months after abortion,side effects of abortion after 3 months,2,4,google,2026-03-12 19:55:59.192285,abortion pill side effects timeline,abortion pill side effects duration,months after,of 3 +abortion,"('side effects months after abortion', 'side effects of abortion after 4 months')",side effects months after abortion,side effects of abortion after 4 months,3,4,google,2026-03-12 19:55:59.192285,abortion pill side effects timeline,abortion pill side effects duration,months after,of 4 +abortion,"('side effects months after abortion', 'side effects of abortion after 6 months')",side effects months after abortion,side effects of abortion after 6 months,4,4,google,2026-03-12 19:55:59.192285,abortion pill side effects timeline,abortion pill side effects duration,months after,of 6 +abortion,"('side effects months after abortion', 'side effects of abortion after 5 months')",side effects months after abortion,side effects of abortion after 5 months,5,4,google,2026-03-12 19:55:59.192285,abortion pill side effects timeline,abortion pill side effects duration,months after,of 5 +abortion,"('side effects months after abortion', 'side effects of abortion after 1 month')",side effects months after abortion,side effects of abortion after 1 month,6,4,google,2026-03-12 19:55:59.192285,abortion pill side effects timeline,abortion pill side effects duration,months after,of 1 month +abortion,"('side effects months after abortion', 'side effects of abortion pills after 2 months')",side effects months after abortion,side effects of abortion pills after 2 months,7,4,google,2026-03-12 19:55:59.192285,abortion pill side effects timeline,abortion pill side effects duration,months after,of pills 2 +abortion,"('side effects months after abortion', 'long term effects after abortion')",side effects months after abortion,long term effects after abortion,8,4,google,2026-03-12 19:55:59.192285,abortion pill side effects timeline,abortion pill side effects duration,months after,long term +abortion,"('side effects months after abortion', 'side effects after abortion')",side effects months after abortion,side effects after abortion,9,4,google,2026-03-12 19:55:59.192285,abortion pill side effects timeline,abortion pill side effects duration,months after,months after +abortion,"('side effects of 3 weeks abortion', 'side effects 3 weeks after abortion')",side effects of 3 weeks abortion,side effects 3 weeks after abortion,1,4,google,2026-03-12 19:56:00.514168,abortion pill side effects timeline,side effects 3 weeks after abortion,of,after +abortion,"('side effects of 3 weeks abortion', 'side effects of abortion pill at 3 weeks')",side effects of 3 weeks abortion,side effects of abortion pill at 3 weeks,2,4,google,2026-03-12 19:56:00.514168,abortion pill side effects timeline,side effects 3 weeks after abortion,of,pill at +abortion,"('side effects of 3 weeks abortion', 'side effects of abortion after 2 weeks')",side effects of 3 weeks abortion,side effects of abortion after 2 weeks,3,4,google,2026-03-12 19:56:00.514168,abortion pill side effects timeline,side effects 3 weeks after abortion,of,after 2 +abortion,"('side effects of 3 weeks abortion', 'side effects of abortion after 3 months')",side effects of 3 weeks abortion,side effects of abortion after 3 months,4,4,google,2026-03-12 19:56:00.514168,abortion pill side effects timeline,side effects 3 weeks after abortion,of,after months +abortion,"('side effects of 3 weeks abortion', 'side effects of abortion at 15 weeks')",side effects of 3 weeks abortion,side effects of abortion at 15 weeks,5,4,google,2026-03-12 19:56:00.514168,abortion pill side effects timeline,side effects 3 weeks after abortion,of,at 15 +abortion,"('side effects of 3 weeks abortion', 'side effects of abortion pill long term')",side effects of 3 weeks abortion,side effects of abortion pill long term,6,4,google,2026-03-12 19:56:00.514168,abortion pill side effects timeline,side effects 3 weeks after abortion,of,pill long term +abortion,"('side effects of 3 weeks abortion', 'side effects of abortion long term')",side effects of 3 weeks abortion,side effects of abortion long term,7,4,google,2026-03-12 19:56:00.514168,abortion pill side effects timeline,side effects 3 weeks after abortion,of,long term +abortion,"('side effects of 3 weeks abortion', 'side effects of a surgical abortion')",side effects of 3 weeks abortion,side effects of a surgical abortion,8,4,google,2026-03-12 19:56:00.514168,abortion pill side effects timeline,side effects 3 weeks after abortion,of,a surgical +abortion,"('long term effects after abortion', 'long term effects after abortion pill')",long term effects after abortion,long term effects after abortion pill,1,4,google,2026-03-12 19:56:01.678523,abortion pill side effects timeline,side effects 3 weeks after abortion,long term,pill +abortion,"('long term effects after abortion', 'long term effects of abortion')",long term effects after abortion,long term effects of abortion,2,4,google,2026-03-12 19:56:01.678523,abortion pill side effects timeline,side effects 3 weeks after abortion,long term,of +abortion,"('long term effects after abortion', 'long term effects of abortion on the body')",long term effects after abortion,long term effects of abortion on the body,3,4,google,2026-03-12 19:56:01.678523,abortion pill side effects timeline,side effects 3 weeks after abortion,long term,of on the body +abortion,"('long term effects after abortion', 'long term effects of abortion on women')",long term effects after abortion,long term effects of abortion on women,4,4,google,2026-03-12 19:56:01.678523,abortion pill side effects timeline,side effects 3 weeks after abortion,long term,of on women +abortion,"('long term effects after abortion', 'long term effects of abortion pill reddit')",long term effects after abortion,long term effects of abortion pill reddit,5,4,google,2026-03-12 19:56:01.678523,abortion pill side effects timeline,side effects 3 weeks after abortion,long term,of pill reddit +abortion,"('long term effects after abortion', 'long term effects of abortion on students')",long term effects after abortion,long term effects of abortion on students,6,4,google,2026-03-12 19:56:01.678523,abortion pill side effects timeline,side effects 3 weeks after abortion,long term,of on students +abortion,"('long term effects after abortion', 'long term complications after abortion')",long term effects after abortion,long term complications after abortion,7,4,google,2026-03-12 19:56:01.678523,abortion pill side effects timeline,side effects 3 weeks after abortion,long term,complications +abortion,"('long term effects after abortion', 'long term effects of abortion reddit')",long term effects after abortion,long term effects of abortion reddit,8,4,google,2026-03-12 19:56:01.678523,abortion pill side effects timeline,side effects 3 weeks after abortion,long term,of reddit +abortion,"('long term effects after abortion', 'long term effects of abortion medication')",long term effects after abortion,long term effects of abortion medication,9,4,google,2026-03-12 19:56:01.678523,abortion pill side effects timeline,side effects 3 weeks after abortion,long term,of medication +abortion,"('positive pregnancy 3 weeks after abortion', 'positive pregnancy test 3 weeks after abortion')",positive pregnancy 3 weeks after abortion,positive pregnancy test 3 weeks after abortion,1,4,google,2026-03-12 19:56:02.958163,abortion pill side effects timeline,side effects 3 weeks after abortion,positive pregnancy,test +abortion,"('positive pregnancy 3 weeks after abortion', 'positive pregnancy test 3 weeks after abortion pill')",positive pregnancy 3 weeks after abortion,positive pregnancy test 3 weeks after abortion pill,2,4,google,2026-03-12 19:56:02.958163,abortion pill side effects timeline,side effects 3 weeks after abortion,positive pregnancy,test pill +abortion,"('positive pregnancy 3 weeks after abortion', 'positive pregnancy test 3 weeks after abortion reddit')",positive pregnancy 3 weeks after abortion,positive pregnancy test 3 weeks after abortion reddit,3,4,google,2026-03-12 19:56:02.958163,abortion pill side effects timeline,side effects 3 weeks after abortion,positive pregnancy,test reddit +abortion,"('positive pregnancy 3 weeks after abortion', 'strong positive pregnancy test 3 weeks after abortion')",positive pregnancy 3 weeks after abortion,strong positive pregnancy test 3 weeks after abortion,4,4,google,2026-03-12 19:56:02.958163,abortion pill side effects timeline,side effects 3 weeks after abortion,positive pregnancy,strong test +abortion,"('positive pregnancy 3 weeks after abortion', 'faint positive pregnancy test 3 weeks after abortion')",positive pregnancy 3 weeks after abortion,faint positive pregnancy test 3 weeks after abortion,5,4,google,2026-03-12 19:56:02.958163,abortion pill side effects timeline,side effects 3 weeks after abortion,positive pregnancy,faint test +abortion,"('positive pregnancy 3 weeks after abortion', 'strong positive pregnancy test 3 weeks after abortion mumsnet')",positive pregnancy 3 weeks after abortion,strong positive pregnancy test 3 weeks after abortion mumsnet,6,4,google,2026-03-12 19:56:02.958163,abortion pill side effects timeline,side effects 3 weeks after abortion,positive pregnancy,strong test mumsnet +abortion,"('positive pregnancy 3 weeks after abortion', 'positive pregnancy test 3 weeks after medical abortion')",positive pregnancy 3 weeks after abortion,positive pregnancy test 3 weeks after medical abortion,7,4,google,2026-03-12 19:56:02.958163,abortion pill side effects timeline,side effects 3 weeks after abortion,positive pregnancy,test medical +abortion,"('positive pregnancy 3 weeks after abortion', 'positive pregnancy test 3 weeks after surgical abortion')",positive pregnancy 3 weeks after abortion,positive pregnancy test 3 weeks after surgical abortion,8,4,google,2026-03-12 19:56:02.958163,abortion pill side effects timeline,side effects 3 weeks after abortion,positive pregnancy,test surgical +abortion,"('positive pregnancy 3 weeks after abortion', 'faint positive pregnancy test 3 weeks after abortion forum')",positive pregnancy 3 weeks after abortion,faint positive pregnancy test 3 weeks after abortion forum,9,4,google,2026-03-12 19:56:02.958163,abortion pill side effects timeline,side effects 3 weeks after abortion,positive pregnancy,faint test forum +abortion,"('side effects of abortion at 15 weeks', 'is it safe to abort at 15 weeks')",side effects of abortion at 15 weeks,is it safe to abort at 15 weeks,1,4,google,2026-03-12 19:56:04.061328,abortion pill side effects timeline,side effects 3 weeks after abortion,of at 15,is it safe to abort +abortion,"('side effects of abortion at 15 weeks', 'can you still have an abortion at 15 weeks')",side effects of abortion at 15 weeks,can you still have an abortion at 15 weeks,2,4,google,2026-03-12 19:56:04.061328,abortion pill side effects timeline,side effects 3 weeks after abortion,of at 15,can you still have an +abortion,"('side effects of abortion at 15 weeks', 'side effects of abortion pill long term')",side effects of abortion at 15 weeks,side effects of abortion pill long term,3,4,google,2026-03-12 19:56:04.061328,abortion pill side effects timeline,side effects 3 weeks after abortion,of at 15,pill long term +abortion,"('side effects of abortion at 15 weeks', '15 weeks abortion pain')",side effects of abortion at 15 weeks,15 weeks abortion pain,4,4,google,2026-03-12 19:56:04.061328,abortion pill side effects timeline,side effects 3 weeks after abortion,of at 15,pain +abortion,"('side effects of abortion at 15 weeks', 'abortion 15 weeks')",side effects of abortion at 15 weeks,abortion 15 weeks,5,4,google,2026-03-12 19:56:04.061328,abortion pill side effects timeline,side effects 3 weeks after abortion,of at 15,of at 15 +abortion,"('pain 4 days after abortion pill', 'cramps 4 days after morning after pill')",pain 4 days after abortion pill,cramps 4 days after morning after pill,1,4,google,2026-03-12 19:56:05.292346,abortion pill side effects timeline,4 days after abortion pill,pain,cramps morning +abortion,"('pain 4 days after abortion pill', 'abdominal pain 4 days after morning after pill')",pain 4 days after abortion pill,abdominal pain 4 days after morning after pill,2,4,google,2026-03-12 19:56:05.292346,abortion pill side effects timeline,4 days after abortion pill,pain,abdominal morning +abortion,"('pain 4 days after abortion pill', 'cramping 4 days after medication abortion')",pain 4 days after abortion pill,cramping 4 days after medication abortion,3,4,google,2026-03-12 19:56:05.292346,abortion pill side effects timeline,4 days after abortion pill,pain,cramping medication +abortion,"('pain 4 days after abortion pill', '3 days after abortion pain')",pain 4 days after abortion pill,3 days after abortion pain,4,4,google,2026-03-12 19:56:05.292346,abortion pill side effects timeline,4 days after abortion pill,pain,3 +abortion,"('pain 4 days after abortion pill', 'pain 5 days after abortion pill')",pain 4 days after abortion pill,pain 5 days after abortion pill,5,4,google,2026-03-12 19:56:05.292346,abortion pill side effects timeline,4 days after abortion pill,pain,5 +abortion,"('pain 4 days after abortion pill', 'medical abortion pain 3 days later')",pain 4 days after abortion pill,medical abortion pain 3 days later,6,4,google,2026-03-12 19:56:05.292346,abortion pill side effects timeline,4 days after abortion pill,pain,medical 3 later +abortion,"('pain 4 days after abortion pill', 'pain 4 days after misoprostol')",pain 4 days after abortion pill,pain 4 days after misoprostol,7,4,google,2026-03-12 19:56:05.292346,abortion pill side effects timeline,4 days after abortion pill,pain,misoprostol +abortion,"('pain 4 days after abortion pill', 'pain days after abortion pill')",pain 4 days after abortion pill,pain days after abortion pill,8,4,google,2026-03-12 19:56:05.292346,abortion pill side effects timeline,4 days after abortion pill,pain,pain +abortion,"('pain 4 days after abortion pill', 'pain 3 days after abortion pill')",pain 4 days after abortion pill,pain 3 days after abortion pill,9,4,google,2026-03-12 19:56:05.292346,abortion pill side effects timeline,4 days after abortion pill,pain,3 +abortion,"('bleeding 4 days after abortion pill', 'bleeding 4 days after morning after pill')",bleeding 4 days after abortion pill,bleeding 4 days after morning after pill,1,4,google,2026-03-12 19:56:06.245270,abortion pill side effects timeline,4 days after abortion pill,bleeding,morning +abortion,"('bleeding 4 days after abortion pill', 'heavy bleeding 4 days after abortion pill')",bleeding 4 days after abortion pill,heavy bleeding 4 days after abortion pill,2,4,google,2026-03-12 19:56:06.245270,abortion pill side effects timeline,4 days after abortion pill,bleeding,heavy +abortion,"('bleeding 4 days after abortion pill', 'spotting 4 days after morning after pill')",bleeding 4 days after abortion pill,spotting 4 days after morning after pill,3,4,google,2026-03-12 19:56:06.245270,abortion pill side effects timeline,4 days after abortion pill,bleeding,spotting morning +abortion,"('bleeding 4 days after abortion pill', 'still bleeding 4 days after abortion pill')",bleeding 4 days after abortion pill,still bleeding 4 days after abortion pill,4,4,google,2026-03-12 19:56:06.245270,abortion pill side effects timeline,4 days after abortion pill,bleeding,still +abortion,"('bleeding 4 days after abortion pill', 'bleeding for days after morning after pill')",bleeding 4 days after abortion pill,bleeding for days after morning after pill,5,4,google,2026-03-12 19:56:06.245270,abortion pill side effects timeline,4 days after abortion pill,bleeding,for morning +abortion,"('bleeding 4 days after abortion pill', 'heavy bleeding 4 days after morning after pill')",bleeding 4 days after abortion pill,heavy bleeding 4 days after morning after pill,6,4,google,2026-03-12 19:56:06.245270,abortion pill side effects timeline,4 days after abortion pill,bleeding,heavy morning +abortion,"('bleeding 4 days after abortion pill', 'bleeding for 10 days after abortion pill')",bleeding 4 days after abortion pill,bleeding for 10 days after abortion pill,7,4,google,2026-03-12 19:56:06.245270,abortion pill side effects timeline,4 days after abortion pill,bleeding,for 10 +abortion,"('bleeding 4 days after abortion pill', 'light bleeding 4 days after morning after pill')",bleeding 4 days after abortion pill,light bleeding 4 days after morning after pill,8,4,google,2026-03-12 19:56:06.245270,abortion pill side effects timeline,4 days after abortion pill,bleeding,light morning +abortion,"('bleeding 4 days after abortion pill', 'bleeding for 10 days after morning after pill')",bleeding 4 days after abortion pill,bleeding for 10 days after morning after pill,9,4,google,2026-03-12 19:56:06.245270,abortion pill side effects timeline,4 days after abortion pill,bleeding,for 10 morning +abortion,"('clots 4 days after abortion pill', 'blood clots 4 days after misoprostol')",clots 4 days after abortion pill,blood clots 4 days after misoprostol,1,4,google,2026-03-12 19:56:07.342785,abortion pill side effects timeline,4 days after abortion pill,clots,blood misoprostol +abortion,"('clots 4 days after abortion pill', 'clots 4 days after miscarriage')",clots 4 days after abortion pill,clots 4 days after miscarriage,2,4,google,2026-03-12 19:56:07.342785,abortion pill side effects timeline,4 days after abortion pill,clots,miscarriage +abortion,"('clots 4 days after abortion pill', 'clots after abortion pill')",clots 4 days after abortion pill,clots after abortion pill,3,4,google,2026-03-12 19:56:07.342785,abortion pill side effects timeline,4 days after abortion pill,clots,clots +abortion,"('clots 4 days after abortion pill', 'clots 4 days after abortion')",clots 4 days after abortion pill,clots 4 days after abortion,4,4,google,2026-03-12 19:56:07.342785,abortion pill side effects timeline,4 days after abortion pill,clots,clots +abortion,"('bleeding 4 days after morning after pill', 'spotting 4 days after morning after pill')",bleeding 4 days after morning after pill,spotting 4 days after morning after pill,1,4,google,2026-03-12 19:56:08.563816,abortion pill side effects timeline,4 days after abortion pill,bleeding morning,spotting +abortion,"('bleeding 4 days after morning after pill', 'bleeding for days after morning after pill')",bleeding 4 days after morning after pill,bleeding for days after morning after pill,2,4,google,2026-03-12 19:56:08.563816,abortion pill side effects timeline,4 days after abortion pill,bleeding morning,for +abortion,"('bleeding 4 days after morning after pill', 'heavy bleeding 4 days after morning after pill')",bleeding 4 days after morning after pill,heavy bleeding 4 days after morning after pill,3,4,google,2026-03-12 19:56:08.563816,abortion pill side effects timeline,4 days after abortion pill,bleeding morning,heavy +abortion,"('bleeding 4 days after morning after pill', 'light bleeding 4 days after morning after pill')",bleeding 4 days after morning after pill,light bleeding 4 days after morning after pill,4,4,google,2026-03-12 19:56:08.563816,abortion pill side effects timeline,4 days after abortion pill,bleeding morning,light +abortion,"('bleeding 4 days after morning after pill', 'bleeding for 10 days after morning after pill')",bleeding 4 days after morning after pill,bleeding for 10 days after morning after pill,5,4,google,2026-03-12 19:56:08.563816,abortion pill side effects timeline,4 days after abortion pill,bleeding morning,for 10 +abortion,"('bleeding 4 days after morning after pill', 'bleeding for 3 days after morning after pill')",bleeding 4 days after morning after pill,bleeding for 3 days after morning after pill,6,4,google,2026-03-12 19:56:08.563816,abortion pill side effects timeline,4 days after abortion pill,bleeding morning,for 3 +abortion,"('bleeding 4 days after morning after pill', 'bleeding for 5 days after morning after pill')",bleeding 4 days after morning after pill,bleeding for 5 days after morning after pill,7,4,google,2026-03-12 19:56:08.563816,abortion pill side effects timeline,4 days after abortion pill,bleeding morning,for 5 +abortion,"('bleeding 4 days after morning after pill', 'bleeding for 8 days after morning after pill')",bleeding 4 days after morning after pill,bleeding for 8 days after morning after pill,8,4,google,2026-03-12 19:56:08.563816,abortion pill side effects timeline,4 days after abortion pill,bleeding morning,for 8 +abortion,"('bleeding 4 days after morning after pill', 'bleeding for 11 days after morning after pill')",bleeding 4 days after morning after pill,bleeding for 11 days after morning after pill,9,4,google,2026-03-12 19:56:08.563816,abortion pill side effects timeline,4 days after abortion pill,bleeding morning,for 11 +abortion,"('heavy bleeding 4 days after abortion pill', 'heavy bleeding 4 days after morning after pill')",heavy bleeding 4 days after abortion pill,heavy bleeding 4 days after morning after pill,1,4,google,2026-03-12 19:56:09.432500,abortion pill side effects timeline,4 days after abortion pill,heavy bleeding,morning +abortion,"('heavy bleeding 4 days after abortion pill', 'bleeding heavy 4 days after abortion')",heavy bleeding 4 days after abortion pill,bleeding heavy 4 days after abortion,2,4,google,2026-03-12 19:56:09.432500,abortion pill side effects timeline,4 days after abortion pill,heavy bleeding,heavy bleeding +abortion,"('heavy bleeding 4 days after abortion pill', 'bleeding day 4 after abortion')",heavy bleeding 4 days after abortion pill,bleeding day 4 after abortion,3,4,google,2026-03-12 19:56:09.432500,abortion pill side effects timeline,4 days after abortion pill,heavy bleeding,day +abortion,"('heavy bleeding 4 days after abortion pill', 'heavy bleeding 4 weeks after abortion pill')",heavy bleeding 4 days after abortion pill,heavy bleeding 4 weeks after abortion pill,4,4,google,2026-03-12 19:56:09.432500,abortion pill side effects timeline,4 days after abortion pill,heavy bleeding,weeks +abortion,"('heavy bleeding 4 days after abortion pill', 'heavy bleeding 4 days after misoprostol')",heavy bleeding 4 days after abortion pill,heavy bleeding 4 days after misoprostol,5,4,google,2026-03-12 19:56:09.432500,abortion pill side effects timeline,4 days after abortion pill,heavy bleeding,misoprostol +abortion,"('heavy bleeding 4 days after abortion pill', 'heavy bleeding days after abortion pill')",heavy bleeding 4 days after abortion pill,heavy bleeding days after abortion pill,6,4,google,2026-03-12 19:56:09.432500,abortion pill side effects timeline,4 days after abortion pill,heavy bleeding,heavy bleeding +abortion,"('spotting 4 days after morning after pill', 'bleeding 4 days after morning after pill')",spotting 4 days after morning after pill,bleeding 4 days after morning after pill,1,4,google,2026-03-12 19:56:10.242890,abortion pill side effects timeline,4 days after abortion pill,spotting morning,bleeding +abortion,"('spotting 4 days after morning after pill', 'bleeding for days after morning after pill')",spotting 4 days after morning after pill,bleeding for days after morning after pill,2,4,google,2026-03-12 19:56:10.242890,abortion pill side effects timeline,4 days after abortion pill,spotting morning,bleeding for +abortion,"('spotting 4 days after morning after pill', 'heavy bleeding 4 days after morning after pill')",spotting 4 days after morning after pill,heavy bleeding 4 days after morning after pill,3,4,google,2026-03-12 19:56:10.242890,abortion pill side effects timeline,4 days after abortion pill,spotting morning,heavy bleeding +abortion,"('spotting 4 days after morning after pill', 'brown discharge 4 days after morning after pill')",spotting 4 days after morning after pill,brown discharge 4 days after morning after pill,4,4,google,2026-03-12 19:56:10.242890,abortion pill side effects timeline,4 days after abortion pill,spotting morning,brown discharge +abortion,"('spotting 4 days after morning after pill', 'light bleeding 4 days after morning after pill')",spotting 4 days after morning after pill,light bleeding 4 days after morning after pill,5,4,google,2026-03-12 19:56:10.242890,abortion pill side effects timeline,4 days after abortion pill,spotting morning,light bleeding +abortion,"('spotting 4 days after morning after pill', 'bleeding for 10 days after morning after pill')",spotting 4 days after morning after pill,bleeding for 10 days after morning after pill,6,4,google,2026-03-12 19:56:10.242890,abortion pill side effects timeline,4 days after abortion pill,spotting morning,bleeding for 10 +abortion,"('spotting 4 days after morning after pill', 'bleeding for 3 days after morning after pill')",spotting 4 days after morning after pill,bleeding for 3 days after morning after pill,7,4,google,2026-03-12 19:56:10.242890,abortion pill side effects timeline,4 days after abortion pill,spotting morning,bleeding for 3 +abortion,"('spotting 4 days after morning after pill', 'bleeding for 5 days after morning after pill')",spotting 4 days after morning after pill,bleeding for 5 days after morning after pill,8,4,google,2026-03-12 19:56:10.242890,abortion pill side effects timeline,4 days after abortion pill,spotting morning,bleeding for 5 +abortion,"('spotting 4 days after morning after pill', 'bleeding for 8 days after morning after pill')",spotting 4 days after morning after pill,bleeding for 8 days after morning after pill,9,4,google,2026-03-12 19:56:10.242890,abortion pill side effects timeline,4 days after abortion pill,spotting morning,bleeding for 8 +abortion,"('still bleeding 4 days after abortion pill', 'bleeding 4 days after abortion pill')",still bleeding 4 days after abortion pill,bleeding 4 days after abortion pill,1,4,google,2026-03-12 19:56:11.523968,abortion pill side effects timeline,4 days after abortion pill,still bleeding,still bleeding +abortion,"('still bleeding 4 days after abortion pill', 'bleeding 4 days after morning after pill')",still bleeding 4 days after abortion pill,bleeding 4 days after morning after pill,2,4,google,2026-03-12 19:56:11.523968,abortion pill side effects timeline,4 days after abortion pill,still bleeding,morning +abortion,"('still bleeding 4 days after abortion pill', 'heavy bleeding 4 days after abortion pill')",still bleeding 4 days after abortion pill,heavy bleeding 4 days after abortion pill,3,4,google,2026-03-12 19:56:11.523968,abortion pill side effects timeline,4 days after abortion pill,still bleeding,heavy +abortion,"('still bleeding 4 days after abortion pill', 'spotting 4 days after morning after pill')",still bleeding 4 days after abortion pill,spotting 4 days after morning after pill,4,4,google,2026-03-12 19:56:11.523968,abortion pill side effects timeline,4 days after abortion pill,still bleeding,spotting morning +abortion,"('still bleeding 4 days after abortion pill', 'heavy bleeding 4 days after morning after pill')",still bleeding 4 days after abortion pill,heavy bleeding 4 days after morning after pill,5,4,google,2026-03-12 19:56:11.523968,abortion pill side effects timeline,4 days after abortion pill,still bleeding,heavy morning +abortion,"('still bleeding 4 days after abortion pill', 'bleeding for days after morning after pill')",still bleeding 4 days after abortion pill,bleeding for days after morning after pill,6,4,google,2026-03-12 19:56:11.523968,abortion pill side effects timeline,4 days after abortion pill,still bleeding,for morning +abortion,"('still bleeding 4 days after abortion pill', 'light bleeding 4 days after morning after pill')",still bleeding 4 days after abortion pill,light bleeding 4 days after morning after pill,7,4,google,2026-03-12 19:56:11.523968,abortion pill side effects timeline,4 days after abortion pill,still bleeding,light morning +abortion,"('still bleeding 4 days after abortion pill', 'is it normal to bleed 5 days after abortion')",still bleeding 4 days after abortion pill,is it normal to bleed 5 days after abortion,8,4,google,2026-03-12 19:56:11.523968,abortion pill side effects timeline,4 days after abortion pill,still bleeding,is it normal to bleed 5 +abortion,"('still bleeding 4 days after abortion pill', '4 weeks after abortion still bleeding')",still bleeding 4 days after abortion pill,4 weeks after abortion still bleeding,9,4,google,2026-03-12 19:56:11.523968,abortion pill side effects timeline,4 days after abortion pill,still bleeding,weeks +abortion,"('cramps 4 days after morning after pill', 'abdominal pain 4 days after morning after pill')",cramps 4 days after morning after pill,abdominal pain 4 days after morning after pill,1,4,google,2026-03-12 19:56:12.822253,abortion pill side effects timeline,4 days after abortion pill,cramps morning,abdominal pain +abortion,"('cramps 4 days after morning after pill', 'cramps 5 days after morning after pill')",cramps 4 days after morning after pill,cramps 5 days after morning after pill,2,4,google,2026-03-12 19:56:12.822253,abortion pill side effects timeline,4 days after abortion pill,cramps morning,5 +abortion,"('cramps 4 days after morning after pill', 'cramps 3 days after morning after pill')",cramps 4 days after morning after pill,cramps 3 days after morning after pill,3,4,google,2026-03-12 19:56:12.822253,abortion pill side effects timeline,4 days after abortion pill,cramps morning,3 +abortion,"('cramps 4 days after morning after pill', 'cramps day after morning after pill')",cramps 4 days after morning after pill,cramps day after morning after pill,4,4,google,2026-03-12 19:56:12.822253,abortion pill side effects timeline,4 days after abortion pill,cramps morning,day +abortion,"('cramps 4 days after morning after pill', 'cramps 4 days after taking plan b')",cramps 4 days after morning after pill,cramps 4 days after taking plan b,5,4,google,2026-03-12 19:56:12.822253,abortion pill side effects timeline,4 days after abortion pill,cramps morning,taking plan b +abortion,"('cramps 4 days after morning after pill', 'cramps 4 days after plan b')",cramps 4 days after morning after pill,cramps 4 days after plan b,6,4,google,2026-03-12 19:56:12.822253,abortion pill side effects timeline,4 days after abortion pill,cramps morning,plan b +abortion,"('period 4 days after morning after pill', 'period 4 days late after morning after pill')",period 4 days after morning after pill,period 4 days late after morning after pill,1,4,google,2026-03-12 19:56:13.806125,abortion pill side effects timeline,4 days after abortion pill,period morning,late +abortion,"('period 4 days after morning after pill', 'period 5 days after morning after pill')",period 4 days after morning after pill,period 5 days after morning after pill,2,4,google,2026-03-12 19:56:13.806125,abortion pill side effects timeline,4 days after abortion pill,period morning,5 +abortion,"('period 4 days after morning after pill', 'period 4 days after taking plan b')",period 4 days after morning after pill,period 4 days after taking plan b,3,4,google,2026-03-12 19:56:13.806125,abortion pill side effects timeline,4 days after abortion pill,period morning,taking plan b +abortion,"('period 4 days after morning after pill', 'period 4 days after plan b')",period 4 days after morning after pill,period 4 days after plan b,4,4,google,2026-03-12 19:56:13.806125,abortion pill side effects timeline,4 days after abortion pill,period morning,plan b +abortion,"('period 4 days after morning after pill', 'period 4 days early after plan b')",period 4 days after morning after pill,period 4 days early after plan b,5,4,google,2026-03-12 19:56:13.806125,abortion pill side effects timeline,4 days after abortion pill,period morning,early plan b +abortion,"('period 4 days after morning after pill', 'period 4 days after stopping birth control')",period 4 days after morning after pill,period 4 days after stopping birth control,6,4,google,2026-03-12 19:56:13.806125,abortion pill side effects timeline,4 days after abortion pill,period morning,stopping birth control +abortion,"('period 4 days after morning after pill', 'period 4 days early on the pill')",period 4 days after morning after pill,period 4 days early on the pill,7,4,google,2026-03-12 19:56:13.806125,abortion pill side effects timeline,4 days after abortion pill,period morning,early on the +abortion,"('abortion pill side effects last for how long', 'abortion pill side effects for how long')",abortion pill side effects last for how long,abortion pill side effects for how long,1,4,google,2026-03-12 19:56:14.795081,abortion pill side effects timeline,abortion pill side effects last,for how long,for how long +abortion,"('abortion pill side effects last for how long', 'abortion pill side effects long term')",abortion pill side effects last for how long,abortion pill side effects long term,2,4,google,2026-03-12 19:56:14.795081,abortion pill side effects timeline,abortion pill side effects last,for how long,term +abortion,"('abortion pill side effects last for how long', 'abortion pill side effects long term reddit')",abortion pill side effects last for how long,abortion pill side effects long term reddit,3,4,google,2026-03-12 19:56:14.795081,abortion pill side effects timeline,abortion pill side effects last,for how long,term reddit +abortion,"('abortion pill side effects last for how long', 'how long pain after abortion')",abortion pill side effects last for how long,how long pain after abortion,4,4,google,2026-03-12 19:56:14.795081,abortion pill side effects timeline,abortion pill side effects last,for how long,pain after +abortion,"('abortion pill side effects last for how long', 'how long do the side effects of medical abortion last')",abortion pill side effects last for how long,how long do the side effects of medical abortion last,5,4,google,2026-03-12 19:56:14.795081,abortion pill side effects timeline,abortion pill side effects last,for how long,do the of medical +abortion,"('abortion pill side effects last for how long', 'how long does abortion side effects last')",abortion pill side effects last for how long,how long does abortion side effects last,6,4,google,2026-03-12 19:56:14.795081,abortion pill side effects timeline,abortion pill side effects last,for how long,does +abortion,"('abortion pill side effects last for how long', 'how long does pain last after abortion pills')",abortion pill side effects last for how long,how long does pain last after abortion pills,7,4,google,2026-03-12 19:56:14.795081,abortion pill side effects timeline,abortion pill side effects last,for how long,does pain after pills +abortion,"('abortion pill side effects last for how long', 'how long after abortion does pain stop')",abortion pill side effects last for how long,how long after abortion does pain stop,8,4,google,2026-03-12 19:56:14.795081,abortion pill side effects timeline,abortion pill side effects last,for how long,after does pain stop +abortion,"('abortion pill side effects last for how long', 'how long do side effects last from abortion pill')",abortion pill side effects last for how long,how long do side effects last from abortion pill,9,4,google,2026-03-12 19:56:14.795081,abortion pill side effects timeline,abortion pill side effects last,for how long,do from +abortion,"('can morning after pill side effects last a week', 'can morning after pill side effects last for 2 weeks')",can morning after pill side effects last a week,can morning after pill side effects last for 2 weeks,1,4,google,2026-03-12 19:56:15.933052,abortion pill side effects timeline,abortion pill side effects last,can morning after a week,for 2 weeks +abortion,"('can morning after pill side effects last a week', 'morning after pill side effects a week later')",can morning after pill side effects last a week,morning after pill side effects a week later,2,4,google,2026-03-12 19:56:15.933052,abortion pill side effects timeline,abortion pill side effects last,can morning after a week,later +abortion,"('can morning after pill side effects last a week', 'how many days do morning after pill side effects last')",can morning after pill side effects last a week,how many days do morning after pill side effects last,3,4,google,2026-03-12 19:56:15.933052,abortion pill side effects timeline,abortion pill side effects last,can morning after a week,how many days do +abortion,"('can morning after pill side effects last a week', 'can the morning after pill cause long term effects')",can morning after pill side effects last a week,can the morning after pill cause long term effects,4,4,google,2026-03-12 19:56:15.933052,abortion pill side effects timeline,abortion pill side effects last,can morning after a week,the cause long term +abortion,"('can morning after pill side effects last a week', 'the morning after pill side effects long term')",can morning after pill side effects last a week,the morning after pill side effects long term,5,4,google,2026-03-12 19:56:15.933052,abortion pill side effects timeline,abortion pill side effects last,can morning after a week,the long term +abortion,"('can morning after pill side effects last a week', 'can morning after pill cause fever')",can morning after pill side effects last a week,can morning after pill cause fever,6,4,google,2026-03-12 19:56:15.933052,abortion pill side effects timeline,abortion pill side effects last,can morning after a week,cause fever +abortion,"('can morning after pill side effects last for 2 weeks', 'how many days do morning after pill side effects last')",can morning after pill side effects last for 2 weeks,how many days do morning after pill side effects last,1,4,google,2026-03-12 19:56:16.995201,abortion pill side effects timeline,abortion pill side effects last,can morning after for 2 weeks,how many days do +abortion,"('can morning after pill side effects last for 2 weeks', 'morning after pill side effects 2 weeks later')",can morning after pill side effects last for 2 weeks,morning after pill side effects 2 weeks later,2,4,google,2026-03-12 19:56:16.995201,abortion pill side effects timeline,abortion pill side effects last,can morning after for 2 weeks,later +abortion,"('can morning after pill side effects last for 2 weeks', 'morning after pill side effects a week later')",can morning after pill side effects last for 2 weeks,morning after pill side effects a week later,3,4,google,2026-03-12 19:56:16.995201,abortion pill side effects timeline,abortion pill side effects last,can morning after for 2 weeks,a week later +abortion,"('can morning after pill side effects last for 2 weeks', 'side effects of morning after pill long term')",can morning after pill side effects last for 2 weeks,side effects of morning after pill long term,4,4,google,2026-03-12 19:56:16.995201,abortion pill side effects timeline,abortion pill side effects last,can morning after for 2 weeks,of long term +abortion,"('can morning after pill side effects last for 2 weeks', 'can morning after pill affect pregnancy')",can morning after pill side effects last for 2 weeks,can morning after pill affect pregnancy,5,4,google,2026-03-12 19:56:16.995201,abortion pill side effects timeline,abortion pill side effects last,can morning after for 2 weeks,affect pregnancy +abortion,"('can morning after pill side effects last for 2 weeks', 'side effects of morning-after pill if pregnant')",can morning after pill side effects last for 2 weeks,side effects of morning-after pill if pregnant,6,4,google,2026-03-12 19:56:16.995201,abortion pill side effects timeline,abortion pill side effects last,can morning after for 2 weeks,of morning-after if pregnant +abortion,"('pregnancy symptoms after abortion pill', 'pregnancy symptoms after morning after pill')",pregnancy symptoms after abortion pill,pregnancy symptoms after morning after pill,1,4,google,2026-03-12 19:56:17.954705,abortion pill side effects timeline,abortion pill side effects last,pregnancy symptoms after,morning +abortion,"('pregnancy symptoms after abortion pill', 'ectopic pregnancy symptoms after abortion pill')",pregnancy symptoms after abortion pill,ectopic pregnancy symptoms after abortion pill,2,4,google,2026-03-12 19:56:17.954705,abortion pill side effects timeline,abortion pill side effects last,pregnancy symptoms after,ectopic +abortion,"('pregnancy symptoms after abortion pill', 'early pregnancy symptoms after morning after pill')",pregnancy symptoms after abortion pill,early pregnancy symptoms after morning after pill,3,4,google,2026-03-12 19:56:17.954705,abortion pill side effects timeline,abortion pill side effects last,pregnancy symptoms after,early morning +abortion,"('pregnancy symptoms after abortion pill', 'ectopic pregnancy symptoms after morning after pill')",pregnancy symptoms after abortion pill,ectopic pregnancy symptoms after morning after pill,4,4,google,2026-03-12 19:56:17.954705,abortion pill side effects timeline,abortion pill side effects last,pregnancy symptoms after,ectopic morning +abortion,"('pregnancy symptoms after abortion pill', 'when do pregnancy symptoms stop after abortion pill')",pregnancy symptoms after abortion pill,when do pregnancy symptoms stop after abortion pill,5,4,google,2026-03-12 19:56:17.954705,abortion pill side effects timeline,abortion pill side effects last,pregnancy symptoms after,when do stop +abortion,"('pregnancy symptoms after abortion pill', 'can you still have pregnancy symptoms after abortion pill')",pregnancy symptoms after abortion pill,can you still have pregnancy symptoms after abortion pill,6,4,google,2026-03-12 19:56:17.954705,abortion pill side effects timeline,abortion pill side effects last,pregnancy symptoms after,can you still have +abortion,"('pregnancy symptoms after abortion pill', 'do pregnancy symptoms go away after abortion pill')",pregnancy symptoms after abortion pill,do pregnancy symptoms go away after abortion pill,7,4,google,2026-03-12 19:56:17.954705,abortion pill side effects timeline,abortion pill side effects last,pregnancy symptoms after,do go away +abortion,"('pregnancy symptoms after abortion pill', 'how long do pregnancy symptoms last after abortion pill')",pregnancy symptoms after abortion pill,how long do pregnancy symptoms last after abortion pill,8,4,google,2026-03-12 19:56:17.954705,abortion pill side effects timeline,abortion pill side effects last,pregnancy symptoms after,how long do last +abortion,"('pregnancy symptoms after abortion pill', 'do pregnancy symptoms stop after first abortion pill')",pregnancy symptoms after abortion pill,do pregnancy symptoms stop after first abortion pill,9,4,google,2026-03-12 19:56:17.954705,abortion pill side effects timeline,abortion pill side effects last,pregnancy symptoms after,do stop first +abortion,"('how long do pregnancy symptoms last after abortion pill', 'how long do you have pregnancy symptoms after abortion pill')",how long do pregnancy symptoms last after abortion pill,how long do you have pregnancy symptoms after abortion pill,1,4,google,2026-03-12 19:56:19.145877,abortion pill side effects timeline,abortion pill side effects last,how long do pregnancy symptoms after,you have +abortion,"('how long do pregnancy symptoms last after abortion pill', 'how long do pregnancy symptoms last after abortion')",how long do pregnancy symptoms last after abortion pill,how long do pregnancy symptoms last after abortion,2,4,google,2026-03-12 19:56:19.145877,abortion pill side effects timeline,abortion pill side effects last,how long do pregnancy symptoms after,how long do pregnancy symptoms after +abortion,"('how long do pregnancy symptoms last after abortion pill', 'how long does it take for pregnancy symptoms to end after abortion')",how long do pregnancy symptoms last after abortion pill,how long does it take for pregnancy symptoms to end after abortion,3,4,google,2026-03-12 19:56:19.145877,abortion pill side effects timeline,abortion pill side effects last,how long do pregnancy symptoms after,does it take for to end +abortion,"('how long do pregnancy symptoms last after abortion pill', 'how long does it take for pregnancy symptoms to leave after abortion')",how long do pregnancy symptoms last after abortion pill,how long does it take for pregnancy symptoms to leave after abortion,4,4,google,2026-03-12 19:56:19.145877,abortion pill side effects timeline,abortion pill side effects last,how long do pregnancy symptoms after,does it take for to leave +abortion,"('how long do pregnancy symptoms last after abortion pill', 'is it possible to still have pregnancy symptoms after abortion')",how long do pregnancy symptoms last after abortion pill,is it possible to still have pregnancy symptoms after abortion,5,4,google,2026-03-12 19:56:19.145877,abortion pill side effects timeline,abortion pill side effects last,how long do pregnancy symptoms after,is it possible to still have +abortion,"('how long do pregnancy symptoms last after abortion pill', 'how long do pregnancy symptoms last after medical abortion')",how long do pregnancy symptoms last after abortion pill,how long do pregnancy symptoms last after medical abortion,6,4,google,2026-03-12 19:56:19.145877,abortion pill side effects timeline,abortion pill side effects last,how long do pregnancy symptoms after,medical +abortion,"('how long do pregnancy symptoms last after abortion pill', 'how long do pregnancy symptoms last after surgical abortion')",how long do pregnancy symptoms last after abortion pill,how long do pregnancy symptoms last after surgical abortion,7,4,google,2026-03-12 19:56:19.145877,abortion pill side effects timeline,abortion pill side effects last,how long do pregnancy symptoms after,surgical +abortion,"('how long do pregnancy symptoms last after abortion pill', 'how long do pregnancy symptoms go away after abortion')",how long do pregnancy symptoms last after abortion pill,how long do pregnancy symptoms go away after abortion,8,4,google,2026-03-12 19:56:19.145877,abortion pill side effects timeline,abortion pill side effects last,how long do pregnancy symptoms after,go away +abortion,"('how long do side effects last from abortion pill', 'how long do side effects last from morning after pill')",how long do side effects last from abortion pill,how long do side effects last from morning after pill,1,4,google,2026-03-12 19:56:19.955271,abortion pill side effects timeline,abortion pill side effects last,how long do from,morning after +abortion,"('how long do side effects last from abortion pill', 'how long do symptoms last from abortion pill')",how long do side effects last from abortion pill,how long do symptoms last from abortion pill,2,4,google,2026-03-12 19:56:19.955271,abortion pill side effects timeline,abortion pill side effects last,how long do from,symptoms +abortion,"('how long do side effects last from abortion pill', 'how long do symptoms last from morning after pill')",how long do side effects last from abortion pill,how long do symptoms last from morning after pill,3,4,google,2026-03-12 19:56:19.955271,abortion pill side effects timeline,abortion pill side effects last,how long do from,symptoms morning after +abortion,"('how long do side effects last from abortion pill', 'how long do symptoms last after abortion pill')",how long do side effects last from abortion pill,how long do symptoms last after abortion pill,4,4,google,2026-03-12 19:56:19.955271,abortion pill side effects timeline,abortion pill side effects last,how long do from,symptoms after +abortion,"('how long do side effects last from abortion pill', 'how long do pregnancy symptoms last after abortion pill')",how long do side effects last from abortion pill,how long do pregnancy symptoms last after abortion pill,5,4,google,2026-03-12 19:56:19.955271,abortion pill side effects timeline,abortion pill side effects last,how long do from,pregnancy symptoms after +abortion,"('how long do side effects last from abortion pill', 'how long does the morning after pill side effects last in your system')",how long do side effects last from abortion pill,how long does the morning after pill side effects last in your system,6,4,google,2026-03-12 19:56:19.955271,abortion pill side effects timeline,abortion pill side effects last,how long do from,does the morning after in your system +abortion,"('how long do side effects last from abortion pill', 'how long does abortion side effects last')",how long do side effects last from abortion pill,how long does abortion side effects last,7,4,google,2026-03-12 19:56:19.955271,abortion pill side effects timeline,abortion pill side effects last,how long do from,does +abortion,"('how long do side effects last from abortion pill', 'how long do side effects of misoprostol last')",how long do side effects last from abortion pill,how long do side effects of misoprostol last,8,4,google,2026-03-12 19:56:19.955271,abortion pill side effects timeline,abortion pill side effects last,how long do from,of misoprostol +abortion,"('how long do side effects last from abortion pill', 'how long do the side effects of medical abortion last')",how long do side effects last from abortion pill,how long do the side effects of medical abortion last,9,4,google,2026-03-12 19:56:19.955271,abortion pill side effects timeline,abortion pill side effects last,how long do from,the of medical +abortion,"('morning after pill side effects after 2 weeks', 'can morning after pill side effects last for 2 weeks')",morning after pill side effects after 2 weeks,can morning after pill side effects last for 2 weeks,1,4,google,2026-03-12 19:56:20.878734,abortion pill side effects timeline,abortion pill side effects after,morning 2 weeks,can last for +abortion,"('morning after pill side effects after 2 weeks', 'morning after pill symptoms after 2 weeks')",morning after pill side effects after 2 weeks,morning after pill symptoms after 2 weeks,2,4,google,2026-03-12 19:56:20.878734,abortion pill side effects timeline,abortion pill side effects after,morning 2 weeks,symptoms +abortion,"('morning after pill side effects after 2 weeks', 'morning after pill side effects 2 weeks later')",morning after pill side effects after 2 weeks,morning after pill side effects 2 weeks later,3,4,google,2026-03-12 19:56:20.878734,abortion pill side effects timeline,abortion pill side effects after,morning 2 weeks,later +abortion,"('morning after pill side effects after 2 weeks', 'how many days do morning after pill side effects last')",morning after pill side effects after 2 weeks,how many days do morning after pill side effects last,4,4,google,2026-03-12 19:56:20.878734,abortion pill side effects timeline,abortion pill side effects after,morning 2 weeks,how many days do last +abortion,"('morning after pill side effects after 2 weeks', 'morning after pill side effects a week later')",morning after pill side effects after 2 weeks,morning after pill side effects a week later,5,4,google,2026-03-12 19:56:20.878734,abortion pill side effects timeline,abortion pill side effects after,morning 2 weeks,a week later +abortion,"('morning after pill side effects after 2 weeks', 'morning after pill symptoms a week later')",morning after pill side effects after 2 weeks,morning after pill symptoms a week later,6,4,google,2026-03-12 19:56:20.878734,abortion pill side effects timeline,abortion pill side effects after,morning 2 weeks,symptoms a week later +abortion,"('morning after pill side effects after 2 weeks', 'morning after pill side effects bleeding')",morning after pill side effects after 2 weeks,morning after pill side effects bleeding,7,4,google,2026-03-12 19:56:20.878734,abortion pill side effects timeline,abortion pill side effects after,morning 2 weeks,bleeding +abortion,"('morning after pill side effects after 2 weeks', 'morning after pill side effects menstrual cycle')",morning after pill side effects after 2 weeks,morning after pill side effects menstrual cycle,8,4,google,2026-03-12 19:56:20.878734,abortion pill side effects timeline,abortion pill side effects after,morning 2 weeks,menstrual cycle +abortion,"('morning after pill side effects after 2 weeks', 'plan b pill side effects 2 weeks later')",morning after pill side effects after 2 weeks,plan b pill side effects 2 weeks later,9,4,google,2026-03-12 19:56:20.878734,abortion pill side effects timeline,abortion pill side effects after,morning 2 weeks,plan b later +abortion,"('morning after pill side effects after a week', 'morning after pill side effects after 2 weeks')",morning after pill side effects after a week,morning after pill side effects after 2 weeks,1,4,google,2026-03-12 19:56:22.281215,abortion pill side effects timeline,abortion pill side effects after,morning a week,2 weeks +abortion,"('morning after pill side effects after a week', 'morning after pill side effects after 3 weeks')",morning after pill side effects after a week,morning after pill side effects after 3 weeks,2,4,google,2026-03-12 19:56:22.281215,abortion pill side effects timeline,abortion pill side effects after,morning a week,3 weeks +abortion,"('morning after pill side effects after a week', 'morning after pill side effects after 1 week')",morning after pill side effects after a week,morning after pill side effects after 1 week,3,4,google,2026-03-12 19:56:22.281215,abortion pill side effects timeline,abortion pill side effects after,morning a week,1 +abortion,"('morning after pill side effects after a week', 'morning after pill symptoms after a week')",morning after pill side effects after a week,morning after pill symptoms after a week,4,4,google,2026-03-12 19:56:22.281215,abortion pill side effects timeline,abortion pill side effects after,morning a week,symptoms +abortion,"('morning after pill side effects after a week', 'plan b pill side effects after a week')",morning after pill side effects after a week,plan b pill side effects after a week,5,4,google,2026-03-12 19:56:22.281215,abortion pill side effects timeline,abortion pill side effects after,morning a week,plan b +abortion,"('morning after pill side effects after a week', 'morning after pill side effects bleeding week later')",morning after pill side effects after a week,morning after pill side effects bleeding week later,6,4,google,2026-03-12 19:56:22.281215,abortion pill side effects timeline,abortion pill side effects after,morning a week,bleeding later +abortion,"('morning after pill side effects after a week', 'can morning after pill side effects last a week')",morning after pill side effects after a week,can morning after pill side effects last a week,7,4,google,2026-03-12 19:56:22.281215,abortion pill side effects timeline,abortion pill side effects after,morning a week,can last +abortion,"('morning after pill side effects after a week', 'morning after pill symptoms after 2 weeks')",morning after pill side effects after a week,morning after pill symptoms after 2 weeks,8,4,google,2026-03-12 19:56:22.281215,abortion pill side effects timeline,abortion pill side effects after,morning a week,symptoms 2 weeks +abortion,"('morning after pill side effects after a week', 'how many days do morning after pill side effects last')",morning after pill side effects after a week,how many days do morning after pill side effects last,9,4,google,2026-03-12 19:56:22.281215,abortion pill side effects timeline,abortion pill side effects after,morning a week,how many days do last +abortion,"('morning after pill side effects after 5 days', 'morning after pill symptoms after 5 days')",morning after pill side effects after 5 days,morning after pill symptoms after 5 days,1,4,google,2026-03-12 19:56:23.364091,abortion pill side effects timeline,abortion pill side effects after,morning 5 days,symptoms +abortion,"('morning after pill side effects after 5 days', 'how many days do morning after pill side effects last')",morning after pill side effects after 5 days,how many days do morning after pill side effects last,2,4,google,2026-03-12 19:56:23.364091,abortion pill side effects timeline,abortion pill side effects after,morning 5 days,how many do last +abortion,"('morning after pill side effects after 5 days', 'can the morning after pill make you bleed 5 days later')",morning after pill side effects after 5 days,can the morning after pill make you bleed 5 days later,3,4,google,2026-03-12 19:56:23.364091,abortion pill side effects timeline,abortion pill side effects after,morning 5 days,can the make you bleed later +abortion,"('morning after pill side effects after 5 days', 'morning after pill side effects a week later')",morning after pill side effects after 5 days,morning after pill side effects a week later,4,4,google,2026-03-12 19:56:23.364091,abortion pill side effects timeline,abortion pill side effects after,morning 5 days,a week later +abortion,"('morning after pill side effects after 5 days', 'morning after pill side effects menstrual cycle')",morning after pill side effects after 5 days,morning after pill side effects menstrual cycle,5,4,google,2026-03-12 19:56:23.364091,abortion pill side effects timeline,abortion pill side effects after,morning 5 days,menstrual cycle +abortion,"('morning after pill side effects after 5 days', 'morning-after pill side effects')",morning after pill side effects after 5 days,morning-after pill side effects,6,4,google,2026-03-12 19:56:23.364091,abortion pill side effects timeline,abortion pill side effects after,morning 5 days,morning-after +abortion,"('morning after pill side effects after 5 days', 'plan b pill side effects 5 days later')",morning after pill side effects after 5 days,plan b pill side effects 5 days later,7,4,google,2026-03-12 19:56:23.364091,abortion pill side effects timeline,abortion pill side effects after,morning 5 days,plan b later +abortion,"('morning after pill side effects after 1 week', 'how many days do morning after pill side effects last')",morning after pill side effects after 1 week,how many days do morning after pill side effects last,1,4,google,2026-03-12 19:56:24.480985,abortion pill side effects timeline,abortion pill side effects after,morning 1 week,how many days do last +abortion,"('morning after pill side effects after 1 week', 'how long does morning after pills side effects last')",morning after pill side effects after 1 week,how long does morning after pills side effects last,2,4,google,2026-03-12 19:56:24.480985,abortion pill side effects timeline,abortion pill side effects after,morning 1 week,how long does pills last +abortion,"('morning after pill side effects after 1 week', 'morning after pill side effects a week later')",morning after pill side effects after 1 week,morning after pill side effects a week later,3,4,google,2026-03-12 19:56:24.480985,abortion pill side effects timeline,abortion pill side effects after,morning 1 week,a later +abortion,"('morning after pill side effects after 1 week', 'morning after pill side effects bleeding')",morning after pill side effects after 1 week,morning after pill side effects bleeding,4,4,google,2026-03-12 19:56:24.480985,abortion pill side effects timeline,abortion pill side effects after,morning 1 week,bleeding +abortion,"('morning after pill side effects after 1 week', 'morning after pill symptoms a week later')",morning after pill side effects after 1 week,morning after pill symptoms a week later,5,4,google,2026-03-12 19:56:24.480985,abortion pill side effects timeline,abortion pill side effects after,morning 1 week,symptoms a later +abortion,"('morning after pill side effects after 1 week', 'morning after pill side effects menstrual cycle')",morning after pill side effects after 1 week,morning after pill side effects menstrual cycle,6,4,google,2026-03-12 19:56:24.480985,abortion pill side effects timeline,abortion pill side effects after,morning 1 week,menstrual cycle +abortion,"('morning after pill side effects after 1 week', 'morning after pill plan b side effects')",morning after pill side effects after 1 week,morning after pill plan b side effects,7,4,google,2026-03-12 19:56:24.480985,abortion pill side effects timeline,abortion pill side effects after,morning 1 week,plan b +abortion,"('morning after pill side effects after a month', 'how long does morning after pills side effects last')",morning after pill side effects after a month,how long does morning after pills side effects last,1,4,google,2026-03-12 19:56:25.343827,abortion pill side effects timeline,abortion pill side effects after,morning a month,how long does pills last +abortion,"('morning after pill side effects after a month', 'morning after pill side effects a week later')",morning after pill side effects after a month,morning after pill side effects a week later,2,4,google,2026-03-12 19:56:25.343827,abortion pill side effects timeline,abortion pill side effects after,morning a month,week later +abortion,"('morning after pill side effects after a month', 'morning after pill side effects menstrual cycle')",morning after pill side effects after a month,morning after pill side effects menstrual cycle,3,4,google,2026-03-12 19:56:25.343827,abortion pill side effects timeline,abortion pill side effects after,morning a month,menstrual cycle +abortion,"('morning after pill side effects after a month', 'morning after pill side effects bleeding')",morning after pill side effects after a month,morning after pill side effects bleeding,4,4,google,2026-03-12 19:56:25.343827,abortion pill side effects timeline,abortion pill side effects after,morning a month,bleeding +abortion,"('morning after pill side effects after a month', 'morning after pill plan b side effects')",morning after pill side effects after a month,morning after pill plan b side effects,5,4,google,2026-03-12 19:56:25.343827,abortion pill side effects timeline,abortion pill side effects after,morning a month,plan b +abortion,"('morning after pill side effects after 3 weeks', 'morning after pill side effects a week later')",morning after pill side effects after 3 weeks,morning after pill side effects a week later,1,4,google,2026-03-12 19:56:26.192164,abortion pill side effects timeline,abortion pill side effects after,morning 3 weeks,a week later +abortion,"('morning after pill side effects after 3 weeks', 'morning after pill plan b side effects')",morning after pill side effects after 3 weeks,morning after pill plan b side effects,2,4,google,2026-03-12 19:56:26.192164,abortion pill side effects timeline,abortion pill side effects after,morning 3 weeks,plan b +abortion,"('morning after pill side effects after 3 weeks', 'morning after pill symptoms a week later')",morning after pill side effects after 3 weeks,morning after pill symptoms a week later,3,4,google,2026-03-12 19:56:26.192164,abortion pill side effects timeline,abortion pill side effects after,morning 3 weeks,symptoms a week later +abortion,"('morning after pill side effects after 3 weeks', 'morning after pill side effects menstrual cycle')",morning after pill side effects after 3 weeks,morning after pill side effects menstrual cycle,4,4,google,2026-03-12 19:56:26.192164,abortion pill side effects timeline,abortion pill side effects after,morning 3 weeks,menstrual cycle +abortion,"('morning after pill side effects after 3 weeks', 'morning after pill side effects bleeding')",morning after pill side effects after 3 weeks,morning after pill side effects bleeding,5,4,google,2026-03-12 19:56:26.192164,abortion pill side effects timeline,abortion pill side effects after,morning 3 weeks,bleeding +abortion,"('morning after pill vs abortion pill side effects', 'can you take plan b 3 weeks after an abortion')",morning after pill vs abortion pill side effects,can you take plan b 3 weeks after an abortion,1,4,google,2026-03-12 19:56:27.137950,abortion pill side effects timeline,abortion pill side effects after,morning vs,can you take plan b 3 weeks an +abortion,"('morning after pill vs abortion pill side effects', 'morning after pill vs abortion')",morning after pill vs abortion pill side effects,morning after pill vs abortion,2,4,google,2026-03-12 19:56:27.137950,abortion pill side effects timeline,abortion pill side effects after,morning vs,morning vs +abortion,"('morning after pill vs abortion pill side effects', 'morning after pill vs medical abortion')",morning after pill vs abortion pill side effects,morning after pill vs medical abortion,3,4,google,2026-03-12 19:56:27.137950,abortion pill side effects timeline,abortion pill side effects after,morning vs,medical +abortion,"('side effect of abortion in future', 'side effects of medical abortion in future pregnancy')",side effect of abortion in future,side effects of medical abortion in future pregnancy,1,4,google,2026-03-12 19:56:28.506543,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,effect of,effects medical pregnancy +abortion,"('side effect of abortion in future', 'side effects of abortion pills in future')",side effect of abortion in future,side effects of abortion pills in future,2,4,google,2026-03-12 19:56:28.506543,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,effect of,effects pills +abortion,"('side effect of abortion in future', 'side effects of medical abortion in future')",side effect of abortion in future,side effects of medical abortion in future,3,4,google,2026-03-12 19:56:28.506543,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,effect of,effects medical +abortion,"('side effect of abortion in future', 'side effects of abortion pills in future pregnancy')",side effect of abortion in future,side effects of abortion pills in future pregnancy,4,4,google,2026-03-12 19:56:28.506543,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,effect of,effects pills pregnancy +abortion,"('side effect of abortion in future', 'side effects of abortion on future pregnancy')",side effect of abortion in future,side effects of abortion on future pregnancy,5,4,google,2026-03-12 19:56:28.506543,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,effect of,effects on pregnancy +abortion,"('side effect of abortion in future', 'does abortion affect future pregnancy')",side effect of abortion in future,does abortion affect future pregnancy,6,4,google,2026-03-12 19:56:28.506543,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,effect of,does affect pregnancy +abortion,"('side effect of abortion in future', 'long term effects of abortion')",side effect of abortion in future,long term effects of abortion,7,4,google,2026-03-12 19:56:28.506543,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,effect of,long term effects +abortion,"('side effect of abortion in future', 'effect of abortion on future pregnancy')",side effect of abortion in future,effect of abortion on future pregnancy,8,4,google,2026-03-12 19:56:28.506543,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,effect of,on pregnancy +abortion,"('side effect of abortion in future', 'can medical abortion effect on future pregnancy')",side effect of abortion in future,can medical abortion effect on future pregnancy,9,4,google,2026-03-12 19:56:28.506543,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,effect of,can medical on pregnancy +abortion,"('abortion side effects future pregnancy in hindi', 'abortion pill side effects future pregnancy in hindi')",abortion side effects future pregnancy in hindi,abortion pill side effects future pregnancy in hindi,1,4,google,2026-03-12 19:56:29.784221,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,in hindi,pill +abortion,"('abortion side effects future pregnancy in hindi', 'side effect of abortion in future')",abortion side effects future pregnancy in hindi,side effect of abortion in future,2,4,google,2026-03-12 19:56:29.784221,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,in hindi,effect of +abortion,"('abortion side effects future pregnancy in hindi', 'effect of abortion on future pregnancy')",abortion side effects future pregnancy in hindi,effect of abortion on future pregnancy,3,4,google,2026-03-12 19:56:29.784221,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,in hindi,effect of on +abortion,"('abortion side effects future pregnancy in hindi', 'does abortion affect future pregnancy')",abortion side effects future pregnancy in hindi,does abortion affect future pregnancy,4,4,google,2026-03-12 19:56:29.784221,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,in hindi,does affect +abortion,"('abortion side effects future pregnancy in hindi', 'does abortion impact future pregnancy')",abortion side effects future pregnancy in hindi,does abortion impact future pregnancy,5,4,google,2026-03-12 19:56:29.784221,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,in hindi,does impact +abortion,"('abortion side effects future pregnancy in hindi', 'abortion side effects in future pregnancy')",abortion side effects future pregnancy in hindi,abortion side effects in future pregnancy,6,4,google,2026-03-12 19:56:29.784221,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,in hindi,in hindi +abortion,"('abortion side effects future pregnancy in hindi', 'abortion pill side effects future pregnancy')",abortion side effects future pregnancy in hindi,abortion pill side effects future pregnancy,7,4,google,2026-03-12 19:56:29.784221,abortion pill side effects future pregnancy,abortion pill side effects future pregnancy in hindi,in hindi,pill +abortion,"('does morning after pill affect future pregnancy', 'does morning after pill affect future fertility')",does morning after pill affect future pregnancy,does morning after pill affect future fertility,1,4,google,2026-03-12 19:56:30.778177,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,does affect,fertility +abortion,"('does morning after pill affect future pregnancy', 'morning after pill affect future pregnancy')",does morning after pill affect future pregnancy,morning after pill affect future pregnancy,2,4,google,2026-03-12 19:56:30.778177,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,does affect,does affect +abortion,"('does morning after pill affect future pregnancy', 'does plan b pill affect future pregnancy')",does morning after pill affect future pregnancy,does plan b pill affect future pregnancy,3,4,google,2026-03-12 19:56:30.778177,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,does affect,plan b +abortion,"('does morning after pill affect future pregnancy', 'can morning after pill affect pregnancy')",does morning after pill affect future pregnancy,can morning after pill affect pregnancy,4,4,google,2026-03-12 19:56:30.778177,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,does affect,can +abortion,"('does morning after pill affect future pregnancy', 'side effects of morning-after pill if pregnant')",does morning after pill affect future pregnancy,side effects of morning-after pill if pregnant,5,4,google,2026-03-12 19:56:30.778177,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,does affect,side effects of morning-after if pregnant +abortion,"('does morning after pill affect future pregnancy', 'does morning after pill prevent fertilization or implantation')",does morning after pill affect future pregnancy,does morning after pill prevent fertilization or implantation,6,4,google,2026-03-12 19:56:30.778177,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,does affect,prevent fertilization or implantation +abortion,"('does morning after pill affect future pregnancy', 'does morning after pill prevent implantation')",does morning after pill affect future pregnancy,does morning after pill prevent implantation,7,4,google,2026-03-12 19:56:30.778177,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,does affect,prevent implantation +abortion,"('does morning after pill affect future pregnancy', 'does morning after pill cause birth defects')",does morning after pill affect future pregnancy,does morning after pill cause birth defects,8,4,google,2026-03-12 19:56:30.778177,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,does affect,cause birth defects +abortion,"('side effects of morning-after pill if pregnant', 'side effects of morning after pill if not pregnant')",side effects of morning-after pill if pregnant,side effects of morning after pill if not pregnant,1,4,google,2026-03-12 19:56:31.888663,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,of morning-after if pregnant,morning after not +abortion,"('side effects of morning-after pill if pregnant', 'side effects of plan b pill if not pregnant')",side effects of morning-after pill if pregnant,side effects of plan b pill if not pregnant,2,4,google,2026-03-12 19:56:31.888663,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,of morning-after if pregnant,plan b not +abortion,"('side effects of morning-after pill if pregnant', 'side effects of morning after pill before period')",side effects of morning-after pill if pregnant,side effects of morning after pill before period,3,4,google,2026-03-12 19:56:31.888663,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,of morning-after if pregnant,morning after before period +abortion,"('side effects of morning-after pill if pregnant', 'side effects of morning after pill long term')",side effects of morning-after pill if pregnant,side effects of morning after pill long term,4,4,google,2026-03-12 19:56:31.888663,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,of morning-after if pregnant,morning after long term +abortion,"('can plan b harm future pregnancy', 'can plan b harm a fetus')",can plan b harm future pregnancy,can plan b harm a fetus,1,4,google,2026-03-12 19:56:33.281383,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,can plan b harm,a fetus +abortion,"('can plan b harm future pregnancy', 'can plan b cause birth defects')",can plan b harm future pregnancy,can plan b cause birth defects,2,4,google,2026-03-12 19:56:33.281383,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,can plan b harm,cause birth defects +abortion,"('can plan b harm future pregnancy', 'is plan b bad for future pregnancy')",can plan b harm future pregnancy,is plan b bad for future pregnancy,3,4,google,2026-03-12 19:56:33.281383,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,can plan b harm,is bad for +abortion,"('can plan b harm future pregnancy', 'can plan b harm future fertility')",can plan b harm future pregnancy,can plan b harm future fertility,4,4,google,2026-03-12 19:56:33.281383,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,can plan b harm,fertility +abortion,"('can plan b harm future pregnancy', 'can plan b harm your baby')",can plan b harm future pregnancy,can plan b harm your baby,5,4,google,2026-03-12 19:56:33.281383,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,can plan b harm,your baby +abortion,"('can morning after pill affect pregnancy', 'can morning after pill affect pregnancy test')",can morning after pill affect pregnancy,can morning after pill affect pregnancy test,1,4,google,2026-03-12 19:56:34.448852,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,can affect,test +abortion,"('can morning after pill affect pregnancy', 'does morning after pill affect pregnancy')",can morning after pill affect pregnancy,does morning after pill affect pregnancy,2,4,google,2026-03-12 19:56:34.448852,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,can affect,does +abortion,"('can morning after pill affect pregnancy', 'can morning after pill cause pregnancy symptoms')",can morning after pill affect pregnancy,can morning after pill cause pregnancy symptoms,3,4,google,2026-03-12 19:56:34.448852,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,can affect,cause symptoms +abortion,"('can morning after pill affect pregnancy', 'does morning after pill affect pregnancy in future')",can morning after pill affect pregnancy,does morning after pill affect pregnancy in future,4,4,google,2026-03-12 19:56:34.448852,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,can affect,does in future +abortion,"('can morning after pill affect pregnancy', 'can morning after pill affect early pregnancy')",can morning after pill affect pregnancy,can morning after pill affect early pregnancy,5,4,google,2026-03-12 19:56:34.448852,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,can affect,early +abortion,"('can morning after pill affect pregnancy', 'can morning after pill cause ectopic pregnancy')",can morning after pill affect pregnancy,can morning after pill cause ectopic pregnancy,6,4,google,2026-03-12 19:56:34.448852,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,can affect,cause ectopic +abortion,"('can morning after pill affect pregnancy', 'can morning after pill cause cryptic pregnancy')",can morning after pill affect pregnancy,can morning after pill cause cryptic pregnancy,7,4,google,2026-03-12 19:56:34.448852,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,can affect,cause cryptic +abortion,"('can morning after pill affect pregnancy', 'can morning after pill affect getting pregnant')",can morning after pill affect pregnancy,can morning after pill affect getting pregnant,8,4,google,2026-03-12 19:56:34.448852,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,can affect,getting pregnant +abortion,"('can morning after pill affect pregnancy', 'can morning after pill cause false positive pregnancy test')",can morning after pill affect pregnancy,can morning after pill cause false positive pregnancy test,9,4,google,2026-03-12 19:56:34.448852,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,can affect,cause false positive test +abortion,"('plan b side effects future pregnancies', 'does plan b affect future pregnancy')",plan b side effects future pregnancies,does plan b affect future pregnancy,1,4,google,2026-03-12 19:56:35.803538,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,plan b pregnancies,does affect pregnancy +abortion,"('plan b side effects future pregnancies', 'can plan b harm future pregnancy')",plan b side effects future pregnancies,can plan b harm future pregnancy,2,4,google,2026-03-12 19:56:35.803538,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,plan b pregnancies,can harm pregnancy +abortion,"('plan b side effects future pregnancies', 'plan b effects on future pregnancy')",plan b side effects future pregnancies,plan b effects on future pregnancy,3,4,google,2026-03-12 19:56:35.803538,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,plan b pregnancies,on pregnancy +abortion,"('plan b side effects future pregnancies', 'plan b future side effects')",plan b side effects future pregnancies,plan b future side effects,4,4,google,2026-03-12 19:56:35.803538,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,plan b pregnancies,plan b pregnancies +abortion,"('plan b side effects future pregnancies', 'plan b effects on future fertility')",plan b side effects future pregnancies,plan b effects on future fertility,5,4,google,2026-03-12 19:56:35.803538,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,plan b pregnancies,on fertility +abortion,"('plan b side effects future pregnancies', 'plan b affect future pregnancy')",plan b side effects future pregnancies,plan b affect future pregnancy,6,4,google,2026-03-12 19:56:35.803538,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,plan b pregnancies,affect pregnancy +abortion,"('morning after pill plan b side effects', 'emergency pill plan b side effects')",morning after pill plan b side effects,emergency pill plan b side effects,1,4,google,2026-03-12 19:56:36.710401,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,plan b,emergency +abortion,"('morning after pill plan b side effects', 'plan b morning after pill side effects bleeding')",morning after pill plan b side effects,plan b morning after pill side effects bleeding,2,4,google,2026-03-12 19:56:36.710401,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,plan b,bleeding +abortion,"('morning after pill plan b side effects', 'long term side effects of plan b morning after pill')",morning after pill plan b side effects,long term side effects of plan b morning after pill,3,4,google,2026-03-12 19:56:36.710401,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,plan b,long term of +abortion,"('morning after pill plan b side effects', 'are plan b and the morning after pill the same')",morning after pill plan b side effects,are plan b and the morning after pill the same,4,4,google,2026-03-12 19:56:36.710401,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,plan b,are and the the same +abortion,"('morning after pill plan b side effects', 'can plan b cause side effects')",morning after pill plan b side effects,can plan b cause side effects,5,4,google,2026-03-12 19:56:36.710401,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,plan b,can cause +abortion,"('morning after pill plan b side effects', 'morning after pill side effects a week later')",morning after pill plan b side effects,morning after pill side effects a week later,6,4,google,2026-03-12 19:56:36.710401,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,plan b,a week later +abortion,"('morning after pill plan b side effects', 'morning after pill side effects bleeding')",morning after pill plan b side effects,morning after pill side effects bleeding,7,4,google,2026-03-12 19:56:36.710401,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,plan b,bleeding +abortion,"('morning after pill plan b side effects', 'plan b pill side effects after a week')",morning after pill plan b side effects,plan b pill side effects after a week,8,4,google,2026-03-12 19:56:36.710401,abortion pill side effects future pregnancy,morning after pill side effects future pregnancy,plan b,a week +abortion,"('does surgical abortion affect future pregnancy', 'does medical abortion affect future pregnancy')",does surgical abortion affect future pregnancy,does medical abortion affect future pregnancy,1,4,google,2026-03-12 19:56:37.686217,abortion pill side effects future pregnancy,abortion side effects future pregnancy,does surgical affect,medical +abortion,"('does surgical abortion affect future pregnancy', 'does medical.abortion affect future pregnancy reddit')",does surgical abortion affect future pregnancy,does medical.abortion affect future pregnancy reddit,2,4,google,2026-03-12 19:56:37.686217,abortion pill side effects future pregnancy,abortion side effects future pregnancy,does surgical affect,medical.abortion reddit +abortion,"('does surgical abortion affect future pregnancy', 'does surgical abortion affect future fertility')",does surgical abortion affect future pregnancy,does surgical abortion affect future fertility,3,4,google,2026-03-12 19:56:37.686217,abortion pill side effects future pregnancy,abortion side effects future pregnancy,does surgical affect,fertility +abortion,"('does surgical abortion affect future pregnancy', 'can medical abortion affect future pregnancy')",does surgical abortion affect future pregnancy,can medical abortion affect future pregnancy,4,4,google,2026-03-12 19:56:37.686217,abortion pill side effects future pregnancy,abortion side effects future pregnancy,does surgical affect,can medical +abortion,"('does surgical abortion affect future pregnancy', 'does medical abortion affect next pregnancy')",does surgical abortion affect future pregnancy,does medical abortion affect next pregnancy,5,4,google,2026-03-12 19:56:37.686217,abortion pill side effects future pregnancy,abortion side effects future pregnancy,does surgical affect,medical next +abortion,"('does surgical abortion affect future pregnancy', 'does medical abortion affect future fertility')",does surgical abortion affect future pregnancy,does medical abortion affect future fertility,6,4,google,2026-03-12 19:56:37.686217,abortion pill side effects future pregnancy,abortion side effects future pregnancy,does surgical affect,medical fertility +abortion,"('does surgical abortion affect future pregnancy', 'does multiple medical abortion affect future pregnancy')",does surgical abortion affect future pregnancy,does multiple medical abortion affect future pregnancy,7,4,google,2026-03-12 19:56:37.686217,abortion pill side effects future pregnancy,abortion side effects future pregnancy,does surgical affect,multiple medical +abortion,"('does surgical abortion affect future pregnancy', 'how long does surgical abortion affect future pregnancy')",does surgical abortion affect future pregnancy,how long does surgical abortion affect future pregnancy,8,4,google,2026-03-12 19:56:37.686217,abortion pill side effects future pregnancy,abortion side effects future pregnancy,does surgical affect,how long +abortion,"('does surgical abortion affect future pregnancy', 'can a surgical abortion make you infertile')",does surgical abortion affect future pregnancy,can a surgical abortion make you infertile,9,4,google,2026-03-12 19:56:37.686217,abortion pill side effects future pregnancy,abortion side effects future pregnancy,does surgical affect,can a make you infertile +abortion,"('how can an abortion affect future pregnancy', 'how long does an abortion affect future pregnancy')",how can an abortion affect future pregnancy,how long does an abortion affect future pregnancy,1,4,google,2026-03-12 19:56:38.512991,abortion pill side effects future pregnancy,abortion side effects future pregnancy,how can an affect,long does +abortion,"('how can an abortion affect future pregnancy', 'how does medical abortion affect future pregnancy')",how can an abortion affect future pregnancy,how does medical abortion affect future pregnancy,2,4,google,2026-03-12 19:56:38.512991,abortion pill side effects future pregnancy,abortion side effects future pregnancy,how can an affect,does medical +abortion,"('how can an abortion affect future pregnancy', 'how does abortion affect next pregnancy')",how can an abortion affect future pregnancy,how does abortion affect next pregnancy,3,4,google,2026-03-12 19:56:38.512991,abortion pill side effects future pregnancy,abortion side effects future pregnancy,how can an affect,does next +abortion,"('how can an abortion affect future pregnancy', 'how long does an abortion affect future fertility')",how can an abortion affect future pregnancy,how long does an abortion affect future fertility,4,4,google,2026-03-12 19:56:38.512991,abortion pill side effects future pregnancy,abortion side effects future pregnancy,how can an affect,long does fertility +abortion,"('how can an abortion affect future pregnancy', 'how does abortion affect future fertility')",how can an abortion affect future pregnancy,how does abortion affect future fertility,5,4,google,2026-03-12 19:56:38.512991,abortion pill side effects future pregnancy,abortion side effects future pregnancy,how can an affect,does fertility +abortion,"('how can an abortion affect future pregnancy', 'can an abortion affect future fertility')",how can an abortion affect future pregnancy,can an abortion affect future fertility,6,4,google,2026-03-12 19:56:38.512991,abortion pill side effects future pregnancy,abortion side effects future pregnancy,how can an affect,fertility +abortion,"('how can an abortion affect future pregnancy', 'can having an abortion affect future pregnancy')",how can an abortion affect future pregnancy,can having an abortion affect future pregnancy,7,4,google,2026-03-12 19:56:38.512991,abortion pill side effects future pregnancy,abortion side effects future pregnancy,how can an affect,having +abortion,"('how can an abortion affect future pregnancy', 'can getting an abortion affect future pregnancy')",how can an abortion affect future pregnancy,can getting an abortion affect future pregnancy,8,4,google,2026-03-12 19:56:38.512991,abortion pill side effects future pregnancy,abortion side effects future pregnancy,how can an affect,getting +abortion,"('how can an abortion affect future pregnancy', 'how long does surgical abortion affect future pregnancy')",how can an abortion affect future pregnancy,how long does surgical abortion affect future pregnancy,9,4,google,2026-03-12 19:56:38.512991,abortion pill side effects future pregnancy,abortion side effects future pregnancy,how can an affect,long does surgical +abortion,"('abortion affect future pregnancy', 'miscarriage affect future pregnancy')",abortion affect future pregnancy,miscarriage affect future pregnancy,1,4,google,2026-03-12 19:56:39.681131,abortion pill side effects future pregnancy,abortion side effects future pregnancy,affect,miscarriage +abortion,"('abortion affect future pregnancy', 'abortion affect next pregnancy')",abortion affect future pregnancy,abortion affect next pregnancy,2,4,google,2026-03-12 19:56:39.681131,abortion pill side effects future pregnancy,abortion side effects future pregnancy,affect,next +abortion,"('abortion affect future pregnancy', 'abortion impact future pregnancy')",abortion affect future pregnancy,abortion impact future pregnancy,3,4,google,2026-03-12 19:56:39.681131,abortion pill side effects future pregnancy,abortion side effects future pregnancy,affect,impact +abortion,"('abortion affect future pregnancy', 'abortion affect future fertility')",abortion affect future pregnancy,abortion affect future fertility,4,4,google,2026-03-12 19:56:39.681131,abortion pill side effects future pregnancy,abortion side effects future pregnancy,affect,fertility +abortion,"('abortion affect future pregnancy', 'does abortion affect future pregnancy')",abortion affect future pregnancy,does abortion affect future pregnancy,5,4,google,2026-03-12 19:56:39.681131,abortion pill side effects future pregnancy,abortion side effects future pregnancy,affect,does +abortion,"('abortion affect future pregnancy', 'abortion pill affect future pregnancy')",abortion affect future pregnancy,abortion pill affect future pregnancy,6,4,google,2026-03-12 19:56:39.681131,abortion pill side effects future pregnancy,abortion side effects future pregnancy,affect,pill +abortion,"('abortion affect future pregnancy', 'surgical abortion affect future pregnancy')",abortion affect future pregnancy,surgical abortion affect future pregnancy,7,4,google,2026-03-12 19:56:39.681131,abortion pill side effects future pregnancy,abortion side effects future pregnancy,affect,surgical +abortion,"('abortion affect future pregnancy', 'does abortion affect future pregnancy reddit')",abortion affect future pregnancy,does abortion affect future pregnancy reddit,8,4,google,2026-03-12 19:56:39.681131,abortion pill side effects future pregnancy,abortion side effects future pregnancy,affect,does reddit +abortion,"('abortion affect future pregnancy', 'medical abortion affect future pregnancy')",abortion affect future pregnancy,medical abortion affect future pregnancy,9,4,google,2026-03-12 19:56:39.681131,abortion pill side effects future pregnancy,abortion side effects future pregnancy,affect,medical +abortion,"('abortion pill effects future pregnancy', 'abortion side effects future pregnancy')",abortion pill effects future pregnancy,abortion side effects future pregnancy,1,4,google,2026-03-12 19:56:40.997436,abortion pill side effects future pregnancy,abortion pill future pregnancy,effects,side +abortion,"('abortion pill effects future pregnancy', 'abortion side effects future pregnancy in hindi')",abortion pill effects future pregnancy,abortion side effects future pregnancy in hindi,2,4,google,2026-03-12 19:56:40.997436,abortion pill side effects future pregnancy,abortion pill future pregnancy,effects,side in hindi +abortion,"('abortion pill effects future pregnancy', 'abortion pill side effects future pregnancy')",abortion pill effects future pregnancy,abortion pill side effects future pregnancy,3,4,google,2026-03-12 19:56:40.997436,abortion pill side effects future pregnancy,abortion pill future pregnancy,effects,side +abortion,"('abortion pill effects future pregnancy', 'abortion pill side effects future pregnancy in english')",abortion pill effects future pregnancy,abortion pill side effects future pregnancy in english,4,4,google,2026-03-12 19:56:40.997436,abortion pill side effects future pregnancy,abortion pill future pregnancy,effects,side in english +abortion,"('abortion pill effects future pregnancy', 'does abortion pill affect future pregnancy')",abortion pill effects future pregnancy,does abortion pill affect future pregnancy,5,4,google,2026-03-12 19:56:40.997436,abortion pill side effects future pregnancy,abortion pill future pregnancy,effects,does affect +abortion,"('abortion pill effects future pregnancy', 'morning after pill side effects future pregnancy')",abortion pill effects future pregnancy,morning after pill side effects future pregnancy,6,4,google,2026-03-12 19:56:40.997436,abortion pill side effects future pregnancy,abortion pill future pregnancy,effects,morning after side +abortion,"('abortion pill effects future pregnancy', 'morning after pill effects on future pregnancy')",abortion pill effects future pregnancy,morning after pill effects on future pregnancy,7,4,google,2026-03-12 19:56:40.997436,abortion pill side effects future pregnancy,abortion pill future pregnancy,effects,morning after on +abortion,"('abortion pill effects future pregnancy', 'abortion pill side effects future pregnancy in hindi')",abortion pill effects future pregnancy,abortion pill side effects future pregnancy in hindi,8,4,google,2026-03-12 19:56:40.997436,abortion pill side effects future pregnancy,abortion pill future pregnancy,effects,side in hindi +abortion,"('abortion pill effects future pregnancy', 'does abortion affect future pregnancy')",abortion pill effects future pregnancy,does abortion affect future pregnancy,9,4,google,2026-03-12 19:56:40.997436,abortion pill side effects future pregnancy,abortion pill future pregnancy,effects,does affect +abortion,"('morning after pill affect future pregnancy', 'morning after pill affect future fertility')",morning after pill affect future pregnancy,morning after pill affect future fertility,1,4,google,2026-03-12 19:56:42.372691,abortion pill side effects future pregnancy,abortion pill future pregnancy,morning after affect,fertility +abortion,"('morning after pill affect future pregnancy', 'will morning after pill affect future pregnancy')",morning after pill affect future pregnancy,will morning after pill affect future pregnancy,2,4,google,2026-03-12 19:56:42.372691,abortion pill side effects future pregnancy,abortion pill future pregnancy,morning after affect,will +abortion,"('morning after pill affect future pregnancy', 'morning after pill side effects future pregnancy')",morning after pill affect future pregnancy,morning after pill side effects future pregnancy,3,4,google,2026-03-12 19:56:42.372691,abortion pill side effects future pregnancy,abortion pill future pregnancy,morning after affect,side effects +abortion,"('morning after pill affect future pregnancy', 'plan b pill affect future pregnancy')",morning after pill affect future pregnancy,plan b pill affect future pregnancy,4,4,google,2026-03-12 19:56:42.372691,abortion pill side effects future pregnancy,abortion pill future pregnancy,morning after affect,plan b +abortion,"('morning after pill affect future pregnancy', 'does morning after pill affect future pregnancy')",morning after pill affect future pregnancy,does morning after pill affect future pregnancy,5,4,google,2026-03-12 19:56:42.372691,abortion pill side effects future pregnancy,abortion pill future pregnancy,morning after affect,does +abortion,"('morning after pill affect future pregnancy', 'can morning after pill affect pregnancy')",morning after pill affect future pregnancy,can morning after pill affect pregnancy,6,4,google,2026-03-12 19:56:42.372691,abortion pill side effects future pregnancy,abortion pill future pregnancy,morning after affect,can +abortion,"('morning after pill affect future pregnancy', 'does plan b pill affect future pregnancy')",morning after pill affect future pregnancy,does plan b pill affect future pregnancy,7,4,google,2026-03-12 19:56:42.372691,abortion pill side effects future pregnancy,abortion pill future pregnancy,morning after affect,does plan b +abortion,"('morning after pill affect future pregnancy', 'morning after pill cause birth defects')",morning after pill affect future pregnancy,morning after pill cause birth defects,8,4,google,2026-03-12 19:56:42.372691,abortion pill side effects future pregnancy,abortion pill future pregnancy,morning after affect,cause birth defects +abortion,"('does abortion pill affect future pregnancy', 'does abortion pill affect future pregnancy quora')",does abortion pill affect future pregnancy,does abortion pill affect future pregnancy quora,1,4,google,2026-03-12 19:56:43.627881,abortion pill side effects future pregnancy,abortion pill future pregnancy,does affect,quora +abortion,"('does abortion pill affect future pregnancy', 'will abortion pill affect future pregnancy')",does abortion pill affect future pregnancy,will abortion pill affect future pregnancy,2,4,google,2026-03-12 19:56:43.627881,abortion pill side effects future pregnancy,abortion pill future pregnancy,does affect,will +abortion,"('does abortion pill affect future pregnancy', 'does morning after pill affect future pregnancy')",does abortion pill affect future pregnancy,does morning after pill affect future pregnancy,3,4,google,2026-03-12 19:56:43.627881,abortion pill side effects future pregnancy,abortion pill future pregnancy,does affect,morning after +abortion,"('does abortion pill affect future pregnancy', 'does abortion pill prevent future pregnancy')",does abortion pill affect future pregnancy,does abortion pill prevent future pregnancy,4,4,google,2026-03-12 19:56:43.627881,abortion pill side effects future pregnancy,abortion pill future pregnancy,does affect,prevent +abortion,"('does abortion pill affect future pregnancy', 'does abortion pill affect next pregnancy')",does abortion pill affect future pregnancy,does abortion pill affect next pregnancy,5,4,google,2026-03-12 19:56:43.627881,abortion pill side effects future pregnancy,abortion pill future pregnancy,does affect,next +abortion,"('does abortion pill affect future pregnancy', 'does abortion pill affect future fertility')",does abortion pill affect future pregnancy,does abortion pill affect future fertility,6,4,google,2026-03-12 19:56:43.627881,abortion pill side effects future pregnancy,abortion pill future pregnancy,does affect,fertility +abortion,"('does abortion pill affect future pregnancy', 'does abortion affect future pregnancy')",does abortion pill affect future pregnancy,does abortion affect future pregnancy,7,4,google,2026-03-12 19:56:43.627881,abortion pill side effects future pregnancy,abortion pill future pregnancy,does affect,does affect +abortion,"('does abortion pill affect future pregnancy', 'how can an abortion affect future pregnancy')",does abortion pill affect future pregnancy,how can an abortion affect future pregnancy,8,4,google,2026-03-12 19:56:43.627881,abortion pill side effects future pregnancy,abortion pill future pregnancy,does affect,how can an +abortion,"('does abortion pill affect future pregnancy', 'can abortion pill affect future pregnancy')",does abortion pill affect future pregnancy,can abortion pill affect future pregnancy,9,4,google,2026-03-12 19:56:43.627881,abortion pill side effects future pregnancy,abortion pill future pregnancy,does affect,can +abortion,"('will abortion pill affect future pregnancy', 'does abortion pill affect future pregnancy')",will abortion pill affect future pregnancy,does abortion pill affect future pregnancy,1,4,google,2026-03-12 19:56:44.956540,abortion pill side effects future pregnancy,abortion pill future pregnancy,will affect,does +abortion,"('will abortion pill affect future pregnancy', 'will morning after pill affect future pregnancy')",will abortion pill affect future pregnancy,will morning after pill affect future pregnancy,2,4,google,2026-03-12 19:56:44.956540,abortion pill side effects future pregnancy,abortion pill future pregnancy,will affect,morning after +abortion,"('will abortion pill affect future pregnancy', 'does abortion pill affect future pregnancy quora')",will abortion pill affect future pregnancy,does abortion pill affect future pregnancy quora,3,4,google,2026-03-12 19:56:44.956540,abortion pill side effects future pregnancy,abortion pill future pregnancy,will affect,does quora +abortion,"('will abortion pill affect future pregnancy', 'does abortion pill prevent future pregnancy')",will abortion pill affect future pregnancy,does abortion pill prevent future pregnancy,4,4,google,2026-03-12 19:56:44.956540,abortion pill side effects future pregnancy,abortion pill future pregnancy,will affect,does prevent +abortion,"('will abortion pill affect future pregnancy', 'does abortion pill affect next pregnancy')",will abortion pill affect future pregnancy,does abortion pill affect next pregnancy,5,4,google,2026-03-12 19:56:44.956540,abortion pill side effects future pregnancy,abortion pill future pregnancy,will affect,does next +abortion,"('will abortion pill affect future pregnancy', 'does abortion pill affect future fertility')",will abortion pill affect future pregnancy,does abortion pill affect future fertility,6,4,google,2026-03-12 19:56:44.956540,abortion pill side effects future pregnancy,abortion pill future pregnancy,will affect,does fertility +abortion,"('will abortion pill affect future pregnancy', 'does morning after pill affect future fertility')",will abortion pill affect future pregnancy,does morning after pill affect future fertility,7,4,google,2026-03-12 19:56:44.956540,abortion pill side effects future pregnancy,abortion pill future pregnancy,will affect,does morning after fertility +abortion,"('will abortion pill affect future pregnancy', 'does medication abortion affect future fertility')",will abortion pill affect future pregnancy,does medication abortion affect future fertility,8,4,google,2026-03-12 19:56:44.956540,abortion pill side effects future pregnancy,abortion pill future pregnancy,will affect,does medication fertility +abortion,"('does abortion pill prevent future pregnancy', 'does abortion pill affect future pregnancy')",does abortion pill prevent future pregnancy,does abortion pill affect future pregnancy,1,4,google,2026-03-12 19:56:45.837070,abortion pill side effects future pregnancy,abortion pill future pregnancy,does prevent,affect +abortion,"('does abortion pill prevent future pregnancy', 'does abortion pill affect future pregnancy quora')",does abortion pill prevent future pregnancy,does abortion pill affect future pregnancy quora,2,4,google,2026-03-12 19:56:45.837070,abortion pill side effects future pregnancy,abortion pill future pregnancy,does prevent,affect quora +abortion,"('does abortion pill prevent future pregnancy', 'will abortion pill affect future pregnancy')",does abortion pill prevent future pregnancy,will abortion pill affect future pregnancy,3,4,google,2026-03-12 19:56:45.837070,abortion pill side effects future pregnancy,abortion pill future pregnancy,does prevent,will affect +abortion,"('does abortion pill prevent future pregnancy', 'does morning after pill affect future pregnancy')",does abortion pill prevent future pregnancy,does morning after pill affect future pregnancy,4,4,google,2026-03-12 19:56:45.837070,abortion pill side effects future pregnancy,abortion pill future pregnancy,does prevent,morning after affect +abortion,"('does abortion pill prevent future pregnancy', 'does abortion pill affect next pregnancy')",does abortion pill prevent future pregnancy,does abortion pill affect next pregnancy,5,4,google,2026-03-12 19:56:45.837070,abortion pill side effects future pregnancy,abortion pill future pregnancy,does prevent,affect next +abortion,"('does abortion pill prevent future pregnancy', 'is abortion pill safe for future pregnancy')",does abortion pill prevent future pregnancy,is abortion pill safe for future pregnancy,6,4,google,2026-03-12 19:56:45.837070,abortion pill side effects future pregnancy,abortion pill future pregnancy,does prevent,is safe for +abortion,"('does abortion pill prevent future pregnancy', 'can abortions prevent future pregnancy')",does abortion pill prevent future pregnancy,can abortions prevent future pregnancy,7,4,google,2026-03-12 19:56:45.837070,abortion pill side effects future pregnancy,abortion pill future pregnancy,does prevent,can abortions +abortion,"('does abortion pill prevent future pregnancy', 'does abortion pill prevent pregnancy')",does abortion pill prevent future pregnancy,does abortion pill prevent pregnancy,8,4,google,2026-03-12 19:56:45.837070,abortion pill side effects future pregnancy,abortion pill future pregnancy,does prevent,does prevent +abortion,"('does abortion pill harm future pregnancy', 'does abortion affect future pregnancy')",does abortion pill harm future pregnancy,does abortion affect future pregnancy,1,4,google,2026-03-12 19:56:47.231615,abortion pill side effects future pregnancy,abortion pill future pregnancy,does harm,affect +abortion,"('does abortion pill harm future pregnancy', 'does abortion affect pregnancy')",does abortion pill harm future pregnancy,does abortion affect pregnancy,2,4,google,2026-03-12 19:56:47.231615,abortion pill side effects future pregnancy,abortion pill future pregnancy,does harm,affect +abortion,"('does abortion pill harm future pregnancy', 'does surgical abortion affect future pregnancy')",does abortion pill harm future pregnancy,does surgical abortion affect future pregnancy,3,4,google,2026-03-12 19:56:47.231615,abortion pill side effects future pregnancy,abortion pill future pregnancy,does harm,surgical affect +abortion,"('does abortion pill harm future pregnancy', 'does medical abortion affect future pregnancy')",does abortion pill harm future pregnancy,does medical abortion affect future pregnancy,4,4,google,2026-03-12 19:56:47.231615,abortion pill side effects future pregnancy,abortion pill future pregnancy,does harm,medical affect +abortion,"('does abortion pill harm future pregnancy', 'does abortion pill affect future pregnancies')",does abortion pill harm future pregnancy,does abortion pill affect future pregnancies,5,4,google,2026-03-12 19:56:47.231615,abortion pill side effects future pregnancy,abortion pill future pregnancy,does harm,affect pregnancies +abortion,"('does abortion pill harm future pregnancy', 'will abortion pill affect future pregnancy')",does abortion pill harm future pregnancy,will abortion pill affect future pregnancy,6,4,google,2026-03-12 19:56:47.231615,abortion pill side effects future pregnancy,abortion pill future pregnancy,does harm,will affect +abortion,"('does abortion pill harm future pregnancy', 'can abortion pill effects on future pregnancy')",does abortion pill harm future pregnancy,can abortion pill effects on future pregnancy,7,4,google,2026-03-12 19:56:47.231615,abortion pill side effects future pregnancy,abortion pill future pregnancy,does harm,can effects on +abortion,"('side effects of getting pregnant after miscarriage', 'is it bad to get pregnant right after miscarriage')",side effects of getting pregnant after miscarriage,is it bad to get pregnant right after miscarriage,1,4,google,2026-03-12 19:56:48.690043,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,getting pregnant miscarriage,is it bad to get right +abortion,"('side effects of getting pregnant after miscarriage', 'what happens if you get pregnant immediately after miscarriage')",side effects of getting pregnant after miscarriage,what happens if you get pregnant immediately after miscarriage,2,4,google,2026-03-12 19:56:48.690043,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,getting pregnant miscarriage,what happens if you get immediately +abortion,"('side effects of getting pregnant after miscarriage', 'how soon after a miscarriage is it safe to try again')",side effects of getting pregnant after miscarriage,how soon after a miscarriage is it safe to try again,3,4,google,2026-03-12 19:56:48.690043,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,getting pregnant miscarriage,how soon a is it safe to try again +abortion,"('side effects of getting pregnant after miscarriage', 'dangers of getting pregnant after miscarriage')",side effects of getting pregnant after miscarriage,dangers of getting pregnant after miscarriage,4,4,google,2026-03-12 19:56:48.690043,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,getting pregnant miscarriage,dangers +abortion,"('side effects of getting pregnant after miscarriage', 'risks of getting pregnant immediately after miscarriage')",side effects of getting pregnant after miscarriage,risks of getting pregnant immediately after miscarriage,5,4,google,2026-03-12 19:56:48.690043,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,getting pregnant miscarriage,risks immediately +abortion,"('side effects of getting pregnant after miscarriage', 'what are the risks of getting pregnant right after a miscarriage')",side effects of getting pregnant after miscarriage,what are the risks of getting pregnant right after a miscarriage,6,4,google,2026-03-12 19:56:48.690043,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,getting pregnant miscarriage,what are the risks right a +abortion,"('side effects of pregnancy abortion', 'side effects of pregnancy after abortion')",side effects of pregnancy abortion,side effects of pregnancy after abortion,1,4,google,2026-03-12 19:56:50.131650,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,of after,after +abortion,"('side effects of pregnancy abortion', 'side effects of early pregnancy abortion')",side effects of pregnancy abortion,side effects of early pregnancy abortion,2,4,google,2026-03-12 19:56:50.131650,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,of after,early +abortion,"('side effects of pregnancy abortion', 'side effects of first pregnancy abortion')",side effects of pregnancy abortion,side effects of first pregnancy abortion,3,4,google,2026-03-12 19:56:50.131650,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,of after,first +abortion,"('side effects of pregnancy abortion', 'side effects of one month pregnancy abortion')",side effects of pregnancy abortion,side effects of one month pregnancy abortion,4,4,google,2026-03-12 19:56:50.131650,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,of after,one month +abortion,"('side effects of pregnancy abortion', 'side effects of 2 weeks pregnancy abortion')",side effects of pregnancy abortion,side effects of 2 weeks pregnancy abortion,5,4,google,2026-03-12 19:56:50.131650,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,of after,2 weeks +abortion,"('side effects of pregnancy abortion', 'side effects of early pregnancy miscarriage')",side effects of pregnancy abortion,side effects of early pregnancy miscarriage,6,4,google,2026-03-12 19:56:50.131650,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,of after,early miscarriage +abortion,"('side effects of pregnancy abortion', 'side effects of abortion on future pregnancy')",side effects of pregnancy abortion,side effects of abortion on future pregnancy,7,4,google,2026-03-12 19:56:50.131650,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,of after,on future +abortion,"('side effects of pregnancy abortion', 'side effects of abortion on next pregnancy')",side effects of pregnancy abortion,side effects of abortion on next pregnancy,8,4,google,2026-03-12 19:56:50.131650,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,of after,on next +abortion,"('side effects of pregnancy abortion', 'side effects of abortion pill for future pregnancy')",side effects of pregnancy abortion,side effects of abortion pill for future pregnancy,9,4,google,2026-03-12 19:56:50.131650,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,of after,pill for future +abortion,"('signs of pregnancy after abortion', 'signs of pregnancy after abortion pill')",signs of pregnancy after abortion,signs of pregnancy after abortion pill,1,4,google,2026-03-12 19:56:51.303199,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs,pill +abortion,"('signs of pregnancy after abortion', 'signs of pregnancy after abortion discharge')",signs of pregnancy after abortion,signs of pregnancy after abortion discharge,2,4,google,2026-03-12 19:56:51.303199,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs,discharge +abortion,"('signs of pregnancy after abortion', 'signs of pregnancy after abortion at 4 weeks')",signs of pregnancy after abortion,signs of pregnancy after abortion at 4 weeks,3,4,google,2026-03-12 19:56:51.303199,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs,at 4 weeks +abortion,"('signs of pregnancy after abortion', 'signs of pregnancy after abortion mumsnet')",signs of pregnancy after abortion,signs of pregnancy after abortion mumsnet,4,4,google,2026-03-12 19:56:51.303199,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs,mumsnet +abortion,"('signs of pregnancy after abortion', 'signs of pregnancy after abortion at 6 weeks')",signs of pregnancy after abortion,signs of pregnancy after abortion at 6 weeks,5,4,google,2026-03-12 19:56:51.303199,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs,at 6 weeks +abortion,"('signs of pregnancy after abortion', 'signs of pregnancy after abortion nhs')",signs of pregnancy after abortion,signs of pregnancy after abortion nhs,6,4,google,2026-03-12 19:56:51.303199,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs,nhs +abortion,"('signs of pregnancy after abortion', 'signs of pregnancy after abortion reddit')",signs of pregnancy after abortion,signs of pregnancy after abortion reddit,7,4,google,2026-03-12 19:56:51.303199,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs,reddit +abortion,"('signs of pregnancy after abortion', 'signs of pregnancy after abortion discharge forum')",signs of pregnancy after abortion,signs of pregnancy after abortion discharge forum,8,4,google,2026-03-12 19:56:51.303199,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs,discharge forum +abortion,"('signs of pregnancy after abortion', 'signs of pregnancy after abortion time')",signs of pregnancy after abortion,signs of pregnancy after abortion time,9,4,google,2026-03-12 19:56:51.303199,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs,time +abortion,"('signs of pregnancy after abortion pill', 'symptoms of pregnancy after abortion pill')",signs of pregnancy after abortion pill,symptoms of pregnancy after abortion pill,1,4,google,2026-03-12 19:56:52.474534,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs pill,symptoms +abortion,"('signs of pregnancy after abortion pill', 'signs of ectopic pregnancy after abortion pill')",signs of pregnancy after abortion pill,signs of ectopic pregnancy after abortion pill,2,4,google,2026-03-12 19:56:52.474534,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs pill,ectopic +abortion,"('signs of pregnancy after abortion pill', 'early signs of pregnancy after morning after pill')",signs of pregnancy after abortion pill,early signs of pregnancy after morning after pill,3,4,google,2026-03-12 19:56:52.474534,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs pill,early morning +abortion,"('signs of pregnancy after abortion pill', 'signs your still pregnant after abortion pill')",signs of pregnancy after abortion pill,signs your still pregnant after abortion pill,4,4,google,2026-03-12 19:56:52.474534,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs pill,your still pregnant +abortion,"('signs of pregnancy after abortion pill', 'how long will i feel pregnant after abortion')",signs of pregnancy after abortion pill,how long will i feel pregnant after abortion,5,4,google,2026-03-12 19:56:52.474534,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs pill,how long will i feel pregnant +abortion,"('signs of pregnancy after abortion pill', 'how long do pregnancy symptoms last after abortion pill')",signs of pregnancy after abortion pill,how long do pregnancy symptoms last after abortion pill,6,4,google,2026-03-12 19:56:52.474534,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs pill,how long do symptoms last +abortion,"('signs of pregnancy after abortion pill', 'how long after an abortion can you take a pregnancy test')",signs of pregnancy after abortion pill,how long after an abortion can you take a pregnancy test,7,4,google,2026-03-12 19:56:52.474534,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs pill,how long an can you take a test +abortion,"('signs of pregnancy after abortion pill', 'signs of pregnancy after surgical abortion')",signs of pregnancy after abortion pill,signs of pregnancy after surgical abortion,8,4,google,2026-03-12 19:56:52.474534,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs pill,surgical +abortion,"('signs of pregnancy after abortion pill', 'signs of pregnancy after abortion reddit')",signs of pregnancy after abortion pill,signs of pregnancy after abortion reddit,9,4,google,2026-03-12 19:56:52.474534,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs pill,reddit +abortion,"('signs of pregnancy after abortion discharge', 'signs of pregnancy after abortion discharge forum')",signs of pregnancy after abortion discharge,signs of pregnancy after abortion discharge forum,1,4,google,2026-03-12 19:56:53.483121,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs discharge,forum +abortion,"('signs of pregnancy after abortion discharge', 'signs of pregnancy after miscarriage before period discharge')",signs of pregnancy after abortion discharge,signs of pregnancy after miscarriage before period discharge,2,4,google,2026-03-12 19:56:53.483121,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs discharge,miscarriage before period +abortion,"('signs of pregnancy after abortion discharge', 'signs of pregnancy after miscarriage first trimester discharge')",signs of pregnancy after abortion discharge,signs of pregnancy after miscarriage first trimester discharge,3,4,google,2026-03-12 19:56:53.483121,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs discharge,miscarriage first trimester +abortion,"('signs of pregnancy after abortion discharge', 'how do you know if your pregnant after an abortion')",signs of pregnancy after abortion discharge,how do you know if your pregnant after an abortion,4,4,google,2026-03-12 19:56:53.483121,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs discharge,how do you know if your pregnant an +abortion,"('signs of pregnancy after abortion discharge', 'how long do pregnancy symptoms last after abortion')",signs of pregnancy after abortion discharge,how long do pregnancy symptoms last after abortion,5,4,google,2026-03-12 19:56:53.483121,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs discharge,how long do symptoms last +abortion,"('signs of pregnancy after abortion discharge', 'how long will i feel pregnant after abortion')",signs of pregnancy after abortion discharge,how long will i feel pregnant after abortion,6,4,google,2026-03-12 19:56:53.483121,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs discharge,how long will i feel pregnant +abortion,"('signs of pregnancy after abortion discharge', 'is it normal to have discharge after abortion')",signs of pregnancy after abortion discharge,is it normal to have discharge after abortion,7,4,google,2026-03-12 19:56:53.483121,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs discharge,is it normal to have +abortion,"('signs of pregnancy after abortion discharge', 'signs of pregnancy after surgical abortion')",signs of pregnancy after abortion discharge,signs of pregnancy after surgical abortion,8,4,google,2026-03-12 19:56:53.483121,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs discharge,surgical +abortion,"('signs of pregnancy after abortion discharge', 'signs of pregnancy after abortion pill')",signs of pregnancy after abortion discharge,signs of pregnancy after abortion pill,9,4,google,2026-03-12 19:56:53.483121,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs discharge,pill +abortion,"('signs of pregnancy after abortion mumsnet', 'early signs of pregnancy after abortion mumsnet')",signs of pregnancy after abortion mumsnet,early signs of pregnancy after abortion mumsnet,1,4,google,2026-03-12 19:56:54.972151,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs mumsnet,early +abortion,"('signs of pregnancy after abortion mumsnet', ""how do you know if you're pregnant again after an abortion"")",signs of pregnancy after abortion mumsnet,how do you know if you're pregnant again after an abortion,2,4,google,2026-03-12 19:56:54.972151,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs mumsnet,how do you know if you're pregnant again an +abortion,"('signs of pregnancy after abortion mumsnet', 'how do you know if your pregnant after an abortion')",signs of pregnancy after abortion mumsnet,how do you know if your pregnant after an abortion,3,4,google,2026-03-12 19:56:54.972151,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs mumsnet,how do you know if your pregnant an +abortion,"('signs of pregnancy after abortion mumsnet', 'how long will i feel pregnant after abortion')",signs of pregnancy after abortion mumsnet,how long will i feel pregnant after abortion,4,4,google,2026-03-12 19:56:54.972151,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs mumsnet,how long will i feel pregnant +abortion,"('signs of pregnancy after abortion mumsnet', 'can you still be pregnant after having an abortion')",signs of pregnancy after abortion mumsnet,can you still be pregnant after having an abortion,5,4,google,2026-03-12 19:56:54.972151,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs mumsnet,can you still be pregnant having an +abortion,"('signs of pregnancy after abortion mumsnet', 'signs of pregnancy after abortion reddit')",signs of pregnancy after abortion mumsnet,signs of pregnancy after abortion reddit,6,4,google,2026-03-12 19:56:54.972151,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs mumsnet,reddit +abortion,"('signs of pregnancy after abortion mumsnet', 'signs of pregnancy after surgical abortion')",signs of pregnancy after abortion mumsnet,signs of pregnancy after surgical abortion,7,4,google,2026-03-12 19:56:54.972151,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs mumsnet,surgical +abortion,"('signs of pregnancy after abortion mumsnet', 'signs of pregnancy after abortion pill')",signs of pregnancy after abortion mumsnet,signs of pregnancy after abortion pill,8,4,google,2026-03-12 19:56:54.972151,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs mumsnet,pill +abortion,"('signs of pregnancy after abortion mumsnet', 'signs of pregnancy after a miscarriage')",signs of pregnancy after abortion mumsnet,signs of pregnancy after a miscarriage,9,4,google,2026-03-12 19:56:54.972151,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs mumsnet,a miscarriage +abortion,"('signs of pregnancy after abortion at 4 weeks', 'pregnancy symptoms 4 weeks after abortion')",signs of pregnancy after abortion at 4 weeks,pregnancy symptoms 4 weeks after abortion,1,4,google,2026-03-12 19:56:55.876609,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 4 weeks,symptoms +abortion,"('signs of pregnancy after abortion at 4 weeks', ""how do you know if you're pregnant again after an abortion"")",signs of pregnancy after abortion at 4 weeks,how do you know if you're pregnant again after an abortion,2,4,google,2026-03-12 19:56:55.876609,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 4 weeks,how do you know if you're pregnant again an +abortion,"('signs of pregnancy after abortion at 4 weeks', 'how do you know if your pregnant after an abortion')",signs of pregnancy after abortion at 4 weeks,how do you know if your pregnant after an abortion,3,4,google,2026-03-12 19:56:55.876609,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 4 weeks,how do you know if your pregnant an +abortion,"('signs of pregnancy after abortion at 4 weeks', 'how long will i feel pregnant after abortion')",signs of pregnancy after abortion at 4 weeks,how long will i feel pregnant after abortion,4,4,google,2026-03-12 19:56:55.876609,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 4 weeks,how long will i feel pregnant +abortion,"('signs of pregnancy after abortion at 4 weeks', 'signs of pregnancy after 4 weeks')",signs of pregnancy after abortion at 4 weeks,signs of pregnancy after 4 weeks,5,4,google,2026-03-12 19:56:55.876609,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 4 weeks,signs at 4 weeks +abortion,"('signs of pregnancy after abortion at 4 weeks', 'signs of pregnancy after abortion pill')",signs of pregnancy after abortion at 4 weeks,signs of pregnancy after abortion pill,6,4,google,2026-03-12 19:56:55.876609,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 4 weeks,pill +abortion,"('signs of pregnancy after abortion at 4 weeks', 'signs of pregnancy 4 weeks after conception')",signs of pregnancy after abortion at 4 weeks,signs of pregnancy 4 weeks after conception,7,4,google,2026-03-12 19:56:55.876609,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 4 weeks,conception +abortion,"('signs of pregnancy after abortion at 4 weeks', 'positive pregnancy 4 weeks after abortion')",signs of pregnancy after abortion at 4 weeks,positive pregnancy 4 weeks after abortion,8,4,google,2026-03-12 19:56:55.876609,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 4 weeks,positive +abortion,"('signs of pregnancy after abortion at 4 weeks', '4 weeks after abortion pregnancy test positive')",signs of pregnancy after abortion at 4 weeks,4 weeks after abortion pregnancy test positive,9,4,google,2026-03-12 19:56:55.876609,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 4 weeks,test positive +abortion,"('symptoms of pregnancy after abortion pill', 'symptoms of ectopic pregnancy after abortion pill')",symptoms of pregnancy after abortion pill,symptoms of ectopic pregnancy after abortion pill,1,4,google,2026-03-12 19:56:57.053820,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,symptoms pill,ectopic +abortion,"('symptoms of pregnancy after abortion pill', 'early signs of pregnancy after morning after pill')",symptoms of pregnancy after abortion pill,early signs of pregnancy after morning after pill,2,4,google,2026-03-12 19:56:57.053820,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,symptoms pill,early signs morning +abortion,"('symptoms of pregnancy after abortion pill', 'symptoms of pregnancy after taking morning after pill')",symptoms of pregnancy after abortion pill,symptoms of pregnancy after taking morning after pill,3,4,google,2026-03-12 19:56:57.053820,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,symptoms pill,taking morning +abortion,"('symptoms of pregnancy after abortion pill', 'how long do pregnancy symptoms last after abortion pill')",symptoms of pregnancy after abortion pill,how long do pregnancy symptoms last after abortion pill,4,4,google,2026-03-12 19:56:57.053820,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,symptoms pill,how long do last +abortion,"('symptoms of pregnancy after abortion pill', 'how long do pregnancy symptoms last after abortion')",symptoms of pregnancy after abortion pill,how long do pregnancy symptoms last after abortion,5,4,google,2026-03-12 19:56:57.053820,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,symptoms pill,how long do last +abortion,"('symptoms of pregnancy after abortion pill', 'can you still feel pregnancy symptoms after abortion')",symptoms of pregnancy after abortion pill,can you still feel pregnancy symptoms after abortion,6,4,google,2026-03-12 19:56:57.053820,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,symptoms pill,can you still feel +abortion,"('symptoms of pregnancy after abortion pill', 'signs of pregnancy after abortion pill')",symptoms of pregnancy after abortion pill,signs of pregnancy after abortion pill,7,4,google,2026-03-12 19:56:57.053820,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,symptoms pill,signs +abortion,"('symptoms of pregnancy after abortion pill', 'symptoms of pregnancy after taking plan b')",symptoms of pregnancy after abortion pill,symptoms of pregnancy after taking plan b,8,4,google,2026-03-12 19:56:57.053820,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,symptoms pill,taking plan b +abortion,"('symptoms of pregnancy after abortion pill', 'symptoms of pregnancy after plan b')",symptoms of pregnancy after abortion pill,symptoms of pregnancy after plan b,9,4,google,2026-03-12 19:56:57.053820,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,symptoms pill,plan b +abortion,"('signs of pregnancy after abortion at 6 weeks', 'signs of pregnancy after miscarriage at 6 weeks')",signs of pregnancy after abortion at 6 weeks,signs of pregnancy after miscarriage at 6 weeks,1,4,google,2026-03-12 19:56:58.401976,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 6 weeks,miscarriage +abortion,"('signs of pregnancy after abortion at 6 weeks', 'can you get pregnant 6 weeks after abortion')",signs of pregnancy after abortion at 6 weeks,can you get pregnant 6 weeks after abortion,2,4,google,2026-03-12 19:56:58.401976,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 6 weeks,can you get pregnant +abortion,"('signs of pregnancy after abortion at 6 weeks', ""how do you know if you're pregnant again after an abortion"")",signs of pregnancy after abortion at 6 weeks,how do you know if you're pregnant again after an abortion,3,4,google,2026-03-12 19:56:58.401976,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 6 weeks,how do you know if you're pregnant again an +abortion,"('signs of pregnancy after abortion at 6 weeks', 'can you have a positive pregnancy test 6 weeks after abortion')",signs of pregnancy after abortion at 6 weeks,can you have a positive pregnancy test 6 weeks after abortion,4,4,google,2026-03-12 19:56:58.401976,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 6 weeks,can you have a positive test +abortion,"('signs of pregnancy after abortion at 6 weeks', 'signs of pregnancy after 6 weeks')",signs of pregnancy after abortion at 6 weeks,signs of pregnancy after 6 weeks,5,4,google,2026-03-12 19:56:58.401976,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 6 weeks,signs at 6 weeks +abortion,"('signs of pregnancy after abortion at 6 weeks', '6 weeks after abortion positive pregnancy test')",signs of pregnancy after abortion at 6 weeks,6 weeks after abortion positive pregnancy test,6,4,google,2026-03-12 19:56:58.401976,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 6 weeks,positive test +abortion,"('signs of pregnancy after abortion at 6 weeks', 'signs of pregnancy 6 weeks after giving birth')",signs of pregnancy after abortion at 6 weeks,signs of pregnancy 6 weeks after giving birth,7,4,google,2026-03-12 19:56:58.401976,abortion pill side effects future pregnancy,side effects of pregnancy after abortion,signs at 6 weeks,giving birth +abortion,"('does abortion affect future pregnancy reddit', 'does abortion affect future.fertility reddit')",does abortion affect future pregnancy reddit,does abortion affect future.fertility reddit,1,4,google,2026-03-12 19:56:59.683650,abortion pill side effects future pregnancy,does abortion affect future pregnancy,reddit,future.fertility +abortion,"('does abortion affect future pregnancy reddit', 'does medical.abortion affect future pregnancy reddit')",does abortion affect future pregnancy reddit,does medical.abortion affect future pregnancy reddit,2,4,google,2026-03-12 19:56:59.683650,abortion pill side effects future pregnancy,does abortion affect future pregnancy,reddit,medical.abortion +abortion,"('does abortion affect future pregnancy reddit', 'does abortion affect future pregnancy')",does abortion affect future pregnancy reddit,does abortion affect future pregnancy,3,4,google,2026-03-12 19:56:59.683650,abortion pill side effects future pregnancy,does abortion affect future pregnancy,reddit,reddit +abortion,"('does abortion affect future pregnancy reddit', 'can having an abortion cause problems with future pregnancies')",does abortion affect future pregnancy reddit,can having an abortion cause problems with future pregnancies,4,4,google,2026-03-12 19:56:59.683650,abortion pill side effects future pregnancy,does abortion affect future pregnancy,reddit,can having an cause problems with pregnancies +abortion,"('does abortion affect future pregnancy reddit', 'does surgical abortion affect future pregnancy')",does abortion affect future pregnancy reddit,does surgical abortion affect future pregnancy,5,4,google,2026-03-12 19:56:59.683650,abortion pill side effects future pregnancy,does abortion affect future pregnancy,reddit,surgical +abortion,"('does abortion affect future pregnancy reddit', 'does abortion affect fertility reddit')",does abortion affect future pregnancy reddit,does abortion affect fertility reddit,6,4,google,2026-03-12 19:56:59.683650,abortion pill side effects future pregnancy,does abortion affect future pregnancy,reddit,fertility +abortion,"('does abortion affect future pregnancy reddit', 'does abortion affect future fertility')",does abortion affect future pregnancy reddit,does abortion affect future fertility,7,4,google,2026-03-12 19:56:59.683650,abortion pill side effects future pregnancy,does abortion affect future pregnancy,reddit,fertility +abortion,"('does abortion affect future pregnancy nhs', 'does abortion affect future pregnancy')",does abortion affect future pregnancy nhs,does abortion affect future pregnancy,1,4,google,2026-03-12 19:57:01.049073,abortion pill side effects future pregnancy,does abortion affect future pregnancy,nhs,nhs +abortion,"('does abortion affect future pregnancy nhs', 'can having an abortion cause problems with future pregnancies')",does abortion affect future pregnancy nhs,can having an abortion cause problems with future pregnancies,2,4,google,2026-03-12 19:57:01.049073,abortion pill side effects future pregnancy,does abortion affect future pregnancy,nhs,can having an cause problems with pregnancies +abortion,"('does abortion affect future pregnancy nhs', 'does surgical abortion affect future pregnancy')",does abortion affect future pregnancy nhs,does surgical abortion affect future pregnancy,3,4,google,2026-03-12 19:57:01.049073,abortion pill side effects future pregnancy,does abortion affect future pregnancy,nhs,surgical +abortion,"('does abortion affect future pregnancy nhs', 'does abortion affect future fertility')",does abortion affect future pregnancy nhs,does abortion affect future fertility,4,4,google,2026-03-12 19:57:01.049073,abortion pill side effects future pregnancy,does abortion affect future pregnancy,nhs,fertility +abortion,"('does abortion affect future pregnancy chances', 'does abortion affect future pregnancy')",does abortion affect future pregnancy chances,does abortion affect future pregnancy,1,4,google,2026-03-12 19:57:02.149974,abortion pill side effects future pregnancy,does abortion affect future pregnancy,chances,chances +abortion,"('does abortion affect future pregnancy chances', 'does abortion affect future fertility')",does abortion affect future pregnancy chances,does abortion affect future fertility,2,4,google,2026-03-12 19:57:02.149974,abortion pill side effects future pregnancy,does abortion affect future pregnancy,chances,fertility +abortion,"('does abortion affect future pregnancy chances', 'will abortion affect future pregnancy')",does abortion affect future pregnancy chances,will abortion affect future pregnancy,3,4,google,2026-03-12 19:57:02.149974,abortion pill side effects future pregnancy,does abortion affect future pregnancy,chances,will +abortion,"('does abortion affect next pregnancy', 'does abortion affect future pregnancy')",does abortion affect next pregnancy,does abortion affect future pregnancy,1,4,google,2026-03-12 19:57:03.233014,abortion pill side effects future pregnancy,does abortion affect future pregnancy,next,future +abortion,"('does abortion affect next pregnancy', 'does abortion affect future pregnancy reddit')",does abortion affect next pregnancy,does abortion affect future pregnancy reddit,2,4,google,2026-03-12 19:57:03.233014,abortion pill side effects future pregnancy,does abortion affect future pregnancy,next,future reddit +abortion,"('does abortion affect next pregnancy', 'does abortion affect second pregnancy')",does abortion affect next pregnancy,does abortion affect second pregnancy,3,4,google,2026-03-12 19:57:03.233014,abortion pill side effects future pregnancy,does abortion affect future pregnancy,next,second +abortion,"('does abortion affect next pregnancy', 'does abortion affect future pregnancy nhs')",does abortion affect next pregnancy,does abortion affect future pregnancy nhs,4,4,google,2026-03-12 19:57:03.233014,abortion pill side effects future pregnancy,does abortion affect future pregnancy,next,future nhs +abortion,"('does abortion affect next pregnancy', 'does abortion affect future pregnancy chances')",does abortion affect next pregnancy,does abortion affect future pregnancy chances,5,4,google,2026-03-12 19:57:03.233014,abortion pill side effects future pregnancy,does abortion affect future pregnancy,next,future chances +abortion,"('does abortion affect next pregnancy', 'does abortion pill affect next pregnancy')",does abortion affect next pregnancy,does abortion pill affect next pregnancy,6,4,google,2026-03-12 19:57:03.233014,abortion pill side effects future pregnancy,does abortion affect future pregnancy,next,pill +abortion,"('does abortion affect next pregnancy', 'does medical abortion affect next pregnancy')",does abortion affect next pregnancy,does medical abortion affect next pregnancy,7,4,google,2026-03-12 19:57:03.233014,abortion pill side effects future pregnancy,does abortion affect future pregnancy,next,medical +abortion,"('does abortion affect next pregnancy', 'can abortion affect future pregnancy forum')",does abortion affect next pregnancy,can abortion affect future pregnancy forum,8,4,google,2026-03-12 19:57:03.233014,abortion pill side effects future pregnancy,does abortion affect future pregnancy,next,can future forum +abortion,"('does abortion affect next pregnancy', 'do abortions impact future pregnancy')",does abortion affect next pregnancy,do abortions impact future pregnancy,9,4,google,2026-03-12 19:57:03.233014,abortion pill side effects future pregnancy,does abortion affect future pregnancy,next,do abortions impact future +abortion,"('does abortion affect further pregnancy', 'does abortion affect future pregnancy')",does abortion affect further pregnancy,does abortion affect future pregnancy,1,4,google,2026-03-12 19:57:04.608924,abortion pill side effects future pregnancy,does abortion affect future pregnancy,further,future +abortion,"('does abortion affect further pregnancy', 'does abortion affect future pregnancy reddit')",does abortion affect further pregnancy,does abortion affect future pregnancy reddit,2,4,google,2026-03-12 19:57:04.608924,abortion pill side effects future pregnancy,does abortion affect future pregnancy,further,future reddit +abortion,"('does abortion affect further pregnancy', 'does abortion affect second pregnancy')",does abortion affect further pregnancy,does abortion affect second pregnancy,3,4,google,2026-03-12 19:57:04.608924,abortion pill side effects future pregnancy,does abortion affect future pregnancy,further,second +abortion,"('does abortion affect further pregnancy', 'does abortion affect future pregnancy nhs')",does abortion affect further pregnancy,does abortion affect future pregnancy nhs,4,4,google,2026-03-12 19:57:04.608924,abortion pill side effects future pregnancy,does abortion affect future pregnancy,further,future nhs +abortion,"('does abortion affect further pregnancy', 'does abortion affect future pregnancy chances')",does abortion affect further pregnancy,does abortion affect future pregnancy chances,5,4,google,2026-03-12 19:57:04.608924,abortion pill side effects future pregnancy,does abortion affect future pregnancy,further,future chances +abortion,"('does abortion affect further pregnancy', 'can abortion affect future pregnancy forum')",does abortion affect further pregnancy,can abortion affect future pregnancy forum,6,4,google,2026-03-12 19:57:04.608924,abortion pill side effects future pregnancy,does abortion affect future pregnancy,further,can future forum +abortion,"('does abortion affect further pregnancy', 'do abortions impact future pregnancy')",does abortion affect further pregnancy,do abortions impact future pregnancy,7,4,google,2026-03-12 19:57:04.608924,abortion pill side effects future pregnancy,does abortion affect future pregnancy,further,do abortions impact future +abortion,"('does abortion affect further pregnancy', 'does abortion pill affect future pregnancy')",does abortion affect further pregnancy,does abortion pill affect future pregnancy,8,4,google,2026-03-12 19:57:04.608924,abortion pill side effects future pregnancy,does abortion affect future pregnancy,further,pill future +abortion,"('does abortion affect further pregnancy', 'does medical abortion affect future pregnancy')",does abortion affect further pregnancy,does medical abortion affect future pregnancy,9,4,google,2026-03-12 19:57:04.608924,abortion pill side effects future pregnancy,does abortion affect future pregnancy,further,medical future +abortion,"('can abortion affect future pregnancy forum', 'does having 2 abortions affect future pregnancy forum')",can abortion affect future pregnancy forum,does having 2 abortions affect future pregnancy forum,1,4,google,2026-03-12 19:57:06.042116,abortion pill side effects future pregnancy,does abortion affect future pregnancy,can forum,does having 2 abortions +abortion,"('can abortion affect future pregnancy forum', 'does abortion affect future pregnancy')",can abortion affect future pregnancy forum,does abortion affect future pregnancy,2,4,google,2026-03-12 19:57:06.042116,abortion pill side effects future pregnancy,does abortion affect future pregnancy,can forum,does +abortion,"('can abortion affect future pregnancy forum', 'can having an abortion cause problems with future pregnancies')",can abortion affect future pregnancy forum,can having an abortion cause problems with future pregnancies,3,4,google,2026-03-12 19:57:06.042116,abortion pill side effects future pregnancy,does abortion affect future pregnancy,can forum,having an cause problems with pregnancies +abortion,"('can abortion affect future pregnancy forum', 'how can an abortion affect future pregnancy')",can abortion affect future pregnancy forum,how can an abortion affect future pregnancy,4,4,google,2026-03-12 19:57:06.042116,abortion pill side effects future pregnancy,does abortion affect future pregnancy,can forum,how an +abortion,"('can abortion affect future pregnancy forum', 'can abortion affect future conception')",can abortion affect future pregnancy forum,can abortion affect future conception,5,4,google,2026-03-12 19:57:06.042116,abortion pill side effects future pregnancy,does abortion affect future pregnancy,can forum,conception +abortion,"('do abortions impact future pregnancy', 'does abortion impact future pregnancy')",do abortions impact future pregnancy,does abortion impact future pregnancy,1,4,google,2026-03-12 19:57:07.176192,abortion pill side effects future pregnancy,does abortion affect future pregnancy,do abortions impact,does abortion +abortion,"('do abortions impact future pregnancy', 'can abortion impact future pregnancy')",do abortions impact future pregnancy,can abortion impact future pregnancy,2,4,google,2026-03-12 19:57:07.176192,abortion pill side effects future pregnancy,does abortion affect future pregnancy,do abortions impact,can abortion +abortion,"('do abortions impact future pregnancy', 'does abortion affect future pregnancy reddit')",do abortions impact future pregnancy,does abortion affect future pregnancy reddit,3,4,google,2026-03-12 19:57:07.176192,abortion pill side effects future pregnancy,does abortion affect future pregnancy,do abortions impact,does abortion affect reddit +abortion,"('do abortions impact future pregnancy', 'does abortion affect future pregnancy nhs')",do abortions impact future pregnancy,does abortion affect future pregnancy nhs,4,4,google,2026-03-12 19:57:07.176192,abortion pill side effects future pregnancy,does abortion affect future pregnancy,do abortions impact,does abortion affect nhs +abortion,"('do abortions impact future pregnancy', 'does abortion affect future pregnancy chances')",do abortions impact future pregnancy,does abortion affect future pregnancy chances,5,4,google,2026-03-12 19:57:07.176192,abortion pill side effects future pregnancy,does abortion affect future pregnancy,do abortions impact,does abortion affect chances +abortion,"('do abortions impact future pregnancy', 'can abortion affect future pregnancy forum')",do abortions impact future pregnancy,can abortion affect future pregnancy forum,6,4,google,2026-03-12 19:57:07.176192,abortion pill side effects future pregnancy,does abortion affect future pregnancy,do abortions impact,can abortion affect forum +abortion,"('do abortions impact future pregnancy', 'does abortion affect next pregnancy')",do abortions impact future pregnancy,does abortion affect next pregnancy,7,4,google,2026-03-12 19:57:07.176192,abortion pill side effects future pregnancy,does abortion affect future pregnancy,do abortions impact,does abortion affect next +abortion,"('do abortions impact future pregnancy', 'does abortion affect further pregnancy')",do abortions impact future pregnancy,does abortion affect further pregnancy,8,4,google,2026-03-12 19:57:07.176192,abortion pill side effects future pregnancy,does abortion affect future pregnancy,do abortions impact,does abortion affect further +abortion,"('do abortions impact future pregnancy', 'does medical abortion impact future pregnancy')",do abortions impact future pregnancy,does medical abortion impact future pregnancy,9,4,google,2026-03-12 19:57:07.176192,abortion pill side effects future pregnancy,does abortion affect future pregnancy,do abortions impact,does medical abortion +abortion,"('does abortion affect future fertility', 'does abortion affect future.fertility reddit')",does abortion affect future fertility,does abortion affect future.fertility reddit,1,4,google,2026-03-12 19:57:08.604663,abortion pill side effects future pregnancy,does abortion affect future pregnancy,fertility,future.fertility reddit +abortion,"('does abortion affect future fertility', 'do abortions affect future fertility')",does abortion affect future fertility,do abortions affect future fertility,2,4,google,2026-03-12 19:57:08.604663,abortion pill side effects future pregnancy,does abortion affect future pregnancy,fertility,do abortions +abortion,"('does abortion affect future fertility', 'does abortion impact future fertility')",does abortion affect future fertility,does abortion impact future fertility,3,4,google,2026-03-12 19:57:08.604663,abortion pill side effects future pregnancy,does abortion affect future pregnancy,fertility,impact +abortion,"('does abortion affect future fertility', 'does abortion affect future pregnancy')",does abortion affect future fertility,does abortion affect future pregnancy,4,4,google,2026-03-12 19:57:08.604663,abortion pill side effects future pregnancy,does abortion affect future pregnancy,fertility,pregnancy +abortion,"('does abortion affect future fertility', 'does abortion affect future pregnancy reddit')",does abortion affect future fertility,does abortion affect future pregnancy reddit,5,4,google,2026-03-12 19:57:08.604663,abortion pill side effects future pregnancy,does abortion affect future pregnancy,fertility,pregnancy reddit +abortion,"('does abortion affect future fertility', 'does abortion affect future pregnancy nhs')",does abortion affect future fertility,does abortion affect future pregnancy nhs,6,4,google,2026-03-12 19:57:08.604663,abortion pill side effects future pregnancy,does abortion affect future pregnancy,fertility,pregnancy nhs +abortion,"('does abortion affect future fertility', 'does abortion affect future pregnancy chances')",does abortion affect future fertility,does abortion affect future pregnancy chances,7,4,google,2026-03-12 19:57:08.604663,abortion pill side effects future pregnancy,does abortion affect future pregnancy,fertility,pregnancy chances +abortion,"('does abortion affect future fertility', 'does medication abortion affect future fertility')",does abortion affect future fertility,does medication abortion affect future fertility,8,4,google,2026-03-12 19:57:08.604663,abortion pill side effects future pregnancy,does abortion affect future pregnancy,fertility,medication +abortion,"('does abortion affect future fertility', 'does surgical abortion affect future fertility')",does abortion affect future fertility,does surgical abortion affect future fertility,9,4,google,2026-03-12 19:57:08.604663,abortion pill side effects future pregnancy,does abortion affect future pregnancy,fertility,surgical +abortion,"('does abortion affect future.fertility reddit', 'does abortion affect future pregnancy reddit')",does abortion affect future.fertility reddit,does abortion affect future pregnancy reddit,1,4,google,2026-03-12 19:57:09.597722,abortion pill side effects future pregnancy,does abortion affect future pregnancy,future.fertility reddit,future pregnancy +abortion,"('does abortion affect future.fertility reddit', 'does medical.abortion affect future pregnancy reddit')",does abortion affect future.fertility reddit,does medical.abortion affect future pregnancy reddit,2,4,google,2026-03-12 19:57:09.597722,abortion pill side effects future pregnancy,does abortion affect future pregnancy,future.fertility reddit,medical.abortion future pregnancy +abortion,"('does abortion affect future.fertility reddit', 'does abortion affect future fertility')",does abortion affect future.fertility reddit,does abortion affect future fertility,3,4,google,2026-03-12 19:57:09.597722,abortion pill side effects future pregnancy,does abortion affect future pregnancy,future.fertility reddit,future fertility +abortion,"('does abortion affect future.fertility reddit', 'does abortion affect future pregnancy')",does abortion affect future.fertility reddit,does abortion affect future pregnancy,4,4,google,2026-03-12 19:57:09.597722,abortion pill side effects future pregnancy,does abortion affect future pregnancy,future.fertility reddit,future pregnancy +abortion,"('does abortion affect future.fertility reddit', 'does abortion affect fertility')",does abortion affect future.fertility reddit,does abortion affect fertility,5,4,google,2026-03-12 19:57:09.597722,abortion pill side effects future pregnancy,does abortion affect future pregnancy,future.fertility reddit,fertility +abortion,"('does abortion affect future.fertility reddit', 'does abortion affect fertility reddit')",does abortion affect future.fertility reddit,does abortion affect fertility reddit,6,4,google,2026-03-12 19:57:09.597722,abortion pill side effects future pregnancy,does abortion affect future pregnancy,future.fertility reddit,fertility +abortion,"('does abortion affect future.fertility reddit', 'will abortion affect future fertility')",does abortion affect future.fertility reddit,will abortion affect future fertility,7,4,google,2026-03-12 19:57:09.597722,abortion pill side effects future pregnancy,does abortion affect future pregnancy,future.fertility reddit,will future fertility +abortion,"('morning after pill effects on future pregnancy', 'morning after pill side effects future pregnancy')",morning after pill effects on future pregnancy,morning after pill side effects future pregnancy,1,4,google,2026-03-12 19:57:10.772710,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,morning after,side +abortion,"('morning after pill effects on future pregnancy', 'will morning after pill affect future pregnancy')",morning after pill effects on future pregnancy,will morning after pill affect future pregnancy,2,4,google,2026-03-12 19:57:10.772710,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,morning after,will affect +abortion,"('morning after pill effects on future pregnancy', 'does morning after pill affect future pregnancy')",morning after pill effects on future pregnancy,does morning after pill affect future pregnancy,3,4,google,2026-03-12 19:57:10.772710,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,morning after,does affect +abortion,"('morning after pill effects on future pregnancy', 'can morning after pill affect pregnancy')",morning after pill effects on future pregnancy,can morning after pill affect pregnancy,4,4,google,2026-03-12 19:57:10.772710,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,morning after,can affect +abortion,"('morning after pill effects on future pregnancy', 'side effects of morning-after pill if pregnant')",morning after pill effects on future pregnancy,side effects of morning-after pill if pregnant,5,4,google,2026-03-12 19:57:10.772710,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,morning after,side of morning-after if pregnant +abortion,"('abortion side effects on future pregnancy', 'abortion side effects future pregnancy in hindi')",abortion side effects on future pregnancy,abortion side effects future pregnancy in hindi,1,4,google,2026-03-12 19:57:11.734160,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,side,in hindi +abortion,"('abortion side effects on future pregnancy', 'abortion pill side effects future pregnancy')",abortion side effects on future pregnancy,abortion pill side effects future pregnancy,2,4,google,2026-03-12 19:57:11.734160,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,side,pill +abortion,"('abortion side effects on future pregnancy', 'abortion pill side effects future pregnancy in english')",abortion side effects on future pregnancy,abortion pill side effects future pregnancy in english,3,4,google,2026-03-12 19:57:11.734160,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,side,pill in english +abortion,"('abortion side effects on future pregnancy', 'is there any side effects of abortion on future pregnancy')",abortion side effects on future pregnancy,is there any side effects of abortion on future pregnancy,4,4,google,2026-03-12 19:57:11.734160,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,side,is there any of +abortion,"('abortion side effects on future pregnancy', 'abortion pill side effects future pregnancy in hindi')",abortion side effects on future pregnancy,abortion pill side effects future pregnancy in hindi,5,4,google,2026-03-12 19:57:11.734160,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,side,pill in hindi +abortion,"('abortion side effects on future pregnancy', 'does abortion affect future pregnancy')",abortion side effects on future pregnancy,does abortion affect future pregnancy,6,4,google,2026-03-12 19:57:11.734160,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,side,does affect +abortion,"('abortion side effects on future pregnancy', 'how can an abortion affect future pregnancy')",abortion side effects on future pregnancy,how can an abortion affect future pregnancy,7,4,google,2026-03-12 19:57:11.734160,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,side,how can an affect +abortion,"('abortion side effects on future pregnancy', 'does surgical abortion affect future pregnancy')",abortion side effects on future pregnancy,does surgical abortion affect future pregnancy,8,4,google,2026-03-12 19:57:11.734160,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,side,does surgical affect +abortion,"('abortion side effects on future pregnancy', 'does abortion impact future pregnancy')",abortion side effects on future pregnancy,does abortion impact future pregnancy,9,4,google,2026-03-12 19:57:11.734160,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,side,does impact +abortion,"('does the abortion pill effects on future pregnancy', 'does the abortion pill affect future pregnancy')",does the abortion pill effects on future pregnancy,does the abortion pill affect future pregnancy,1,4,google,2026-03-12 19:57:12.837856,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,does the,affect +abortion,"('does the abortion pill effects on future pregnancy', 'does the morning after pill affect future pregnancy')",does the abortion pill effects on future pregnancy,does the morning after pill affect future pregnancy,2,4,google,2026-03-12 19:57:12.837856,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,does the,morning after affect +abortion,"('does the abortion pill effects on future pregnancy', 'does abortion pill affect future pregnancy quora')",does the abortion pill effects on future pregnancy,does abortion pill affect future pregnancy quora,3,4,google,2026-03-12 19:57:12.837856,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,does the,affect quora +abortion,"('does the abortion pill effects on future pregnancy', 'abortion pill effects on future pregnancy')",does the abortion pill effects on future pregnancy,abortion pill effects on future pregnancy,4,4,google,2026-03-12 19:57:12.837856,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,does the,does the +abortion,"('does the abortion pill effects on future pregnancy', 'does abortion pill affect next pregnancy')",does the abortion pill effects on future pregnancy,does abortion pill affect next pregnancy,5,4,google,2026-03-12 19:57:12.837856,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,does the,affect next +abortion,"('does the abortion pill effects on future pregnancy', 'morning after pill effects on future pregnancy')",does the abortion pill effects on future pregnancy,morning after pill effects on future pregnancy,6,4,google,2026-03-12 19:57:12.837856,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,does the,morning after +abortion,"('does the abortion pill effects on future pregnancy', 'abortion side effects on future pregnancy')",does the abortion pill effects on future pregnancy,abortion side effects on future pregnancy,7,4,google,2026-03-12 19:57:12.837856,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,does the,side +abortion,"('does the abortion pill effects on future pregnancy', 'does abortion affect future pregnancy')",does the abortion pill effects on future pregnancy,does abortion affect future pregnancy,8,4,google,2026-03-12 19:57:12.837856,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,does the,affect +abortion,"('does the abortion pill effects on future pregnancy', 'does medical abortion affect future pregnancy')",does the abortion pill effects on future pregnancy,does medical abortion affect future pregnancy,9,4,google,2026-03-12 19:57:12.837856,abortion pill side effects future pregnancy,abortion pill effects on future pregnancy,does the,medical affect +abortion,"('does abortion pill affect future pregnancy quora', 'does abortion affect future pregnancy')",does abortion pill affect future pregnancy quora,does abortion affect future pregnancy,1,4,google,2026-03-12 19:57:13.680196,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,does quora,does quora +abortion,"('does abortion pill affect future pregnancy quora', 'does medical abortion affect future pregnancy')",does abortion pill affect future pregnancy quora,does medical abortion affect future pregnancy,2,4,google,2026-03-12 19:57:13.680196,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,does quora,medical +abortion,"('does abortion pill affect future pregnancy quora', 'do medical abortion affect future pregnancies')",does abortion pill affect future pregnancy quora,do medical abortion affect future pregnancies,3,4,google,2026-03-12 19:57:13.680196,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,does quora,do medical pregnancies +abortion,"('does abortion pill affect future pregnancy quora', 'does abortion pill affect future pregnancies')",does abortion pill affect future pregnancy quora,does abortion pill affect future pregnancies,4,4,google,2026-03-12 19:57:13.680196,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,does quora,pregnancies +abortion,"('does abortion pill affect future pregnancy quora', 'will abortion pill affect future pregnancy')",does abortion pill affect future pregnancy quora,will abortion pill affect future pregnancy,5,4,google,2026-03-12 19:57:13.680196,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,does quora,will +abortion,"('does abortion pill affect future pregnancy quora', 'does the abortion pill affect future fertility')",does abortion pill affect future pregnancy quora,does the abortion pill affect future fertility,6,4,google,2026-03-12 19:57:13.680196,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,does quora,the fertility +abortion,"('morning after pill affect future fertility', 'morning after pill affect future pregnancy')",morning after pill affect future fertility,morning after pill affect future pregnancy,1,4,google,2026-03-12 19:57:14.522003,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,morning after fertility,pregnancy +abortion,"('morning after pill affect future fertility', 'will morning after pill affect future pregnancy')",morning after pill affect future fertility,will morning after pill affect future pregnancy,2,4,google,2026-03-12 19:57:14.522003,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,morning after fertility,will pregnancy +abortion,"('morning after pill affect future fertility', 'morning after pill side effects future pregnancy')",morning after pill affect future fertility,morning after pill side effects future pregnancy,3,4,google,2026-03-12 19:57:14.522003,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,morning after fertility,side effects pregnancy +abortion,"('morning after pill affect future fertility', 'can morning after pill cause infertility')",morning after pill affect future fertility,can morning after pill cause infertility,4,4,google,2026-03-12 19:57:14.522003,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,morning after fertility,can cause infertility +abortion,"('morning after pill affect future fertility', 'does the morning after pill affect long term fertility')",morning after pill affect future fertility,does the morning after pill affect long term fertility,5,4,google,2026-03-12 19:57:14.522003,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,morning after fertility,does the long term +abortion,"('morning after pill affect future fertility', 'long term effects of morning after pill on fertility')",morning after pill affect future fertility,long term effects of morning after pill on fertility,6,4,google,2026-03-12 19:57:14.522003,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,morning after fertility,long term effects of on +abortion,"('morning after pill affect future fertility', 'does taking a lot of morning after pill affect fertility')",morning after pill affect future fertility,does taking a lot of morning after pill affect fertility,7,4,google,2026-03-12 19:57:14.522003,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,morning after fertility,does taking a lot of +abortion,"('morning after pill affect future fertility', 'levonorgestrel affect future pregnancy')",morning after pill affect future fertility,levonorgestrel affect future pregnancy,8,4,google,2026-03-12 19:57:14.522003,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,morning after fertility,levonorgestrel pregnancy +abortion,"('morning after pill affect future fertility', 'does day after pill affect fertility')",morning after pill affect future fertility,does day after pill affect fertility,9,4,google,2026-03-12 19:57:14.522003,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,morning after fertility,does day +abortion,"('will morning after pill affect future pregnancy', 'does morning after pill affect future fertility')",will morning after pill affect future pregnancy,does morning after pill affect future fertility,1,4,google,2026-03-12 19:57:15.948354,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,will morning after,does fertility +abortion,"('will morning after pill affect future pregnancy', 'morning after pill affect future pregnancy')",will morning after pill affect future pregnancy,morning after pill affect future pregnancy,2,4,google,2026-03-12 19:57:15.948354,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,will morning after,will morning after +abortion,"('will morning after pill affect future pregnancy', 'does plan b pill affect future pregnancy')",will morning after pill affect future pregnancy,does plan b pill affect future pregnancy,3,4,google,2026-03-12 19:57:15.948354,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,will morning after,does plan b +abortion,"('will morning after pill affect future pregnancy', 'does morning after pill affect future pregnancy')",will morning after pill affect future pregnancy,does morning after pill affect future pregnancy,4,4,google,2026-03-12 19:57:15.948354,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,will morning after,does +abortion,"('will morning after pill affect future pregnancy', 'can plan b harm future pregnancy')",will morning after pill affect future pregnancy,can plan b harm future pregnancy,5,4,google,2026-03-12 19:57:15.948354,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,will morning after,can plan b harm +abortion,"('will morning after pill affect future pregnancy', 'can morning after pill affect pregnancy')",will morning after pill affect future pregnancy,can morning after pill affect pregnancy,6,4,google,2026-03-12 19:57:15.948354,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,will morning after,can +abortion,"('will morning after pill affect future pregnancy', 'can the morning after pill stop you getting pregnant in the future')",will morning after pill affect future pregnancy,can the morning after pill stop you getting pregnant in the future,7,4,google,2026-03-12 19:57:15.948354,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,will morning after,can the stop you getting pregnant in the +abortion,"('will morning after pill affect future pregnancy', 'will morning after pill affect my period')",will morning after pill affect future pregnancy,will morning after pill affect my period,8,4,google,2026-03-12 19:57:15.948354,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,will morning after,my period +abortion,"('will morning after pill affect future pregnancy', 'will the morning after pill prevent pregnancy')",will morning after pill affect future pregnancy,will the morning after pill prevent pregnancy,9,4,google,2026-03-12 19:57:15.948354,abortion pill side effects future pregnancy,abortion pill affect future pregnancy,will morning after,the prevent +abortion,"('morning after pill psychological side effects', 'morning after pill emotional side effects')",morning after pill psychological side effects,morning after pill emotional side effects,1,4,google,2026-03-12 19:57:17.235248,abortion pill side effects mentally,morning after pill side effects mentally,psychological,emotional +abortion,"('morning after pill psychological side effects', 'morning after pill mental side effects')",morning after pill psychological side effects,morning after pill mental side effects,2,4,google,2026-03-12 19:57:17.235248,abortion pill side effects mentally,morning after pill side effects mentally,psychological,mental +abortion,"('morning after pill psychological side effects', 'morning after pill mood side effects')",morning after pill psychological side effects,morning after pill mood side effects,3,4,google,2026-03-12 19:57:17.235248,abortion pill side effects mentally,morning after pill side effects mentally,psychological,mood +abortion,"('morning after pill psychological side effects', 'morning after pill emotional side effects reddit')",morning after pill psychological side effects,morning after pill emotional side effects reddit,4,4,google,2026-03-12 19:57:17.235248,abortion pill side effects mentally,morning after pill side effects mentally,psychological,emotional reddit +abortion,"('morning after pill psychological side effects', 'morning after pill side effects mood swings')",morning after pill psychological side effects,morning after pill side effects mood swings,5,4,google,2026-03-12 19:57:17.235248,abortion pill side effects mentally,morning after pill side effects mentally,psychological,mood swings +abortion,"('morning after pill psychological side effects', 'morning after pill side effects depression')",morning after pill psychological side effects,morning after pill side effects depression,6,4,google,2026-03-12 19:57:17.235248,abortion pill side effects mentally,morning after pill side effects mentally,psychological,depression +abortion,"('morning after pill psychological side effects', 'does the morning after pill cause side effects')",morning after pill psychological side effects,does the morning after pill cause side effects,7,4,google,2026-03-12 19:57:17.235248,abortion pill side effects mentally,morning after pill side effects mentally,psychological,does the cause +abortion,"('morning after pill psychological side effects', 'how long does morning after pills side effects last')",morning after pill psychological side effects,how long does morning after pills side effects last,8,4,google,2026-03-12 19:57:17.235248,abortion pill side effects mentally,morning after pill side effects mentally,psychological,how long does pills last +abortion,"('morning after pill psychological side effects', 'morning-after pill side effects')",morning after pill psychological side effects,morning-after pill side effects,9,4,google,2026-03-12 19:57:17.235248,abortion pill side effects mentally,morning after pill side effects mentally,psychological,morning-after +abortion,"('side effects of plan b mentally', 'side effects of plan b emotionally')",side effects of plan b mentally,side effects of plan b emotionally,1,4,google,2026-03-12 19:57:18.440356,abortion pill side effects mentally,morning after pill side effects mentally,of plan b,emotionally +abortion,"('side effects of plan b mentally', 'can plan b affect your mental health')",side effects of plan b mentally,can plan b affect your mental health,2,4,google,2026-03-12 19:57:18.440356,abortion pill side effects mentally,morning after pill side effects mentally,of plan b,can affect your mental health +abortion,"('side effects of plan b mentally', 'can plan b cause serious side effects')",side effects of plan b mentally,can plan b cause serious side effects,3,4,google,2026-03-12 19:57:18.440356,abortion pill side effects mentally,morning after pill side effects mentally,of plan b,can cause serious +abortion,"('side effects of plan b mentally', 'does plan b cause mood swings')",side effects of plan b mentally,does plan b cause mood swings,4,4,google,2026-03-12 19:57:18.440356,abortion pill side effects mentally,morning after pill side effects mentally,of plan b,does cause mood swings +abortion,"('side effects of plan b mentally', 'side effects of plan b depression')",side effects of plan b mentally,side effects of plan b depression,5,4,google,2026-03-12 19:57:18.440356,abortion pill side effects mentally,morning after pill side effects mentally,of plan b,depression +abortion,"('side effects of plan b mentally', 'side effects of plan b anxiety')",side effects of plan b mentally,side effects of plan b anxiety,6,4,google,2026-03-12 19:57:18.440356,abortion pill side effects mentally,morning after pill side effects mentally,of plan b,anxiety +abortion,"('side effects of plan b mentally', 'side effects of plan b mood swings')",side effects of plan b mentally,side effects of plan b mood swings,7,4,google,2026-03-12 19:57:18.440356,abortion pill side effects mentally,morning after pill side effects mentally,of plan b,mood swings +abortion,"('morning after pill depression anxiety', 'morning after pill and anxiety')",morning after pill depression anxiety,morning after pill and anxiety,1,4,google,2026-03-12 19:57:19.922855,abortion pill side effects mentally,morning after pill side effects mentally,depression anxiety,and +abortion,"('morning after pill depression anxiety', 'can morning after pill cause anxiety')",morning after pill depression anxiety,can morning after pill cause anxiety,2,4,google,2026-03-12 19:57:19.922855,abortion pill side effects mentally,morning after pill side effects mentally,depression anxiety,can cause +abortion,"('morning after pill depression anxiety', 'morning after pill depression')",morning after pill depression anxiety,morning after pill depression,3,4,google,2026-03-12 19:57:19.922855,abortion pill side effects mentally,morning after pill side effects mentally,depression anxiety,depression anxiety +abortion,"('morning after pill depression anxiety', 'morning after pill depression reddit')",morning after pill depression anxiety,morning after pill depression reddit,4,4,google,2026-03-12 19:57:19.922855,abortion pill side effects mentally,morning after pill side effects mentally,depression anxiety,reddit +abortion,"('morning after pill depression anxiety', 'morning after pill depression how long')",morning after pill depression anxiety,morning after pill depression how long,5,4,google,2026-03-12 19:57:19.922855,abortion pill side effects mentally,morning after pill side effects mentally,depression anxiety,how long +abortion,"('morning after pill depression anxiety', 'morning depression and anxiety treatment')",morning after pill depression anxiety,morning depression and anxiety treatment,6,4,google,2026-03-12 19:57:19.922855,abortion pill side effects mentally,morning after pill side effects mentally,depression anxiety,and treatment +abortion,"('morning after pill depression anxiety', 'morning depression and anxiety reddit')",morning after pill depression anxiety,morning depression and anxiety reddit,7,4,google,2026-03-12 19:57:19.922855,abortion pill side effects mentally,morning after pill side effects mentally,depression anxiety,and reddit +abortion,"('abortion pill side effects mood', 'morning after pill side effects mood')",abortion pill side effects mood,morning after pill side effects mood,1,4,google,2026-03-12 19:57:20.952825,abortion pill side effects mentally,abortion pill side effects emotional,mood,morning after +abortion,"('abortion pill side effects mood', 'morning after pill side effects mood swings')",abortion pill side effects mood,morning after pill side effects mood swings,2,4,google,2026-03-12 19:57:20.952825,abortion pill side effects mentally,abortion pill side effects emotional,mood,morning after swings +abortion,"('abortion pill side effects mood', 'morning after pill side effects low mood')",abortion pill side effects mood,morning after pill side effects low mood,3,4,google,2026-03-12 19:57:20.952825,abortion pill side effects mentally,abortion pill side effects emotional,mood,morning after low +abortion,"('abortion pill side effects mood', 'abortion pill side effects future pregnancy')",abortion pill side effects mood,abortion pill side effects future pregnancy,4,4,google,2026-03-12 19:57:20.952825,abortion pill side effects mentally,abortion pill side effects emotional,mood,future pregnancy +abortion,"('abortion pill side effects mood', 'does abortion pill affect menstrual cycle')",abortion pill side effects mood,does abortion pill affect menstrual cycle,5,4,google,2026-03-12 19:57:20.952825,abortion pill side effects mentally,abortion pill side effects emotional,mood,does affect menstrual cycle +abortion,"('abortion pill side effects mood', 'abortion side effects future pregnancy')",abortion pill side effects mood,abortion side effects future pregnancy,6,4,google,2026-03-12 19:57:20.952825,abortion pill side effects mentally,abortion pill side effects emotional,mood,future pregnancy +abortion,"('abortion pill side effects mood', 'abortion pill side effects emotional')",abortion pill side effects mood,abortion pill side effects emotional,7,4,google,2026-03-12 19:57:20.952825,abortion pill side effects mentally,abortion pill side effects emotional,mood,emotional +abortion,"('abortion pill side effects mood', 'abortion pill mood swings')",abortion pill side effects mood,abortion pill mood swings,8,4,google,2026-03-12 19:57:20.952825,abortion pill side effects mentally,abortion pill side effects emotional,mood,swings +abortion,"('abortion pill side effects mood', 'abortion pill side effects after')",abortion pill side effects mood,abortion pill side effects after,9,4,google,2026-03-12 19:57:20.952825,abortion pill side effects mentally,abortion pill side effects emotional,mood,after +abortion,"('morning after pill side effects mood', 'morning after pill side effects mood swings')",morning after pill side effects mood,morning after pill side effects mood swings,1,4,google,2026-03-12 19:57:22.282073,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood,swings +abortion,"('morning after pill side effects mood', 'morning after pill side effects low mood')",morning after pill side effects mood,morning after pill side effects low mood,2,4,google,2026-03-12 19:57:22.282073,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood,low +abortion,"('morning after pill side effects mood', 'morning after pill cause mood swings')",morning after pill side effects mood,morning after pill cause mood swings,3,4,google,2026-03-12 19:57:22.282073,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood,cause swings +abortion,"('morning after pill side effects mood', 'plan b pill side effects mood swings')",morning after pill side effects mood,plan b pill side effects mood swings,4,4,google,2026-03-12 19:57:22.282073,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood,plan b swings +abortion,"('morning after pill side effects mood', 'plan b pill side effects mood')",morning after pill side effects mood,plan b pill side effects mood,5,4,google,2026-03-12 19:57:22.282073,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood,plan b +abortion,"('morning after pill side effects mood', 'can the morning after pill affect your mood')",morning after pill side effects mood,can the morning after pill affect your mood,6,4,google,2026-03-12 19:57:22.282073,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood,can the affect your +abortion,"('morning after pill side effects mood', 'can the morning after pill cause mood swings')",morning after pill side effects mood,can the morning after pill cause mood swings,7,4,google,2026-03-12 19:57:22.282073,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood,can the cause swings +abortion,"('morning after pill side effects mood', 'how does the morning after pill affect your mood')",morning after pill side effects mood,how does the morning after pill affect your mood,8,4,google,2026-03-12 19:57:22.282073,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood,how does the affect your +abortion,"('morning after pill side effects mood', 'can the morning after pill make you moody')",morning after pill side effects mood,can the morning after pill make you moody,9,4,google,2026-03-12 19:57:22.282073,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood,can the make you moody +abortion,"('morning after pill side effects mood swings', 'morning after pill cause mood swings')",morning after pill side effects mood swings,morning after pill cause mood swings,1,4,google,2026-03-12 19:57:23.224576,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood swings,cause +abortion,"('morning after pill side effects mood swings', 'plan b pill side effects mood swings')",morning after pill side effects mood swings,plan b pill side effects mood swings,2,4,google,2026-03-12 19:57:23.224576,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood swings,plan b +abortion,"('morning after pill side effects mood swings', 'can the morning after pill cause mood swings')",morning after pill side effects mood swings,can the morning after pill cause mood swings,3,4,google,2026-03-12 19:57:23.224576,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood swings,can the cause +abortion,"('morning after pill side effects mood swings', 'can the morning after pill make you moody')",morning after pill side effects mood swings,can the morning after pill make you moody,4,4,google,2026-03-12 19:57:23.224576,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood swings,can the make you moody +abortion,"('morning after pill side effects mood swings', 'is mood swings a side effect of plan b')",morning after pill side effects mood swings,is mood swings a side effect of plan b,5,4,google,2026-03-12 19:57:23.224576,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood swings,is a effect of plan b +abortion,"('morning after pill side effects mood swings', 'morning after pill side effects menstrual cycle')",morning after pill side effects mood swings,morning after pill side effects menstrual cycle,6,4,google,2026-03-12 19:57:23.224576,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood swings,menstrual cycle +abortion,"('morning after pill side effects mood swings', 'morning after pill side effects a week later')",morning after pill side effects mood swings,morning after pill side effects a week later,7,4,google,2026-03-12 19:57:23.224576,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood swings,a week later +abortion,"('morning after pill side effects mood swings', 'mood swings after taking plan b')",morning after pill side effects mood swings,mood swings after taking plan b,8,4,google,2026-03-12 19:57:23.224576,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood swings,taking plan b +abortion,"('morning after pill side effects mood swings', 'birth control pill side effects mood swings')",morning after pill side effects mood swings,birth control pill side effects mood swings,9,4,google,2026-03-12 19:57:23.224576,abortion pill side effects mentally,abortion pill side effects emotional,morning after mood swings,birth control +abortion,"('morning after pill side effects depression', 'plan b pill side effects depression')",morning after pill side effects depression,plan b pill side effects depression,1,4,google,2026-03-12 19:57:24.644939,abortion pill side effects mentally,abortion pill side effects emotional,morning after depression,plan b +abortion,"('morning after pill side effects depression', 'can the morning after pill make you depressed')",morning after pill side effects depression,can the morning after pill make you depressed,2,4,google,2026-03-12 19:57:24.644939,abortion pill side effects mentally,abortion pill side effects emotional,morning after depression,can the make you depressed +abortion,"('morning after pill side effects depression', 'can the morning after pill affect your mood')",morning after pill side effects depression,can the morning after pill affect your mood,3,4,google,2026-03-12 19:57:24.644939,abortion pill side effects mentally,abortion pill side effects emotional,morning after depression,can the affect your mood +abortion,"('morning after pill side effects depression', 'morning after pill depression anxiety')",morning after pill side effects depression,morning after pill depression anxiety,4,4,google,2026-03-12 19:57:24.644939,abortion pill side effects mentally,abortion pill side effects emotional,morning after depression,anxiety +abortion,"('morning after pill side effects depression', 'morning after pill depression how long')",morning after pill side effects depression,morning after pill depression how long,5,4,google,2026-03-12 19:57:24.644939,abortion pill side effects mentally,abortion pill side effects emotional,morning after depression,how long +abortion,"('morning after pill side effects depression', 'morning after pill depression reddit')",morning after pill side effects depression,morning after pill depression reddit,6,4,google,2026-03-12 19:57:24.644939,abortion pill side effects mentally,abortion pill side effects emotional,morning after depression,reddit +abortion,"('morning after pill side effects depression', 'morning after pill side effects a week later')",morning after pill side effects depression,morning after pill side effects a week later,7,4,google,2026-03-12 19:57:24.644939,abortion pill side effects mentally,abortion pill side effects emotional,morning after depression,a week later +abortion,"('morning after pill side effects depression', 'morning after pill side effects menstrual cycle')",morning after pill side effects depression,morning after pill side effects menstrual cycle,8,4,google,2026-03-12 19:57:24.644939,abortion pill side effects mentally,abortion pill side effects emotional,morning after depression,menstrual cycle +abortion,"('morning after pill side effects mental health', 'morning after pill side effects depression')",morning after pill side effects mental health,morning after pill side effects depression,1,4,google,2026-03-12 19:57:25.760328,abortion pill side effects mentally,abortion pill side effects emotional,morning after mental health,depression +abortion,"('morning after pill side effects mental health', 'can the morning after pill make you depressed')",morning after pill side effects mental health,can the morning after pill make you depressed,2,4,google,2026-03-12 19:57:25.760328,abortion pill side effects mentally,abortion pill side effects emotional,morning after mental health,can the make you depressed +abortion,"('morning after pill side effects mental health', 'morning after pill emotional side effects')",morning after pill side effects mental health,morning after pill emotional side effects,3,4,google,2026-03-12 19:57:25.760328,abortion pill side effects mentally,abortion pill side effects emotional,morning after mental health,emotional +abortion,"('morning after pill side effects mental health', 'morning after pill depression anxiety')",morning after pill side effects mental health,morning after pill depression anxiety,4,4,google,2026-03-12 19:57:25.760328,abortion pill side effects mentally,abortion pill side effects emotional,morning after mental health,depression anxiety +abortion,"('morning after pill side effects mental health', 'morning after pill side effects mentally')",morning after pill side effects mental health,morning after pill side effects mentally,5,4,google,2026-03-12 19:57:25.760328,abortion pill side effects mentally,abortion pill side effects emotional,morning after mental health,mentally +abortion,"('morning after pill side effects mental health', 'morning after pill side effects menstrual cycle')",morning after pill side effects mental health,morning after pill side effects menstrual cycle,6,4,google,2026-03-12 19:57:25.760328,abortion pill side effects mentally,abortion pill side effects emotional,morning after mental health,menstrual cycle +abortion,"('morning after pill side effects mental health', 'mental side effects of plan b')",morning after pill side effects mental health,mental side effects of plan b,7,4,google,2026-03-12 19:57:25.760328,abortion pill side effects mentally,abortion pill side effects emotional,morning after mental health,of plan b +abortion,"('morning after pill side effects low mood', 'low mood after morning after pill')",morning after pill side effects low mood,low mood after morning after pill,1,4,google,2026-03-12 19:57:26.666571,abortion pill side effects mentally,abortion pill side effects emotional,morning after low mood,morning after low mood +abortion,"('morning after pill side effects low mood', 'side effects morning after pill mood')",morning after pill side effects low mood,side effects morning after pill mood,2,4,google,2026-03-12 19:57:26.666571,abortion pill side effects mentally,abortion pill side effects emotional,morning after low mood,morning after low mood +abortion,"('morning after pill side effects low mood', 'can the morning after pill make you moody')",morning after pill side effects low mood,can the morning after pill make you moody,3,4,google,2026-03-12 19:57:26.666571,abortion pill side effects mentally,abortion pill side effects emotional,morning after low mood,can the make you moody +abortion,"('morning after pill side effects low mood', 'can the morning after pill cause mood swings')",morning after pill side effects low mood,can the morning after pill cause mood swings,4,4,google,2026-03-12 19:57:26.666571,abortion pill side effects mentally,abortion pill side effects emotional,morning after low mood,can the cause swings +abortion,"('morning after pill side effects low mood', 'morning after pill side effects a week later')",morning after pill side effects low mood,morning after pill side effects a week later,5,4,google,2026-03-12 19:57:26.666571,abortion pill side effects mentally,abortion pill side effects emotional,morning after low mood,a week later +abortion,"('morning after pill side effects low mood', 'morning after pill side effects menstrual cycle')",morning after pill side effects low mood,morning after pill side effects menstrual cycle,6,4,google,2026-03-12 19:57:26.666571,abortion pill side effects mentally,abortion pill side effects emotional,morning after low mood,menstrual cycle +abortion,"('morning after pill side effects low mood', 'side effects of morning after pill long term')",morning after pill side effects low mood,side effects of morning after pill long term,7,4,google,2026-03-12 19:57:26.666571,abortion pill side effects mentally,abortion pill side effects emotional,morning after low mood,of long term +abortion,"('morning after pill side effects low mood', 'morning after pill side effects bleeding')",morning after pill side effects low mood,morning after pill side effects bleeding,8,4,google,2026-03-12 19:57:26.666571,abortion pill side effects mentally,abortion pill side effects emotional,morning after low mood,bleeding +abortion,"('plan b pill side effects emotional', 'plan b pill side effects mood swings')",plan b pill side effects emotional,plan b pill side effects mood swings,1,4,google,2026-03-12 19:57:27.524322,abortion pill side effects mentally,morning after pill side effects emotional,plan b,mood swings +abortion,"('plan b pill side effects emotional', 'plan b pill side effects mood')",plan b pill side effects emotional,plan b pill side effects mood,2,4,google,2026-03-12 19:57:27.524322,abortion pill side effects mentally,morning after pill side effects emotional,plan b,mood +abortion,"('plan b pill side effects emotional', 'plan b pill side effects depression')",plan b pill side effects emotional,plan b pill side effects depression,3,4,google,2026-03-12 19:57:27.524322,abortion pill side effects mentally,morning after pill side effects emotional,plan b,depression +abortion,"('plan b pill side effects emotional', 'plan b pill side effects mental')",plan b pill side effects emotional,plan b pill side effects mental,4,4,google,2026-03-12 19:57:27.524322,abortion pill side effects mentally,morning after pill side effects emotional,plan b,mental +abortion,"('plan b pill side effects emotional', 'morning after pill side effects emotional')",plan b pill side effects emotional,morning after pill side effects emotional,5,4,google,2026-03-12 19:57:27.524322,abortion pill side effects mentally,morning after pill side effects emotional,plan b,morning after +abortion,"('plan b pill side effects emotional', 'plan b side effects emotional')",plan b pill side effects emotional,plan b side effects emotional,6,4,google,2026-03-12 19:57:27.524322,abortion pill side effects mentally,morning after pill side effects emotional,plan b,plan b +abortion,"('plan b pill side effects emotional', 'does plan b make you emotional')",plan b pill side effects emotional,does plan b make you emotional,7,4,google,2026-03-12 19:57:27.524322,abortion pill side effects mentally,morning after pill side effects emotional,plan b,does make you +abortion,"('plan b pill side effects emotional', 'plan b emotional side effects reddit')",plan b pill side effects emotional,plan b emotional side effects reddit,8,4,google,2026-03-12 19:57:27.524322,abortion pill side effects mentally,morning after pill side effects emotional,plan b,reddit +abortion,"('negative mental health effects of abortion', 'negative mental health effects')",negative mental health effects of abortion,negative mental health effects,1,4,google,2026-03-12 19:57:28.650613,abortion pill side effects mentally,mental health side effects of abortion,negative,negative +abortion,"('negative mental health effects of abortion', 'negative mental health examples')",negative mental health effects of abortion,negative mental health examples,2,4,google,2026-03-12 19:57:28.650613,abortion pill side effects mentally,mental health side effects of abortion,negative,examples +abortion,"('negative mental health effects of abortion', 'negative effects of abortion')",negative mental health effects of abortion,negative effects of abortion,3,4,google,2026-03-12 19:57:28.650613,abortion pill side effects mentally,mental health side effects of abortion,negative,negative +abortion,"('negative mental health effects of abortion', 'negative psychological effects of abortion')",negative mental health effects of abortion,negative psychological effects of abortion,4,4,google,2026-03-12 19:57:28.650613,abortion pill side effects mentally,mental health side effects of abortion,negative,psychological +abortion,"('negative mental health effects of abortion', 'mental health effects of an abortion')",negative mental health effects of abortion,mental health effects of an abortion,5,4,google,2026-03-12 19:57:28.650613,abortion pill side effects mentally,mental health side effects of abortion,negative,an +abortion,"('negative mental health effects of abortion', 'what are the mental effects of abortion')",negative mental health effects of abortion,what are the mental effects of abortion,6,4,google,2026-03-12 19:57:28.650613,abortion pill side effects mentally,mental health side effects of abortion,negative,what are the +abortion,"('psychological side effects of abortion', 'mental side effects of abortion')",psychological side effects of abortion,mental side effects of abortion,1,4,google,2026-03-12 19:57:29.623255,abortion pill side effects mentally,mental health side effects of abortion,psychological,mental +abortion,"('psychological side effects of abortion', 'emotional side effects of abortion')",psychological side effects of abortion,emotional side effects of abortion,2,4,google,2026-03-12 19:57:29.623255,abortion pill side effects mentally,mental health side effects of abortion,psychological,emotional +abortion,"('psychological side effects of abortion', 'negative psychological effects of abortion')",psychological side effects of abortion,negative psychological effects of abortion,3,4,google,2026-03-12 19:57:29.623255,abortion pill side effects mentally,mental health side effects of abortion,psychological,negative +abortion,"('psychological side effects of abortion', 'mental side effects of miscarriage')",psychological side effects of abortion,mental side effects of miscarriage,4,4,google,2026-03-12 19:57:29.623255,abortion pill side effects mentally,mental health side effects of abortion,psychological,mental miscarriage +abortion,"('psychological side effects of abortion', 'emotional side effects of miscarriage')",psychological side effects of abortion,emotional side effects of miscarriage,5,4,google,2026-03-12 19:57:29.623255,abortion pill side effects mentally,mental health side effects of abortion,psychological,emotional miscarriage +abortion,"('psychological side effects of abortion', 'mental health side effects of abortion')",psychological side effects of abortion,mental health side effects of abortion,6,4,google,2026-03-12 19:57:29.623255,abortion pill side effects mentally,mental health side effects of abortion,psychological,mental health +abortion,"('psychological side effects of abortion', 'emotional side effects of medical abortion')",psychological side effects of abortion,emotional side effects of medical abortion,7,4,google,2026-03-12 19:57:29.623255,abortion pill side effects mentally,mental health side effects of abortion,psychological,emotional medical +abortion,"('psychological side effects of abortion', 'after abortion psychological effects')",psychological side effects of abortion,after abortion psychological effects,8,4,google,2026-03-12 19:57:29.623255,abortion pill side effects mentally,mental health side effects of abortion,psychological,after +abortion,"('psychological side effects of abortion', 'psychological effects of medical abortion')",psychological side effects of abortion,psychological effects of medical abortion,9,4,google,2026-03-12 19:57:29.623255,abortion pill side effects mentally,mental health side effects of abortion,psychological,medical +abortion,"('mental health risks of abortion', 'mental health effects of abortion')",mental health risks of abortion,mental health effects of abortion,1,4,google,2026-03-12 19:57:30.850938,abortion pill side effects mentally,mental health side effects of abortion,risks,effects +abortion,"('mental health risks of abortion', 'mental health effects of abortion on women')",mental health risks of abortion,mental health effects of abortion on women,2,4,google,2026-03-12 19:57:30.850938,abortion pill side effects mentally,mental health side effects of abortion,risks,effects on women +abortion,"('mental health risks of abortion', 'mental health side effects of abortion')",mental health risks of abortion,mental health side effects of abortion,3,4,google,2026-03-12 19:57:30.850938,abortion pill side effects mentally,mental health side effects of abortion,risks,side effects +abortion,"('mental health risks of abortion', 'negative mental health effects of abortion')",mental health risks of abortion,negative mental health effects of abortion,4,4,google,2026-03-12 19:57:30.850938,abortion pill side effects mentally,mental health side effects of abortion,risks,negative effects +abortion,"('mental health risks of abortion', 'mental health issues after abortion')",mental health risks of abortion,mental health issues after abortion,5,4,google,2026-03-12 19:57:30.850938,abortion pill side effects mentally,mental health side effects of abortion,risks,issues after +abortion,"('mental health risks of abortion', 'mental health effects after abortion')",mental health risks of abortion,mental health effects after abortion,6,4,google,2026-03-12 19:57:30.850938,abortion pill side effects mentally,mental health side effects of abortion,risks,effects after +abortion,"('mental health risks of abortion', 'abortion health risks')",mental health risks of abortion,abortion health risks,7,4,google,2026-03-12 19:57:30.850938,abortion pill side effects mentally,mental health side effects of abortion,risks,risks +abortion,"('mental health risks of abortion', 'risks of unsafe abortion')",mental health risks of abortion,risks of unsafe abortion,8,4,google,2026-03-12 19:57:30.850938,abortion pill side effects mentally,mental health side effects of abortion,risks,unsafe +abortion,"('mental health risks of abortion', 'mental health impacts of abortion')",mental health risks of abortion,mental health impacts of abortion,9,4,google,2026-03-12 19:57:30.850938,abortion pill side effects mentally,mental health side effects of abortion,risks,impacts +abortion,"('mental health affects of abortion', 'mental health effects of abortion')",mental health affects of abortion,mental health effects of abortion,1,4,google,2026-03-12 19:57:32.236591,abortion pill side effects mentally,mental health side effects of abortion,affects,effects +abortion,"('mental health affects of abortion', 'mental health risks of abortion')",mental health affects of abortion,mental health risks of abortion,2,4,google,2026-03-12 19:57:32.236591,abortion pill side effects mentally,mental health side effects of abortion,affects,risks +abortion,"('mental health affects of abortion', 'mental health effects of abortion on women')",mental health affects of abortion,mental health effects of abortion on women,3,4,google,2026-03-12 19:57:32.236591,abortion pill side effects mentally,mental health side effects of abortion,affects,effects on women +abortion,"('mental health affects of abortion', 'mental health side effects of abortion')",mental health affects of abortion,mental health side effects of abortion,4,4,google,2026-03-12 19:57:32.236591,abortion pill side effects mentally,mental health side effects of abortion,affects,side effects +abortion,"('mental health affects of abortion', 'negative mental health effects of abortion')",mental health affects of abortion,negative mental health effects of abortion,5,4,google,2026-03-12 19:57:32.236591,abortion pill side effects mentally,mental health side effects of abortion,affects,negative effects +abortion,"('mental health affects of abortion', 'mental health problems after abortion')",mental health affects of abortion,mental health problems after abortion,6,4,google,2026-03-12 19:57:32.236591,abortion pill side effects mentally,mental health side effects of abortion,affects,problems after +abortion,"('mental health affects of abortion', 'mental health effects after abortion')",mental health affects of abortion,mental health effects after abortion,7,4,google,2026-03-12 19:57:32.236591,abortion pill side effects mentally,mental health side effects of abortion,affects,effects after +abortion,"('mental health affects of abortion', 'effects of abortion on students')",mental health affects of abortion,effects of abortion on students,8,4,google,2026-03-12 19:57:32.236591,abortion pill side effects mentally,mental health side effects of abortion,affects,effects on students +abortion,"('mental health affects of abortion', 'long term effects of abortion')",mental health affects of abortion,long term effects of abortion,9,4,google,2026-03-12 19:57:32.236591,abortion pill side effects mentally,mental health side effects of abortion,affects,long term effects +abortion,"('long term effects of abortion', 'long term effects of abortion pill')",long term effects of abortion,long term effects of abortion pill,1,4,google,2026-03-12 19:57:33.657855,abortion pill side effects mentally,mental health side effects of abortion,long term,pill +abortion,"('long term effects of abortion', 'long term effects of abortion pill reddit')",long term effects of abortion,long term effects of abortion pill reddit,2,4,google,2026-03-12 19:57:33.657855,abortion pill side effects mentally,mental health side effects of abortion,long term,pill reddit +abortion,"('long term effects of abortion', 'long term effects of abortion on women')",long term effects of abortion,long term effects of abortion on women,3,4,google,2026-03-12 19:57:33.657855,abortion pill side effects mentally,mental health side effects of abortion,long term,on women +abortion,"('long term effects of abortion', 'long term effects of abortion on the body')",long term effects of abortion,long term effects of abortion on the body,4,4,google,2026-03-12 19:57:33.657855,abortion pill side effects mentally,mental health side effects of abortion,long term,on the body +abortion,"('long term effects of abortion', 'long term effects of abortion on students')",long term effects of abortion,long term effects of abortion on students,5,4,google,2026-03-12 19:57:33.657855,abortion pill side effects mentally,mental health side effects of abortion,long term,on students +abortion,"('long term effects of abortion', 'long term effects of abortion reddit')",long term effects of abortion,long term effects of abortion reddit,6,4,google,2026-03-12 19:57:33.657855,abortion pill side effects mentally,mental health side effects of abortion,long term,reddit +abortion,"('long term effects of abortion', 'long term effects of abortion medication')",long term effects of abortion,long term effects of abortion medication,7,4,google,2026-03-12 19:57:33.657855,abortion pill side effects mentally,mental health side effects of abortion,long term,medication +abortion,"('long term effects of abortion', 'long term effects of abortion pill on the body')",long term effects of abortion,long term effects of abortion pill on the body,8,4,google,2026-03-12 19:57:33.657855,abortion pill side effects mentally,mental health side effects of abortion,long term,pill on the body +abortion,"('long term effects of abortion', 'long term consequences of abortion')",long term effects of abortion,long term consequences of abortion,9,4,google,2026-03-12 19:57:33.657855,abortion pill side effects mentally,mental health side effects of abortion,long term,consequences +abortion,"('abortion effects on health', 'abortion impact on health')",abortion effects on health,abortion impact on health,1,4,google,2026-03-12 19:57:35.055205,abortion pill side effects mentally,mental health side effects of abortion,on,impact +abortion,"('abortion effects on health', 'abortion effects on mental health')",abortion effects on health,abortion effects on mental health,2,4,google,2026-03-12 19:57:35.055205,abortion pill side effects mentally,mental health side effects of abortion,on,mental +abortion,"('abortion effects on health', ""abortion effects on women's health"")",abortion effects on health,abortion effects on women's health,3,4,google,2026-03-12 19:57:35.055205,abortion pill side effects mentally,mental health side effects of abortion,on,women's +abortion,"('abortion effects on health', 'abortion effects on body')",abortion effects on health,abortion effects on body,4,4,google,2026-03-12 19:57:35.055205,abortion pill side effects mentally,mental health side effects of abortion,on,body +abortion,"('abortion effects on health', ""abortion effects on women's mental health"")",abortion effects on health,abortion effects on women's mental health,5,4,google,2026-03-12 19:57:35.055205,abortion pill side effects mentally,mental health side effects of abortion,on,women's mental +abortion,"('abortion effects on health', 'abortion impact on mental health')",abortion effects on health,abortion impact on mental health,6,4,google,2026-03-12 19:57:35.055205,abortion pill side effects mentally,mental health side effects of abortion,on,impact mental +abortion,"('abortion effects on health', 'abortion affect on mental health')",abortion effects on health,abortion affect on mental health,7,4,google,2026-03-12 19:57:35.055205,abortion pill side effects mentally,mental health side effects of abortion,on,affect mental +abortion,"('abortion effects on health', 'abortion side effects on mental health')",abortion effects on health,abortion side effects on mental health,8,4,google,2026-03-12 19:57:35.055205,abortion pill side effects mentally,mental health side effects of abortion,on,side mental +abortion,"('abortion effects on health', 'does abortion affect health')",abortion effects on health,does abortion affect health,9,4,google,2026-03-12 19:57:35.055205,abortion pill side effects mentally,mental health side effects of abortion,on,does affect +abortion,"('mental side effects of abortion', 'emotional side effects of abortion')",mental side effects of abortion,emotional side effects of abortion,1,4,google,2026-03-12 19:57:35.859498,abortion pill side effects mentally,mental health side effects of abortion,mental health of,emotional +abortion,"('mental side effects of abortion', 'psychological side effects of abortion')",mental side effects of abortion,psychological side effects of abortion,2,4,google,2026-03-12 19:57:35.859498,abortion pill side effects mentally,mental health side effects of abortion,mental health of,psychological +abortion,"('mental side effects of abortion', 'mental side effects of miscarriage')",mental side effects of abortion,mental side effects of miscarriage,3,4,google,2026-03-12 19:57:35.859498,abortion pill side effects mentally,mental health side effects of abortion,mental health of,miscarriage +abortion,"('mental side effects of abortion', 'mental health side effects of abortion')",mental side effects of abortion,mental health side effects of abortion,4,4,google,2026-03-12 19:57:35.859498,abortion pill side effects mentally,mental health side effects of abortion,mental health of,health +abortion,"('mental side effects of abortion', 'negative mental effects of abortion')",mental side effects of abortion,negative mental effects of abortion,5,4,google,2026-03-12 19:57:35.859498,abortion pill side effects mentally,mental health side effects of abortion,mental health of,negative +abortion,"('mental side effects of abortion', 'emotional side effects of miscarriage')",mental side effects of abortion,emotional side effects of miscarriage,6,4,google,2026-03-12 19:57:35.859498,abortion pill side effects mentally,mental health side effects of abortion,mental health of,emotional miscarriage +abortion,"('mental side effects of abortion', 'emotional side effects of medical abortion')",mental side effects of abortion,emotional side effects of medical abortion,7,4,google,2026-03-12 19:57:35.859498,abortion pill side effects mentally,mental health side effects of abortion,mental health of,emotional medical +abortion,"('mental side effects of abortion', 'negative mental health effects of abortion')",mental side effects of abortion,negative mental health effects of abortion,8,4,google,2026-03-12 19:57:35.859498,abortion pill side effects mentally,mental health side effects of abortion,mental health of,negative health +abortion,"('abortion after effects mentally', 'abortion side effects mentally')",abortion after effects mentally,abortion side effects mentally,1,4,google,2026-03-12 19:57:37.275292,abortion pill side effects mentally,abortion side effects mentally,after,side +abortion,"('abortion after effects mentally', 'miscarriage after effects mentally')",abortion after effects mentally,miscarriage after effects mentally,2,4,google,2026-03-12 19:57:37.275292,abortion pill side effects mentally,abortion side effects mentally,after,miscarriage +abortion,"('abortion after effects mentally', 'abortion side effects mental health')",abortion after effects mentally,abortion side effects mental health,3,4,google,2026-03-12 19:57:37.275292,abortion pill side effects mentally,abortion side effects mentally,after,side mental health +abortion,"('abortion after effects mentally', 'abortion side effects emotionally')",abortion after effects mentally,abortion side effects emotionally,4,4,google,2026-03-12 19:57:37.275292,abortion pill side effects mentally,abortion side effects mentally,after,side emotionally +abortion,"('abortion after effects mentally', 'abortion pill side effects mentally')",abortion after effects mentally,abortion pill side effects mentally,5,4,google,2026-03-12 19:57:37.275292,abortion pill side effects mentally,abortion side effects mentally,after,pill side +abortion,"('abortion after effects mentally', 'after abortion psychological effects')",abortion after effects mentally,after abortion psychological effects,6,4,google,2026-03-12 19:57:37.275292,abortion pill side effects mentally,abortion side effects mentally,after,psychological +abortion,"('abortion after effects mentally', 'abortion after effects')",abortion after effects mentally,abortion after effects,7,4,google,2026-03-12 19:57:37.275292,abortion pill side effects mentally,abortion side effects mentally,after,after +abortion,"('abortion after effects mentally', 'abortion after effects on body')",abortion after effects mentally,abortion after effects on body,8,4,google,2026-03-12 19:57:37.275292,abortion pill side effects mentally,abortion side effects mentally,after,on body +abortion,"('abortion after effects mentally', 'after abortion mental health')",abortion after effects mentally,after abortion mental health,9,4,google,2026-03-12 19:57:37.275292,abortion pill side effects mentally,abortion side effects mentally,after,mental health +abortion,"('abortion side effects mental health', 'post abortion side effects on mental health')",abortion side effects mental health,post abortion side effects on mental health,1,4,google,2026-03-12 19:57:38.153787,abortion pill side effects mentally,abortion side effects mentally,mental health,post on +abortion,"('abortion side effects mental health', 'abortion effects on health')",abortion side effects mental health,abortion effects on health,2,4,google,2026-03-12 19:57:38.153787,abortion pill side effects mentally,abortion side effects mentally,mental health,on +abortion,"('abortion side effects mental health', 'long term effects of abortion')",abortion side effects mental health,long term effects of abortion,3,4,google,2026-03-12 19:57:38.153787,abortion pill side effects mentally,abortion side effects mentally,mental health,long term of +abortion,"('abortion side effects mental health', 'abortion side effects future pregnancy')",abortion side effects mental health,abortion side effects future pregnancy,4,4,google,2026-03-12 19:57:38.153787,abortion pill side effects mentally,abortion side effects mentally,mental health,future pregnancy +abortion,"('abortion side effects mental health', 'abortion side effects mentally')",abortion side effects mental health,abortion side effects mentally,5,4,google,2026-03-12 19:57:38.153787,abortion pill side effects mentally,abortion side effects mentally,mental health,mentally +abortion,"('abortion side effects emotionally', 'abortion side effects mentally')",abortion side effects emotionally,abortion side effects mentally,1,4,google,2026-03-12 19:57:39.635115,abortion pill side effects mentally,abortion side effects mentally,emotionally,mentally +abortion,"('abortion side effects emotionally', 'abortion side effects mental health')",abortion side effects emotionally,abortion side effects mental health,2,4,google,2026-03-12 19:57:39.635115,abortion pill side effects mentally,abortion side effects mentally,emotionally,mental health +abortion,"('abortion side effects emotionally', 'abortion after effects mentally')",abortion side effects emotionally,abortion after effects mentally,3,4,google,2026-03-12 19:57:39.635115,abortion pill side effects mentally,abortion side effects mentally,emotionally,after mentally +abortion,"('abortion side effects emotionally', 'abortion pill side effects emotional')",abortion side effects emotionally,abortion pill side effects emotional,4,4,google,2026-03-12 19:57:39.635115,abortion pill side effects mentally,abortion side effects mentally,emotionally,pill emotional +abortion,"('abortion side effects emotionally', 'abortion pill side effects mentally')",abortion side effects emotionally,abortion pill side effects mentally,5,4,google,2026-03-12 19:57:39.635115,abortion pill side effects mentally,abortion side effects mentally,emotionally,pill mentally +abortion,"('abortion side effects emotionally', 'emotional changes after abortion')",abortion side effects emotionally,emotional changes after abortion,6,4,google,2026-03-12 19:57:39.635115,abortion pill side effects mentally,abortion side effects mentally,emotionally,emotional changes after +abortion,"('after abortion psychological effects', 'how did you feel after abortion reddit')",after abortion psychological effects,how did you feel after abortion reddit,1,4,google,2026-03-12 19:57:41.028998,abortion pill side effects mentally,abortion side effects mentally,after psychological,how did you feel reddit +abortion,"('after abortion psychological effects', 'effects after abortion')",after abortion psychological effects,effects after abortion,2,4,google,2026-03-12 19:57:41.028998,abortion pill side effects mentally,abortion side effects mentally,after psychological,after psychological +abortion,"('after abortion psychological effects', 'psychology after abortion')",after abortion psychological effects,psychology after abortion,3,4,google,2026-03-12 19:57:41.028998,abortion pill side effects mentally,abortion side effects mentally,after psychological,psychology +abortion,"('after abortion psychological effects', 'psychological responses after abortion')",after abortion psychological effects,psychological responses after abortion,4,4,google,2026-03-12 19:57:41.028998,abortion pill side effects mentally,abortion side effects mentally,after psychological,responses +abortion,"('after abortion psychological effects', 'after abortion mental health')",after abortion psychological effects,after abortion mental health,5,4,google,2026-03-12 19:57:41.028998,abortion pill side effects mentally,abortion side effects mentally,after psychological,mental health +abortion,"('morning after pill side effects weeks later', 'morning after pill side effects 2 weeks later')",morning after pill side effects weeks later,morning after pill side effects 2 weeks later,1,4,google,2026-03-12 19:57:42.308121,abortion pill side effects how many days,morning after pill side effects days later,weeks,2 +abortion,"('morning after pill side effects weeks later', 'morning after pill side effects 3 weeks later')",morning after pill side effects weeks later,morning after pill side effects 3 weeks later,2,4,google,2026-03-12 19:57:42.308121,abortion pill side effects how many days,morning after pill side effects days later,weeks,3 +abortion,"('morning after pill side effects weeks later', 'morning after pill side effects 1 week later')",morning after pill side effects weeks later,morning after pill side effects 1 week later,3,4,google,2026-03-12 19:57:42.308121,abortion pill side effects how many days,morning after pill side effects days later,weeks,1 week +abortion,"('morning after pill side effects weeks later', 'morning after pill side effects bleeding week later')",morning after pill side effects weeks later,morning after pill side effects bleeding week later,4,4,google,2026-03-12 19:57:42.308121,abortion pill side effects how many days,morning after pill side effects days later,weeks,bleeding week +abortion,"('morning after pill side effects weeks later', 'how many days do morning after pill side effects last')",morning after pill side effects weeks later,how many days do morning after pill side effects last,5,4,google,2026-03-12 19:57:42.308121,abortion pill side effects how many days,morning after pill side effects days later,weeks,how many days do last +abortion,"('morning after pill side effects weeks later', 'morning after pill symptoms a week later')",morning after pill side effects weeks later,morning after pill symptoms a week later,6,4,google,2026-03-12 19:57:42.308121,abortion pill side effects how many days,morning after pill side effects days later,weeks,symptoms a week +abortion,"('morning after pill side effects weeks later', 'morning after pill side effects bleeding')",morning after pill side effects weeks later,morning after pill side effects bleeding,7,4,google,2026-03-12 19:57:42.308121,abortion pill side effects how many days,morning after pill side effects days later,weeks,bleeding +abortion,"('morning after pill side effects weeks later', 'morning after pill side effects menstrual cycle')",morning after pill side effects weeks later,morning after pill side effects menstrual cycle,8,4,google,2026-03-12 19:57:42.308121,abortion pill side effects how many days,morning after pill side effects days later,weeks,menstrual cycle +abortion,"('morning after pill side effects weeks later', 'morning after pill plan b side effects')",morning after pill side effects weeks later,morning after pill plan b side effects,9,4,google,2026-03-12 19:57:42.308121,abortion pill side effects how many days,morning after pill side effects days later,weeks,plan b +abortion,"('morning after pill side effects 3 days later', 'morning after pill side effects 3 weeks later')",morning after pill side effects 3 days later,morning after pill side effects 3 weeks later,1,4,google,2026-03-12 19:57:43.328710,abortion pill side effects how many days,morning after pill side effects days later,3,weeks +abortion,"('morning after pill side effects 3 days later', 'can you get the morning after pill 3 days later')",morning after pill side effects 3 days later,can you get the morning after pill 3 days later,2,4,google,2026-03-12 19:57:43.328710,abortion pill side effects how many days,morning after pill side effects days later,3,can you get the +abortion,"('morning after pill side effects 3 days later', 'how many days do morning after pill side effects last')",morning after pill side effects 3 days later,how many days do morning after pill side effects last,3,4,google,2026-03-12 19:57:43.328710,abortion pill side effects how many days,morning after pill side effects days later,3,how many do last +abortion,"('morning after pill side effects 3 days later', 'morning after pill side effects a week later')",morning after pill side effects 3 days later,morning after pill side effects a week later,4,4,google,2026-03-12 19:57:43.328710,abortion pill side effects how many days,morning after pill side effects days later,3,a week +abortion,"('morning after pill side effects 3 days later', 'morning after pill side effects menstrual cycle')",morning after pill side effects 3 days later,morning after pill side effects menstrual cycle,5,4,google,2026-03-12 19:57:43.328710,abortion pill side effects how many days,morning after pill side effects days later,3,menstrual cycle +abortion,"('morning after pill side effects 3 days later', 'morning after pill plan b side effects')",morning after pill side effects 3 days later,morning after pill plan b side effects,6,4,google,2026-03-12 19:57:43.328710,abortion pill side effects how many days,morning after pill side effects days later,3,plan b +abortion,"('morning after pill side effects 3 days later', 'morning-after pill side effects')",morning after pill side effects 3 days later,morning-after pill side effects,7,4,google,2026-03-12 19:57:43.328710,abortion pill side effects how many days,morning after pill side effects days later,3,morning-after +abortion,"('morning after pill side effects 3 days later', 'plan b side effects 3 days later')",morning after pill side effects 3 days later,plan b side effects 3 days later,8,4,google,2026-03-12 19:57:43.328710,abortion pill side effects how many days,morning after pill side effects days later,3,plan b +abortion,"('morning after pill side effects 2 days later', 'morning after pill side effects 2 weeks later')",morning after pill side effects 2 days later,morning after pill side effects 2 weeks later,1,4,google,2026-03-12 19:57:44.748251,abortion pill side effects how many days,morning after pill side effects days later,2,weeks +abortion,"('morning after pill side effects 2 days later', 'plan b pill side effects 2 weeks later')",morning after pill side effects 2 days later,plan b pill side effects 2 weeks later,2,4,google,2026-03-12 19:57:44.748251,abortion pill side effects how many days,morning after pill side effects days later,2,plan b weeks +abortion,"('morning after pill side effects 2 days later', 'morning after pill two days later')",morning after pill side effects 2 days later,morning after pill two days later,3,4,google,2026-03-12 19:57:44.748251,abortion pill side effects how many days,morning after pill side effects days later,2,two +abortion,"('morning after pill side effects 2 days later', 'can you use the morning after pill 2 days later')",morning after pill side effects 2 days later,can you use the morning after pill 2 days later,4,4,google,2026-03-12 19:57:44.748251,abortion pill side effects how many days,morning after pill side effects days later,2,can you use the +abortion,"('morning after pill side effects 2 days later', 'morning after pill side effects a week later')",morning after pill side effects 2 days later,morning after pill side effects a week later,5,4,google,2026-03-12 19:57:44.748251,abortion pill side effects how many days,morning after pill side effects days later,2,a week +abortion,"('morning after pill side effects 2 days later', 'morning after pill side effects menstrual cycle')",morning after pill side effects 2 days later,morning after pill side effects menstrual cycle,6,4,google,2026-03-12 19:57:44.748251,abortion pill side effects how many days,morning after pill side effects days later,2,menstrual cycle +abortion,"('morning after pill side effects 2 days later', 'morning after pill dangerous side effects')",morning after pill side effects 2 days later,morning after pill dangerous side effects,7,4,google,2026-03-12 19:57:44.748251,abortion pill side effects how many days,morning after pill side effects days later,2,dangerous +abortion,"('morning after pill side effects 2 days later', 'day after pill side effects long term')",morning after pill side effects 2 days later,day after pill side effects long term,8,4,google,2026-03-12 19:57:44.748251,abortion pill side effects how many days,morning after pill side effects days later,2,day long term +abortion,"('morning after pill side effects 2 days later', 'morning after pill side effects bleeding')",morning after pill side effects 2 days later,morning after pill side effects bleeding,9,4,google,2026-03-12 19:57:44.748251,abortion pill side effects how many days,morning after pill side effects days later,2,bleeding +abortion,"('morning after pill side effects 4 days later', 'how many days do morning after pill side effects last')",morning after pill side effects 4 days later,how many days do morning after pill side effects last,1,4,google,2026-03-12 19:57:46.080211,abortion pill side effects how many days,morning after pill side effects days later,4,how many do last +abortion,"('morning after pill side effects 4 days later', 'morning after pill side effects a week later')",morning after pill side effects 4 days later,morning after pill side effects a week later,2,4,google,2026-03-12 19:57:46.080211,abortion pill side effects how many days,morning after pill side effects days later,4,a week +abortion,"('morning after pill side effects 4 days later', 'morning after pill side effects menstrual cycle')",morning after pill side effects 4 days later,morning after pill side effects menstrual cycle,3,4,google,2026-03-12 19:57:46.080211,abortion pill side effects how many days,morning after pill side effects days later,4,menstrual cycle +abortion,"('morning after pill side effects 4 days later', 'day after pill side effects long term')",morning after pill side effects 4 days later,day after pill side effects long term,4,4,google,2026-03-12 19:57:46.080211,abortion pill side effects how many days,morning after pill side effects days later,4,day long term +abortion,"('morning after pill side effects 4 days later', 'morning after pill side effects bleeding')",morning after pill side effects 4 days later,morning after pill side effects bleeding,5,4,google,2026-03-12 19:57:46.080211,abortion pill side effects how many days,morning after pill side effects days later,4,bleeding +abortion,"('morning after pill side effects 4 days later', 'plan b side effects 4 days later')",morning after pill side effects 4 days later,plan b side effects 4 days later,6,4,google,2026-03-12 19:57:46.080211,abortion pill side effects how many days,morning after pill side effects days later,4,plan b +abortion,"('morning after pill side effects 2 weeks later', 'morning after pill side effects 1 week later')",morning after pill side effects 2 weeks later,morning after pill side effects 1 week later,1,4,google,2026-03-12 19:57:47.084151,abortion pill side effects how many days,morning after pill side effects days later,2 weeks,1 week +abortion,"('morning after pill side effects 2 weeks later', 'morning after pill side effects 4 days later')",morning after pill side effects 2 weeks later,morning after pill side effects 4 days later,2,4,google,2026-03-12 19:57:47.084151,abortion pill side effects how many days,morning after pill side effects days later,2 weeks,4 days +abortion,"('morning after pill side effects 2 weeks later', 'plan b pill side effects 2 weeks later')",morning after pill side effects 2 weeks later,plan b pill side effects 2 weeks later,3,4,google,2026-03-12 19:57:47.084151,abortion pill side effects how many days,morning after pill side effects days later,2 weeks,plan b +abortion,"('morning after pill side effects 2 weeks later', 'how many days do morning after pill side effects last')",morning after pill side effects 2 weeks later,how many days do morning after pill side effects last,4,4,google,2026-03-12 19:57:47.084151,abortion pill side effects how many days,morning after pill side effects days later,2 weeks,how many days do last +abortion,"('morning after pill side effects 2 weeks later', 'morning after pill side effects a week later')",morning after pill side effects 2 weeks later,morning after pill side effects a week later,5,4,google,2026-03-12 19:57:47.084151,abortion pill side effects how many days,morning after pill side effects days later,2 weeks,a week +abortion,"('morning after pill side effects 2 weeks later', 'morning after pill symptoms a week later')",morning after pill side effects 2 weeks later,morning after pill symptoms a week later,6,4,google,2026-03-12 19:57:47.084151,abortion pill side effects how many days,morning after pill side effects days later,2 weeks,symptoms a week +abortion,"('morning after pill side effects 2 weeks later', 'morning after pill side effects bleeding')",morning after pill side effects 2 weeks later,morning after pill side effects bleeding,7,4,google,2026-03-12 19:57:47.084151,abortion pill side effects how many days,morning after pill side effects days later,2 weeks,bleeding +abortion,"('morning after pill side effects 2 weeks later', 'morning after pill side effects menstrual cycle')",morning after pill side effects 2 weeks later,morning after pill side effects menstrual cycle,8,4,google,2026-03-12 19:57:47.084151,abortion pill side effects how many days,morning after pill side effects days later,2 weeks,menstrual cycle +abortion,"('morning after pill side effects 3 weeks later', 'morning after pill side effects 1 week later')",morning after pill side effects 3 weeks later,morning after pill side effects 1 week later,1,4,google,2026-03-12 19:57:48.017721,abortion pill side effects how many days,morning after pill side effects days later,3 weeks,1 week +abortion,"('morning after pill side effects 3 weeks later', 'morning after pill side effects 2 weeks later')",morning after pill side effects 3 weeks later,morning after pill side effects 2 weeks later,2,4,google,2026-03-12 19:57:48.017721,abortion pill side effects how many days,morning after pill side effects days later,3 weeks,2 +abortion,"('morning after pill side effects 3 weeks later', 'morning after pill side effects a week later')",morning after pill side effects 3 weeks later,morning after pill side effects a week later,3,4,google,2026-03-12 19:57:48.017721,abortion pill side effects how many days,morning after pill side effects days later,3 weeks,a week +abortion,"('morning after pill side effects 3 weeks later', 'morning after pill symptoms a week later')",morning after pill side effects 3 weeks later,morning after pill symptoms a week later,4,4,google,2026-03-12 19:57:48.017721,abortion pill side effects how many days,morning after pill side effects days later,3 weeks,symptoms a week +abortion,"('morning after pill side effects 3 weeks later', 'morning after pill plan b side effects')",morning after pill side effects 3 weeks later,morning after pill plan b side effects,5,4,google,2026-03-12 19:57:48.017721,abortion pill side effects how many days,morning after pill side effects days later,3 weeks,plan b +abortion,"('morning after pill side effects 3 weeks later', 'morning after pill side effects menstrual cycle')",morning after pill side effects 3 weeks later,morning after pill side effects menstrual cycle,6,4,google,2026-03-12 19:57:48.017721,abortion pill side effects how many days,morning after pill side effects days later,3 weeks,menstrual cycle +abortion,"('side effects of morning after pill 5 days later', 'symptoms of morning after pill 5 days later')",side effects of morning after pill 5 days later,symptoms of morning after pill 5 days later,1,4,google,2026-03-12 19:57:48.896115,abortion pill side effects how many days,morning after pill side effects days later,of 5,symptoms +abortion,"('side effects of morning after pill 5 days later', 'can the morning after pill make you bleed 5 days later')",side effects of morning after pill 5 days later,can the morning after pill make you bleed 5 days later,2,4,google,2026-03-12 19:57:48.896115,abortion pill side effects how many days,morning after pill side effects days later,of 5,can the make you bleed +abortion,"('side effects of morning after pill 5 days later', 'side effects of morning after pill long term')",side effects of morning after pill 5 days later,side effects of morning after pill long term,3,4,google,2026-03-12 19:57:48.896115,abortion pill side effects how many days,morning after pill side effects days later,of 5,long term +abortion,"('side effects of morning after pill 5 days later', 'side effects of morning after pill before period')",side effects of morning after pill 5 days later,side effects of morning after pill before period,4,4,google,2026-03-12 19:57:48.896115,abortion pill side effects how many days,morning after pill side effects days later,of 5,before period +abortion,"('side effects of morning after pill 5 days later', 'side effects of morning-after pill if pregnant')",side effects of morning after pill 5 days later,side effects of morning-after pill if pregnant,5,4,google,2026-03-12 19:57:48.896115,abortion pill side effects how many days,morning after pill side effects days later,of 5,morning-after if pregnant +abortion,"('side effects of morning after pill 5 days later', 'side effects 5 days after plan b')",side effects of morning after pill 5 days later,side effects 5 days after plan b,6,4,google,2026-03-12 19:57:48.896115,abortion pill side effects how many days,morning after pill side effects days later,of 5,plan b +abortion,"('morning after pill side effects day 2', 'morning after pill side effects 2 days later')",morning after pill side effects day 2,morning after pill side effects 2 days later,1,4,google,2026-03-12 19:57:50.008904,abortion pill side effects how many days,morning after pill side effects days,day 2,days later +abortion,"('morning after pill side effects day 2', 'how many days do morning after pill side effects last')",morning after pill side effects day 2,how many days do morning after pill side effects last,2,4,google,2026-03-12 19:57:50.008904,abortion pill side effects how many days,morning after pill side effects days,day 2,how many days do last +abortion,"('morning after pill side effects day 2', 'how long does morning after pills side effects last')",morning after pill side effects day 2,how long does morning after pills side effects last,3,4,google,2026-03-12 19:57:50.008904,abortion pill side effects how many days,morning after pill side effects days,day 2,how long does pills last +abortion,"('morning after pill side effects day 2', 'morning after pill side effects a week later')",morning after pill side effects day 2,morning after pill side effects a week later,4,4,google,2026-03-12 19:57:50.008904,abortion pill side effects how many days,morning after pill side effects days,day 2,a week later +abortion,"('morning after pill side effects day 2', 'morning after pill dangerous side effects')",morning after pill side effects day 2,morning after pill dangerous side effects,5,4,google,2026-03-12 19:57:50.008904,abortion pill side effects how many days,morning after pill side effects days,day 2,dangerous +abortion,"('morning after pill side effects day 2', 'morning after pill side effects menstrual cycle')",morning after pill side effects day 2,morning after pill side effects menstrual cycle,6,4,google,2026-03-12 19:57:50.008904,abortion pill side effects how many days,morning after pill side effects days,day 2,menstrual cycle +abortion,"('morning after pill side effects day 2', 'day after pill side effects long term')",morning after pill side effects day 2,day after pill side effects long term,7,4,google,2026-03-12 19:57:50.008904,abortion pill side effects how many days,morning after pill side effects days,day 2,long term +abortion,"('morning after pill side effects day 2', 'morning after pill side effects bleeding')",morning after pill side effects day 2,morning after pill side effects bleeding,8,4,google,2026-03-12 19:57:50.008904,abortion pill side effects how many days,morning after pill side effects days,day 2,bleeding +abortion,"('morning after pill side effects next day', 'morning after pill side effects days later')",morning after pill side effects next day,morning after pill side effects days later,1,4,google,2026-03-12 19:57:51.315372,abortion pill side effects how many days,morning after pill side effects days,next day,days later +abortion,"('morning after pill side effects next day', 'morning after pill side effects days')",morning after pill side effects next day,morning after pill side effects days,2,4,google,2026-03-12 19:57:51.315372,abortion pill side effects how many days,morning after pill side effects days,next day,days +abortion,"('morning after pill side effects next day', 'morning after pill side effects day 2')",morning after pill side effects next day,morning after pill side effects day 2,3,4,google,2026-03-12 19:57:51.315372,abortion pill side effects how many days,morning after pill side effects days,next day,2 +abortion,"('morning after pill side effects next day', 'morning after pill side effects 3 days later')",morning after pill side effects next day,morning after pill side effects 3 days later,4,4,google,2026-03-12 19:57:51.315372,abortion pill side effects how many days,morning after pill side effects days,next day,3 days later +abortion,"('morning after pill side effects next day', 'morning after pill side effects 2 days later')",morning after pill side effects next day,morning after pill side effects 2 days later,5,4,google,2026-03-12 19:57:51.315372,abortion pill side effects how many days,morning after pill side effects days,next day,2 days later +abortion,"('morning after pill side effects next day', 'morning after pill side effects 4 days later')",morning after pill side effects next day,morning after pill side effects 4 days later,6,4,google,2026-03-12 19:57:51.315372,abortion pill side effects how many days,morning after pill side effects days,next day,4 days later +abortion,"('morning after pill side effects next day', 'morning after pill side effects after 5 days')",morning after pill side effects next day,morning after pill side effects after 5 days,7,4,google,2026-03-12 19:57:51.315372,abortion pill side effects how many days,morning after pill side effects days,next day,5 days +abortion,"('morning after pill side effects next day', 'how long does morning after pills side effects last')",morning after pill side effects next day,how long does morning after pills side effects last,8,4,google,2026-03-12 19:57:51.315372,abortion pill side effects how many days,morning after pill side effects days,next day,how long does pills last +abortion,"('morning after pill side effects next day', 'morning after pill side effects a week later')",morning after pill side effects next day,morning after pill side effects a week later,9,4,google,2026-03-12 19:57:51.315372,abortion pill side effects how many days,morning after pill side effects days,next day,a week later +abortion,"('how long do symptoms of abortion pills last', 'how long do symptoms of abortion pill last')",how long do symptoms of abortion pills last,how long do symptoms of abortion pill last,1,4,google,2026-03-12 19:57:52.368810,abortion pill side effects how many days,how long do side effects of abortion pills last,symptoms,pill +abortion,"('how long do symptoms of abortion pills last', 'how long do side effects of abortion pills last')",how long do symptoms of abortion pills last,how long do side effects of abortion pills last,2,4,google,2026-03-12 19:57:52.368810,abortion pill side effects how many days,how long do side effects of abortion pills last,symptoms,side effects +abortion,"('how long do symptoms of abortion pills last', 'how long do symptoms last after abortion pill')",how long do symptoms of abortion pills last,how long do symptoms last after abortion pill,3,4,google,2026-03-12 19:57:52.368810,abortion pill side effects how many days,how long do side effects of abortion pills last,symptoms,after pill +abortion,"('how long do symptoms of abortion pills last', 'how long does effects of abortion pill last')",how long do symptoms of abortion pills last,how long does effects of abortion pill last,4,4,google,2026-03-12 19:57:52.368810,abortion pill side effects how many days,how long do side effects of abortion pills last,symptoms,does effects pill +abortion,"('how long do symptoms of abortion pills last', 'how long does the pain of abortion last')",how long do symptoms of abortion pills last,how long does the pain of abortion last,5,4,google,2026-03-12 19:57:52.368810,abortion pill side effects how many days,how long do side effects of abortion pills last,symptoms,does the pain +abortion,"('how long do symptoms of abortion pills last', 'how long does the bleeding after abortion last')",how long do symptoms of abortion pills last,how long does the bleeding after abortion last,6,4,google,2026-03-12 19:57:52.368810,abortion pill side effects how many days,how long do side effects of abortion pills last,symptoms,does the bleeding after +abortion,"('how long do symptoms of abortion pills last', 'how long do pregnancy symptoms last after abortion pill')",how long do symptoms of abortion pills last,how long do pregnancy symptoms last after abortion pill,7,4,google,2026-03-12 19:57:52.368810,abortion pill side effects how many days,how long do side effects of abortion pills last,symptoms,pregnancy after pill +abortion,"('how long do symptoms of abortion pills last', 'how long do symptoms last after abortion')",how long do symptoms of abortion pills last,how long do symptoms last after abortion,8,4,google,2026-03-12 19:57:52.368810,abortion pill side effects how many days,how long do side effects of abortion pills last,symptoms,after +abortion,"('still bleeding 5 weeks after abortion pill', 'bleeding 5 weeks after abortion pill')",still bleeding 5 weeks after abortion pill,bleeding 5 weeks after abortion pill,1,4,google,2026-03-12 19:57:53.535283,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,still,still +abortion,"('still bleeding 5 weeks after abortion pill', 'heavy bleeding 5 weeks after abortion pill')",still bleeding 5 weeks after abortion pill,heavy bleeding 5 weeks after abortion pill,2,4,google,2026-03-12 19:57:53.535283,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,still,heavy +abortion,"('still bleeding 5 weeks after abortion pill', 'bleeding 5 weeks after abortion')",still bleeding 5 weeks after abortion pill,bleeding 5 weeks after abortion,3,4,google,2026-03-12 19:57:53.535283,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,still,still +abortion,"('still bleeding 5 weeks after abortion pill', 'is it normal to bleed 5 days after abortion')",still bleeding 5 weeks after abortion pill,is it normal to bleed 5 days after abortion,4,4,google,2026-03-12 19:57:53.535283,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,still,is it normal to bleed days +abortion,"('still bleeding 5 weeks after abortion pill', '4 weeks after abortion still bleeding')",still bleeding 5 weeks after abortion pill,4 weeks after abortion still bleeding,5,4,google,2026-03-12 19:57:53.535283,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,still,4 +abortion,"('still bleeding 5 weeks after abortion pill', 'still bleeding 5 weeks after medical abortion')",still bleeding 5 weeks after abortion pill,still bleeding 5 weeks after medical abortion,6,4,google,2026-03-12 19:57:53.535283,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,still,medical +abortion,"('still bleeding 5 weeks after abortion pill', 'is it normal to stop bleeding 5 days after an abortion')",still bleeding 5 weeks after abortion pill,is it normal to stop bleeding 5 days after an abortion,7,4,google,2026-03-12 19:57:53.535283,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,still,is it normal to stop days an +abortion,"('still bleeding 5 weeks after abortion pill', 'still bleeding 5 weeks after abortion')",still bleeding 5 weeks after abortion pill,still bleeding 5 weeks after abortion,8,4,google,2026-03-12 19:57:53.535283,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,still,still +abortion,"('still bleeding 5 weeks after abortion pill', 'why am i still bleeding 5 weeks after abortion')",still bleeding 5 weeks after abortion pill,why am i still bleeding 5 weeks after abortion,9,4,google,2026-03-12 19:57:53.535283,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,still,why am i +abortion,"('heavy bleeding 5 weeks after abortion pill', 'bleeding 5 weeks after abortion')",heavy bleeding 5 weeks after abortion pill,bleeding 5 weeks after abortion,1,4,google,2026-03-12 19:57:54.644691,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,heavy,heavy +abortion,"('heavy bleeding 5 weeks after abortion pill', 'bleeding 5 weeks after abortion pill')",heavy bleeding 5 weeks after abortion pill,bleeding 5 weeks after abortion pill,2,4,google,2026-03-12 19:57:54.644691,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,heavy,heavy +abortion,"('heavy bleeding 5 weeks after abortion pill', 'is it normal to bleed heavy 4 weeks after abortion')",heavy bleeding 5 weeks after abortion pill,is it normal to bleed heavy 4 weeks after abortion,3,4,google,2026-03-12 19:57:54.644691,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,heavy,is it normal to bleed 4 +abortion,"('heavy bleeding 5 weeks after abortion pill', 'heavy bleeding weeks after abortion')",heavy bleeding 5 weeks after abortion pill,heavy bleeding weeks after abortion,4,4,google,2026-03-12 19:57:54.644691,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,heavy,heavy +abortion,"('heavy bleeding 5 weeks after abortion pill', 'heavy bleeding 5 days after abortion pill')",heavy bleeding 5 weeks after abortion pill,heavy bleeding 5 days after abortion pill,5,4,google,2026-03-12 19:57:54.644691,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,heavy,days +abortion,"('heavy bleeding 5 weeks after abortion pill', 'heavy bleeding 5 days after misoprostol')",heavy bleeding 5 weeks after abortion pill,heavy bleeding 5 days after misoprostol,6,4,google,2026-03-12 19:57:54.644691,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,heavy,days misoprostol +abortion,"('heavy bleeding 5 weeks after abortion pill', 'heavy bleeding weeks after abortion pill')",heavy bleeding 5 weeks after abortion pill,heavy bleeding weeks after abortion pill,7,4,google,2026-03-12 19:57:54.644691,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,heavy,heavy +abortion,"('heavy bleeding 5 weeks after abortion pill', 'heavy bleeding 4 weeks after abortion pill')",heavy bleeding 5 weeks after abortion pill,heavy bleeding 4 weeks after abortion pill,8,4,google,2026-03-12 19:57:54.644691,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,heavy,4 +abortion,"('is it normal to bleed 5 weeks after abortion pill', 'is it normal to bleed 5 days after abortion')",is it normal to bleed 5 weeks after abortion pill,is it normal to bleed 5 days after abortion,1,4,google,2026-03-12 19:57:55.745818,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,is it normal to bleed,days +abortion,"('is it normal to bleed 5 weeks after abortion pill', 'is it normal to bleed 4 weeks after abortion')",is it normal to bleed 5 weeks after abortion pill,is it normal to bleed 4 weeks after abortion,2,4,google,2026-03-12 19:57:55.745818,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,is it normal to bleed,4 +abortion,"('is it normal to bleed 5 weeks after abortion pill', 'bleeding 5 weeks after abortion')",is it normal to bleed 5 weeks after abortion pill,bleeding 5 weeks after abortion,3,4,google,2026-03-12 19:57:55.745818,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,is it normal to bleed,bleeding +abortion,"('is it normal to bleed 5 weeks after abortion pill', 'is it normal to bleed 5 weeks after abortion')",is it normal to bleed 5 weeks after abortion pill,is it normal to bleed 5 weeks after abortion,4,4,google,2026-03-12 19:57:55.745818,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,is it normal to bleed,is it normal to bleed +abortion,"('is it normal to bleed 5 weeks after abortion pill', 'is it normal to bleed for 5 weeks after miscarriage')",is it normal to bleed 5 weeks after abortion pill,is it normal to bleed for 5 weeks after miscarriage,5,4,google,2026-03-12 19:57:55.745818,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,is it normal to bleed,for miscarriage +abortion,"('is it normal to bleed 5 weeks after abortion pill', 'is it normal to bleed a week after abortion')",is it normal to bleed 5 weeks after abortion pill,is it normal to bleed a week after abortion,6,4,google,2026-03-12 19:57:55.745818,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,is it normal to bleed,a week +abortion,"('is it normal to bleed 5 weeks after abortion pill', 'is it normal to bleed 5 weeks into pregnancy')",is it normal to bleed 5 weeks after abortion pill,is it normal to bleed 5 weeks into pregnancy,7,4,google,2026-03-12 19:57:55.745818,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,is it normal to bleed,into pregnancy +abortion,"('is it normal to bleed 5 weeks after abortion pill', 'is it normal to bleed while pregnant at 5 weeks')",is it normal to bleed 5 weeks after abortion pill,is it normal to bleed while pregnant at 5 weeks,8,4,google,2026-03-12 19:57:55.745818,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,is it normal to bleed,while pregnant at +abortion,"('bleeding 5 weeks after abortion', 'bleeding 5 weeks after abortion reddit')",bleeding 5 weeks after abortion,bleeding 5 weeks after abortion reddit,1,4,google,2026-03-12 19:57:56.985514,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,bleeding after,reddit +abortion,"('bleeding 5 weeks after abortion', 'bleeding 5 weeks after abortion pill')",bleeding 5 weeks after abortion,bleeding 5 weeks after abortion pill,2,4,google,2026-03-12 19:57:56.985514,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,bleeding after,pill +abortion,"('bleeding 5 weeks after abortion', 'spotting 5 weeks after abortion')",bleeding 5 weeks after abortion,spotting 5 weeks after abortion,3,4,google,2026-03-12 19:57:56.985514,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,bleeding after,spotting +abortion,"('bleeding 5 weeks after abortion', 'still bleeding 5 weeks after abortion')",bleeding 5 weeks after abortion,still bleeding 5 weeks after abortion,4,4,google,2026-03-12 19:57:56.985514,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,bleeding after,still +abortion,"('bleeding 5 weeks after abortion', 'bleeding 5 weeks after medical abortion')",bleeding 5 weeks after abortion,bleeding 5 weeks after medical abortion,5,4,google,2026-03-12 19:57:56.985514,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,bleeding after,medical +abortion,"('bleeding 5 weeks after abortion', 'heavy bleeding 5 weeks after abortion')",bleeding 5 weeks after abortion,heavy bleeding 5 weeks after abortion,6,4,google,2026-03-12 19:57:56.985514,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,bleeding after,heavy +abortion,"('bleeding 5 weeks after abortion', 'still bleeding 5 weeks after abortion pill')",bleeding 5 weeks after abortion,still bleeding 5 weeks after abortion pill,7,4,google,2026-03-12 19:57:56.985514,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,bleeding after,still pill +abortion,"('bleeding 5 weeks after abortion', 'light bleeding 5 weeks after abortion')",bleeding 5 weeks after abortion,light bleeding 5 weeks after abortion,8,4,google,2026-03-12 19:57:56.985514,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,bleeding after,light +abortion,"('bleeding 5 weeks after abortion', 'still bleeding 5 weeks after abortion mumsnet')",bleeding 5 weeks after abortion,still bleeding 5 weeks after abortion mumsnet,9,4,google,2026-03-12 19:57:56.985514,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,bleeding after,still mumsnet +abortion,"('spotting 5 weeks after abortion', 'bleeding 5 weeks after abortion')",spotting 5 weeks after abortion,bleeding 5 weeks after abortion,1,4,google,2026-03-12 19:57:58.294726,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,spotting,bleeding +abortion,"('spotting 5 weeks after abortion', 'bleeding 5 weeks after abortion pill')",spotting 5 weeks after abortion,bleeding 5 weeks after abortion pill,2,4,google,2026-03-12 19:57:58.294726,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,spotting,bleeding pill +abortion,"('spotting 5 weeks after abortion', 'bleeding 5 weeks after abortion reddit')",spotting 5 weeks after abortion,bleeding 5 weeks after abortion reddit,3,4,google,2026-03-12 19:57:58.294726,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,spotting,bleeding reddit +abortion,"('spotting 5 weeks after abortion', 'spotting 5 weeks after medical abortion')",spotting 5 weeks after abortion,spotting 5 weeks after medical abortion,4,4,google,2026-03-12 19:57:58.294726,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,spotting,medical +abortion,"('spotting 5 weeks after abortion', 'still spotting 5 weeks after abortion')",spotting 5 weeks after abortion,still spotting 5 weeks after abortion,5,4,google,2026-03-12 19:57:58.294726,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,spotting,still +abortion,"('spotting 5 weeks after abortion', 'brown spotting 5 weeks after abortion')",spotting 5 weeks after abortion,brown spotting 5 weeks after abortion,6,4,google,2026-03-12 19:57:58.294726,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,spotting,brown +abortion,"('spotting 5 weeks after abortion', 'light spotting 5 weeks after abortion')",spotting 5 weeks after abortion,light spotting 5 weeks after abortion,7,4,google,2026-03-12 19:57:58.294726,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,spotting,light +abortion,"('spotting 5 weeks after abortion', 'spotting 5 weeks after surgical abortion')",spotting 5 weeks after abortion,spotting 5 weeks after surgical abortion,8,4,google,2026-03-12 19:57:58.294726,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,spotting,surgical +abortion,"('spotting 5 weeks after abortion', 'still bleeding 5 weeks after abortion')",spotting 5 weeks after abortion,still bleeding 5 weeks after abortion,9,4,google,2026-03-12 19:57:58.294726,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,spotting,still bleeding +abortion,"('bleeding 5 weeks after misoprostol', 'bleeding 5 weeks after abortion')",bleeding 5 weeks after misoprostol,bleeding 5 weeks after abortion,1,4,google,2026-03-12 19:57:59.254290,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,misoprostol,abortion +abortion,"('bleeding 5 weeks after misoprostol', 'bleeding 5 weeks after abortion pill')",bleeding 5 weeks after misoprostol,bleeding 5 weeks after abortion pill,2,4,google,2026-03-12 19:57:59.254290,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,misoprostol,abortion pill +abortion,"('bleeding 5 weeks after misoprostol', 'bleeding 5 weeks after abortion reddit')",bleeding 5 weeks after misoprostol,bleeding 5 weeks after abortion reddit,3,4,google,2026-03-12 19:57:59.254290,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,misoprostol,abortion reddit +abortion,"('bleeding 5 weeks after misoprostol', 'spotting 5 weeks after abortion')",bleeding 5 weeks after misoprostol,spotting 5 weeks after abortion,4,4,google,2026-03-12 19:57:59.254290,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,misoprostol,spotting abortion +abortion,"('bleeding 5 weeks after misoprostol', 'still bleeding 5 weeks after abortion')",bleeding 5 weeks after misoprostol,still bleeding 5 weeks after abortion,5,4,google,2026-03-12 19:57:59.254290,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,misoprostol,still abortion +abortion,"('bleeding 5 weeks after misoprostol', 'bleeding 5 weeks after medical abortion')",bleeding 5 weeks after misoprostol,bleeding 5 weeks after medical abortion,6,4,google,2026-03-12 19:57:59.254290,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,misoprostol,medical abortion +abortion,"('bleeding 5 weeks after misoprostol', 'heavy bleeding 5 weeks after abortion')",bleeding 5 weeks after misoprostol,heavy bleeding 5 weeks after abortion,7,4,google,2026-03-12 19:57:59.254290,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,misoprostol,heavy abortion +abortion,"('bleeding 5 weeks after misoprostol', 'still bleeding 5 weeks after abortion pill')",bleeding 5 weeks after misoprostol,still bleeding 5 weeks after abortion pill,8,4,google,2026-03-12 19:57:59.254290,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,misoprostol,still abortion pill +abortion,"('bleeding 5 weeks after misoprostol', 'light bleeding 5 weeks after abortion')",bleeding 5 weeks after misoprostol,light bleeding 5 weeks after abortion,9,4,google,2026-03-12 19:57:59.254290,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,misoprostol,light abortion +abortion,"('bleeding 5 days after abortion', 'bleeding 5 days after abortion pill')",bleeding 5 days after abortion,bleeding 5 days after abortion pill,1,4,google,2026-03-12 19:58:00.513843,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days,pill +abortion,"('bleeding 5 days after abortion', 'spotting 5 days after abortion')",bleeding 5 days after abortion,spotting 5 days after abortion,2,4,google,2026-03-12 19:58:00.513843,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days,spotting +abortion,"('bleeding 5 days after abortion', 'heavy bleeding 5 days after abortion')",bleeding 5 days after abortion,heavy bleeding 5 days after abortion,3,4,google,2026-03-12 19:58:00.513843,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days,heavy +abortion,"('bleeding 5 days after abortion', 'bleeding 5 days after surgical abortion')",bleeding 5 days after abortion,bleeding 5 days after surgical abortion,4,4,google,2026-03-12 19:58:00.513843,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days,surgical +abortion,"('bleeding 5 days after abortion', 'heavy bleeding 5 days after abortion pill')",bleeding 5 days after abortion,heavy bleeding 5 days after abortion pill,5,4,google,2026-03-12 19:58:00.513843,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days,heavy pill +abortion,"('bleeding 5 days after abortion', 'still bleeding 5 days after abortion')",bleeding 5 days after abortion,still bleeding 5 days after abortion,6,4,google,2026-03-12 19:58:00.513843,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days,still +abortion,"('bleeding 5 days after abortion', 'bleeding 5 days after medical abortion')",bleeding 5 days after abortion,bleeding 5 days after medical abortion,7,4,google,2026-03-12 19:58:00.513843,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days,medical +abortion,"('bleeding 5 days after abortion', 'stopped bleeding 5 days after abortion')",bleeding 5 days after abortion,stopped bleeding 5 days after abortion,8,4,google,2026-03-12 19:58:00.513843,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days,stopped +abortion,"('bleeding 5 days after abortion', 'still bleeding 5 days after abortion pill')",bleeding 5 days after abortion,still bleeding 5 days after abortion pill,9,4,google,2026-03-12 19:58:00.513843,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days,still pill +abortion,"('bleeding 5 days after misoprostol', 'bleeding 5 days after abortion')",bleeding 5 days after misoprostol,bleeding 5 days after abortion,1,4,google,2026-03-12 19:58:01.357294,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days misoprostol,abortion +abortion,"('bleeding 5 days after misoprostol', 'bleeding 5 days after abortion pill')",bleeding 5 days after misoprostol,bleeding 5 days after abortion pill,2,4,google,2026-03-12 19:58:01.357294,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days misoprostol,abortion pill +abortion,"('bleeding 5 days after misoprostol', 'heavy bleeding 5 days after misoprostol')",bleeding 5 days after misoprostol,heavy bleeding 5 days after misoprostol,3,4,google,2026-03-12 19:58:01.357294,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days misoprostol,heavy +abortion,"('bleeding 5 days after misoprostol', 'still bleeding 5 days after misoprostol')",bleeding 5 days after misoprostol,still bleeding 5 days after misoprostol,4,4,google,2026-03-12 19:58:01.357294,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days misoprostol,still +abortion,"('bleeding 5 days after misoprostol', 'spotting 5 days after abortion')",bleeding 5 days after misoprostol,spotting 5 days after abortion,5,4,google,2026-03-12 19:58:01.357294,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days misoprostol,spotting abortion +abortion,"('bleeding 5 days after misoprostol', 'blood clots 5 days after misoprostol')",bleeding 5 days after misoprostol,blood clots 5 days after misoprostol,6,4,google,2026-03-12 19:58:01.357294,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days misoprostol,blood clots +abortion,"('bleeding 5 days after misoprostol', 'heavy bleeding 5 days after abortion')",bleeding 5 days after misoprostol,heavy bleeding 5 days after abortion,7,4,google,2026-03-12 19:58:01.357294,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days misoprostol,heavy abortion +abortion,"('bleeding 5 days after misoprostol', 'bleeding 5 days after surgical abortion')",bleeding 5 days after misoprostol,bleeding 5 days after surgical abortion,8,4,google,2026-03-12 19:58:01.357294,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days misoprostol,surgical abortion +abortion,"('bleeding 5 days after misoprostol', 'heavy bleeding 5 days after abortion pill')",bleeding 5 days after misoprostol,heavy bleeding 5 days after abortion pill,9,4,google,2026-03-12 19:58:01.357294,abortion pill side effects 5 weeks,bleeding 5 weeks after abortion pill,days misoprostol,heavy abortion pill +abortion,"('bleeding 5 days after morning after pill', 'spotting 5 days after morning after pill')",bleeding 5 days after morning after pill,spotting 5 days after morning after pill,1,4,google,2026-03-12 19:58:02.218105,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,morning,spotting +abortion,"('bleeding 5 days after morning after pill', 'light bleeding 5 days after morning after pill')",bleeding 5 days after morning after pill,light bleeding 5 days after morning after pill,2,4,google,2026-03-12 19:58:02.218105,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,morning,light +abortion,"('bleeding 5 days after morning after pill', 'heavy bleeding 5 days after morning after pill')",bleeding 5 days after morning after pill,heavy bleeding 5 days after morning after pill,3,4,google,2026-03-12 19:58:02.218105,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,morning,heavy +abortion,"('bleeding 5 days after morning after pill', 'brown blood 5 days after morning after pill')",bleeding 5 days after morning after pill,brown blood 5 days after morning after pill,4,4,google,2026-03-12 19:58:02.218105,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,morning,brown blood +abortion,"('bleeding 5 days after morning after pill', 'why am i bleeding 5 days after morning after pill')",bleeding 5 days after morning after pill,why am i bleeding 5 days after morning after pill,5,4,google,2026-03-12 19:58:02.218105,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,morning,why am i +abortion,"('bleeding 5 days after morning after pill', 'bleeding 1 week after morning after pill')",bleeding 5 days after morning after pill,bleeding 1 week after morning after pill,6,4,google,2026-03-12 19:58:02.218105,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,morning,1 week +abortion,"('bleeding 5 days after morning after pill', 'bleeding 2 weeks after morning after pill')",bleeding 5 days after morning after pill,bleeding 2 weeks after morning after pill,7,4,google,2026-03-12 19:58:02.218105,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,morning,2 weeks +abortion,"('bleeding 5 days after morning after pill', 'bleeding 5 days after plan b pill')",bleeding 5 days after morning after pill,bleeding 5 days after plan b pill,8,4,google,2026-03-12 19:58:02.218105,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,morning,plan b +abortion,"('bleeding 5 days after morning after pill', 'is it normal to bleed 5 days after morning after pill')",bleeding 5 days after morning after pill,is it normal to bleed 5 days after morning after pill,9,4,google,2026-03-12 19:58:02.218105,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,morning,is it normal to bleed +abortion,"('spotting 5 days after morning after pill', 'bleeding 5 days after morning after pill')",spotting 5 days after morning after pill,bleeding 5 days after morning after pill,1,4,google,2026-03-12 19:58:03.212307,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,spotting morning,bleeding +abortion,"('spotting 5 days after morning after pill', 'light bleeding 5 days after morning after pill')",spotting 5 days after morning after pill,light bleeding 5 days after morning after pill,2,4,google,2026-03-12 19:58:03.212307,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,spotting morning,light bleeding +abortion,"('spotting 5 days after morning after pill', 'heavy bleeding 5 days after morning after pill')",spotting 5 days after morning after pill,heavy bleeding 5 days after morning after pill,3,4,google,2026-03-12 19:58:03.212307,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,spotting morning,heavy bleeding +abortion,"('spotting 5 days after morning after pill', 'brown discharge 5 days after morning after pill')",spotting 5 days after morning after pill,brown discharge 5 days after morning after pill,4,4,google,2026-03-12 19:58:03.212307,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,spotting morning,brown discharge +abortion,"('spotting 5 days after morning after pill', 'spotting 2 weeks after morning after pill')",spotting 5 days after morning after pill,spotting 2 weeks after morning after pill,5,4,google,2026-03-12 19:58:03.212307,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,spotting morning,2 weeks +abortion,"('spotting 5 days after morning after pill', 'spotting 1 week after morning after pill')",spotting 5 days after morning after pill,spotting 1 week after morning after pill,6,4,google,2026-03-12 19:58:03.212307,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,spotting morning,1 week +abortion,"('spotting 5 days after morning after pill', 'why am i bleeding 5 days after morning after pill')",spotting 5 days after morning after pill,why am i bleeding 5 days after morning after pill,7,4,google,2026-03-12 19:58:03.212307,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,spotting morning,why am i bleeding +abortion,"('spotting 5 days after morning after pill', 'spotting 5 days after plan b pill')",spotting 5 days after morning after pill,spotting 5 days after plan b pill,8,4,google,2026-03-12 19:58:03.212307,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,spotting morning,plan b +abortion,"('spotting 5 days after morning after pill', 'bleeding 1 week after morning after pill')",spotting 5 days after morning after pill,bleeding 1 week after morning after pill,9,4,google,2026-03-12 19:58:03.212307,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,spotting morning,bleeding 1 week +abortion,"('heavy bleeding 5 days after abortion pill', 'heavy bleeding 5 days after morning after pill')",heavy bleeding 5 days after abortion pill,heavy bleeding 5 days after morning after pill,1,4,google,2026-03-12 19:58:04.286852,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy,morning +abortion,"('heavy bleeding 5 days after abortion pill', 'heavy bleeding 1 week after abortion pill')",heavy bleeding 5 days after abortion pill,heavy bleeding 1 week after abortion pill,2,4,google,2026-03-12 19:58:04.286852,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy,1 week +abortion,"('heavy bleeding 5 days after abortion pill', 'heavy bleeding 1 week after morning after pill')",heavy bleeding 5 days after abortion pill,heavy bleeding 1 week after morning after pill,3,4,google,2026-03-12 19:58:04.286852,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy,1 week morning +abortion,"('heavy bleeding 5 days after abortion pill', 'bleeding heavy 4 days after abortion')",heavy bleeding 5 days after abortion pill,bleeding heavy 4 days after abortion,4,4,google,2026-03-12 19:58:04.286852,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy,4 +abortion,"('heavy bleeding 5 days after abortion pill', 'is it normal to bleed 5 days after abortion')",heavy bleeding 5 days after abortion pill,is it normal to bleed 5 days after abortion,5,4,google,2026-03-12 19:58:04.286852,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy,is it normal to bleed +abortion,"('heavy bleeding 5 days after abortion pill', 'heavy bleeding 5 days after misoprostol')",heavy bleeding 5 days after abortion pill,heavy bleeding 5 days after misoprostol,6,4,google,2026-03-12 19:58:04.286852,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy,misoprostol +abortion,"('heavy bleeding 5 days after abortion pill', 'heavy bleeding days after abortion pill')",heavy bleeding 5 days after abortion pill,heavy bleeding days after abortion pill,7,4,google,2026-03-12 19:58:04.286852,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy,heavy +abortion,"('heavy bleeding 5 days after abortion pill', 'heavy bleeding after pill abortion')",heavy bleeding 5 days after abortion pill,heavy bleeding after pill abortion,8,4,google,2026-03-12 19:58:04.286852,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy,heavy +abortion,"('still bleeding 5 days after abortion pill', 'bleeding 5 days after abortion pill')",still bleeding 5 days after abortion pill,bleeding 5 days after abortion pill,1,4,google,2026-03-12 19:58:05.098364,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,still,still +abortion,"('still bleeding 5 days after abortion pill', 'bleeding 5 days after morning after pill')",still bleeding 5 days after abortion pill,bleeding 5 days after morning after pill,2,4,google,2026-03-12 19:58:05.098364,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,still,morning +abortion,"('still bleeding 5 days after abortion pill', 'heavy bleeding 5 days after abortion pill')",still bleeding 5 days after abortion pill,heavy bleeding 5 days after abortion pill,3,4,google,2026-03-12 19:58:05.098364,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,still,heavy +abortion,"('still bleeding 5 days after abortion pill', 'spotting 5 days after morning after pill')",still bleeding 5 days after abortion pill,spotting 5 days after morning after pill,4,4,google,2026-03-12 19:58:05.098364,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,still,spotting morning +abortion,"('still bleeding 5 days after abortion pill', 'light bleeding 5 days after morning after pill')",still bleeding 5 days after abortion pill,light bleeding 5 days after morning after pill,5,4,google,2026-03-12 19:58:05.098364,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,still,light morning +abortion,"('still bleeding 5 days after abortion pill', 'heavy bleeding 5 days after morning after pill')",still bleeding 5 days after abortion pill,heavy bleeding 5 days after morning after pill,6,4,google,2026-03-12 19:58:05.098364,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,still,heavy morning +abortion,"('still bleeding 5 days after abortion pill', 'is it normal to bleed 5 days after abortion')",still bleeding 5 days after abortion pill,is it normal to bleed 5 days after abortion,7,4,google,2026-03-12 19:58:05.098364,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,still,is it normal to bleed +abortion,"('still bleeding 5 days after abortion pill', 'is it normal to stop bleeding 5 days after an abortion')",still bleeding 5 days after abortion pill,is it normal to stop bleeding 5 days after an abortion,8,4,google,2026-03-12 19:58:05.098364,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,still,is it normal to stop an +abortion,"('still bleeding 5 days after abortion pill', 'is it normal to bleed for 6 days after abortion')",still bleeding 5 days after abortion pill,is it normal to bleed for 6 days after abortion,9,4,google,2026-03-12 19:58:05.098364,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,still,is it normal to bleed for 6 +abortion,"('light bleeding 5 days after morning after pill', 'light bleeding 2 weeks after morning after pill')",light bleeding 5 days after morning after pill,light bleeding 2 weeks after morning after pill,1,4,google,2026-03-12 19:58:06.458271,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,light morning,2 weeks +abortion,"('light bleeding 5 days after morning after pill', 'light bleeding 1 week after taking morning after pill')",light bleeding 5 days after morning after pill,light bleeding 1 week after taking morning after pill,2,4,google,2026-03-12 19:58:06.458271,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,light morning,1 week taking +abortion,"('light bleeding 5 days after morning after pill', 'light bleeding a week after morning after pill')",light bleeding 5 days after morning after pill,light bleeding a week after morning after pill,3,4,google,2026-03-12 19:58:06.458271,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,light morning,a week +abortion,"('light bleeding 5 days after morning after pill', 'light bleeding after morning after pill')",light bleeding 5 days after morning after pill,light bleeding after morning after pill,4,4,google,2026-03-12 19:58:06.458271,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,light morning,light morning +abortion,"('light bleeding 5 days after morning after pill', 'is it normal to bleed 5 days after morning after pill')",light bleeding 5 days after morning after pill,is it normal to bleed 5 days after morning after pill,5,4,google,2026-03-12 19:58:06.458271,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,light morning,is it normal to bleed +abortion,"('light bleeding 5 days after morning after pill', 'light bleeding 5 days after taking plan b')",light bleeding 5 days after morning after pill,light bleeding 5 days after taking plan b,6,4,google,2026-03-12 19:58:06.458271,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,light morning,taking plan b +abortion,"('light bleeding 5 days after morning after pill', 'light bleeding 5 days after plan b')",light bleeding 5 days after morning after pill,light bleeding 5 days after plan b,7,4,google,2026-03-12 19:58:06.458271,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,light morning,plan b +abortion,"('light bleeding 5 days after morning after pill', 'light period 5 days after plan b')",light bleeding 5 days after morning after pill,light period 5 days after plan b,8,4,google,2026-03-12 19:58:06.458271,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,light morning,period plan b +abortion,"('light bleeding 5 days after morning after pill', 'light bleeding 4 days after plan b')",light bleeding 5 days after morning after pill,light bleeding 4 days after plan b,9,4,google,2026-03-12 19:58:06.458271,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,light morning,4 plan b +abortion,"('heavy bleeding 5 days after morning after pill', 'heavy bleeding 1 week after morning after pill')",heavy bleeding 5 days after morning after pill,heavy bleeding 1 week after morning after pill,1,4,google,2026-03-12 19:58:07.409092,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy morning,1 week +abortion,"('heavy bleeding 5 days after morning after pill', 'heavy bleeding 2 weeks after morning after pill')",heavy bleeding 5 days after morning after pill,heavy bleeding 2 weeks after morning after pill,2,4,google,2026-03-12 19:58:07.409092,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy morning,2 weeks +abortion,"('heavy bleeding 5 days after morning after pill', 'is it normal to bleed 5 days after morning after pill')",heavy bleeding 5 days after morning after pill,is it normal to bleed 5 days after morning after pill,3,4,google,2026-03-12 19:58:07.409092,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy morning,is it normal to bleed +abortion,"('heavy bleeding 5 days after morning after pill', 'heavy bleeding 4 days after morning after pill')",heavy bleeding 5 days after morning after pill,heavy bleeding 4 days after morning after pill,4,4,google,2026-03-12 19:58:07.409092,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy morning,4 +abortion,"('heavy bleeding 5 days after morning after pill', 'can the morning after pill make you bleed 5 days later')",heavy bleeding 5 days after morning after pill,can the morning after pill make you bleed 5 days later,5,4,google,2026-03-12 19:58:07.409092,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy morning,can the make you bleed later +abortion,"('heavy bleeding 5 days after morning after pill', 'heavy bleeding 5 days after taking plan b')",heavy bleeding 5 days after morning after pill,heavy bleeding 5 days after taking plan b,6,4,google,2026-03-12 19:58:07.409092,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy morning,taking plan b +abortion,"('heavy bleeding 5 days after morning after pill', 'heavy bleeding 5 days after plan b')",heavy bleeding 5 days after morning after pill,heavy bleeding 5 days after plan b,7,4,google,2026-03-12 19:58:07.409092,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy morning,plan b +abortion,"('heavy bleeding 5 days after morning after pill', 'heavy period 5 days after plan b')",heavy bleeding 5 days after morning after pill,heavy period 5 days after plan b,8,4,google,2026-03-12 19:58:07.409092,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy morning,period plan b +abortion,"('heavy bleeding 5 days after morning after pill', 'heavy bleeding 5 days after abortion pill')",heavy bleeding 5 days after morning after pill,heavy bleeding 5 days after abortion pill,9,4,google,2026-03-12 19:58:07.409092,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,heavy morning,abortion +abortion,"('brown blood 5 days after morning after pill', 'brown discharge 2 weeks after morning after pill')",brown blood 5 days after morning after pill,brown discharge 2 weeks after morning after pill,1,4,google,2026-03-12 19:58:08.259445,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,brown blood morning,discharge 2 weeks +abortion,"('brown blood 5 days after morning after pill', 'brown discharge 1 week after morning after pill')",brown blood 5 days after morning after pill,brown discharge 1 week after morning after pill,2,4,google,2026-03-12 19:58:08.259445,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,brown blood morning,discharge 1 week +abortion,"('brown blood 5 days after morning after pill', 'can the morning after pill cause spotting a week later')",brown blood 5 days after morning after pill,can the morning after pill cause spotting a week later,3,4,google,2026-03-12 19:58:08.259445,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,brown blood morning,can the cause spotting a week later +abortion,"('brown blood 5 days after morning after pill', 'light bleeding 5 days after morning after pill')",brown blood 5 days after morning after pill,light bleeding 5 days after morning after pill,4,4,google,2026-03-12 19:58:08.259445,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,brown blood morning,light bleeding +abortion,"('brown blood 5 days after morning after pill', 'brown blood 5 days after plan b')",brown blood 5 days after morning after pill,brown blood 5 days after plan b,5,4,google,2026-03-12 19:58:08.259445,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,brown blood morning,plan b +abortion,"('brown blood 5 days after morning after pill', 'brown bleeding 5 days after plan b')",brown blood 5 days after morning after pill,brown bleeding 5 days after plan b,6,4,google,2026-03-12 19:58:08.259445,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,brown blood morning,bleeding plan b +abortion,"('brown blood 5 days after morning after pill', 'brown spotting 5 days after plan b')",brown blood 5 days after morning after pill,brown spotting 5 days after plan b,7,4,google,2026-03-12 19:58:08.259445,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,brown blood morning,spotting plan b +abortion,"('brown blood 5 days after morning after pill', 'brown discharge 5 days after taking plan b')",brown blood 5 days after morning after pill,brown discharge 5 days after taking plan b,8,4,google,2026-03-12 19:58:08.259445,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,brown blood morning,discharge taking plan b +abortion,"('why am i bleeding 5 days after morning after pill', 'why am i still bleeding 2 weeks after morning after pill')",why am i bleeding 5 days after morning after pill,why am i still bleeding 2 weeks after morning after pill,1,4,google,2026-03-12 19:58:09.176253,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,why am i morning,still 2 weeks +abortion,"('why am i bleeding 5 days after morning after pill', 'is it normal to bleed 5 days after morning after pill')",why am i bleeding 5 days after morning after pill,is it normal to bleed 5 days after morning after pill,2,4,google,2026-03-12 19:58:09.176253,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,why am i morning,is it normal to bleed +abortion,"('why am i bleeding 5 days after morning after pill', 'light bleeding 5 days after morning after pill')",why am i bleeding 5 days after morning after pill,light bleeding 5 days after morning after pill,3,4,google,2026-03-12 19:58:09.176253,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,why am i morning,light +abortion,"('why am i bleeding 5 days after morning after pill', 'can the morning after pill cause spotting a week later')",why am i bleeding 5 days after morning after pill,can the morning after pill cause spotting a week later,4,4,google,2026-03-12 19:58:09.176253,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,why am i morning,can the cause spotting a week later +abortion,"('why am i bleeding 5 days after morning after pill', 'can the morning after pill make you bleed 5 days later')",why am i bleeding 5 days after morning after pill,can the morning after pill make you bleed 5 days later,5,4,google,2026-03-12 19:58:09.176253,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,why am i morning,can the make you bleed later +abortion,"('why am i bleeding 5 days after morning after pill', 'why am i bleeding 5 days after taking a plan b')",why am i bleeding 5 days after morning after pill,why am i bleeding 5 days after taking a plan b,6,4,google,2026-03-12 19:58:09.176253,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,why am i morning,taking a plan b +abortion,"('why am i bleeding 5 days after morning after pill', 'why am i bleeding five days after taking plan b')",why am i bleeding 5 days after morning after pill,why am i bleeding five days after taking plan b,7,4,google,2026-03-12 19:58:09.176253,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,why am i morning,five taking plan b +abortion,"('why am i bleeding 5 days after morning after pill', 'why am i spotting 5 days after plan b')",why am i bleeding 5 days after morning after pill,why am i spotting 5 days after plan b,8,4,google,2026-03-12 19:58:09.176253,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,why am i morning,spotting plan b +abortion,"('is it normal to stop bleeding 5 days after abortion pill', 'is it normal to stop bleeding 5 days after an abortion')",is it normal to stop bleeding 5 days after abortion pill,is it normal to stop bleeding 5 days after an abortion,1,4,google,2026-03-12 19:58:10.504527,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,is it normal to stop,an +abortion,"('is it normal to stop bleeding 5 days after abortion pill', 'is it normal to bleed 5 days after abortion')",is it normal to stop bleeding 5 days after abortion pill,is it normal to bleed 5 days after abortion,2,4,google,2026-03-12 19:58:10.504527,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,is it normal to stop,bleed +abortion,"('is it normal to stop bleeding 5 days after abortion pill', 'is it normal to bleed for 6 days after abortion')",is it normal to stop bleeding 5 days after abortion pill,is it normal to bleed for 6 days after abortion,3,4,google,2026-03-12 19:58:10.504527,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,is it normal to stop,bleed for 6 +abortion,"('is it normal to stop bleeding 5 days after abortion pill', 'stopped bleeding a week after abortion')",is it normal to stop bleeding 5 days after abortion pill,stopped bleeding a week after abortion,4,4,google,2026-03-12 19:58:10.504527,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,is it normal to stop,stopped a week +abortion,"('is it normal to stop bleeding 5 days after abortion pill', 'is it normal to stop bleeding after abortion')",is it normal to stop bleeding 5 days after abortion pill,is it normal to stop bleeding after abortion,5,4,google,2026-03-12 19:58:10.504527,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,is it normal to stop,is it normal to stop +abortion,"('is it normal to stop bleeding 5 days after abortion pill', 'is it normal to bleed 5 weeks after abortion')",is it normal to stop bleeding 5 days after abortion pill,is it normal to bleed 5 weeks after abortion,6,4,google,2026-03-12 19:58:10.504527,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,is it normal to stop,bleed weeks +abortion,"('is it normal to stop bleeding 5 days after abortion pill', 'is it normal to stop bleeding after abortion pill')",is it normal to stop bleeding 5 days after abortion pill,is it normal to stop bleeding after abortion pill,7,4,google,2026-03-12 19:58:10.504527,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,is it normal to stop,is it normal to stop +abortion,"('is it normal to stop bleeding 5 days after abortion pill', 'is it normal to stop bleeding 5 days after miscarriage')",is it normal to stop bleeding 5 days after abortion pill,is it normal to stop bleeding 5 days after miscarriage,8,4,google,2026-03-12 19:58:10.504527,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,is it normal to stop,miscarriage +abortion,"('is it normal to stop bleeding 5 days after abortion pill', 'is it normal to stop bleeding day after abortion')",is it normal to stop bleeding 5 days after abortion pill,is it normal to stop bleeding day after abortion,9,4,google,2026-03-12 19:58:10.504527,abortion pill side effects 5 weeks,bleeding 5 days after abortion pill,is it normal to stop,day +abortion,"('abortion definition in obstetrics', 'abortion definition in obstetrics ppt')",abortion definition in obstetrics,abortion definition in obstetrics ppt,1,4,google,2026-03-12 19:58:11.654583,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,definition obstetrics,ppt +abortion,"('abortion definition in obstetrics', 'abortion definition in gynaecology')",abortion definition in obstetrics,abortion definition in gynaecology,2,4,google,2026-03-12 19:58:11.654583,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,definition obstetrics,gynaecology +abortion,"('abortion definition in obstetrics', 'abortion definition in pregnancy')",abortion definition in obstetrics,abortion definition in pregnancy,3,4,google,2026-03-12 19:58:11.654583,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,definition obstetrics,pregnancy +abortion,"('abortion definition in obstetrics', 'types of abortion in obstetrics')",abortion definition in obstetrics,types of abortion in obstetrics,4,4,google,2026-03-12 19:58:11.654583,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,definition obstetrics,types of +abortion,"('abortion definition in obstetrics', 'define abortion in obg')",abortion definition in obstetrics,define abortion in obg,5,4,google,2026-03-12 19:58:11.654583,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,definition obstetrics,define obg +abortion,"('abortion definition in obstetrics', 'abortion definition acog')",abortion definition in obstetrics,abortion definition acog,6,4,google,2026-03-12 19:58:11.654583,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,definition obstetrics,acog +abortion,"('abortion definition in obstetrics', 'definition obstetrics and gynecology')",abortion definition in obstetrics,definition obstetrics and gynecology,7,4,google,2026-03-12 19:58:11.654583,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,definition obstetrics,and gynecology +abortion,"('abortion meaning in telugu', 'abortion meaning in telugu wikipedia')",abortion meaning in telugu,abortion meaning in telugu wikipedia,1,4,google,2026-03-12 19:58:13.040263,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,telugu,wikipedia +abortion,"('abortion meaning in telugu', 'missed abortion meaning in telugu pregnancy')",abortion meaning in telugu,missed abortion meaning in telugu pregnancy,2,4,google,2026-03-12 19:58:13.040263,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,telugu,missed pregnancy +abortion,"('abortion meaning in telugu', 'missed abortion meaning in telugu wikipedia')",abortion meaning in telugu,missed abortion meaning in telugu wikipedia,3,4,google,2026-03-12 19:58:13.040263,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,telugu,missed wikipedia +abortion,"('abortion meaning in telugu', 'user abort meaning in telugu')",abortion meaning in telugu,user abort meaning in telugu,4,4,google,2026-03-12 19:58:13.040263,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,telugu,user abort +abortion,"('abortion meaning in telugu', 'abortion definition in telugu')",abortion meaning in telugu,abortion definition in telugu,5,4,google,2026-03-12 19:58:13.040263,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,telugu,definition +abortion,"('abortion meaning in telugu', 'threatened abortion meaning in telugu')",abortion meaning in telugu,threatened abortion meaning in telugu,6,4,google,2026-03-12 19:58:13.040263,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,telugu,threatened +abortion,"('abortion meaning in telugu', 'induced abortion meaning in telugu')",abortion meaning in telugu,induced abortion meaning in telugu,7,4,google,2026-03-12 19:58:13.040263,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,telugu,induced +abortion,"('abortion meaning in telugu', 'missed abortion meaning in telugu')",abortion meaning in telugu,missed abortion meaning in telugu,8,4,google,2026-03-12 19:58:13.040263,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,telugu,missed +abortion,"('abortion meaning in telugu', 'spontaneous abortion meaning in telugu')",abortion meaning in telugu,spontaneous abortion meaning in telugu,9,4,google,2026-03-12 19:58:13.040263,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,telugu,spontaneous +abortion,"('abortion meaning in sinhala', 'termination meaning in sinhala')",abortion meaning in sinhala,termination meaning in sinhala,1,4,google,2026-03-12 19:58:13.910226,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,sinhala,termination +abortion,"('abortion meaning in sinhala', 'abortion meaning in farsi')",abortion meaning in sinhala,abortion meaning in farsi,2,4,google,2026-03-12 19:58:13.910226,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,sinhala,farsi +abortion,"('abortion meaning in sinhala', 'abortion translate sinhala')",abortion meaning in sinhala,abortion translate sinhala,3,4,google,2026-03-12 19:58:13.910226,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,sinhala,translate +abortion,"('abortion meaning in sinhala', 'meaning of abort in english')",abortion meaning in sinhala,meaning of abort in english,4,4,google,2026-03-12 19:58:13.910226,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,sinhala,of abort english +abortion,"('abortion meaning in sinhala', 'abortion meaning in hebrew')",abortion meaning in sinhala,abortion meaning in hebrew,5,4,google,2026-03-12 19:58:13.910226,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,sinhala,hebrew +abortion,"('abortion matra kannada', 'abortion matra kannada pdf')",abortion matra kannada,abortion matra kannada pdf,1,4,google,2026-03-12 19:58:15.179629,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,matra,pdf +abortion,"('abortion matra kannada', 'abortion matra kannada movie')",abortion matra kannada,abortion matra kannada movie,2,4,google,2026-03-12 19:58:15.179629,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,matra,movie +abortion,"('abortion matra kannada', 'abortion matra kannada meaning')",abortion matra kannada,abortion matra kannada meaning,3,4,google,2026-03-12 19:58:15.179629,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,matra,meaning +abortion,"('abortion matra kannada', 'abortion matra kannada book')",abortion matra kannada,abortion matra kannada book,4,4,google,2026-03-12 19:58:15.179629,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,matra,book +abortion,"('abortion matra kannada', 'abortion matra kannada pdf download')",abortion matra kannada,abortion matra kannada pdf download,5,4,google,2026-03-12 19:58:15.179629,abortion meaning in pregnancy,abortion meaning in pregnancy kannada,matra,pdf download +abortion,"('missed abortion meaning in marathi pregnancy', 'miscarriage meaning in marathi pregnancy')",missed abortion meaning in marathi pregnancy,miscarriage meaning in marathi pregnancy,1,4,google,2026-03-12 19:58:16.536206,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,missed,miscarriage +abortion,"('missed abortion meaning in marathi pregnancy', 'what does missed abortion mean in pregnancy')",missed abortion meaning in marathi pregnancy,what does missed abortion mean in pregnancy,2,4,google,2026-03-12 19:58:16.536206,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,missed,what does mean +abortion,"('missed abortion meaning in marathi pregnancy', 'how late in pregnancy can you get an abortion in canada')",missed abortion meaning in marathi pregnancy,how late in pregnancy can you get an abortion in canada,3,4,google,2026-03-12 19:58:16.536206,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,missed,how late can you get an canada +abortion,"('missed abortion meaning in marathi pregnancy', 'explain missed abortion')",missed abortion meaning in marathi pregnancy,explain missed abortion,4,4,google,2026-03-12 19:58:16.536206,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,missed,explain +abortion,"('missed abortion meaning in marathi pregnancy', 'meaning of missed abortion in pregnancy')",missed abortion meaning in marathi pregnancy,meaning of missed abortion in pregnancy,5,4,google,2026-03-12 19:58:16.536206,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,missed,of +abortion,"('missed abortion meaning in marathi pregnancy', 'missed abortion')",missed abortion meaning in marathi pregnancy,missed abortion,6,4,google,2026-03-12 19:58:16.536206,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,missed,missed +abortion,"('missed abortion meaning in marathi pregnancy', 'missed abortion medical definition')",missed abortion meaning in marathi pregnancy,missed abortion medical definition,7,4,google,2026-03-12 19:58:16.536206,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,missed,medical definition +abortion,"('missed abortion meaning in marathi pregnancy', 'missed abortion marathi meaning')",missed abortion meaning in marathi pregnancy,missed abortion marathi meaning,8,4,google,2026-03-12 19:58:16.536206,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,missed,missed +abortion,"('missed abortion meaning in marathi pregnancy', 'missed abortion experience')",missed abortion meaning in marathi pregnancy,missed abortion experience,9,4,google,2026-03-12 19:58:16.536206,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,missed,experience +abortion,"('abortion meaning in marathi', 'abortion meaning in marathi pregnancy')",abortion meaning in marathi,abortion meaning in marathi pregnancy,1,4,google,2026-03-12 19:58:17.478315,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,marathi,pregnancy +abortion,"('abortion meaning in marathi', 'abortion meaning in marathi wikipedia')",abortion meaning in marathi,abortion meaning in marathi wikipedia,2,4,google,2026-03-12 19:58:17.478315,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,marathi,wikipedia +abortion,"('abortion meaning in marathi', 'abort meaning in marathi with example')",abortion meaning in marathi,abort meaning in marathi with example,3,4,google,2026-03-12 19:58:17.478315,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,marathi,abort with example +abortion,"('abortion meaning in marathi', 'missed abortion meaning in marathi pregnancy')",abortion meaning in marathi,missed abortion meaning in marathi pregnancy,4,4,google,2026-03-12 19:58:17.478315,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,marathi,missed pregnancy +abortion,"('abortion meaning in marathi', 'threatened abortion meaning in marathi ppt')",abortion meaning in marathi,threatened abortion meaning in marathi ppt,5,4,google,2026-03-12 19:58:17.478315,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,marathi,threatened ppt +abortion,"('abortion meaning in marathi', 'complete abortion meaning in marathi')",abortion meaning in marathi,complete abortion meaning in marathi,6,4,google,2026-03-12 19:58:17.478315,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,marathi,complete +abortion,"('abortion meaning in marathi', 'mission abort meaning in marathi')",abortion meaning in marathi,mission abort meaning in marathi,7,4,google,2026-03-12 19:58:17.478315,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,marathi,mission abort +abortion,"('abortion meaning in marathi', 'abort transaction meaning in marathi')",abortion meaning in marathi,abort transaction meaning in marathi,8,4,google,2026-03-12 19:58:17.478315,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,marathi,abort transaction +abortion,"('abortion meaning in marathi', 'user abort meaning in marathi')",abortion meaning in marathi,user abort meaning in marathi,9,4,google,2026-03-12 19:58:17.478315,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,marathi,user abort +abortion,"('abortion definition in india', 'legal abortion definition in india')",abortion definition in india,legal abortion definition in india,1,4,google,2026-03-12 19:58:18.534235,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,definition india,legal +abortion,"('abortion definition in india', 'incarcerated abortion meaning in india')",abortion definition in india,incarcerated abortion meaning in india,2,4,google,2026-03-12 19:58:18.534235,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,definition india,incarcerated meaning +abortion,"('abortion definition in india', 'why is abortion legal in india')",abortion definition in india,why is abortion legal in india,3,4,google,2026-03-12 19:58:18.534235,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,definition india,why is legal +abortion,"('abortion definition in india', 'indiana definition of abortion')",abortion definition in india,indiana definition of abortion,4,4,google,2026-03-12 19:58:18.534235,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,definition india,indiana of +abortion,"('abortion definition in india', 'abortion in indiana law')",abortion definition in india,abortion in indiana law,5,4,google,2026-03-12 19:58:18.534235,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,definition india,indiana law +abortion,"('meaning of abortion in pregnancy', 'meaning of miscarriage in pregnancy')",meaning of abortion in pregnancy,meaning of miscarriage in pregnancy,1,4,google,2026-03-12 19:58:19.546794,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,of,miscarriage +abortion,"('meaning of abortion in pregnancy', 'meaning of missed abortion in pregnancy')",meaning of abortion in pregnancy,meaning of missed abortion in pregnancy,2,4,google,2026-03-12 19:58:19.546794,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,of,missed +abortion,"('meaning of abortion in pregnancy', 'definition of spontaneous abortion in pregnancy')",meaning of abortion in pregnancy,definition of spontaneous abortion in pregnancy,3,4,google,2026-03-12 19:58:19.546794,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,of,definition spontaneous +abortion,"('meaning of abortion in pregnancy', 'what is threatened abortion in pregnancy')",meaning of abortion in pregnancy,what is threatened abortion in pregnancy,4,4,google,2026-03-12 19:58:19.546794,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,of,what is threatened +abortion,"('meaning of abortion in pregnancy', 'does abortion affect pregnancy')",meaning of abortion in pregnancy,does abortion affect pregnancy,5,4,google,2026-03-12 19:58:19.546794,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,of,does affect +abortion,"('meaning of abortion in pregnancy', 'what is abortion and miscarriage')",meaning of abortion in pregnancy,what is abortion and miscarriage,6,4,google,2026-03-12 19:58:19.546794,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,of,what is and miscarriage +abortion,"('meaning of abortion in pregnancy', 'meaning of abortion in a dream')",meaning of abortion in pregnancy,meaning of abortion in a dream,7,4,google,2026-03-12 19:58:19.546794,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,of,a dream +abortion,"('meaning of abortion in pregnancy', 'meaning of having an abortion in a dream')",meaning of abortion in pregnancy,meaning of having an abortion in a dream,8,4,google,2026-03-12 19:58:19.546794,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,of,having an a dream +abortion,"('meaning of abortion in pregnancy', 'meaning of pregnancy in dreams')",meaning of abortion in pregnancy,meaning of pregnancy in dreams,9,4,google,2026-03-12 19:58:19.546794,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,of,dreams +abortion,"('abortion meaning in marathi translation', 'abortion meaning in marathi translation in english')",abortion meaning in marathi translation,abortion meaning in marathi translation in english,1,4,google,2026-03-12 19:58:20.747998,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,translation,english +abortion,"('abortion meaning in marathi translation', 'abortion meaning in marathi translation pdf')",abortion meaning in marathi translation,abortion meaning in marathi translation pdf,2,4,google,2026-03-12 19:58:20.747998,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,translation,pdf +abortion,"('abortion meaning in marathi translation', 'abortion meaning in marathi translation in marathi')",abortion meaning in marathi translation,abortion meaning in marathi translation in marathi,3,4,google,2026-03-12 19:58:20.747998,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,translation,translation +abortion,"('abortion meaning in marathi translation', 'abortion meaning in marathi translate vietnamese')",abortion meaning in marathi translation,abortion meaning in marathi translate vietnamese,4,4,google,2026-03-12 19:58:20.747998,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,translation,translate vietnamese +abortion,"('abortion in marathi translation', 'abortion meaning in marathi')",abortion in marathi translation,abortion meaning in marathi,1,4,google,2026-03-12 19:58:22.157219,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,translation,meaning +abortion,"('abortion in marathi translation', 'abortion meaning in tamil')",abortion in marathi translation,abortion meaning in tamil,2,4,google,2026-03-12 19:58:22.157219,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,translation,meaning tamil +abortion,"('abortion in marathi translation', 'baby abortion meaning in tamil')",abortion in marathi translation,baby abortion meaning in tamil,3,4,google,2026-03-12 19:58:22.157219,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,translation,baby meaning tamil +abortion,"('abortion in marathi translation', 'meaning of abort in english')",abortion in marathi translation,meaning of abort in english,4,4,google,2026-03-12 19:58:22.157219,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,translation,meaning of abort english +abortion,"('abortion in marathi translation', 'abortion in matamoros')",abortion in marathi translation,abortion in matamoros,5,4,google,2026-03-12 19:58:22.157219,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,translation,matamoros +abortion,"('abortion in marathi translation', 'abortion in mexicali')",abortion in marathi translation,abortion in mexicali,6,4,google,2026-03-12 19:58:22.157219,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,translation,mexicali +abortion,"('abortion in marathi translation', 'abortion meaning in marathi translation')",abortion in marathi translation,abortion meaning in marathi translation,7,4,google,2026-03-12 19:58:22.157219,abortion meaning in pregnancy,abortion meaning in marathi pregnancy,translation,meaning +abortion,"('what are signs of a complete abortion', 'what are signs of a incomplete abortion')",what are signs of a complete abortion,what are signs of a incomplete abortion,1,4,google,2026-03-12 19:58:23.259117,abortion meaning in pregnancy,complete abortion meaning in pregnancy,what are signs of a,incomplete +abortion,"('what are signs of a complete abortion', 'what are the symptoms of a complete abortion')",what are signs of a complete abortion,what are the symptoms of a complete abortion,2,4,google,2026-03-12 19:58:23.259117,abortion meaning in pregnancy,complete abortion meaning in pregnancy,what are signs of a,the symptoms +abortion,"('what are signs of a complete abortion', 'what are the warning signs of a spontaneous abortion')",what are signs of a complete abortion,what are the warning signs of a spontaneous abortion,3,4,google,2026-03-12 19:58:23.259117,abortion meaning in pregnancy,complete abortion meaning in pregnancy,what are signs of a,the warning spontaneous +abortion,"('what are signs of a complete abortion', 'what are the symptoms of a spontaneous abortion')",what are signs of a complete abortion,what are the symptoms of a spontaneous abortion,4,4,google,2026-03-12 19:58:23.259117,abortion meaning in pregnancy,complete abortion meaning in pregnancy,what are signs of a,the symptoms spontaneous +abortion,"('what are signs of a complete abortion', 'what are the signs of spontaneous abortion')",what are signs of a complete abortion,what are the signs of spontaneous abortion,5,4,google,2026-03-12 19:58:23.259117,abortion meaning in pregnancy,complete abortion meaning in pregnancy,what are signs of a,the spontaneous +abortion,"('what are signs of a complete abortion', 'what are signs of incomplete medical abortion')",what are signs of a complete abortion,what are signs of incomplete medical abortion,6,4,google,2026-03-12 19:58:23.259117,abortion meaning in pregnancy,complete abortion meaning in pregnancy,what are signs of a,incomplete medical +abortion,"('what are signs of a complete abortion', 'what are signs of a failed abortion')",what are signs of a complete abortion,what are signs of a failed abortion,7,4,google,2026-03-12 19:58:23.259117,abortion meaning in pregnancy,complete abortion meaning in pregnancy,what are signs of a,failed +abortion,"('what are signs of a complete abortion', 'what are signs of a successful abortion')",what are signs of a complete abortion,what are signs of a successful abortion,8,4,google,2026-03-12 19:58:23.259117,abortion meaning in pregnancy,complete abortion meaning in pregnancy,what are signs of a,successful +abortion,"('what are signs of a complete abortion', 'what are signs of a missed abortion')",what are signs of a complete abortion,what are signs of a missed abortion,9,4,google,2026-03-12 19:58:23.259117,abortion meaning in pregnancy,complete abortion meaning in pregnancy,what are signs of a,missed +abortion,"('complete abortion laws', 'complete abortion laws by state')",complete abortion laws,complete abortion laws by state,1,4,google,2026-03-12 19:58:24.175060,abortion meaning in pregnancy,complete abortion meaning in pregnancy,laws,by state +abortion,"('complete abortion laws', 'complete abortion laws in california')",complete abortion laws,complete abortion laws in california,2,4,google,2026-03-12 19:58:24.175060,abortion meaning in pregnancy,complete abortion meaning in pregnancy,laws,in california +abortion,"('complete abortion laws', 'complete abortion laws in the us')",complete abortion laws,complete abortion laws in the us,3,4,google,2026-03-12 19:58:24.175060,abortion meaning in pregnancy,complete abortion meaning in pregnancy,laws,in the us +abortion,"('complete abortion laws', 'complete abortion laws 2018')",complete abortion laws,complete abortion laws 2018,4,4,google,2026-03-12 19:58:24.175060,abortion meaning in pregnancy,complete abortion meaning in pregnancy,laws,2018 +abortion,"('complete abortion laws', 'complete abortion laws palo alto')",complete abortion laws,complete abortion laws palo alto,5,4,google,2026-03-12 19:58:24.175060,abortion meaning in pregnancy,complete abortion meaning in pregnancy,laws,palo alto +abortion,"('complete abortion laws', 'complete abortion laws san francisco')",complete abortion laws,complete abortion laws san francisco,6,4,google,2026-03-12 19:58:24.175060,abortion meaning in pregnancy,complete abortion meaning in pregnancy,laws,san francisco +abortion,"('complete abortion laws', 'complete abortion laws san jose')",complete abortion laws,complete abortion laws san jose,7,4,google,2026-03-12 19:58:24.175060,abortion meaning in pregnancy,complete abortion meaning in pregnancy,laws,san jose +abortion,"('complete abortion laws', 'complete abortion laws bay area')",complete abortion laws,complete abortion laws bay area,8,4,google,2026-03-12 19:58:24.175060,abortion meaning in pregnancy,complete abortion meaning in pregnancy,laws,bay area +abortion,"('complete abortion laws', 'complete abortion laws menlo park')",complete abortion laws,complete abortion laws menlo park,9,4,google,2026-03-12 19:58:24.175060,abortion meaning in pregnancy,complete abortion meaning in pregnancy,laws,menlo park +abortion,"('complete abortion laws', 'complete abortion laws redwood city')",complete abortion laws,complete abortion laws redwood city,10,4,google,2026-03-12 19:58:24.175060,abortion meaning in pregnancy,complete abortion meaning in pregnancy,laws,redwood city +abortion,"('what does induced mean in pregnancy', 'what is induced mean in pregnancy')",what does induced mean in pregnancy,what is induced mean in pregnancy,1,4,google,2026-03-12 19:58:26.784198,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what does mean,is +abortion,"('what does induced mean in pregnancy', 'what does getting induced mean in pregnancy')",what does induced mean in pregnancy,what does getting induced mean in pregnancy,2,4,google,2026-03-12 19:58:26.784198,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what does mean,getting +abortion,"('what does induced mean in pregnancy', 'what does induce labor mean in pregnancy')",what does induced mean in pregnancy,what does induce labor mean in pregnancy,3,4,google,2026-03-12 19:58:26.784198,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what does mean,induce labor +abortion,"('what does induced mean in pregnancy', 'what does induce labour mean in pregnancy')",what does induced mean in pregnancy,what does induce labour mean in pregnancy,4,4,google,2026-03-12 19:58:26.784198,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what does mean,induce labour +abortion,"('what does induced mean in pregnancy', 'what does induced mean in terms of pregnancy')",what does induced mean in pregnancy,what does induced mean in terms of pregnancy,5,4,google,2026-03-12 19:58:26.784198,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what does mean,terms of +abortion,"('what does induced mean in pregnancy', 'what does getting induced mean when pregnant')",what does induced mean in pregnancy,what does getting induced mean when pregnant,6,4,google,2026-03-12 19:58:26.784198,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what does mean,getting when pregnant +abortion,"('what does induced mean in pregnancy', 'what happens when a pregnant lady is induced')",what does induced mean in pregnancy,what happens when a pregnant lady is induced,7,4,google,2026-03-12 19:58:26.784198,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what does mean,happens when a pregnant lady is +abortion,"('what does induced mean in pregnancy', 'why is a pregnant woman induced')",what does induced mean in pregnancy,why is a pregnant woman induced,8,4,google,2026-03-12 19:58:26.784198,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what does mean,why is a pregnant woman +abortion,"('what does induced mean in pregnancy', 'what happens when a pregnant woman is induced')",what does induced mean in pregnancy,what happens when a pregnant woman is induced,9,4,google,2026-03-12 19:58:26.784198,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what does mean,happens when a pregnant woman is +abortion,"('what happens when a pregnant lady is induced', 'what happens after a pregnant woman is induced')",what happens when a pregnant lady is induced,what happens after a pregnant woman is induced,1,4,google,2026-03-12 19:58:28.023580,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what happens when a pregnant lady is,after woman +abortion,"('what happens when a pregnant lady is induced', 'what happens when pregnancy is induced')",what happens when a pregnant lady is induced,what happens when pregnancy is induced,2,4,google,2026-03-12 19:58:28.023580,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what happens when a pregnant lady is,pregnancy +abortion,"('what happens when a pregnant lady is induced', 'why is a pregnant woman induced')",what happens when a pregnant lady is induced,why is a pregnant woman induced,3,4,google,2026-03-12 19:58:28.023580,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what happens when a pregnant lady is,why woman +abortion,"('what happens when a pregnant lady is induced', 'what is the effect of inducing a pregnant woman')",what happens when a pregnant lady is induced,what is the effect of inducing a pregnant woman,4,4,google,2026-03-12 19:58:28.023580,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what happens when a pregnant lady is,the effect of inducing woman +abortion,"('what happens when a pregnant lady is induced', 'what happens when a pregnant woman gets induced')",what happens when a pregnant lady is induced,what happens when a pregnant woman gets induced,5,4,google,2026-03-12 19:58:28.023580,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what happens when a pregnant lady is,woman gets +abortion,"('what happens when a pregnant lady is induced', 'what happens when a woman is induced')",what happens when a pregnant lady is induced,what happens when a woman is induced,6,4,google,2026-03-12 19:58:28.023580,abortion meaning in pregnancy,induced abortion meaning in pregnancy,what happens when a pregnant lady is,woman +abortion,"('incomplete abortion meaning in pregnancy', 'missed abortion meaning in pregnancy')",incomplete abortion meaning in pregnancy,missed abortion meaning in pregnancy,1,4,google,2026-03-12 19:58:28.866756,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete,missed +abortion,"('incomplete abortion meaning in pregnancy', 'spontaneous abortion meaning in pregnancy')",incomplete abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,2,4,google,2026-03-12 19:58:28.866756,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete,spontaneous +abortion,"('incomplete abortion meaning in pregnancy', 'missed abortion meaning in telugu pregnancy')",incomplete abortion meaning in pregnancy,missed abortion meaning in telugu pregnancy,3,4,google,2026-03-12 19:58:28.866756,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete,missed telugu +abortion,"('incomplete abortion meaning in pregnancy', 'missed abortion meaning in marathi pregnancy')",incomplete abortion meaning in pregnancy,missed abortion meaning in marathi pregnancy,4,4,google,2026-03-12 19:58:28.866756,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete,missed marathi +abortion,"('incomplete abortion meaning in pregnancy', 'incomplete abortion meaning tagalog pregnancy')",incomplete abortion meaning in pregnancy,incomplete abortion meaning tagalog pregnancy,5,4,google,2026-03-12 19:58:28.866756,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete,tagalog +abortion,"('incomplete abortion meaning in pregnancy', 'missed abortion means in pregnancy in hindi')",incomplete abortion meaning in pregnancy,missed abortion means in pregnancy in hindi,6,4,google,2026-03-12 19:58:28.866756,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete,missed means hindi +abortion,"('incomplete abortion meaning in pregnancy', 'can incomplete abortion lead to pregnancy')",incomplete abortion meaning in pregnancy,can incomplete abortion lead to pregnancy,7,4,google,2026-03-12 19:58:28.866756,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete,can lead to +abortion,"('incomplete abortion meaning in pregnancy', 'does incomplete abortion means you are still pregnant')",incomplete abortion meaning in pregnancy,does incomplete abortion means you are still pregnant,8,4,google,2026-03-12 19:58:28.866756,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete,does means you are still pregnant +abortion,"('incomplete abortion meaning in pregnancy', 'incomplete abortion in ultrasound')",incomplete abortion meaning in pregnancy,incomplete abortion in ultrasound,9,4,google,2026-03-12 19:58:28.866756,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete,ultrasound +abortion,"('missed abortion meaning in telugu pregnancy', 'miscarriage meaning in telugu pregnancy')",missed abortion meaning in telugu pregnancy,miscarriage meaning in telugu pregnancy,1,4,google,2026-03-12 19:58:30.167296,abortion meaning in pregnancy,missed abortion meaning in pregnancy,telugu,miscarriage +abortion,"('missed abortion meaning in telugu pregnancy', 'what does missed abortion mean in pregnancy')",missed abortion meaning in telugu pregnancy,what does missed abortion mean in pregnancy,2,4,google,2026-03-12 19:58:30.167296,abortion meaning in pregnancy,missed abortion meaning in pregnancy,telugu,what does mean +abortion,"('missed abortion meaning in telugu pregnancy', 'missed abortion meaning in telugu')",missed abortion meaning in telugu pregnancy,missed abortion meaning in telugu,3,4,google,2026-03-12 19:58:30.167296,abortion meaning in pregnancy,missed abortion meaning in pregnancy,telugu,telugu +abortion,"('missed abortion meaning in telugu pregnancy', 'what does it mean by missed abortion')",missed abortion meaning in telugu pregnancy,what does it mean by missed abortion,4,4,google,2026-03-12 19:58:30.167296,abortion meaning in pregnancy,missed abortion meaning in pregnancy,telugu,what does it mean by +abortion,"('missed abortion meaning in telugu pregnancy', 'why is it called missed abortion')",missed abortion meaning in telugu pregnancy,why is it called missed abortion,5,4,google,2026-03-12 19:58:30.167296,abortion meaning in pregnancy,missed abortion meaning in pregnancy,telugu,why is it called +abortion,"('missed abortion meaning in telugu pregnancy', 'missed abortion terminology')",missed abortion meaning in telugu pregnancy,missed abortion terminology,6,4,google,2026-03-12 19:58:30.167296,abortion meaning in pregnancy,missed abortion meaning in pregnancy,telugu,terminology +abortion,"('missed abortion meaning in telugu pregnancy', 'pregnancy missing telugu')",missed abortion meaning in telugu pregnancy,pregnancy missing telugu,7,4,google,2026-03-12 19:58:30.167296,abortion meaning in pregnancy,missed abortion meaning in pregnancy,telugu,missing +abortion,"('missed abortion means in pregnancy in hindi', 'what does missed abortion mean in pregnancy')",missed abortion means in pregnancy in hindi,what does missed abortion mean in pregnancy,1,4,google,2026-03-12 19:58:31.581043,abortion meaning in pregnancy,missed abortion meaning in pregnancy,means hindi,what does mean +abortion,"('missed abortion means in pregnancy in hindi', 'explain missed abortion')",missed abortion means in pregnancy in hindi,explain missed abortion,2,4,google,2026-03-12 19:58:31.581043,abortion meaning in pregnancy,missed abortion meaning in pregnancy,means hindi,explain +abortion,"('missed abortion means in pregnancy in hindi', 'what is mean by missed abortion')",missed abortion means in pregnancy in hindi,what is mean by missed abortion,3,4,google,2026-03-12 19:58:31.581043,abortion meaning in pregnancy,missed abortion meaning in pregnancy,means hindi,what is mean by +abortion,"('missed abortion means in pregnancy in hindi', 'difference between miscarriage and abortion in hindi')",missed abortion means in pregnancy in hindi,difference between miscarriage and abortion in hindi,4,4,google,2026-03-12 19:58:31.581043,abortion meaning in pregnancy,missed abortion meaning in pregnancy,means hindi,difference between miscarriage and +abortion,"('missed abortion means in pregnancy in hindi', 'missed abortion medical definition')",missed abortion means in pregnancy in hindi,missed abortion medical definition,5,4,google,2026-03-12 19:58:31.581043,abortion meaning in pregnancy,missed abortion meaning in pregnancy,means hindi,medical definition +abortion,"('missed abortion means in pregnancy in hindi', 'missed abortion medical term')",missed abortion means in pregnancy in hindi,missed abortion medical term,6,4,google,2026-03-12 19:58:31.581043,abortion meaning in pregnancy,missed abortion meaning in pregnancy,means hindi,medical term +abortion,"('missed abortion means in pregnancy in hindi', 'missed abortion medical abbreviation')",missed abortion means in pregnancy in hindi,missed abortion medical abbreviation,7,4,google,2026-03-12 19:58:31.581043,abortion meaning in pregnancy,missed abortion meaning in pregnancy,means hindi,medical abbreviation +abortion,"('missed abortion means in pregnancy in hindi', 'what does missed abortion mean in medicine')",missed abortion means in pregnancy in hindi,what does missed abortion mean in medicine,8,4,google,2026-03-12 19:58:31.581043,abortion meaning in pregnancy,missed abortion meaning in pregnancy,means hindi,what does mean medicine +abortion,"('what does missed ab mean in pregnancy', 'what does missed abortion mean in pregnancy')",what does missed ab mean in pregnancy,what does missed abortion mean in pregnancy,1,4,google,2026-03-12 19:58:32.431226,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does ab mean,abortion +abortion,"('what does missed ab mean in pregnancy', 'what does missed abortion mean in usg pregnancy report')",what does missed ab mean in pregnancy,what does missed abortion mean in usg pregnancy report,2,4,google,2026-03-12 19:58:32.431226,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does ab mean,abortion usg report +abortion,"('what does missed ab mean in pregnancy', 'what is a missed ab in pregnancy')",what does missed ab mean in pregnancy,what is a missed ab in pregnancy,3,4,google,2026-03-12 19:58:32.431226,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does ab mean,is a +abortion,"('what does missed ab mean in pregnancy', 'what does ab mean in pregnancy')",what does missed ab mean in pregnancy,what does ab mean in pregnancy,4,4,google,2026-03-12 19:58:32.431226,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does ab mean,what does ab mean +abortion,"('what does missed ab mean in pregnancy', 'what is a missed pregnancy')",what does missed ab mean in pregnancy,what is a missed pregnancy,5,4,google,2026-03-12 19:58:32.431226,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does ab mean,is a +abortion,"('what does missed ab mean in pregnancy', 'what does missed ab mean')",what does missed ab mean in pregnancy,what does missed ab mean,6,4,google,2026-03-12 19:58:32.431226,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does ab mean,what does ab mean +abortion,"('what does missed ab mean in pregnancy', 'what does missed abortion mean')",what does missed ab mean in pregnancy,what does missed abortion mean,7,4,google,2026-03-12 19:58:32.431226,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does ab mean,abortion +abortion,"('what does missed ab mean in pregnancy', 'what does missed abortion mean in medicine')",what does missed ab mean in pregnancy,what does missed abortion mean in medicine,8,4,google,2026-03-12 19:58:32.431226,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does ab mean,abortion medicine +abortion,"('incomplete abortion meaning tagalog pregnancy', 'can incomplete abortion lead to pregnancy')",incomplete abortion meaning tagalog pregnancy,can incomplete abortion lead to pregnancy,1,4,google,2026-03-12 19:58:33.281445,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete tagalog,can lead to +abortion,"('incomplete abortion meaning tagalog pregnancy', 'incomplete abortion in ultrasound')",incomplete abortion meaning tagalog pregnancy,incomplete abortion in ultrasound,2,4,google,2026-03-12 19:58:33.281445,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete tagalog,in ultrasound +abortion,"('incomplete abortion meaning tagalog pregnancy', 'incomplete abortion definition')",incomplete abortion meaning tagalog pregnancy,incomplete abortion definition,3,4,google,2026-03-12 19:58:33.281445,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete tagalog,definition +abortion,"('incomplete abortion meaning tagalog pregnancy', 'incomplete abortion procedure')",incomplete abortion meaning tagalog pregnancy,incomplete abortion procedure,4,4,google,2026-03-12 19:58:33.281445,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete tagalog,procedure +abortion,"('incomplete abortion meaning tagalog pregnancy', 'incomplete abortion miscarriage')",incomplete abortion meaning tagalog pregnancy,incomplete abortion miscarriage,5,4,google,2026-03-12 19:58:33.281445,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete tagalog,miscarriage +abortion,"('incomplete abortion meaning tagalog pregnancy', 'incomplete abortion signs')",incomplete abortion meaning tagalog pregnancy,incomplete abortion signs,6,4,google,2026-03-12 19:58:33.281445,abortion meaning in pregnancy,missed abortion meaning in pregnancy,incomplete tagalog,signs +abortion,"('what does missed abortion mean in pregnancy', 'what does missed ab mean in pregnancy')",what does missed abortion mean in pregnancy,what does missed ab mean in pregnancy,1,4,google,2026-03-12 19:58:34.367717,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does mean,ab +abortion,"('what does missed abortion mean in pregnancy', 'what does missed abortion mean in usg pregnancy report')",what does missed abortion mean in pregnancy,what does missed abortion mean in usg pregnancy report,2,4,google,2026-03-12 19:58:34.367717,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does mean,usg report +abortion,"('what does missed abortion mean in pregnancy', 'what does miscarriage mean in pregnancy')",what does missed abortion mean in pregnancy,what does miscarriage mean in pregnancy,3,4,google,2026-03-12 19:58:34.367717,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does mean,miscarriage +abortion,"('what does missed abortion mean in pregnancy', 'what causes missed abortion in early pregnancy')",what does missed abortion mean in pregnancy,what causes missed abortion in early pregnancy,4,4,google,2026-03-12 19:58:34.367717,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does mean,causes early +abortion,"('what does missed abortion mean in pregnancy', 'what does it mean by missed abortion')",what does missed abortion mean in pregnancy,what does it mean by missed abortion,5,4,google,2026-03-12 19:58:34.367717,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does mean,it by +abortion,"('what does missed abortion mean in pregnancy', 'what does missed abortion mean in medicine')",what does missed abortion mean in pregnancy,what does missed abortion mean in medicine,6,4,google,2026-03-12 19:58:34.367717,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does mean,medicine +abortion,"('what does missed abortion mean in pregnancy', 'what does a missed abortion look like')",what does missed abortion mean in pregnancy,what does a missed abortion look like,7,4,google,2026-03-12 19:58:34.367717,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does mean,a look like +abortion,"('what does missed abortion mean in pregnancy', 'what is a missed ab in pregnancy')",what does missed abortion mean in pregnancy,what is a missed ab in pregnancy,8,4,google,2026-03-12 19:58:34.367717,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what does mean,is a ab +abortion,"('what causes missed abortion in early pregnancy', 'what can cause missed miscarriage in early pregnancy')",what causes missed abortion in early pregnancy,what can cause missed miscarriage in early pregnancy,1,4,google,2026-03-12 19:58:35.210788,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what causes early,can cause miscarriage +abortion,"('what causes missed abortion in early pregnancy', 'what causes miscarriage in early pregnancy')",what causes missed abortion in early pregnancy,what causes miscarriage in early pregnancy,2,4,google,2026-03-12 19:58:35.210788,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what causes early,miscarriage +abortion,"('what causes missed abortion in early pregnancy', 'what causes miscarriage in early pregnancy reddit')",what causes missed abortion in early pregnancy,what causes miscarriage in early pregnancy reddit,3,4,google,2026-03-12 19:58:35.210788,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what causes early,miscarriage reddit +abortion,"('what causes missed abortion in early pregnancy', 'what causes sudden miscarriage in early pregnancy')",what causes missed abortion in early pregnancy,what causes sudden miscarriage in early pregnancy,4,4,google,2026-03-12 19:58:35.210788,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what causes early,sudden miscarriage +abortion,"('what causes missed abortion in early pregnancy', 'what causes threatened miscarriage in early pregnancy')",what causes missed abortion in early pregnancy,what causes threatened miscarriage in early pregnancy,5,4,google,2026-03-12 19:58:35.210788,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what causes early,threatened miscarriage +abortion,"('what causes missed abortion in early pregnancy', 'what causes miscarriage in first trimester of pregnancy')",what causes missed abortion in early pregnancy,what causes miscarriage in first trimester of pregnancy,6,4,google,2026-03-12 19:58:35.210788,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what causes early,miscarriage first trimester of +abortion,"('what causes missed abortion in early pregnancy', 'what can cause miscarriage in early pregnancy stress')",what causes missed abortion in early pregnancy,what can cause miscarriage in early pregnancy stress,7,4,google,2026-03-12 19:58:35.210788,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what causes early,can cause miscarriage stress +abortion,"('what causes missed abortion in early pregnancy', 'what can cause miscarriage in early pregnancy medicine')",what causes missed abortion in early pregnancy,what can cause miscarriage in early pregnancy medicine,8,4,google,2026-03-12 19:58:35.210788,abortion meaning in pregnancy,missed abortion meaning in pregnancy,what causes early,can cause miscarriage medicine +abortion,"('threatened abortion meaning tagalog pregnancy', 'what is threatened abortion in pregnancy')",threatened abortion meaning tagalog pregnancy,what is threatened abortion in pregnancy,1,4,google,2026-03-12 19:58:36.305640,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,tagalog,what is in +abortion,"('threatened abortion meaning tagalog pregnancy', 'what is a threatened pregnancy')",threatened abortion meaning tagalog pregnancy,what is a threatened pregnancy,2,4,google,2026-03-12 19:58:36.305640,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,tagalog,what is a +abortion,"('threatened abortion meaning tagalog pregnancy', 'what do you mean by threatened abortion')",threatened abortion meaning tagalog pregnancy,what do you mean by threatened abortion,3,4,google,2026-03-12 19:58:36.305640,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,tagalog,what do you mean by +abortion,"('threatened abortion meaning tagalog pregnancy', 'what is a threatened miscarriage')",threatened abortion meaning tagalog pregnancy,what is a threatened miscarriage,4,4,google,2026-03-12 19:58:36.305640,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,tagalog,what is a miscarriage +abortion,"('threatened abortion meaning tagalog pregnancy', 'threatened abortion in early pregnancy')",threatened abortion meaning tagalog pregnancy,threatened abortion in early pregnancy,5,4,google,2026-03-12 19:58:36.305640,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,tagalog,in early +abortion,"('threatened abortion meaning tagalog pregnancy', 'threatened abortion in first trimester')",threatened abortion meaning tagalog pregnancy,threatened abortion in first trimester,6,4,google,2026-03-12 19:58:36.305640,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,tagalog,in first trimester +abortion,"('threatened abortion meaning tagalog pregnancy', 'threatened abortion medical term')",threatened abortion meaning tagalog pregnancy,threatened abortion medical term,7,4,google,2026-03-12 19:58:36.305640,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,tagalog,medical term +abortion,"('threatened abortion meaning tagalog pregnancy', 'threatened abortion treatment')",threatened abortion meaning tagalog pregnancy,threatened abortion treatment,8,4,google,2026-03-12 19:58:36.305640,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,tagalog,treatment +abortion,"('threatened abortion meaning tagalog pregnancy', 'threatened abortion definition')",threatened abortion meaning tagalog pregnancy,threatened abortion definition,9,4,google,2026-03-12 19:58:36.305640,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,tagalog,definition +abortion,"('what is a threatened miscarriage', 'what is a threatened miscarriage mean')",what is a threatened miscarriage,what is a threatened miscarriage mean,1,4,google,2026-03-12 19:58:37.358893,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a miscarriage,mean +abortion,"('what is a threatened miscarriage', 'what is a threatened miscarriage reddit')",what is a threatened miscarriage,what is a threatened miscarriage reddit,2,4,google,2026-03-12 19:58:37.358893,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a miscarriage,reddit +abortion,"('what is a threatened miscarriage', 'what is a threatened miscarriage at 5 weeks')",what is a threatened miscarriage,what is a threatened miscarriage at 5 weeks,3,4,google,2026-03-12 19:58:37.358893,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a miscarriage,at 5 weeks +abortion,"('what is a threatened miscarriage', 'what is a threatened miscarriage nhs')",what is a threatened miscarriage,what is a threatened miscarriage nhs,4,4,google,2026-03-12 19:58:37.358893,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a miscarriage,nhs +abortion,"('what is a threatened miscarriage', 'what is a threatened miscarriage at 6 weeks')",what is a threatened miscarriage,what is a threatened miscarriage at 6 weeks,5,4,google,2026-03-12 19:58:37.358893,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a miscarriage,at 6 weeks +abortion,"('what is a threatened miscarriage', 'what is a threatened miscarriage at 7 weeks')",what is a threatened miscarriage,what is a threatened miscarriage at 7 weeks,6,4,google,2026-03-12 19:58:37.358893,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a miscarriage,at 7 weeks +abortion,"('what is a threatened miscarriage', 'what is a threatened miscarriage diagnosis')",what is a threatened miscarriage,what is a threatened miscarriage diagnosis,7,4,google,2026-03-12 19:58:37.358893,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a miscarriage,diagnosis +abortion,"('what is a threatened miscarriage', 'what is a threatened miscarriage symptoms')",what is a threatened miscarriage,what is a threatened miscarriage symptoms,8,4,google,2026-03-12 19:58:37.358893,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a miscarriage,symptoms +abortion,"('what is a threatened miscarriage', 'what is a inevitable miscarriage')",what is a threatened miscarriage,what is a inevitable miscarriage,9,4,google,2026-03-12 19:58:37.358893,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a miscarriage,inevitable +abortion,"('what is a threatened pregnancy', 'what is a life threatening pregnancy')",what is a threatened pregnancy,what is a life threatening pregnancy,1,4,google,2026-03-12 19:58:38.722252,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a,life threatening +abortion,"('what is a threatened pregnancy', 'what causes a threatened pregnancy')",what is a threatened pregnancy,what causes a threatened pregnancy,2,4,google,2026-03-12 19:58:38.722252,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a,causes +abortion,"('what is a threatened pregnancy', 'what is endangered pregnancy')",what is a threatened pregnancy,what is endangered pregnancy,3,4,google,2026-03-12 19:58:38.722252,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a,endangered +abortion,"('what is a threatened pregnancy', 'what is considered a threatened miscarriage')",what is a threatened pregnancy,what is considered a threatened miscarriage,4,4,google,2026-03-12 19:58:38.722252,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a,considered miscarriage +abortion,"('what is a threatened pregnancy', 'what is a threatened miscarriage')",what is a threatened pregnancy,what is a threatened miscarriage,5,4,google,2026-03-12 19:58:38.722252,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a,miscarriage +abortion,"('what is a threatened pregnancy', 'whats a threatened miscarriage')",what is a threatened pregnancy,whats a threatened miscarriage,6,4,google,2026-03-12 19:58:38.722252,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a,whats miscarriage +abortion,"('what is a threatened pregnancy', 'what is threatened abortion in pregnancy')",what is a threatened pregnancy,what is threatened abortion in pregnancy,7,4,google,2026-03-12 19:58:38.722252,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a,abortion in +abortion,"('what is a threatened pregnancy', 'what is a threatened abortion')",what is a threatened pregnancy,what is a threatened abortion,8,4,google,2026-03-12 19:58:38.722252,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,what is a,abortion +abortion,"('whats a threatened miscarriage', 'what causes a threatened miscarriage')",whats a threatened miscarriage,what causes a threatened miscarriage,1,4,google,2026-03-12 19:58:39.996631,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,whats a miscarriage,what causes +abortion,"('whats a threatened miscarriage', 'what does a threatened miscarriage look like')",whats a threatened miscarriage,what does a threatened miscarriage look like,2,4,google,2026-03-12 19:58:39.996631,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,whats a miscarriage,what does look like +abortion,"('whats a threatened miscarriage', 'what is a threatened miscarriage mean')",whats a threatened miscarriage,what is a threatened miscarriage mean,3,4,google,2026-03-12 19:58:39.996631,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,whats a miscarriage,what is mean +abortion,"('whats a threatened miscarriage', 'what is a threatened miscarriage reddit')",whats a threatened miscarriage,what is a threatened miscarriage reddit,4,4,google,2026-03-12 19:58:39.996631,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,whats a miscarriage,what is reddit +abortion,"('whats a threatened miscarriage', 'what does a threatened miscarriage feel like')",whats a threatened miscarriage,what does a threatened miscarriage feel like,5,4,google,2026-03-12 19:58:39.996631,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,whats a miscarriage,what does feel like +abortion,"('whats a threatened miscarriage', 'what is a threatened miscarriage nhs')",whats a threatened miscarriage,what is a threatened miscarriage nhs,6,4,google,2026-03-12 19:58:39.996631,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,whats a miscarriage,what is nhs +abortion,"('whats a threatened miscarriage', 'what does a threatened miscarriage')",whats a threatened miscarriage,what does a threatened miscarriage,7,4,google,2026-03-12 19:58:39.996631,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,whats a miscarriage,what does +abortion,"('whats a threatened miscarriage', 'what is a threatened miscarriage at 5 weeks')",whats a threatened miscarriage,what is a threatened miscarriage at 5 weeks,8,4,google,2026-03-12 19:58:39.996631,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,whats a miscarriage,what is at 5 weeks +abortion,"('whats a threatened miscarriage', 'what is a threatened miscarriage like')",whats a threatened miscarriage,what is a threatened miscarriage like,9,4,google,2026-03-12 19:58:39.996631,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,whats a miscarriage,what is like +abortion,"('threatened abortion in early pregnancy', 'threatened miscarriage in early pregnancy')",threatened abortion in early pregnancy,threatened miscarriage in early pregnancy,1,4,google,2026-03-12 19:58:41.006406,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,early,miscarriage +abortion,"('threatened abortion in early pregnancy', 'threatened miscarriage in early pregnancy meaning')",threatened abortion in early pregnancy,threatened miscarriage in early pregnancy meaning,2,4,google,2026-03-12 19:58:41.006406,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,early,miscarriage meaning +abortion,"('threatened abortion in early pregnancy', 'treatment of threatened abortion in early pregnancy')",threatened abortion in early pregnancy,treatment of threatened abortion in early pregnancy,3,4,google,2026-03-12 19:58:41.006406,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,early,treatment of +abortion,"('threatened abortion in early pregnancy', 'what does threatened abortion in early pregnancy mean')",threatened abortion in early pregnancy,what does threatened abortion in early pregnancy mean,4,4,google,2026-03-12 19:58:41.006406,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,early,what does mean +abortion,"('threatened abortion in early pregnancy', 'signs of threatened abortion in early pregnancy')",threatened abortion in early pregnancy,signs of threatened abortion in early pregnancy,5,4,google,2026-03-12 19:58:41.006406,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,early,signs of +abortion,"('threatened abortion in early pregnancy', 'causes of threatened abortion in early pregnancy')",threatened abortion in early pregnancy,causes of threatened abortion in early pregnancy,6,4,google,2026-03-12 19:58:41.006406,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,early,causes of +abortion,"('threatened abortion in early pregnancy', 'threatened miscarriage in early pregnancy symptoms')",threatened abortion in early pregnancy,threatened miscarriage in early pregnancy symptoms,7,4,google,2026-03-12 19:58:41.006406,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,early,miscarriage symptoms +abortion,"('threatened abortion in early pregnancy', 'threatened abortion vs early pregnancy loss')",threatened abortion in early pregnancy,threatened abortion vs early pregnancy loss,8,4,google,2026-03-12 19:58:41.006406,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,early,vs loss +abortion,"('threatened abortion in early pregnancy', 'threatened abortion bleeding during pregnancy')",threatened abortion in early pregnancy,threatened abortion bleeding during pregnancy,9,4,google,2026-03-12 19:58:41.006406,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,early,bleeding during +abortion,"('threatened abortion in first trimester', 'threatened abortion in first trimester icd')",threatened abortion in first trimester,threatened abortion in first trimester icd,1,4,google,2026-03-12 19:58:42.381375,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,first trimester,icd +abortion,"('threatened abortion in first trimester', 'management of threatened abortion in first trimester')",threatened abortion in first trimester,management of threatened abortion in first trimester,2,4,google,2026-03-12 19:58:42.381375,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,first trimester,management of +abortion,"('threatened abortion in first trimester', 'threatened abortion miscarriage in her first trimester icd 10')",threatened abortion in first trimester,threatened abortion miscarriage in her first trimester icd 10,3,4,google,2026-03-12 19:58:42.381375,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,first trimester,miscarriage her icd 10 +abortion,"('threatened abortion in first trimester', 'management of inevitable abortion in first trimester')",threatened abortion in first trimester,management of inevitable abortion in first trimester,4,4,google,2026-03-12 19:58:42.381375,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,first trimester,management of inevitable +abortion,"('threatened abortion in first trimester', 'what is threatened abortion in pregnancy')",threatened abortion in first trimester,what is threatened abortion in pregnancy,5,4,google,2026-03-12 19:58:42.381375,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,first trimester,what is pregnancy +abortion,"('threatened abortion in first trimester', 'what to do if you have a threatened miscarriage')",threatened abortion in first trimester,what to do if you have a threatened miscarriage,6,4,google,2026-03-12 19:58:42.381375,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,first trimester,what to do if you have a miscarriage +abortion,"('threatened abortion in first trimester', 'how common is a threatened miscarriage')",threatened abortion in first trimester,how common is a threatened miscarriage,7,4,google,2026-03-12 19:58:42.381375,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,first trimester,how common is a miscarriage +abortion,"('threatened abortion in first trimester', 'threatened abortion in early pregnancy')",threatened abortion in first trimester,threatened abortion in early pregnancy,8,4,google,2026-03-12 19:58:42.381375,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,first trimester,early pregnancy +abortion,"('threatened abortion in first trimester', 'threatened miscarriage in first trimester')",threatened abortion in first trimester,threatened miscarriage in first trimester,9,4,google,2026-03-12 19:58:42.381375,abortion meaning in pregnancy,threatened abortion meaning in pregnancy,first trimester,miscarriage +abortion,"('is spontaneous abortion the same as miscarriage', 'why is a miscarriage called a spontaneous abortion')",is spontaneous abortion the same as miscarriage,why is a miscarriage called a spontaneous abortion,1,4,google,2026-03-12 19:58:43.266026,abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,is the same as miscarriage,why a called a +abortion,"('is spontaneous abortion the same as miscarriage', 'is spontaneous abortion a miscarriage')",is spontaneous abortion the same as miscarriage,is spontaneous abortion a miscarriage,2,4,google,2026-03-12 19:58:43.266026,abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,is the same as miscarriage,a +abortion,"('is spontaneous abortion the same as miscarriage', 'is a miscarriage and a spontaneous abortion the same thing')",is spontaneous abortion the same as miscarriage,is a miscarriage and a spontaneous abortion the same thing,3,4,google,2026-03-12 19:58:43.266026,abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,is the same as miscarriage,a and a thing +abortion,"('spontaneous abortion vs induced abortion', 'spontaneous abortion and induced abortion')",spontaneous abortion vs induced abortion,spontaneous abortion and induced abortion,1,4,google,2026-03-12 19:58:44.103192,abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,vs induced,and +abortion,"('spontaneous abortion vs induced abortion', 'spontaneous abortion and induced abortion difference')",spontaneous abortion vs induced abortion,spontaneous abortion and induced abortion difference,2,4,google,2026-03-12 19:58:44.103192,abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,vs induced,and difference +abortion,"('spontaneous abortion vs induced abortion', 'spontaneous abortion and induced abortion similarities')",spontaneous abortion vs induced abortion,spontaneous abortion and induced abortion similarities,3,4,google,2026-03-12 19:58:44.103192,abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,vs induced,and similarities +abortion,"('spontaneous abortion vs induced abortion', 'abortion vs spontaneous abortion')",spontaneous abortion vs induced abortion,abortion vs spontaneous abortion,4,4,google,2026-03-12 19:58:44.103192,abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,vs induced,vs induced +abortion,"('spontaneous abortion vs induced abortion', 'induced abortion vs missed abortion')",spontaneous abortion vs induced abortion,induced abortion vs missed abortion,5,4,google,2026-03-12 19:58:44.103192,abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,vs induced,missed +abortion,"('spontaneous abortion vs induced abortion', 'spontaneous vs induced abortion')",spontaneous abortion vs induced abortion,spontaneous vs induced abortion,6,4,google,2026-03-12 19:58:44.103192,abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,vs induced,vs induced +abortion,"('spontaneous abortion or miscarriage definition', 'is spontaneous abortion the same as miscarriage')",spontaneous abortion or miscarriage definition,is spontaneous abortion the same as miscarriage,1,4,google,2026-03-12 19:58:45.193331,abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,or miscarriage definition,is the same as +abortion,"('spontaneous abortion or miscarriage definition', 'why is a miscarriage called a spontaneous abortion')",spontaneous abortion or miscarriage definition,why is a miscarriage called a spontaneous abortion,2,4,google,2026-03-12 19:58:45.193331,abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,or miscarriage definition,why is a called a +abortion,"('spontaneous abortion or miscarriage definition', 'spontaneous abortion vs miscarriage')",spontaneous abortion or miscarriage definition,spontaneous abortion vs miscarriage,3,4,google,2026-03-12 19:58:45.193331,abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,or miscarriage definition,vs +abortion,"('spontaneous abortion or miscarriage definition', 'spontaneous abortion vs abortion')",spontaneous abortion or miscarriage definition,spontaneous abortion vs abortion,4,4,google,2026-03-12 19:58:45.193331,abortion meaning in pregnancy,spontaneous abortion meaning in pregnancy,or miscarriage definition,vs +abortion,"('definition of abortion in ethiopia', 'abortion laws in ethiopia')",definition of abortion in ethiopia,abortion laws in ethiopia,1,4,google,2026-03-12 19:58:46.370711,abortion meaning in pregnancy,abortion meaning in pregnancy in hindi,definition of ethiopia,laws +abortion,"('definition of abortion in ethiopia', 'definition of abortion in indiana')",definition of abortion in ethiopia,definition of abortion in indiana,2,4,google,2026-03-12 19:58:46.370711,abortion meaning in pregnancy,abortion meaning in pregnancy in hindi,definition of ethiopia,indiana +abortion,"('definition of abortion in ethiopia', 'definition of ethiopia')",definition of abortion in ethiopia,definition of ethiopia,3,4,google,2026-03-12 19:58:46.370711,abortion meaning in pregnancy,abortion meaning in pregnancy in hindi,definition of ethiopia,definition of ethiopia +abortion,"('what is sepsis when pregnant', 'what causes sepsis when pregnant')",what is sepsis when pregnant,what causes sepsis when pregnant,1,4,google,2026-03-12 19:58:47.748344,abortion meaning in pregnancy,septic abortion meaning in pregnancy,what is sepsis when pregnant,causes +abortion,"('what is sepsis when pregnant', 'is sepsis dangerous in pregnancy')",what is sepsis when pregnant,is sepsis dangerous in pregnancy,2,4,google,2026-03-12 19:58:47.748344,abortion meaning in pregnancy,septic abortion meaning in pregnancy,what is sepsis when pregnant,dangerous in pregnancy +abortion,"('what is sepsis when pregnant', 'can you get sepsis while pregnant')",what is sepsis when pregnant,can you get sepsis while pregnant,3,4,google,2026-03-12 19:58:47.748344,abortion meaning in pregnancy,septic abortion meaning in pregnancy,what is sepsis when pregnant,can you get while +abortion,"('what is sepsis when pregnant', 'what happens if you get sepsis while pregnant')",what is sepsis when pregnant,what happens if you get sepsis while pregnant,4,4,google,2026-03-12 19:58:47.748344,abortion meaning in pregnancy,septic abortion meaning in pregnancy,what is sepsis when pregnant,happens if you get while +abortion,"('what is sepsis when pregnant', 'can sepsis affect pregnancy')",what is sepsis when pregnant,can sepsis affect pregnancy,5,4,google,2026-03-12 19:58:47.748344,abortion meaning in pregnancy,septic abortion meaning in pregnancy,what is sepsis when pregnant,can affect pregnancy +abortion,"('what is sepsis when pregnant', 'what causes sepsis in a pregnant woman')",what is sepsis when pregnant,what causes sepsis in a pregnant woman,6,4,google,2026-03-12 19:58:47.748344,abortion meaning in pregnancy,septic abortion meaning in pregnancy,what is sepsis when pregnant,causes in a woman +abortion,"('what is sepsis when pregnant', 'what is sepsis pregnancy')",what is sepsis when pregnant,what is sepsis pregnancy,7,4,google,2026-03-12 19:58:47.748344,abortion meaning in pregnancy,septic abortion meaning in pregnancy,what is sepsis when pregnant,pregnancy +abortion,"('septic pregnancy abortion', 'sepsis pregnancy abortion')",septic pregnancy abortion,sepsis pregnancy abortion,1,4,google,2026-03-12 19:58:48.644281,abortion meaning in pregnancy,septic abortion meaning in pregnancy,septic,sepsis +abortion,"('septic pregnancy abortion', 'septic pregnancy miscarriage')",septic pregnancy abortion,septic pregnancy miscarriage,2,4,google,2026-03-12 19:58:48.644281,abortion meaning in pregnancy,septic abortion meaning in pregnancy,septic,miscarriage +abortion,"('septic pregnancy abortion', 'types of septic abortion')",septic pregnancy abortion,types of septic abortion,3,4,google,2026-03-12 19:58:48.644281,abortion meaning in pregnancy,septic abortion meaning in pregnancy,septic,types of +abortion,"('septic pregnancy abortion', 'sepsis after abortion')",septic pregnancy abortion,sepsis after abortion,4,4,google,2026-03-12 19:58:48.644281,abortion meaning in pregnancy,septic abortion meaning in pregnancy,septic,sepsis after +abortion,"('septic pregnancy abortion', 'what is septic abortion')",septic pregnancy abortion,what is septic abortion,5,4,google,2026-03-12 19:58:48.644281,abortion meaning in pregnancy,septic abortion meaning in pregnancy,septic,what is +abortion,"('septic pregnancy abortion', 'most common cause of septic abortion')",septic pregnancy abortion,most common cause of septic abortion,6,4,google,2026-03-12 19:58:48.644281,abortion meaning in pregnancy,septic abortion meaning in pregnancy,septic,most common cause of +abortion,"('septic pregnancy abortion', 'septic pregnancies')",septic pregnancy abortion,septic pregnancies,7,4,google,2026-03-12 19:58:48.644281,abortion meaning in pregnancy,septic abortion meaning in pregnancy,septic,pregnancies +abortion,"('septic pregnancy abortion', 'septic pregnancy definition')",septic pregnancy abortion,septic pregnancy definition,8,4,google,2026-03-12 19:58:48.644281,abortion meaning in pregnancy,septic abortion meaning in pregnancy,septic,definition +abortion,"('septic pregnancy abortion', 'septic abortion acog')",septic pregnancy abortion,septic abortion acog,9,4,google,2026-03-12 19:58:48.644281,abortion meaning in pregnancy,septic abortion meaning in pregnancy,septic,acog +abortion,"('septic abortion ultrasound', 'septic abortion ultrasound findings')",septic abortion ultrasound,septic abortion ultrasound findings,1,4,google,2026-03-12 19:58:49.836051,abortion meaning in pregnancy,septic abortion meaning in pregnancy,ultrasound,findings +abortion,"('septic abortion ultrasound', 'septic abortion ultrasound radiopaedia')",septic abortion ultrasound,septic abortion ultrasound radiopaedia,2,4,google,2026-03-12 19:58:49.836051,abortion meaning in pregnancy,septic abortion meaning in pregnancy,ultrasound,radiopaedia +abortion,"('septic abortion ultrasound', 'types of abortion ultrasound')",septic abortion ultrasound,types of abortion ultrasound,3,4,google,2026-03-12 19:58:49.836051,abortion meaning in pregnancy,septic abortion meaning in pregnancy,ultrasound,types of +abortion,"('septic abortion ultrasound', 'septic abortion organisms')",septic abortion ultrasound,septic abortion organisms,4,4,google,2026-03-12 19:58:49.836051,abortion meaning in pregnancy,septic abortion meaning in pregnancy,ultrasound,organisms +abortion,"('septic abortion ultrasound', 'types of septic abortion')",septic abortion ultrasound,types of septic abortion,5,4,google,2026-03-12 19:58:49.836051,abortion meaning in pregnancy,septic abortion meaning in pregnancy,ultrasound,types of +abortion,"('septic abortion ultrasound', 'septic abortion criteria')",septic abortion ultrasound,septic abortion criteria,6,4,google,2026-03-12 19:58:49.836051,abortion meaning in pregnancy,septic abortion meaning in pregnancy,ultrasound,criteria +abortion,"('septic abortion ultrasound', 'most common cause of septic abortion')",septic abortion ultrasound,most common cause of septic abortion,7,4,google,2026-03-12 19:58:49.836051,abortion meaning in pregnancy,septic abortion meaning in pregnancy,ultrasound,most common cause of +abortion,"('septic abortion ultrasound', 'septic uterus abortion')",septic abortion ultrasound,septic uterus abortion,8,4,google,2026-03-12 19:58:49.836051,abortion meaning in pregnancy,septic abortion meaning in pregnancy,ultrasound,uterus +abortion,"('septic abortion ultrasound', 'septic abortion unit')",septic abortion ultrasound,septic abortion unit,9,4,google,2026-03-12 19:58:49.836051,abortion meaning in pregnancy,septic abortion meaning in pregnancy,ultrasound,unit +abortion,"('septic pregnancy definition', 'sepsis pregnancy definition')",septic pregnancy definition,sepsis pregnancy definition,1,4,google,2026-03-12 19:58:51.248844,abortion meaning in pregnancy,septic abortion meaning in pregnancy,definition,sepsis +abortion,"('septic pregnancy definition', 'septic during pregnancy')",septic pregnancy definition,septic during pregnancy,2,4,google,2026-03-12 19:58:51.248844,abortion meaning in pregnancy,septic abortion meaning in pregnancy,definition,during +abortion,"('septic pregnancy definition', 'what is sepsis when pregnant')",septic pregnancy definition,what is sepsis when pregnant,3,4,google,2026-03-12 19:58:51.248844,abortion meaning in pregnancy,septic abortion meaning in pregnancy,definition,what is sepsis when pregnant +abortion,"('septic pregnancy definition', 'how does sepsis affect pregnancy')",septic pregnancy definition,how does sepsis affect pregnancy,4,4,google,2026-03-12 19:58:51.248844,abortion meaning in pregnancy,septic abortion meaning in pregnancy,definition,how does sepsis affect +abortion,"('septic pregnancy definition', 'what is sepsis in pregnancy')",septic pregnancy definition,what is sepsis in pregnancy,5,4,google,2026-03-12 19:58:51.248844,abortion meaning in pregnancy,septic abortion meaning in pregnancy,definition,what is sepsis in +abortion,"('septic pregnancy definition', 'septic pregnancy symptoms')",septic pregnancy definition,septic pregnancy symptoms,6,4,google,2026-03-12 19:58:51.248844,abortion meaning in pregnancy,septic abortion meaning in pregnancy,definition,symptoms +abortion,"('septic pregnancy definition', 'septic pregnancy treatment')",septic pregnancy definition,septic pregnancy treatment,7,4,google,2026-03-12 19:58:51.248844,abortion meaning in pregnancy,septic abortion meaning in pregnancy,definition,treatment +abortion,"('oxford dictionary definition of abortion', 'oxford english dictionary definition of abortion')",oxford dictionary definition of abortion,oxford english dictionary definition of abortion,1,4,google,2026-03-12 19:58:52.049552,abortion meaning in english,abortion meaning in english oxford,dictionary definition of,english +abortion,"('oxford dictionary definition of abortion', 'abortion definition oxford')",oxford dictionary definition of abortion,abortion definition oxford,2,4,google,2026-03-12 19:58:52.049552,abortion meaning in english,abortion meaning in english oxford,dictionary definition of,dictionary definition of +abortion,"('oxford dictionary definition of abortion', 'what is the meaning of abortion in english')",oxford dictionary definition of abortion,what is the meaning of abortion in english,3,4,google,2026-03-12 19:58:52.049552,abortion meaning in english,abortion meaning in english oxford,dictionary definition of,what is the meaning in english +abortion,"('oxford dictionary definition of abortion', 'oxford english dictionary definition of health')",oxford dictionary definition of abortion,oxford english dictionary definition of health,4,4,google,2026-03-12 19:58:52.049552,abortion meaning in english,abortion meaning in english oxford,dictionary definition of,english health +abortion,"('oxford dictionary definition of abortion', 'oxford dictionary abortion')",oxford dictionary definition of abortion,oxford dictionary abortion,5,4,google,2026-03-12 19:58:52.049552,abortion meaning in english,abortion meaning in english oxford,dictionary definition of,dictionary definition of +abortion,"('abortion in english grammar', 'abortion meaning in english grammar')",abortion in english grammar,abortion meaning in english grammar,1,4,google,2026-03-12 19:58:53.204859,abortion meaning in english,abortion meaning in english grammar,grammar,meaning +abortion,"('abortion in english grammar', 'what is the meaning of abortion in english')",abortion in english grammar,what is the meaning of abortion in english,2,4,google,2026-03-12 19:58:53.204859,abortion meaning in english,abortion meaning in english grammar,grammar,what is the meaning of +abortion,"('abortion in english grammar', 'what is abortion article')",abortion in english grammar,what is abortion article,3,4,google,2026-03-12 19:58:53.204859,abortion meaning in english,abortion meaning in english grammar,grammar,what is article +abortion,"('abortion in english grammar', 'abortion grammar')",abortion in english grammar,abortion grammar,4,4,google,2026-03-12 19:58:53.204859,abortion meaning in english,abortion meaning in english grammar,grammar,grammar +abortion,"('abortion in english grammar', 'abortion in english common law')",abortion in english grammar,abortion in english common law,5,4,google,2026-03-12 19:58:53.204859,abortion meaning in english,abortion meaning in english grammar,grammar,common law +abortion,"('abortion in english grammar', 'aborto em ingles')",abortion in english grammar,aborto em ingles,6,4,google,2026-03-12 19:58:53.204859,abortion meaning in english,abortion meaning in english grammar,grammar,aborto em ingles +abortion,"('stop meaning in english synonyms', 'cease meaning in english synonyms')",stop meaning in english synonyms,cease meaning in english synonyms,1,4,google,2026-03-12 19:58:54.333464,abortion meaning in english,abort meaning in english synonyms,stop,cease +abortion,"('stop meaning in english synonyms', 'halt meaning in english synonyms')",stop meaning in english synonyms,halt meaning in english synonyms,2,4,google,2026-03-12 19:58:54.333464,abortion meaning in english,abort meaning in english synonyms,stop,halt +abortion,"('stop meaning in english synonyms', 'prevent meaning in english synonyms')",stop meaning in english synonyms,prevent meaning in english synonyms,3,4,google,2026-03-12 19:58:54.333464,abortion meaning in english,abort meaning in english synonyms,stop,prevent +abortion,"('stop meaning in english synonyms', 'leave meaning in english synonyms')",stop meaning in english synonyms,leave meaning in english synonyms,4,4,google,2026-03-12 19:58:54.333464,abortion meaning in english,abort meaning in english synonyms,stop,leave +abortion,"('stop meaning in english synonyms', 'what is another name for means')",stop meaning in english synonyms,what is another name for means,5,4,google,2026-03-12 19:58:54.333464,abortion meaning in english,abort meaning in english synonyms,stop,what is another name for means +abortion,"('stop meaning in english synonyms', 'close synonyms in english')",stop meaning in english synonyms,close synonyms in english,6,4,google,2026-03-12 19:58:54.333464,abortion meaning in english,abort meaning in english synonyms,stop,close +abortion,"('stop meaning in english synonyms', 'word meaning stop')",stop meaning in english synonyms,word meaning stop,7,4,google,2026-03-12 19:58:54.333464,abortion meaning in english,abort meaning in english synonyms,stop,word +abortion,"('stop meaning in english synonyms', 'stop meaning slang')",stop meaning in english synonyms,stop meaning slang,8,4,google,2026-03-12 19:58:54.333464,abortion meaning in english,abort meaning in english synonyms,stop,slang +abortion,"('stop meaning in english synonyms', 'another meaning for stop')",stop meaning in english synonyms,another meaning for stop,9,4,google,2026-03-12 19:58:54.333464,abortion meaning in english,abort meaning in english synonyms,stop,another for +abortion,"('terminate meaning in english synonyms', 'close meaning in english synonyms')",terminate meaning in english synonyms,close meaning in english synonyms,1,4,google,2026-03-12 19:58:55.606390,abortion meaning in english,abort meaning in english synonyms,terminate,close +abortion,"('terminate meaning in english synonyms', 'stop meaning in english synonyms')",terminate meaning in english synonyms,stop meaning in english synonyms,2,4,google,2026-03-12 19:58:55.606390,abortion meaning in english,abort meaning in english synonyms,terminate,stop +abortion,"('terminate meaning in english synonyms', 'abort meaning in english synonyms')",terminate meaning in english synonyms,abort meaning in english synonyms,3,4,google,2026-03-12 19:58:55.606390,abortion meaning in english,abort meaning in english synonyms,terminate,abort +abortion,"('terminate meaning in english synonyms', 'exit meaning in english synonyms')",terminate meaning in english synonyms,exit meaning in english synonyms,4,4,google,2026-03-12 19:58:55.606390,abortion meaning in english,abort meaning in english synonyms,terminate,exit +abortion,"('terminate meaning in english synonyms', 'kill meaning in english synonyms')",terminate meaning in english synonyms,kill meaning in english synonyms,5,4,google,2026-03-12 19:58:55.606390,abortion meaning in english,abort meaning in english synonyms,terminate,kill +abortion,"('terminate meaning in english synonyms', 'cancel meaning in english synonyms')",terminate meaning in english synonyms,cancel meaning in english synonyms,6,4,google,2026-03-12 19:58:55.606390,abortion meaning in english,abort meaning in english synonyms,terminate,cancel +abortion,"('terminate meaning in english synonyms', 'terminate meaning in english')",terminate meaning in english synonyms,terminate meaning in english,7,4,google,2026-03-12 19:58:55.606390,abortion meaning in english,abort meaning in english synonyms,terminate,terminate +abortion,"('terminate meaning in english synonyms', 'terminate synonyms in english')",terminate meaning in english synonyms,terminate synonyms in english,8,4,google,2026-03-12 19:58:55.606390,abortion meaning in english,abort meaning in english synonyms,terminate,terminate +abortion,"('terminate meaning in english synonyms', 'terminate in other words')",terminate meaning in english synonyms,terminate in other words,9,4,google,2026-03-12 19:58:55.606390,abortion meaning in english,abort meaning in english synonyms,terminate,other words +abortion,"('termination meaning in english', 'termination meaning in english with example')",termination meaning in english,termination meaning in english with example,1,4,google,2026-03-12 19:58:56.711493,abortion meaning in english,abort meaning in english synonyms,termination,with example +abortion,"('termination meaning in english', 'termination meaning in english grammar')",termination meaning in english,termination meaning in english grammar,2,4,google,2026-03-12 19:58:56.711493,abortion meaning in english,abort meaning in english synonyms,termination,grammar +abortion,"('termination meaning in english', 'termination meaning in english oxford')",termination meaning in english,termination meaning in english oxford,3,4,google,2026-03-12 19:58:56.711493,abortion meaning in english,abort meaning in english synonyms,termination,oxford +abortion,"('termination meaning in english', 'termination meaning in english synonyms')",termination meaning in english,termination meaning in english synonyms,4,4,google,2026-03-12 19:58:56.711493,abortion meaning in english,abort meaning in english synonyms,termination,synonyms +abortion,"('termination meaning in english', 'terminate meaning in english hindi')",termination meaning in english,terminate meaning in english hindi,5,4,google,2026-03-12 19:58:56.711493,abortion meaning in english,abort meaning in english synonyms,termination,terminate hindi +abortion,"('termination meaning in english', 'cessation meaning in english')",termination meaning in english,cessation meaning in english,6,4,google,2026-03-12 19:58:56.711493,abortion meaning in english,abort meaning in english synonyms,termination,cessation +abortion,"('termination meaning in english', 'abortion meaning in english')",termination meaning in english,abortion meaning in english,7,4,google,2026-03-12 19:58:56.711493,abortion meaning in english,abort meaning in english synonyms,termination,abortion +abortion,"('termination meaning in english', 'dismissal meaning in english')",termination meaning in english,dismissal meaning in english,8,4,google,2026-03-12 19:58:56.711493,abortion meaning in english,abort meaning in english synonyms,termination,dismissal +abortion,"('termination meaning in english', 'cessation meaning in english with example')",termination meaning in english,cessation meaning in english with example,9,4,google,2026-03-12 19:58:56.711493,abortion meaning in english,abort meaning in english synonyms,termination,cessation with example +abortion,"('terminated meaning synonym', 'stopped meaning synonyms')",terminated meaning synonym,stopped meaning synonyms,1,4,google,2026-03-12 19:58:57.947760,abortion meaning in english,abort meaning in english synonyms,terminated synonym,stopped synonyms +abortion,"('terminated meaning synonym', 'dismissed meaning synonyms')",terminated meaning synonym,dismissed meaning synonyms,2,4,google,2026-03-12 19:58:57.947760,abortion meaning in english,abort meaning in english synonyms,terminated synonym,dismissed synonyms +abortion,"('terminated meaning synonym', 'fired meaning synonym')",terminated meaning synonym,fired meaning synonym,3,4,google,2026-03-12 19:58:57.947760,abortion meaning in english,abort meaning in english synonyms,terminated synonym,fired +abortion,"('terminated meaning synonym', 'terminated meaning in telugu synonyms')",terminated meaning synonym,terminated meaning in telugu synonyms,4,4,google,2026-03-12 19:58:57.947760,abortion meaning in english,abort meaning in english synonyms,terminated synonym,in telugu synonyms +abortion,"('terminated meaning synonym', 'terminated meaning in malayalam synonyms')",terminated meaning synonym,terminated meaning in malayalam synonyms,5,4,google,2026-03-12 19:58:57.947760,abortion meaning in english,abort meaning in english synonyms,terminated synonym,in malayalam synonyms +abortion,"('terminated meaning synonym', 'terminated meaning in english synonyms')",terminated meaning synonym,terminated meaning in english synonyms,6,4,google,2026-03-12 19:58:57.947760,abortion meaning in english,abort meaning in english synonyms,terminated synonym,in english synonyms +abortion,"('terminated meaning synonym', 'what is the meaning terminated')",terminated meaning synonym,what is the meaning terminated,7,4,google,2026-03-12 19:58:57.947760,abortion meaning in english,abort meaning in english synonyms,terminated synonym,what is the +abortion,"('terminated meaning synonym', 'terminated synonym')",terminated meaning synonym,terminated synonym,8,4,google,2026-03-12 19:58:57.947760,abortion meaning in english,abort meaning in english synonyms,terminated synonym,terminated synonym +abortion,"('terminated meaning synonym', 'terminated meaning job')",terminated meaning synonym,terminated meaning job,9,4,google,2026-03-12 19:58:57.947760,abortion meaning in english,abort meaning in english synonyms,terminated synonym,job +abortion,"('termination synonyms in english', 'cancellation synonyms in english')",termination synonyms in english,cancellation synonyms in english,1,4,google,2026-03-12 19:58:59.056571,abortion meaning in english,abort meaning in english synonyms,termination,cancellation +abortion,"('termination synonyms in english', 'abortion synonyms in english')",termination synonyms in english,abortion synonyms in english,2,4,google,2026-03-12 19:58:59.056571,abortion meaning in english,abort meaning in english synonyms,termination,abortion +abortion,"('termination synonyms in english', 'terminate ka synonyms in english')",termination synonyms in english,terminate ka synonyms in english,3,4,google,2026-03-12 19:58:59.056571,abortion meaning in english,abort meaning in english synonyms,termination,terminate ka +abortion,"('termination synonyms in english', 'whats another word for termination')",termination synonyms in english,whats another word for termination,4,4,google,2026-03-12 19:58:59.056571,abortion meaning in english,abort meaning in english synonyms,termination,whats another word for +abortion,"('termination synonyms in english', 'termination synonyms and antonyms')",termination synonyms in english,termination synonyms and antonyms,5,4,google,2026-03-12 19:58:59.056571,abortion meaning in english,abort meaning in english synonyms,termination,and antonyms +abortion,"('termination synonyms in english', 'termination synonym employment')",termination synonyms in english,termination synonym employment,6,4,google,2026-03-12 19:58:59.056571,abortion meaning in english,abort meaning in english synonyms,termination,synonym employment +abortion,"('termination synonyms in english', 'termination synonym')",termination synonyms in english,termination synonym,7,4,google,2026-03-12 19:58:59.056571,abortion meaning in english,abort meaning in english synonyms,termination,synonym +abortion,"('termination synonyms in english', 'terminated meaning synonyms')",termination synonyms in english,terminated meaning synonyms,8,4,google,2026-03-12 19:58:59.056571,abortion meaning in english,abort meaning in english synonyms,termination,terminated meaning +abortion,"('abort synonyms and antonyms', 'stop synonyms and antonyms')",abort synonyms and antonyms,stop synonyms and antonyms,1,4,google,2026-03-12 19:59:00.020254,abortion meaning in english,abort meaning in english synonyms,and antonyms,stop +abortion,"('abort synonyms and antonyms', 'terminate synonyms and antonyms')",abort synonyms and antonyms,terminate synonyms and antonyms,2,4,google,2026-03-12 19:59:00.020254,abortion meaning in english,abort meaning in english synonyms,and antonyms,terminate +abortion,"('abort synonyms and antonyms', 'cancel synonyms and antonyms')",abort synonyms and antonyms,cancel synonyms and antonyms,3,4,google,2026-03-12 19:59:00.020254,abortion meaning in english,abort meaning in english synonyms,and antonyms,cancel +abortion,"('abort synonyms and antonyms', 'abort antonym')",abort synonyms and antonyms,abort antonym,4,4,google,2026-03-12 19:59:00.020254,abortion meaning in english,abort meaning in english synonyms,and antonyms,antonym +abortion,"('abort synonyms and antonyms', 'abort synonyms')",abort synonyms and antonyms,abort synonyms,5,4,google,2026-03-12 19:59:00.020254,abortion meaning in english,abort meaning in english synonyms,and antonyms,and antonyms +abortion,"('abort synonyms', 'abort synonyms in english')",abort synonyms,abort synonyms in english,1,4,google,2026-03-12 19:59:01.424318,abortion meaning in english,abort meaning in english synonyms,abort synonyms,in english +abortion,"('abort synonyms', 'abort synonyms and antonyms')",abort synonyms,abort synonyms and antonyms,2,4,google,2026-03-12 19:59:01.424318,abortion meaning in english,abort meaning in english synonyms,abort synonyms,and antonyms +abortion,"('abort synonyms', 'abort synonyms 2 words')",abort synonyms,abort synonyms 2 words,3,4,google,2026-03-12 19:59:01.424318,abortion meaning in english,abort meaning in english synonyms,abort synonyms,2 words +abortion,"('abort synonyms', 'abortion synonyms examples')",abort synonyms,abortion synonyms examples,4,4,google,2026-03-12 19:59:01.424318,abortion meaning in english,abort meaning in english synonyms,abort synonyms,abortion examples +abortion,"('abort synonyms', 'abortion synonyms in hindi')",abort synonyms,abortion synonyms in hindi,5,4,google,2026-03-12 19:59:01.424318,abortion meaning in english,abort meaning in english synonyms,abort synonyms,abortion in hindi +abortion,"('abort synonyms', 'abort meaning synonyms')",abort synonyms,abort meaning synonyms,6,4,google,2026-03-12 19:59:01.424318,abortion meaning in english,abort meaning in english synonyms,abort synonyms,meaning +abortion,"('abort synonyms', 'mission abort synonyms')",abort synonyms,mission abort synonyms,7,4,google,2026-03-12 19:59:01.424318,abortion meaning in english,abort meaning in english synonyms,abort synonyms,mission +abortion,"('abort synonyms', 'short friendship synonyms')",abort synonyms,short friendship synonyms,8,4,google,2026-03-12 19:59:01.424318,abortion meaning in english,abort meaning in english synonyms,abort synonyms,short friendship +abortion,"('abort synonyms', 'abort synonyms cancel')",abort synonyms,abort synonyms cancel,9,4,google,2026-03-12 19:59:01.424318,abortion meaning in english,abort meaning in english synonyms,abort synonyms,cancel +abortion,"('abort definition english', 'abort in english')",abort definition english,abort in english,1,4,google,2026-03-12 19:59:02.521997,abortion meaning in english,abort meaning in english synonyms,definition,in +abortion,"('abort definition english', 'abort meaning english')",abort definition english,abort meaning english,2,4,google,2026-03-12 19:59:02.521997,abortion meaning in english,abort meaning in english synonyms,definition,meaning +abortion,"('abort definition english', 'stop definition english')",abort definition english,stop definition english,3,4,google,2026-03-12 19:59:02.521997,abortion meaning in english,abort meaning in english synonyms,definition,stop +abortion,"('abort definition english', 'what is abort mean')",abort definition english,what is abort mean,4,4,google,2026-03-12 19:59:02.521997,abortion meaning in english,abort meaning in english synonyms,definition,what is mean +abortion,"('abort definition english', 'abort definition meaning')",abort definition english,abort definition meaning,5,4,google,2026-03-12 19:59:02.521997,abortion meaning in english,abort meaning in english synonyms,definition,meaning +abortion,"('abort definition english', 'abort definition verb')",abort definition english,abort definition verb,6,4,google,2026-03-12 19:59:02.521997,abortion meaning in english,abort meaning in english synonyms,definition,verb +abortion,"('abort definition english', 'abort definition noun')",abort definition english,abort definition noun,7,4,google,2026-03-12 19:59:02.521997,abortion meaning in english,abort meaning in english synonyms,definition,noun +abortion,"('abort definition english', ""abort definition webster's"")",abort definition english,abort definition webster's,8,4,google,2026-03-12 19:59:02.521997,abortion meaning in english,abort meaning in english synonyms,definition,webster's +abortion,"('abort meaning', 'abort meaning in english')",abort meaning,abort meaning in english,1,4,google,2026-03-12 19:59:03.439272,abortion meaning in english,abort meaning in english synonyms,abort synonyms,in english +abortion,"('abort meaning', 'abort meaning in hindi')",abort meaning,abort meaning in hindi,2,4,google,2026-03-12 19:59:03.439272,abortion meaning in english,abort meaning in english synonyms,abort synonyms,in hindi +abortion,"('abort meaning', 'abort meaning in bengali')",abort meaning,abort meaning in bengali,3,4,google,2026-03-12 19:59:03.439272,abortion meaning in english,abort meaning in english synonyms,abort synonyms,in bengali +abortion,"('abort meaning', 'abort meaning in urdu')",abort meaning,abort meaning in urdu,4,4,google,2026-03-12 19:59:03.439272,abortion meaning in english,abort meaning in english synonyms,abort synonyms,in urdu +abortion,"('abort meaning', 'abort meaning in telugu')",abort meaning,abort meaning in telugu,5,4,google,2026-03-12 19:59:03.439272,abortion meaning in english,abort meaning in english synonyms,abort synonyms,in telugu +abortion,"('abort meaning', 'abort meaning in tamil')",abort meaning,abort meaning in tamil,6,4,google,2026-03-12 19:59:03.439272,abortion meaning in english,abort meaning in english synonyms,abort synonyms,in tamil +abortion,"('abort meaning', 'abort meaning in marathi')",abort meaning,abort meaning in marathi,7,4,google,2026-03-12 19:59:03.439272,abortion meaning in english,abort meaning in english synonyms,abort synonyms,in marathi +abortion,"('abort meaning', 'abort meaning in kannada')",abort meaning,abort meaning in kannada,8,4,google,2026-03-12 19:59:03.439272,abortion meaning in english,abort meaning in english synonyms,abort synonyms,in kannada +abortion,"('abort meaning', 'abort meaning in malayalam')",abort meaning,abort meaning in malayalam,9,4,google,2026-03-12 19:59:03.439272,abortion meaning in english,abort meaning in english synonyms,abort synonyms,in malayalam +abortion,"('threatened abortion in hindi meaning in english', 'what is the meaning of abortion in english')",threatened abortion in hindi meaning in english,what is the meaning of abortion in english,1,4,google,2026-03-12 19:59:04.339050,abortion meaning in english,threatened abortion meaning in english,hindi,what is the of +abortion,"('threatened abortion in hindi meaning in english', 'what do you mean by threatened abortion')",threatened abortion in hindi meaning in english,what do you mean by threatened abortion,2,4,google,2026-03-12 19:59:04.339050,abortion meaning in english,threatened abortion meaning in english,hindi,what do you mean by +abortion,"('threatened abortion in hindi meaning in english', 'threatened abortion meaning in tamil')",threatened abortion in hindi meaning in english,threatened abortion meaning in tamil,3,4,google,2026-03-12 19:59:04.339050,abortion meaning in english,threatened abortion meaning in english,hindi,tamil +abortion,"('threatened abortion in hindi meaning in english', 'apa itu threatened abortion')",threatened abortion in hindi meaning in english,apa itu threatened abortion,4,4,google,2026-03-12 19:59:04.339050,abortion meaning in english,threatened abortion meaning in english,hindi,apa itu +abortion,"('threatened abortion in hindi meaning in english', 'threatened abortion medical term')",threatened abortion in hindi meaning in english,threatened abortion medical term,5,4,google,2026-03-12 19:59:04.339050,abortion meaning in english,threatened abortion meaning in english,hindi,medical term +abortion,"('threatened abortion in hindi meaning in english', 'threatened abortion definition')",threatened abortion in hindi meaning in english,threatened abortion definition,6,4,google,2026-03-12 19:59:04.339050,abortion meaning in english,threatened abortion meaning in english,hindi,definition +abortion,"('threatened abortion in hindi meaning in english', 'threatened abortion in early pregnancy')",threatened abortion in hindi meaning in english,threatened abortion in early pregnancy,7,4,google,2026-03-12 19:59:04.339050,abortion meaning in english,threatened abortion meaning in english,hindi,early pregnancy +abortion,"('threatened abortion in hindi meaning in english', 'threatened abortion vs inevitable abortion')",threatened abortion in hindi meaning in english,threatened abortion vs inevitable abortion,8,4,google,2026-03-12 19:59:04.339050,abortion meaning in english,threatened abortion meaning in english,hindi,vs inevitable +abortion,"('threatened abortion in hindi meaning in english', 'threatened abortion bangla')",threatened abortion in hindi meaning in english,threatened abortion bangla,9,4,google,2026-03-12 19:59:04.339050,abortion meaning in english,threatened abortion meaning in english,hindi,bangla +abortion,"('threatened abortion meaning in tamil', 'threatened abortion meaning in tamil examples')",threatened abortion meaning in tamil,threatened abortion meaning in tamil examples,1,4,google,2026-03-12 19:59:05.717834,abortion meaning in english,threatened abortion meaning in english,tamil,examples +abortion,"('threatened abortion meaning in tamil', 'miscarriage threatened abortion meaning in tamil')",threatened abortion meaning in tamil,miscarriage threatened abortion meaning in tamil,2,4,google,2026-03-12 19:59:05.717834,abortion meaning in english,threatened abortion meaning in english,tamil,miscarriage +abortion,"('threatened abortion meaning in tamil', 'inevitable abortion meaning in tamil')",threatened abortion meaning in tamil,inevitable abortion meaning in tamil,3,4,google,2026-03-12 19:59:05.717834,abortion meaning in english,threatened abortion meaning in english,tamil,inevitable +abortion,"('threatened abortion meaning in tamil', 'what do you mean by threatened abortion')",threatened abortion meaning in tamil,what do you mean by threatened abortion,4,4,google,2026-03-12 19:59:05.717834,abortion meaning in english,threatened abortion meaning in english,tamil,what do you mean by +abortion,"('threatened abortion meaning in tamil', 'what is threatened abortion')",threatened abortion meaning in tamil,what is threatened abortion,5,4,google,2026-03-12 19:59:05.717834,abortion meaning in english,threatened abortion meaning in english,tamil,what is +abortion,"('threatened abortion meaning in tamil', 'what is threatened abortion in pregnancy')",threatened abortion meaning in tamil,what is threatened abortion in pregnancy,6,4,google,2026-03-12 19:59:05.717834,abortion meaning in english,threatened abortion meaning in english,tamil,what is pregnancy +abortion,"('threatened abortion meaning in tamil', 'threatened abortion bangla')",threatened abortion meaning in tamil,threatened abortion bangla,7,4,google,2026-03-12 19:59:05.717834,abortion meaning in english,threatened abortion meaning in english,tamil,bangla +abortion,"('threatened abortion meaning in tamil', 'threatened abortion definition')",threatened abortion meaning in tamil,threatened abortion definition,8,4,google,2026-03-12 19:59:05.717834,abortion meaning in english,threatened abortion meaning in english,tamil,definition +abortion,"('threatened abortion meaning in tamil', 'threatened abortion medical term')",threatened abortion meaning in tamil,threatened abortion medical term,9,4,google,2026-03-12 19:59:05.717834,abortion meaning in english,threatened abortion meaning in english,tamil,medical term +abortion,"('threatening abortion meaning', 'threatening abortion meaning in hindi')",threatening abortion meaning,threatening abortion meaning in hindi,1,4,google,2026-03-12 19:59:06.576172,abortion meaning in english,threatened abortion meaning in english,threatening,in hindi +abortion,"('threatening abortion meaning', 'threatened abortion meaning in english')",threatening abortion meaning,threatened abortion meaning in english,2,4,google,2026-03-12 19:59:06.576172,abortion meaning in english,threatened abortion meaning in english,threatening,threatened in english +abortion,"('threatening abortion meaning', 'threatened abortion meaning in tagalog')",threatening abortion meaning,threatened abortion meaning in tagalog,3,4,google,2026-03-12 19:59:06.576172,abortion meaning in english,threatened abortion meaning in english,threatening,threatened in tagalog +abortion,"('threatening abortion meaning', 'threatened abortion meaning in marathi ppt')",threatening abortion meaning,threatened abortion meaning in marathi ppt,4,4,google,2026-03-12 19:59:06.576172,abortion meaning in english,threatened abortion meaning in english,threatening,threatened in marathi ppt +abortion,"('threatening abortion meaning', 'threatened abortion meaning in urdu pdf')",threatening abortion meaning,threatened abortion meaning in urdu pdf,5,4,google,2026-03-12 19:59:06.576172,abortion meaning in english,threatened abortion meaning in english,threatening,threatened in urdu pdf +abortion,"('threatening abortion meaning', 'threatened abortion meaning in pregnancy')",threatening abortion meaning,threatened abortion meaning in pregnancy,6,4,google,2026-03-12 19:59:06.576172,abortion meaning in english,threatened abortion meaning in english,threatening,threatened in pregnancy +abortion,"('threatening abortion meaning', 'threatened abortion meaning tagalog pregnancy')",threatening abortion meaning,threatened abortion meaning tagalog pregnancy,7,4,google,2026-03-12 19:59:06.576172,abortion meaning in english,threatened abortion meaning in english,threatening,threatened tagalog pregnancy +abortion,"('threatening abortion meaning', 'threatened abortion meaning in gujarati wikipedia')",threatening abortion meaning,threatened abortion meaning in gujarati wikipedia,8,4,google,2026-03-12 19:59:06.576172,abortion meaning in english,threatened abortion meaning in english,threatening,threatened in gujarati wikipedia +abortion,"('threatening abortion meaning', 'threatened abortion meaning in kannada pdf')",threatening abortion meaning,threatened abortion meaning in kannada pdf,9,4,google,2026-03-12 19:59:06.576172,abortion meaning in english,threatened abortion meaning in english,threatening,threatened in kannada pdf +abortion,"('spontaneous abortion terminology', 'spontaneous abortion definition')",spontaneous abortion terminology,spontaneous abortion definition,1,4,google,2026-03-12 19:59:07.980959,abortion meaning in english,spontaneous abortion meaning in english,terminology,definition +abortion,"('spontaneous abortion terminology', 'spontaneous abortion definition in hindi')",spontaneous abortion terminology,spontaneous abortion definition in hindi,2,4,google,2026-03-12 19:59:07.980959,abortion meaning in english,spontaneous abortion meaning in english,terminology,definition in hindi +abortion,"('spontaneous abortion terminology', 'spontaneous abortion definition according to who')",spontaneous abortion terminology,spontaneous abortion definition according to who,3,4,google,2026-03-12 19:59:07.980959,abortion meaning in english,spontaneous abortion meaning in english,terminology,definition according to who +abortion,"('spontaneous abortion terminology', 'spontaneous abortion definition acog')",spontaneous abortion terminology,spontaneous abortion definition acog,4,4,google,2026-03-12 19:59:07.980959,abortion meaning in english,spontaneous abortion meaning in english,terminology,definition acog +abortion,"('spontaneous abortion terminology', 'spontaneous abortion definition ppt')",spontaneous abortion terminology,spontaneous abortion definition ppt,5,4,google,2026-03-12 19:59:07.980959,abortion meaning in english,spontaneous abortion meaning in english,terminology,definition ppt +abortion,"('spontaneous abortion terminology', 'spontaneous abortion definition in obg')",spontaneous abortion terminology,spontaneous abortion definition in obg,6,4,google,2026-03-12 19:59:07.980959,abortion meaning in english,spontaneous abortion meaning in english,terminology,definition in obg +abortion,"('spontaneous abortion terminology', 'spontaneous abortion definition simple')",spontaneous abortion terminology,spontaneous abortion definition simple,7,4,google,2026-03-12 19:59:07.980959,abortion meaning in english,spontaneous abortion meaning in english,terminology,definition simple +abortion,"('spontaneous abortion terminology', 'spontaneous abortion medical terminology')",spontaneous abortion terminology,spontaneous abortion medical terminology,8,4,google,2026-03-12 19:59:07.980959,abortion meaning in english,spontaneous abortion meaning in english,terminology,medical +abortion,"('spontaneous abortion terminology', 'what is a spontaneous abortion mean')",spontaneous abortion terminology,what is a spontaneous abortion mean,9,4,google,2026-03-12 19:59:07.980959,abortion meaning in english,spontaneous abortion meaning in english,terminology,what is a mean +abortion,"('induced abortion meaning', 'induced abortion meaning in hindi')",induced abortion meaning,induced abortion meaning in hindi,1,4,google,2026-03-12 19:59:09.349774,abortion meaning in english,induced abortion meaning in english,induced,in hindi +abortion,"('induced abortion meaning', 'induced abortion meaning in telugu')",induced abortion meaning,induced abortion meaning in telugu,2,4,google,2026-03-12 19:59:09.349774,abortion meaning in english,induced abortion meaning in english,induced,in telugu +abortion,"('induced abortion meaning', 'induced abortion meaning in bengali')",induced abortion meaning,induced abortion meaning in bengali,3,4,google,2026-03-12 19:59:09.349774,abortion meaning in english,induced abortion meaning in english,induced,in bengali +abortion,"('induced abortion meaning', 'induced abortion meaning in marathi')",induced abortion meaning,induced abortion meaning in marathi,4,4,google,2026-03-12 19:59:09.349774,abortion meaning in english,induced abortion meaning in english,induced,in marathi +abortion,"('induced abortion meaning', 'induced abortion meaning in tamil')",induced abortion meaning,induced abortion meaning in tamil,5,4,google,2026-03-12 19:59:09.349774,abortion meaning in english,induced abortion meaning in english,induced,in tamil +abortion,"('induced abortion meaning', 'induced abortion meaning in english')",induced abortion meaning,induced abortion meaning in english,6,4,google,2026-03-12 19:59:09.349774,abortion meaning in english,induced abortion meaning in english,induced,in english +abortion,"('induced abortion meaning', 'induced abortion meaning in urdu')",induced abortion meaning,induced abortion meaning in urdu,7,4,google,2026-03-12 19:59:09.349774,abortion meaning in english,induced abortion meaning in english,induced,in urdu +abortion,"('induced abortion meaning', 'induced abortion meaning in malayalam')",induced abortion meaning,induced abortion meaning in malayalam,8,4,google,2026-03-12 19:59:09.349774,abortion meaning in english,induced abortion meaning in english,induced,in malayalam +abortion,"('induced abortion meaning', 'induced abortion meaning in kannada')",induced abortion meaning,induced abortion meaning in kannada,9,4,google,2026-03-12 19:59:09.349774,abortion meaning in english,induced abortion meaning in english,induced,in kannada +abortion,"('induced abortion meaning in urdu', 'spontaneous abortion meaning in urdu')",induced abortion meaning in urdu,spontaneous abortion meaning in urdu,1,4,google,2026-03-12 19:59:10.555519,abortion meaning in english,induced abortion meaning in english,urdu,spontaneous +abortion,"('induced abortion meaning in urdu', 'induced abortion meaning in english')",induced abortion meaning in urdu,induced abortion meaning in english,2,4,google,2026-03-12 19:59:10.555519,abortion meaning in english,induced abortion meaning in english,urdu,english +abortion,"('induced abortion meaning in urdu', 'induced abortion meaning')",induced abortion meaning in urdu,induced abortion meaning,3,4,google,2026-03-12 19:59:10.555519,abortion meaning in english,induced abortion meaning in english,urdu,urdu +abortion,"('induced abortion meaning in urdu', 'what is the meaning of abortion in english')",induced abortion meaning in urdu,what is the meaning of abortion in english,4,4,google,2026-03-12 19:59:10.555519,abortion meaning in english,induced abortion meaning in english,urdu,what is the of english +abortion,"('induced abortion meaning in urdu', 'abortion definition in india')",induced abortion meaning in urdu,abortion definition in india,5,4,google,2026-03-12 19:59:10.555519,abortion meaning in english,induced abortion meaning in english,urdu,definition india +abortion,"('induced abortion meaning in urdu', 'induced abortion medical definition')",induced abortion meaning in urdu,induced abortion medical definition,6,4,google,2026-03-12 19:59:10.555519,abortion meaning in english,induced abortion meaning in english,urdu,medical definition +abortion,"('induced abortion meaning in urdu', 'induced abortion definition dictionary')",induced abortion meaning in urdu,induced abortion definition dictionary,7,4,google,2026-03-12 19:59:10.555519,abortion meaning in english,induced abortion meaning in english,urdu,definition dictionary +abortion,"('incomplete abortion meaning in english', 'spontaneous abortion meaning in english')",incomplete abortion meaning in english,spontaneous abortion meaning in english,1,4,google,2026-03-12 19:59:11.428443,abortion meaning in english,missed abortion meaning in english,incomplete,spontaneous +abortion,"('incomplete abortion meaning in english', 'missed abortion meaning in english')",incomplete abortion meaning in english,missed abortion meaning in english,2,4,google,2026-03-12 19:59:11.428443,abortion meaning in english,missed abortion meaning in english,incomplete,missed +abortion,"('incomplete abortion meaning in english', 'inevitable abortion meaning in english')",incomplete abortion meaning in english,inevitable abortion meaning in english,3,4,google,2026-03-12 19:59:11.428443,abortion meaning in english,missed abortion meaning in english,incomplete,inevitable +abortion,"('incomplete abortion meaning in english', 'what is a incomplete abortion')",incomplete abortion meaning in english,what is a incomplete abortion,4,4,google,2026-03-12 19:59:11.428443,abortion meaning in english,missed abortion meaning in english,incomplete,what is a +abortion,"('incomplete abortion meaning in english', 'what does it mean to have an incomplete abortion')",incomplete abortion meaning in english,what does it mean to have an incomplete abortion,5,4,google,2026-03-12 19:59:11.428443,abortion meaning in english,missed abortion meaning in english,incomplete,what does it mean to have an +abortion,"('incomplete abortion meaning in english', 'incomplete abortion meaning in tamil')",incomplete abortion meaning in english,incomplete abortion meaning in tamil,6,4,google,2026-03-12 19:59:11.428443,abortion meaning in english,missed abortion meaning in english,incomplete,tamil +abortion,"('incomplete abortion meaning in english', 'incomplete abortion definition')",incomplete abortion meaning in english,incomplete abortion definition,7,4,google,2026-03-12 19:59:11.428443,abortion meaning in english,missed abortion meaning in english,incomplete,definition +abortion,"('incomplete abortion meaning in english', 'incomplete abortion miscarriage')",incomplete abortion meaning in english,incomplete abortion miscarriage,8,4,google,2026-03-12 19:59:11.428443,abortion meaning in english,missed abortion meaning in english,incomplete,miscarriage +abortion,"('incomplete abortion meaning in english', 'incomplete abortion procedure')",incomplete abortion meaning in english,incomplete abortion procedure,9,4,google,2026-03-12 19:59:11.428443,abortion meaning in english,missed abortion meaning in english,incomplete,procedure +abortion,"('missed abortion medical abbreviation', 'missed ab medical abbreviation')",missed abortion medical abbreviation,missed ab medical abbreviation,1,4,google,2026-03-12 19:59:12.801902,abortion meaning in english,missed abortion meaning in english,medical abbreviation,ab +abortion,"('missed abortion medical abbreviation', 'spontaneous abortion medical abbreviation')",missed abortion medical abbreviation,spontaneous abortion medical abbreviation,2,4,google,2026-03-12 19:59:12.801902,abortion meaning in english,missed abortion meaning in english,medical abbreviation,spontaneous +abortion,"('missed abortion medical abbreviation', 'what is a missed abortion in medical terms')",missed abortion medical abbreviation,what is a missed abortion in medical terms,3,4,google,2026-03-12 19:59:12.801902,abortion meaning in english,missed abortion meaning in english,medical abbreviation,what is a in terms +abortion,"('missed abortion medical abbreviation', 'missed abortion abbreviation')",missed abortion medical abbreviation,missed abortion abbreviation,4,4,google,2026-03-12 19:59:12.801902,abortion meaning in english,missed abortion meaning in english,medical abbreviation,medical abbreviation +abortion,"('missed abortion medical abbreviation', 'explain missed abortion')",missed abortion medical abbreviation,explain missed abortion,5,4,google,2026-03-12 19:59:12.801902,abortion meaning in english,missed abortion meaning in english,medical abbreviation,explain +abortion,"('missed abortion medical abbreviation', 'missed abortion medical definition')",missed abortion medical abbreviation,missed abortion medical definition,6,4,google,2026-03-12 19:59:12.801902,abortion meaning in english,missed abortion meaning in english,medical abbreviation,definition +abortion,"('inevitable abortion vs threatened abortion', 'missed abortion vs threatened abortion')",inevitable abortion vs threatened abortion,missed abortion vs threatened abortion,1,4,google,2026-03-12 19:59:13.616064,abortion meaning in english,inevitable abortion meaning in english,vs threatened,missed +abortion,"('inevitable abortion vs threatened abortion', 'imminent abortion vs threatened abortion')",inevitable abortion vs threatened abortion,imminent abortion vs threatened abortion,2,4,google,2026-03-12 19:59:13.616064,abortion meaning in english,inevitable abortion meaning in english,vs threatened,imminent +abortion,"('inevitable abortion vs threatened abortion', 'incomplete abortion vs threatened abortion')",inevitable abortion vs threatened abortion,incomplete abortion vs threatened abortion,3,4,google,2026-03-12 19:59:13.616064,abortion meaning in english,inevitable abortion meaning in english,vs threatened,incomplete +abortion,"('inevitable abortion vs threatened abortion', 'inevitable abortion and threatened abortion')",inevitable abortion vs threatened abortion,inevitable abortion and threatened abortion,4,4,google,2026-03-12 19:59:13.616064,abortion meaning in english,inevitable abortion meaning in english,vs threatened,and +abortion,"('inevitable abortion vs threatened abortion', 'missed abortion and threatened abortion')",inevitable abortion vs threatened abortion,missed abortion and threatened abortion,5,4,google,2026-03-12 19:59:13.616064,abortion meaning in english,inevitable abortion meaning in english,vs threatened,missed and +abortion,"('inevitable abortion vs threatened abortion', 'missed abortion and threatened abortion is same')",inevitable abortion vs threatened abortion,missed abortion and threatened abortion is same,6,4,google,2026-03-12 19:59:13.616064,abortion meaning in english,inevitable abortion meaning in english,vs threatened,missed and is same +abortion,"('inevitable abortion vs threatened abortion', 'imminent abortion and threatened abortion')",inevitable abortion vs threatened abortion,imminent abortion and threatened abortion,7,4,google,2026-03-12 19:59:13.616064,abortion meaning in english,inevitable abortion meaning in english,vs threatened,imminent and +abortion,"('inevitable abortion vs threatened abortion', 'inevitable miscarriage vs threatened miscarriage')",inevitable abortion vs threatened abortion,inevitable miscarriage vs threatened miscarriage,8,4,google,2026-03-12 19:59:13.616064,abortion meaning in english,inevitable abortion meaning in english,vs threatened,miscarriage miscarriage +abortion,"('inevitable abortion vs threatened abortion', 'difference between inevitable abortion and threatened abortion')",inevitable abortion vs threatened abortion,difference between inevitable abortion and threatened abortion,9,4,google,2026-03-12 19:59:13.616064,abortion meaning in english,inevitable abortion meaning in english,vs threatened,difference between and +abortion,"('what is called abortion', 'what is abortion called in hindi')",what is called abortion,what is abortion called in hindi,1,4,google,2026-03-12 19:59:14.876388,abortion meaning for kids,abortion meaning in simple words,what is called,in hindi +abortion,"('what is called abortion', 'what is abortion called after 20 weeks')",what is called abortion,what is abortion called after 20 weeks,2,4,google,2026-03-12 19:59:14.876388,abortion meaning for kids,abortion meaning in simple words,what is called,after 20 weeks +abortion,"('what is called abortion', 'what is called missed abortion')",what is called abortion,what is called missed abortion,3,4,google,2026-03-12 19:59:14.876388,abortion meaning for kids,abortion meaning in simple words,what is called,missed +abortion,"('what is called abortion', 'what is called threatened abortion')",what is called abortion,what is called threatened abortion,4,4,google,2026-03-12 19:59:14.876388,abortion meaning for kids,abortion meaning in simple words,what is called,threatened +abortion,"('what is called abortion', 'what is called miscarriage')",what is called abortion,what is called miscarriage,5,4,google,2026-03-12 19:59:14.876388,abortion meaning for kids,abortion meaning in simple words,what is called,miscarriage +abortion,"('what is called abortion', 'what is surgical abortion called')",what is called abortion,what is surgical abortion called,6,4,google,2026-03-12 19:59:14.876388,abortion meaning for kids,abortion meaning in simple words,what is called,surgical +abortion,"('what is called abortion', 'what is natural abortion called')",what is called abortion,what is natural abortion called,7,4,google,2026-03-12 19:59:14.876388,abortion meaning for kids,abortion meaning in simple words,what is called,natural +abortion,"('what is called abortion', 'what is pill abortion called')",what is called abortion,what is pill abortion called,8,4,google,2026-03-12 19:59:14.876388,abortion meaning for kids,abortion meaning in simple words,what is called,pill +abortion,"('what is called abortion', 'what is suction abortion called')",what is called abortion,what is suction abortion called,9,4,google,2026-03-12 19:59:14.876388,abortion meaning for kids,abortion meaning in simple words,what is called,suction +abortion,"('baby abortion meaning in hindi', 'pregnancy abortion meaning in hindi')",baby abortion meaning in hindi,pregnancy abortion meaning in hindi,1,4,google,2026-03-12 19:59:16.112374,abortion meaning for kids,abortion baby meaning,in hindi,pregnancy +abortion,"('baby abortion meaning in hindi', 'baby abortion meaning in tamil')",baby abortion meaning in hindi,baby abortion meaning in tamil,2,4,google,2026-03-12 19:59:16.112374,abortion meaning for kids,abortion baby meaning,in hindi,tamil +abortion,"('baby abortion meaning in hindi', 'unborn baby meaning in hindi')",baby abortion meaning in hindi,unborn baby meaning in hindi,3,4,google,2026-03-12 19:59:16.112374,abortion meaning for kids,abortion baby meaning,in hindi,unborn +abortion,"('baby abortion meaning in hindi', 'abort baby meaning')",baby abortion meaning in hindi,abort baby meaning,4,4,google,2026-03-12 19:59:16.112374,abortion meaning for kids,abortion baby meaning,in hindi,abort +abortion,"('baby abortion meaning in english', 'baby abortion meaning in tamil')",baby abortion meaning in english,baby abortion meaning in tamil,1,4,google,2026-03-12 19:59:17.272999,abortion meaning for kids,abortion baby meaning,in english,tamil +abortion,"('baby abortion meaning in english', 'what is the meaning of abortion in english')",baby abortion meaning in english,what is the meaning of abortion in english,2,4,google,2026-03-12 19:59:17.272999,abortion meaning for kids,abortion baby meaning,in english,what is the of +abortion,"('baby abortion meaning in english', 'abortion baby meaning')",baby abortion meaning in english,abortion baby meaning,3,4,google,2026-03-12 19:59:17.272999,abortion meaning for kids,abortion baby meaning,in english,in english +abortion,"('baby abortion meaning in english', 'pro-abortion meaning in english')",baby abortion meaning in english,pro-abortion meaning in english,4,4,google,2026-03-12 19:59:17.272999,abortion meaning for kids,abortion baby meaning,in english,pro-abortion +abortion,"('baby abortion meaning in english', 'abortion meaning in simple words')",baby abortion meaning in english,abortion meaning in simple words,5,4,google,2026-03-12 19:59:17.272999,abortion meaning for kids,abortion baby meaning,in english,simple words +abortion,"('miscarriage baby meaning', 'miscarriage baby meaning in hindi')",miscarriage baby meaning,miscarriage baby meaning in hindi,1,4,google,2026-03-12 19:59:18.530975,abortion meaning for kids,abortion baby meaning,miscarriage,in hindi +abortion,"('miscarriage baby meaning', 'miscarriage baby meaning in urdu')",miscarriage baby meaning,miscarriage baby meaning in urdu,2,4,google,2026-03-12 19:59:18.530975,abortion meaning for kids,abortion baby meaning,miscarriage,in urdu +abortion,"('miscarriage baby meaning', 'baby miscarriage meaning in bengali')",miscarriage baby meaning,baby miscarriage meaning in bengali,3,4,google,2026-03-12 19:59:18.530975,abortion meaning for kids,abortion baby meaning,miscarriage,in bengali +abortion,"('miscarriage baby meaning', 'baby miscarriage meaning in english')",miscarriage baby meaning,baby miscarriage meaning in english,4,4,google,2026-03-12 19:59:18.530975,abortion meaning for kids,abortion baby meaning,miscarriage,in english +abortion,"('miscarriage baby meaning', 'baby miscarriage meaning in punjabi')",miscarriage baby meaning,baby miscarriage meaning in punjabi,5,4,google,2026-03-12 19:59:18.530975,abortion meaning for kids,abortion baby meaning,miscarriage,in punjabi +abortion,"('miscarriage baby meaning', 'aborted baby meaning')",miscarriage baby meaning,aborted baby meaning,6,4,google,2026-03-12 19:59:18.530975,abortion meaning for kids,abortion baby meaning,miscarriage,aborted +abortion,"('miscarriage baby meaning', 'miscarriage pregnancy meaning')",miscarriage baby meaning,miscarriage pregnancy meaning,7,4,google,2026-03-12 19:59:18.530975,abortion meaning for kids,abortion baby meaning,miscarriage,pregnancy +abortion,"('miscarriage baby meaning', 'miscarriage child meaning')",miscarriage baby meaning,miscarriage child meaning,8,4,google,2026-03-12 19:59:18.530975,abortion meaning for kids,abortion baby meaning,miscarriage,child +abortion,"('miscarriage baby meaning', 'miscarried fetus meaning')",miscarriage baby meaning,miscarried fetus meaning,9,4,google,2026-03-12 19:59:18.530975,abortion meaning for kids,abortion baby meaning,miscarriage,miscarried fetus +abortion,"('miscarriage baby meaning in hindi', 'baby abortion meaning in hindi')",miscarriage baby meaning in hindi,baby abortion meaning in hindi,1,4,google,2026-03-12 19:59:19.916473,abortion meaning for kids,abortion baby meaning,miscarriage in hindi,abortion +abortion,"('miscarriage baby meaning in hindi', 'pregnancy miscarriage meaning in hindi')",miscarriage baby meaning in hindi,pregnancy miscarriage meaning in hindi,2,4,google,2026-03-12 19:59:19.916473,abortion meaning for kids,abortion baby meaning,miscarriage in hindi,pregnancy +abortion,"('miscarriage baby meaning in hindi', 'what is a miscarriage baby called')",miscarriage baby meaning in hindi,what is a miscarriage baby called,3,4,google,2026-03-12 19:59:19.916473,abortion meaning for kids,abortion baby meaning,miscarriage in hindi,what is a called +abortion,"('miscarriage baby meaning in hindi', 'unborn baby meaning in hindi')",miscarriage baby meaning in hindi,unborn baby meaning in hindi,4,4,google,2026-03-12 19:59:19.916473,abortion meaning for kids,abortion baby meaning,miscarriage in hindi,unborn +abortion,"('miscarriage baby meaning in hindi', 'stillborn baby meaning in hindi')",miscarriage baby meaning in hindi,stillborn baby meaning in hindi,5,4,google,2026-03-12 19:59:19.916473,abortion meaning for kids,abortion baby meaning,miscarriage in hindi,stillborn +abortion,"('miscarriage baby meaning in hindi', 'what is an angel baby miscarriage')",miscarriage baby meaning in hindi,what is an angel baby miscarriage,6,4,google,2026-03-12 19:59:19.916473,abortion meaning for kids,abortion baby meaning,miscarriage in hindi,what is an angel +abortion,"('miscarriage baby meaning in hindi', 'what does a miscarried baby look like')",miscarriage baby meaning in hindi,what does a miscarried baby look like,7,4,google,2026-03-12 19:59:19.916473,abortion meaning for kids,abortion baby meaning,miscarriage in hindi,what does a miscarried look like +abortion,"('miscarriage baby meaning in hindi', 'miscarried baby meaning')",miscarriage baby meaning in hindi,miscarried baby meaning,8,4,google,2026-03-12 19:59:19.916473,abortion meaning for kids,abortion baby meaning,miscarriage in hindi,miscarried +abortion,"('miscarriage baby meaning in hindi', 'miscarriage meaning in dream')",miscarriage baby meaning in hindi,miscarriage meaning in dream,9,4,google,2026-03-12 19:59:19.916473,abortion meaning for kids,abortion baby meaning,miscarriage in hindi,dream +abortion,"('miscarriage baby meaning in urdu', 'pregnancy miscarriage meaning in urdu')",miscarriage baby meaning in urdu,pregnancy miscarriage meaning in urdu,1,4,google,2026-03-12 19:59:20.815273,abortion meaning for kids,abortion baby meaning,miscarriage in urdu,pregnancy +abortion,"('miscarriage baby meaning in urdu', 'miscarriage chemical pregnancy meaning in urdu')",miscarriage baby meaning in urdu,miscarriage chemical pregnancy meaning in urdu,2,4,google,2026-03-12 19:59:20.815273,abortion meaning for kids,abortion baby meaning,miscarriage in urdu,chemical pregnancy +abortion,"('miscarriage baby meaning in urdu', 'miscarriage d&c meaning pregnancy in urdu')",miscarriage baby meaning in urdu,miscarriage d&c meaning pregnancy in urdu,3,4,google,2026-03-12 19:59:20.815273,abortion meaning for kids,abortion baby meaning,miscarriage in urdu,d&c pregnancy +abortion,"('miscarriage baby meaning in urdu', 'miscarried baby meaning')",miscarriage baby meaning in urdu,miscarried baby meaning,4,4,google,2026-03-12 19:59:20.815273,abortion meaning for kids,abortion baby meaning,miscarriage in urdu,miscarried +abortion,"('miscarriage baby meaning in urdu', 'what is a miscarriage baby called')",miscarriage baby meaning in urdu,what is a miscarriage baby called,5,4,google,2026-03-12 19:59:20.815273,abortion meaning for kids,abortion baby meaning,miscarriage in urdu,what is a called +abortion,"('miscarriage baby meaning in urdu', 'what do you call a miscarried baby')",miscarriage baby meaning in urdu,what do you call a miscarried baby,6,4,google,2026-03-12 19:59:20.815273,abortion meaning for kids,abortion baby meaning,miscarriage in urdu,what do you call a miscarried +abortion,"('miscarriage baby meaning in urdu', 'does miscarriage mean the baby died')",miscarriage baby meaning in urdu,does miscarriage mean the baby died,7,4,google,2026-03-12 19:59:20.815273,abortion meaning for kids,abortion baby meaning,miscarriage in urdu,does mean the died +abortion,"('miscarriage baby meaning in urdu', 'miscarriage causes in early pregnancy in urdu')",miscarriage baby meaning in urdu,miscarriage causes in early pregnancy in urdu,8,4,google,2026-03-12 19:59:20.815273,abortion meaning for kids,abortion baby meaning,miscarriage in urdu,causes early pregnancy +abortion,"('miscarriage baby meaning in urdu', 'miscarriage meaning in simple words')",miscarriage baby meaning in urdu,miscarriage meaning in simple words,9,4,google,2026-03-12 19:59:20.815273,abortion meaning for kids,abortion baby meaning,miscarriage in urdu,simple words +abortion,"('abortion child meaning', 'child abortion meaning in hindi')",abortion child meaning,child abortion meaning in hindi,1,4,google,2026-03-12 19:59:22.249991,abortion meaning for kids,abortion baby meaning,child,in hindi +abortion,"('abortion child meaning', 'abortion baby meaning')",abortion child meaning,abortion baby meaning,2,4,google,2026-03-12 19:59:22.249991,abortion meaning for kids,abortion baby meaning,child,baby +abortion,"('abortion child meaning', 'miscarriage child meaning')",abortion child meaning,miscarriage child meaning,3,4,google,2026-03-12 19:59:22.249991,abortion meaning for kids,abortion baby meaning,child,miscarriage +abortion,"('abortion child meaning', 'aborted child meaning')",abortion child meaning,aborted child meaning,4,4,google,2026-03-12 19:59:22.249991,abortion meaning for kids,abortion baby meaning,child,aborted +abortion,"('abortion child meaning', 'baby abortion meaning in english')",abortion child meaning,baby abortion meaning in english,5,4,google,2026-03-12 19:59:22.249991,abortion meaning for kids,abortion baby meaning,child,baby in english +abortion,"('abortion child meaning', 'child miscarriage meaning in hindi')",abortion child meaning,child miscarriage meaning in hindi,6,4,google,2026-03-12 19:59:22.249991,abortion meaning for kids,abortion baby meaning,child,miscarriage in hindi +abortion,"('abortion child meaning', 'baby abortion meaning in tamil')",abortion child meaning,baby abortion meaning in tamil,7,4,google,2026-03-12 19:59:22.249991,abortion meaning for kids,abortion baby meaning,child,baby in tamil +abortion,"('abortion child meaning', 'baby abortion meaning in bengali')",abortion child meaning,baby abortion meaning in bengali,8,4,google,2026-03-12 19:59:22.249991,abortion meaning for kids,abortion baby meaning,child,baby in bengali +abortion,"('abortion child meaning', 'baby abortion meaning in nepali')",abortion child meaning,baby abortion meaning in nepali,9,4,google,2026-03-12 19:59:22.249991,abortion meaning for kids,abortion baby meaning,child,baby in nepali +abortion,"('aborted fetus meaning', 'aborted fetus meaning in hindi')",aborted fetus meaning,aborted fetus meaning in hindi,1,4,google,2026-03-12 19:59:23.078735,abortion meaning for kids,abortion baby meaning,aborted fetus,in hindi +abortion,"('aborted fetus meaning', 'aborted fetus meaning in tamil')",aborted fetus meaning,aborted fetus meaning in tamil,2,4,google,2026-03-12 19:59:23.078735,abortion meaning for kids,abortion baby meaning,aborted fetus,in tamil +abortion,"('aborted fetus meaning', 'aborted fetus meaning in bengali')",aborted fetus meaning,aborted fetus meaning in bengali,3,4,google,2026-03-12 19:59:23.078735,abortion meaning for kids,abortion baby meaning,aborted fetus,in bengali +abortion,"('aborted fetus meaning', 'aborted fetus meaning in urdu')",aborted fetus meaning,aborted fetus meaning in urdu,4,4,google,2026-03-12 19:59:23.078735,abortion meaning for kids,abortion baby meaning,aborted fetus,in urdu +abortion,"('aborted fetus meaning', 'aborted fetus meaning in english')",aborted fetus meaning,aborted fetus meaning in english,5,4,google,2026-03-12 19:59:23.078735,abortion meaning for kids,abortion baby meaning,aborted fetus,in english +abortion,"('aborted fetus meaning', 'aborted fetus meaning in kannada')",aborted fetus meaning,aborted fetus meaning in kannada,6,4,google,2026-03-12 19:59:23.078735,abortion meaning for kids,abortion baby meaning,aborted fetus,in kannada +abortion,"('aborted fetus meaning', 'aborted fetus meaning in telugu')",aborted fetus meaning,aborted fetus meaning in telugu,7,4,google,2026-03-12 19:59:23.078735,abortion meaning for kids,abortion baby meaning,aborted fetus,in telugu +abortion,"('aborted fetus meaning', 'aborted baby meaning')",aborted fetus meaning,aborted baby meaning,8,4,google,2026-03-12 19:59:23.078735,abortion meaning for kids,abortion baby meaning,aborted fetus,baby +abortion,"('aborted fetus meaning', 'miscarried fetus meaning')",aborted fetus meaning,miscarried fetus meaning,9,4,google,2026-03-12 19:59:23.078735,abortion meaning for kids,abortion baby meaning,aborted fetus,miscarried +abortion,"('aborted fetus meaning in hindi', 'baby abortion meaning in hindi')",aborted fetus meaning in hindi,baby abortion meaning in hindi,1,4,google,2026-03-12 19:59:24.394720,abortion meaning for kids,abortion baby meaning,aborted fetus in hindi,baby abortion +abortion,"('aborted fetus meaning in hindi', 'pregnancy abortion meaning in hindi')",aborted fetus meaning in hindi,pregnancy abortion meaning in hindi,2,4,google,2026-03-12 19:59:24.394720,abortion meaning for kids,abortion baby meaning,aborted fetus in hindi,pregnancy abortion +abortion,"('aborted fetus meaning in hindi', 'aborted fetus meaning')",aborted fetus meaning in hindi,aborted fetus meaning,3,4,google,2026-03-12 19:59:24.394720,abortion meaning for kids,abortion baby meaning,aborted fetus in hindi,aborted fetus in hindi +abortion,"('aborted fetus meaning in hindi', 'what is an aborted fetus called')",aborted fetus meaning in hindi,what is an aborted fetus called,4,4,google,2026-03-12 19:59:24.394720,abortion meaning for kids,abortion baby meaning,aborted fetus in hindi,what is an called +abortion,"('aborted fetus meaning in hindi', 'aborted baby meaning')",aborted fetus meaning in hindi,aborted baby meaning,5,4,google,2026-03-12 19:59:24.394720,abortion meaning for kids,abortion baby meaning,aborted fetus in hindi,baby +abortion,"('aborted fetus meaning in tamil', 'baby aborted meaning in tamil')",aborted fetus meaning in tamil,baby aborted meaning in tamil,1,4,google,2026-03-12 19:59:25.635147,abortion meaning for kids,abortion baby meaning,aborted fetus in tamil,baby +abortion,"('aborted fetus meaning in tamil', 'aborted fetus meaning')",aborted fetus meaning in tamil,aborted fetus meaning,2,4,google,2026-03-12 19:59:25.635147,abortion meaning for kids,abortion baby meaning,aborted fetus in tamil,aborted fetus in tamil +abortion,"('aborted fetus meaning in tamil', 'what is an aborted fetus called')",aborted fetus meaning in tamil,what is an aborted fetus called,3,4,google,2026-03-12 19:59:25.635147,abortion meaning for kids,abortion baby meaning,aborted fetus in tamil,what is an called +abortion,"('aborted fetus meaning in tamil', 'aborted baby meaning')",aborted fetus meaning in tamil,aborted baby meaning,4,4,google,2026-03-12 19:59:25.635147,abortion meaning for kids,abortion baby meaning,aborted fetus in tamil,baby +abortion,"('anti abortion meaning', 'anti abortion meaning tagalog')",anti abortion meaning,anti abortion meaning tagalog,1,4,google,2026-03-12 19:59:26.846830,abortion meaning simple,abortion meaning easy,anti,tagalog +abortion,"('anti abortion meaning', 'anti abortion meaning in hindi')",anti abortion meaning,anti abortion meaning in hindi,2,4,google,2026-03-12 19:59:26.846830,abortion meaning simple,abortion meaning easy,anti,in hindi +abortion,"('anti abortion meaning', 'anti abortion meaning in english')",anti abortion meaning,anti abortion meaning in english,3,4,google,2026-03-12 19:59:26.846830,abortion meaning simple,abortion meaning easy,anti,in english +abortion,"('anti abortion meaning', 'anti abortion meaning simple')",anti abortion meaning,anti abortion meaning simple,4,4,google,2026-03-12 19:59:26.846830,abortion meaning simple,abortion meaning easy,anti,simple +abortion,"('anti abortion meaning', 'anti pro life meaning')",anti abortion meaning,anti pro life meaning,5,4,google,2026-03-12 19:59:26.846830,abortion meaning simple,abortion meaning easy,anti,pro life +abortion,"('anti abortion meaning', 'anti choice meaning')",anti abortion meaning,anti choice meaning,6,4,google,2026-03-12 19:59:26.846830,abortion meaning simple,abortion meaning easy,anti,choice +abortion,"('anti abortion meaning', 'against abortion meaning')",anti abortion meaning,against abortion meaning,7,4,google,2026-03-12 19:59:26.846830,abortion meaning simple,abortion meaning easy,anti,against +abortion,"('anti abortion meaning', 'opposed to abortion meaning')",anti abortion meaning,opposed to abortion meaning,8,4,google,2026-03-12 19:59:26.846830,abortion meaning simple,abortion meaning easy,anti,opposed to +abortion,"('anti abortion meaning', 'anti abortion activist meaning')",anti abortion meaning,anti abortion activist meaning,9,4,google,2026-03-12 19:59:26.846830,abortion meaning simple,abortion meaning easy,anti,activist +abortion,"('anti-abortion meaning example', 'anti-abortion meaning examples')",anti-abortion meaning example,anti-abortion meaning examples,1,4,google,2026-03-12 19:59:28.202377,abortion meaning simple,anti abortion meaning simple,anti-abortion example,examples +abortion,"('anti abortion meaning tagalog', 'anti abortion in tagalog')",anti abortion meaning tagalog,anti abortion in tagalog,1,4,google,2026-03-12 19:59:29.196980,abortion meaning simple,anti abortion meaning simple,tagalog,in +abortion,"('anti abortion meaning tagalog', 'against abortion in tagalog')",anti abortion meaning tagalog,against abortion in tagalog,2,4,google,2026-03-12 19:59:29.196980,abortion meaning simple,anti abortion meaning simple,tagalog,against in +abortion,"('anti abortion meaning tagalog', 'anti abortion meaning')",anti abortion meaning tagalog,anti abortion meaning,3,4,google,2026-03-12 19:59:29.196980,abortion meaning simple,anti abortion meaning simple,tagalog,tagalog +abortion,"('anti abortion meaning tagalog', 'anti-abortion meaning example')",anti abortion meaning tagalog,anti-abortion meaning example,4,4,google,2026-03-12 19:59:29.196980,abortion meaning simple,anti abortion meaning simple,tagalog,anti-abortion example +abortion,"('anti-abortion definition simple', 'anti abortion meaning simple')",anti-abortion definition simple,anti abortion meaning simple,1,4,google,2026-03-12 19:59:30.341152,abortion meaning simple,anti abortion meaning simple,anti-abortion definition,anti abortion meaning +abortion,"('anti-abortion definition simple', 'anti abortion meaning')",anti-abortion definition simple,anti abortion meaning,2,4,google,2026-03-12 19:59:30.341152,abortion meaning simple,anti abortion meaning simple,anti-abortion definition,anti abortion meaning +abortion,"('anti-abortion definition simple', 'anti-abortion definition')",anti-abortion definition simple,anti-abortion definition,3,4,google,2026-03-12 19:59:30.341152,abortion meaning simple,anti abortion meaning simple,anti-abortion definition,anti-abortion definition +abortion,"('anti-abortion definition simple', 'anti-abortion meaning example')",anti-abortion definition simple,anti-abortion meaning example,4,4,google,2026-03-12 19:59:30.341152,abortion meaning simple,anti abortion meaning simple,anti-abortion definition,meaning example +abortion,"('anti-abortion definition simple', 'define anti-abortion')",anti-abortion definition simple,define anti-abortion,5,4,google,2026-03-12 19:59:30.341152,abortion meaning simple,anti abortion meaning simple,anti-abortion definition,define +abortion,"('threatened abortion vs threatened miscarriage', 'threatened abortion and threatened miscarriage')",threatened abortion vs threatened miscarriage,threatened abortion and threatened miscarriage,1,4,google,2026-03-12 19:59:31.534096,abortion meaning simple,threatened abortion simple meaning,vs miscarriage,and +abortion,"('threatened abortion vs threatened miscarriage', 'is threatened abortion and threatened miscarriage the same')",threatened abortion vs threatened miscarriage,is threatened abortion and threatened miscarriage the same,2,4,google,2026-03-12 19:59:31.534096,abortion meaning simple,threatened abortion simple meaning,vs miscarriage,is and the same +abortion,"('threatened abortion vs threatened miscarriage', 'threatened abortion vs miscarriage')",threatened abortion vs threatened miscarriage,threatened abortion vs miscarriage,3,4,google,2026-03-12 19:59:31.534096,abortion meaning simple,threatened abortion simple meaning,vs miscarriage,vs miscarriage +abortion,"('threatened abortion vs threatened miscarriage', 'difference between miscarriage and threatened abortion')",threatened abortion vs threatened miscarriage,difference between miscarriage and threatened abortion,4,4,google,2026-03-12 19:59:31.534096,abortion meaning simple,threatened abortion simple meaning,vs miscarriage,difference between and +abortion,"('threatened abortion vs threatened miscarriage', 'whats a threatened miscarriage')",threatened abortion vs threatened miscarriage,whats a threatened miscarriage,5,4,google,2026-03-12 19:59:31.534096,abortion meaning simple,threatened abortion simple meaning,vs miscarriage,whats a +abortion,"('threatened abortion vs threatened miscarriage', 'what is considered a threatened miscarriage')",threatened abortion vs threatened miscarriage,what is considered a threatened miscarriage,6,4,google,2026-03-12 19:59:31.534096,abortion meaning simple,threatened abortion simple meaning,vs miscarriage,what is considered a +abortion,"('threatened abortion vs threatened miscarriage', 'what is a threatened miscarriage')",threatened abortion vs threatened miscarriage,what is a threatened miscarriage,7,4,google,2026-03-12 19:59:31.534096,abortion meaning simple,threatened abortion simple meaning,vs miscarriage,what is a +abortion,"('threatened abortion vs threatened miscarriage', 'threatened abortion vs missed abortion')",threatened abortion vs threatened miscarriage,threatened abortion vs missed abortion,8,4,google,2026-03-12 19:59:31.534096,abortion meaning simple,threatened abortion simple meaning,vs miscarriage,missed +abortion,"('threatened abortion vs threatened miscarriage', 'threatened abortion vs inevitable abortion')",threatened abortion vs threatened miscarriage,threatened abortion vs inevitable abortion,9,4,google,2026-03-12 19:59:31.534096,abortion meaning simple,threatened abortion simple meaning,vs miscarriage,inevitable +abortion,"('hyde amendment simple terms', 'what is the hyde amendment')",hyde amendment simple terms,what is the hyde amendment,1,4,google,2026-03-12 19:59:32.571491,abortion meaning simple,abortion simple terms,hyde amendment,what is the +abortion,"('hyde amendment simple terms', 'hyde amendment simple')",hyde amendment simple terms,hyde amendment simple,2,4,google,2026-03-12 19:59:32.571491,abortion meaning simple,abortion simple terms,hyde amendment,hyde amendment +abortion,"('hyde amendment simple terms', 'hyde amendment text')",hyde amendment simple terms,hyde amendment text,3,4,google,2026-03-12 19:59:32.571491,abortion meaning simple,abortion simple terms,hyde amendment,text +abortion,"('hyde amendment simple terms', 'hyde amendment language')",hyde amendment simple terms,hyde amendment language,4,4,google,2026-03-12 19:59:32.571491,abortion meaning simple,abortion simple terms,hyde amendment,language +abortion,"('hyde amendment simple terms', 'hyde amendment summary')",hyde amendment simple terms,hyde amendment summary,5,4,google,2026-03-12 19:59:32.571491,abortion meaning simple,abortion simple terms,hyde amendment,summary +abortion,"('hyde amendment simple terms', 'hyde amendment explained')",hyde amendment simple terms,hyde amendment explained,6,4,google,2026-03-12 19:59:32.571491,abortion meaning simple,abortion simple terms,hyde amendment,explained +abortion,"('miscarriage simple terms', 'abortion simple terms')",miscarriage simple terms,abortion simple terms,1,4,google,2026-03-12 19:59:33.980493,abortion meaning simple,abortion simple terms,miscarriage,abortion +abortion,"('miscarriage simple terms', 'miscarriage simple definition')",miscarriage simple terms,miscarriage simple definition,2,4,google,2026-03-12 19:59:33.980493,abortion meaning simple,abortion simple terms,miscarriage,definition +abortion,"('miscarriage simple terms', 'how to explain miscarriage to a child')",miscarriage simple terms,how to explain miscarriage to a child,3,4,google,2026-03-12 19:59:33.980493,abortion meaning simple,abortion simple terms,miscarriage,how to explain to a child +abortion,"('miscarriage simple terms', 'is a miscarriage the same as losing a child')",miscarriage simple terms,is a miscarriage the same as losing a child,4,4,google,2026-03-12 19:59:33.980493,abortion meaning simple,abortion simple terms,miscarriage,is a the same as losing a child +abortion,"('miscarriage simple terms', 'what do you call a baby lost to miscarriage')",miscarriage simple terms,what do you call a baby lost to miscarriage,5,4,google,2026-03-12 19:59:33.980493,abortion meaning simple,abortion simple terms,miscarriage,what do you call a baby lost to +abortion,"('miscarriage simple terms', 'what do you call a baby that was miscarried')",miscarriage simple terms,what do you call a baby that was miscarried,6,4,google,2026-03-12 19:59:33.980493,abortion meaning simple,abortion simple terms,miscarriage,what do you call a baby that was miscarried +abortion,"('miscarriage simple terms', 'miscarriage terminology')",miscarriage simple terms,miscarriage terminology,7,4,google,2026-03-12 19:59:33.980493,abortion meaning simple,abortion simple terms,miscarriage,terminology +abortion,"('miscarriage simple terms', 'miscarriage terms')",miscarriage simple terms,miscarriage terms,8,4,google,2026-03-12 19:59:33.980493,abortion meaning simple,abortion simple terms,miscarriage,miscarriage +abortion,"('miscarriage simple terms', 'miscarriage meaning in simple words')",miscarriage simple terms,miscarriage meaning in simple words,9,4,google,2026-03-12 19:59:33.980493,abortion meaning simple,abortion simple terms,miscarriage,meaning in words +abortion,"('abortion simple definition', 'miscarriage simple definition')",abortion simple definition,miscarriage simple definition,1,4,google,2026-03-12 19:59:35.209328,abortion meaning simple,abortion simple terms,definition,miscarriage +abortion,"('abortion simple definition', 'abortion simple explanation')",abortion simple definition,abortion simple explanation,2,4,google,2026-03-12 19:59:35.209328,abortion meaning simple,abortion simple terms,definition,explanation +abortion,"('abortion simple definition', 'threatened abortion simple definition')",abortion simple definition,threatened abortion simple definition,3,4,google,2026-03-12 19:59:35.209328,abortion meaning simple,abortion simple terms,definition,threatened +abortion,"('abortion simple definition', 'inevitable abortion simple definition')",abortion simple definition,inevitable abortion simple definition,4,4,google,2026-03-12 19:59:35.209328,abortion meaning simple,abortion simple terms,definition,inevitable +abortion,"('abortion simple definition', 'missed abortion simple definition')",abortion simple definition,missed abortion simple definition,5,4,google,2026-03-12 19:59:35.209328,abortion meaning simple,abortion simple terms,definition,missed +abortion,"('abortion simple definition', 'spontaneous abortion simple definition')",abortion simple definition,spontaneous abortion simple definition,6,4,google,2026-03-12 19:59:35.209328,abortion meaning simple,abortion simple terms,definition,spontaneous +abortion,"('abortion simple definition', 'induced abortion simple definition')",abortion simple definition,induced abortion simple definition,7,4,google,2026-03-12 19:59:35.209328,abortion meaning simple,abortion simple terms,definition,induced +abortion,"('abortion simple definition', 'septic abortion simple definition')",abortion simple definition,septic abortion simple definition,8,4,google,2026-03-12 19:59:35.209328,abortion meaning simple,abortion simple terms,definition,septic +abortion,"('abortion simple definition', 'recurrent abortion simple definition')",abortion simple definition,recurrent abortion simple definition,9,4,google,2026-03-12 19:59:35.209328,abortion meaning simple,abortion simple terms,definition,recurrent +abortion,"('abortion simple meaning', 'miscarriage simple meaning')",abortion simple meaning,miscarriage simple meaning,1,4,google,2026-03-12 19:59:36.042211,abortion meaning simple,abortion simple terms,meaning,miscarriage +abortion,"('abortion simple meaning', 'abortion simple explanation')",abortion simple meaning,abortion simple explanation,2,4,google,2026-03-12 19:59:36.042211,abortion meaning simple,abortion simple terms,meaning,explanation +abortion,"('abortion simple meaning', 'threatened abortion simple meaning')",abortion simple meaning,threatened abortion simple meaning,3,4,google,2026-03-12 19:59:36.042211,abortion meaning simple,abortion simple terms,meaning,threatened +abortion,"('abortion simple meaning', 'anti abortion meaning simple')",abortion simple meaning,anti abortion meaning simple,4,4,google,2026-03-12 19:59:36.042211,abortion meaning simple,abortion simple terms,meaning,anti +abortion,"('abortion simple meaning', 'abortion simple terms')",abortion simple meaning,abortion simple terms,5,4,google,2026-03-12 19:59:36.042211,abortion meaning simple,abortion simple terms,meaning,terms +abortion,"('abortion simple meaning', 'abortion simple definition')",abortion simple meaning,abortion simple definition,6,4,google,2026-03-12 19:59:36.042211,abortion meaning simple,abortion simple terms,meaning,definition +abortion,"('what does the word abortion mean in greek', 'what does the word abortion mean')",what does the word abortion mean in greek,what does the word abortion mean,1,4,google,2026-03-12 19:59:37.499016,abortion meaning in hebrew,what does the word abortion mean,in greek,in greek +abortion,"('what does the word abortion mean in greek', 'greek word for abortion')",what does the word abortion mean in greek,greek word for abortion,2,4,google,2026-03-12 19:59:37.499016,abortion meaning in hebrew,what does the word abortion mean,in greek,for +abortion,"('what does the word abortion mean in greek', 'what does the word pro-abortion mean')",what does the word abortion mean in greek,what does the word pro-abortion mean,3,4,google,2026-03-12 19:59:37.499016,abortion meaning in hebrew,what does the word abortion mean,in greek,pro-abortion +abortion,"('what does the word abortion mean in greek', 'what does the greek word in mean')",what does the word abortion mean in greek,what does the greek word in mean,4,4,google,2026-03-12 19:59:37.499016,abortion meaning in hebrew,what does the word abortion mean,in greek,in greek +abortion,"('what does the word abortion mean in greek', 'greek meaning of abortion')",what does the word abortion mean in greek,greek meaning of abortion,5,4,google,2026-03-12 19:59:37.499016,abortion meaning in hebrew,what does the word abortion mean,in greek,meaning of +abortion,"('what does the word miscarriage mean', 'what does the term miscarriage mean')",what does the word miscarriage mean,what does the term miscarriage mean,1,4,google,2026-03-12 19:59:38.790070,abortion meaning in hebrew,what does the word abortion mean,miscarriage,term +abortion,"('what does the word miscarriage mean', 'what does the term miscarriage of justice mean')",what does the word miscarriage mean,what does the term miscarriage of justice mean,2,4,google,2026-03-12 19:59:38.790070,abortion meaning in hebrew,what does the word abortion mean,miscarriage,term of justice +abortion,"('what does the word miscarriage mean', 'what does a miscarriage mean in the bible')",what does the word miscarriage mean,what does a miscarriage mean in the bible,3,4,google,2026-03-12 19:59:38.790070,abortion meaning in hebrew,what does the word abortion mean,miscarriage,a in bible +abortion,"('what does the word miscarriage mean', 'what is the spiritual meaning of a miscarriage')",what does the word miscarriage mean,what is the spiritual meaning of a miscarriage,4,4,google,2026-03-12 19:59:38.790070,abortion meaning in hebrew,what does the word abortion mean,miscarriage,is spiritual meaning of a +abortion,"('what does the word miscarriage mean', 'what miscarriage mean')",what does the word miscarriage mean,what miscarriage mean,5,4,google,2026-03-12 19:59:38.790070,abortion meaning in hebrew,what does the word abortion mean,miscarriage,miscarriage +abortion,"('what does the word miscarriage mean', 'where does the word miscarriage come from')",what does the word miscarriage mean,where does the word miscarriage come from,6,4,google,2026-03-12 19:59:38.790070,abortion meaning in hebrew,what does the word abortion mean,miscarriage,where come from +abortion,"('what does the word miscarriage mean', 'what does miscarriage means')",what does the word miscarriage mean,what does miscarriage means,7,4,google,2026-03-12 19:59:38.790070,abortion meaning in hebrew,what does the word abortion mean,miscarriage,means +abortion,"('what does the term abortion mean', 'what does the word abortion mean')",what does the term abortion mean,what does the word abortion mean,1,4,google,2026-03-12 19:59:40.126781,abortion meaning in hebrew,what does the word abortion mean,term,word +abortion,"('what does the term abortion mean', 'what does the word miscarriage mean')",what does the term abortion mean,what does the word miscarriage mean,2,4,google,2026-03-12 19:59:40.126781,abortion meaning in hebrew,what does the word abortion mean,term,word miscarriage +abortion,"('what does the term abortion mean', 'what does late term abortion mean')",what does the term abortion mean,what does late term abortion mean,3,4,google,2026-03-12 19:59:40.126781,abortion meaning in hebrew,what does the word abortion mean,term,late +abortion,"('what does the term abortion mean', 'what does the abortion mean')",what does the term abortion mean,what does the abortion mean,4,4,google,2026-03-12 19:59:40.126781,abortion meaning in hebrew,what does the word abortion mean,term,term +abortion,"('what does the term abortion mean', 'what does partial birth abortion mean')",what does the term abortion mean,what does partial birth abortion mean,5,4,google,2026-03-12 19:59:40.126781,abortion meaning in hebrew,what does the word abortion mean,term,partial birth +abortion,"('what does the term abortion mean', 'what does the miscarriage mean')",what does the term abortion mean,what does the miscarriage mean,6,4,google,2026-03-12 19:59:40.126781,abortion meaning in hebrew,what does the word abortion mean,term,miscarriage +abortion,"('what does the term abortion mean', 'what does abortion mean in latin')",what does the term abortion mean,what does abortion mean in latin,7,4,google,2026-03-12 19:59:40.126781,abortion meaning in hebrew,what does the word abortion mean,term,in latin +abortion,"('what does the term abortion mean', 'what does abortion mean in pregnancy')",what does the term abortion mean,what does abortion mean in pregnancy,8,4,google,2026-03-12 19:59:40.126781,abortion meaning in hebrew,what does the word abortion mean,term,in pregnancy +abortion,"('what does the term abortion mean', 'what does abortion mean in a dream')",what does the term abortion mean,what does abortion mean in a dream,9,4,google,2026-03-12 19:59:40.126781,abortion meaning in hebrew,what does the word abortion mean,term,in a dream +abortion,"('what does the term miscarriage mean', 'what does the word miscarriage mean')",what does the term miscarriage mean,what does the word miscarriage mean,1,4,google,2026-03-12 19:59:41.576533,abortion meaning in hebrew,what does the word abortion mean,term miscarriage,word +abortion,"('what does the term miscarriage mean', 'what does the miscarriage mean')",what does the term miscarriage mean,what does the miscarriage mean,2,4,google,2026-03-12 19:59:41.576533,abortion meaning in hebrew,what does the word abortion mean,term miscarriage,term miscarriage +abortion,"('what does the term miscarriage mean', 'what does miscarriage mean in pregnancy')",what does the term miscarriage mean,what does miscarriage mean in pregnancy,3,4,google,2026-03-12 19:59:41.576533,abortion meaning in hebrew,what does the word abortion mean,term miscarriage,in pregnancy +abortion,"('what does the term miscarriage mean', 'what does miscarriage mean spiritually')",what does the term miscarriage mean,what does miscarriage mean spiritually,4,4,google,2026-03-12 19:59:41.576533,abortion meaning in hebrew,what does the word abortion mean,term miscarriage,spiritually +abortion,"('what does the term miscarriage mean', 'what does miscarriage mean in a dream')",what does the term miscarriage mean,what does miscarriage mean in a dream,5,4,google,2026-03-12 19:59:41.576533,abortion meaning in hebrew,what does the word abortion mean,term miscarriage,in a dream +abortion,"('what does the term miscarriage mean', 'what does miscarriage mean in islam')",what does the term miscarriage mean,what does miscarriage mean in islam,6,4,google,2026-03-12 19:59:41.576533,abortion meaning in hebrew,what does the word abortion mean,term miscarriage,in islam +abortion,"('what does the term miscarriage mean', 'what does miscarriage a baby mean')",what does the term miscarriage mean,what does miscarriage a baby mean,7,4,google,2026-03-12 19:59:41.576533,abortion meaning in hebrew,what does the word abortion mean,term miscarriage,a baby +abortion,"('what does the term miscarriage mean', 'what does a miscarriage mean in the bible')",what does the term miscarriage mean,what does a miscarriage mean in the bible,8,4,google,2026-03-12 19:59:41.576533,abortion meaning in hebrew,what does the word abortion mean,term miscarriage,a in bible +abortion,"('what does the term miscarriage mean', 'what miscarriage mean')",what does the term miscarriage mean,what miscarriage mean,9,4,google,2026-03-12 19:59:41.576533,abortion meaning in hebrew,what does the word abortion mean,term miscarriage,term miscarriage +abortion,"('what does the term miscarriage mean', 'what is the spiritual meaning of a miscarriage')",what does the term miscarriage mean,what is the spiritual meaning of a miscarriage,10,4,google,2026-03-12 19:59:41.576533,abortion meaning in hebrew,what does the word abortion mean,term miscarriage,is spiritual meaning of a +abortion,"('what does the term missed abortion mean', 'what does missed abortion mean')",what does the term missed abortion mean,what does missed abortion mean,1,4,google,2026-03-12 19:59:42.747275,abortion meaning in hebrew,what does the word abortion mean,term missed,term missed +abortion,"('what does the term missed abortion mean', 'what does missed abortion mean in pregnancy')",what does the term missed abortion mean,what does missed abortion mean in pregnancy,2,4,google,2026-03-12 19:59:42.747275,abortion meaning in hebrew,what does the word abortion mean,term missed,in pregnancy +abortion,"('what does the term missed abortion mean', 'what does missed abortion mean in medicine')",what does the term missed abortion mean,what does missed abortion mean in medicine,3,4,google,2026-03-12 19:59:42.747275,abortion meaning in hebrew,what does the word abortion mean,term missed,in medicine +abortion,"('what does the term missed abortion mean', 'what does missed ab mean')",what does the term missed abortion mean,what does missed ab mean,4,4,google,2026-03-12 19:59:42.747275,abortion meaning in hebrew,what does the word abortion mean,term missed,ab +abortion,"('what does the term missed abortion mean', 'what does the word miscarriage mean')",what does the term missed abortion mean,what does the word miscarriage mean,5,4,google,2026-03-12 19:59:42.747275,abortion meaning in hebrew,what does the word abortion mean,term missed,word miscarriage +abortion,"('what does the term missed abortion mean', 'what does spontaneous abortion mean')",what does the term missed abortion mean,what does spontaneous abortion mean,6,4,google,2026-03-12 19:59:42.747275,abortion meaning in hebrew,what does the word abortion mean,term missed,spontaneous +abortion,"('what does the term missed abortion mean', 'what does missed miscarriage mean')",what does the term missed abortion mean,what does missed miscarriage mean,7,4,google,2026-03-12 19:59:42.747275,abortion meaning in hebrew,what does the word abortion mean,term missed,miscarriage +abortion,"('what does the term missed abortion mean', 'what does incomplete abortion mean')",what does the term missed abortion mean,what does incomplete abortion mean,8,4,google,2026-03-12 19:59:42.747275,abortion meaning in hebrew,what does the word abortion mean,term missed,incomplete +abortion,"('what does the term missed abortion mean', 'why is it called missed abortion')",what does the term missed abortion mean,why is it called missed abortion,9,4,google,2026-03-12 19:59:42.747275,abortion meaning in hebrew,what does the word abortion mean,term missed,why is it called +abortion,"('what does the term missed abortion mean', 'why do they call it a missed abortion')",what does the term missed abortion mean,why do they call it a missed abortion,10,4,google,2026-03-12 19:59:42.747275,abortion meaning in hebrew,what does the word abortion mean,term missed,why do they call it a +abortion,"('what does the term threatened abortion mean', 'what does the diagnosis threatened abortion mean')",what does the term threatened abortion mean,what does the diagnosis threatened abortion mean,1,4,google,2026-03-12 19:59:44.062493,abortion meaning in hebrew,what does the word abortion mean,term threatened,diagnosis +abortion,"('what does the term threatened abortion mean', 'what does threatened abortion mean')",what does the term threatened abortion mean,what does threatened abortion mean,2,4,google,2026-03-12 19:59:44.062493,abortion meaning in hebrew,what does the word abortion mean,term threatened,term threatened +abortion,"('what does the term threatened abortion mean', 'what does threatened miscarriage mean')",what does the term threatened abortion mean,what does threatened miscarriage mean,3,4,google,2026-03-12 19:59:44.062493,abortion meaning in hebrew,what does the word abortion mean,term threatened,miscarriage +abortion,"('what does the term threatened abortion mean', 'what does inevitable abortion mean')",what does the term threatened abortion mean,what does inevitable abortion mean,4,4,google,2026-03-12 19:59:44.062493,abortion meaning in hebrew,what does the word abortion mean,term threatened,inevitable +abortion,"('what does the term threatened abortion mean', 'what do you mean by threatened abortion')",what does the term threatened abortion mean,what do you mean by threatened abortion,5,4,google,2026-03-12 19:59:44.062493,abortion meaning in hebrew,what does the word abortion mean,term threatened,do you by +abortion,"('what does the term threatened abortion mean', 'what is threatened abortion in pregnancy')",what does the term threatened abortion mean,what is threatened abortion in pregnancy,6,4,google,2026-03-12 19:59:44.062493,abortion meaning in hebrew,what does the word abortion mean,term threatened,is in pregnancy +abortion,"('what does the term threatened abortion mean', 'what is threatened abortion')",what does the term threatened abortion mean,what is threatened abortion,7,4,google,2026-03-12 19:59:44.062493,abortion meaning in hebrew,what does the word abortion mean,term threatened,is +abortion,"('what does the term threatened abortion mean', 'what does threatened abortion in early pregnancy mean')",what does the term threatened abortion mean,what does threatened abortion in early pregnancy mean,8,4,google,2026-03-12 19:59:44.062493,abortion meaning in hebrew,what does the word abortion mean,term threatened,in early pregnancy +abortion,"('what does the term threatened abortion mean', 'what does threatened')",what does the term threatened abortion mean,what does threatened,9,4,google,2026-03-12 19:59:44.062493,abortion meaning in hebrew,what does the word abortion mean,term threatened,term threatened +abortion,"('what does the term.spontaneous abortion mean', 'what does spontaneous abortion mean')",what does the term.spontaneous abortion mean,what does spontaneous abortion mean,1,4,google,2026-03-12 19:59:45.064919,abortion meaning in hebrew,what does the word abortion mean,term.spontaneous,spontaneous +abortion,"('what does the term.spontaneous abortion mean', 'what does incomplete spontaneous abortion mean')",what does the term.spontaneous abortion mean,what does incomplete spontaneous abortion mean,2,4,google,2026-03-12 19:59:45.064919,abortion meaning in hebrew,what does the word abortion mean,term.spontaneous,incomplete spontaneous +abortion,"('what does the term.spontaneous abortion mean', 'what does the word miscarriage mean')",what does the term.spontaneous abortion mean,what does the word miscarriage mean,3,4,google,2026-03-12 19:59:45.064919,abortion meaning in hebrew,what does the word abortion mean,term.spontaneous,word miscarriage +abortion,"('what does the term.spontaneous abortion mean', 'what does induced abortion mean')",what does the term.spontaneous abortion mean,what does induced abortion mean,4,4,google,2026-03-12 19:59:45.064919,abortion meaning in hebrew,what does the word abortion mean,term.spontaneous,induced +abortion,"('what does the term.spontaneous abortion mean', 'what does spontaneous miscarriage mean')",what does the term.spontaneous abortion mean,what does spontaneous miscarriage mean,5,4,google,2026-03-12 19:59:45.064919,abortion meaning in hebrew,what does the word abortion mean,term.spontaneous,spontaneous miscarriage +abortion,"('what does the term.spontaneous abortion mean', 'what is a spontaneous abortion mean')",what does the term.spontaneous abortion mean,what is a spontaneous abortion mean,6,4,google,2026-03-12 19:59:45.064919,abortion meaning in hebrew,what does the word abortion mean,term.spontaneous,is a spontaneous +abortion,"('what does the term.spontaneous abortion mean', 'what is the definition of spontaneous abortion')",what does the term.spontaneous abortion mean,what is the definition of spontaneous abortion,7,4,google,2026-03-12 19:59:45.064919,abortion meaning in hebrew,what does the word abortion mean,term.spontaneous,is definition of spontaneous +abortion,"('what does the term.spontaneous abortion mean', 'what does the term abortion mean')",what does the term.spontaneous abortion mean,what does the term abortion mean,8,4,google,2026-03-12 19:59:45.064919,abortion meaning in hebrew,what does the word abortion mean,term.spontaneous,term +abortion,"('what does the term.spontaneous abortion mean', 'what does the term medical abortion describe')",what does the term.spontaneous abortion mean,what does the term medical abortion describe,9,4,google,2026-03-12 19:59:45.064919,abortion meaning in hebrew,what does the word abortion mean,term.spontaneous,term medical describe +abortion,"('what does the term.spontaneous abortion mean', 'what is the definition of spontaneous abortion quizlet')",what does the term.spontaneous abortion mean,what is the definition of spontaneous abortion quizlet,10,4,google,2026-03-12 19:59:45.064919,abortion meaning in hebrew,what does the word abortion mean,term.spontaneous,is definition of spontaneous quizlet +abortion,"('what does late term abortion mean', 'late term abortion definition')",what does late term abortion mean,late term abortion definition,1,4,google,2026-03-12 19:59:46.490579,abortion meaning in hebrew,what does the word abortion mean,late term,definition +abortion,"('what does late term abortion mean', 'are late term abortions legal')",what does late term abortion mean,are late term abortions legal,2,4,google,2026-03-12 19:59:46.490579,abortion meaning in hebrew,what does the word abortion mean,late term,are abortions legal +abortion,"('what does late term abortion mean', 'late term abortion laws')",what does late term abortion mean,late term abortion laws,3,4,google,2026-03-12 19:59:46.490579,abortion meaning in hebrew,what does the word abortion mean,late term,laws +abortion,"('what does late term abortion mean', 'late term abortion procedure')",what does late term abortion mean,late term abortion procedure,4,4,google,2026-03-12 19:59:46.490579,abortion meaning in hebrew,what does the word abortion mean,late term,procedure +abortion,"('what does late term abortion mean', 'what does late term abortion look like')",what does late term abortion mean,what does late term abortion look like,5,4,google,2026-03-12 19:59:46.490579,abortion meaning in hebrew,what does the word abortion mean,late term,look like +abortion,"('what does late term abortion mean', 'what does a late term abortion entail')",what does late term abortion mean,what does a late term abortion entail,6,4,google,2026-03-12 19:59:46.490579,abortion meaning in hebrew,what does the word abortion mean,late term,a entail +abortion,"('what does the medical term missed abortion mean', 'what does missed abortion mean in pregnancy')",what does the medical term missed abortion mean,what does missed abortion mean in pregnancy,1,4,google,2026-03-12 19:59:47.646245,abortion meaning in hebrew,what does the word abortion mean,medical term missed,in pregnancy +abortion,"('what does the medical term missed abortion mean', 'what is a missed abortion in medical terms')",what does the medical term missed abortion mean,what is a missed abortion in medical terms,2,4,google,2026-03-12 19:59:47.646245,abortion meaning in hebrew,what does the word abortion mean,medical term missed,is a in terms +abortion,"('what does the medical term missed abortion mean', 'why is it called missed abortion')",what does the medical term missed abortion mean,why is it called missed abortion,3,4,google,2026-03-12 19:59:47.646245,abortion meaning in hebrew,what does the word abortion mean,medical term missed,why is it called +abortion,"('what does the medical term missed abortion mean', 'why do they call it a missed abortion')",what does the medical term missed abortion mean,why do they call it a missed abortion,4,4,google,2026-03-12 19:59:47.646245,abortion meaning in hebrew,what does the word abortion mean,medical term missed,why do they call it a +abortion,"('what does the medical term missed abortion mean', 'what does missed abortion mean in medicine')",what does the medical term missed abortion mean,what does missed abortion mean in medicine,5,4,google,2026-03-12 19:59:47.646245,abortion meaning in hebrew,what does the word abortion mean,medical term missed,in medicine +abortion,"('what does the medical term missed abortion mean', 'medical terminology missed abortion')",what does the medical term missed abortion mean,medical terminology missed abortion,6,4,google,2026-03-12 19:59:47.646245,abortion meaning in hebrew,what does the word abortion mean,medical term missed,terminology +abortion,"('what does the medical term missed abortion mean', 'what does the term medical abortion describe')",what does the medical term missed abortion mean,what does the term medical abortion describe,7,4,google,2026-03-12 19:59:47.646245,abortion meaning in hebrew,what does the word abortion mean,medical term missed,describe +abortion,"('spontaneous abortion meaning in arabic', 'abortion meaning in arabic')",spontaneous abortion meaning in arabic,abortion meaning in arabic,1,4,google,2026-03-12 19:59:48.963631,abortion meaning in hebrew,abortion meaning in arabic,spontaneous,spontaneous +abortion,"('spontaneous abortion meaning in arabic', 'what is a spontaneous abortion mean')",spontaneous abortion meaning in arabic,what is a spontaneous abortion mean,2,4,google,2026-03-12 19:59:48.963631,abortion meaning in hebrew,abortion meaning in arabic,spontaneous,what is a mean +abortion,"('spontaneous abortion meaning in arabic', 'spontaneous abortion abbreviation')",spontaneous abortion meaning in arabic,spontaneous abortion abbreviation,3,4,google,2026-03-12 19:59:48.963631,abortion meaning in hebrew,abortion meaning in arabic,spontaneous,abbreviation +abortion,"('spontaneous abortion meaning in arabic', 'what is the definition of spontaneous abortion')",spontaneous abortion meaning in arabic,what is the definition of spontaneous abortion,4,4,google,2026-03-12 19:59:48.963631,abortion meaning in hebrew,abortion meaning in arabic,spontaneous,what is the definition of +abortion,"('spontaneous abortion meaning in arabic', 'spontaneous abortion in spanish')",spontaneous abortion meaning in arabic,spontaneous abortion in spanish,5,4,google,2026-03-12 19:59:48.963631,abortion meaning in hebrew,abortion meaning in arabic,spontaneous,spanish +abortion,"('spontaneous abortion meaning in arabic', 'spontaneous abortion medical definition')",spontaneous abortion meaning in arabic,spontaneous abortion medical definition,6,4,google,2026-03-12 19:59:48.963631,abortion meaning in hebrew,abortion meaning in arabic,spontaneous,medical definition +abortion,"('spontaneous abortion meaning in arabic', 'spontaneous abortion synonyms')",spontaneous abortion meaning in arabic,spontaneous abortion synonyms,7,4,google,2026-03-12 19:59:48.963631,abortion meaning in hebrew,abortion meaning in arabic,spontaneous,synonyms +abortion,"('spontaneous abortion meaning in arabic', 'spontaneous abortion def')",spontaneous abortion meaning in arabic,spontaneous abortion def,8,4,google,2026-03-12 19:59:48.963631,abortion meaning in hebrew,abortion meaning in arabic,spontaneous,def +abortion,"('spontaneous abortion meaning in arabic', 'spontaneous abortion terminology')",spontaneous abortion meaning in arabic,spontaneous abortion terminology,9,4,google,2026-03-12 19:59:48.963631,abortion meaning in hebrew,abortion meaning in arabic,spontaneous,terminology +abortion,"('missed abortion meaning in arabic', 'spontaneous abortion meaning in arabic')",missed abortion meaning in arabic,spontaneous abortion meaning in arabic,1,4,google,2026-03-12 19:59:50.413186,abortion meaning in hebrew,abortion meaning in arabic,missed,spontaneous +abortion,"('missed abortion meaning in arabic', 'missed abortion definition')",missed abortion meaning in arabic,missed abortion definition,2,4,google,2026-03-12 19:59:50.413186,abortion meaning in hebrew,abortion meaning in arabic,missed,definition +abortion,"('missed abortion meaning in arabic', 'explain missed abortion')",missed abortion meaning in arabic,explain missed abortion,3,4,google,2026-03-12 19:59:50.413186,abortion meaning in hebrew,abortion meaning in arabic,missed,explain +abortion,"('missed abortion meaning in arabic', 'why is it called missed abortion')",missed abortion meaning in arabic,why is it called missed abortion,4,4,google,2026-03-12 19:59:50.413186,abortion meaning in hebrew,abortion meaning in arabic,missed,why is it called +abortion,"('missed abortion meaning in arabic', 'missed abortion medical definition')",missed abortion meaning in arabic,missed abortion medical definition,5,4,google,2026-03-12 19:59:50.413186,abortion meaning in hebrew,abortion meaning in arabic,missed,medical definition +abortion,"('missed abortion meaning in arabic', 'missed abortion medical abbreviation')",missed abortion meaning in arabic,missed abortion medical abbreviation,6,4,google,2026-03-12 19:59:50.413186,abortion meaning in hebrew,abortion meaning in arabic,missed,medical abbreviation +abortion,"('missed abortion meaning in arabic', 'missed abortion medical term')",missed abortion meaning in arabic,missed abortion medical term,7,4,google,2026-03-12 19:59:50.413186,abortion meaning in hebrew,abortion meaning in arabic,missed,medical term +abortion,"('missed abortion meaning in arabic', 'abortion in arabic')",missed abortion meaning in arabic,abortion in arabic,8,4,google,2026-03-12 19:59:50.413186,abortion meaning in hebrew,abortion meaning in arabic,missed,missed +abortion,"('missed abortion meaning in arabic', 'what does missed abortion mean in medicine')",missed abortion meaning in arabic,what does missed abortion mean in medicine,9,4,google,2026-03-12 19:59:50.413186,abortion meaning in hebrew,abortion meaning in arabic,missed,what does mean medicine +abortion,"('abortion clinic meaning in arabic', 'abortion meaning in arabic')",abortion clinic meaning in arabic,abortion meaning in arabic,1,4,google,2026-03-12 19:59:51.598119,abortion meaning in hebrew,abortion meaning in arabic,clinic,clinic +abortion,"('abortion clinic meaning in arabic', 'abortion in arabic translation')",abortion clinic meaning in arabic,abortion in arabic translation,2,4,google,2026-03-12 19:59:51.598119,abortion meaning in hebrew,abortion meaning in arabic,clinic,translation +abortion,"('abortion clinic meaning in arabic', 'abortion clinic meaning')",abortion clinic meaning in arabic,abortion clinic meaning,3,4,google,2026-03-12 19:59:51.598119,abortion meaning in hebrew,abortion meaning in arabic,clinic,clinic +abortion,"('abortion clinic meaning in arabic', 'abortion in arabic')",abortion clinic meaning in arabic,abortion in arabic,4,4,google,2026-03-12 19:59:51.598119,abortion meaning in hebrew,abortion meaning in arabic,clinic,clinic +abortion,"('abortion clinic meaning in arabic', 'abortion meaning in farsi')",abortion clinic meaning in arabic,abortion meaning in farsi,5,4,google,2026-03-12 19:59:51.598119,abortion meaning in hebrew,abortion meaning in arabic,clinic,farsi +abortion,"('abortion clinic meaning in arabic', 'abortion clinic translate')",abortion clinic meaning in arabic,abortion clinic translate,6,4,google,2026-03-12 19:59:51.598119,abortion meaning in hebrew,abortion meaning in arabic,clinic,translate +abortion,"('abortion clinic meaning in arabic', 'abortion clinic in my area')",abortion clinic meaning in arabic,abortion clinic in my area,7,4,google,2026-03-12 19:59:51.598119,abortion meaning in hebrew,abortion meaning in arabic,clinic,my area +abortion,"('abortion meaning in islam', 'abortion dream meaning in islam')",abortion meaning in islam,abortion dream meaning in islam,1,4,google,2026-03-12 19:59:52.501853,abortion meaning in hebrew,abortion meaning in arabic,islam,dream +abortion,"('abortion meaning in islam', 'abortion meaning in arabic')",abortion meaning in islam,abortion meaning in arabic,2,4,google,2026-03-12 19:59:52.501853,abortion meaning in hebrew,abortion meaning in arabic,islam,arabic +abortion,"('abortion meaning in islam', 'abortion meaning in urdu and english')",abortion meaning in islam,abortion meaning in urdu and english,3,4,google,2026-03-12 19:59:52.501853,abortion meaning in hebrew,abortion meaning in arabic,islam,urdu and english +abortion,"('abortion meaning in islam', 'abortion meaning in urdu pdf')",abortion meaning in islam,abortion meaning in urdu pdf,4,4,google,2026-03-12 19:59:52.501853,abortion meaning in hebrew,abortion meaning in arabic,islam,urdu pdf +abortion,"('abortion meaning in islam', 'abortion meaning in urdu')",abortion meaning in islam,abortion meaning in urdu,5,4,google,2026-03-12 19:59:52.501853,abortion meaning in hebrew,abortion meaning in arabic,islam,urdu +abortion,"('abortion meaning in islam', 'abortion meaning in urdu with example')",abortion meaning in islam,abortion meaning in urdu with example,6,4,google,2026-03-12 19:59:52.501853,abortion meaning in hebrew,abortion meaning in arabic,islam,urdu with example +abortion,"('abortion meaning in islam', 'is abortion allowed in islam')",abortion meaning in islam,is abortion allowed in islam,7,4,google,2026-03-12 19:59:52.501853,abortion meaning in hebrew,abortion meaning in arabic,islam,is allowed +abortion,"('abortion meaning in islam', 'abortion definition in india')",abortion meaning in islam,abortion definition in india,8,4,google,2026-03-12 19:59:52.501853,abortion meaning in hebrew,abortion meaning in arabic,islam,definition india +abortion,"('abortion meaning in islam', 'abortion meaning in hebrew')",abortion meaning in islam,abortion meaning in hebrew,9,4,google,2026-03-12 19:59:52.501853,abortion meaning in hebrew,abortion meaning in arabic,islam,hebrew +abortion,"('abortion in arabic translation', 'abortion meaning in arabic')",abortion in arabic translation,abortion meaning in arabic,1,4,google,2026-03-12 19:59:53.643799,abortion meaning in hebrew,abortion meaning in arabic,translation,meaning +abortion,"('abortion in arabic translation', 'abortion in arabic')",abortion in arabic translation,abortion in arabic,2,4,google,2026-03-12 19:59:53.643799,abortion meaning in hebrew,abortion meaning in arabic,translation,translation +abortion,"('abortion in arabic translation', 'abortion in arab countries')",abortion in arabic translation,abortion in arab countries,3,4,google,2026-03-12 19:59:53.643799,abortion meaning in hebrew,abortion meaning in arabic,translation,arab countries +abortion,"('abortion in arabic translation', 'abortion in the arab world')",abortion in arabic translation,abortion in the arab world,4,4,google,2026-03-12 19:59:53.643799,abortion meaning in hebrew,abortion meaning in arabic,translation,the arab world +abortion,"('abortion in arabic translation', 'abortion meaning in farsi')",abortion in arabic translation,abortion meaning in farsi,5,4,google,2026-03-12 19:59:53.643799,abortion meaning in hebrew,abortion meaning in arabic,translation,meaning farsi +abortion,"('abortion in arabic translation', 'abortion in turkish language')",abortion in arabic translation,abortion in turkish language,6,4,google,2026-03-12 19:59:53.643799,abortion meaning in hebrew,abortion meaning in arabic,translation,turkish language +abortion,"('termination meaning in arabic', 'abortion meaning in arabic')",termination meaning in arabic,abortion meaning in arabic,1,4,google,2026-03-12 19:59:54.588110,abortion meaning in hebrew,abortion meaning in arabic,termination,abortion +abortion,"('termination meaning in arabic', 'dismissal meaning in arabic')",termination meaning in arabic,dismissal meaning in arabic,2,4,google,2026-03-12 19:59:54.588110,abortion meaning in hebrew,abortion meaning in arabic,termination,dismissal +abortion,"('termination meaning in arabic', 'cessation meaning in arabic')",termination meaning in arabic,cessation meaning in arabic,3,4,google,2026-03-12 19:59:54.588110,abortion meaning in hebrew,abortion meaning in arabic,termination,cessation +abortion,"('termination meaning in arabic', 'termination letter meaning in arabic')",termination meaning in arabic,termination letter meaning in arabic,4,4,google,2026-03-12 19:59:54.588110,abortion meaning in hebrew,abortion meaning in arabic,termination,letter +abortion,"('termination meaning in arabic', 'session terminated meaning in arabic')",termination meaning in arabic,session terminated meaning in arabic,5,4,google,2026-03-12 19:59:54.588110,abortion meaning in hebrew,abortion meaning in arabic,termination,session terminated +abortion,"('termination meaning in arabic', 'terminate contract meaning in arabic')",termination meaning in arabic,terminate contract meaning in arabic,6,4,google,2026-03-12 19:59:54.588110,abortion meaning in hebrew,abortion meaning in arabic,termination,terminate contract +abortion,"('termination meaning in arabic', 'spontaneous abortion meaning in arabic')",termination meaning in arabic,spontaneous abortion meaning in arabic,7,4,google,2026-03-12 19:59:54.588110,abortion meaning in hebrew,abortion meaning in arabic,termination,spontaneous abortion +abortion,"('termination meaning in arabic', 'dismissal time meaning in arabic')",termination meaning in arabic,dismissal time meaning in arabic,8,4,google,2026-03-12 19:59:54.588110,abortion meaning in hebrew,abortion meaning in arabic,termination,dismissal time +abortion,"('termination meaning in arabic', 'arbitrary dismissal meaning in arabic')",termination meaning in arabic,arbitrary dismissal meaning in arabic,9,4,google,2026-03-12 19:59:54.588110,abortion meaning in hebrew,abortion meaning in arabic,termination,arbitrary dismissal +abortion,"('abortion in arabic', 'abortion in arabic translation')",abortion in arabic,abortion in arabic translation,1,4,google,2026-03-12 19:59:55.526976,abortion meaning in hebrew,abortion meaning in arabic,arabic,translation +abortion,"('abortion in arabic', 'abortion in arabic words')",abortion in arabic,abortion in arabic words,2,4,google,2026-03-12 19:59:55.526976,abortion meaning in hebrew,abortion meaning in arabic,arabic,words +abortion,"('abortion in arabic', 'abortion meaning in arabic')",abortion in arabic,abortion meaning in arabic,3,4,google,2026-03-12 19:59:55.526976,abortion meaning in hebrew,abortion meaning in arabic,arabic,meaning +abortion,"('abortion in arabic', 'missed abortion in arabic')",abortion in arabic,missed abortion in arabic,4,4,google,2026-03-12 19:59:55.526976,abortion meaning in hebrew,abortion meaning in arabic,arabic,missed +abortion,"('abortion in arabic', 'threatened abortion in arabic')",abortion in arabic,threatened abortion in arabic,5,4,google,2026-03-12 19:59:55.526976,abortion meaning in hebrew,abortion meaning in arabic,arabic,threatened +abortion,"('abortion in arabic', 'abortion pill in arabic')",abortion in arabic,abortion pill in arabic,6,4,google,2026-03-12 19:59:55.526976,abortion meaning in hebrew,abortion meaning in arabic,arabic,pill +abortion,"('abortion in arabic', 'septic abortion in arabic')",abortion in arabic,septic abortion in arabic,7,4,google,2026-03-12 19:59:55.526976,abortion meaning in hebrew,abortion meaning in arabic,arabic,septic +abortion,"('abortion in arabic', 'abortion clinic in arabic')",abortion in arabic,abortion clinic in arabic,8,4,google,2026-03-12 19:59:55.526976,abortion meaning in hebrew,abortion meaning in arabic,arabic,clinic +abortion,"('abortion in arabic', 'incomplete abortion in arabic')",abortion in arabic,incomplete abortion in arabic,9,4,google,2026-03-12 19:59:55.526976,abortion meaning in hebrew,abortion meaning in arabic,arabic,incomplete +abortion,"('is elias a jewish name', 'is elias a jewish name in the bible')",is elias a jewish name,is elias a jewish name in the bible,1,4,google,2026-03-12 19:59:56.506706,abortion meaning in hebrew,is elias a hebrew name,jewish,in the bible +abortion,"('is elias a jewish name', 'is elijah a jewish name')",is elias a jewish name,is elijah a jewish name,2,4,google,2026-03-12 19:59:56.506706,abortion meaning in hebrew,is elias a hebrew name,jewish,elijah +abortion,"('is elias a jewish name', 'is elias a hebrew name')",is elias a jewish name,is elias a hebrew name,3,4,google,2026-03-12 19:59:56.506706,abortion meaning in hebrew,is elias a hebrew name,jewish,hebrew +abortion,"('is elias a jewish name', 'is ilyas a jewish name')",is elias a jewish name,is ilyas a jewish name,4,4,google,2026-03-12 19:59:56.506706,abortion meaning in hebrew,is elias a hebrew name,jewish,ilyas +abortion,"('is elias a jewish name', 'is elias a jewish surname')",is elias a jewish name,is elias a jewish surname,5,4,google,2026-03-12 19:59:56.506706,abortion meaning in hebrew,is elias a hebrew name,jewish,surname +abortion,"('is elias a jewish name', 'is elias a common jewish name')",is elias a jewish name,is elias a common jewish name,6,4,google,2026-03-12 19:59:56.506706,abortion meaning in hebrew,is elias a hebrew name,jewish,common +abortion,"('is elias a jewish name', 'is elias a jewish first name')",is elias a jewish name,is elias a jewish first name,7,4,google,2026-03-12 19:59:56.506706,abortion meaning in hebrew,is elias a hebrew name,jewish,first +abortion,"('is elias a jewish name', 'is elijah a popular jewish name')",is elias a jewish name,is elijah a popular jewish name,8,4,google,2026-03-12 19:59:56.506706,abortion meaning in hebrew,is elias a hebrew name,jewish,elijah popular +abortion,"('is elias a jewish name', 'is elias rodriguez a jewish name')",is elias a jewish name,is elias rodriguez a jewish name,9,4,google,2026-03-12 19:59:56.506706,abortion meaning in hebrew,is elias a hebrew name,jewish,rodriguez +abortion,"('is elijah a hebrew name', 'is elijah a jewish name')",is elijah a hebrew name,is elijah a jewish name,1,4,google,2026-03-12 19:59:57.899153,abortion meaning in hebrew,is elias a hebrew name,elijah,jewish +abortion,"('is elijah a hebrew name', 'is elisha a hebrew name')",is elijah a hebrew name,is elisha a hebrew name,2,4,google,2026-03-12 19:59:57.899153,abortion meaning in hebrew,is elias a hebrew name,elijah,elisha +abortion,"('is elijah a hebrew name', 'is elijah a popular jewish name')",is elijah a hebrew name,is elijah a popular jewish name,3,4,google,2026-03-12 19:59:57.899153,abortion meaning in hebrew,is elias a hebrew name,elijah,popular jewish +abortion,"('is elijah a hebrew name', 'is elijah a biblical name')",is elijah a hebrew name,is elijah a biblical name,4,4,google,2026-03-12 19:59:57.899153,abortion meaning in hebrew,is elias a hebrew name,elijah,biblical +abortion,"('is elijah a hebrew name', 'what does the name elijah mean in hebrew')",is elijah a hebrew name,what does the name elijah mean in hebrew,5,4,google,2026-03-12 19:59:57.899153,abortion meaning in hebrew,is elias a hebrew name,elijah,what does the mean in +abortion,"('is elijah a hebrew name', 'is elijah hebrew')",is elijah a hebrew name,is elijah hebrew,6,4,google,2026-03-12 19:59:57.899153,abortion meaning in hebrew,is elias a hebrew name,elijah,elijah +abortion,"('is elijah a hebrew name', 'is elijah a boy name')",is elijah a hebrew name,is elijah a boy name,7,4,google,2026-03-12 19:59:57.899153,abortion meaning in hebrew,is elias a hebrew name,elijah,boy +abortion,"('is elias a jewish name in the bible', 'is elias a hebrew name')",is elias a jewish name in the bible,is elias a hebrew name,1,4,google,2026-03-12 19:59:59.334675,abortion meaning in hebrew,is elias a hebrew name,jewish in the bible,hebrew +abortion,"('is elias a jewish name in the bible', 'is elias a biblical name')",is elias a jewish name in the bible,is elias a biblical name,2,4,google,2026-03-12 19:59:59.334675,abortion meaning in hebrew,is elias a hebrew name,jewish in the bible,biblical +abortion,"('is elias a jewish name in the bible', 'is elias a bible name')",is elias a jewish name in the bible,is elias a bible name,3,4,google,2026-03-12 19:59:59.334675,abortion meaning in hebrew,is elias a hebrew name,jewish in the bible,jewish in the bible +abortion,"('is elias a jewish name in the bible', 'what type of name is elias')",is elias a jewish name in the bible,what type of name is elias,4,4,google,2026-03-12 19:59:59.334675,abortion meaning in hebrew,is elias a hebrew name,jewish in the bible,what type of +abortion,"('is elias a jewish name in the bible', 'is elias a jewish name')",is elias a jewish name in the bible,is elias a jewish name,5,4,google,2026-03-12 19:59:59.334675,abortion meaning in hebrew,is elias a hebrew name,jewish in the bible,jewish in the bible +abortion,"('is elias a jewish name in the bible', 'is elias a jewish last name')",is elias a jewish name in the bible,is elias a jewish last name,6,4,google,2026-03-12 19:59:59.334675,abortion meaning in hebrew,is elias a hebrew name,jewish in the bible,last +abortion,"('is ilyas a hebrew name', 'is elias a hebrew name')",is ilyas a hebrew name,is elias a hebrew name,1,4,google,2026-03-12 20:00:00.152443,abortion meaning in hebrew,is elias a hebrew name,ilyas,elias +abortion,"('is ilyas a hebrew name', 'is ilyas a jewish name')",is ilyas a hebrew name,is ilyas a jewish name,2,4,google,2026-03-12 20:00:00.152443,abortion meaning in hebrew,is elias a hebrew name,ilyas,jewish +abortion,"('is ilyas a hebrew name', 'is eliana a hebrew name')",is ilyas a hebrew name,is eliana a hebrew name,3,4,google,2026-03-12 20:00:00.152443,abortion meaning in hebrew,is elias a hebrew name,ilyas,eliana +abortion,"('is ilyas a hebrew name', 'is elijah a hebrew name')",is ilyas a hebrew name,is elijah a hebrew name,4,4,google,2026-03-12 20:00:00.152443,abortion meaning in hebrew,is elias a hebrew name,ilyas,elijah +abortion,"('is ilyas a hebrew name', 'what is my name in hebrew')",is ilyas a hebrew name,what is my name in hebrew,5,4,google,2026-03-12 20:00:00.152443,abortion meaning in hebrew,is elias a hebrew name,ilyas,what my in +abortion,"('is ilyas a hebrew name', 'ilyas name origin')",is ilyas a hebrew name,ilyas name origin,6,4,google,2026-03-12 20:00:00.152443,abortion meaning in hebrew,is elias a hebrew name,ilyas,origin +abortion,"('is ilyas a hebrew name', 'ilyas name meaning arabic')",is ilyas a hebrew name,ilyas name meaning arabic,7,4,google,2026-03-12 20:00:00.152443,abortion meaning in hebrew,is elias a hebrew name,ilyas,meaning arabic +abortion,"('is ilyas a hebrew name', 'name ilyas meaning')",is ilyas a hebrew name,name ilyas meaning,8,4,google,2026-03-12 20:00:00.152443,abortion meaning in hebrew,is elias a hebrew name,ilyas,meaning +abortion,"('is ilyas a hebrew name', 'ilyas name pronunciation')",is ilyas a hebrew name,ilyas name pronunciation,9,4,google,2026-03-12 20:00:00.152443,abortion meaning in hebrew,is elias a hebrew name,ilyas,pronunciation +abortion,"('is elias a jewish last name', 'is elias a jewish first name')",is elias a jewish last name,is elias a jewish first name,1,4,google,2026-03-12 20:00:00.969334,abortion meaning in hebrew,is elias a hebrew name,jewish last,first +abortion,"('is elias a jewish last name', 'is elias a jewish name')",is elias a jewish last name,is elias a jewish name,2,4,google,2026-03-12 20:00:00.969334,abortion meaning in hebrew,is elias a hebrew name,jewish last,jewish last +abortion,"('is elias a jewish last name', 'is elias a jewish name in the bible')",is elias a jewish last name,is elias a jewish name in the bible,3,4,google,2026-03-12 20:00:00.969334,abortion meaning in hebrew,is elias a hebrew name,jewish last,in the bible +abortion,"('is elias a jewish last name', 'is elijah a jewish name')",is elias a jewish last name,is elijah a jewish name,4,4,google,2026-03-12 20:00:00.969334,abortion meaning in hebrew,is elias a hebrew name,jewish last,elijah +abortion,"('is elias a jewish last name', 'is ilyas a jewish name')",is elias a jewish last name,is ilyas a jewish name,5,4,google,2026-03-12 20:00:00.969334,abortion meaning in hebrew,is elias a hebrew name,jewish last,ilyas +abortion,"('is elias a jewish last name', 'is elias a last name')",is elias a jewish last name,is elias a last name,6,4,google,2026-03-12 20:00:00.969334,abortion meaning in hebrew,is elias a hebrew name,jewish last,jewish last +abortion,"('is elias a jewish last name', 'is elias a hebrew name')",is elias a jewish last name,is elias a hebrew name,7,4,google,2026-03-12 20:00:00.969334,abortion meaning in hebrew,is elias a hebrew name,jewish last,hebrew +abortion,"('is elias a common jewish name', 'is elijah a popular jewish name')",is elias a common jewish name,is elijah a popular jewish name,1,4,google,2026-03-12 20:00:01.839421,abortion meaning in hebrew,is elias a hebrew name,common jewish,elijah popular +abortion,"('is elias a common jewish name', 'is elias a jewish name')",is elias a common jewish name,is elias a jewish name,2,4,google,2026-03-12 20:00:01.839421,abortion meaning in hebrew,is elias a hebrew name,common jewish,common jewish +abortion,"('is elias a common jewish name', 'is elias a common name')",is elias a common jewish name,is elias a common name,3,4,google,2026-03-12 20:00:01.839421,abortion meaning in hebrew,is elias a hebrew name,common jewish,common jewish +abortion,"('is elias a common jewish name', 'is elias a jewish last name')",is elias a common jewish name,is elias a jewish last name,4,4,google,2026-03-12 20:00:01.839421,abortion meaning in hebrew,is elias a hebrew name,common jewish,last +abortion,"('is elias a common jewish name', 'is elias a hebrew name')",is elias a common jewish name,is elias a hebrew name,5,4,google,2026-03-12 20:00:01.839421,abortion meaning in hebrew,is elias a hebrew name,common jewish,hebrew +abortion,"('is elias a jewish first name', 'is elias a jewish name')",is elias a jewish first name,is elias a jewish name,1,4,google,2026-03-12 20:00:03.051953,abortion meaning in hebrew,is elias a hebrew name,jewish first,jewish first +abortion,"('is elias a jewish first name', 'is elias a jewish last name')",is elias a jewish first name,is elias a jewish last name,2,4,google,2026-03-12 20:00:03.051953,abortion meaning in hebrew,is elias a hebrew name,jewish first,last +abortion,"('is elias a jewish first name', 'is elias a hebrew name')",is elias a jewish first name,is elias a hebrew name,3,4,google,2026-03-12 20:00:03.051953,abortion meaning in hebrew,is elias a hebrew name,jewish first,hebrew +abortion,"('is elias a jewish first name', 'is elias a french name')",is elias a jewish first name,is elias a french name,4,4,google,2026-03-12 20:00:03.051953,abortion meaning in hebrew,is elias a hebrew name,jewish first,french +abortion,"('is elias rodriguez a jewish name', 'is elias a jewish name')",is elias rodriguez a jewish name,is elias a jewish name,1,4,google,2026-03-12 20:00:04.403248,abortion meaning in hebrew,is elias a hebrew name,rodriguez jewish,rodriguez jewish +abortion,"('is elias rodriguez a jewish name', 'is elias a jewish last name')",is elias rodriguez a jewish name,is elias a jewish last name,2,4,google,2026-03-12 20:00:04.403248,abortion meaning in hebrew,is elias a hebrew name,rodriguez jewish,last +abortion,"('is elias rodriguez a jewish name', 'is rodriguez a jewish name')",is elias rodriguez a jewish name,is rodriguez a jewish name,3,4,google,2026-03-12 20:00:04.403248,abortion meaning in hebrew,is elias a hebrew name,rodriguez jewish,rodriguez jewish +abortion,"('is elias rodriguez a jewish name', 'is rodriguez a jewish last name')",is elias rodriguez a jewish name,is rodriguez a jewish last name,4,4,google,2026-03-12 20:00:04.403248,abortion meaning in hebrew,is elias a hebrew name,rodriguez jewish,last +abortion,"('is elias a biblical name', 'is elijah a biblical name')",is elias a biblical name,is elijah a biblical name,1,4,google,2026-03-12 20:00:05.658829,abortion meaning in hebrew,is elias a hebrew name,biblical,elijah +abortion,"('is elias a biblical name', 'is elias a christian name')",is elias a biblical name,is elias a christian name,2,4,google,2026-03-12 20:00:05.658829,abortion meaning in hebrew,is elias a hebrew name,biblical,christian +abortion,"('is elias a biblical name', 'is elias a hebrew name')",is elias a biblical name,is elias a hebrew name,3,4,google,2026-03-12 20:00:05.658829,abortion meaning in hebrew,is elias a hebrew name,biblical,hebrew +abortion,"('is elias a biblical name', 'is elias a muslim or christian name')",is elias a biblical name,is elias a muslim or christian name,4,4,google,2026-03-12 20:00:05.658829,abortion meaning in hebrew,is elias a hebrew name,biblical,muslim or christian +abortion,"('is elias a biblical name', 'is elias a jewish name in the bible')",is elias a biblical name,is elias a jewish name in the bible,5,4,google,2026-03-12 20:00:05.658829,abortion meaning in hebrew,is elias a hebrew name,biblical,jewish in the bible +abortion,"('is elias a biblical name', 'is elias a bible name')",is elias a biblical name,is elias a bible name,6,4,google,2026-03-12 20:00:05.658829,abortion meaning in hebrew,is elias a hebrew name,biblical,bible +abortion,"('is elias a biblical name', 'is elias biblical')",is elias a biblical name,is elias biblical,7,4,google,2026-03-12 20:00:05.658829,abortion meaning in hebrew,is elias a hebrew name,biblical,biblical +abortion,"('is elias a biblical name', 'is elias a boy name')",is elias a biblical name,is elias a boy name,8,4,google,2026-03-12 20:00:05.658829,abortion meaning in hebrew,is elias a hebrew name,biblical,boy +abortion,"('abortion in hebrew bible verse', 'abortion in hebrew bible verses')",abortion in hebrew bible verse,abortion in hebrew bible verses,1,4,google,2026-03-12 20:00:06.856653,abortion meaning in hebrew,abortion in hebrew bible,verse,verses +abortion,"('abortion in hebrew bible verse', 'abortion in hebrew bible verse tattoos')",abortion in hebrew bible verse,abortion in hebrew bible verse tattoos,2,4,google,2026-03-12 20:00:06.856653,abortion meaning in hebrew,abortion in hebrew bible,verse,tattoos +abortion,"('abortion in hebrew bible verse', 'abortion in hebrew bible verse numbers')",abortion in hebrew bible verse,abortion in hebrew bible verse numbers,3,4,google,2026-03-12 20:00:06.856653,abortion meaning in hebrew,abortion in hebrew bible,verse,numbers +abortion,"('abortion in hebrew bibles', 'abortion in hebrew bibles pdf')",abortion in hebrew bibles,abortion in hebrew bibles pdf,1,4,google,2026-03-12 20:00:08.260581,abortion meaning in hebrew,abortion in hebrew bible,bibles,pdf +abortion,"('abortion in hebrew bibles', 'abortion in hebrew bibles in the bible')",abortion in hebrew bibles,abortion in hebrew bibles in the bible,2,4,google,2026-03-12 20:00:08.260581,abortion meaning in hebrew,abortion in hebrew bible,bibles,the bible +abortion,"('abortion in hebrew bibles', 'abortion in hebrew bibles in english')",abortion in hebrew bibles,abortion in hebrew bibles in english,3,4,google,2026-03-12 20:00:08.260581,abortion meaning in hebrew,abortion in hebrew bible,bibles,english +abortion,"('abortion in hebrew bibles', 'abortion in hebrew bibles in hebrew')",abortion in hebrew bibles,abortion in hebrew bibles in hebrew,4,4,google,2026-03-12 20:00:08.260581,abortion meaning in hebrew,abortion in hebrew bible,bibles,bibles +abortion,"('abortion in hebrew bibles', 'abortion in hebrew bibles instructions')",abortion in hebrew bibles,abortion in hebrew bibles instructions,5,4,google,2026-03-12 20:00:08.260581,abortion meaning in hebrew,abortion in hebrew bible,bibles,instructions +abortion,"('abortion in hebrew bibles', 'abortion in hebrew bibles leviticus')",abortion in hebrew bibles,abortion in hebrew bibles leviticus,6,4,google,2026-03-12 20:00:08.260581,abortion meaning in hebrew,abortion in hebrew bible,bibles,leviticus +abortion,"('abortion in hebrew bibles', 'abortion in hebrew bibles numbers')",abortion in hebrew bibles,abortion in hebrew bibles numbers,7,4,google,2026-03-12 20:00:08.260581,abortion meaning in hebrew,abortion in hebrew bible,bibles,numbers +abortion,"('abortion in hebrew bibles', 'abortion in hebrew bibles infidelity')",abortion in hebrew bibles,abortion in hebrew bibles infidelity,8,4,google,2026-03-12 20:00:08.260581,abortion meaning in hebrew,abortion in hebrew bible,bibles,infidelity +abortion,"('abortion in hebrew bibles', 'abortion in hebrew bibles numbers 5')",abortion in hebrew bibles,abortion in hebrew bibles numbers 5,9,4,google,2026-03-12 20:00:08.260581,abortion meaning in hebrew,abortion in hebrew bible,bibles,numbers 5 +abortion,"('abortion in hebrew bible translation', 'abortion in hebrew bible translations')",abortion in hebrew bible translation,abortion in hebrew bible translations,1,4,google,2026-03-12 20:00:09.581334,abortion meaning in hebrew,abortion in hebrew bible,translation,translations +abortion,"('abortion in hebrew bible translation', 'abortion in hebrew bible translation pdf')",abortion in hebrew bible translation,abortion in hebrew bible translation pdf,2,4,google,2026-03-12 20:00:09.581334,abortion meaning in hebrew,abortion in hebrew bible,translation,pdf +abortion,"('abortion in hebrew bible translation', 'abortion in hebrew bible translation bible')",abortion in hebrew bible translation,abortion in hebrew bible translation bible,3,4,google,2026-03-12 20:00:09.581334,abortion meaning in hebrew,abortion in hebrew bible,translation,translation +abortion,"('abortion in hebrew bible translation', 'abortion in hebrew bible translation bible hub')",abortion in hebrew bible translation,abortion in hebrew bible translation bible hub,4,4,google,2026-03-12 20:00:09.581334,abortion meaning in hebrew,abortion in hebrew bible,translation,hub +abortion,"('abortion in hebrew bible translation', 'abortion in hebrew bible translation online')",abortion in hebrew bible translation,abortion in hebrew bible translation online,5,4,google,2026-03-12 20:00:09.581334,abortion meaning in hebrew,abortion in hebrew bible,translation,online +abortion,"('abortion in hebrew bible meaning', 'abortion in hebrew bible meaning in hebrew')",abortion in hebrew bible meaning,abortion in hebrew bible meaning in hebrew,1,4,google,2026-03-12 20:00:10.529372,abortion meaning in hebrew,abortion in hebrew bible,meaning,meaning +abortion,"('abortion in hebrew bible meaning', 'abortion in hebrew bible meanings')",abortion in hebrew bible meaning,abortion in hebrew bible meanings,2,4,google,2026-03-12 20:00:10.529372,abortion meaning in hebrew,abortion in hebrew bible,meaning,meanings +abortion,"('abortion in hebrew bible meaning', 'abortion in hebrew bible meaning bible hub')",abortion in hebrew bible meaning,abortion in hebrew bible meaning bible hub,3,4,google,2026-03-12 20:00:10.529372,abortion meaning in hebrew,abortion in hebrew bible,meaning,hub +abortion,"('abortion in hebrew bible meaning', 'abortion in hebrew bible meaning in the bible')",abortion in hebrew bible meaning,abortion in hebrew bible meaning in the bible,4,4,google,2026-03-12 20:00:10.529372,abortion meaning in hebrew,abortion in hebrew bible,meaning,the +abortion,"('abortion in hebrew bible instructions', 'abortion in hebrew bible instructions pdf')",abortion in hebrew bible instructions,abortion in hebrew bible instructions pdf,1,4,google,2026-03-12 20:00:11.750549,abortion meaning in hebrew,abortion in hebrew bible,instructions,pdf +abortion,"('abortion in hebrew bible instructions', 'abortion in hebrew bible instructions in hebrew')",abortion in hebrew bible instructions,abortion in hebrew bible instructions in hebrew,2,4,google,2026-03-12 20:00:11.750549,abortion meaning in hebrew,abortion in hebrew bible,instructions,instructions +abortion,"('abortion in hebrew bible instructions', 'abortion in hebrew bible instructions in the bible')",abortion in hebrew bible instructions,abortion in hebrew bible instructions in the bible,3,4,google,2026-03-12 20:00:11.750549,abortion meaning in hebrew,abortion in hebrew bible,instructions,the +abortion,"('abortion in hebrew bible instructions', 'abortion in hebrew bible instructions in english')",abortion in hebrew bible instructions,abortion in hebrew bible instructions in english,4,4,google,2026-03-12 20:00:11.750549,abortion meaning in hebrew,abortion in hebrew bible,instructions,english +abortion,"('abortion in hebrew bible instructions', 'abortion in hebrew bible instructions passage')",abortion in hebrew bible instructions,abortion in hebrew bible instructions passage,5,4,google,2026-03-12 20:00:11.750549,abortion meaning in hebrew,abortion in hebrew bible,instructions,passage +abortion,"('abortion in hebrew bible leviticus', 'abortion in hebrew bible leviticus 19')",abortion in hebrew bible leviticus,abortion in hebrew bible leviticus 19,1,4,google,2026-03-12 20:00:13.229835,abortion meaning in hebrew,abortion in hebrew bible,leviticus,19 +abortion,"('abortion in hebrew bible leviticus', 'abortion in hebrew bible leviticus 11')",abortion in hebrew bible leviticus,abortion in hebrew bible leviticus 11,2,4,google,2026-03-12 20:00:13.229835,abortion meaning in hebrew,abortion in hebrew bible,leviticus,11 +abortion,"('abortion in hebrew bible leviticus', 'abortion in hebrew bible leviticus 18')",abortion in hebrew bible leviticus,abortion in hebrew bible leviticus 18,3,4,google,2026-03-12 20:00:13.229835,abortion meaning in hebrew,abortion in hebrew bible,leviticus,18 +abortion,"('abortion in hebrew bible leviticus', 'abortion in hebrew bible leviticus 8')",abortion in hebrew bible leviticus,abortion in hebrew bible leviticus 8,4,4,google,2026-03-12 20:00:13.229835,abortion meaning in hebrew,abortion in hebrew bible,leviticus,8 +abortion,"('abortion in hebrew bible times', 'abortion in hebrew bible times pdf')",abortion in hebrew bible times,abortion in hebrew bible times pdf,1,4,google,2026-03-12 20:00:14.690554,abortion meaning in hebrew,abortion in hebrew bible,times,pdf +abortion,"('abortion in hebrew bible times', 'abortion in hebrew bible times bible')",abortion in hebrew bible times,abortion in hebrew bible times bible,2,4,google,2026-03-12 20:00:14.690554,abortion meaning in hebrew,abortion in hebrew bible,times,times +abortion,"('abortion in hebrew bible times', 'abortion in hebrew bible times bible hub')",abortion in hebrew bible times,abortion in hebrew bible times bible hub,3,4,google,2026-03-12 20:00:14.690554,abortion meaning in hebrew,abortion in hebrew bible,times,hub +abortion,"('abortion in hebrew bible numbers 5', 'abortion in hebrew bible numbers 5 11')",abortion in hebrew bible numbers 5,abortion in hebrew bible numbers 5 11,1,4,google,2026-03-12 20:00:16.149514,abortion meaning in hebrew,abortion in hebrew bible,numbers 5,11 +abortion,"('abortion in hebrew bible numbers 5', 'abortion in hebrew bible numbers 5 21')",abortion in hebrew bible numbers 5,abortion in hebrew bible numbers 5 21,2,4,google,2026-03-12 20:00:16.149514,abortion meaning in hebrew,abortion in hebrew bible,numbers 5,21 +abortion,"('abortion in hebrew bible numbers 5', 'abortion in hebrew bible numbers 5 13')",abortion in hebrew bible numbers 5,abortion in hebrew bible numbers 5 13,3,4,google,2026-03-12 20:00:16.149514,abortion meaning in hebrew,abortion in hebrew bible,numbers 5,13 +abortion,"('abortion in hebrew bible numbers 5', 'abortion in hebrew bible numbers 5 4')",abortion in hebrew bible numbers 5,abortion in hebrew bible numbers 5 4,4,4,google,2026-03-12 20:00:16.149514,abortion meaning in hebrew,abortion in hebrew bible,numbers 5,4 +abortion,"('abortion in hebrew bible numbers 5', 'abortion in hebrew bible numbers 5 12')",abortion in hebrew bible numbers 5,abortion in hebrew bible numbers 5 12,5,4,google,2026-03-12 20:00:16.149514,abortion meaning in hebrew,abortion in hebrew bible,numbers 5,12 +abortion,"('abortion in hebrew bible numbers 5', 'abortion in hebrew bible numbers 5 abortion')",abortion in hebrew bible numbers 5,abortion in hebrew bible numbers 5 abortion,6,4,google,2026-03-12 20:00:16.149514,abortion meaning in hebrew,abortion in hebrew bible,numbers 5,numbers 5 +abortion,"('abortion in hebrew bible numbers 5', 'abortion in hebrew bible numbers 5 11-31')",abortion in hebrew bible numbers 5,abortion in hebrew bible numbers 5 11-31,7,4,google,2026-03-12 20:00:16.149514,abortion meaning in hebrew,abortion in hebrew bible,numbers 5,11-31 +abortion,"('abortion in hebrew bible days', 'abortion in hebrew bible days of the week')",abortion in hebrew bible days,abortion in hebrew bible days of the week,1,4,google,2026-03-12 20:00:17.504298,abortion meaning in hebrew,abortion in hebrew bible,days,of the week +abortion,"('abortion in hebrew bible days', 'abortion in hebrew bible days of creation')",abortion in hebrew bible days,abortion in hebrew bible days of creation,2,4,google,2026-03-12 20:00:17.504298,abortion meaning in hebrew,abortion in hebrew bible,days,of creation +abortion,"('abortion in hebrew bible days', 'abortion in hebrew bible days in the bible')",abortion in hebrew bible days,abortion in hebrew bible days in the bible,3,4,google,2026-03-12 20:00:17.504298,abortion meaning in hebrew,abortion in hebrew bible,days,the +abortion,"('abortion in hebrew bible days', 'abortion in hebrew bible days before jesus')",abortion in hebrew bible days,abortion in hebrew bible days before jesus,4,4,google,2026-03-12 20:00:17.504298,abortion meaning in hebrew,abortion in hebrew bible,days,before jesus +abortion,"('abortion in hebrew bible book of numbers', 'abortion in hebrew bible book of numbers pdf')",abortion in hebrew bible book of numbers,abortion in hebrew bible book of numbers pdf,1,4,google,2026-03-12 20:00:18.353048,abortion meaning in hebrew,abortion in hebrew bible,book of numbers,pdf +abortion,"('abortion in hebrew bible book of numbers', 'abortion in hebrew bible book of numbers kjv')",abortion in hebrew bible book of numbers,abortion in hebrew bible book of numbers kjv,2,4,google,2026-03-12 20:00:18.353048,abortion meaning in hebrew,abortion in hebrew bible,book of numbers,kjv +abortion,"('abortion in hebrew bible book of numbers', 'abortion in hebrew bible book of numbers bible')",abortion in hebrew bible book of numbers,abortion in hebrew bible book of numbers bible,3,4,google,2026-03-12 20:00:18.353048,abortion meaning in hebrew,abortion in hebrew bible,book of numbers,book of numbers +abortion,"('abortion in hebrew bible book of numbers', 'abortion in hebrew bible book of numbers 1')",abortion in hebrew bible book of numbers,abortion in hebrew bible book of numbers 1,4,4,google,2026-03-12 20:00:18.353048,abortion meaning in hebrew,abortion in hebrew bible,book of numbers,1 +abortion,"('abortion in hebrew bible book of numbers', 'abortion in hebrew bible book of numbers 21')",abortion in hebrew bible book of numbers,abortion in hebrew bible book of numbers 21,5,4,google,2026-03-12 20:00:18.353048,abortion meaning in hebrew,abortion in hebrew bible,book of numbers,21 +abortion,"('abortion in hebrew bible book of numbers', 'abortion in hebrew bible book of numbers 5')",abortion in hebrew bible book of numbers,abortion in hebrew bible book of numbers 5,6,4,google,2026-03-12 20:00:18.353048,abortion meaning in hebrew,abortion in hebrew bible,book of numbers,5 +abortion,"('abortion in hebrew bible book of numbers', 'abortion in hebrew bible book of numbers 5 11-31')",abortion in hebrew bible book of numbers,abortion in hebrew bible book of numbers 5 11-31,7,4,google,2026-03-12 20:00:18.353048,abortion meaning in hebrew,abortion in hebrew bible,book of numbers,5 11-31 +abortion,"('abortion in hebrew translation', 'is abortion mentioned in the bible')",abortion in hebrew translation,is abortion mentioned in the bible,1,4,google,2026-03-12 20:00:19.544943,abortion meaning in hebrew,abortion in hebrew,translation,is mentioned the bible +abortion,"('abortion in hebrew translation', 'abortion in arabic translation')",abortion in hebrew translation,abortion in arabic translation,2,4,google,2026-03-12 20:00:19.544943,abortion meaning in hebrew,abortion in hebrew,translation,arabic +abortion,"('abortion in hebrew translation', 'abortion in hebrew bible')",abortion in hebrew translation,abortion in hebrew bible,3,4,google,2026-03-12 20:00:19.544943,abortion meaning in hebrew,abortion in hebrew,translation,bible +abortion,"('abortion in hebrew translation', 'abortion in hebrew')",abortion in hebrew translation,abortion in hebrew,4,4,google,2026-03-12 20:00:19.544943,abortion meaning in hebrew,abortion in hebrew,translation,translation +abortion,"('abortion in hebrew translation', 'abortion meaning in hebrew')",abortion in hebrew translation,abortion meaning in hebrew,5,4,google,2026-03-12 20:00:19.544943,abortion meaning in hebrew,abortion in hebrew,translation,meaning +abortion,"('abortion in hebrew translation', 'abortion in halakhic literature')",abortion in hebrew translation,abortion in halakhic literature,6,4,google,2026-03-12 20:00:19.544943,abortion meaning in hebrew,abortion in hebrew,translation,halakhic literature +abortion,"('how to say abortion in hebrew', 'hebrew word for abortion')",how to say abortion in hebrew,hebrew word for abortion,1,4,google,2026-03-12 20:00:20.493448,abortion meaning in hebrew,abortion in hebrew,how to say,word for +abortion,"('how to say abortion in hebrew', 'how to say abortion in asl')",how to say abortion in hebrew,how to say abortion in asl,2,4,google,2026-03-12 20:00:20.493448,abortion meaning in hebrew,abortion in hebrew,how to say,asl +abortion,"('how to say abortion in hebrew', 'how to say abortion in spanish')",how to say abortion in hebrew,how to say abortion in spanish,3,4,google,2026-03-12 20:00:20.493448,abortion meaning in hebrew,abortion in hebrew,how to say,spanish +abortion,"('how to say abortion in hebrew', 'how to say about in hebrew')",how to say abortion in hebrew,how to say about in hebrew,4,4,google,2026-03-12 20:00:20.493448,abortion meaning in hebrew,abortion in hebrew,how to say,about +abortion,"('abortion in halacha', 'is abortion legal in judaism')",abortion in halacha,is abortion legal in judaism,1,4,google,2026-03-12 20:00:21.844738,abortion meaning in hebrew,abortion in hebrew,halacha,is legal judaism +abortion,"('abortion in halacha', 'is abortion ok in judaism')",abortion in halacha,is abortion ok in judaism,2,4,google,2026-03-12 20:00:21.844738,abortion meaning in hebrew,abortion in hebrew,halacha,is ok judaism +abortion,"('abortion in halacha', 'abortion laws in france')",abortion in halacha,abortion laws in france,3,4,google,2026-03-12 20:00:21.844738,abortion meaning in hebrew,abortion in hebrew,halacha,laws france +abortion,"('abortion in halacha', 'abortion in halakhic literature')",abortion in halacha,abortion in halakhic literature,4,4,google,2026-03-12 20:00:21.844738,abortion meaning in hebrew,abortion in hebrew,halacha,halakhic literature +abortion,"('abortion in halacha', 'abortion in hanafi')",abortion in halacha,abortion in hanafi,5,4,google,2026-03-12 20:00:21.844738,abortion meaning in hebrew,abortion in hebrew,halacha,hanafi +abortion,"('abortion meaning in persian', 'abortion meaning in farsi')",abortion meaning in persian,abortion meaning in farsi,1,4,google,2026-03-12 20:00:23.173947,abortion meaning in hebrew,abortion meaning in farsi,persian,farsi +abortion,"('abortion meaning in persian', 'abortion meaning in arabic')",abortion meaning in persian,abortion meaning in arabic,2,4,google,2026-03-12 20:00:23.173947,abortion meaning in hebrew,abortion meaning in farsi,persian,arabic +abortion,"('abortion meaning in persian', 'aurat meaning in persian')",abortion meaning in persian,aurat meaning in persian,3,4,google,2026-03-12 20:00:23.173947,abortion meaning in hebrew,abortion meaning in farsi,persian,aurat +abortion,"('abortion meaning in persian', 'abortion in farsi')",abortion meaning in persian,abortion in farsi,4,4,google,2026-03-12 20:00:23.173947,abortion meaning in hebrew,abortion meaning in farsi,persian,farsi +abortion,"('abortion meaning in persian', 'abortion meaning in vietnamese')",abortion meaning in persian,abortion meaning in vietnamese,5,4,google,2026-03-12 20:00:23.173947,abortion meaning in hebrew,abortion meaning in farsi,persian,vietnamese +abortion,"('abortion meaning in persian', 'abortion meaning in hebrew')",abortion meaning in persian,abortion meaning in hebrew,6,4,google,2026-03-12 20:00:23.173947,abortion meaning in hebrew,abortion meaning in farsi,persian,hebrew +abortion,"('bay meaning in farsi', 'bay leaf meaning in farsi')",bay meaning in farsi,bay leaf meaning in farsi,1,4,google,2026-03-12 20:00:24.632926,abortion meaning in hebrew,abortion meaning in farsi,bay,leaf +abortion,"('bay meaning in farsi', 'bay meaning in persian')",bay meaning in farsi,bay meaning in persian,2,4,google,2026-03-12 20:00:24.632926,abortion meaning in hebrew,abortion meaning in farsi,bay,persian +abortion,"('bay meaning in farsi', 'bay bay meaning in urdu')",bay meaning in farsi,bay bay meaning in urdu,3,4,google,2026-03-12 20:00:24.632926,abortion meaning in hebrew,abortion meaning in farsi,bay,urdu +abortion,"('bay meaning in farsi', 'bay meaning in punjabi')",bay meaning in farsi,bay meaning in punjabi,4,4,google,2026-03-12 20:00:24.632926,abortion meaning in hebrew,abortion meaning in farsi,bay,punjabi +abortion,"('bay meaning in farsi', 'bay bay meaning in english')",bay meaning in farsi,bay bay meaning in english,5,4,google,2026-03-12 20:00:24.632926,abortion meaning in hebrew,abortion meaning in farsi,bay,english +abortion,"('bay meaning in farsi', 'bay in farsi')",bay meaning in farsi,bay in farsi,6,4,google,2026-03-12 20:00:24.632926,abortion meaning in hebrew,abortion meaning in farsi,bay,bay +abortion,"('bay meaning in farsi', 'bay in persian')",bay meaning in farsi,bay in persian,7,4,google,2026-03-12 20:00:24.632926,abortion meaning in hebrew,abortion meaning in farsi,bay,persian +abortion,"('bay meaning in farsi', 'bay meaning verb')",bay meaning in farsi,bay meaning verb,8,4,google,2026-03-12 20:00:24.632926,abortion meaning in hebrew,abortion meaning in farsi,bay,verb +abortion,"('bay meaning in farsi', 'bay meaning in spanish')",bay meaning in farsi,bay meaning in spanish,9,4,google,2026-03-12 20:00:24.632926,abortion meaning in hebrew,abortion meaning in farsi,bay,spanish +abortion,"('abortion in farsi', 'abortion meaning in farsi')",abortion in farsi,abortion meaning in farsi,1,4,google,2026-03-12 20:00:25.536533,abortion meaning in hebrew,abortion meaning in farsi,farsi,meaning +abortion,"('abortion definition in farsi', 'abortion meaning in farsi')",abortion definition in farsi,abortion meaning in farsi,1,4,google,2026-03-12 20:00:26.548464,abortion meaning in hebrew,abortion meaning in farsi,definition,meaning +abortion,"('abortion definition in farsi', 'abortion in farsi')",abortion definition in farsi,abortion in farsi,2,4,google,2026-03-12 20:00:26.548464,abortion meaning in hebrew,abortion meaning in farsi,definition,definition +abortion,"('abortion definition in farsi', 'abortion meaning in persian')",abortion definition in farsi,abortion meaning in persian,3,4,google,2026-03-12 20:00:26.548464,abortion meaning in hebrew,abortion meaning in farsi,definition,meaning persian +abortion,"('transaction aborted meaning in hindi with example', 'your transaction is aborted meaning in hindi with example')",transaction aborted meaning in hindi with example,your transaction is aborted meaning in hindi with example,1,4,google,2026-03-12 20:00:27.699656,abortion meaning in hindi,abortion meaning in hindi with example,transaction aborted,your is +abortion,"('transaction aborted meaning in hindi with example', 'transaction aborted meaning')",transaction aborted meaning in hindi with example,transaction aborted meaning,2,4,google,2026-03-12 20:00:27.699656,abortion meaning in hindi,abortion meaning in hindi with example,transaction aborted,transaction aborted +abortion,"('transaction aborted meaning in hindi with example', 'aborted meaning in banking')",transaction aborted meaning in hindi with example,aborted meaning in banking,3,4,google,2026-03-12 20:00:27.699656,abortion meaning in hindi,abortion meaning in hindi with example,transaction aborted,banking +abortion,"('transaction aborted meaning in hindi with example', 'what is aborted transaction')",transaction aborted meaning in hindi with example,what is aborted transaction,4,4,google,2026-03-12 20:00:27.699656,abortion meaning in hindi,abortion meaning in hindi with example,transaction aborted,what is +abortion,"('transaction aborted meaning in hindi with example', 'aborted transaction meaning in hindi')",transaction aborted meaning in hindi with example,aborted transaction meaning in hindi,5,4,google,2026-03-12 20:00:27.699656,abortion meaning in hindi,abortion meaning in hindi with example,transaction aborted,transaction aborted +abortion,"('transaction aborted meaning in hindi with example', 'transaction aborted meaning in english')",transaction aborted meaning in hindi with example,transaction aborted meaning in english,6,4,google,2026-03-12 20:00:27.699656,abortion meaning in hindi,abortion meaning in hindi with example,transaction aborted,english +abortion,"('call aborted meaning in hindi with example', 'call aborted meaning')",call aborted meaning in hindi with example,call aborted meaning,1,4,google,2026-03-12 20:00:28.676343,abortion meaning in hindi,abortion meaning in hindi with example,call aborted,call aborted +abortion,"('call aborted meaning in hindi with example', 'call aborted meaning in hindi')",call aborted meaning in hindi with example,call aborted meaning in hindi,2,4,google,2026-03-12 20:00:28.676343,abortion meaning in hindi,abortion meaning in hindi with example,call aborted,call aborted +abortion,"('call aborted meaning in hindi with example', 'call aborted')",call aborted meaning in hindi with example,call aborted,3,4,google,2026-03-12 20:00:28.676343,abortion meaning in hindi,abortion meaning in hindi with example,call aborted,call aborted +abortion,"('payment aborted meaning in hindi with example', 'aborted meaning in hindi with example')",payment aborted meaning in hindi with example,aborted meaning in hindi with example,1,4,google,2026-03-12 20:00:29.935095,abortion meaning in hindi,abortion meaning in hindi with example,payment aborted,payment aborted +abortion,"('payment aborted meaning in hindi with example', 'transaction aborted meaning in hindi with example')",payment aborted meaning in hindi with example,transaction aborted meaning in hindi with example,2,4,google,2026-03-12 20:00:29.935095,abortion meaning in hindi,abortion meaning in hindi with example,payment aborted,transaction +abortion,"('payment aborted meaning in hindi with example', 'call aborted meaning in hindi with example')",payment aborted meaning in hindi with example,call aborted meaning in hindi with example,3,4,google,2026-03-12 20:00:29.935095,abortion meaning in hindi,abortion meaning in hindi with example,payment aborted,call +abortion,"('payment aborted meaning in hindi with example', 'mission abort meaning in hindi with example')",payment aborted meaning in hindi with example,mission abort meaning in hindi with example,4,4,google,2026-03-12 20:00:29.935095,abortion meaning in hindi,abortion meaning in hindi with example,payment aborted,mission abort +abortion,"('payment aborted meaning in hindi with example', 'miscarriage meaning in hindi with example')",payment aborted meaning in hindi with example,miscarriage meaning in hindi with example,5,4,google,2026-03-12 20:00:29.935095,abortion meaning in hindi,abortion meaning in hindi with example,payment aborted,miscarriage +abortion,"('payment aborted meaning in hindi with example', 'payment aborted meaning')",payment aborted meaning in hindi with example,payment aborted meaning,6,4,google,2026-03-12 20:00:29.935095,abortion meaning in hindi,abortion meaning in hindi with example,payment aborted,payment aborted +abortion,"('payment aborted meaning in hindi with example', 'aborted meaning in banking')",payment aborted meaning in hindi with example,aborted meaning in banking,7,4,google,2026-03-12 20:00:29.935095,abortion meaning in hindi,abortion meaning in hindi with example,payment aborted,banking +abortion,"('payment aborted meaning in hindi with example', 'payment aborted meaning in hindi')",payment aborted meaning in hindi with example,payment aborted meaning in hindi,8,4,google,2026-03-12 20:00:29.935095,abortion meaning in hindi,abortion meaning in hindi with example,payment aborted,payment aborted +abortion,"('payment aborted meaning in hindi with example', 'payment aborted')",payment aborted meaning in hindi with example,payment aborted,9,4,google,2026-03-12 20:00:29.935095,abortion meaning in hindi,abortion meaning in hindi with example,payment aborted,payment aborted +abortion,"('mission abort meaning in hindi with example', 'mission meaning in hindi with example')",mission abort meaning in hindi with example,mission meaning in hindi with example,1,4,google,2026-03-12 20:00:31.130832,abortion meaning in hindi,abortion meaning in hindi with example,mission abort,mission abort +abortion,"('mission abort meaning in hindi with example', 'mission abort meaning')",mission abort meaning in hindi with example,mission abort meaning,2,4,google,2026-03-12 20:00:31.130832,abortion meaning in hindi,abortion meaning in hindi with example,mission abort,mission abort +abortion,"('mission abort meaning in hindi with example', 'mission abort meaning in urdu')",mission abort meaning in hindi with example,mission abort meaning in urdu,3,4,google,2026-03-12 20:00:31.130832,abortion meaning in hindi,abortion meaning in hindi with example,mission abort,urdu +abortion,"('mission abort meaning in hindi with example', 'mission abort meaning in hindi')",mission abort meaning in hindi with example,mission abort meaning in hindi,4,4,google,2026-03-12 20:00:31.130832,abortion meaning in hindi,abortion meaning in hindi with example,mission abort,mission abort +abortion,"('mission abort meaning in hindi with example', 'mission abort meaning in marathi')",mission abort meaning in hindi with example,mission abort meaning in marathi,5,4,google,2026-03-12 20:00:31.130832,abortion meaning in hindi,abortion meaning in hindi with example,mission abort,marathi +abortion,"('mission abort meaning in hindi with example', 'abort mission definition')",mission abort meaning in hindi with example,abort mission definition,6,4,google,2026-03-12 20:00:31.130832,abortion meaning in hindi,abortion meaning in hindi with example,mission abort,definition +abortion,"('mission abort meaning in hindi with example', 'define abort mission')",mission abort meaning in hindi with example,define abort mission,7,4,google,2026-03-12 20:00:31.130832,abortion meaning in hindi,abortion meaning in hindi with example,mission abort,define +abortion,"('abort meaning in hindi with example in english', 'abort definition english')",abort meaning in hindi with example in english,abort definition english,1,4,google,2026-03-12 20:00:32.585036,abortion meaning in hindi,abortion meaning in hindi with example,abort english,definition +abortion,"('abort meaning in hindi with example in english', 'abort meaning in english')",abort meaning in hindi with example in english,abort meaning in english,2,4,google,2026-03-12 20:00:32.585036,abortion meaning in hindi,abortion meaning in hindi with example,abort english,abort english +abortion,"('abort meaning in hindi with example in english', 'brief meaning in hindi with example')",abort meaning in hindi with example in english,brief meaning in hindi with example,3,4,google,2026-03-12 20:00:32.585036,abortion meaning in hindi,abortion meaning in hindi with example,abort english,brief +abortion,"('abort meaning in hindi with example in english', ""abort definition webster's"")",abort meaning in hindi with example in english,abort definition webster's,4,4,google,2026-03-12 20:00:32.585036,abortion meaning in hindi,abortion meaning in hindi with example,abort english,definition webster's +abortion,"('abort meaning in hindi with example in english', 'abort definition verb')",abort meaning in hindi with example in english,abort definition verb,5,4,google,2026-03-12 20:00:32.585036,abortion meaning in hindi,abortion meaning in hindi with example,abort english,definition verb +abortion,"('abort meaning in hindi with example in english', 'abort meaning')",abort meaning in hindi with example in english,abort meaning,6,4,google,2026-03-12 20:00:32.585036,abortion meaning in hindi,abortion meaning in hindi with example,abort english,abort english +abortion,"('abort meaning in hindi with example in english', 'abort in a sentence')",abort meaning in hindi with example in english,abort in a sentence,7,4,google,2026-03-12 20:00:32.585036,abortion meaning in hindi,abortion meaning in hindi with example,abort english,a sentence +abortion,"('your transaction is aborted meaning in hindi with example', 'transaction aborted meaning')",your transaction is aborted meaning in hindi with example,transaction aborted meaning,1,4,google,2026-03-12 20:00:33.670104,abortion meaning in hindi,abortion meaning in hindi with example,your transaction is aborted,your transaction is aborted +abortion,"('your transaction is aborted meaning in hindi with example', 'what is aborted transaction')",your transaction is aborted meaning in hindi with example,what is aborted transaction,2,4,google,2026-03-12 20:00:33.670104,abortion meaning in hindi,abortion meaning in hindi with example,your transaction is aborted,what +abortion,"('your transaction is aborted meaning in hindi with example', 'aborted meaning in banking')",your transaction is aborted meaning in hindi with example,aborted meaning in banking,3,4,google,2026-03-12 20:00:33.670104,abortion meaning in hindi,abortion meaning in hindi with example,your transaction is aborted,banking +abortion,"('your transaction is aborted meaning in hindi with example', 'your transaction is aborted meaning in hindi')",your transaction is aborted meaning in hindi with example,your transaction is aborted meaning in hindi,4,4,google,2026-03-12 20:00:33.670104,abortion meaning in hindi,abortion meaning in hindi with example,your transaction is aborted,your transaction is aborted +abortion,"('your transaction is aborted meaning in hindi with example', 'contact your bank transaction aborted meaning in hindi')",your transaction is aborted meaning in hindi with example,contact your bank transaction aborted meaning in hindi,5,4,google,2026-03-12 20:00:33.670104,abortion meaning in hindi,abortion meaning in hindi with example,your transaction is aborted,contact bank +abortion,"('user aborted meaning in hindi example', 'user aborted meaning')",user aborted meaning in hindi example,user aborted meaning,1,4,google,2026-03-12 20:00:35.160485,abortion meaning in hindi,abortion meaning in hindi with example,user aborted,user aborted +abortion,"('user aborted meaning in hindi example', 'what does user aborted mean')",user aborted meaning in hindi example,what does user aborted mean,2,4,google,2026-03-12 20:00:35.160485,abortion meaning in hindi,abortion meaning in hindi with example,user aborted,what does mean +abortion,"('user aborted meaning in hindi example', 'user aborted credit card')",user aborted meaning in hindi example,user aborted credit card,3,4,google,2026-03-12 20:00:35.160485,abortion meaning in hindi,abortion meaning in hindi with example,user aborted,credit card +abortion,"('user aborted meaning in hindi example', 'aborted mean')",user aborted meaning in hindi example,aborted mean,4,4,google,2026-03-12 20:00:35.160485,abortion meaning in hindi,abortion meaning in hindi with example,user aborted,mean +abortion,"('spontaneous abortion meaning in hindi and examples', 'induced abortion meaning in hindi and examples')",spontaneous abortion meaning in hindi and examples,induced abortion meaning in hindi and examples,1,4,google,2026-03-12 20:00:36.584747,abortion meaning in hindi,abortion meaning in hindi with example,spontaneous and examples,induced +abortion,"('spontaneous abortion meaning in hindi and examples', 'what is a spontaneous abortion mean')",spontaneous abortion meaning in hindi and examples,what is a spontaneous abortion mean,2,4,google,2026-03-12 20:00:36.584747,abortion meaning in hindi,abortion meaning in hindi with example,spontaneous and examples,what is a mean +abortion,"('spontaneous abortion meaning in hindi and examples', 'what is the definition of spontaneous abortion')",spontaneous abortion meaning in hindi and examples,what is the definition of spontaneous abortion,3,4,google,2026-03-12 20:00:36.584747,abortion meaning in hindi,abortion meaning in hindi with example,spontaneous and examples,what is the definition of +abortion,"('spontaneous abortion meaning in hindi and examples', 'spontaneous abortion medical definition')",spontaneous abortion meaning in hindi and examples,spontaneous abortion medical definition,4,4,google,2026-03-12 20:00:36.584747,abortion meaning in hindi,abortion meaning in hindi with example,spontaneous and examples,medical definition +abortion,"('spontaneous abortion meaning in hindi and examples', 'spontaneous abortion abbreviation')",spontaneous abortion meaning in hindi and examples,spontaneous abortion abbreviation,5,4,google,2026-03-12 20:00:36.584747,abortion meaning in hindi,abortion meaning in hindi with example,spontaneous and examples,abbreviation +abortion,"('spontaneous abortion meaning in hindi and examples', 'what does a spontaneous abortion mean')",spontaneous abortion meaning in hindi and examples,what does a spontaneous abortion mean,6,4,google,2026-03-12 20:00:36.584747,abortion meaning in hindi,abortion meaning in hindi with example,spontaneous and examples,what does a mean +abortion,"('spontaneous abortion meaning in hindi and examples', 'spontaneous abortion def')",spontaneous abortion meaning in hindi and examples,spontaneous abortion def,7,4,google,2026-03-12 20:00:36.584747,abortion meaning in hindi,abortion meaning in hindi with example,spontaneous and examples,def +abortion,"('spontaneous abortion meaning in hindi and examples', 'spontaneous abortion synonyms')",spontaneous abortion meaning in hindi and examples,spontaneous abortion synonyms,8,4,google,2026-03-12 20:00:36.584747,abortion meaning in hindi,abortion meaning in hindi with example,spontaneous and examples,synonyms +abortion,"('spontaneous abortion meaning in hindi and examples', 'spontaneous abortion acronym')",spontaneous abortion meaning in hindi and examples,spontaneous abortion acronym,9,4,google,2026-03-12 20:00:36.584747,abortion meaning in hindi,abortion meaning in hindi with example,spontaneous and examples,acronym +abortion,"('induced abortion meaning in hindi and examples', 'spontaneous abortion meaning in hindi and examples')",induced abortion meaning in hindi and examples,spontaneous abortion meaning in hindi and examples,1,4,google,2026-03-12 20:00:37.529329,abortion meaning in hindi,abortion meaning in hindi with example,induced and examples,spontaneous +abortion,"('induced abortion meaning in hindi and examples', 'induced abortion meaning in english')",induced abortion meaning in hindi and examples,induced abortion meaning in english,2,4,google,2026-03-12 20:00:37.529329,abortion meaning in hindi,abortion meaning in hindi with example,induced and examples,english +abortion,"('induced abortion meaning in hindi and examples', 'abortion meaning in hindi definition')",induced abortion meaning in hindi and examples,abortion meaning in hindi definition,3,4,google,2026-03-12 20:00:37.529329,abortion meaning in hindi,abortion meaning in hindi with example,induced and examples,definition +abortion,"('induced abortion meaning in hindi and examples', 'induced abortion meaning')",induced abortion meaning in hindi and examples,induced abortion meaning,4,4,google,2026-03-12 20:00:37.529329,abortion meaning in hindi,abortion meaning in hindi with example,induced and examples,induced and examples +abortion,"('induced abortion meaning in hindi and examples', 'induced abortion meaning in urdu')",induced abortion meaning in hindi and examples,induced abortion meaning in urdu,5,4,google,2026-03-12 20:00:37.529329,abortion meaning in hindi,abortion meaning in hindi with example,induced and examples,urdu +abortion,"('induced abortion meaning in hindi and examples', 'what is the difference between spontaneous and induced abortion')",induced abortion meaning in hindi and examples,what is the difference between spontaneous and induced abortion,6,4,google,2026-03-12 20:00:37.529329,abortion meaning in hindi,abortion meaning in hindi with example,induced and examples,what is the difference between spontaneous +abortion,"('induced abortion meaning in hindi and examples', 'induced abortion definition dictionary')",induced abortion meaning in hindi and examples,induced abortion definition dictionary,7,4,google,2026-03-12 20:00:37.529329,abortion meaning in hindi,abortion meaning in hindi with example,induced and examples,definition dictionary +abortion,"('induced abortion meaning in hindi and examples', 'induced abortion medical definition')",induced abortion meaning in hindi and examples,induced abortion medical definition,8,4,google,2026-03-12 20:00:37.529329,abortion meaning in hindi,abortion meaning in hindi with example,induced and examples,medical definition +abortion,"('induced abortion meaning in hindi and examples', 'induced abortion def')",induced abortion meaning in hindi and examples,induced abortion def,9,4,google,2026-03-12 20:00:37.529329,abortion meaning in hindi,abortion meaning in hindi with example,induced and examples,def +abortion,"('what does abortion mean in english', 'what does abortion mean in spanish')",what does abortion mean in english,what does abortion mean in spanish,1,4,google,2026-03-12 20:00:38.571531,abortion meaning in hindi,abortion meaning in hindi and english,what does mean,spanish +abortion,"('what does abortion mean in english', 'what does pro abortion mean in english')",what does abortion mean in english,what does pro abortion mean in english,2,4,google,2026-03-12 20:00:38.571531,abortion meaning in hindi,abortion meaning in hindi and english,what does mean,pro +abortion,"('what does abortion mean in english', 'what is the meaning of abortion in english')",what does abortion mean in english,what is the meaning of abortion in english,3,4,google,2026-03-12 20:00:38.571531,abortion meaning in hindi,abortion meaning in hindi and english,what does mean,is the meaning of +abortion,"('what does abortion mean in english', 'what does the word abortion mean')",what does abortion mean in english,what does the word abortion mean,4,4,google,2026-03-12 20:00:38.571531,abortion meaning in hindi,abortion meaning in hindi and english,what does mean,the word +abortion,"('what does abortion mean in english', 'what does abortion mean')",what does abortion mean in english,what does abortion mean,5,4,google,2026-03-12 20:00:38.571531,abortion meaning in hindi,abortion meaning in hindi and english,what does mean,what does mean +abortion,"('what does abortion mean in english', 'what aborted mean')",what does abortion mean in english,what aborted mean,6,4,google,2026-03-12 20:00:38.571531,abortion meaning in hindi,abortion meaning in hindi and english,what does mean,aborted +abortion,"('what does abortion mean in english', 'what does abortion mean in latin')",what does abortion mean in english,what does abortion mean in latin,7,4,google,2026-03-12 20:00:38.571531,abortion meaning in hindi,abortion meaning in hindi and english,what does mean,latin +abortion,"('what does abortion mean in english', 'what does abortion mean in the bible')",what does abortion mean in english,what does abortion mean in the bible,8,4,google,2026-03-12 20:00:38.571531,abortion meaning in hindi,abortion meaning in hindi and english,what does mean,the bible +abortion,"('what does abortion mean in english', 'what does aborto mean in english')",what does abortion mean in english,what does aborto mean in english,9,4,google,2026-03-12 20:00:38.571531,abortion meaning in hindi,abortion meaning in hindi and english,what does mean,aborto +abortion,"('inevitable abortion meaning in hindi pdf', 'incomplete abortion meaning in hindi pdf')",inevitable abortion meaning in hindi pdf,incomplete abortion meaning in hindi pdf,1,4,google,2026-03-12 20:00:39.453875,abortion meaning in hindi,abortion meaning in hindi pdf,inevitable,incomplete +abortion,"('inevitable abortion meaning in hindi pdf', 'inevitable abortion definition')",inevitable abortion meaning in hindi pdf,inevitable abortion definition,2,4,google,2026-03-12 20:00:39.453875,abortion meaning in hindi,abortion meaning in hindi pdf,inevitable,definition +abortion,"('inevitable abortion meaning in hindi pdf', 'abortion meaning in hindi definition')",inevitable abortion meaning in hindi pdf,abortion meaning in hindi definition,3,4,google,2026-03-12 20:00:39.453875,abortion meaning in hindi,abortion meaning in hindi pdf,inevitable,definition +abortion,"('inevitable abortion meaning in hindi pdf', 'anti abortion meaning')",inevitable abortion meaning in hindi pdf,anti abortion meaning,4,4,google,2026-03-12 20:00:39.453875,abortion meaning in hindi,abortion meaning in hindi pdf,inevitable,anti +abortion,"('inevitable abortion meaning in hindi pdf', 'inevitable abortion icd-10')",inevitable abortion meaning in hindi pdf,inevitable abortion icd-10,5,4,google,2026-03-12 20:00:39.453875,abortion meaning in hindi,abortion meaning in hindi pdf,inevitable,icd-10 +abortion,"('inevitable abortion meaning in hindi pdf', 'inevitable.abortion')",inevitable abortion meaning in hindi pdf,inevitable.abortion,6,4,google,2026-03-12 20:00:39.453875,abortion meaning in hindi,abortion meaning in hindi pdf,inevitable,inevitable.abortion +abortion,"('inevitable abortion meaning in hindi pdf', 'inevitable abortion hindi')",inevitable abortion meaning in hindi pdf,inevitable abortion hindi,7,4,google,2026-03-12 20:00:39.453875,abortion meaning in hindi,abortion meaning in hindi pdf,inevitable,inevitable +abortion,"('inevitable abortion meaning in hindi pdf', 'inevitable meaning pronunciation')",inevitable abortion meaning in hindi pdf,inevitable meaning pronunciation,8,4,google,2026-03-12 20:00:39.453875,abortion meaning in hindi,abortion meaning in hindi pdf,inevitable,pronunciation +abortion,"('spontaneous abortion meaning in hindi pdf', 'induced abortion meaning in hindi pdf')",spontaneous abortion meaning in hindi pdf,induced abortion meaning in hindi pdf,1,4,google,2026-03-12 20:00:40.783153,abortion meaning in hindi,abortion meaning in hindi pdf,spontaneous,induced +abortion,"('spontaneous abortion meaning in hindi pdf', 'miscarriage meaning in hindi pdf')",spontaneous abortion meaning in hindi pdf,miscarriage meaning in hindi pdf,2,4,google,2026-03-12 20:00:40.783153,abortion meaning in hindi,abortion meaning in hindi pdf,spontaneous,miscarriage +abortion,"('spontaneous abortion meaning in hindi pdf', 'abortion meaning in hindi definition')",spontaneous abortion meaning in hindi pdf,abortion meaning in hindi definition,3,4,google,2026-03-12 20:00:40.783153,abortion meaning in hindi,abortion meaning in hindi pdf,spontaneous,definition +abortion,"('spontaneous abortion meaning in hindi pdf', 'what is the definition of spontaneous abortion')",spontaneous abortion meaning in hindi pdf,what is the definition of spontaneous abortion,4,4,google,2026-03-12 20:00:40.783153,abortion meaning in hindi,abortion meaning in hindi pdf,spontaneous,what is the definition of +abortion,"('spontaneous abortion meaning in hindi pdf', 'spontaneous abortion medical definition')",spontaneous abortion meaning in hindi pdf,spontaneous abortion medical definition,5,4,google,2026-03-12 20:00:40.783153,abortion meaning in hindi,abortion meaning in hindi pdf,spontaneous,medical definition +abortion,"('spontaneous abortion meaning in hindi pdf', 'what is a spontaneous abortion mean')",spontaneous abortion meaning in hindi pdf,what is a spontaneous abortion mean,6,4,google,2026-03-12 20:00:40.783153,abortion meaning in hindi,abortion meaning in hindi pdf,spontaneous,what is a mean +abortion,"('spontaneous abortion meaning in hindi pdf', 'spontaneous abortion medical code')",spontaneous abortion meaning in hindi pdf,spontaneous abortion medical code,7,4,google,2026-03-12 20:00:40.783153,abortion meaning in hindi,abortion meaning in hindi pdf,spontaneous,medical code +abortion,"('spontaneous abortion meaning in hindi pdf', 'spontaneous abortion abbreviation')",spontaneous abortion meaning in hindi pdf,spontaneous abortion abbreviation,8,4,google,2026-03-12 20:00:40.783153,abortion meaning in hindi,abortion meaning in hindi pdf,spontaneous,abbreviation +abortion,"('spontaneous abortion meaning in hindi pdf', 'spontaneous abortion medical term')",spontaneous abortion meaning in hindi pdf,spontaneous abortion medical term,9,4,google,2026-03-12 20:00:40.783153,abortion meaning in hindi,abortion meaning in hindi pdf,spontaneous,medical term +abortion,"('induced abortion meaning in hindi pdf', 'spontaneous abortion meaning in hindi pdf')",induced abortion meaning in hindi pdf,spontaneous abortion meaning in hindi pdf,1,4,google,2026-03-12 20:00:41.999586,abortion meaning in hindi,abortion meaning in hindi pdf,induced,spontaneous +abortion,"('induced abortion meaning in hindi pdf', 'induced abortion meaning in english')",induced abortion meaning in hindi pdf,induced abortion meaning in english,2,4,google,2026-03-12 20:00:41.999586,abortion meaning in hindi,abortion meaning in hindi pdf,induced,english +abortion,"('induced abortion meaning in hindi pdf', 'abortion meaning in hindi definition')",induced abortion meaning in hindi pdf,abortion meaning in hindi definition,3,4,google,2026-03-12 20:00:41.999586,abortion meaning in hindi,abortion meaning in hindi pdf,induced,definition +abortion,"('induced abortion meaning in hindi pdf', 'abortion definition in india')",induced abortion meaning in hindi pdf,abortion definition in india,4,4,google,2026-03-12 20:00:41.999586,abortion meaning in hindi,abortion meaning in hindi pdf,induced,definition india +abortion,"('induced abortion meaning in hindi pdf', 'definition of abortion in ethiopia')",induced abortion meaning in hindi pdf,definition of abortion in ethiopia,5,4,google,2026-03-12 20:00:41.999586,abortion meaning in hindi,abortion meaning in hindi pdf,induced,definition of ethiopia +abortion,"('induced abortion meaning in hindi pdf', 'induced abortion medical definition')",induced abortion meaning in hindi pdf,induced abortion medical definition,6,4,google,2026-03-12 20:00:41.999586,abortion meaning in hindi,abortion meaning in hindi pdf,induced,medical definition +abortion,"('induced abortion meaning in hindi pdf', 'induced abortion definition dictionary')",induced abortion meaning in hindi pdf,induced abortion definition dictionary,7,4,google,2026-03-12 20:00:41.999586,abortion meaning in hindi,abortion meaning in hindi pdf,induced,definition dictionary +abortion,"('induced abortion meaning in hindi pdf', 'induced abortion icd-10')",induced abortion meaning in hindi pdf,induced abortion icd-10,8,4,google,2026-03-12 20:00:41.999586,abortion meaning in hindi,abortion meaning in hindi pdf,induced,icd-10 +abortion,"('induced abortion meaning in hindi pdf', 'induced abortion in hindi')",induced abortion meaning in hindi pdf,induced abortion in hindi,9,4,google,2026-03-12 20:00:41.999586,abortion meaning in hindi,abortion meaning in hindi pdf,induced,induced +abortion,"('incomplete abortion meaning in hindi pdf', 'inevitable abortion meaning in hindi pdf')",incomplete abortion meaning in hindi pdf,inevitable abortion meaning in hindi pdf,1,4,google,2026-03-12 20:00:43.405993,abortion meaning in hindi,abortion meaning in hindi pdf,incomplete,inevitable +abortion,"('incomplete abortion meaning in hindi pdf', 'spontaneous abortion meaning in hindi pdf')",incomplete abortion meaning in hindi pdf,spontaneous abortion meaning in hindi pdf,2,4,google,2026-03-12 20:00:43.405993,abortion meaning in hindi,abortion meaning in hindi pdf,incomplete,spontaneous +abortion,"('incomplete abortion meaning in hindi pdf', 'miscarriage meaning in hindi pdf')",incomplete abortion meaning in hindi pdf,miscarriage meaning in hindi pdf,3,4,google,2026-03-12 20:00:43.405993,abortion meaning in hindi,abortion meaning in hindi pdf,incomplete,miscarriage +abortion,"('incomplete abortion meaning in hindi pdf', 'abortion meaning in hindi definition')",incomplete abortion meaning in hindi pdf,abortion meaning in hindi definition,4,4,google,2026-03-12 20:00:43.405993,abortion meaning in hindi,abortion meaning in hindi pdf,incomplete,definition +abortion,"('incomplete abortion meaning in hindi pdf', 'incomplete abortion icd-10')",incomplete abortion meaning in hindi pdf,incomplete abortion icd-10,5,4,google,2026-03-12 20:00:43.405993,abortion meaning in hindi,abortion meaning in hindi pdf,incomplete,icd-10 +abortion,"('incomplete abortion meaning in hindi pdf', 'incomplete medical abortion icd 10')",incomplete abortion meaning in hindi pdf,incomplete medical abortion icd 10,6,4,google,2026-03-12 20:00:43.405993,abortion meaning in hindi,abortion meaning in hindi pdf,incomplete,medical icd 10 +abortion,"('incomplete abortion meaning in hindi pdf', 'incomplete abortion usmle')",incomplete abortion meaning in hindi pdf,incomplete abortion usmle,7,4,google,2026-03-12 20:00:43.405993,abortion meaning in hindi,abortion meaning in hindi pdf,incomplete,usmle +abortion,"('incomplete abortion meaning in hindi pdf', 'incomplete abortion definition')",incomplete abortion meaning in hindi pdf,incomplete abortion definition,8,4,google,2026-03-12 20:00:43.405993,abortion meaning in hindi,abortion meaning in hindi pdf,incomplete,definition +abortion,"('incomplete abortion meaning in hindi pdf', 'incomplete abortion in ultrasound')",incomplete abortion meaning in hindi pdf,incomplete abortion in ultrasound,9,4,google,2026-03-12 20:00:43.405993,abortion meaning in hindi,abortion meaning in hindi pdf,incomplete,ultrasound +abortion,"('abortion medical meaning', 'medical abortion meaning in hindi')",abortion medical meaning,medical abortion meaning in hindi,1,4,google,2026-03-12 20:00:44.789277,abortion meaning in hindi,abortion meaning in hindi medical,medical,in hindi +abortion,"('abortion medical meaning', 'medical abortion meaning in english')",abortion medical meaning,medical abortion meaning in english,2,4,google,2026-03-12 20:00:44.789277,abortion meaning in hindi,abortion meaning in hindi medical,medical,in english +abortion,"('abortion medical meaning', 'medical abortion meaning in nepali')",abortion medical meaning,medical abortion meaning in nepali,3,4,google,2026-03-12 20:00:44.789277,abortion meaning in hindi,abortion meaning in hindi medical,medical,in nepali +abortion,"('abortion medical meaning', 'medical abortion meaning in punjabi')",abortion medical meaning,medical abortion meaning in punjabi,4,4,google,2026-03-12 20:00:44.789277,abortion meaning in hindi,abortion meaning in hindi medical,medical,in punjabi +abortion,"('abortion medical meaning', 'miscarriage medical meaning')",abortion medical meaning,miscarriage medical meaning,5,4,google,2026-03-12 20:00:44.789277,abortion meaning in hindi,abortion meaning in hindi medical,medical,miscarriage +abortion,"('abortion medical meaning', 'abortion medical term')",abortion medical meaning,abortion medical term,6,4,google,2026-03-12 20:00:44.789277,abortion meaning in hindi,abortion meaning in hindi medical,medical,term +abortion,"('abortion medical meaning', 'abortion medical terminology')",abortion medical meaning,abortion medical terminology,7,4,google,2026-03-12 20:00:44.789277,abortion meaning in hindi,abortion meaning in hindi medical,medical,terminology +abortion,"('abortion medical meaning', 'abortion medical term name')",abortion medical meaning,abortion medical term name,8,4,google,2026-03-12 20:00:44.789277,abortion meaning in hindi,abortion meaning in hindi medical,medical,term name +abortion,"('abortion medical meaning', 'abortion medical definition according to who')",abortion medical meaning,abortion medical definition according to who,9,4,google,2026-03-12 20:00:44.789277,abortion meaning in hindi,abortion meaning in hindi medical,medical,definition according to who +abortion,"('what is another name for means', 'what is another word for means')",what is another name for means,what is another word for means,1,4,google,2026-03-12 20:00:45.687857,abortion meaning in hindi,abort meaning in hindi synonyms,what is another name for means,word +abortion,"('what is another name for means', 'what is another word for means in an essay')",what is another name for means,what is another word for means in an essay,2,4,google,2026-03-12 20:00:45.687857,abortion meaning in hindi,abort meaning in hindi synonyms,what is another name for means,word in an essay +abortion,"('what is another name for means', 'what is another word for means a lot')",what is another name for means,what is another word for means a lot,3,4,google,2026-03-12 20:00:45.687857,abortion meaning in hindi,abort meaning in hindi synonyms,what is another name for means,word a lot +abortion,"('what is another name for means', 'what is another name for mean in statistics')",what is another name for means,what is another name for mean in statistics,4,4,google,2026-03-12 20:00:45.687857,abortion meaning in hindi,abort meaning in hindi synonyms,what is another name for means,mean in statistics +abortion,"('what is another name for means', 'what is another name for mean in mathematics')",what is another name for means,what is another name for mean in mathematics,5,4,google,2026-03-12 20:00:45.687857,abortion meaning in hindi,abort meaning in hindi synonyms,what is another name for means,mean in mathematics +abortion,"('what is another name for means', 'what is another name for definition')",what is another name for means,what is another name for definition,6,4,google,2026-03-12 20:00:45.687857,abortion meaning in hindi,abort meaning in hindi synonyms,what is another name for means,definition +abortion,"('what is another name for means', 'what is another word for mean in math')",what is another name for means,what is another word for mean in math,7,4,google,2026-03-12 20:00:45.687857,abortion meaning in hindi,abort meaning in hindi synonyms,what is another name for means,word mean in math +abortion,"('what is another name for means', 'what is another word for mean in statistics')",what is another name for means,what is another word for mean in statistics,8,4,google,2026-03-12 20:00:45.687857,abortion meaning in hindi,abort meaning in hindi synonyms,what is another name for means,word mean in statistics +abortion,"('what is another name for means', 'what is another word for meaning making')",what is another name for means,what is another word for meaning making,9,4,google,2026-03-12 20:00:45.687857,abortion meaning in hindi,abort meaning in hindi synonyms,what is another name for means,word meaning making +abortion,"('termination meaning in urdu', 'termination meaning in urdu with example')",termination meaning in urdu,termination meaning in urdu with example,1,4,google,2026-03-12 20:00:46.573866,abortion meaning in hindi,abort meaning in hindi synonyms,termination urdu,with example +abortion,"('termination meaning in urdu', 'termination meaning in urdu with example pdf')",termination meaning in urdu,termination meaning in urdu with example pdf,2,4,google,2026-03-12 20:00:46.573866,abortion meaning in hindi,abort meaning in hindi synonyms,termination urdu,with example pdf +abortion,"('termination meaning in urdu', 'termination meaning in urdu pdf')",termination meaning in urdu,termination meaning in urdu pdf,3,4,google,2026-03-12 20:00:46.573866,abortion meaning in hindi,abort meaning in hindi synonyms,termination urdu,pdf +abortion,"('termination meaning in urdu', 'terminate meaning in urdu language')",termination meaning in urdu,terminate meaning in urdu language,4,4,google,2026-03-12 20:00:46.573866,abortion meaning in hindi,abort meaning in hindi synonyms,termination urdu,terminate language +abortion,"('termination meaning in urdu', 'cessation meaning in urdu')",termination meaning in urdu,cessation meaning in urdu,5,4,google,2026-03-12 20:00:46.573866,abortion meaning in hindi,abort meaning in hindi synonyms,termination urdu,cessation +abortion,"('termination meaning in urdu', 'dismissal meaning in urdu')",termination meaning in urdu,dismissal meaning in urdu,6,4,google,2026-03-12 20:00:46.573866,abortion meaning in hindi,abort meaning in hindi synonyms,termination urdu,dismissal +abortion,"('termination meaning in urdu', 'cessation meaning in urdu with example')",termination meaning in urdu,cessation meaning in urdu with example,7,4,google,2026-03-12 20:00:46.573866,abortion meaning in hindi,abort meaning in hindi synonyms,termination urdu,cessation with example +abortion,"('termination meaning in urdu', 'dismissal meaning in urdu with example')",termination meaning in urdu,dismissal meaning in urdu with example,8,4,google,2026-03-12 20:00:46.573866,abortion meaning in hindi,abort meaning in hindi synonyms,termination urdu,dismissal with example +abortion,"('termination meaning in urdu', 'dismissal meaning in urdu with example pdf')",termination meaning in urdu,dismissal meaning in urdu with example pdf,9,4,google,2026-03-12 20:00:46.573866,abortion meaning in hindi,abort meaning in hindi synonyms,termination urdu,dismissal with example pdf +abortion,"('abort definition verb', 'abortion as a verb')",abort definition verb,abortion as a verb,1,4,google,2026-03-12 20:00:47.716969,abortion meaning in hindi,abort meaning in hindi synonyms,definition verb,abortion as a +abortion,"('abort definition verb', 'stop verb definition')",abort definition verb,stop verb definition,2,4,google,2026-03-12 20:00:47.716969,abortion meaning in hindi,abort meaning in hindi synonyms,definition verb,stop +abortion,"('abort definition verb', 'abort definition english')",abort definition verb,abort definition english,3,4,google,2026-03-12 20:00:47.716969,abortion meaning in hindi,abort meaning in hindi synonyms,definition verb,english +abortion,"('abort definition verb', 'abort example sentence')",abort definition verb,abort example sentence,4,4,google,2026-03-12 20:00:47.716969,abortion meaning in hindi,abort meaning in hindi synonyms,definition verb,example sentence +abortion,"('abort definition verb', 'abort meaning')",abort definition verb,abort meaning,5,4,google,2026-03-12 20:00:47.716969,abortion meaning in hindi,abort meaning in hindi synonyms,definition verb,meaning +abortion,"('abort definition verb', 'abort definition noun')",abort definition verb,abort definition noun,6,4,google,2026-03-12 20:00:47.716969,abortion meaning in hindi,abort meaning in hindi synonyms,definition verb,noun +abortion,"('abort definition verb', 'abort definition meaning')",abort definition verb,abort definition meaning,7,4,google,2026-03-12 20:00:47.716969,abortion meaning in hindi,abort meaning in hindi synonyms,definition verb,meaning +abortion,"('abort definition verb', ""abort definition webster's"")",abort definition verb,abort definition webster's,8,4,google,2026-03-12 20:00:47.716969,abortion meaning in hindi,abort meaning in hindi synonyms,definition verb,webster's +abortion,"('missed abortion translate in hindi', 'spontaneous abortion meaning in hindi')",missed abortion translate in hindi,spontaneous abortion meaning in hindi,1,4,google,2026-03-12 20:00:49.197218,abortion meaning in hindi,abortion translation in hindi,missed translate,spontaneous meaning +abortion,"('missed abortion translate in hindi', 'incomplete abortion meaning in hindi')",missed abortion translate in hindi,incomplete abortion meaning in hindi,2,4,google,2026-03-12 20:00:49.197218,abortion meaning in hindi,abortion translation in hindi,missed translate,incomplete meaning +abortion,"('missed abortion translate in hindi', 'spontaneous abortion meaning in hindi and examples')",missed abortion translate in hindi,spontaneous abortion meaning in hindi and examples,3,4,google,2026-03-12 20:00:49.197218,abortion meaning in hindi,abortion translation in hindi,missed translate,spontaneous meaning and examples +abortion,"('missed abortion translate in hindi', 'spontaneous abortion meaning in hindi pdf')",missed abortion translate in hindi,spontaneous abortion meaning in hindi pdf,4,4,google,2026-03-12 20:00:49.197218,abortion meaning in hindi,abortion translation in hindi,missed translate,spontaneous meaning pdf +abortion,"('missed abortion translate in hindi', 'incomplete abortion meaning in hindi pdf')",missed abortion translate in hindi,incomplete abortion meaning in hindi pdf,5,4,google,2026-03-12 20:00:49.197218,abortion meaning in hindi,abortion translation in hindi,missed translate,incomplete meaning pdf +abortion,"('missed abortion translate in hindi', 'likely missed abortion meaning in hindi')",missed abortion translate in hindi,likely missed abortion meaning in hindi,6,4,google,2026-03-12 20:00:49.197218,abortion meaning in hindi,abortion translation in hindi,missed translate,likely meaning +abortion,"('missed abortion translate in hindi', 'so missed abortion meaning in hindi')",missed abortion translate in hindi,so missed abortion meaning in hindi,7,4,google,2026-03-12 20:00:49.197218,abortion meaning in hindi,abortion translation in hindi,missed translate,so meaning +abortion,"('missed abortion translate in hindi', 'fso missed abortion meaning in hindi')",missed abortion translate in hindi,fso missed abortion meaning in hindi,8,4,google,2026-03-12 20:00:49.197218,abortion meaning in hindi,abortion translation in hindi,missed translate,fso meaning +abortion,"('missed abortion translate in hindi', 'suggestive of missed abortion meaning in hindi')",missed abortion translate in hindi,suggestive of missed abortion meaning in hindi,9,4,google,2026-03-12 20:00:49.197218,abortion meaning in hindi,abortion translation in hindi,missed translate,suggestive of meaning +abortion,"('spontaneous abortion meaning in hindi', 'spontaneous abortion meaning in hindi and examples')",spontaneous abortion meaning in hindi,spontaneous abortion meaning in hindi and examples,1,4,google,2026-03-12 20:00:50.462392,abortion meaning in hindi,abortion translation in hindi,spontaneous meaning,and examples +abortion,"('spontaneous abortion meaning in hindi', 'spontaneous abortion meaning in hindi pdf')",spontaneous abortion meaning in hindi,spontaneous abortion meaning in hindi pdf,2,4,google,2026-03-12 20:00:50.462392,abortion meaning in hindi,abortion translation in hindi,spontaneous meaning,pdf +abortion,"('spontaneous abortion meaning in hindi', 'induced abortion meaning in hindi')",spontaneous abortion meaning in hindi,induced abortion meaning in hindi,3,4,google,2026-03-12 20:00:50.462392,abortion meaning in hindi,abortion translation in hindi,spontaneous meaning,induced +abortion,"('spontaneous abortion meaning in hindi', 'spontaneous abortion definition in hindi')",spontaneous abortion meaning in hindi,spontaneous abortion definition in hindi,4,4,google,2026-03-12 20:00:50.462392,abortion meaning in hindi,abortion translation in hindi,spontaneous meaning,definition +abortion,"('spontaneous abortion meaning in hindi', 'natural abortion meaning in hindi')",spontaneous abortion meaning in hindi,natural abortion meaning in hindi,5,4,google,2026-03-12 20:00:50.462392,abortion meaning in hindi,abortion translation in hindi,spontaneous meaning,natural +abortion,"('spontaneous abortion meaning in hindi', 'spontaneous miscarriage meaning in hindi')",spontaneous abortion meaning in hindi,spontaneous miscarriage meaning in hindi,6,4,google,2026-03-12 20:00:50.462392,abortion meaning in hindi,abortion translation in hindi,spontaneous meaning,miscarriage +abortion,"('spontaneous abortion meaning in hindi', 'induced abortion meaning in hindi and examples')",spontaneous abortion meaning in hindi,induced abortion meaning in hindi and examples,7,4,google,2026-03-12 20:00:50.462392,abortion meaning in hindi,abortion translation in hindi,spontaneous meaning,induced and examples +abortion,"('spontaneous abortion meaning in hindi', 'induced abortion meaning in hindi pdf')",spontaneous abortion meaning in hindi,induced abortion meaning in hindi pdf,8,4,google,2026-03-12 20:00:50.462392,abortion meaning in hindi,abortion translation in hindi,spontaneous meaning,induced pdf +abortion,"('spontaneous abortion meaning in hindi', 'miscarriage abortion meaning in hindi')",spontaneous abortion meaning in hindi,miscarriage abortion meaning in hindi,9,4,google,2026-03-12 20:00:50.462392,abortion meaning in hindi,abortion translation in hindi,spontaneous meaning,miscarriage +abortion,"('incomplete abortion meaning in hindi', 'incomplete abortion meaning in hindi pdf')",incomplete abortion meaning in hindi,incomplete abortion meaning in hindi pdf,1,4,google,2026-03-12 20:00:51.528211,abortion meaning in hindi,missed abortion meaning in hindi,incomplete,pdf +abortion,"('incomplete abortion meaning in hindi', 'missed abortion meaning in hindi')",incomplete abortion meaning in hindi,missed abortion meaning in hindi,2,4,google,2026-03-12 20:00:51.528211,abortion meaning in hindi,missed abortion meaning in hindi,incomplete,missed +abortion,"('incomplete abortion meaning in hindi', 'spontaneous abortion meaning in hindi')",incomplete abortion meaning in hindi,spontaneous abortion meaning in hindi,3,4,google,2026-03-12 20:00:51.528211,abortion meaning in hindi,missed abortion meaning in hindi,incomplete,spontaneous +abortion,"('incomplete abortion meaning in hindi', 'inevitable abortion meaning in hindi')",incomplete abortion meaning in hindi,inevitable abortion meaning in hindi,4,4,google,2026-03-12 20:00:51.528211,abortion meaning in hindi,missed abortion meaning in hindi,incomplete,inevitable +abortion,"('incomplete abortion meaning in hindi', 'incomplete abortion definition in hindi')",incomplete abortion meaning in hindi,incomplete abortion definition in hindi,5,4,google,2026-03-12 20:00:51.528211,abortion meaning in hindi,missed abortion meaning in hindi,incomplete,definition +abortion,"('incomplete abortion meaning in hindi', 'inevitable abortion meaning in hindi pdf')",incomplete abortion meaning in hindi,inevitable abortion meaning in hindi pdf,6,4,google,2026-03-12 20:00:51.528211,abortion meaning in hindi,missed abortion meaning in hindi,incomplete,inevitable pdf +abortion,"('incomplete abortion meaning in hindi', 'spontaneous abortion meaning in hindi and examples')",incomplete abortion meaning in hindi,spontaneous abortion meaning in hindi and examples,7,4,google,2026-03-12 20:00:51.528211,abortion meaning in hindi,missed abortion meaning in hindi,incomplete,spontaneous and examples +abortion,"('incomplete abortion meaning in hindi', 'spontaneous abortion meaning in hindi pdf')",incomplete abortion meaning in hindi,spontaneous abortion meaning in hindi pdf,8,4,google,2026-03-12 20:00:51.528211,abortion meaning in hindi,missed abortion meaning in hindi,incomplete,spontaneous pdf +abortion,"('incomplete abortion meaning in hindi', 'spontaneous abortion definition in hindi')",incomplete abortion meaning in hindi,spontaneous abortion definition in hindi,9,4,google,2026-03-12 20:00:51.528211,abortion meaning in hindi,missed abortion meaning in hindi,incomplete,spontaneous definition +abortion,"('missed miscarriage meaning in hindi', 'missed miscarriage meaning in urdu in hindi')",missed miscarriage meaning in hindi,missed miscarriage meaning in urdu in hindi,1,4,google,2026-03-12 20:00:52.637980,abortion meaning in hindi,missed abortion meaning in hindi,miscarriage,urdu +abortion,"('missed miscarriage meaning in hindi', 'missed miscarriage symptoms in hindi')",missed miscarriage meaning in hindi,missed miscarriage symptoms in hindi,2,4,google,2026-03-12 20:00:52.637980,abortion meaning in hindi,missed abortion meaning in hindi,miscarriage,symptoms +abortion,"('missed miscarriage meaning in hindi', 'late miscarriage meaning')",missed miscarriage meaning in hindi,late miscarriage meaning,3,4,google,2026-03-12 20:00:52.637980,abortion meaning in hindi,missed abortion meaning in hindi,miscarriage,late +abortion,"('missed miscarriage meaning in hindi', 'missed miscarriage in hindi')",missed miscarriage meaning in hindi,missed miscarriage in hindi,4,4,google,2026-03-12 20:00:52.637980,abortion meaning in hindi,missed abortion meaning in hindi,miscarriage,miscarriage +abortion,"('missed miscarriage meaning in hindi', 'missed miscarriage meaning in tamil')",missed miscarriage meaning in hindi,missed miscarriage meaning in tamil,5,4,google,2026-03-12 20:00:52.637980,abortion meaning in hindi,missed abortion meaning in hindi,miscarriage,tamil +abortion,"('missed miscarriage meaning in hindi', 'missed miscarriage medical term')",missed miscarriage meaning in hindi,missed miscarriage medical term,6,4,google,2026-03-12 20:00:52.637980,abortion meaning in hindi,missed abortion meaning in hindi,miscarriage,medical term +abortion,"('missed miscarriage meaning in hindi', 'missed miscarriage definition')",missed miscarriage meaning in hindi,missed miscarriage definition,7,4,google,2026-03-12 20:00:52.637980,abortion meaning in hindi,missed abortion meaning in hindi,miscarriage,definition +abortion,"('missed miscarriage meaning in hindi', 'missed miscarriage in spanish')",missed miscarriage meaning in hindi,missed miscarriage in spanish,8,4,google,2026-03-12 20:00:52.637980,abortion meaning in hindi,missed abortion meaning in hindi,miscarriage,spanish +abortion,"('missed miscarriage meaning in hindi', 'missed miscarriage in second trimester')",missed miscarriage meaning in hindi,missed miscarriage in second trimester,9,4,google,2026-03-12 20:00:52.637980,abortion meaning in hindi,missed abortion meaning in hindi,miscarriage,second trimester +abortion,"('missed abortion definition in hindi', 'missed abortion meaning in hindi')",missed abortion definition in hindi,missed abortion meaning in hindi,1,4,google,2026-03-12 20:00:53.448494,abortion meaning in hindi,missed abortion meaning in hindi,definition,meaning +abortion,"('missed abortion definition in hindi', 'spontaneous abortion definition in hindi')",missed abortion definition in hindi,spontaneous abortion definition in hindi,2,4,google,2026-03-12 20:00:53.448494,abortion meaning in hindi,missed abortion meaning in hindi,definition,spontaneous +abortion,"('missed abortion definition in hindi', 'incomplete abortion definition in hindi')",missed abortion definition in hindi,incomplete abortion definition in hindi,3,4,google,2026-03-12 20:00:53.448494,abortion meaning in hindi,missed abortion meaning in hindi,definition,incomplete +abortion,"('missed abortion definition in hindi', 'spontaneous abortion meaning in hindi')",missed abortion definition in hindi,spontaneous abortion meaning in hindi,4,4,google,2026-03-12 20:00:53.448494,abortion meaning in hindi,missed abortion meaning in hindi,definition,spontaneous meaning +abortion,"('missed abortion definition in hindi', 'incomplete abortion meaning in hindi')",missed abortion definition in hindi,incomplete abortion meaning in hindi,5,4,google,2026-03-12 20:00:53.448494,abortion meaning in hindi,missed abortion meaning in hindi,definition,incomplete meaning +abortion,"('missed abortion definition in hindi', 'spontaneous abortion meaning in hindi and examples')",missed abortion definition in hindi,spontaneous abortion meaning in hindi and examples,6,4,google,2026-03-12 20:00:53.448494,abortion meaning in hindi,missed abortion meaning in hindi,definition,spontaneous meaning and examples +abortion,"('missed abortion definition in hindi', 'spontaneous abortion meaning in hindi pdf')",missed abortion definition in hindi,spontaneous abortion meaning in hindi pdf,7,4,google,2026-03-12 20:00:53.448494,abortion meaning in hindi,missed abortion meaning in hindi,definition,spontaneous meaning pdf +abortion,"('missed abortion definition in hindi', 'incomplete abortion meaning in hindi pdf')",missed abortion definition in hindi,incomplete abortion meaning in hindi pdf,8,4,google,2026-03-12 20:00:53.448494,abortion meaning in hindi,missed abortion meaning in hindi,definition,incomplete meaning pdf +abortion,"('missed abortion definition in hindi', 'likely missed abortion meaning in hindi')",missed abortion definition in hindi,likely missed abortion meaning in hindi,9,4,google,2026-03-12 20:00:53.448494,abortion meaning in hindi,missed abortion meaning in hindi,definition,likely meaning +abortion,"('likely missed abortion meaning in hindi', 'missed abortion meaning in hindi')",likely missed abortion meaning in hindi,missed abortion meaning in hindi,1,4,google,2026-03-12 20:00:54.923700,abortion meaning in hindi,missed abortion meaning in hindi,likely,likely +abortion,"('likely missed abortion meaning in hindi', 'so missed abortion meaning in hindi')",likely missed abortion meaning in hindi,so missed abortion meaning in hindi,2,4,google,2026-03-12 20:00:54.923700,abortion meaning in hindi,missed abortion meaning in hindi,likely,so +abortion,"('likely missed abortion meaning in hindi', 'fso missed abortion meaning in hindi')",likely missed abortion meaning in hindi,fso missed abortion meaning in hindi,3,4,google,2026-03-12 20:00:54.923700,abortion meaning in hindi,missed abortion meaning in hindi,likely,fso +abortion,"('likely missed abortion meaning in hindi', 'spontaneous abortion meaning in hindi')",likely missed abortion meaning in hindi,spontaneous abortion meaning in hindi,4,4,google,2026-03-12 20:00:54.923700,abortion meaning in hindi,missed abortion meaning in hindi,likely,spontaneous +abortion,"('likely missed abortion meaning in hindi', 'incomplete abortion meaning in hindi')",likely missed abortion meaning in hindi,incomplete abortion meaning in hindi,5,4,google,2026-03-12 20:00:54.923700,abortion meaning in hindi,missed abortion meaning in hindi,likely,incomplete +abortion,"('likely missed abortion meaning in hindi', 'missed miscarriage meaning in hindi')",likely missed abortion meaning in hindi,missed miscarriage meaning in hindi,6,4,google,2026-03-12 20:00:54.923700,abortion meaning in hindi,missed abortion meaning in hindi,likely,miscarriage +abortion,"('likely missed abortion meaning in hindi', 'missed abortion definition in hindi')",likely missed abortion meaning in hindi,missed abortion definition in hindi,7,4,google,2026-03-12 20:00:54.923700,abortion meaning in hindi,missed abortion meaning in hindi,likely,definition +abortion,"('likely missed abortion meaning in hindi', 'spontaneous abortion meaning in hindi and examples')",likely missed abortion meaning in hindi,spontaneous abortion meaning in hindi and examples,8,4,google,2026-03-12 20:00:54.923700,abortion meaning in hindi,missed abortion meaning in hindi,likely,spontaneous and examples +abortion,"('likely missed abortion meaning in hindi', 'spontaneous abortion meaning in hindi pdf')",likely missed abortion meaning in hindi,spontaneous abortion meaning in hindi pdf,9,4,google,2026-03-12 20:00:54.923700,abortion meaning in hindi,missed abortion meaning in hindi,likely,spontaneous pdf +abortion,"('so missed abortion meaning in hindi', 'finding are so missed abortion meaning in hindi')",so missed abortion meaning in hindi,finding are so missed abortion meaning in hindi,1,4,google,2026-03-12 20:00:55.993362,abortion meaning in hindi,missed abortion meaning in hindi,so,finding are +abortion,"('so missed abortion meaning in hindi', 's/o missed abortion means')",so missed abortion meaning in hindi,s/o missed abortion means,2,4,google,2026-03-12 20:00:55.993362,abortion meaning in hindi,missed abortion meaning in hindi,so,s/o means +abortion,"('so missed abortion meaning in hindi', 'missed abortion meaning in tamil')",so missed abortion meaning in hindi,missed abortion meaning in tamil,3,4,google,2026-03-12 20:00:55.993362,abortion meaning in hindi,missed abortion meaning in hindi,so,tamil +abortion,"('so missed abortion meaning in hindi', 'what is mean by missed abortion')",so missed abortion meaning in hindi,what is mean by missed abortion,4,4,google,2026-03-12 20:00:55.993362,abortion meaning in hindi,missed abortion meaning in hindi,so,what is mean by +abortion,"('so missed abortion meaning in hindi', 'missed abortion meaning in telugu')",so missed abortion meaning in hindi,missed abortion meaning in telugu,5,4,google,2026-03-12 20:00:55.993362,abortion meaning in hindi,missed abortion meaning in hindi,so,telugu +abortion,"('so missed abortion meaning in hindi', 'f/s/o missed abortion meaning')",so missed abortion meaning in hindi,f/s/o missed abortion meaning,6,4,google,2026-03-12 20:00:55.993362,abortion meaning in hindi,missed abortion meaning in hindi,so,f/s/o +abortion,"('so missed abortion meaning in hindi', 'what does missed abortion means in pregnancy')",so missed abortion meaning in hindi,what does missed abortion means in pregnancy,7,4,google,2026-03-12 20:00:55.993362,abortion meaning in hindi,missed abortion meaning in hindi,so,what does means pregnancy +abortion,"('so missed abortion meaning in hindi', 'what does missed abortion mean in medicine')",so missed abortion meaning in hindi,what does missed abortion mean in medicine,8,4,google,2026-03-12 20:00:55.993362,abortion meaning in hindi,missed abortion meaning in hindi,so,what does mean medicine +abortion,"('so missed abortion meaning in hindi', 'missed abortion medical definition')",so missed abortion meaning in hindi,missed abortion medical definition,9,4,google,2026-03-12 20:00:55.993362,abortion meaning in hindi,missed abortion meaning in hindi,so,medical definition +abortion,"('inevitable abortion meaning in hindi', 'inevitable abortion meaning in hindi pdf')",inevitable abortion meaning in hindi,inevitable abortion meaning in hindi pdf,1,4,google,2026-03-12 20:00:56.946254,abortion meaning in hindi,threatened abortion meaning in hindi,inevitable,pdf +abortion,"('inevitable abortion meaning in hindi', 'missed abortion meaning in hindi')",inevitable abortion meaning in hindi,missed abortion meaning in hindi,2,4,google,2026-03-12 20:00:56.946254,abortion meaning in hindi,threatened abortion meaning in hindi,inevitable,missed +abortion,"('inevitable abortion meaning in hindi', 'threatened abortion meaning in hindi')",inevitable abortion meaning in hindi,threatened abortion meaning in hindi,3,4,google,2026-03-12 20:00:56.946254,abortion meaning in hindi,threatened abortion meaning in hindi,inevitable,threatened +abortion,"('inevitable abortion meaning in hindi', 'incomplete abortion meaning in hindi')",inevitable abortion meaning in hindi,incomplete abortion meaning in hindi,4,4,google,2026-03-12 20:00:56.946254,abortion meaning in hindi,threatened abortion meaning in hindi,inevitable,incomplete +abortion,"('inevitable abortion meaning in hindi', 'incomplete abortion meaning in hindi pdf')",inevitable abortion meaning in hindi,incomplete abortion meaning in hindi pdf,5,4,google,2026-03-12 20:00:56.946254,abortion meaning in hindi,threatened abortion meaning in hindi,inevitable,incomplete pdf +abortion,"('inevitable abortion meaning in hindi', 'incomplete abortion definition in hindi')",inevitable abortion meaning in hindi,incomplete abortion definition in hindi,6,4,google,2026-03-12 20:00:56.946254,abortion meaning in hindi,threatened abortion meaning in hindi,inevitable,incomplete definition +abortion,"('inevitable abortion meaning in hindi', 'missed abortion definition in hindi')",inevitable abortion meaning in hindi,missed abortion definition in hindi,7,4,google,2026-03-12 20:00:56.946254,abortion meaning in hindi,threatened abortion meaning in hindi,inevitable,missed definition +abortion,"('inevitable abortion meaning in hindi', 'threatened abortion definition in hindi wikipedia')",inevitable abortion meaning in hindi,threatened abortion definition in hindi wikipedia,8,4,google,2026-03-12 20:00:56.946254,abortion meaning in hindi,threatened abortion meaning in hindi,inevitable,threatened definition wikipedia +abortion,"('inevitable abortion meaning in hindi', 'likely missed abortion meaning in hindi')",inevitable abortion meaning in hindi,likely missed abortion meaning in hindi,9,4,google,2026-03-12 20:00:56.946254,abortion meaning in hindi,threatened abortion meaning in hindi,inevitable,likely missed +abortion,"('threatened abortion definition in hindi wikipedia', 'what do you mean by threatened abortion')",threatened abortion definition in hindi wikipedia,what do you mean by threatened abortion,1,4,google,2026-03-12 20:00:58.239211,abortion meaning in hindi,threatened abortion meaning in hindi,definition wikipedia,what do you mean by +abortion,"('threatened abortion definition in hindi wikipedia', 'threatened abortion meaning in tamil')",threatened abortion definition in hindi wikipedia,threatened abortion meaning in tamil,2,4,google,2026-03-12 20:00:58.239211,abortion meaning in hindi,threatened abortion meaning in hindi,definition wikipedia,meaning tamil +abortion,"('threatened abortion definition in hindi wikipedia', 'abortion meaning in hindi definition')",threatened abortion definition in hindi wikipedia,abortion meaning in hindi definition,3,4,google,2026-03-12 20:00:58.239211,abortion meaning in hindi,threatened abortion meaning in hindi,definition wikipedia,meaning +abortion,"('threatened abortion definition in hindi wikipedia', 'threatened abortion in hindi')",threatened abortion definition in hindi wikipedia,threatened abortion in hindi,4,4,google,2026-03-12 20:00:58.239211,abortion meaning in hindi,threatened abortion meaning in hindi,definition wikipedia,definition wikipedia +abortion,"('threatened abortion definition in hindi wikipedia', 'threatened abortion definition in hindi')",threatened abortion definition in hindi wikipedia,threatened abortion definition in hindi,5,4,google,2026-03-12 20:00:58.239211,abortion meaning in hindi,threatened abortion meaning in hindi,definition wikipedia,definition wikipedia +abortion,"('threatened abortion definition in hindi wikipedia', 'threatened abortion bangla')",threatened abortion definition in hindi wikipedia,threatened abortion bangla,6,4,google,2026-03-12 20:00:58.239211,abortion meaning in hindi,threatened abortion meaning in hindi,definition wikipedia,bangla +abortion,"('threatened abortion definition in hindi wikipedia', 'threatened abortion meaning in hindi')",threatened abortion definition in hindi wikipedia,threatened abortion meaning in hindi,7,4,google,2026-03-12 20:00:58.239211,abortion meaning in hindi,threatened abortion meaning in hindi,definition wikipedia,meaning +abortion,"('threatened abortion definition in hindi wikipedia', 'threatened abortion definition')",threatened abortion definition in hindi wikipedia,threatened abortion definition,8,4,google,2026-03-12 20:00:58.239211,abortion meaning in hindi,threatened abortion meaning in hindi,definition wikipedia,definition wikipedia +abortion,"('apa itu threatened abortion', 'apa itu threatened miscarriage')",apa itu threatened abortion,apa itu threatened miscarriage,1,4,google,2026-03-12 20:00:59.351189,abortion meaning in hindi,threatened abortion meaning in hindi,apa itu,miscarriage +abortion,"('apa itu threatened abortion', 'apa yang dimaksud dengan threatened abortion')",apa itu threatened abortion,apa yang dimaksud dengan threatened abortion,2,4,google,2026-03-12 20:00:59.351189,abortion meaning in hindi,threatened abortion meaning in hindi,apa itu,yang dimaksud dengan +abortion,"('apa itu threatened abortion', 'apa itu diagnosa threatened abortion')",apa itu threatened abortion,apa itu diagnosa threatened abortion,3,4,google,2026-03-12 20:00:59.351189,abortion meaning in hindi,threatened abortion meaning in hindi,apa itu,diagnosa +abortion,"('apa itu threatened abortion', 'apa itu diagnosis threatened abortion')",apa itu threatened abortion,apa itu diagnosis threatened abortion,4,4,google,2026-03-12 20:00:59.351189,abortion meaning in hindi,threatened abortion meaning in hindi,apa itu,diagnosis +abortion,"('apa itu threatened abortion', 'apa arti diagnosa threatened abortion')",apa itu threatened abortion,apa arti diagnosa threatened abortion,5,4,google,2026-03-12 20:00:59.351189,abortion meaning in hindi,threatened abortion meaning in hindi,apa itu,arti diagnosa +abortion,"('apa itu threatened abortion', 'apa arti dari threatened abortion')",apa itu threatened abortion,apa arti dari threatened abortion,6,4,google,2026-03-12 20:00:59.351189,abortion meaning in hindi,threatened abortion meaning in hindi,apa itu,arti dari +abortion,"('apa itu threatened abortion', 'what do you mean by threatened abortion')",apa itu threatened abortion,what do you mean by threatened abortion,7,4,google,2026-03-12 20:00:59.351189,abortion meaning in hindi,threatened abortion meaning in hindi,apa itu,what do you mean by +abortion,"('apa itu threatened abortion', 'types of abortion threatened')",apa itu threatened abortion,types of abortion threatened,8,4,google,2026-03-12 20:00:59.351189,abortion meaning in hindi,threatened abortion meaning in hindi,apa itu,types of +abortion,"('apa itu threatened abortion', 'what is threatened abortion')",apa itu threatened abortion,what is threatened abortion,9,4,google,2026-03-12 20:00:59.351189,abortion meaning in hindi,threatened abortion meaning in hindi,apa itu,what is +abortion,"('is abortion mentioned in the bible anywhere', 'is abortion mentioned in the bible')",is abortion mentioned in the bible anywhere,is abortion mentioned in the bible,1,4,google,2026-03-12 20:01:00.679224,abortion meaning in the bible,is abortion mentioned in the bible,anywhere,anywhere +abortion,"('is abortion mentioned in the bible anywhere', 'is abortion even mentioned in the bible')",is abortion mentioned in the bible anywhere,is abortion even mentioned in the bible,2,4,google,2026-03-12 20:01:00.679224,abortion meaning in the bible,is abortion mentioned in the bible,anywhere,even +abortion,"('is abortion mentioned in the bible anywhere', 'is abortion legal in the bible')",is abortion mentioned in the bible anywhere,is abortion legal in the bible,3,4,google,2026-03-12 20:01:00.679224,abortion meaning in the bible,is abortion mentioned in the bible,anywhere,legal +abortion,"('is abortion mentioned in the bible anywhere', 'is abortion mentioned in the new testament')",is abortion mentioned in the bible anywhere,is abortion mentioned in the new testament,4,4,google,2026-03-12 20:01:00.679224,abortion meaning in the bible,is abortion mentioned in the bible,anywhere,new testament +abortion,"('is abortion mentioned in the bible anywhere', 'is abortion mentioned in the holy bible')",is abortion mentioned in the bible anywhere,is abortion mentioned in the holy bible,5,4,google,2026-03-12 20:01:00.679224,abortion meaning in the bible,is abortion mentioned in the bible,anywhere,holy +abortion,"('is abortion mentioned in the bible anywhere', 'is abortion mentioned in the old testament')",is abortion mentioned in the bible anywhere,is abortion mentioned in the old testament,6,4,google,2026-03-12 20:01:00.679224,abortion meaning in the bible,is abortion mentioned in the bible,anywhere,old testament +abortion,"('is abortion discussed in the bible', 'is abortion mentioned in the bible')",is abortion discussed in the bible,is abortion mentioned in the bible,1,4,google,2026-03-12 20:01:01.656052,abortion meaning in the bible,is abortion mentioned in the bible,discussed,mentioned +abortion,"('is abortion discussed in the bible', 'is abortion talked about in the bible')",is abortion discussed in the bible,is abortion talked about in the bible,2,4,google,2026-03-12 20:01:01.656052,abortion meaning in the bible,is abortion mentioned in the bible,discussed,talked about +abortion,"('is abortion discussed in the bible', 'is abortion addressed in the bible')",is abortion discussed in the bible,is abortion addressed in the bible,3,4,google,2026-03-12 20:01:01.656052,abortion meaning in the bible,is abortion mentioned in the bible,discussed,addressed +abortion,"('is abortion discussed in the bible', 'is abortion mentioned in the bible anywhere')",is abortion discussed in the bible,is abortion mentioned in the bible anywhere,4,4,google,2026-03-12 20:01:01.656052,abortion meaning in the bible,is abortion mentioned in the bible,discussed,mentioned anywhere +abortion,"('is abortion discussed in the bible', 'is abortion described in the bible')",is abortion discussed in the bible,is abortion described in the bible,5,4,google,2026-03-12 20:01:01.656052,abortion meaning in the bible,is abortion mentioned in the bible,discussed,described +abortion,"('is abortion discussed in the bible', 'where is abortion mentioned in the bible verse')",is abortion discussed in the bible,where is abortion mentioned in the bible verse,6,4,google,2026-03-12 20:01:01.656052,abortion meaning in the bible,is abortion mentioned in the bible,discussed,where mentioned verse +abortion,"('is abortion discussed in the bible', 'is abortion actually mentioned in the bible')",is abortion discussed in the bible,is abortion actually mentioned in the bible,7,4,google,2026-03-12 20:01:01.656052,abortion meaning in the bible,is abortion mentioned in the bible,discussed,actually mentioned +abortion,"('is abortion discussed in the bible', 'is abortion specifically mentioned in the bible')",is abortion discussed in the bible,is abortion specifically mentioned in the bible,8,4,google,2026-03-12 20:01:01.656052,abortion meaning in the bible,is abortion mentioned in the bible,discussed,specifically mentioned +abortion,"('is abortion discussed in the bible', 'what is abortion considered in the bible')",is abortion discussed in the bible,what is abortion considered in the bible,9,4,google,2026-03-12 20:01:01.656052,abortion meaning in the bible,is abortion mentioned in the bible,discussed,what considered +abortion,"('is abortion referenced in the bible', 'is abortion mentioned in the bible')",is abortion referenced in the bible,is abortion mentioned in the bible,1,4,google,2026-03-12 20:01:03.148848,abortion meaning in the bible,is abortion mentioned in the bible,referenced,mentioned +abortion,"('is abortion referenced in the bible', 'is abortion mentioned in the bible anywhere')",is abortion referenced in the bible,is abortion mentioned in the bible anywhere,2,4,google,2026-03-12 20:01:03.148848,abortion meaning in the bible,is abortion mentioned in the bible,referenced,mentioned anywhere +abortion,"('is abortion referenced in the bible', 'where is abortion mentioned in the bible verse')",is abortion referenced in the bible,where is abortion mentioned in the bible verse,3,4,google,2026-03-12 20:01:03.148848,abortion meaning in the bible,is abortion mentioned in the bible,referenced,where mentioned verse +abortion,"('is abortion referenced in the bible', 'is abortion actually mentioned in the bible')",is abortion referenced in the bible,is abortion actually mentioned in the bible,4,4,google,2026-03-12 20:01:03.148848,abortion meaning in the bible,is abortion mentioned in the bible,referenced,actually mentioned +abortion,"('is abortion referenced in the bible', 'is abortion specifically mentioned in the bible')",is abortion referenced in the bible,is abortion specifically mentioned in the bible,5,4,google,2026-03-12 20:01:03.148848,abortion meaning in the bible,is abortion mentioned in the bible,referenced,specifically mentioned +abortion,"('is abortion referenced in the bible', 'is abortion directly mentioned in the bible')",is abortion referenced in the bible,is abortion directly mentioned in the bible,6,4,google,2026-03-12 20:01:03.148848,abortion meaning in the bible,is abortion mentioned in the bible,referenced,directly mentioned +abortion,"('is abortion referenced in the bible', 'is abortion referred to in the bible')",is abortion referenced in the bible,is abortion referred to in the bible,7,4,google,2026-03-12 20:01:03.148848,abortion meaning in the bible,is abortion mentioned in the bible,referenced,referred to +abortion,"('is abortion referenced in the bible', 'is abortion mentioned in the christian bible')",is abortion referenced in the bible,is abortion mentioned in the christian bible,8,4,google,2026-03-12 20:01:03.148848,abortion meaning in the bible,is abortion mentioned in the bible,referenced,mentioned christian +abortion,"('is abortion referenced in the bible', 'is abortion mentioned in the catholic bible')",is abortion referenced in the bible,is abortion mentioned in the catholic bible,9,4,google,2026-03-12 20:01:03.148848,abortion meaning in the bible,is abortion mentioned in the bible,referenced,mentioned catholic +abortion,"('is abortion found in the bible', 'is abortion mentioned in the bible')",is abortion found in the bible,is abortion mentioned in the bible,1,4,google,2026-03-12 20:01:04.062426,abortion meaning in the bible,is abortion mentioned in the bible,found,mentioned +abortion,"('is abortion found in the bible', 'is abortion mentioned in the bible anywhere')",is abortion found in the bible,is abortion mentioned in the bible anywhere,2,4,google,2026-03-12 20:01:04.062426,abortion meaning in the bible,is abortion mentioned in the bible,found,mentioned anywhere +abortion,"('is abortion found in the bible', 'is the word abortion found in the bible')",is abortion found in the bible,is the word abortion found in the bible,3,4,google,2026-03-12 20:01:04.062426,abortion meaning in the bible,is abortion mentioned in the bible,found,word +abortion,"('is abortion found in the bible', 'where is abortion mentioned in the bible verse')",is abortion found in the bible,where is abortion mentioned in the bible verse,4,4,google,2026-03-12 20:01:04.062426,abortion meaning in the bible,is abortion mentioned in the bible,found,where mentioned verse +abortion,"('is abortion found in the bible', 'is abortion actually mentioned in the bible')",is abortion found in the bible,is abortion actually mentioned in the bible,5,4,google,2026-03-12 20:01:04.062426,abortion meaning in the bible,is abortion mentioned in the bible,found,actually mentioned +abortion,"('is abortion found in the bible', 'is abortion specifically mentioned in the bible')",is abortion found in the bible,is abortion specifically mentioned in the bible,6,4,google,2026-03-12 20:01:04.062426,abortion meaning in the bible,is abortion mentioned in the bible,found,specifically mentioned +abortion,"('is abortion found in the bible', 'is abortion directly mentioned in the bible')",is abortion found in the bible,is abortion directly mentioned in the bible,7,4,google,2026-03-12 20:01:04.062426,abortion meaning in the bible,is abortion mentioned in the bible,found,directly mentioned +abortion,"('is abortion found in the bible', 'is abortion mentioned in the christian bible')",is abortion found in the bible,is abortion mentioned in the christian bible,8,4,google,2026-03-12 20:01:04.062426,abortion meaning in the bible,is abortion mentioned in the bible,found,mentioned christian +abortion,"('is abortion found in the bible', 'is abortion mentioned in the catholic bible')",is abortion found in the bible,is abortion mentioned in the catholic bible,9,4,google,2026-03-12 20:01:04.062426,abortion meaning in the bible,is abortion mentioned in the bible,found,mentioned catholic +abortion,"('is abortion referred to in the bible', 'is abortion in the bible')",is abortion referred to in the bible,is abortion in the bible,1,4,google,2026-03-12 20:01:05.155556,abortion meaning in the bible,is abortion mentioned in the bible,referred to,referred to +abortion,"('is abortion referred to in the bible', 'is abortion in the bible kjv')",is abortion referred to in the bible,is abortion in the bible kjv,2,4,google,2026-03-12 20:01:05.155556,abortion meaning in the bible,is abortion mentioned in the bible,referred to,kjv +abortion,"('is abortion referred to in the bible', 'is abortion in the bible a sin')",is abortion referred to in the bible,is abortion in the bible a sin,3,4,google,2026-03-12 20:01:05.155556,abortion meaning in the bible,is abortion mentioned in the bible,referred to,a sin +abortion,"('is abortion referred to in the bible', 'is abortion in the bible reddit')",is abortion referred to in the bible,is abortion in the bible reddit,4,4,google,2026-03-12 20:01:05.155556,abortion meaning in the bible,is abortion mentioned in the bible,referred to,reddit +abortion,"('is abortion referred to in the bible', 'is abortion mentioned in the bible')",is abortion referred to in the bible,is abortion mentioned in the bible,5,4,google,2026-03-12 20:01:05.155556,abortion meaning in the bible,is abortion mentioned in the bible,referred to,mentioned +abortion,"('is abortion referred to in the bible', 'is abortion even mentioned in the bible')",is abortion referred to in the bible,is abortion even mentioned in the bible,6,4,google,2026-03-12 20:01:05.155556,abortion meaning in the bible,is abortion mentioned in the bible,referred to,even mentioned +abortion,"('is abortion referred to in the bible', 'is abortion referenced in the bible')",is abortion referred to in the bible,is abortion referenced in the bible,7,4,google,2026-03-12 20:01:05.155556,abortion meaning in the bible,is abortion mentioned in the bible,referred to,referenced +abortion,"('is abortion described in the bible', 'is abortion mentioned in the bible')",is abortion described in the bible,is abortion mentioned in the bible,1,4,google,2026-03-12 20:01:06.348043,abortion meaning in the bible,is abortion mentioned in the bible,described,mentioned +abortion,"('is abortion described in the bible', 'is abortion discussed in the bible')",is abortion described in the bible,is abortion discussed in the bible,2,4,google,2026-03-12 20:01:06.348043,abortion meaning in the bible,is abortion mentioned in the bible,described,discussed +abortion,"('is abortion described in the bible', 'is abortion mentioned in the bible anywhere')",is abortion described in the bible,is abortion mentioned in the bible anywhere,3,4,google,2026-03-12 20:01:06.348043,abortion meaning in the bible,is abortion mentioned in the bible,described,mentioned anywhere +abortion,"('is abortion described in the bible', 'where is abortion mentioned in the bible verse')",is abortion described in the bible,where is abortion mentioned in the bible verse,4,4,google,2026-03-12 20:01:06.348043,abortion meaning in the bible,is abortion mentioned in the bible,described,where mentioned verse +abortion,"('is abortion described in the bible', 'is abortion actually mentioned in the bible')",is abortion described in the bible,is abortion actually mentioned in the bible,5,4,google,2026-03-12 20:01:06.348043,abortion meaning in the bible,is abortion mentioned in the bible,described,actually mentioned +abortion,"('is abortion described in the bible', 'is abortion specifically mentioned in the bible')",is abortion described in the bible,is abortion specifically mentioned in the bible,6,4,google,2026-03-12 20:01:06.348043,abortion meaning in the bible,is abortion mentioned in the bible,described,specifically mentioned +abortion,"('is abortion described in the bible', 'is abortion directly mentioned in the bible')",is abortion described in the bible,is abortion directly mentioned in the bible,7,4,google,2026-03-12 20:01:06.348043,abortion meaning in the bible,is abortion mentioned in the bible,described,directly mentioned +abortion,"('is abortion described in the bible', 'is abortion mentioned in the christian bible')",is abortion described in the bible,is abortion mentioned in the christian bible,8,4,google,2026-03-12 20:01:06.348043,abortion meaning in the bible,is abortion mentioned in the bible,described,mentioned christian +abortion,"('is abortion described in the bible', 'is abortion mentioned in the catholic bible')",is abortion described in the bible,is abortion mentioned in the catholic bible,9,4,google,2026-03-12 20:01:06.348043,abortion meaning in the bible,is abortion mentioned in the bible,described,mentioned catholic +abortion,"('where is abortion mentioned in the bible verse', 'is abortion mentioned in the bible')",where is abortion mentioned in the bible verse,is abortion mentioned in the bible,1,4,google,2026-03-12 20:01:07.615967,abortion meaning in the bible,is abortion mentioned in the bible,where verse,where verse +abortion,"('where is abortion mentioned in the bible verse', 'is abortion even mentioned in the bible')",where is abortion mentioned in the bible verse,is abortion even mentioned in the bible,2,4,google,2026-03-12 20:01:07.615967,abortion meaning in the bible,is abortion mentioned in the bible,where verse,even +abortion,"('where is abortion mentioned in the bible verse', 'where does it mention abortion in the bible')",where is abortion mentioned in the bible verse,where does it mention abortion in the bible,3,4,google,2026-03-12 20:01:07.615967,abortion meaning in the bible,is abortion mentioned in the bible,where verse,does it mention +abortion,"('where is abortion mentioned in the bible verse', 'is abortion mentioned anywhere in the bible')",where is abortion mentioned in the bible verse,is abortion mentioned anywhere in the bible,4,4,google,2026-03-12 20:01:07.615967,abortion meaning in the bible,is abortion mentioned in the bible,where verse,anywhere +abortion,"('is abortion actually mentioned in the bible', 'is abortion mentioned in the bible')",is abortion actually mentioned in the bible,is abortion mentioned in the bible,1,4,google,2026-03-12 20:01:08.455288,abortion meaning in the bible,is abortion mentioned in the bible,actually,actually +abortion,"('is abortion actually mentioned in the bible', 'is abortion mentioned in the bible anywhere')",is abortion actually mentioned in the bible,is abortion mentioned in the bible anywhere,2,4,google,2026-03-12 20:01:08.455288,abortion meaning in the bible,is abortion mentioned in the bible,actually,anywhere +abortion,"('is abortion actually mentioned in the bible', 'is abortion actually in the bible')",is abortion actually mentioned in the bible,is abortion actually in the bible,3,4,google,2026-03-12 20:01:08.455288,abortion meaning in the bible,is abortion mentioned in the bible,actually,actually +abortion,"('is abortion actually mentioned in the bible', 'is abortion specifically mentioned in the bible')",is abortion actually mentioned in the bible,is abortion specifically mentioned in the bible,4,4,google,2026-03-12 20:01:08.455288,abortion meaning in the bible,is abortion mentioned in the bible,actually,specifically +abortion,"('is abortion actually mentioned in the bible', 'is abortion directly mentioned in the bible')",is abortion actually mentioned in the bible,is abortion directly mentioned in the bible,5,4,google,2026-03-12 20:01:08.455288,abortion meaning in the bible,is abortion mentioned in the bible,actually,directly +abortion,"('is abortion actually mentioned in the bible', 'is abortion discussed in the bible')",is abortion actually mentioned in the bible,is abortion discussed in the bible,6,4,google,2026-03-12 20:01:08.455288,abortion meaning in the bible,is abortion mentioned in the bible,actually,discussed +abortion,"('is abortion actually mentioned in the bible', 'is abortion referenced in the bible')",is abortion actually mentioned in the bible,is abortion referenced in the bible,7,4,google,2026-03-12 20:01:08.455288,abortion meaning in the bible,is abortion mentioned in the bible,actually,referenced +abortion,"('is abortion actually mentioned in the bible', 'is abortion found in the bible')",is abortion actually mentioned in the bible,is abortion found in the bible,8,4,google,2026-03-12 20:01:08.455288,abortion meaning in the bible,is abortion mentioned in the bible,actually,found +abortion,"('is abortion actually mentioned in the bible', 'is abortion described in the bible')",is abortion actually mentioned in the bible,is abortion described in the bible,9,4,google,2026-03-12 20:01:08.455288,abortion meaning in the bible,is abortion mentioned in the bible,actually,described +abortion,"('is abortion specifically mentioned in the bible', 'is abortion mentioned in the bible')",is abortion specifically mentioned in the bible,is abortion mentioned in the bible,1,4,google,2026-03-12 20:01:09.322562,abortion meaning in the bible,is abortion mentioned in the bible,specifically,specifically +abortion,"('is abortion specifically mentioned in the bible', 'is abortion even mentioned in the bible')",is abortion specifically mentioned in the bible,is abortion even mentioned in the bible,2,4,google,2026-03-12 20:01:09.322562,abortion meaning in the bible,is abortion mentioned in the bible,specifically,even +abortion,"('is abortion specifically mentioned in the bible', 'what does the bible specifically say about abortion')",is abortion specifically mentioned in the bible,what does the bible specifically say about abortion,3,4,google,2026-03-12 20:01:09.322562,abortion meaning in the bible,is abortion mentioned in the bible,specifically,what does say about +abortion,"('is abortion specifically mentioned in the bible', 'does the bible specifically talk about abortion')",is abortion specifically mentioned in the bible,does the bible specifically talk about abortion,4,4,google,2026-03-12 20:01:09.322562,abortion meaning in the bible,is abortion mentioned in the bible,specifically,does talk about +abortion,"('is abortion specifically mentioned in the bible', 'does the bible specifically say abortion is wrong')",is abortion specifically mentioned in the bible,does the bible specifically say abortion is wrong,5,4,google,2026-03-12 20:01:09.322562,abortion meaning in the bible,is abortion mentioned in the bible,specifically,does say wrong +abortion,"('is abortion ever okay in the bible', 'is abortion okay in the bible')",is abortion ever okay in the bible,is abortion okay in the bible,1,4,google,2026-03-12 20:01:10.256211,abortion meaning in the bible,is abortion even mentioned in the bible,ever okay,ever okay +abortion,"('is abortion ever okay in the bible', 'is abortion mentioned in the bible')",is abortion ever okay in the bible,is abortion mentioned in the bible,2,4,google,2026-03-12 20:01:10.256211,abortion meaning in the bible,is abortion even mentioned in the bible,ever okay,mentioned +abortion,"('is abortion ever okay in the bible', 'is abortion ever mentioned in the bible')",is abortion ever okay in the bible,is abortion ever mentioned in the bible,3,4,google,2026-03-12 20:01:10.256211,abortion meaning in the bible,is abortion even mentioned in the bible,ever okay,mentioned +abortion,"('is abortion ever okay in the bible', 'is abortion ever okay')",is abortion ever okay in the bible,is abortion ever okay,4,4,google,2026-03-12 20:01:10.256211,abortion meaning in the bible,is abortion even mentioned in the bible,ever okay,ever okay +abortion,"('is abortion ever okay in the bible', 'is abortion ever ok')",is abortion ever okay in the bible,is abortion ever ok,5,4,google,2026-03-12 20:01:10.256211,abortion meaning in the bible,is abortion even mentioned in the bible,ever okay,ok +abortion,"('is abortion ever justified in the bible', 'is abortion acceptable in the bible')",is abortion ever justified in the bible,is abortion acceptable in the bible,1,4,google,2026-03-12 20:01:11.233236,abortion meaning in the bible,is abortion even mentioned in the bible,ever justified,acceptable +abortion,"('is abortion ever justified in the bible', 'is abortion ever justified')",is abortion ever justified in the bible,is abortion ever justified,2,4,google,2026-03-12 20:01:11.233236,abortion meaning in the bible,is abortion even mentioned in the bible,ever justified,ever justified +abortion,"('is abortion ever justified in the bible', 'is abortion even mentioned in the bible')",is abortion ever justified in the bible,is abortion even mentioned in the bible,3,4,google,2026-03-12 20:01:11.233236,abortion meaning in the bible,is abortion even mentioned in the bible,ever justified,even mentioned +abortion,"('is abortion ever justified in the bible', 'is abortion mentioned in the bible')",is abortion ever justified in the bible,is abortion mentioned in the bible,4,4,google,2026-03-12 20:01:11.233236,abortion meaning in the bible,is abortion even mentioned in the bible,ever justified,mentioned +abortion,"('is abortion ever justified in the bible', 'is abortion legal in the bible')",is abortion ever justified in the bible,is abortion legal in the bible,5,4,google,2026-03-12 20:01:11.233236,abortion meaning in the bible,is abortion even mentioned in the bible,ever justified,legal +abortion,"('is abortion ever justified in the bible', 'is abortion ever mentioned in the bible')",is abortion ever justified in the bible,is abortion ever mentioned in the bible,6,4,google,2026-03-12 20:01:11.233236,abortion meaning in the bible,is abortion even mentioned in the bible,ever justified,mentioned +abortion,"('is abortion legal in the bible', 'is abortion allowed in the bible')",is abortion legal in the bible,is abortion allowed in the bible,1,4,google,2026-03-12 20:01:12.650696,abortion meaning in the bible,is abortion even mentioned in the bible,legal,allowed +abortion,"('is abortion legal in the bible', 'is abortion illegal in the bible')",is abortion legal in the bible,is abortion illegal in the bible,2,4,google,2026-03-12 20:01:12.650696,abortion meaning in the bible,is abortion even mentioned in the bible,legal,illegal +abortion,"('is abortion legal in the bible', 'is abortion allowed in the old testament')",is abortion legal in the bible,is abortion allowed in the old testament,3,4,google,2026-03-12 20:01:12.650696,abortion meaning in the bible,is abortion even mentioned in the bible,legal,allowed old testament +abortion,"('is abortion legal in the bible', 'abortion law in the bible')",is abortion legal in the bible,abortion law in the bible,4,4,google,2026-03-12 20:01:12.650696,abortion meaning in the bible,is abortion even mentioned in the bible,legal,law +abortion,"('is abortion legal in the bible', 'was abortion legal in biblical times')",is abortion legal in the bible,was abortion legal in biblical times,5,4,google,2026-03-12 20:01:12.650696,abortion meaning in the bible,is abortion even mentioned in the bible,legal,was biblical times +abortion,"('is abortion legal in the bible', 'is abortion mentioned in the bible')",is abortion legal in the bible,is abortion mentioned in the bible,6,4,google,2026-03-12 20:01:12.650696,abortion meaning in the bible,is abortion even mentioned in the bible,legal,mentioned +abortion,"('is abortion legal in the bible', 'is abortion even mentioned in the bible')",is abortion legal in the bible,is abortion even mentioned in the bible,7,4,google,2026-03-12 20:01:12.650696,abortion meaning in the bible,is abortion even mentioned in the bible,legal,even mentioned +abortion,"('is abortion legal in the bible', 'is abortion in the bible at all')",is abortion legal in the bible,is abortion in the bible at all,8,4,google,2026-03-12 20:01:12.650696,abortion meaning in the bible,is abortion even mentioned in the bible,legal,at all +abortion,"('is abortion legal in the bible', 'is abortion in the bible kjv')",is abortion legal in the bible,is abortion in the bible kjv,9,4,google,2026-03-12 20:01:12.650696,abortion meaning in the bible,is abortion even mentioned in the bible,legal,kjv +abortion,"('is abortion ever mentioned in the bible', 'is abortion mentioned in the bible anywhere')",is abortion ever mentioned in the bible,is abortion mentioned in the bible anywhere,1,4,google,2026-03-12 20:01:13.562742,abortion meaning in the bible,is abortion even mentioned in the bible,ever,anywhere +abortion,"('is abortion ever mentioned in the bible', 'is abortion actually mentioned in the bible')",is abortion ever mentioned in the bible,is abortion actually mentioned in the bible,2,4,google,2026-03-12 20:01:13.562742,abortion meaning in the bible,is abortion even mentioned in the bible,ever,actually +abortion,"('is abortion ever mentioned in the bible', 'is abortion specifically mentioned in the bible')",is abortion ever mentioned in the bible,is abortion specifically mentioned in the bible,3,4,google,2026-03-12 20:01:13.562742,abortion meaning in the bible,is abortion even mentioned in the bible,ever,specifically +abortion,"('is abortion ever mentioned in the bible', 'is abortion ever okay in the bible')",is abortion ever mentioned in the bible,is abortion ever okay in the bible,4,4,google,2026-03-12 20:01:13.562742,abortion meaning in the bible,is abortion even mentioned in the bible,ever,okay +abortion,"('is abortion ever mentioned in the bible', 'is abortion directly mentioned in the bible')",is abortion ever mentioned in the bible,is abortion directly mentioned in the bible,5,4,google,2026-03-12 20:01:13.562742,abortion meaning in the bible,is abortion even mentioned in the bible,ever,directly +abortion,"('is abortion ever mentioned in the bible', 'is abortion discussed in the bible')",is abortion ever mentioned in the bible,is abortion discussed in the bible,6,4,google,2026-03-12 20:01:13.562742,abortion meaning in the bible,is abortion even mentioned in the bible,ever,discussed +abortion,"('is abortion ever mentioned in the bible', 'is abortion referenced in the bible')",is abortion ever mentioned in the bible,is abortion referenced in the bible,7,4,google,2026-03-12 20:01:13.562742,abortion meaning in the bible,is abortion even mentioned in the bible,ever,referenced +abortion,"('is abortion ever mentioned in the bible', 'is abortion found in the bible')",is abortion ever mentioned in the bible,is abortion found in the bible,8,4,google,2026-03-12 20:01:13.562742,abortion meaning in the bible,is abortion even mentioned in the bible,ever,found +abortion,"('is abortion ever mentioned in the bible', 'is abortion described in the bible')",is abortion ever mentioned in the bible,is abortion described in the bible,9,4,google,2026-03-12 20:01:13.562742,abortion meaning in the bible,is abortion even mentioned in the bible,ever,described +abortion,"('what does abortion mean in hebrew', 'what does abortion mean in the bible')",what does abortion mean in hebrew,what does abortion mean in the bible,1,4,google,2026-03-12 20:01:14.724862,abortion meaning in the bible,what does abortion mean in the bible,hebrew,the bible +abortion,"('what does abortion mean in hebrew', 'what does the word abortion mean')",what does abortion mean in hebrew,what does the word abortion mean,2,4,google,2026-03-12 20:01:14.724862,abortion meaning in the bible,what does abortion mean in the bible,hebrew,the word +abortion,"('what does abortion mean in hebrew', 'what does abortion mean')",what does abortion mean in hebrew,what does abortion mean,3,4,google,2026-03-12 20:01:14.724862,abortion meaning in the bible,what does abortion mean in the bible,hebrew,hebrew +abortion,"('what does abortion mean in hebrew', 'abortion meaning in hebrew')",what does abortion mean in hebrew,abortion meaning in hebrew,4,4,google,2026-03-12 20:01:14.724862,abortion meaning in the bible,what does abortion mean in the bible,hebrew,meaning +abortion,"('what does abortion mean in hebrew', 'abortion in hebrew bible')",what does abortion mean in hebrew,abortion in hebrew bible,5,4,google,2026-03-12 20:01:14.724862,abortion meaning in the bible,what does abortion mean in the bible,hebrew,bible +abortion,"('what does abortion say in the bible', 'what does god say about abortion in the bible')",what does abortion say in the bible,what does god say about abortion in the bible,1,4,google,2026-03-12 20:01:15.695850,abortion meaning in the bible,what does abortion mean in the bible,say,god about +abortion,"('what does abortion say in the bible', 'what does jesus say about abortion in the bible')",what does abortion say in the bible,what does jesus say about abortion in the bible,2,4,google,2026-03-12 20:01:15.695850,abortion meaning in the bible,what does abortion mean in the bible,say,jesus about +abortion,"('what does abortion say in the bible', 'what does it say in the bible about abortion kjv')",what does abortion say in the bible,what does it say in the bible about abortion kjv,3,4,google,2026-03-12 20:01:15.695850,abortion meaning in the bible,what does abortion mean in the bible,say,it about kjv +abortion,"('what does abortion say in the bible', 'what does the bible say about abortion in the new testament')",what does abortion say in the bible,what does the bible say about abortion in the new testament,4,4,google,2026-03-12 20:01:15.695850,abortion meaning in the bible,what does abortion mean in the bible,say,about new testament +abortion,"('what does abortion say in the bible', 'what does the bible say about abortion in the old testament')",what does abortion say in the bible,what does the bible say about abortion in the old testament,5,4,google,2026-03-12 20:01:15.695850,abortion meaning in the bible,what does abortion mean in the bible,say,about old testament +abortion,"('what does abortion say in the bible', 'what does it say in the bible about having an abortion')",what does abortion say in the bible,what does it say in the bible about having an abortion,6,4,google,2026-03-12 20:01:15.695850,abortion meaning in the bible,what does abortion mean in the bible,say,it about having an +abortion,"('what does abortion say in the bible', 'is abortion mentioned in the bible')",what does abortion say in the bible,is abortion mentioned in the bible,7,4,google,2026-03-12 20:01:15.695850,abortion meaning in the bible,what does abortion mean in the bible,say,is mentioned +abortion,"('what does abortion say in the bible', 'is abortion even mentioned in the bible')",what does abortion say in the bible,is abortion even mentioned in the bible,8,4,google,2026-03-12 20:01:15.695850,abortion meaning in the bible,what does abortion mean in the bible,say,is even mentioned +abortion,"('definition of abortion in texas', 'legal definition of abortion in texas')",definition of abortion in texas,legal definition of abortion in texas,1,4,google,2026-03-12 20:01:16.634345,abortion meaning in the bible,definition of abortion in the bible,texas,legal +abortion,"('definition of abortion in texas', 'is abortion a felony in texas')",definition of abortion in texas,is abortion a felony in texas,2,4,google,2026-03-12 20:01:16.634345,abortion meaning in the bible,definition of abortion in the bible,texas,is a felony +abortion,"('definition of abortion in texas', 'history of abortion in texas')",definition of abortion in texas,history of abortion in texas,3,4,google,2026-03-12 20:01:16.634345,abortion meaning in the bible,definition of abortion in the bible,texas,history +abortion,"('definition of abortion in texas', 'definition of abortion under texas law')",definition of abortion in texas,definition of abortion under texas law,4,4,google,2026-03-12 20:01:16.634345,abortion meaning in the bible,definition of abortion in the bible,texas,under law +abortion,"('definition of abortion in texas', 'definition of abortion in kansas')",definition of abortion in texas,definition of abortion in kansas,5,4,google,2026-03-12 20:01:16.634345,abortion meaning in the bible,definition of abortion in the bible,texas,kansas +abortion,"('definition of abortion in kansas', 'definition of abortion in kansas law')",definition of abortion in kansas,definition of abortion in kansas law,1,4,google,2026-03-12 20:01:17.618018,abortion meaning in the bible,definition of abortion in the bible,kansas,law +abortion,"('definition of abortion in kansas', 'definition of abortion in kansas 2023')",definition of abortion in kansas,definition of abortion in kansas 2023,2,4,google,2026-03-12 20:01:17.618018,abortion meaning in the bible,definition of abortion in the bible,kansas,2023 +abortion,"('definition of abortion in kansas', 'definition of abortion in kansas state')",definition of abortion in kansas,definition of abortion in kansas state,3,4,google,2026-03-12 20:01:17.618018,abortion meaning in the bible,definition of abortion in the bible,kansas,state +abortion,"('definition of abortion in kansas', 'definition of abortion in kansas 2024')",definition of abortion in kansas,definition of abortion in kansas 2024,4,4,google,2026-03-12 20:01:17.618018,abortion meaning in the bible,definition of abortion in the bible,kansas,2024 +abortion,"('definition of abortion in kansas', 'definition of abortion in kansas supreme court')",definition of abortion in kansas,definition of abortion in kansas supreme court,5,4,google,2026-03-12 20:01:17.618018,abortion meaning in the bible,definition of abortion in the bible,kansas,supreme court +abortion,"('definition of abortion in kansas', 'definition of abortion in kansas city')",definition of abortion in kansas,definition of abortion in kansas city,6,4,google,2026-03-12 20:01:17.618018,abortion meaning in the bible,definition of abortion in the bible,kansas,city +abortion,"('definition of abortion in kansas', 'definition of abortion in kansas legal')",definition of abortion in kansas,definition of abortion in kansas legal,7,4,google,2026-03-12 20:01:17.618018,abortion meaning in the bible,definition of abortion in the bible,kansas,legal +abortion,"('definition of abortion in kansas', 'definition of abortion in kansas 2021')",definition of abortion in kansas,definition of abortion in kansas 2021,8,4,google,2026-03-12 20:01:17.618018,abortion meaning in the bible,definition of abortion in the bible,kansas,2021 +abortion,"('definition of abortion in kansas', 'definition of abortion in kansas 2020')",definition of abortion in kansas,definition of abortion in kansas 2020,9,4,google,2026-03-12 20:01:17.618018,abortion meaning in the bible,definition of abortion in the bible,kansas,2020 +abortion,"('origin of abortion in the united states', 'history of abortion in the united states')",origin of abortion in the united states,history of abortion in the united states,1,4,google,2026-03-12 20:01:18.879977,abortion meaning in greek,origin of abortion,in the united states,history +abortion,"('origin of abortion in the united states', 'history of abortion in the united states timeline')",origin of abortion in the united states,history of abortion in the united states timeline,2,4,google,2026-03-12 20:01:18.879977,abortion meaning in greek,origin of abortion,in the united states,history timeline +abortion,"('origin of abortion in the united states', 'history of abortion in the united states scholarly articles')",origin of abortion in the united states,history of abortion in the united states scholarly articles,3,4,google,2026-03-12 20:01:18.879977,abortion meaning in greek,origin of abortion,in the united states,history scholarly articles +abortion,"('origin of abortion in the united states', 'history of abortion in the united states book')",origin of abortion in the united states,history of abortion in the united states book,4,4,google,2026-03-12 20:01:18.879977,abortion meaning in greek,origin of abortion,in the united states,history book +abortion,"('origin of abortion in the united states', 'history of abortion laws in the united states')",origin of abortion in the united states,history of abortion laws in the united states,5,4,google,2026-03-12 20:01:18.879977,abortion meaning in greek,origin of abortion,in the united states,history laws +abortion,"('origin of abortion in the united states', 'history of abortion rights in the united states')",origin of abortion in the united states,history of abortion rights in the united states,6,4,google,2026-03-12 20:01:18.879977,abortion meaning in greek,origin of abortion,in the united states,history rights +abortion,"('origin of abortion in the united states', 'history of abortion legislation in the united states')",origin of abortion in the united states,history of abortion legislation in the united states,7,4,google,2026-03-12 20:01:18.879977,abortion meaning in greek,origin of abortion,in the united states,history legislation +abortion,"('origin of abortion in the united states', 'legal history of abortion in the united states')",origin of abortion in the united states,legal history of abortion in the united states,8,4,google,2026-03-12 20:01:18.879977,abortion meaning in greek,origin of abortion,in the united states,legal history +abortion,"('origin of abortion in the united states', 'history of abortion policy in the united states')",origin of abortion in the united states,history of abortion policy in the united states,9,4,google,2026-03-12 20:01:18.879977,abortion meaning in greek,origin of abortion,in the united states,history policy +abortion,"('origin of abortion laws', 'history of abortion laws')",origin of abortion laws,history of abortion laws,1,4,google,2026-03-12 20:01:20.101856,abortion meaning in greek,origin of abortion,laws,history +abortion,"('origin of abortion laws', 'history of abortion laws in australia')",origin of abortion laws,history of abortion laws in australia,2,4,google,2026-03-12 20:01:20.101856,abortion meaning in greek,origin of abortion,laws,history in australia +abortion,"('origin of abortion laws', 'history of abortion laws in the united states')",origin of abortion laws,history of abortion laws in the united states,3,4,google,2026-03-12 20:01:20.101856,abortion meaning in greek,origin of abortion,laws,history in the united states +abortion,"('origin of abortion laws', 'history of abortion laws in canada')",origin of abortion laws,history of abortion laws in canada,4,4,google,2026-03-12 20:01:20.101856,abortion meaning in greek,origin of abortion,laws,history in canada +abortion,"('origin of abortion laws', 'history of abortion laws in texas')",origin of abortion laws,history of abortion laws in texas,5,4,google,2026-03-12 20:01:20.101856,abortion meaning in greek,origin of abortion,laws,history in texas +abortion,"('origin of abortion laws', 'history of abortion laws uk')",origin of abortion laws,history of abortion laws uk,6,4,google,2026-03-12 20:01:20.101856,abortion meaning in greek,origin of abortion,laws,history uk +abortion,"('origin of abortion laws', 'history of abortion laws in india')",origin of abortion laws,history of abortion laws in india,7,4,google,2026-03-12 20:01:20.101856,abortion meaning in greek,origin of abortion,laws,history in india +abortion,"('origin of abortion laws', 'history of abortion laws in ireland')",origin of abortion laws,history of abortion laws in ireland,8,4,google,2026-03-12 20:01:20.101856,abortion meaning in greek,origin of abortion,laws,history in ireland +abortion,"('origin of abortion laws', 'history of abortion laws in australia timeline')",origin of abortion laws,history of abortion laws in australia timeline,9,4,google,2026-03-12 20:01:20.101856,abortion meaning in greek,origin of abortion,laws,history in australia timeline +abortion,"('origin of word abortion', 'meaning of word abortion')",origin of word abortion,meaning of word abortion,1,4,google,2026-03-12 20:01:21.420103,abortion meaning in greek,origin of abortion,word,meaning +abortion,"('origin of word abortion', 'etymology of word abortion')",origin of word abortion,etymology of word abortion,2,4,google,2026-03-12 20:01:21.420103,abortion meaning in greek,origin of abortion,word,etymology +abortion,"('origin of word abortion', 'root of word abortion')",origin of word abortion,root of word abortion,3,4,google,2026-03-12 20:01:21.420103,abortion meaning in greek,origin of abortion,word,root +abortion,"('origin of word abortion', 'origin of word miscarriage')",origin of word abortion,origin of word miscarriage,4,4,google,2026-03-12 20:01:21.420103,abortion meaning in greek,origin of abortion,word,miscarriage +abortion,"('origin of word abortion', 'history of the word abortion')",origin of word abortion,history of the word abortion,5,4,google,2026-03-12 20:01:21.420103,abortion meaning in greek,origin of abortion,word,history the +abortion,"('origin of word abortion', 'origin of abortion')",origin of word abortion,origin of abortion,6,4,google,2026-03-12 20:01:21.420103,abortion meaning in greek,origin of abortion,word,word +abortion,"('origin of word abortion', 'when was the word abortion first used')",origin of word abortion,when was the word abortion first used,7,4,google,2026-03-12 20:01:21.420103,abortion meaning in greek,origin of abortion,word,when was the first used +abortion,"('origin of anti abortion movement', 'history of anti abortion movement')",origin of anti abortion movement,history of anti abortion movement,1,4,google,2026-03-12 20:01:22.736806,abortion meaning in greek,origin of abortion,anti movement,history +abortion,"('origin of anti abortion movement', 'npr history of anti abortion movement')",origin of anti abortion movement,npr history of anti abortion movement,2,4,google,2026-03-12 20:01:22.736806,abortion meaning in greek,origin of abortion,anti movement,npr history +abortion,"('origin of anti abortion movement', 'when did anti abortion movement start')",origin of anti abortion movement,when did anti abortion movement start,3,4,google,2026-03-12 20:01:22.736806,abortion meaning in greek,origin of abortion,anti movement,when did start +abortion,"('origin of anti abortion movement', 'what is the anti abortion movement')",origin of anti abortion movement,what is the anti abortion movement,4,4,google,2026-03-12 20:01:22.736806,abortion meaning in greek,origin of abortion,anti movement,what is the +abortion,"('origin of anti abortion movement', 'origin of anti abortion')",origin of anti abortion movement,origin of anti abortion,5,4,google,2026-03-12 20:01:22.736806,abortion meaning in greek,origin of abortion,anti movement,anti movement +abortion,"('where did abortions originate', 'where did abortions start')",where did abortions originate,where did abortions start,1,4,google,2026-03-12 20:01:23.835414,abortion meaning in greek,origin of abortion,where did abortions originate,start +abortion,"('where did abortions originate', 'where do abortions come from')",where did abortions originate,where do abortions come from,2,4,google,2026-03-12 20:01:23.835414,abortion meaning in greek,origin of abortion,where did abortions originate,do come from +abortion,"('where did abortions originate', 'where did the word abortion originate')",where did abortions originate,where did the word abortion originate,3,4,google,2026-03-12 20:01:23.835414,abortion meaning in greek,origin of abortion,where did abortions originate,the word abortion +abortion,"('where did abortions originate', 'how long has abortion been around')",where did abortions originate,how long has abortion been around,4,4,google,2026-03-12 20:01:23.835414,abortion meaning in greek,origin of abortion,where did abortions originate,how long has abortion been around +abortion,"('where did abortions originate', 'when did abortions start in america')",where did abortions originate,when did abortions start in america,5,4,google,2026-03-12 20:01:23.835414,abortion meaning in greek,origin of abortion,where did abortions originate,when start in america +abortion,"('how long has abortion been around', 'how long has abortion been around in the us')",how long has abortion been around,how long has abortion been around in the us,1,4,google,2026-03-12 20:01:25.064198,abortion meaning in greek,origin of abortion,how long has been around,in the us +abortion,"('how long has abortion been around', 'how many years has abortion been around')",how long has abortion been around,how many years has abortion been around,2,4,google,2026-03-12 20:01:25.064198,abortion meaning in greek,origin of abortion,how long has been around,many years +abortion,"('how long has abortion been around', 'how long has medical abortion been around')",how long has abortion been around,how long has medical abortion been around,3,4,google,2026-03-12 20:01:25.064198,abortion meaning in greek,origin of abortion,how long has been around,medical +abortion,"('how long has abortion been around', 'how long has abortion pills been around')",how long has abortion been around,how long has abortion pills been around,4,4,google,2026-03-12 20:01:25.064198,abortion meaning in greek,origin of abortion,how long has been around,pills +abortion,"('how long has abortion been around', 'how long has the word abortion been around')",how long has abortion been around,how long has the word abortion been around,5,4,google,2026-03-12 20:01:25.064198,abortion meaning in greek,origin of abortion,how long has been around,the word +abortion,"('how long has abortion been around', 'how long has the topic of abortion been around')",how long has abortion been around,how long has the topic of abortion been around,6,4,google,2026-03-12 20:01:25.064198,abortion meaning in greek,origin of abortion,how long has been around,the topic of +abortion,"('how long has abortion been around', 'how long has the abortion debate been around')",how long has abortion been around,how long has the abortion debate been around,7,4,google,2026-03-12 20:01:25.064198,abortion meaning in greek,origin of abortion,how long has been around,the debate +abortion,"('how long has abortion been around', 'how long has the practice of abortion been around')",how long has abortion been around,how long has the practice of abortion been around,8,4,google,2026-03-12 20:01:25.064198,abortion meaning in greek,origin of abortion,how long has been around,the practice of +abortion,"('how long has abortion been around', 'how long have abortions been performed')",how long has abortion been around,how long have abortions been performed,9,4,google,2026-03-12 20:01:25.064198,abortion meaning in greek,origin of abortion,how long has been around,have abortions performed +abortion,"('origin of abortion rights', 'history of abortion rights')",origin of abortion rights,history of abortion rights,1,4,google,2026-03-12 20:01:26.246663,abortion meaning in greek,origin of abortion,rights,history +abortion,"('origin of abortion rights', 'history of abortion rights in the us')",origin of abortion rights,history of abortion rights in the us,2,4,google,2026-03-12 20:01:26.246663,abortion meaning in greek,origin of abortion,rights,history in the us +abortion,"('origin of abortion rights', ""origin of women's rights"")",origin of abortion rights,origin of women's rights,3,4,google,2026-03-12 20:01:26.246663,abortion meaning in greek,origin of abortion,rights,women's +abortion,"('origin of abortion rights', ""origin of women's rights movement"")",origin of abortion rights,origin of women's rights movement,4,4,google,2026-03-12 20:01:26.246663,abortion meaning in greek,origin of abortion,rights,women's movement +abortion,"('origin of abortion rights', 'history of abortion rights in canada')",origin of abortion rights,history of abortion rights in canada,5,4,google,2026-03-12 20:01:26.246663,abortion meaning in greek,origin of abortion,rights,history in canada +abortion,"('origin of abortion rights', 'history of abortion rights in australia')",origin of abortion rights,history of abortion rights in australia,6,4,google,2026-03-12 20:01:26.246663,abortion meaning in greek,origin of abortion,rights,history in australia +abortion,"('origin of abortion rights', 'history of abortion rights in france')",origin of abortion rights,history of abortion rights in france,7,4,google,2026-03-12 20:01:26.246663,abortion meaning in greek,origin of abortion,rights,history in france +abortion,"('origin of abortion rights', 'history of abortion rights in ireland')",origin of abortion rights,history of abortion rights in ireland,8,4,google,2026-03-12 20:01:26.246663,abortion meaning in greek,origin of abortion,rights,history in ireland +abortion,"('origin of abortion rights', 'origin of abortion laws')",origin of abortion rights,origin of abortion laws,9,4,google,2026-03-12 20:01:26.246663,abortion meaning in greek,origin of abortion,rights,laws +abortion,"('origin of abortion rights', 'origin of abortion')",origin of abortion rights,origin of abortion,10,4,google,2026-03-12 20:01:26.246663,abortion meaning in greek,origin of abortion,rights,rights +abortion,"('abortion in greek mythology', 'is abortion legal in greece')",abortion in greek mythology,is abortion legal in greece,1,4,google,2026-03-12 20:01:27.436760,abortion meaning in greek,abortion in greek,mythology,is legal greece +abortion,"('abortion in greek mythology', 'abortion in greek')",abortion in greek mythology,abortion in greek,2,4,google,2026-03-12 20:01:27.436760,abortion meaning in greek,abortion in greek,mythology,mythology +abortion,"('abortion in greek mythology', 'abortion in greek and roman times')",abortion in greek mythology,abortion in greek and roman times,3,4,google,2026-03-12 20:01:27.436760,abortion meaning in greek,abortion in greek,mythology,and roman times +abortion,"('abortion in greek mythology', 'abortion in ancient greece and rome')",abortion in greek mythology,abortion in ancient greece and rome,4,4,google,2026-03-12 20:01:27.436760,abortion meaning in greek,abortion in greek,mythology,ancient greece and rome +abortion,"('abortion in greek mythology', 'abortion in ancient greece')",abortion in greek mythology,abortion in ancient greece,5,4,google,2026-03-12 20:01:27.436760,abortion meaning in greek,abortion in greek,mythology,ancient greece +abortion,"('abortion in ancient greek', 'abortion in ancient greece')",abortion in ancient greek,abortion in ancient greece,1,4,google,2026-03-12 20:01:28.650521,abortion meaning in greek,abortion in greek,ancient,greece +abortion,"('abortion in ancient greek', 'abortion in ancient greece and rome')",abortion in ancient greek,abortion in ancient greece and rome,2,4,google,2026-03-12 20:01:28.650521,abortion meaning in greek,abortion in greek,ancient,greece and rome +abortion,"('abortion in ancient greek', 'is abortion legal in greece')",abortion in ancient greek,is abortion legal in greece,3,4,google,2026-03-12 20:01:28.650521,abortion meaning in greek,abortion in greek,ancient,is legal greece +abortion,"('abortion in ancient greek', 'history of abortion in ancient times')",abortion in ancient greek,history of abortion in ancient times,4,4,google,2026-03-12 20:01:28.650521,abortion meaning in greek,abortion in greek,ancient,history of times +abortion,"('abortion in ancient greek', 'abortion in ancient civilizations')",abortion in ancient greek,abortion in ancient civilizations,5,4,google,2026-03-12 20:01:28.650521,abortion meaning in greek,abortion in greek,ancient,civilizations +abortion,"('abortion greek word', 'abortion greek meaning')",abortion greek word,abortion greek meaning,1,4,google,2026-03-12 20:01:29.751857,abortion meaning in greek,abortion in greek,word,meaning +abortion,"('abortion greek word', 'is abortion legal in greece')",abortion greek word,is abortion legal in greece,2,4,google,2026-03-12 20:01:29.751857,abortion meaning in greek,abortion in greek,word,is legal in greece +abortion,"('abortion greek word', 'ancient greek word for abortion')",abortion greek word,ancient greek word for abortion,3,4,google,2026-03-12 20:01:29.751857,abortion meaning in greek,abortion in greek,word,ancient for +abortion,"('abortion greek word', 'abortion in greek')",abortion greek word,abortion in greek,4,4,google,2026-03-12 20:01:29.751857,abortion meaning in greek,abortion in greek,word,in +abortion,"('abortion greek word', 'abortion in greek and roman times')",abortion greek word,abortion in greek and roman times,5,4,google,2026-03-12 20:01:29.751857,abortion meaning in greek,abortion in greek,word,in and roman times +abortion,"('abortion greek word', 'greek abortion laws')",abortion greek word,greek abortion laws,6,4,google,2026-03-12 20:01:29.751857,abortion meaning in greek,abortion in greek,word,laws +abortion,"('abortion greek orthodox', 'greek orthodox abortion stance')",abortion greek orthodox,greek orthodox abortion stance,1,4,google,2026-03-12 20:01:30.639715,abortion meaning in greek,abortion in greek,orthodox,stance +abortion,"('abortion greek orthodox', 'greece abortion laws')",abortion greek orthodox,greece abortion laws,2,4,google,2026-03-12 20:01:30.639715,abortion meaning in greek,abortion in greek,orthodox,greece laws +abortion,"('abortion greek orthodox', 'is abortion legal in greece')",abortion greek orthodox,is abortion legal in greece,3,4,google,2026-03-12 20:01:30.639715,abortion meaning in greek,abortion in greek,orthodox,is legal in greece +abortion,"('abortion greek orthodox', 'can a non greek orthodox marry a greek orthodox')",abortion greek orthodox,can a non greek orthodox marry a greek orthodox,4,4,google,2026-03-12 20:01:30.639715,abortion meaning in greek,abortion in greek,orthodox,can a non marry a +abortion,"('abortion greek orthodox', 'what do greek orthodox believe about abortion')",abortion greek orthodox,what do greek orthodox believe about abortion,5,4,google,2026-03-12 20:01:30.639715,abortion meaning in greek,abortion in greek,orthodox,what do believe about +abortion,"('abortion greek orthodox', 'do greek orthodox allow abortion')",abortion greek orthodox,do greek orthodox allow abortion,6,4,google,2026-03-12 20:01:30.639715,abortion meaning in greek,abortion in greek,orthodox,do allow +abortion,"('abortion greek orthodox', 'abortion greek orthodox church')",abortion greek orthodox,abortion greek orthodox church,7,4,google,2026-03-12 20:01:30.639715,abortion meaning in greek,abortion in greek,orthodox,church +abortion,"('abortion greek translation', 'abortion greek definition')",abortion greek translation,abortion greek definition,1,4,google,2026-03-12 20:01:31.854075,abortion meaning in greek,abortion in greek,translation,definition +abortion,"('abortion greek translation', 'is abortion legal in greece')",abortion greek translation,is abortion legal in greece,2,4,google,2026-03-12 20:01:31.854075,abortion meaning in greek,abortion in greek,translation,is legal in greece +abortion,"('abortion greek translation', 'origin of abortion')",abortion greek translation,origin of abortion,3,4,google,2026-03-12 20:01:31.854075,abortion meaning in greek,abortion in greek,translation,origin of +abortion,"('abortion greek translation', 'abortion in greek')",abortion greek translation,abortion in greek,4,4,google,2026-03-12 20:01:31.854075,abortion meaning in greek,abortion in greek,translation,in +abortion,"('abortion greek translation', 'abortion in greek and roman times')",abortion greek translation,abortion in greek and roman times,5,4,google,2026-03-12 20:01:31.854075,abortion meaning in greek,abortion in greek,translation,in and roman times +abortion,"('abortion greek translation', 'greek word for abortion')",abortion greek translation,greek word for abortion,6,4,google,2026-03-12 20:01:31.854075,abortion meaning in greek,abortion in greek,translation,word for +abortion,"('abortion greek translation', 'ancient greek word for abortion')",abortion greek translation,ancient greek word for abortion,7,4,google,2026-03-12 20:01:31.854075,abortion meaning in greek,abortion in greek,translation,ancient word for +abortion,"('is abortion legal in greece', 'is abortion legal in greece for foreigners')",is abortion legal in greece,is abortion legal in greece for foreigners,1,4,google,2026-03-12 20:01:32.668878,abortion meaning in greek,abortion in greek,is legal greece,for foreigners +abortion,"('is abortion legal in greece', 'is abortion illegal in greece')",is abortion legal in greece,is abortion illegal in greece,2,4,google,2026-03-12 20:01:32.668878,abortion meaning in greek,abortion in greek,is legal greece,illegal +abortion,"('is abortion legal in greece', 'is abortion allowed in greece')",is abortion legal in greece,is abortion allowed in greece,3,4,google,2026-03-12 20:01:32.668878,abortion meaning in greek,abortion in greek,is legal greece,allowed +abortion,"('is abortion legal in greece', 'is abortion banned in greece')",is abortion legal in greece,is abortion banned in greece,4,4,google,2026-03-12 20:01:32.668878,abortion meaning in greek,abortion in greek,is legal greece,banned +abortion,"('is abortion legal in greece', 'is abortion pill legal in greece')",is abortion legal in greece,is abortion pill legal in greece,5,4,google,2026-03-12 20:01:32.668878,abortion meaning in greek,abortion in greek,is legal greece,pill +abortion,"('is abortion legal in greece', 'was abortion legal in ancient greece')",is abortion legal in greece,was abortion legal in ancient greece,6,4,google,2026-03-12 20:01:32.668878,abortion meaning in greek,abortion in greek,is legal greece,was ancient +abortion,"('is abortion legal in greece', 'abortion law in greece')",is abortion legal in greece,abortion law in greece,7,4,google,2026-03-12 20:01:32.668878,abortion meaning in greek,abortion in greek,is legal greece,law +abortion,"('is abortion legal in greece', 'is abortion legal in europe')",is abortion legal in greece,is abortion legal in europe,8,4,google,2026-03-12 20:01:32.668878,abortion meaning in greek,abortion in greek,is legal greece,europe +abortion,"('abortion law greece', 'abortion legal greece')",abortion law greece,abortion legal greece,1,4,google,2026-03-12 20:01:33.585737,abortion meaning in greek,abortion in greek,law greece,legal +abortion,"('abortion law greece', 'abortion law by country')",abortion law greece,abortion law by country,2,4,google,2026-03-12 20:01:33.585737,abortion meaning in greek,abortion in greek,law greece,by country +abortion,"('abortion law greece', 'abortion rights greece')",abortion law greece,abortion rights greece,3,4,google,2026-03-12 20:01:33.585737,abortion meaning in greek,abortion in greek,law greece,rights +abortion,"('abortion in greek and roman times pdf', 'abortion in greek and roman times pdf free download')",abortion in greek and roman times pdf,abortion in greek and roman times pdf free download,1,4,google,2026-03-12 20:01:34.904949,abortion meaning in greek,abortion in greek and roman times,pdf,free download +abortion,"('abortion in greek and roman times pdf', 'abortion in greek and roman times pdf free')",abortion in greek and roman times pdf,abortion in greek and roman times pdf free,2,4,google,2026-03-12 20:01:34.904949,abortion meaning in greek,abortion in greek and roman times,pdf,free +abortion,"('abortion in greek and roman times pdf', 'abortion in greek and roman times pdf download')",abortion in greek and roman times pdf,abortion in greek and roman times pdf download,3,4,google,2026-03-12 20:01:34.904949,abortion meaning in greek,abortion in greek and roman times,pdf,download +abortion,"('abortion in greek and roman times pdf', 'abortion in greek and roman times pdf online')",abortion in greek and roman times pdf,abortion in greek and roman times pdf online,4,4,google,2026-03-12 20:01:34.904949,abortion meaning in greek,abortion in greek and roman times,pdf,online +abortion,"('abortion in greek and roman times pdf', 'abortion in greek and roman times pdf book')",abortion in greek and roman times pdf,abortion in greek and roman times pdf book,5,4,google,2026-03-12 20:01:34.904949,abortion meaning in greek,abortion in greek and roman times,pdf,book +abortion,"('abortion in greek and roman times book', 'abortion in greek and roman times books')",abortion in greek and roman times book,abortion in greek and roman times books,1,4,google,2026-03-12 20:01:35.859077,abortion meaning in greek,abortion in greek and roman times,book,books +abortion,"('abortion in greek and roman times book', 'abortion in greek and roman times book review')",abortion in greek and roman times book,abortion in greek and roman times book review,2,4,google,2026-03-12 20:01:35.859077,abortion meaning in greek,abortion in greek and roman times,book,review +abortion,"('abortion in greek and roman times book', 'abortion in greek and roman times book pdf')",abortion in greek and roman times book,abortion in greek and roman times book pdf,3,4,google,2026-03-12 20:01:35.859077,abortion meaning in greek,abortion in greek and roman times,book,pdf +abortion,"('abortion in greek and roman times book', 'abortion in greek and roman times book summary')",abortion in greek and roman times book,abortion in greek and roman times book summary,4,4,google,2026-03-12 20:01:35.859077,abortion meaning in greek,abortion in greek and roman times,book,summary +abortion,"('abortion in greek and roman times book', 'abortion in greek and roman times book 1')",abortion in greek and roman times book,abortion in greek and roman times book 1,5,4,google,2026-03-12 20:01:35.859077,abortion meaning in greek,abortion in greek and roman times,book,1 +abortion,"('abortion in greek and roman times book', 'abortion in greek and roman times book list')",abortion in greek and roman times book,abortion in greek and roman times book list,6,4,google,2026-03-12 20:01:35.859077,abortion meaning in greek,abortion in greek and roman times,book,list +abortion,"('is abortion a swear word', 'is abortion a bad word')",is abortion a swear word,is abortion a bad word,1,4,google,2026-03-12 20:01:37.119892,abortion meaning dictionary,is abortion a bad word,swear,bad +abortion,"('is abortion a swear word', 'when was abortion abolished')",is abortion a swear word,when was abortion abolished,2,4,google,2026-03-12 20:01:37.119892,abortion meaning dictionary,is abortion a bad word,swear,when was abolished +abortion,"('is abortion a swear word', 'is abortion a noun')",is abortion a swear word,is abortion a noun,3,4,google,2026-03-12 20:01:37.119892,abortion meaning dictionary,is abortion a bad word,swear,noun +abortion,"('is abortion a swear word', 'is abortion a verb')",is abortion a swear word,is abortion a verb,4,4,google,2026-03-12 20:01:37.119892,abortion meaning dictionary,is abortion a bad word,swear,verb +abortion,"('is abortion a swear word', 'is saying a swear word a sin')",is abortion a swear word,is saying a swear word a sin,5,4,google,2026-03-12 20:01:37.119892,abortion meaning dictionary,is abortion a bad word,swear,saying sin +abortion,"('is abortion a swear word', 'is swear words a sin')",is abortion a swear word,is swear words a sin,6,4,google,2026-03-12 20:01:37.119892,abortion meaning dictionary,is abortion a bad word,swear,words sin +abortion,"('is abortion a swear word', 'is swear a swear word')",is abortion a swear word,is swear a swear word,7,4,google,2026-03-12 20:01:37.119892,abortion meaning dictionary,is abortion a bad word,swear,swear +abortion,"('what does abortion ban mean', 'what does total abortion ban mean')",what does abortion ban mean,what does total abortion ban mean,1,4,google,2026-03-12 20:01:38.051792,abortion meaning dictionary,is abortion a bad word,what does ban mean,total +abortion,"('what does abortion ban mean', 'what does federal abortion ban mean')",what does abortion ban mean,what does federal abortion ban mean,2,4,google,2026-03-12 20:01:38.051792,abortion meaning dictionary,is abortion a bad word,what does ban mean,federal +abortion,"('what does abortion ban mean', 'what does abortion ban blocked mean')",what does abortion ban mean,what does abortion ban blocked mean,3,4,google,2026-03-12 20:01:38.051792,abortion meaning dictionary,is abortion a bad word,what does ban mean,blocked +abortion,"('what does abortion ban mean', 'what does full abortion ban mean')",what does abortion ban mean,what does full abortion ban mean,4,4,google,2026-03-12 20:01:38.051792,abortion meaning dictionary,is abortion a bad word,what does ban mean,full +abortion,"('what does abortion ban mean', 'what does no abortion ban mean')",what does abortion ban mean,what does no abortion ban mean,5,4,google,2026-03-12 20:01:38.051792,abortion meaning dictionary,is abortion a bad word,what does ban mean,no +abortion,"('what does abortion ban mean', 'what does 6 week abortion ban mean')",what does abortion ban mean,what does 6 week abortion ban mean,6,4,google,2026-03-12 20:01:38.051792,abortion meaning dictionary,is abortion a bad word,what does ban mean,6 week +abortion,"('what does abortion ban mean', 'what does new abortion law mean')",what does abortion ban mean,what does new abortion law mean,7,4,google,2026-03-12 20:01:38.051792,abortion meaning dictionary,is abortion a bad word,what does ban mean,new law +abortion,"('what does abortion ban mean', 'what would federal abortion ban mean')",what does abortion ban mean,what would federal abortion ban mean,8,4,google,2026-03-12 20:01:38.051792,abortion meaning dictionary,is abortion a bad word,what does ban mean,would federal +abortion,"('what does abortion ban mean', 'what does a total abortion ban mean in the us')",what does abortion ban mean,what does a total abortion ban mean in the us,9,4,google,2026-03-12 20:01:38.051792,abortion meaning dictionary,is abortion a bad word,what does ban mean,a total in the us +abortion,"('is abortion a bad choice', 'is abortion a bad idea')",is abortion a bad choice,is abortion a bad idea,1,4,google,2026-03-12 20:01:38.900621,abortion meaning dictionary,is abortion a bad word,choice,idea +abortion,"('is abortion a bad choice', 'is abortion wrong')",is abortion a bad choice,is abortion wrong,2,4,google,2026-03-12 20:01:38.900621,abortion meaning dictionary,is abortion a bad word,choice,wrong +abortion,"('is abortion a bad choice', 'what is the safest type of abortion')",is abortion a bad choice,what is the safest type of abortion,3,4,google,2026-03-12 20:01:38.900621,abortion meaning dictionary,is abortion a bad word,choice,what the safest type of +abortion,"('is abortion a bad choice', 'is abortion wrong or right')",is abortion a bad choice,is abortion wrong or right,4,4,google,2026-03-12 20:01:38.900621,abortion meaning dictionary,is abortion a bad word,choice,wrong or right +abortion,"('is abortion a bad choice', 'is abortion a choice')",is abortion a bad choice,is abortion a choice,5,4,google,2026-03-12 20:01:38.900621,abortion meaning dictionary,is abortion a bad word,choice,choice +abortion,"('is abortion a bad choice', 'is abortion a good choice')",is abortion a bad choice,is abortion a good choice,6,4,google,2026-03-12 20:01:38.900621,abortion meaning dictionary,is abortion a bad word,choice,good +abortion,"('is abortion a verb', 'is abortion a verb or noun')",is abortion a verb,is abortion a verb or noun,1,4,google,2026-03-12 20:01:40.396037,abortion meaning dictionary,is abortion a bad word,verb,or noun +abortion,"('is abortion a verb', 'is abortion a bad word')",is abortion a verb,is abortion a bad word,2,4,google,2026-03-12 20:01:40.396037,abortion meaning dictionary,is abortion a bad word,verb,bad word +abortion,"('is abortion a verb', 'is abortion federal or state')",is abortion a verb,is abortion federal or state,3,4,google,2026-03-12 20:01:40.396037,abortion meaning dictionary,is abortion a bad word,verb,federal or state +abortion,"('is abortion a verb', 'what is classified as an abortion')",is abortion a verb,what is classified as an abortion,4,4,google,2026-03-12 20:01:40.396037,abortion meaning dictionary,is abortion a bad word,verb,what classified as an +abortion,"('is abortion a verb', 'is abortion a valence issue')",is abortion a verb,is abortion a valence issue,5,4,google,2026-03-12 20:01:40.396037,abortion meaning dictionary,is abortion a bad word,verb,valence issue +abortion,"('is abortion a verb', 'is abortion a violent procedure')",is abortion a verb,is abortion a violent procedure,6,4,google,2026-03-12 20:01:40.396037,abortion meaning dictionary,is abortion a bad word,verb,violent procedure +abortion,"('is abortion a verb', 'is abortion a noun')",is abortion a verb,is abortion a noun,7,4,google,2026-03-12 20:01:40.396037,abortion meaning dictionary,is abortion a bad word,verb,noun +abortion,"('is a bad word bad', 'is baddie a bad word')",is a bad word bad,is baddie a bad word,1,4,google,2026-03-12 20:01:41.840800,abortion meaning dictionary,is abortion a bad word,is a bad word,baddie +abortion,"('is a bad word bad', 'is it bad to say a bad word')",is a bad word bad,is it bad to say a bad word,2,4,google,2026-03-12 20:01:41.840800,abortion meaning dictionary,is abortion a bad word,is a bad word,it to say +abortion,"('is a bad word bad', 'why are bad words considered bad')",is a bad word bad,why are bad words considered bad,3,4,google,2026-03-12 20:01:41.840800,abortion meaning dictionary,is abortion a bad word,is a bad word,why are words considered +abortion,"('is a bad word bad', 'why are swear words considered bad')",is a bad word bad,why are swear words considered bad,4,4,google,2026-03-12 20:01:41.840800,abortion meaning dictionary,is abortion a bad word,is a bad word,why are swear words considered +abortion,"('is a bad word bad', 'are bad words really bad')",is a bad word bad,are bad words really bad,5,4,google,2026-03-12 20:01:41.840800,abortion meaning dictionary,is abortion a bad word,is a bad word,are words really +abortion,"('is a bad word bad', 'why are curse words considered bad')",is a bad word bad,why are curse words considered bad,6,4,google,2026-03-12 20:01:41.840800,abortion meaning dictionary,is abortion a bad word,is a bad word,why are curse words considered +abortion,"('is a bad word bad', 'is a bad word')",is a bad word bad,is a bad word,7,4,google,2026-03-12 20:01:41.840800,abortion meaning dictionary,is abortion a bad word,is a bad word,is a bad word +abortion,"('is a bad word bad', 'is bad word a bad word')",is a bad word bad,is bad word a bad word,8,4,google,2026-03-12 20:01:41.840800,abortion meaning dictionary,is abortion a bad word,is a bad word,is a bad word +abortion,"('is a bad word bad', 'is a bad word song')",is a bad word bad,is a bad word song,9,4,google,2026-03-12 20:01:41.840800,abortion meaning dictionary,is abortion a bad word,is a bad word,song +abortion,"('what is the meaning of miscarriage in english', 'what is the meaning of abortion in english')",what is the meaning of miscarriage in english,what is the meaning of abortion in english,1,4,google,2026-03-12 20:01:43.111174,abortion meaning dictionary,what is the meaning of abortion in english,miscarriage,abortion +abortion,"('what is the meaning of miscarriage in english', 'what is mean by miscarriage')",what is the meaning of miscarriage in english,what is mean by miscarriage,2,4,google,2026-03-12 20:01:43.111174,abortion meaning dictionary,what is the meaning of abortion in english,miscarriage,mean by +abortion,"('what is the meaning of miscarriage in english', 'what does the word miscarriage mean')",what is the meaning of miscarriage in english,what does the word miscarriage mean,3,4,google,2026-03-12 20:01:43.111174,abortion meaning dictionary,what is the meaning of abortion in english,miscarriage,does word mean +abortion,"('what is the meaning of miscarriage in english', 'meaning of miscarriage in a dream')",what is the meaning of miscarriage in english,meaning of miscarriage in a dream,4,4,google,2026-03-12 20:01:43.111174,abortion meaning dictionary,what is the meaning of abortion in english,miscarriage,a dream +abortion,"('what is the meaning of miscarriage in english', 'what is the medical definition of a miscarriage')",what is the meaning of miscarriage in english,what is the medical definition of a miscarriage,5,4,google,2026-03-12 20:01:43.111174,abortion meaning dictionary,what is the meaning of abortion in english,miscarriage,medical definition a +abortion,"('what is the meaning of miscarriage in english', 'miscarriage meaning in simple words')",what is the meaning of miscarriage in english,miscarriage meaning in simple words,6,4,google,2026-03-12 20:01:43.111174,abortion meaning dictionary,what is the meaning of abortion in english,miscarriage,simple words +abortion,"('what is the meaning of miscarriage in english', 'miscarriage in english')",what is the meaning of miscarriage in english,miscarriage in english,7,4,google,2026-03-12 20:01:43.111174,abortion meaning dictionary,what is the meaning of abortion in english,miscarriage,miscarriage +abortion,"('what the meaning of abortion', 'what is the meaning of abortion in hindi')",what the meaning of abortion,what is the meaning of abortion in hindi,1,4,google,2026-03-12 20:01:44.541253,abortion meaning dictionary,what is the meaning of abortion in english,what is the of in english,is in hindi +abortion,"('what the meaning of abortion', 'what is the meaning of abortion in pregnancy')",what the meaning of abortion,what is the meaning of abortion in pregnancy,2,4,google,2026-03-12 20:01:44.541253,abortion meaning dictionary,what is the meaning of abortion in english,what is the of in english,is in pregnancy +abortion,"('what the meaning of abortion', 'what is the meaning of abortion in english')",what the meaning of abortion,what is the meaning of abortion in english,3,4,google,2026-03-12 20:01:44.541253,abortion meaning dictionary,what is the meaning of abortion in english,what is the of in english,is in english +abortion,"('what the meaning of abortion', ""what's the meaning of missed abortion"")",what the meaning of abortion,what's the meaning of missed abortion,4,4,google,2026-03-12 20:01:44.541253,abortion meaning dictionary,what is the meaning of abortion in english,what is the of in english,what's missed +abortion,"('what the meaning of abortion', ""what's the meaning of threatened abortion"")",what the meaning of abortion,what's the meaning of threatened abortion,5,4,google,2026-03-12 20:01:44.541253,abortion meaning dictionary,what is the meaning of abortion in english,what is the of in english,what's threatened +abortion,"('what the meaning of abortion', ""what's the meaning of incomplete abortion"")",what the meaning of abortion,what's the meaning of incomplete abortion,6,4,google,2026-03-12 20:01:44.541253,abortion meaning dictionary,what is the meaning of abortion in english,what is the of in english,what's incomplete +abortion,"('what the meaning of abortion', 'what is the meaning of abortion pill')",what the meaning of abortion,what is the meaning of abortion pill,7,4,google,2026-03-12 20:01:44.541253,abortion meaning dictionary,what is the meaning of abortion in english,what is the of in english,is pill +abortion,"('what the meaning of abortion', 'what is the meaning of abortion in hausa')",what the meaning of abortion,what is the meaning of abortion in hausa,8,4,google,2026-03-12 20:01:44.541253,abortion meaning dictionary,what is the meaning of abortion in english,what is the of in english,is in hausa +abortion,"('what the meaning of abortion', ""what's the meaning of spontaneous abortion"")",what the meaning of abortion,what's the meaning of spontaneous abortion,9,4,google,2026-03-12 20:01:44.541253,abortion meaning dictionary,what is the meaning of abortion in english,what is the of in english,what's spontaneous +abortion,"('what is the meaning of the word abortion', 'what is the origin of the word abortion')",what is the meaning of the word abortion,what is the origin of the word abortion,1,4,google,2026-03-12 20:01:45.876270,abortion meaning dictionary,what is the meaning of abortion in english,word,origin +abortion,"('what is the meaning of the word abortion', 'what is the meaning of the word miscarriage')",what is the meaning of the word abortion,what is the meaning of the word miscarriage,2,4,google,2026-03-12 20:01:45.876270,abortion meaning dictionary,what is the meaning of abortion in english,word,miscarriage +abortion,"('what is the meaning of the word abortion', 'what is the origin of the word miscarriage')",what is the meaning of the word abortion,what is the origin of the word miscarriage,3,4,google,2026-03-12 20:01:45.876270,abortion meaning dictionary,what is the meaning of abortion in english,word,origin miscarriage +abortion,"('what is the meaning of the word abortion', 'what is the meaning of abortion in one word')",what is the meaning of the word abortion,what is the meaning of abortion in one word,4,4,google,2026-03-12 20:01:45.876270,abortion meaning dictionary,what is the meaning of abortion in english,word,in one +abortion,"('what is the meaning of the word abortion', 'what does the word abortion mean')",what is the meaning of the word abortion,what does the word abortion mean,5,4,google,2026-03-12 20:01:45.876270,abortion meaning dictionary,what is the meaning of abortion in english,word,does mean +abortion,"('what is the meaning of the word abortion', 'what is the definition of the word abortion')",what is the meaning of the word abortion,what is the definition of the word abortion,6,4,google,2026-03-12 20:01:45.876270,abortion meaning dictionary,what is the meaning of abortion in english,word,definition +abortion,"('what is the meaning of the word abortion', 'what is the meaning of the word abomination')",what is the meaning of the word abortion,what is the meaning of the word abomination,7,4,google,2026-03-12 20:01:45.876270,abortion meaning dictionary,what is the meaning of abortion in english,word,abomination +abortion,"('what is the meaning of the word abortion', 'what is the meaning of the word abolition')",what is the meaning of the word abortion,what is the meaning of the word abolition,8,4,google,2026-03-12 20:01:45.876270,abortion meaning dictionary,what is the meaning of abortion in english,word,abolition +abortion,"('what is the definition of the word abortion', 'what is the meaning of the word miscarriage')",what is the definition of the word abortion,what is the meaning of the word miscarriage,1,4,google,2026-03-12 20:01:47.245517,abortion meaning dictionary,what is the meaning of abortion in english,definition word,meaning miscarriage +abortion,"('what is the definition of the word abortion', 'what does the word abortion mean')",what is the definition of the word abortion,what does the word abortion mean,2,4,google,2026-03-12 20:01:47.245517,abortion meaning dictionary,what is the meaning of abortion in english,definition word,does mean +abortion,"('what is the definition of the word abortion', 'what is the meaning of the word abortion')",what is the definition of the word abortion,what is the meaning of the word abortion,3,4,google,2026-03-12 20:01:47.245517,abortion meaning dictionary,what is the meaning of abortion in english,definition word,meaning +abortion,"('what is the definition of the word abortion', 'what is the definition of the word abomination')",what is the definition of the word abortion,what is the definition of the word abomination,4,4,google,2026-03-12 20:01:47.245517,abortion meaning dictionary,what is the meaning of abortion in english,definition word,abomination +abortion,"('what is the definition of the word abortion', 'what is the definition of the word abolition')",what is the definition of the word abortion,what is the definition of the word abolition,5,4,google,2026-03-12 20:01:47.245517,abortion meaning dictionary,what is the meaning of abortion in english,definition word,abolition +abortion,"('what is the definition of the word abortion', 'what is the definition of the word abolitionist')",what is the definition of the word abortion,what is the definition of the word abolitionist,6,4,google,2026-03-12 20:01:47.245517,abortion meaning dictionary,what is the meaning of abortion in english,definition word,abolitionist +abortion,"('miscarriage definition dictionary', 'abortion definition dictionary')",miscarriage definition dictionary,abortion definition dictionary,1,4,google,2026-03-12 20:01:48.306858,abortion meaning dictionary,abortion dictionary definition,miscarriage,abortion +abortion,"('miscarriage definition dictionary', 'what does the word miscarriage mean')",miscarriage definition dictionary,what does the word miscarriage mean,2,4,google,2026-03-12 20:01:48.306858,abortion meaning dictionary,abortion dictionary definition,miscarriage,what does the word mean +abortion,"('miscarriage definition dictionary', 'what is mean by miscarriage')",miscarriage definition dictionary,what is mean by miscarriage,3,4,google,2026-03-12 20:01:48.306858,abortion meaning dictionary,abortion dictionary definition,miscarriage,what is mean by +abortion,"('miscarriage definition dictionary', 'what does a miscarriage mean in the bible')",miscarriage definition dictionary,what does a miscarriage mean in the bible,4,4,google,2026-03-12 20:01:48.306858,abortion meaning dictionary,abortion dictionary definition,miscarriage,what does a mean in the bible +abortion,"('miscarriage definition dictionary', 'how do doctors determine a miscarriage')",miscarriage definition dictionary,how do doctors determine a miscarriage,5,4,google,2026-03-12 20:01:48.306858,abortion meaning dictionary,abortion dictionary definition,miscarriage,how do doctors determine a +abortion,"('miscarriage definition dictionary', 'miscarriage definition merriam webster')",miscarriage definition dictionary,miscarriage definition merriam webster,6,4,google,2026-03-12 20:01:48.306858,abortion meaning dictionary,abortion dictionary definition,miscarriage,merriam webster +abortion,"('miscarriage definition dictionary', 'miscarriage definition medical')",miscarriage definition dictionary,miscarriage definition medical,7,4,google,2026-03-12 20:01:48.306858,abortion meaning dictionary,abortion dictionary definition,miscarriage,medical +abortion,"('miscarriage definition dictionary', 'miscarriage dictionary')",miscarriage definition dictionary,miscarriage dictionary,8,4,google,2026-03-12 20:01:48.306858,abortion meaning dictionary,abortion dictionary definition,miscarriage,miscarriage +abortion,"('miscarriage definition dictionary', 'miscarriage definition pregnancy')",miscarriage definition dictionary,miscarriage definition pregnancy,9,4,google,2026-03-12 20:01:48.306858,abortion meaning dictionary,abortion dictionary definition,miscarriage,pregnancy +abortion,"('oxford dictionary abortion definition', 'abortion definition oxford')",oxford dictionary abortion definition,abortion definition oxford,1,4,google,2026-03-12 20:01:49.226510,abortion meaning dictionary,abortion dictionary definition,oxford,oxford +abortion,"('oxford dictionary abortion definition', 'oxford dictionary abortion')",oxford dictionary abortion definition,oxford dictionary abortion,2,4,google,2026-03-12 20:01:49.226510,abortion meaning dictionary,abortion dictionary definition,oxford,oxford +abortion,"('abortion dictionary', 'abortion dictionary definition')",abortion dictionary,abortion dictionary definition,1,4,google,2026-03-12 20:01:50.417735,abortion meaning dictionary,abortion dictionary definition,definition,definition +abortion,"('abortion dictionary', 'abortion oxford dictionary')",abortion dictionary,abortion oxford dictionary,2,4,google,2026-03-12 20:01:50.417735,abortion meaning dictionary,abortion dictionary definition,definition,oxford +abortion,"('abortion dictionary', ""abortion webster's dictionary"")",abortion dictionary,abortion webster's dictionary,3,4,google,2026-03-12 20:01:50.417735,abortion meaning dictionary,abortion dictionary definition,definition,webster's +abortion,"('abortion dictionary', 'abortion cambridge dictionary')",abortion dictionary,abortion cambridge dictionary,4,4,google,2026-03-12 20:01:50.417735,abortion meaning dictionary,abortion dictionary definition,definition,cambridge +abortion,"('abortion dictionary', 'abortion medical dictionary')",abortion dictionary,abortion medical dictionary,5,4,google,2026-03-12 20:01:50.417735,abortion meaning dictionary,abortion dictionary definition,definition,medical +abortion,"('abortion dictionary', 'abortion definition oxford dictionary')",abortion dictionary,abortion definition oxford dictionary,6,4,google,2026-03-12 20:01:50.417735,abortion meaning dictionary,abortion dictionary definition,definition,definition oxford +abortion,"('abortion dictionary', 'dream dictionary abortion')",abortion dictionary,dream dictionary abortion,7,4,google,2026-03-12 20:01:50.417735,abortion meaning dictionary,abortion dictionary definition,definition,dream +abortion,"('abortion dictionary', 'abortion definition webster dictionary')",abortion dictionary,abortion definition webster dictionary,8,4,google,2026-03-12 20:01:50.417735,abortion meaning dictionary,abortion dictionary definition,definition,definition webster +abortion,"('abortion dictionary', 'abortion dictionary meaning')",abortion dictionary,abortion dictionary meaning,9,4,google,2026-03-12 20:01:50.417735,abortion meaning dictionary,abortion dictionary definition,definition,meaning +abortion,"('abortion medical terminology', 'miscarriage medical terminology')",abortion medical terminology,miscarriage medical terminology,1,4,google,2026-03-12 20:01:51.596101,abortion meaning dictionary,abortion medical dictionary,terminology,miscarriage +abortion,"('abortion medical terminology', 'abortion medical term')",abortion medical terminology,abortion medical term,2,4,google,2026-03-12 20:01:51.596101,abortion meaning dictionary,abortion medical dictionary,terminology,term +abortion,"('abortion medical terminology', 'abortion medical term name')",abortion medical terminology,abortion medical term name,3,4,google,2026-03-12 20:01:51.596101,abortion meaning dictionary,abortion medical dictionary,terminology,term name +abortion,"('abortion medical terminology', 'abortion medical term ppt')",abortion medical terminology,abortion medical term ppt,4,4,google,2026-03-12 20:01:51.596101,abortion meaning dictionary,abortion medical dictionary,terminology,term ppt +abortion,"('abortion medical terminology', 'abortion medical term pdf')",abortion medical terminology,abortion medical term pdf,5,4,google,2026-03-12 20:01:51.596101,abortion meaning dictionary,abortion medical dictionary,terminology,term pdf +abortion,"('abortion medical terminology', 'abortion medical definition')",abortion medical terminology,abortion medical definition,6,4,google,2026-03-12 20:01:51.596101,abortion meaning dictionary,abortion medical dictionary,terminology,definition +abortion,"('abortion medical terminology', 'abortion medical definition according to who')",abortion medical terminology,abortion medical definition according to who,7,4,google,2026-03-12 20:01:51.596101,abortion meaning dictionary,abortion medical dictionary,terminology,definition according to who +abortion,"('abortion medical terminology', 'abortion medical definition acog')",abortion medical terminology,abortion medical definition acog,8,4,google,2026-03-12 20:01:51.596101,abortion meaning dictionary,abortion medical dictionary,terminology,definition acog +abortion,"('abortion medical terminology', 'abortion medical dictionary')",abortion medical terminology,abortion medical dictionary,9,4,google,2026-03-12 20:01:51.596101,abortion meaning dictionary,abortion medical dictionary,terminology,dictionary +abortion,"('abortion table name', 'abortion table name in tamil')",abortion table name,abortion table name in tamil,1,4,google,2026-03-12 20:01:52.766769,abortion meaning dictionary,abortion medical dictionary,table name,in tamil +abortion,"('abortion table name', 'abortion table name photo')",abortion table name,abortion table name photo,2,4,google,2026-03-12 20:01:52.766769,abortion meaning dictionary,abortion medical dictionary,table name,photo +abortion,"('abortion table name', 'abortion table name malayalam')",abortion table name,abortion table name malayalam,3,4,google,2026-03-12 20:01:52.766769,abortion meaning dictionary,abortion medical dictionary,table name,malayalam +abortion,"('abortion table name', 'abortion table name in india')",abortion table name,abortion table name in india,4,4,google,2026-03-12 20:01:52.766769,abortion meaning dictionary,abortion medical dictionary,table name,in india +abortion,"('abortion table name', 'abortion table name for 2 months')",abortion table name,abortion table name for 2 months,5,4,google,2026-03-12 20:01:52.766769,abortion meaning dictionary,abortion medical dictionary,table name,for 2 months +abortion,"('abortion table name', 'abortion table name in kannada')",abortion table name,abortion table name in kannada,6,4,google,2026-03-12 20:01:52.766769,abortion meaning dictionary,abortion medical dictionary,table name,in kannada +abortion,"('abortion table name', 'abortion table name in pakistan')",abortion table name,abortion table name in pakistan,7,4,google,2026-03-12 20:01:52.766769,abortion meaning dictionary,abortion medical dictionary,table name,in pakistan +abortion,"('abortion table name', 'types of abortion table')",abortion table name,types of abortion table,8,4,google,2026-03-12 20:01:52.766769,abortion meaning dictionary,abortion medical dictionary,table name,types of +abortion,"('abortion table name', 'abortion pills images and names')",abortion table name,abortion pills images and names,9,4,google,2026-03-12 20:01:52.766769,abortion meaning dictionary,abortion medical dictionary,table name,pills images and names +abortion,"('abortion medical definition', 'abortion medical definition according to who')",abortion medical definition,abortion medical definition according to who,1,4,google,2026-03-12 20:01:53.642554,abortion meaning dictionary,abortion medical dictionary,definition,according to who +abortion,"('abortion medical definition', 'abortion medical definition acog')",abortion medical definition,abortion medical definition acog,2,4,google,2026-03-12 20:01:53.642554,abortion meaning dictionary,abortion medical dictionary,definition,acog +abortion,"('abortion medical definition', 'medical abortion definition weeks')",abortion medical definition,medical abortion definition weeks,3,4,google,2026-03-12 20:01:53.642554,abortion meaning dictionary,abortion medical dictionary,definition,weeks +abortion,"('abortion medical definition', 'medical abortion definition and types')",abortion medical definition,medical abortion definition and types,4,4,google,2026-03-12 20:01:53.642554,abortion meaning dictionary,abortion medical dictionary,definition,and types +abortion,"('abortion medical definition', 'medical abortion definition in hindi')",abortion medical definition,medical abortion definition in hindi,5,4,google,2026-03-12 20:01:53.642554,abortion meaning dictionary,abortion medical dictionary,definition,in hindi +abortion,"('abortion medical definition', 'medical abortion definition pdf')",abortion medical definition,medical abortion definition pdf,6,4,google,2026-03-12 20:01:53.642554,abortion meaning dictionary,abortion medical dictionary,definition,pdf +abortion,"('abortion medical definition', 'miscarriage medical definition')",abortion medical definition,miscarriage medical definition,7,4,google,2026-03-12 20:01:53.642554,abortion meaning dictionary,abortion medical dictionary,definition,miscarriage +abortion,"('abortion medical definition', 'abortion medical term')",abortion medical definition,abortion medical term,8,4,google,2026-03-12 20:01:53.642554,abortion meaning dictionary,abortion medical dictionary,definition,term +abortion,"('abortion medical definition', 'abortion medical terminology')",abortion medical definition,abortion medical terminology,9,4,google,2026-03-12 20:01:53.642554,abortion meaning dictionary,abortion medical dictionary,definition,terminology +abortion,"('new california abortion laws 2025 update', 'new california abortion laws 2025 update today')",new california abortion laws 2025 update,new california abortion laws 2025 update today,1,4,google,2026-03-12 20:01:54.912453,abortion laws in california 2025,new abortion law in california 2025,laws update,today +abortion,"('new california abortion laws 2025 update', 'new abortion laws in california')",new california abortion laws 2025 update,new abortion laws in california,2,4,google,2026-03-12 20:01:54.912453,abortion laws in california 2025,new abortion law in california 2025,laws update,in +abortion,"('new california abortion laws 2025 update', 'new california abortion laws 2021')",new california abortion laws 2025 update,new california abortion laws 2021,3,4,google,2026-03-12 20:01:54.912453,abortion laws in california 2025,new abortion law in california 2025,laws update,2021 +abortion,"('new california abortion laws 2025 update today', 'new abortion laws in california')",new california abortion laws 2025 update today,new abortion laws in california,1,4,google,2026-03-12 20:01:55.942089,abortion laws in california 2025,new abortion law in california 2025,laws update today,in +abortion,"('new california abortion laws 2025 update today', 'new law passed in california today')",new california abortion laws 2025 update today,new law passed in california today,2,4,google,2026-03-12 20:01:55.942089,abortion laws in california 2025,new abortion law in california 2025,laws update today,law passed in +abortion,"('new california abortion laws 2025 update today', 'new california abortion laws 2021')",new california abortion laws 2025 update today,new california abortion laws 2021,3,4,google,2026-03-12 20:01:55.942089,abortion laws in california 2025,new abortion law in california 2025,laws update today,2021 +abortion,"('new abortion laws in california', 'new abortion laws in california 2024 update')",new abortion laws in california,new abortion laws in california 2024 update,1,4,google,2026-03-12 20:01:56.872421,abortion laws in california 2025,new abortion law in california 2025,laws,2024 update +abortion,"('new abortion laws in california', 'new abortion law in california 2024')",new abortion laws in california,new abortion law in california 2024,2,4,google,2026-03-12 20:01:56.872421,abortion laws in california 2025,new abortion law in california 2025,laws,law 2024 +abortion,"('new abortion laws in california', 'new abortion law in california 2025')",new abortion laws in california,new abortion law in california 2025,3,4,google,2026-03-12 20:01:56.872421,abortion laws in california 2025,new abortion law in california 2025,laws,law 2025 +abortion,"('new abortion laws in california', 'new abortion law in california 2023')",new abortion laws in california,new abortion law in california 2023,4,4,google,2026-03-12 20:01:56.872421,abortion laws in california 2025,new abortion law in california 2025,laws,law 2023 +abortion,"('new abortion laws in california', 'new abortion law in california 2023 overturned')",new abortion laws in california,new abortion law in california 2023 overturned,5,4,google,2026-03-12 20:01:56.872421,abortion laws in california 2025,new abortion law in california 2025,laws,law 2023 overturned +abortion,"('new abortion laws in california', 'latest legal abortion in california')",new abortion laws in california,latest legal abortion in california,6,4,google,2026-03-12 20:01:56.872421,abortion laws in california 2025,new abortion law in california 2025,laws,latest legal +abortion,"('new abortion laws in california', 'abortion laws in california')",new abortion laws in california,abortion laws in california,7,4,google,2026-03-12 20:01:56.872421,abortion laws in california 2025,new abortion law in california 2025,laws,laws +abortion,"('new abortion laws in california', 'abortion laws in california 2025')",new abortion laws in california,abortion laws in california 2025,8,4,google,2026-03-12 20:01:56.872421,abortion laws in california 2025,new abortion law in california 2025,laws,2025 +abortion,"('new abortion laws in california', 'abortion laws in california 2024')",new abortion laws in california,abortion laws in california 2024,9,4,google,2026-03-12 20:01:56.872421,abortion laws in california 2025,new abortion law in california 2025,laws,2024 +abortion,"('new abortion law in california 2022', 'new abortion law in california 2022 california')",new abortion law in california 2022,new abortion law in california 2022 california,1,4,google,2026-03-12 20:01:57.983805,abortion laws in california 2025,new abortion law in california 2025,2022,2022 +abortion,"('new abortion law in california 2022', 'new abortion law in california 20224')",new abortion law in california 2022,new abortion law in california 20224,2,4,google,2026-03-12 20:01:57.983805,abortion laws in california 2025,new abortion law in california 2025,2022,20224 +abortion,"('new abortion law in california 2022', 'new abortion law in california 2022 update')",new abortion law in california 2022,new abortion law in california 2022 update,3,4,google,2026-03-12 20:01:57.983805,abortion laws in california 2025,new abortion law in california 2025,2022,update +abortion,"('new abortion law in california 2022', 'new abortion law in california 2022-2023')",new abortion law in california 2022,new abortion law in california 2022-2023,4,4,google,2026-03-12 20:01:57.983805,abortion laws in california 2025,new abortion law in california 2025,2022,2022-2023 +abortion,"('new abortion law in california 2022', 'new abortion law in california 2022 by state')",new abortion law in california 2022,new abortion law in california 2022 by state,5,4,google,2026-03-12 20:01:57.983805,abortion laws in california 2025,new abortion law in california 2025,2022,by state +abortion,"('new abortion laws 2021 california', 'new abortion laws 2021 california 2023')",new abortion laws 2021 california,new abortion laws 2021 california 2023,1,4,google,2026-03-12 20:01:59.403794,abortion laws in california 2025,new abortion law in california 2025,laws 2021,2023 +abortion,"('new abortion laws 2021 california', 'new abortion laws 2021 california law')",new abortion laws 2021 california,new abortion laws 2021 california law,2,4,google,2026-03-12 20:01:59.403794,abortion laws in california 2025,new abortion law in california 2025,laws 2021,law +abortion,"('new abortion laws 2021 california', 'new abortion laws 2021 california 2024')",new abortion laws 2021 california,new abortion laws 2021 california 2024,3,4,google,2026-03-12 20:01:59.403794,abortion laws in california 2025,new abortion law in california 2025,laws 2021,2024 +abortion,"('new abortion laws 2021 california', 'new abortion laws 2021 california 2021')",new abortion laws 2021 california,new abortion laws 2021 california 2021,4,4,google,2026-03-12 20:01:59.403794,abortion laws in california 2025,new abortion law in california 2025,laws 2021,laws 2021 +abortion,"('new abortion laws 2021 california', 'new abortion laws 2021 california update')",new abortion laws 2021 california,new abortion laws 2021 california update,5,4,google,2026-03-12 20:01:59.403794,abortion laws in california 2025,new abortion law in california 2025,laws 2021,update +abortion,"('new abortion laws 2021 california', 'new abortion laws 2021 california 2022')",new abortion laws 2021 california,new abortion laws 2021 california 2022,6,4,google,2026-03-12 20:01:59.403794,abortion laws in california 2025,new abortion law in california 2025,laws 2021,2022 +abortion,"('new abortion laws 2021 california', 'new abortion laws 2021 ca')",new abortion laws 2021 california,new abortion laws 2021 ca,7,4,google,2026-03-12 20:01:59.403794,abortion laws in california 2025,new abortion law in california 2025,laws 2021,ca +abortion,"('abortion laws in california 2021-2024', 'abortion laws in california 2023')",abortion laws in california 2021-2024,abortion laws in california 2023,1,4,google,2026-03-12 20:02:00.897662,abortion laws in california 2025,abortion laws in california 2021,2021-2024,2023 +abortion,"('abortion laws in california 2021-2024', 'abortion laws in california 2021')",abortion laws in california 2021-2024,abortion laws in california 2021,2,4,google,2026-03-12 20:02:00.897662,abortion laws in california 2025,abortion laws in california 2021,2021-2024,2021 +abortion,"('abortion laws in california 2021-2024', 'abortion laws in california 2022')",abortion laws in california 2021-2024,abortion laws in california 2022,3,4,google,2026-03-12 20:02:00.897662,abortion laws in california 2025,abortion laws in california 2021,2021-2024,2022 +abortion,"('abortion laws in california 2021 california', 'abortion laws in california 2021 california law')",abortion laws in california 2021 california,abortion laws in california 2021 california law,1,4,google,2026-03-12 20:02:02.188623,abortion laws in california 2025,abortion laws in california 2021,2021,law +abortion,"('abortion laws in california 2021 california', 'abortion laws in california 2021 california 2021')",abortion laws in california 2021 california,abortion laws in california 2021 california 2021,2,4,google,2026-03-12 20:02:02.188623,abortion laws in california 2025,abortion laws in california 2021,2021,2021 +abortion,"('abortion laws in california 2021 california', 'abortion laws in california 2021 california supreme court')",abortion laws in california 2021 california,abortion laws in california 2021 california supreme court,3,4,google,2026-03-12 20:02:02.188623,abortion laws in california 2025,abortion laws in california 2021,2021,supreme court +abortion,"('abortion laws in california 2021 california', 'abortion laws in california 2021 california abortion laws')",abortion laws in california 2021 california,abortion laws in california 2021 california abortion laws,4,4,google,2026-03-12 20:02:02.188623,abortion laws in california 2025,abortion laws in california 2021,2021,2021 +abortion,"('abortion laws in california 2021 california', 'abortion laws in california 2021 california 2023')",abortion laws in california 2021 california,abortion laws in california 2021 california 2023,5,4,google,2026-03-12 20:02:02.188623,abortion laws in california 2025,abortion laws in california 2021,2021,2023 +abortion,"('abortion laws in california 2021 and 2022', 'abortion laws in california 2021 and 2022 pdf')",abortion laws in california 2021 and 2022,abortion laws in california 2021 and 2022 pdf,1,4,google,2026-03-12 20:02:03.668633,abortion laws in california 2025,abortion laws in california 2021,and 2022,pdf +abortion,"('abortion laws in california 2021 and 2022', 'abortion laws in california 2021 and 2022 california')",abortion laws in california 2021 and 2022,abortion laws in california 2021 and 2022 california,2,4,google,2026-03-12 20:02:03.668633,abortion laws in california 2025,abortion laws in california 2021,and 2022,and 2022 +abortion,"('abortion laws in california 2021 and 2022', 'abortion laws in california 2021 and 2022 chart')",abortion laws in california 2021 and 2022,abortion laws in california 2021 and 2022 chart,3,4,google,2026-03-12 20:02:03.668633,abortion laws in california 2025,abortion laws in california 2021,and 2022,chart +abortion,"('abortion laws in california 2021 and 2022', 'abortion laws in california 2021 and 2022 summary')",abortion laws in california 2021 and 2022,abortion laws in california 2021 and 2022 summary,4,4,google,2026-03-12 20:02:03.668633,abortion laws in california 2025,abortion laws in california 2021,and 2022,summary +abortion,"('abortion laws in california 2021 and 2022', 'abortion laws in california 2021 and 2022 articles')",abortion laws in california 2021 and 2022,abortion laws in california 2021 and 2022 articles,5,4,google,2026-03-12 20:02:03.668633,abortion laws in california 2025,abortion laws in california 2021,and 2022,articles +abortion,"('abortion laws in california 2021 and 2022', 'abortion laws in california 2021 and 2022 calendar')",abortion laws in california 2021 and 2022,abortion laws in california 2021 and 2022 calendar,6,4,google,2026-03-12 20:02:03.668633,abortion laws in california 2025,abortion laws in california 2021,and 2022,calendar +abortion,"('abortion laws in california 2021 and 2022', 'abortion laws in california 2021 and 2022 calendar printable')",abortion laws in california 2021 and 2022,abortion laws in california 2021 and 2022 calendar printable,7,4,google,2026-03-12 20:02:03.668633,abortion laws in california 2025,abortion laws in california 2021,and 2022,calendar printable +abortion,"('abortion laws in california 2021 and 2022', 'abortion laws in california 2021 and 2022 weeks')",abortion laws in california 2021 and 2022,abortion laws in california 2021 and 2022 weeks,8,4,google,2026-03-12 20:02:03.668633,abortion laws in california 2025,abortion laws in california 2021,and 2022,weeks +abortion,"('abortion laws in california 2021 and 2022', 'abortion laws in california 2021 and 2022 text')",abortion laws in california 2021 and 2022,abortion laws in california 2021 and 2022 text,9,4,google,2026-03-12 20:02:03.668633,abortion laws in california 2025,abortion laws in california 2021,and 2022,text +abortion,"('abortion laws in california 2022 california', 'abortion laws in california 2022 california law')",abortion laws in california 2022 california,abortion laws in california 2022 california law,1,4,google,2026-03-12 20:02:05.184525,abortion laws in california 2025,abortion laws in california 2022,2022,law +abortion,"('abortion laws in california 2022 california', 'abortion laws in california 2022 california 2023')",abortion laws in california 2022 california,abortion laws in california 2022 california 2023,2,4,google,2026-03-12 20:02:05.184525,abortion laws in california 2025,abortion laws in california 2022,2022,2023 +abortion,"('abortion laws in california 2022 california', 'abortion laws in california 2022 california state')",abortion laws in california 2022 california,abortion laws in california 2022 california state,3,4,google,2026-03-12 20:02:05.184525,abortion laws in california 2025,abortion laws in california 2022,2022,state +abortion,"('abortion laws in california 2022 california', 'abortion laws in california 2022 california constitution')",abortion laws in california 2022 california,abortion laws in california 2022 california constitution,4,4,google,2026-03-12 20:02:05.184525,abortion laws in california 2025,abortion laws in california 2022,2022,constitution +abortion,"('abortion laws in california 2022 california', 'abortion laws in california 2022 california 2022')",abortion laws in california 2022 california,abortion laws in california 2022 california 2022,5,4,google,2026-03-12 20:02:05.184525,abortion laws in california 2025,abortion laws in california 2022,2022,2022 +abortion,"('abortion laws in california 2022 and 2023', 'abortion laws in california 2022 and 2023 pdf')",abortion laws in california 2022 and 2023,abortion laws in california 2022 and 2023 pdf,1,4,google,2026-03-12 20:02:06.475115,abortion laws in california 2025,abortion laws in california 2022,and 2023,pdf +abortion,"('abortion laws in california 2022 and 2023', 'abortion laws in california 2022 and 2023 california')",abortion laws in california 2022 and 2023,abortion laws in california 2022 and 2023 california,2,4,google,2026-03-12 20:02:06.475115,abortion laws in california 2025,abortion laws in california 2022,and 2023,and 2023 +abortion,"('abortion laws in california 2022 and 2023', 'abortion laws in california 2022 and 2023 summary')",abortion laws in california 2022 and 2023,abortion laws in california 2022 and 2023 summary,3,4,google,2026-03-12 20:02:06.475115,abortion laws in california 2025,abortion laws in california 2022,and 2023,summary +abortion,"('abortion laws in california 2022 and 2023', 'abortion laws in california 2022 and 2023 chart')",abortion laws in california 2022 and 2023,abortion laws in california 2022 and 2023 chart,4,4,google,2026-03-12 20:02:06.475115,abortion laws in california 2025,abortion laws in california 2022,and 2023,chart +abortion,"('abortion laws in california 2022 and 2023', 'abortion laws in california 2022 and 2023 map')",abortion laws in california 2022 and 2023,abortion laws in california 2022 and 2023 map,5,4,google,2026-03-12 20:02:06.475115,abortion laws in california 2025,abortion laws in california 2022,and 2023,map +abortion,"('abortion laws in california 2022 and 2023', 'abortion laws in california 2022 and 2023 calendar')",abortion laws in california 2022 and 2023,abortion laws in california 2022 and 2023 calendar,6,4,google,2026-03-12 20:02:06.475115,abortion laws in california 2025,abortion laws in california 2022,and 2023,calendar +abortion,"('abortion laws in california 2022-2024', 'abortion laws in california 2023')",abortion laws in california 2022-2024,abortion laws in california 2023,1,4,google,2026-03-12 20:02:07.473941,abortion laws in california 2025,abortion laws in california 2022,2022-2024,2023 +abortion,"('abortion laws in california 2022-2024', 'abortion laws in california 2021')",abortion laws in california 2022-2024,abortion laws in california 2021,2,4,google,2026-03-12 20:02:07.473941,abortion laws in california 2025,abortion laws in california 2022,2022-2024,2021 +abortion,"('abortion laws in california 2022-2024', 'abortion laws in california how many weeks')",abortion laws in california 2022-2024,abortion laws in california how many weeks,3,4,google,2026-03-12 20:02:07.473941,abortion laws in california 2025,abortion laws in california 2022,2022-2024,how many weeks +abortion,"('abortion laws in california 2022-2024', 'abortion laws in california 2022')",abortion laws in california 2022-2024,abortion laws in california 2022,4,4,google,2026-03-12 20:02:07.473941,abortion laws in california 2025,abortion laws in california 2022,2022-2024,2022 +abortion,"('abortion laws in california 2022-2024', 'california abortion laws 2022 28 days')",abortion laws in california 2022-2024,california abortion laws 2022 28 days,5,4,google,2026-03-12 20:02:07.473941,abortion laws in california 2025,abortion laws in california 2022,2022-2024,2022 28 days +abortion,"('abortion laws in california 2022 how many weeks', 'abortion laws in california 2022 how many weeks until')",abortion laws in california 2022 how many weeks,abortion laws in california 2022 how many weeks until,1,4,google,2026-03-12 20:02:08.924602,abortion laws in california 2025,abortion laws in california 2022,how many weeks,until +abortion,"('abortion laws in california 2022 how many weeks', 'abortion laws in california 2022 how many weeks in a year')",abortion laws in california 2022 how many weeks,abortion laws in california 2022 how many weeks in a year,2,4,google,2026-03-12 20:02:08.924602,abortion laws in california 2025,abortion laws in california 2022,how many weeks,a year +abortion,"('abortion laws in california 2022 how many weeks', 'abortion laws in california 2022 how many weeks am i')",abortion laws in california 2022 how many weeks,abortion laws in california 2022 how many weeks am i,3,4,google,2026-03-12 20:02:08.924602,abortion laws in california 2025,abortion laws in california 2022,how many weeks,am i +abortion,"('abortion laws in california 2022 how many weeks', 'abortion laws in california 2022 how many weeks 2021')",abortion laws in california 2022 how many weeks,abortion laws in california 2022 how many weeks 2021,4,4,google,2026-03-12 20:02:08.924602,abortion laws in california 2025,abortion laws in california 2022,how many weeks,2021 +abortion,"('abortion laws in california 2022 how many weeks', 'abortion laws in california 2022 how many weeks 2020')",abortion laws in california 2022 how many weeks,abortion laws in california 2022 how many weeks 2020,5,4,google,2026-03-12 20:02:08.924602,abortion laws in california 2025,abortion laws in california 2022,how many weeks,2020 +abortion,"('abortion laws in california 2022 weeks', 'abortion laws in california 2022 weeks ago')",abortion laws in california 2022 weeks,abortion laws in california 2022 weeks ago,1,4,google,2026-03-12 20:02:09.767983,abortion laws in california 2025,abortion laws in california 2022,weeks,ago +abortion,"('abortion laws in california 2022 weeks', 'abortion laws in california 2022 weeks and months')",abortion laws in california 2022 weeks,abortion laws in california 2022 weeks and months,2,4,google,2026-03-12 20:02:09.767983,abortion laws in california 2025,abortion laws in california 2022,weeks,and months +abortion,"('abortion laws in california 2022 weeks', 'abortion laws in california 2022 weeks to weeks')",abortion laws in california 2022 weeks,abortion laws in california 2022 weeks to weeks,3,4,google,2026-03-12 20:02:09.767983,abortion laws in california 2025,abortion laws in california 2022,weeks,to +abortion,"('abortion laws in california 2022 weeks', 'abortion laws in california 2022 weeks 2021')",abortion laws in california 2022 weeks,abortion laws in california 2022 weeks 2021,4,4,google,2026-03-12 20:02:09.767983,abortion laws in california 2025,abortion laws in california 2022,weeks,2021 +abortion,"('abortion laws in california 2022 weeks', 'abortion laws in california 2022 weeks 2020')",abortion laws in california 2022 weeks,abortion laws in california 2022 weeks 2020,5,4,google,2026-03-12 20:02:09.767983,abortion laws in california 2025,abortion laws in california 2022,weeks,2020 +abortion,"('abortion laws in california 2022 text', 'abortion laws in california 2022 textbook')",abortion laws in california 2022 text,abortion laws in california 2022 textbook,1,4,google,2026-03-12 20:02:10.951536,abortion laws in california 2025,abortion laws in california 2022,text,textbook +abortion,"('abortion laws in california 2022 text', 'abortion laws in california 2022 text pdf')",abortion laws in california 2022 text,abortion laws in california 2022 text pdf,2,4,google,2026-03-12 20:02:10.951536,abortion laws in california 2025,abortion laws in california 2022,text,pdf +abortion,"('abortion laws in california 2022 text', 'abortion laws in california 2022 texts')",abortion laws in california 2022 text,abortion laws in california 2022 texts,3,4,google,2026-03-12 20:02:10.951536,abortion laws in california 2025,abortion laws in california 2022,text,texts +abortion,"('abortion laws in california 2022 text', 'abortion laws in california 2022 textbook pdf')",abortion laws in california 2022 text,abortion laws in california 2022 textbook pdf,4,4,google,2026-03-12 20:02:10.951536,abortion laws in california 2025,abortion laws in california 2022,text,textbook pdf +abortion,"('is abortion legal in california', 'is abortion legal in california 2025')",is abortion legal in california,is abortion legal in california 2025,1,4,google,2026-03-12 20:02:12.207941,abortion laws in california 2026,is abortion legal in california 2026,is legal,2025 +abortion,"('is abortion legal in california', 'is abortion legal in california 2026')",is abortion legal in california,is abortion legal in california 2026,2,4,google,2026-03-12 20:02:12.207941,abortion laws in california 2026,is abortion legal in california 2026,is legal,2026 +abortion,"('is abortion legal in california', 'is abortion legal in california 2024')",is abortion legal in california,is abortion legal in california 2024,3,4,google,2026-03-12 20:02:12.207941,abortion laws in california 2026,is abortion legal in california 2026,is legal,2024 +abortion,"('is abortion legal in california', 'is abortion legal in california for minors')",is abortion legal in california,is abortion legal in california for minors,4,4,google,2026-03-12 20:02:12.207941,abortion laws in california 2026,is abortion legal in california 2026,is legal,for minors +abortion,"('is abortion legal in california', 'is abortion legal in california today')",is abortion legal in california,is abortion legal in california today,5,4,google,2026-03-12 20:02:12.207941,abortion laws in california 2026,is abortion legal in california 2026,is legal,today +abortion,"('is abortion legal in california', 'is abortion legal in california still')",is abortion legal in california,is abortion legal in california still,6,4,google,2026-03-12 20:02:12.207941,abortion laws in california 2026,is abortion legal in california 2026,is legal,still +abortion,"('is abortion legal in california', 'is abortion legal in california now')",is abortion legal in california,is abortion legal in california now,7,4,google,2026-03-12 20:02:12.207941,abortion laws in california 2026,is abortion legal in california 2026,is legal,now +abortion,"('is abortion legal in california', 'is abortion legal in california how many weeks')",is abortion legal in california,is abortion legal in california how many weeks,8,4,google,2026-03-12 20:02:12.207941,abortion laws in california 2026,is abortion legal in california 2026,is legal,how many weeks +abortion,"('is abortion legal in california', 'is abortion legal in california reddit')",is abortion legal in california,is abortion legal in california reddit,9,4,google,2026-03-12 20:02:12.207941,abortion laws in california 2026,is abortion legal in california 2026,is legal,reddit +abortion,"('when did abortion become legal in california', 'when did abortion become illegal in california')",when did abortion become legal in california,when did abortion become illegal in california,1,4,google,2026-03-12 20:02:13.462974,abortion laws in california 2026,is abortion legal in california 2026,when did become,illegal +abortion,"('when did abortion become legal in california', 'when did abortion first become legal in california')",when did abortion become legal in california,when did abortion first become legal in california,2,4,google,2026-03-12 20:02:13.462974,abortion laws in california 2026,is abortion legal in california 2026,when did become,first +abortion,"('when did abortion become legal in california', 'when does abortion become illegal california')",when did abortion become legal in california,when does abortion become illegal california,3,4,google,2026-03-12 20:02:13.462974,abortion laws in california 2026,is abortion legal in california 2026,when did become,does illegal +abortion,"('when did abortion become legal in california', 'what year did abortion become legal in california')",when did abortion become legal in california,what year did abortion become legal in california,4,4,google,2026-03-12 20:02:13.462974,abortion laws in california 2026,is abortion legal in california 2026,when did become,what year +abortion,"('when did abortion become legal in california', 'when did abortion become legal in america')",when did abortion become legal in california,when did abortion become legal in america,5,4,google,2026-03-12 20:02:13.462974,abortion laws in california 2026,is abortion legal in california 2026,when did become,america +abortion,"('when did abortion become legal in california', 'when did abortion become legal in ca')",when did abortion become legal in california,when did abortion become legal in ca,6,4,google,2026-03-12 20:02:13.462974,abortion laws in california 2026,is abortion legal in california 2026,when did become,ca +abortion,"('is abortion legal in california 2023', 'abortion laws in california 2023')",is abortion legal in california 2023,abortion laws in california 2023,1,4,google,2026-03-12 20:02:14.813817,abortion laws in california 2026,is abortion legal in california 2026,2023,laws +abortion,"('is abortion legal in california 2023', 'new abortion law in california 2023')",is abortion legal in california 2023,new abortion law in california 2023,2,4,google,2026-03-12 20:02:14.813817,abortion laws in california 2026,is abortion legal in california 2026,2023,new law +abortion,"('is abortion legal in california 2023', 'new abortion law in california 2023 overturned')",is abortion legal in california 2023,new abortion law in california 2023 overturned,3,4,google,2026-03-12 20:02:14.813817,abortion laws in california 2026,is abortion legal in california 2026,2023,new law overturned +abortion,"('is abortion legal in california 2023', 'when did abortion become legal in california')",is abortion legal in california 2023,when did abortion become legal in california,4,4,google,2026-03-12 20:02:14.813817,abortion laws in california 2026,is abortion legal in california 2026,2023,when did become +abortion,"('is abortion legal in california 2023', 'is abortion legal in california')",is abortion legal in california 2023,is abortion legal in california,5,4,google,2026-03-12 20:02:14.813817,abortion laws in california 2026,is abortion legal in california 2026,2023,2023 +abortion,"('is abortion legal in california 2023', 'is abortion legal in california 2021')",is abortion legal in california 2023,is abortion legal in california 2021,6,4,google,2026-03-12 20:02:14.813817,abortion laws in california 2026,is abortion legal in california 2026,2023,2021 +abortion,"('is abortion legal in california 2023', 'is abortion legal in california in 2022')",is abortion legal in california 2023,is abortion legal in california in 2022,7,4,google,2026-03-12 20:02:14.813817,abortion laws in california 2026,is abortion legal in california 2026,2023,2022 +abortion,"('is abortion legal in california 2023', 'is abortion illegal in california 2023')",is abortion legal in california 2023,is abortion illegal in california 2023,8,4,google,2026-03-12 20:02:14.813817,abortion laws in california 2026,is abortion legal in california 2026,2023,illegal +abortion,"('is abortion legal in california 2021', 'is abortion legal in california 2021 california')",is abortion legal in california 2021,is abortion legal in california 2021 california,1,4,google,2026-03-12 20:02:15.922802,abortion laws in california 2026,is abortion legal in california 2026,2021,2021 +abortion,"('is abortion legal in california 2021', 'is abortion legal in california 2021-2024')",is abortion legal in california 2021,is abortion legal in california 2021-2024,2,4,google,2026-03-12 20:02:15.922802,abortion laws in california 2026,is abortion legal in california 2026,2021,2021-2024 +abortion,"('is abortion legal in california 2022', 'is abortion legal in california 20224')",is abortion legal in california 2022,is abortion legal in california 20224,1,4,google,2026-03-12 20:02:16.943607,abortion laws in california 2026,is abortion legal in california 2026,2022,20224 +abortion,"('is abortion legal in california 2022', 'is abortion legal in california 2022 california')",is abortion legal in california 2022,is abortion legal in california 2022 california,2,4,google,2026-03-12 20:02:16.943607,abortion laws in california 2026,is abortion legal in california 2026,2022,2022 +abortion,"('is abortion legal in california 2022', 'is abortion legal in california 2022-2023')",is abortion legal in california 2022,is abortion legal in california 2022-2023,3,4,google,2026-03-12 20:02:16.943607,abortion laws in california 2026,is abortion legal in california 2026,2022,2022-2023 +abortion,"('is abortion legal in california 2022', 'is abortion legal in california 2022 weeks')",is abortion legal in california 2022,is abortion legal in california 2022 weeks,4,4,google,2026-03-12 20:02:16.943607,abortion laws in california 2026,is abortion legal in california 2026,2022,weeks +abortion,"('is abortion legal in california 2022', 'is abortion legal in california 2022 how many weeks')",is abortion legal in california 2022,is abortion legal in california 2022 how many weeks,5,4,google,2026-03-12 20:02:16.943607,abortion laws in california 2026,is abortion legal in california 2026,2022,how many weeks +abortion,"('is abortion legal in california 2022', 'is abortion legal in california 2022 28 days')",is abortion legal in california 2022,is abortion legal in california 2022 28 days,6,4,google,2026-03-12 20:02:16.943607,abortion laws in california 2026,is abortion legal in california 2026,2022,28 days +abortion,"('is abortion legal in california 2022', 'is abortion legal in california 2022 text')",is abortion legal in california 2022,is abortion legal in california 2022 text,7,4,google,2026-03-12 20:02:16.943607,abortion laws in california 2026,is abortion legal in california 2026,2022,text +abortion,"('is abortion illegal in california 2023', 'abortion laws in california 2023')",is abortion illegal in california 2023,abortion laws in california 2023,1,4,google,2026-03-12 20:02:18.306608,abortion laws in california 2026,is abortion legal in california 2026,illegal 2023,laws +abortion,"('is abortion illegal in california 2023', 'when did abortion become legal in california')",is abortion illegal in california 2023,when did abortion become legal in california,2,4,google,2026-03-12 20:02:18.306608,abortion laws in california 2026,is abortion legal in california 2026,illegal 2023,when did become legal +abortion,"('is abortion illegal in california 2023', 'is abortion illegal in california 2022')",is abortion illegal in california 2023,is abortion illegal in california 2022,3,4,google,2026-03-12 20:02:18.306608,abortion laws in california 2026,is abortion legal in california 2026,illegal 2023,2022 +abortion,"('is abortion illegal in california 2023', 'is abortion legal in california 2023')",is abortion illegal in california 2023,is abortion legal in california 2023,4,4,google,2026-03-12 20:02:18.306608,abortion laws in california 2026,is abortion legal in california 2026,illegal 2023,legal +abortion,"('is abortion illegal in california 2023', 'is abortion illegal in california today')",is abortion illegal in california 2023,is abortion illegal in california today,5,4,google,2026-03-12 20:02:18.306608,abortion laws in california 2026,is abortion legal in california 2026,illegal 2023,today +abortion,"('is abortion illegal in california 2023', 'is abortion illegal in california now')",is abortion illegal in california 2023,is abortion illegal in california now,6,4,google,2026-03-12 20:02:18.306608,abortion laws in california 2026,is abortion legal in california 2026,illegal 2023,now +abortion,"('is abortion illegal in california 2022', 'is abortion illegal in california 2022 california')",is abortion illegal in california 2022,is abortion illegal in california 2022 california,1,4,google,2026-03-12 20:02:19.730077,abortion laws in california 2026,is abortion illegal in california 2026,2022,2022 +abortion,"('is abortion illegal in california 2022', 'is abortion illegal in california 20224')",is abortion illegal in california 2022,is abortion illegal in california 20224,2,4,google,2026-03-12 20:02:19.730077,abortion laws in california 2026,is abortion illegal in california 2026,2022,20224 +abortion,"('is abortion illegal in california 2022', 'is abortion illegal in california 2022 law')",is abortion illegal in california 2022,is abortion illegal in california 2022 law,3,4,google,2026-03-12 20:02:19.730077,abortion laws in california 2026,is abortion illegal in california 2026,2022,law +abortion,"('is abortion illegal in california 2022', 'is abortion illegal in california 2022-2023')",is abortion illegal in california 2022,is abortion illegal in california 2022-2023,4,4,google,2026-03-12 20:02:19.730077,abortion laws in california 2026,is abortion illegal in california 2026,2022,2022-2023 +abortion,"('is abortion illegal in california 2022', 'is abortion illegal in california 2022 28 days')",is abortion illegal in california 2022,is abortion illegal in california 2022 28 days,5,4,google,2026-03-12 20:02:19.730077,abortion laws in california 2026,is abortion illegal in california 2026,2022,28 days +abortion,"('is abortion illegal in california 2022', 'is abortion illegal in california 2022 weeks')",is abortion illegal in california 2022,is abortion illegal in california 2022 weeks,6,4,google,2026-03-12 20:02:19.730077,abortion laws in california 2026,is abortion illegal in california 2026,2022,weeks +abortion,"('is abortion illegal in california today', 'is abortion legal in california today')",is abortion illegal in california today,is abortion legal in california today,1,4,google,2026-03-12 20:02:20.992730,abortion laws in california 2026,is abortion illegal in california 2026,today,legal +abortion,"('is abortion illegal in california today', 'is abortion legal in california')",is abortion illegal in california today,is abortion legal in california,2,4,google,2026-03-12 20:02:20.992730,abortion laws in california 2026,is abortion illegal in california 2026,today,legal +abortion,"('is abortion illegal in california today', 'states that banned abortion')",is abortion illegal in california today,states that banned abortion,3,4,google,2026-03-12 20:02:20.992730,abortion laws in california 2026,is abortion illegal in california 2026,today,states that banned +abortion,"('is abortion illegal in california today', 'is abortion illegal in california now')",is abortion illegal in california today,is abortion illegal in california now,4,4,google,2026-03-12 20:02:20.992730,abortion laws in california 2026,is abortion illegal in california 2026,today,now +abortion,"('is abortion illegal in california today', 'is abortion illegal in california 2022')",is abortion illegal in california today,is abortion illegal in california 2022,5,4,google,2026-03-12 20:02:20.992730,abortion laws in california 2026,is abortion illegal in california 2026,today,2022 +abortion,"('is abortion illegal in california today', 'is abortion illegal in california 2023')",is abortion illegal in california today,is abortion illegal in california 2023,6,4,google,2026-03-12 20:02:20.992730,abortion laws in california 2026,is abortion illegal in california 2026,today,2023 +abortion,"('is abortion illegal in california now', 'is abortion legal in california now')",is abortion illegal in california now,is abortion legal in california now,1,4,google,2026-03-12 20:02:21.875337,abortion laws in california 2026,is abortion illegal in california 2026,now,legal +abortion,"('is abortion illegal in california now', 'is abortion legal in california today')",is abortion illegal in california now,is abortion legal in california today,2,4,google,2026-03-12 20:02:21.875337,abortion laws in california 2026,is abortion illegal in california 2026,now,legal today +abortion,"('is abortion illegal in california now', 'is abortion legal in california')",is abortion illegal in california now,is abortion legal in california,3,4,google,2026-03-12 20:02:21.875337,abortion laws in california 2026,is abortion illegal in california 2026,now,legal +abortion,"('is abortion illegal in california now', 'which states banned abortion')",is abortion illegal in california now,which states banned abortion,4,4,google,2026-03-12 20:02:21.875337,abortion laws in california 2026,is abortion illegal in california 2026,now,which states banned +abortion,"('is abortion illegal in california now', 'is abortion illegal in california today')",is abortion illegal in california now,is abortion illegal in california today,5,4,google,2026-03-12 20:02:21.875337,abortion laws in california 2026,is abortion illegal in california 2026,now,today +abortion,"('is abortion illegal in california now', 'is abortion illegal in california 2022')",is abortion illegal in california now,is abortion illegal in california 2022,6,4,google,2026-03-12 20:02:21.875337,abortion laws in california 2026,is abortion illegal in california 2026,now,2022 +abortion,"('california abortion laws 2024', 'california abortion laws 2024 how many months')",california abortion laws 2024,california abortion laws 2024 how many months,1,4,google,2026-03-12 20:02:23.030927,abortion laws in california 2026,california abortion laws,2024,how many months +abortion,"('california abortion laws 2024', 'california abortion laws 2024 weeks')",california abortion laws 2024,california abortion laws 2024 weeks,2,4,google,2026-03-12 20:02:23.030927,abortion laws in california 2026,california abortion laws,2024,weeks +abortion,"('california abortion laws 2024', 'new california abortion laws 2024 update')",california abortion laws 2024,new california abortion laws 2024 update,3,4,google,2026-03-12 20:02:23.030927,abortion laws in california 2026,california abortion laws,2024,new update +abortion,"('california abortion laws 2024', 'new california abortion laws 2024 update today')",california abortion laws 2024,new california abortion laws 2024 update today,4,4,google,2026-03-12 20:02:23.030927,abortion laws in california 2026,california abortion laws,2024,new update today +abortion,"('california abortion laws 2024', 'abortion laws in california 2024 how many weeks')",california abortion laws 2024,abortion laws in california 2024 how many weeks,5,4,google,2026-03-12 20:02:23.030927,abortion laws in california 2026,california abortion laws,2024,in how many weeks +abortion,"('california abortion laws 2024', 'california abortion laws')",california abortion laws 2024,california abortion laws,6,4,google,2026-03-12 20:02:23.030927,abortion laws in california 2026,california abortion laws,2024,2024 +abortion,"('california abortion laws 2024', 'california abortion laws 2023')",california abortion laws 2024,california abortion laws 2023,7,4,google,2026-03-12 20:02:23.030927,abortion laws in california 2026,california abortion laws,2024,2023 +abortion,"('california abortion laws 2024', 'california abortion laws 2022 weeks')",california abortion laws 2024,california abortion laws 2022 weeks,8,4,google,2026-03-12 20:02:23.030927,abortion laws in california 2026,california abortion laws,2024,2022 weeks +abortion,"('california abortion laws 2024', 'california abortion laws 28 days')",california abortion laws 2024,california abortion laws 28 days,9,4,google,2026-03-12 20:02:23.030927,abortion laws in california 2026,california abortion laws,2024,28 days +abortion,"('california abortion laws 2025', 'new california abortion laws 2025 update')",california abortion laws 2025,new california abortion laws 2025 update,1,4,google,2026-03-12 20:02:24.329337,abortion laws in california 2026,california abortion laws,2025,new update +abortion,"('california abortion laws 2025', 'new california abortion laws 2025 update today')",california abortion laws 2025,new california abortion laws 2025 update today,2,4,google,2026-03-12 20:02:24.329337,abortion laws in california 2026,california abortion laws,2025,new update today +abortion,"('california abortion laws 2025', 'california new abortion law 2025')",california abortion laws 2025,california new abortion law 2025,3,4,google,2026-03-12 20:02:24.329337,abortion laws in california 2026,california abortion laws,2025,new law +abortion,"('california abortion laws 2025', 'california abortion laws')",california abortion laws 2025,california abortion laws,4,4,google,2026-03-12 20:02:24.329337,abortion laws in california 2026,california abortion laws,2025,2025 +abortion,"('california abortion laws 2025', 'california abortion laws 2023')",california abortion laws 2025,california abortion laws 2023,5,4,google,2026-03-12 20:02:24.329337,abortion laws in california 2026,california abortion laws,2025,2023 +abortion,"('california abortion laws 2025', 'california abortion laws 2022 weeks')",california abortion laws 2025,california abortion laws 2022 weeks,6,4,google,2026-03-12 20:02:24.329337,abortion laws in california 2026,california abortion laws,2025,2022 weeks +abortion,"('california abortion laws 2025', 'california abortion laws 28 days')",california abortion laws 2025,california abortion laws 28 days,7,4,google,2026-03-12 20:02:24.329337,abortion laws in california 2026,california abortion laws,2025,28 days +abortion,"('california abortion laws 2025', 'california abortion laws 2020')",california abortion laws 2025,california abortion laws 2020,8,4,google,2026-03-12 20:02:24.329337,abortion laws in california 2026,california abortion laws,2025,2020 +abortion,"('california abortion laws weeks', 'california abortion legal weeks')",california abortion laws weeks,california abortion legal weeks,1,4,google,2026-03-12 20:02:25.503868,abortion laws in california 2026,california abortion laws,weeks,legal +abortion,"('california abortion laws weeks', 'california abortion laws 2024 weeks')",california abortion laws weeks,california abortion laws 2024 weeks,2,4,google,2026-03-12 20:02:25.503868,abortion laws in california 2026,california abortion laws,weeks,2024 +abortion,"('california abortion laws weeks', 'california abortion laws how many weeks')",california abortion laws weeks,california abortion laws how many weeks,3,4,google,2026-03-12 20:02:25.503868,abortion laws in california 2026,california abortion laws,weeks,how many +abortion,"('california abortion laws weeks', 'california abortion laws')",california abortion laws weeks,california abortion laws,4,4,google,2026-03-12 20:02:25.503868,abortion laws in california 2026,california abortion laws,weeks,weeks +abortion,"('california abortion laws weeks', 'california abortion weeks')",california abortion laws weeks,california abortion weeks,5,4,google,2026-03-12 20:02:25.503868,abortion laws in california 2026,california abortion laws,weeks,weeks +abortion,"('california abortion laws weeks', 'california abortion week limit')",california abortion laws weeks,california abortion week limit,6,4,google,2026-03-12 20:02:25.503868,abortion laws in california 2026,california abortion laws,weeks,week limit +abortion,"('california abortion laws weeks', 'california abortion laws how many weeks 2021')",california abortion laws weeks,california abortion laws how many weeks 2021,7,4,google,2026-03-12 20:02:25.503868,abortion laws in california 2026,california abortion laws,weeks,how many 2021 +abortion,"('california abortion laws for minors', 'is abortion legal in california for minors')",california abortion laws for minors,is abortion legal in california for minors,1,4,google,2026-03-12 20:02:26.360086,abortion laws in california 2026,california abortion laws,for minors,is legal in +abortion,"('california abortion laws 2026', 'california abortion laws')",california abortion laws 2026,california abortion laws,1,4,google,2026-03-12 20:02:27.796355,abortion laws in california 2026,california abortion laws,2026,2026 +abortion,"('california abortion laws 2026', 'california abortion laws 28 days')",california abortion laws 2026,california abortion laws 28 days,2,4,google,2026-03-12 20:02:27.796355,abortion laws in california 2026,california abortion laws,2026,28 days +abortion,"('california abortion laws 2026', 'california abortion laws 2023')",california abortion laws 2026,california abortion laws 2023,3,4,google,2026-03-12 20:02:27.796355,abortion laws in california 2026,california abortion laws,2026,2023 +abortion,"('california abortion laws 2026', 'california abortion laws 2022 weeks')",california abortion laws 2026,california abortion laws 2022 weeks,4,4,google,2026-03-12 20:02:27.796355,abortion laws in california 2026,california abortion laws,2026,2022 weeks +abortion,"('california abortion laws 2026', 'california abortion laws 2022 text')",california abortion laws 2026,california abortion laws 2022 text,5,4,google,2026-03-12 20:02:27.796355,abortion laws in california 2026,california abortion laws,2026,2022 text +abortion,"('california abortion lawsuit', 'california abortion case')",california abortion lawsuit,california abortion case,1,4,google,2026-03-12 20:02:28.784436,abortion laws in california 2026,california abortion laws,lawsuit,case +abortion,"('california abortion lawsuit', 'california abortion laws')",california abortion lawsuit,california abortion laws,2,4,google,2026-03-12 20:02:28.784436,abortion laws in california 2026,california abortion laws,lawsuit,laws +abortion,"('california abortion lawsuit', 'california abortion law news')",california abortion lawsuit,california abortion law news,3,4,google,2026-03-12 20:02:28.784436,abortion laws in california 2026,california abortion laws,lawsuit,law news +abortion,"('california abortion lawsuit', 'california abortion law 2021')",california abortion lawsuit,california abortion law 2021,4,4,google,2026-03-12 20:02:28.784436,abortion laws in california 2026,california abortion laws,lawsuit,law 2021 +abortion,"('california abortion lawsuit', 'california abortion laws fox news')",california abortion lawsuit,california abortion laws fox news,5,4,google,2026-03-12 20:02:28.784436,abortion laws in california 2026,california abortion laws,lawsuit,laws fox news +abortion,"('california abortion lawsuit', 'california abortion law results')",california abortion lawsuit,california abortion law results,6,4,google,2026-03-12 20:02:28.784436,abortion laws in california 2026,california abortion laws,lawsuit,law results +abortion,"('california abortion lawsuit', 'california abortion law passed today')",california abortion lawsuit,california abortion law passed today,7,4,google,2026-03-12 20:02:28.784436,abortion laws in california 2026,california abortion laws,lawsuit,law passed today +abortion,"('california abortion laws 2024 how many months', 'california abortion laws how many weeks')",california abortion laws 2024 how many months,california abortion laws how many weeks,1,4,google,2026-03-12 20:02:29.898575,abortion laws in california 2026,california abortion laws,2024 how many months,weeks +abortion,"('california abortion laws 2024 how many months', 'california abortion laws how many weeks 2020')",california abortion laws 2024 how many months,california abortion laws how many weeks 2020,2,4,google,2026-03-12 20:02:29.898575,abortion laws in california 2026,california abortion laws,2024 how many months,weeks 2020 +abortion,"('california abortion laws 2024 how many months', 'california abortion laws how many weeks 2021')",california abortion laws 2024 how many months,california abortion laws how many weeks 2021,3,4,google,2026-03-12 20:02:29.898575,abortion laws in california 2026,california abortion laws,2024 how many months,weeks 2021 +abortion,"('california abortion laws 2024 how many months', 'california abortion laws how many weeks 2022')",california abortion laws 2024 how many months,california abortion laws how many weeks 2022,4,4,google,2026-03-12 20:02:29.898575,abortion laws in california 2026,california abortion laws,2024 how many months,weeks 2022 +abortion,"('california abortion laws 2024 how many months', 'california abortion 24 weeks')",california abortion laws 2024 how many months,california abortion 24 weeks,5,4,google,2026-03-12 20:02:29.898575,abortion laws in california 2026,california abortion laws,2024 how many months,24 weeks +abortion,"('california abortion laws 2024 weeks', 'abortion laws in california 2024 how many weeks')",california abortion laws 2024 weeks,abortion laws in california 2024 how many weeks,1,4,google,2026-03-12 20:02:31.088461,abortion laws in california 2026,california abortion laws,2024 weeks,in how many +abortion,"('california abortion laws 2024 weeks', 'california abortion laws how many weeks')",california abortion laws 2024 weeks,california abortion laws how many weeks,2,4,google,2026-03-12 20:02:31.088461,abortion laws in california 2026,california abortion laws,2024 weeks,how many +abortion,"('california abortion laws 2024 weeks', 'california abortion laws 2022 weeks')",california abortion laws 2024 weeks,california abortion laws 2022 weeks,3,4,google,2026-03-12 20:02:31.088461,abortion laws in california 2026,california abortion laws,2024 weeks,2022 +abortion,"('california abortion laws 2024 weeks', 'california abortion laws 2023')",california abortion laws 2024 weeks,california abortion laws 2023,4,4,google,2026-03-12 20:02:31.088461,abortion laws in california 2026,california abortion laws,2024 weeks,2023 +abortion,"('california abortion laws 2024 weeks', 'california abortion laws 28 days')",california abortion laws 2024 weeks,california abortion laws 28 days,5,4,google,2026-03-12 20:02:31.088461,abortion laws in california 2026,california abortion laws,2024 weeks,28 days +abortion,"('california abortion laws 2024 weeks', 'california abortion 24 weeks')",california abortion laws 2024 weeks,california abortion 24 weeks,6,4,google,2026-03-12 20:02:31.088461,abortion laws in california 2026,california abortion laws,2024 weeks,24 +abortion,"('california abortion laws 2022', 'california abortion laws')",california abortion laws 2022,california abortion laws,1,4,google,2026-03-12 20:02:32.105490,abortion laws in california 2026,california abortion laws,2022,2022 +abortion,"('california abortion laws 2022', 'california abortion laws 2022 weeks')",california abortion laws 2022,california abortion laws 2022 weeks,2,4,google,2026-03-12 20:02:32.105490,abortion laws in california 2026,california abortion laws,2022,weeks +abortion,"('california abortion laws 2022', 'california abortion laws 2022 how many weeks')",california abortion laws 2022,california abortion laws 2022 how many weeks,3,4,google,2026-03-12 20:02:32.105490,abortion laws in california 2026,california abortion laws,2022,how many weeks +abortion,"('california abortion laws 2022', 'california abortion laws 2022 text')",california abortion laws 2022,california abortion laws 2022 text,4,4,google,2026-03-12 20:02:32.105490,abortion laws in california 2026,california abortion laws,2022,text +abortion,"('california abortion laws 2022', 'california abortion laws 2022 28 days')",california abortion laws 2022,california abortion laws 2022 28 days,5,4,google,2026-03-12 20:02:32.105490,abortion laws in california 2026,california abortion laws,2022,28 days +abortion,"('abortion laws in california history and background', 'abortion laws in california history and background information')",abortion laws in california history and background,abortion laws in california history and background information,1,4,google,2026-03-12 20:02:33.503479,abortion laws in california 2026,abortion laws in california history,and background,information +abortion,"('abortion laws in california history and background', 'abortion laws in california history and background info')",abortion laws in california history and background,abortion laws in california history and background info,2,4,google,2026-03-12 20:02:33.503479,abortion laws in california 2026,abortion laws in california history,and background,info +abortion,"('abortion laws in california history and background', 'abortion laws in california history and backgrounds')",abortion laws in california history and background,abortion laws in california history and backgrounds,3,4,google,2026-03-12 20:02:33.503479,abortion laws in california 2026,abortion laws in california history,and background,backgrounds +abortion,"('abortion laws in california history and background', 'abortion laws in california history and background and history')",abortion laws in california history and background,abortion laws in california history and background and history,4,4,google,2026-03-12 20:02:33.503479,abortion laws in california 2026,abortion laws in california history,and background,and background +abortion,"('abortion laws in california history of', 'abortion laws in california history of law')",abortion laws in california history of,abortion laws in california history of law,1,4,google,2026-03-12 20:02:34.502564,abortion laws in california 2026,abortion laws in california history,of,law +abortion,"('abortion laws in california history of', 'abortion laws in california history of california')",abortion laws in california history of,abortion laws in california history of california,2,4,google,2026-03-12 20:02:34.502564,abortion laws in california 2026,abortion laws in california history,of,of +abortion,"('abortion laws in california history of', 'abortion laws in california history of abortion')",abortion laws in california history of,abortion laws in california history of abortion,3,4,google,2026-03-12 20:02:34.502564,abortion laws in california 2026,abortion laws in california history,of,of +abortion,"('abortion laws in california history of', 'abortion laws in california history of abortion laws')",abortion laws in california history of,abortion laws in california history of abortion laws,4,4,google,2026-03-12 20:02:34.502564,abortion laws in california 2026,abortion laws in california history,of,of +abortion,"('abortion laws in california history of', 'abortion laws in california history officials say')",abortion laws in california history of,abortion laws in california history officials say,5,4,google,2026-03-12 20:02:34.502564,abortion laws in california 2026,abortion laws in california history,of,officials say +abortion,"('abortion laws in california history of', 'abortion laws in california history officials')",abortion laws in california history of,abortion laws in california history officials,6,4,google,2026-03-12 20:02:34.502564,abortion laws in california 2026,abortion laws in california history,of,officials +abortion,"('abortion laws in california history timeline', 'abortion laws in california history timeline chart')",abortion laws in california history timeline,abortion laws in california history timeline chart,1,4,google,2026-03-12 20:02:35.575714,abortion laws in california 2026,abortion laws in california history,timeline,chart +abortion,"('abortion laws in california history timeline', 'abortion laws in california history timeline of laws')",abortion laws in california history timeline,abortion laws in california history timeline of laws,2,4,google,2026-03-12 20:02:35.575714,abortion laws in california 2026,abortion laws in california history,timeline,of +abortion,"('abortion laws in california history timeline', 'abortion laws in california history timelines')",abortion laws in california history timeline,abortion laws in california history timelines,3,4,google,2026-03-12 20:02:35.575714,abortion laws in california 2026,abortion laws in california history,timeline,timelines +abortion,"('abortion laws in california history timeline', 'abortion laws in california history timeline california')",abortion laws in california history timeline,abortion laws in california history timeline california,4,4,google,2026-03-12 20:02:35.575714,abortion laws in california 2026,abortion laws in california history,timeline,timeline +abortion,"('abortion laws in california history timeline', 'abortion laws in california history timeline 2023')",abortion laws in california history timeline,abortion laws in california history timeline 2023,5,4,google,2026-03-12 20:02:35.575714,abortion laws in california 2026,abortion laws in california history,timeline,2023 +abortion,"('abortion laws in california history timeline', 'abortion laws in california history timeline 4th grade')",abortion laws in california history timeline,abortion laws in california history timeline 4th grade,6,4,google,2026-03-12 20:02:35.575714,abortion laws in california 2026,abortion laws in california history,timeline,4th grade +abortion,"('until how many weeks is abortion legal in california', 'how many weeks can you have an abortion in california')",until how many weeks is abortion legal in california,how many weeks can you have an abortion in california,1,4,google,2026-03-12 20:02:36.551864,abortion laws in california how many weeks,is abortion legal in california how many weeks,until,can you have an +abortion,"('until how many weeks is abortion legal in california', 'how many weeks can you get an abortion california')",until how many weeks is abortion legal in california,how many weeks can you get an abortion california,2,4,google,2026-03-12 20:02:36.551864,abortion laws in california how many weeks,is abortion legal in california how many weeks,until,can you get an +abortion,"('until how many weeks is abortion legal in california', 'how late can you have an abortion in california')",until how many weeks is abortion legal in california,how late can you have an abortion in california,3,4,google,2026-03-12 20:02:36.551864,abortion laws in california how many weeks,is abortion legal in california how many weeks,until,late can you have an +abortion,"('until how many weeks is abortion legal in california', 'until how many weeks is abortion legal')",until how many weeks is abortion legal in california,until how many weeks is abortion legal,4,4,google,2026-03-12 20:02:36.551864,abortion laws in california how many weeks,is abortion legal in california how many weeks,until,until +abortion,"('until how many weeks is abortion legal in california', 'until what month is abortion legal in california')",until how many weeks is abortion legal in california,until what month is abortion legal in california,5,4,google,2026-03-12 20:02:36.551864,abortion laws in california how many weeks,is abortion legal in california how many weeks,until,what month +abortion,"('how many weeks can you get an abortion in california 2024', 'how many weeks can you get an abortion california')",how many weeks can you get an abortion in california 2024,how many weeks can you get an abortion california,1,4,google,2026-03-12 20:02:37.861728,abortion laws in california how many weeks,how many weeks can you have an abortion in california,get 2024,get 2024 +abortion,"('how many weeks can you get an abortion in california 2024', 'how far along can you get an abortion california')",how many weeks can you get an abortion in california 2024,how far along can you get an abortion california,2,4,google,2026-03-12 20:02:37.861728,abortion laws in california how many weeks,how many weeks can you have an abortion in california,get 2024,far along +abortion,"('how many weeks can you get an abortion in california 2024', 'how many weeks can you have an abortion in california')",how many weeks can you get an abortion in california 2024,how many weeks can you have an abortion in california,3,4,google,2026-03-12 20:02:37.861728,abortion laws in california how many weeks,how many weeks can you have an abortion in california,get 2024,have +abortion,"('how many weeks can you get an abortion in california 2024', 'how many months can you get an abortion in california')",how many weeks can you get an abortion in california 2024,how many months can you get an abortion in california,4,4,google,2026-03-12 20:02:37.861728,abortion laws in california how many weeks,how many weeks can you have an abortion in california,get 2024,months +abortion,"('how many weeks can you get an abortion in california 2024', 'how many weeks can you get an abortion in california 2022')",how many weeks can you get an abortion in california 2024,how many weeks can you get an abortion in california 2022,5,4,google,2026-03-12 20:02:37.861728,abortion laws in california how many weeks,how many weeks can you have an abortion in california,get 2024,2022 +abortion,"('how many weeks can you get an abortion in california 2022', 'how many weeks can you get an abortion california')",how many weeks can you get an abortion in california 2022,how many weeks can you get an abortion california,1,4,google,2026-03-12 20:02:39.307057,abortion laws in california how many weeks,how many weeks can you have an abortion in california,get 2022,get 2022 +abortion,"('how many weeks can you get an abortion in california 2022', 'how many weeks can you have an abortion in california')",how many weeks can you get an abortion in california 2022,how many weeks can you have an abortion in california,2,4,google,2026-03-12 20:02:39.307057,abortion laws in california how many weeks,how many weeks can you have an abortion in california,get 2022,have +abortion,"('how many weeks can you get an abortion in california 2022', 'how far along can you get an abortion california')",how many weeks can you get an abortion in california 2022,how far along can you get an abortion california,3,4,google,2026-03-12 20:02:39.307057,abortion laws in california how many weeks,how many weeks can you have an abortion in california,get 2022,far along +abortion,"('how many weeks can you get an abortion in california 2022', 'how many months can you get an abortion in california')",how many weeks can you get an abortion in california 2022,how many months can you get an abortion in california,4,4,google,2026-03-12 20:02:39.307057,abortion laws in california how many weeks,how many weeks can you have an abortion in california,get 2022,months +abortion,"('how many weeks can you get an abortion in california 2022', 'how many weeks can you get an abortion in ca')",how many weeks can you get an abortion in california 2022,how many weeks can you get an abortion in ca,5,4,google,2026-03-12 20:02:39.307057,abortion laws in california how many weeks,how many weeks can you have an abortion in california,get 2022,ca +abortion,"('until how many weeks can you have an abortion in california', 'how many weeks can you get an abortion california')",until how many weeks can you have an abortion in california,how many weeks can you get an abortion california,1,4,google,2026-03-12 20:02:40.462106,abortion laws in california how many weeks,how many weeks can you have an abortion in california,until,get +abortion,"('until how many weeks can you have an abortion in california', 'how far along can you get an abortion california')",until how many weeks can you have an abortion in california,how far along can you get an abortion california,2,4,google,2026-03-12 20:02:40.462106,abortion laws in california how many weeks,how many weeks can you have an abortion in california,until,far along get +abortion,"('until how many weeks can you have an abortion in california', 'how far into pregnancy can you have an abortion in california')",until how many weeks can you have an abortion in california,how far into pregnancy can you have an abortion in california,3,4,google,2026-03-12 20:02:40.462106,abortion laws in california how many weeks,how many weeks can you have an abortion in california,until,far into pregnancy +abortion,"('until how many weeks can you have an abortion in california', ""how many weeks until you can't have an abortion in california"")",until how many weeks can you have an abortion in california,how many weeks until you can't have an abortion in california,4,4,google,2026-03-12 20:02:40.462106,abortion laws in california how many weeks,how many weeks can you have an abortion in california,until,can't +abortion,"('until how many weeks can you have an abortion in california', 'until how many weeks is abortion legal in california')",until how many weeks can you have an abortion in california,until how many weeks is abortion legal in california,5,4,google,2026-03-12 20:02:40.462106,abortion laws in california how many weeks,how many weeks can you have an abortion in california,until,is legal +abortion,"('until how many weeks can you have an abortion in california', 'at how many weeks can you have an abortion in ca')",until how many weeks can you have an abortion in california,at how many weeks can you have an abortion in ca,6,4,google,2026-03-12 20:02:40.462106,abortion laws in california how many weeks,how many weeks can you have an abortion in california,until,at ca +abortion,"('how many weeks can you not have an abortion in california', 'how many weeks can you have an abortion in california')",how many weeks can you not have an abortion in california,how many weeks can you have an abortion in california,1,4,google,2026-03-12 20:02:41.453579,abortion laws in california how many weeks,how many weeks can you have an abortion in california,not,not +abortion,"('how many weeks can you not have an abortion in california', 'how many weeks can you get an abortion california')",how many weeks can you not have an abortion in california,how many weeks can you get an abortion california,2,4,google,2026-03-12 20:02:41.453579,abortion laws in california how many weeks,how many weeks can you have an abortion in california,not,get +abortion,"('how many weeks can you not have an abortion in california', 'how far into pregnancy can you have an abortion in california')",how many weeks can you not have an abortion in california,how far into pregnancy can you have an abortion in california,3,4,google,2026-03-12 20:02:41.453579,abortion laws in california how many weeks,how many weeks can you have an abortion in california,not,far into pregnancy +abortion,"('how many weeks can you not have an abortion in california', 'how far along can you get an abortion california')",how many weeks can you not have an abortion in california,how far along can you get an abortion california,4,4,google,2026-03-12 20:02:41.453579,abortion laws in california how many weeks,how many weeks can you have an abortion in california,not,far along get +abortion,"('how many weeks can you not have an abortion in california', 'what states allow abortion after 12 weeks')",how many weeks can you not have an abortion in california,what states allow abortion after 12 weeks,5,4,google,2026-03-12 20:02:41.453579,abortion laws in california how many weeks,how many weeks can you have an abortion in california,not,what states allow after 12 +abortion,"('how many weeks can you not have an abortion in california', ""how many weeks until you can't have an abortion in california"")",how many weeks can you not have an abortion in california,how many weeks until you can't have an abortion in california,6,4,google,2026-03-12 20:02:41.453579,abortion laws in california how many weeks,how many weeks can you have an abortion in california,not,until can't +abortion,"('after how many weeks can you have an abortion in california', 'after how many weeks can you not have an abortion in california')",after how many weeks can you have an abortion in california,after how many weeks can you not have an abortion in california,1,4,google,2026-03-12 20:02:42.896612,abortion laws in california how many weeks,how many weeks can you have an abortion in california,after,not +abortion,"('after how many weeks can you have an abortion in california', 'how many weeks can you get an abortion california')",after how many weeks can you have an abortion in california,how many weeks can you get an abortion california,2,4,google,2026-03-12 20:02:42.896612,abortion laws in california how many weeks,how many weeks can you have an abortion in california,after,get +abortion,"('after how many weeks can you have an abortion in california', 'how far along can you get an abortion california')",after how many weeks can you have an abortion in california,how far along can you get an abortion california,3,4,google,2026-03-12 20:02:42.896612,abortion laws in california how many weeks,how many weeks can you have an abortion in california,after,far along get +abortion,"('after how many weeks can you have an abortion in california', 'at how many weeks can you have an abortion in ca')",after how many weeks can you have an abortion in california,at how many weeks can you have an abortion in ca,4,4,google,2026-03-12 20:02:42.896612,abortion laws in california how many weeks,how many weeks can you have an abortion in california,after,at ca +abortion,"('how many weeks can you get an abortion pill in california', 'how many weeks can you get an abortion california')",how many weeks can you get an abortion pill in california,how many weeks can you get an abortion california,1,4,google,2026-03-12 20:02:43.774833,abortion laws in california how many weeks,how many weeks can you have an abortion in california,get pill,get pill +abortion,"('how many weeks can you get an abortion pill in california', 'how far along can you get an abortion california')",how many weeks can you get an abortion pill in california,how far along can you get an abortion california,2,4,google,2026-03-12 20:02:43.774833,abortion laws in california how many weeks,how many weeks can you have an abortion in california,get pill,far along +abortion,"('how many weeks can you get an abortion pill in california', 'how many weeks can you get an abortion in california 2022')",how many weeks can you get an abortion pill in california,how many weeks can you get an abortion in california 2022,3,4,google,2026-03-12 20:02:43.774833,abortion laws in california how many weeks,how many weeks can you have an abortion in california,get pill,2022 +abortion,"('how many weeks can you get an abortion pill in california', 'how many weeks can you get an abortion in ca')",how many weeks can you get an abortion pill in california,how many weeks can you get an abortion in ca,4,4,google,2026-03-12 20:02:43.774833,abortion laws in california how many weeks,how many weeks can you have an abortion in california,get pill,ca +abortion,"('how many weeks can you not get an abortion in california', 'how many weeks can you get an abortion california')",how many weeks can you not get an abortion in california,how many weeks can you get an abortion california,1,4,google,2026-03-12 20:02:45.137908,abortion laws in california how many weeks,how many weeks can you have an abortion in california,not get,not get +abortion,"('how many weeks can you not get an abortion in california', 'how many weeks can you have an abortion in california')",how many weeks can you not get an abortion in california,how many weeks can you have an abortion in california,2,4,google,2026-03-12 20:02:45.137908,abortion laws in california how many weeks,how many weeks can you have an abortion in california,not get,have +abortion,"('how many weeks can you not get an abortion in california', 'how far along can you get an abortion california')",how many weeks can you not get an abortion in california,how far along can you get an abortion california,3,4,google,2026-03-12 20:02:45.137908,abortion laws in california how many weeks,how many weeks can you have an abortion in california,not get,far along +abortion,"('how many weeks can you not get an abortion in california', 'when can you not get an abortion in california')",how many weeks can you not get an abortion in california,when can you not get an abortion in california,4,4,google,2026-03-12 20:02:45.137908,abortion laws in california how many weeks,how many weeks can you have an abortion in california,not get,when +abortion,"('how many weeks can you not get an abortion in california', 'how many months can you get an abortion in california')",how many weeks can you not get an abortion in california,how many months can you get an abortion in california,5,4,google,2026-03-12 20:02:45.137908,abortion laws in california how many weeks,how many weeks can you have an abortion in california,not get,months +abortion,"('how many weeks can you not get an abortion in california', 'how many weeks can you get an abortion in california 2022')",how many weeks can you not get an abortion in california,how many weeks can you get an abortion in california 2022,6,4,google,2026-03-12 20:02:45.137908,abortion laws in california how many weeks,how many weeks can you have an abortion in california,not get,2022 +abortion,"('how many weeks can you not get an abortion in california', 'how many weeks can you get an abortion in ca')",how many weeks can you not get an abortion in california,how many weeks can you get an abortion in ca,7,4,google,2026-03-12 20:02:45.137908,abortion laws in california how many weeks,how many weeks can you have an abortion in california,not get,ca +abortion,"('after how many weeks can you get an abortion in california', 'after how many weeks can you not get an abortion in california')",after how many weeks can you get an abortion in california,after how many weeks can you not get an abortion in california,1,4,google,2026-03-12 20:02:46.233349,abortion laws in california how many weeks,how many weeks can you have an abortion in california,after get,not +abortion,"('after how many weeks can you get an abortion in california', 'how far along can you get an abortion california')",after how many weeks can you get an abortion in california,how far along can you get an abortion california,2,4,google,2026-03-12 20:02:46.233349,abortion laws in california how many weeks,how many weeks can you have an abortion in california,after get,far along +abortion,"('after how many weeks can you get an abortion in california', 'how many weeks out can you get an abortion')",after how many weeks can you get an abortion in california,how many weeks out can you get an abortion,3,4,google,2026-03-12 20:02:46.233349,abortion laws in california how many weeks,how many weeks can you have an abortion in california,after get,out +abortion,"('after how many weeks can you get an abortion in california', 'how many months can you get an abortion in california')",after how many weeks can you get an abortion in california,how many months can you get an abortion in california,4,4,google,2026-03-12 20:02:46.233349,abortion laws in california how many weeks,how many weeks can you have an abortion in california,after get,months +abortion,"('after how many weeks can you get an abortion in california', 'at how many weeks can you get an abortion in ca')",after how many weeks can you get an abortion in california,at how many weeks can you get an abortion in ca,5,4,google,2026-03-12 20:02:46.233349,abortion laws in california how many weeks,how many weeks can you have an abortion in california,after get,at ca +abortion,"('how many weeks can you wait to get an abortion in california', 'how many weeks can you get an abortion california')",how many weeks can you wait to get an abortion in california,how many weeks can you get an abortion california,1,4,google,2026-03-12 20:02:47.426192,abortion laws in california how many weeks,how many weeks can you have an abortion in california,wait to get,wait to get +abortion,"('how many weeks can you wait to get an abortion in california', 'how far along can you get an abortion california')",how many weeks can you wait to get an abortion in california,how far along can you get an abortion california,2,4,google,2026-03-12 20:02:47.426192,abortion laws in california how many weeks,how many weeks can you have an abortion in california,wait to get,far along +abortion,"('how many weeks can you wait to get an abortion in california', 'how many weeks can you have an abortion in california')",how many weeks can you wait to get an abortion in california,how many weeks can you have an abortion in california,3,4,google,2026-03-12 20:02:47.426192,abortion laws in california how many weeks,how many weeks can you have an abortion in california,wait to get,have +abortion,"('how many weeks can you wait to get an abortion in california', 'how many weeks can you get an abortion in california 2022')",how many weeks can you wait to get an abortion in california,how many weeks can you get an abortion in california 2022,4,4,google,2026-03-12 20:02:47.426192,abortion laws in california how many weeks,how many weeks can you have an abortion in california,wait to get,2022 +abortion,"('how many weeks can you wait to get an abortion in california', 'how many weeks can you get an abortion in ca')",how many weeks can you wait to get an abortion in california,how many weeks can you get an abortion in ca,5,4,google,2026-03-12 20:02:47.426192,abortion laws in california how many weeks,how many weeks can you have an abortion in california,wait to get,ca +abortion,"('up to how many weeks can you get an abortion california', 'how far along can you get an abortion california')",up to how many weeks can you get an abortion california,how far along can you get an abortion california,1,4,google,2026-03-12 20:02:48.998123,abortion laws in california how many weeks,how many weeks can you get an abortion california,up to,far along +abortion,"('up to how many weeks can you get an abortion california', 'how many weeks can you have an abortion in california')",up to how many weeks can you get an abortion california,how many weeks can you have an abortion in california,2,4,google,2026-03-12 20:02:48.998123,abortion laws in california how many weeks,how many weeks can you get an abortion california,up to,have in +abortion,"('up to how many weeks can you get an abortion california', 'up to how many weeks can you have an abortion in ca')",up to how many weeks can you get an abortion california,up to how many weeks can you have an abortion in ca,3,4,google,2026-03-12 20:02:48.998123,abortion laws in california how many weeks,how many weeks can you get an abortion california,up to,have in ca +abortion,"('up to how many weeks can you get an abortion california', 'up to how many weeks can you get an abortion')",up to how many weeks can you get an abortion california,up to how many weeks can you get an abortion,4,4,google,2026-03-12 20:02:48.998123,abortion laws in california how many weeks,how many weeks can you get an abortion california,up to,up to +abortion,"('how many weeks do you have to get an abortion california', 'how many weeks can you get an abortion california')",how many weeks do you have to get an abortion california,how many weeks can you get an abortion california,1,4,google,2026-03-12 20:02:50.045100,abortion laws in california how many weeks,how many weeks can you get an abortion california,do have to,can +abortion,"('how many weeks do you have to get an abortion california', 'how far along can you get an abortion california')",how many weeks do you have to get an abortion california,how far along can you get an abortion california,2,4,google,2026-03-12 20:02:50.045100,abortion laws in california how many weeks,how many weeks can you get an abortion california,do have to,far along can +abortion,"('how many weeks do you have to get an abortion california', 'how many months can you get an abortion in california')",how many weeks do you have to get an abortion california,how many months can you get an abortion in california,3,4,google,2026-03-12 20:02:50.045100,abortion laws in california how many weeks,how many weeks can you get an abortion california,do have to,months can in +abortion,"('how many weeks do you have to get an abortion california', 'how many weeks can you get an abortion in california 2022')",how many weeks do you have to get an abortion california,how many weeks can you get an abortion in california 2022,4,4,google,2026-03-12 20:02:50.045100,abortion laws in california how many weeks,how many weeks can you get an abortion california,do have to,can in 2022 +abortion,"(""how many weeks until you can't get an abortion in california"", 'how many weeks until you can get an abortion in california')",how many weeks until you can't get an abortion in california,how many weeks until you can get an abortion in california,1,4,google,2026-03-12 20:02:51.244999,abortion laws in california how many weeks,how many weeks can you get an abortion california,until can't in,can +abortion,"(""how many weeks until you can't get an abortion in california"", 'how many weeks until you can t get an abortion anymore in california')",how many weeks until you can't get an abortion in california,how many weeks until you can t get an abortion anymore in california,2,4,google,2026-03-12 20:02:51.244999,abortion laws in california how many weeks,how many weeks can you get an abortion california,until can't in,can t anymore +abortion,"(""how many weeks until you can't get an abortion in california"", 'how far along can you get an abortion california')",how many weeks until you can't get an abortion in california,how far along can you get an abortion california,3,4,google,2026-03-12 20:02:51.244999,abortion laws in california how many weeks,how many weeks can you get an abortion california,until can't in,far along can +abortion,"(""how many weeks until you can't get an abortion in california"", 'how many months can you get an abortion in california')",how many weeks until you can't get an abortion in california,how many months can you get an abortion in california,4,4,google,2026-03-12 20:02:51.244999,abortion laws in california how many weeks,how many weeks can you get an abortion california,until can't in,months can +abortion,"(""how many weeks until you can't get an abortion in california"", ""how many weeks until you can't have an abortion in california"")",how many weeks until you can't get an abortion in california,how many weeks until you can't have an abortion in california,5,4,google,2026-03-12 20:02:51.244999,abortion laws in california how many weeks,how many weeks can you get an abortion california,until can't in,have +abortion,"(""how many weeks until you can't get an abortion in california"", 'how many weeks can you get an abortion in california 2022')",how many weeks until you can't get an abortion in california,how many weeks can you get an abortion in california 2022,6,4,google,2026-03-12 20:02:51.244999,abortion laws in california how many weeks,how many weeks can you get an abortion california,until can't in,can 2022 +abortion,"(""how many weeks until you can't get an abortion in california"", ""how long until you can't get an abortion in california"")",how many weeks until you can't get an abortion in california,how long until you can't get an abortion in california,7,4,google,2026-03-12 20:02:51.244999,abortion laws in california how many weeks,how many weeks can you get an abortion california,until can't in,long +abortion,"('california abortion laws how many weeks 2021 california', 'california abortion laws how many weeks 2021 california law')",california abortion laws how many weeks 2021 california,california abortion laws how many weeks 2021 california law,1,4,google,2026-03-12 20:02:52.625857,abortion laws in california how many weeks,california abortion laws how many weeks 2021,2021,law +abortion,"('california abortion laws how many weeks 2021 california', 'california abortion laws how many weeks 2021 california abortion laws')",california abortion laws how many weeks 2021 california,california abortion laws how many weeks 2021 california abortion laws,2,4,google,2026-03-12 20:02:52.625857,abortion laws in california how many weeks,california abortion laws how many weeks 2021,2021,2021 +abortion,"('california abortion laws how many weeks 2021 california', 'california abortion laws how many weeks 2021 california abortion')",california abortion laws how many weeks 2021 california,california abortion laws how many weeks 2021 california abortion,3,4,google,2026-03-12 20:02:52.625857,abortion laws in california how many weeks,california abortion laws how many weeks 2021,2021,2021 +abortion,"('california abortion laws how many weeks 2021 law', 'california abortion laws how many weeks 2021 laws')",california abortion laws how many weeks 2021 law,california abortion laws how many weeks 2021 laws,1,4,google,2026-03-12 20:02:53.955224,abortion laws in california how many weeks,california abortion laws how many weeks 2021,law,law +abortion,"('california abortion laws how many weeks 2021 law', 'california abortion laws how many weeks 2021 lawsuit')",california abortion laws how many weeks 2021 law,california abortion laws how many weeks 2021 lawsuit,2,4,google,2026-03-12 20:02:53.955224,abortion laws in california how many weeks,california abortion laws how many weeks 2021,law,lawsuit +abortion,"('california abortion laws how many weeks 2021 law', 'california abortion laws how many weeks 2021 law change')",california abortion laws how many weeks 2021 law,california abortion laws how many weeks 2021 law change,3,4,google,2026-03-12 20:02:53.955224,abortion laws in california how many weeks,california abortion laws how many weeks 2021,law,change +abortion,"('california abortion laws how many weeks 2021 law', 'california abortion laws how many weeks 2021 law update')",california abortion laws how many weeks 2021 law,california abortion laws how many weeks 2021 law update,4,4,google,2026-03-12 20:02:53.955224,abortion laws in california how many weeks,california abortion laws how many weeks 2021,law,update +abortion,"('california abortion laws how many weeks 2021 law', 'california abortion laws how many weeks 2021 law 2022')",california abortion laws how many weeks 2021 law,california abortion laws how many weeks 2021 law 2022,5,4,google,2026-03-12 20:02:53.955224,abortion laws in california how many weeks,california abortion laws how many weeks 2021,law,2022 +abortion,"('california abortion laws how many weeks 2021 law', 'california abortion laws how many weeks 2021 law 2022 28 days')",california abortion laws how many weeks 2021 law,california abortion laws how many weeks 2021 law 2022 28 days,6,4,google,2026-03-12 20:02:53.955224,abortion laws in california how many weeks,california abortion laws how many weeks 2021,law,2022 28 days +abortion,"('california abortion laws how many weeks 2021 law', 'california abortion laws how many weeks 2021 law 28')",california abortion laws how many weeks 2021 law,california abortion laws how many weeks 2021 law 28,7,4,google,2026-03-12 20:02:53.955224,abortion laws in california how many weeks,california abortion laws how many weeks 2021,law,28 +abortion,"('california abortion laws how many weeks 2021 law', 'california abortion laws how many weeks 2021 law 2002')",california abortion laws how many weeks 2021 law,california abortion laws how many weeks 2021 law 2002,8,4,google,2026-03-12 20:02:53.955224,abortion laws in california how many weeks,california abortion laws how many weeks 2021,law,2002 +abortion,"('california abortion laws how many weeks 2021 law', 'california abortion laws how many weeks 2021 law 2023')",california abortion laws how many weeks 2021 law,california abortion laws how many weeks 2021 law 2023,9,4,google,2026-03-12 20:02:53.955224,abortion laws in california how many weeks,california abortion laws how many weeks 2021,law,2023 +abortion,"('california abortion laws how many weeks 2021 law', 'california abortion laws how many weeks 2021 law results')",california abortion laws how many weeks 2021 law,california abortion laws how many weeks 2021 law results,10,4,google,2026-03-12 20:02:53.955224,abortion laws in california how many weeks,california abortion laws how many weeks 2021,law,results +abortion,"('california abortion laws how many weeks 2021 to present', 'california abortion laws how many weeks 2021 to present today')",california abortion laws how many weeks 2021 to present,california abortion laws how many weeks 2021 to present today,1,4,google,2026-03-12 20:02:55.154235,abortion laws in california how many weeks,california abortion laws how many weeks 2021,to present,today +abortion,"('california abortion laws how many weeks 2021 to present', 'california abortion laws how many weeks 2021 to present date')",california abortion laws how many weeks 2021 to present,california abortion laws how many weeks 2021 to present date,2,4,google,2026-03-12 20:02:55.154235,abortion laws in california how many weeks,california abortion laws how many weeks 2021,to present,date +abortion,"('california abortion laws how many weeks 2021 to present', 'california abortion laws how many weeks 2021 to present year')",california abortion laws how many weeks 2021 to present,california abortion laws how many weeks 2021 to present year,3,4,google,2026-03-12 20:02:55.154235,abortion laws in california how many weeks,california abortion laws how many weeks 2021,to present,year +abortion,"('california abortion laws how many weeks 2021 to present', 'california abortion laws how many weeks 2021 to present now')",california abortion laws how many weeks 2021 to present,california abortion laws how many weeks 2021 to present now,4,4,google,2026-03-12 20:02:55.154235,abortion laws in california how many weeks,california abortion laws how many weeks 2021,to present,now +abortion,"('california abortion laws how many weeks 2021-2024', 'california abortion laws how many weeks 2020')",california abortion laws how many weeks 2021-2024,california abortion laws how many weeks 2020,1,4,google,2026-03-12 20:02:56.194285,abortion laws in california how many weeks,california abortion laws how many weeks 2021,2021-2024,2020 +abortion,"('california abortion laws how many weeks 2021-2024', 'california abortion laws how many weeks 2021')",california abortion laws how many weeks 2021-2024,california abortion laws how many weeks 2021,2,4,google,2026-03-12 20:02:56.194285,abortion laws in california how many weeks,california abortion laws how many weeks 2021,2021-2024,2021 +abortion,"('california abortion laws how many weeks 2021-2024', 'california abortion laws how many weeks 2022')",california abortion laws how many weeks 2021-2024,california abortion laws how many weeks 2022,3,4,google,2026-03-12 20:02:56.194285,abortion laws in california how many weeks,california abortion laws how many weeks 2021,2021-2024,2022 +abortion,"('california abortion laws how many weeks 2020 to present', 'california abortion laws how many weeks 2020 to present today')",california abortion laws how many weeks 2020 to present,california abortion laws how many weeks 2020 to present today,1,4,google,2026-03-12 20:02:57.011172,abortion laws in california how many weeks,california abortion laws how many weeks 2020,to present,today +abortion,"('california abortion laws how many weeks 2020 to present', 'california abortion laws how many weeks 2020 to present date')",california abortion laws how many weeks 2020 to present,california abortion laws how many weeks 2020 to present date,2,4,google,2026-03-12 20:02:57.011172,abortion laws in california how many weeks,california abortion laws how many weeks 2020,to present,date +abortion,"('california abortion laws how many weeks 2020 to present', 'california abortion laws how many weeks 2020 to present year')",california abortion laws how many weeks 2020 to present,california abortion laws how many weeks 2020 to present year,3,4,google,2026-03-12 20:02:57.011172,abortion laws in california how many weeks,california abortion laws how many weeks 2020,to present,year +abortion,"('california abortion laws how many weeks 2020 to present', 'california abortion laws how many weeks 2020 to present 2')",california abortion laws how many weeks 2020 to present,california abortion laws how many weeks 2020 to present 2,4,4,google,2026-03-12 20:02:57.011172,abortion laws in california how many weeks,california abortion laws how many weeks 2020,to present,2 +abortion,"('california abortion laws how many weeks 2020-2024', 'california abortion laws how many weeks 2020')",california abortion laws how many weeks 2020-2024,california abortion laws how many weeks 2020,1,4,google,2026-03-12 20:02:57.839806,abortion laws in california how many weeks,california abortion laws how many weeks 2020,2020-2024,2020 +abortion,"('california abortion laws how many weeks 2020-2024', 'california abortion laws how many weeks 2021')",california abortion laws how many weeks 2020-2024,california abortion laws how many weeks 2021,2,4,google,2026-03-12 20:02:57.839806,abortion laws in california how many weeks,california abortion laws how many weeks 2020,2020-2024,2021 +abortion,"('california abortion laws how many weeks 2020-2024', 'california abortion laws how many weeks 2022')",california abortion laws how many weeks 2020-2024,california abortion laws how many weeks 2022,3,4,google,2026-03-12 20:02:57.839806,abortion laws in california how many weeks,california abortion laws how many weeks 2020,2020-2024,2022 +abortion,"('california abortion laws how many weeks 2020-2024', 'california abortion laws how many weeks')",california abortion laws how many weeks 2020-2024,california abortion laws how many weeks,4,4,google,2026-03-12 20:02:57.839806,abortion laws in california how many weeks,california abortion laws how many weeks 2020,2020-2024,2020-2024 +abortion,"('california abortion laws how many weeks 2020 california', 'california abortion laws how many weeks 2020 california abortion laws')",california abortion laws how many weeks 2020 california,california abortion laws how many weeks 2020 california abortion laws,1,4,google,2026-03-12 20:02:59.304608,abortion laws in california how many weeks,california abortion laws how many weeks 2020,2020,2020 +abortion,"('california abortion laws how many weeks 2020 california', 'california abortion laws how many weeks 2020 california law')",california abortion laws how many weeks 2020 california,california abortion laws how many weeks 2020 california law,2,4,google,2026-03-12 20:02:59.304608,abortion laws in california how many weeks,california abortion laws how many weeks 2020,2020,law +abortion,"('california abortion laws how many weeks 2020 california', 'california abortion laws how many weeks 2020 california abortion')",california abortion laws how many weeks 2020 california,california abortion laws how many weeks 2020 california abortion,3,4,google,2026-03-12 20:02:59.304608,abortion laws in california how many weeks,california abortion laws how many weeks 2020,2020,2020 +abortion,"('california abortion laws how many weeks 2020 law', 'california abortion laws how many weeks 2020 laws')",california abortion laws how many weeks 2020 law,california abortion laws how many weeks 2020 laws,1,4,google,2026-03-12 20:03:00.569874,abortion laws in california how many weeks,california abortion laws how many weeks 2020,law,law +abortion,"('california abortion laws how many weeks 2020 law', 'california abortion laws how many weeks 2020 lawsuit')",california abortion laws how many weeks 2020 law,california abortion laws how many weeks 2020 lawsuit,2,4,google,2026-03-12 20:03:00.569874,abortion laws in california how many weeks,california abortion laws how many weeks 2020,law,lawsuit +abortion,"('california abortion laws how many weeks 2020 law', 'california abortion laws how many weeks 2020 law changes')",california abortion laws how many weeks 2020 law,california abortion laws how many weeks 2020 law changes,3,4,google,2026-03-12 20:03:00.569874,abortion laws in california how many weeks,california abortion laws how many weeks 2020,law,changes +abortion,"('california abortion laws how many weeks 2020 law', 'california abortion laws how many weeks 2020 law 2022')",california abortion laws how many weeks 2020 law,california abortion laws how many weeks 2020 law 2022,4,4,google,2026-03-12 20:03:00.569874,abortion laws in california how many weeks,california abortion laws how many weeks 2020,law,2022 +abortion,"('california abortion laws how many weeks 2020 law', 'california abortion laws how many weeks 2020 law 2002')",california abortion laws how many weeks 2020 law,california abortion laws how many weeks 2020 law 2002,5,4,google,2026-03-12 20:03:00.569874,abortion laws in california how many weeks,california abortion laws how many weeks 2020,law,2002 +abortion,"('california abortion laws how many weeks 2020 law', 'california abortion laws how many weeks 2020 law 28')",california abortion laws how many weeks 2020 law,california abortion laws how many weeks 2020 law 28,6,4,google,2026-03-12 20:03:00.569874,abortion laws in california how many weeks,california abortion laws how many weeks 2020,law,28 +abortion,"('california abortion laws how many weeks 2020 law', 'california abortion laws how many weeks 2020 law 2021')",california abortion laws how many weeks 2020 law,california abortion laws how many weeks 2020 law 2021,7,4,google,2026-03-12 20:03:00.569874,abortion laws in california how many weeks,california abortion laws how many weeks 2020,law,2021 +abortion,"('california abortion laws how many weeks 2020 law', 'california abortion laws how many weeks 2020 law 2023')",california abortion laws how many weeks 2020 law,california abortion laws how many weeks 2020 law 2023,8,4,google,2026-03-12 20:03:00.569874,abortion laws in california how many weeks,california abortion laws how many weeks 2020,law,2023 +abortion,"('california abortion laws how many weeks 2020 law', 'california abortion laws how many weeks 2020 law time limit 2022')",california abortion laws how many weeks 2020 law,california abortion laws how many weeks 2020 law time limit 2022,9,4,google,2026-03-12 20:03:00.569874,abortion laws in california how many weeks,california abortion laws how many weeks 2020,law,time limit 2022 +abortion,"('california abortion laws how many weeks 2020 law', 'california abortion laws how many weeks 2020 law 9 months')",california abortion laws how many weeks 2020 law,california abortion laws how many weeks 2020 law 9 months,10,4,google,2026-03-12 20:03:00.569874,abortion laws in california how many weeks,california abortion laws how many weeks 2020,law,9 months +abortion,"('california abortion laws how many weeks 2022 california', 'california abortion laws how many weeks 2022 california abortion laws')",california abortion laws how many weeks 2022 california,california abortion laws how many weeks 2022 california abortion laws,1,4,google,2026-03-12 20:03:02.067963,abortion laws in california how many weeks,california abortion laws how many weeks 2022,2022,2022 +abortion,"('california abortion laws how many weeks 2022 california', 'california abortion laws how many weeks 2022 california law')",california abortion laws how many weeks 2022 california,california abortion laws how many weeks 2022 california law,2,4,google,2026-03-12 20:03:02.067963,abortion laws in california how many weeks,california abortion laws how many weeks 2022,2022,law +abortion,"('california abortion laws how many weeks 2022 california', 'california abortion laws how many weeks 2022 california abortion')",california abortion laws how many weeks 2022 california,california abortion laws how many weeks 2022 california abortion,3,4,google,2026-03-12 20:03:02.067963,abortion laws in california how many weeks,california abortion laws how many weeks 2022,2022,2022 +abortion,"('california abortion laws how many weeks 2022-2023', 'california abortion laws how many weeks 2022 2023')",california abortion laws how many weeks 2022-2023,california abortion laws how many weeks 2022 2023,1,4,google,2026-03-12 20:03:02.927480,abortion laws in california how many weeks,california abortion laws how many weeks 2022,2022-2023,2022 2023 +abortion,"('california abortion laws how many weeks 2022 to present', 'california abortion laws how many weeks 2022 to present date')",california abortion laws how many weeks 2022 to present,california abortion laws how many weeks 2022 to present date,1,4,google,2026-03-12 20:03:03.864245,abortion laws in california how many weeks,california abortion laws how many weeks 2022,to present,date +abortion,"('california abortion laws how many weeks 2022 to present', 'california abortion laws how many weeks 2022 to present today')",california abortion laws how many weeks 2022 to present,california abortion laws how many weeks 2022 to present today,2,4,google,2026-03-12 20:03:03.864245,abortion laws in california how many weeks,california abortion laws how many weeks 2022,to present,today +abortion,"('california abortion laws how many weeks 2022 to present', 'california abortion laws how many weeks 2022 to present year')",california abortion laws how many weeks 2022 to present,california abortion laws how many weeks 2022 to present year,3,4,google,2026-03-12 20:03:03.864245,abortion laws in california how many weeks,california abortion laws how many weeks 2022,to present,year +abortion,"('california abortion laws how many weeks 2022 to present', 'california abortion laws how many weeks 2022 to present 2')",california abortion laws how many weeks 2022 to present,california abortion laws how many weeks 2022 to present 2,4,4,google,2026-03-12 20:03:03.864245,abortion laws in california how many weeks,california abortion laws how many weeks 2022,to present,2 +abortion,"('california abortion laws how many weeks 20224', 'california abortion laws how many weeks 20224 california')",california abortion laws how many weeks 20224,california abortion laws how many weeks 20224 california,1,4,google,2026-03-12 20:03:05.033595,abortion laws in california how many weeks,california abortion laws how many weeks 2022,20224,20224 +abortion,"('california abortion laws how many weeks 20224', 'california abortion laws how many weeks 20224-25')",california abortion laws how many weeks 20224,california abortion laws how many weeks 20224-25,2,4,google,2026-03-12 20:03:05.033595,abortion laws in california how many weeks,california abortion laws how many weeks 2022,20224,20224-25 +abortion,"('california abortion laws how many weeks 20224', 'california abortion laws how many weeks 20224-202')",california abortion laws how many weeks 20224,california abortion laws how many weeks 20224-202,3,4,google,2026-03-12 20:03:05.033595,abortion laws in california how many weeks,california abortion laws how many weeks 2022,20224,20224-202 +abortion,"('california abortion laws how many weeks 20224', 'california abortion laws how many weeks 20224 to present')",california abortion laws how many weeks 20224,california abortion laws how many weeks 20224 to present,4,4,google,2026-03-12 20:03:05.033595,abortion laws in california how many weeks,california abortion laws how many weeks 2022,20224,to present +abortion,"('california abortion laws how many weeks 2022 text', 'california abortion laws how many weeks 2022 textbook')",california abortion laws how many weeks 2022 text,california abortion laws how many weeks 2022 textbook,1,4,google,2026-03-12 20:03:06.335436,abortion laws in california how many weeks,california abortion laws how many weeks 2022,text,textbook +abortion,"('california abortion laws how many weeks 2022 text', 'california abortion laws how many weeks 2022 texts')",california abortion laws how many weeks 2022 text,california abortion laws how many weeks 2022 texts,2,4,google,2026-03-12 20:03:06.335436,abortion laws in california how many weeks,california abortion laws how many weeks 2022,text,texts +abortion,"('california abortion laws how many weeks 2022 text', 'california abortion laws how many weeks 2022 text pdf')",california abortion laws how many weeks 2022 text,california abortion laws how many weeks 2022 text pdf,3,4,google,2026-03-12 20:03:06.335436,abortion laws in california how many weeks,california abortion laws how many weeks 2022,text,pdf +abortion,"('california abortion laws how many weeks 2022 text', 'california abortion laws how many weeks 2022 text law')",california abortion laws how many weeks 2022 text,california abortion laws how many weeks 2022 text law,4,4,google,2026-03-12 20:03:06.335436,abortion laws in california how many weeks,california abortion laws how many weeks 2022,text,law +abortion,"('is abortion banned in california 2024', 'is abortion legal in california 2024')",is abortion banned in california 2024,is abortion legal in california 2024,1,4,google,2026-03-12 20:03:07.593384,abortion laws in california 2024,abortion legal in california 2024,is banned,legal +abortion,"('is abortion banned in california 2024', 'is abortion illegal in california 2024')",is abortion banned in california 2024,is abortion illegal in california 2024,2,4,google,2026-03-12 20:03:07.593384,abortion laws in california 2024,abortion legal in california 2024,is banned,illegal +abortion,"('is abortion banned in california 2024', 'what is the abortion law in california 2024')",is abortion banned in california 2024,what is the abortion law in california 2024,3,4,google,2026-03-12 20:03:07.593384,abortion laws in california 2024,abortion legal in california 2024,is banned,what the law +abortion,"('is abortion banned in california 2024', 'abortion laws in california 2024 how many weeks')",is abortion banned in california 2024,abortion laws in california 2024 how many weeks,4,4,google,2026-03-12 20:03:07.593384,abortion laws in california 2024,abortion legal in california 2024,is banned,laws how many weeks +abortion,"('is abortion banned in california 2024', 'which states banned abortion')",is abortion banned in california 2024,which states banned abortion,5,4,google,2026-03-12 20:03:07.593384,abortion laws in california 2024,abortion legal in california 2024,is banned,which states +abortion,"('is abortion banned in california 2024', 'is abortion illegal in california 2023')",is abortion banned in california 2024,is abortion illegal in california 2023,6,4,google,2026-03-12 20:03:07.593384,abortion laws in california 2024,abortion legal in california 2024,is banned,illegal 2023 +abortion,"('is abortion banned in california 2024', 'is abortion legal in california 2023')",is abortion banned in california 2024,is abortion legal in california 2023,7,4,google,2026-03-12 20:03:07.593384,abortion laws in california 2024,abortion legal in california 2024,is banned,legal 2023 +abortion,"('is abortion banned in california 2024', 'is abortion going to be banned in california')",is abortion banned in california 2024,is abortion going to be banned in california,8,4,google,2026-03-12 20:03:07.593384,abortion laws in california 2024,abortion legal in california 2024,is banned,going to be +abortion,"('is abortion banned in california 2024', 'is california banning abortions 2022')",is abortion banned in california 2024,is california banning abortions 2022,9,4,google,2026-03-12 20:03:07.593384,abortion laws in california 2024,abortion legal in california 2024,is banned,banning abortions 2022 +abortion,"('abortion legal in california 2022', 'abortion legal in california 2022 california')",abortion legal in california 2022,abortion legal in california 2022 california,1,4,google,2026-03-12 20:03:08.931761,abortion laws in california 2024,abortion legal in california 2024,2022,2022 +abortion,"('abortion legal in california 2022', 'abortion legal in california 2022 vs 2024')",abortion legal in california 2022,abortion legal in california 2022 vs 2024,2,4,google,2026-03-12 20:03:08.931761,abortion laws in california 2024,abortion legal in california 2024,2022,vs 2024 +abortion,"('abortion legal in california 2022', 'abortion legal in california 2022-2023')",abortion legal in california 2022,abortion legal in california 2022-2023,3,4,google,2026-03-12 20:03:08.931761,abortion laws in california 2024,abortion legal in california 2024,2022,2022-2023 +abortion,"('abortion legal in california 2022', 'abortion legal in california 2022 weeks')",abortion legal in california 2022,abortion legal in california 2022 weeks,4,4,google,2026-03-12 20:03:08.931761,abortion laws in california 2024,abortion legal in california 2024,2022,weeks +abortion,"('abortion legal in california 2022', 'abortion legal in california 2022 how many weeks')",abortion legal in california 2022,abortion legal in california 2022 how many weeks,5,4,google,2026-03-12 20:03:08.931761,abortion laws in california 2024,abortion legal in california 2024,2022,how many weeks +abortion,"('abortion legal in california 2022', 'abortion legal in california 2022 text')",abortion legal in california 2022,abortion legal in california 2022 text,6,4,google,2026-03-12 20:03:08.931761,abortion laws in california 2024,abortion legal in california 2024,2022,text +abortion,"('new california abortion laws 2024 update today', 'new abortion laws in california')",new california abortion laws 2024 update today,new abortion laws in california,1,4,google,2026-03-12 20:03:09.893698,abortion laws in california 2024,new abortion laws in california 2024 update,today,in +abortion,"('new california abortion laws 2024 update today', 'new california abortion laws 2021')",new california abortion laws 2024 update today,new california abortion laws 2021,2,4,google,2026-03-12 20:03:09.893698,abortion laws in california 2024,new abortion laws in california 2024 update,today,2021 +abortion,"('new abortion laws in california 2022', 'new abortion laws in california 20224')",new abortion laws in california 2022,new abortion laws in california 20224,1,4,google,2026-03-12 20:03:11.269563,abortion laws in california 2024,new abortion laws in california 2024 update,2022,20224 +abortion,"('new abortion laws in california 2022', 'new abortion laws in california 2022 california')",new abortion laws in california 2022,new abortion laws in california 2022 california,2,4,google,2026-03-12 20:03:11.269563,abortion laws in california 2024,new abortion laws in california 2024 update,2022,2022 +abortion,"('new abortion laws in california 2022', 'new abortion laws in california 2022-2023')",new abortion laws in california 2022,new abortion laws in california 2022-2023,3,4,google,2026-03-12 20:03:11.269563,abortion laws in california 2024,new abortion laws in california 2024 update,2022,2022-2023 +abortion,"('new abortion laws in california 2022', 'new abortion laws in california 2022 how many weeks')",new abortion laws in california 2022,new abortion laws in california 2022 how many weeks,4,4,google,2026-03-12 20:03:11.269563,abortion laws in california 2024,new abortion laws in california 2024 update,2022,how many weeks +abortion,"('abortion law california 2023', 'abortion laws in california 2023')",abortion law california 2023,abortion laws in california 2023,1,4,google,2026-03-12 20:03:12.415496,abortion laws in california 2024,abortion law california 2024 update today,2023,laws in +abortion,"('abortion law california 2023', 'new abortion law in california 2023')",abortion law california 2023,new abortion law in california 2023,2,4,google,2026-03-12 20:03:12.415496,abortion laws in california 2024,abortion law california 2024 update today,2023,new in +abortion,"('abortion law california 2023', 'new abortion law in california 2023 overturned')",abortion law california 2023,new abortion law in california 2023 overturned,3,4,google,2026-03-12 20:03:12.415496,abortion laws in california 2024,abortion law california 2024 update today,2023,new in overturned +abortion,"('abortion law california 2023', 'abortion law california 2021')",abortion law california 2023,abortion law california 2021,4,4,google,2026-03-12 20:03:12.415496,abortion laws in california 2024,abortion law california 2024 update today,2023,2021 +abortion,"('abortion law california 2023', 'abortion law california 28 days')",abortion law california 2023,abortion law california 28 days,5,4,google,2026-03-12 20:03:12.415496,abortion laws in california 2024,abortion law california 2024 update today,2023,28 days +abortion,"('abortion law california 2021', 'abortion law california 2021 update')",abortion law california 2021,abortion law california 2021 update,1,4,google,2026-03-12 20:03:13.211817,abortion laws in california 2024,abortion law california 2024 update today,2021,update +abortion,"('abortion law california 2021', 'abortion law california 2021 summary')",abortion law california 2021,abortion law california 2021 summary,2,4,google,2026-03-12 20:03:13.211817,abortion laws in california 2024,abortion law california 2024 update today,2021,summary +abortion,"('is abortion legal in california 2024', 'is abortion illegal in california 2024')",is abortion legal in california 2024,is abortion illegal in california 2024,1,4,google,2026-03-12 20:03:15.638457,abortion laws in california 2024,is abortion illegal in california 2024,legal,illegal +abortion,"('is abortion legal in california 2024', 'is abortion banned in california 2024')",is abortion legal in california 2024,is abortion banned in california 2024,2,4,google,2026-03-12 20:03:15.638457,abortion laws in california 2024,is abortion illegal in california 2024,legal,banned +abortion,"('is abortion legal in california 2024', 'what is the abortion law in california 2024')",is abortion legal in california 2024,what is the abortion law in california 2024,3,4,google,2026-03-12 20:03:15.638457,abortion laws in california 2024,is abortion illegal in california 2024,legal,what the law +abortion,"('is abortion legal in california 2024', 'abortion laws in california 2024 how many weeks')",is abortion legal in california 2024,abortion laws in california 2024 how many weeks,4,4,google,2026-03-12 20:03:15.638457,abortion laws in california 2024,is abortion illegal in california 2024,legal,laws how many weeks +abortion,"('is abortion legal in california 2024', 'new abortion law in california 2024')",is abortion legal in california 2024,new abortion law in california 2024,5,4,google,2026-03-12 20:03:15.638457,abortion laws in california 2024,is abortion illegal in california 2024,legal,new law +abortion,"('is abortion legal in california 2024', 'is abortion legal in california')",is abortion legal in california 2024,is abortion legal in california,6,4,google,2026-03-12 20:03:15.638457,abortion laws in california 2024,is abortion illegal in california 2024,legal,legal +abortion,"('is abortion legal in california 2024', 'when did abortion become legal in california')",is abortion legal in california 2024,when did abortion become legal in california,7,4,google,2026-03-12 20:03:15.638457,abortion laws in california 2024,is abortion illegal in california 2024,legal,when did become +abortion,"('is abortion legal in california 2024', 'is abortion legal in california 2023')",is abortion legal in california 2024,is abortion legal in california 2023,8,4,google,2026-03-12 20:03:15.638457,abortion laws in california 2024,is abortion illegal in california 2024,legal,2023 +abortion,"('is abortion legal in california 2024', 'is abortion legal in california 2021')",is abortion legal in california 2024,is abortion legal in california 2021,9,4,google,2026-03-12 20:03:15.638457,abortion laws in california 2024,is abortion illegal in california 2024,legal,2021 +abortion,"('what is the abortion law in california 2024', 'is abortion legal in california 2024')",what is the abortion law in california 2024,is abortion legal in california 2024,1,4,google,2026-03-12 20:03:17.040362,abortion laws in california 2024,is abortion illegal in california 2024,what the law,legal +abortion,"('what is the abortion law in california 2024', 'what is the abortion law in california 2022')",what is the abortion law in california 2024,what is the abortion law in california 2022,2,4,google,2026-03-12 20:03:17.040362,abortion laws in california 2024,is abortion illegal in california 2024,what the law,2022 +abortion,"('what is the abortion law in california 2024', 'what is the abortion limit in california')",what is the abortion law in california 2024,what is the abortion limit in california,3,4,google,2026-03-12 20:03:17.040362,abortion laws in california 2024,is abortion illegal in california 2024,what the law,limit +abortion,"('what is the abortion law in california 2024', 'what is the abortion law in california')",what is the abortion law in california 2024,what is the abortion law in california,4,4,google,2026-03-12 20:03:17.040362,abortion laws in california 2024,is abortion illegal in california 2024,what the law,what the law +abortion,"('what is the abortion law in california 2024', 'what is the abortion law in ca')",what is the abortion law in california 2024,what is the abortion law in ca,5,4,google,2026-03-12 20:03:17.040362,abortion laws in california 2024,is abortion illegal in california 2024,what the law,ca +abortion,"('abortion law california 2024', 'abortion law california 2024 update today')",abortion law california 2024,abortion law california 2024 update today,1,4,google,2026-03-12 20:03:17.873899,abortion laws in california 2024,abortion limits california 2024,law,update today +abortion,"('abortion law california 2024', 'abortion limits california 2024')",abortion law california 2024,abortion limits california 2024,2,4,google,2026-03-12 20:03:17.873899,abortion laws in california 2024,abortion limits california 2024,law,limits +abortion,"('abortion law california 2024', 'new abortion law california 2024')",abortion law california 2024,new abortion law california 2024,3,4,google,2026-03-12 20:03:17.873899,abortion laws in california 2024,abortion limits california 2024,law,new +abortion,"('abortion law california 2024', 'abortion legal in california 2024')",abortion law california 2024,abortion legal in california 2024,4,4,google,2026-03-12 20:03:17.873899,abortion laws in california 2024,abortion limits california 2024,law,legal in +abortion,"('abortion law california 2024', 'abortion laws in california 2024 how many weeks')",abortion law california 2024,abortion laws in california 2024 how many weeks,5,4,google,2026-03-12 20:03:17.873899,abortion laws in california 2024,abortion limits california 2024,law,laws in how many weeks +abortion,"('abortion law california 2024', 'abortion law california 2023')",abortion law california 2024,abortion law california 2023,6,4,google,2026-03-12 20:03:17.873899,abortion laws in california 2024,abortion limits california 2024,law,2023 +abortion,"('abortion law california 2024', 'abortion law california 28 days')",abortion law california 2024,abortion law california 28 days,7,4,google,2026-03-12 20:03:17.873899,abortion laws in california 2024,abortion limits california 2024,law,28 days +abortion,"('abortion law california 2024', 'abortion law california 2021')",abortion law california 2024,abortion law california 2021,8,4,google,2026-03-12 20:03:17.873899,abortion laws in california 2024,abortion limits california 2024,law,2021 +abortion,"('abortion law california 2024', 'abortion law california new')",abortion law california 2024,abortion law california new,9,4,google,2026-03-12 20:03:17.873899,abortion laws in california 2024,abortion limits california 2024,law,new +abortion,"('new abortion law california 2024', 'new abortion laws in california 2024 update')",new abortion law california 2024,new abortion laws in california 2024 update,1,4,google,2026-03-12 20:03:19.194333,abortion laws in california 2024,abortion limits california 2024,new law,laws in update +abortion,"('new abortion law california 2024', 'abortion law california 2024')",new abortion law california 2024,abortion law california 2024,2,4,google,2026-03-12 20:03:19.194333,abortion laws in california 2024,abortion limits california 2024,new law,new law +abortion,"('new abortion law california 2024', 'abortion law california 2024 update today')",new abortion law california 2024,abortion law california 2024 update today,3,4,google,2026-03-12 20:03:19.194333,abortion laws in california 2024,abortion limits california 2024,new law,update today +abortion,"('new abortion law california 2024', 'new abortion laws in california')",new abortion law california 2024,new abortion laws in california,4,4,google,2026-03-12 20:03:19.194333,abortion laws in california 2024,abortion limits california 2024,new law,laws in +abortion,"('new abortion law california 2024', 'new abortion laws 2021 california')",new abortion law california 2024,new abortion laws 2021 california,5,4,google,2026-03-12 20:03:19.194333,abortion laws in california 2024,abortion limits california 2024,new law,laws 2021 +abortion,"('new abortion law california 2024', 'new abortion law california 2022')",new abortion law california 2024,new abortion law california 2022,6,4,google,2026-03-12 20:03:19.194333,abortion laws in california 2024,abortion limits california 2024,new law,2022 +abortion,"('new abortion law california 2024', 'new abortion law in california 2023')",new abortion law california 2024,new abortion law in california 2023,7,4,google,2026-03-12 20:03:19.194333,abortion laws in california 2024,abortion limits california 2024,new law,in 2023 +abortion,"('california abortion limit', 'california abortion limit weeks')",california abortion limit,california abortion limit weeks,1,4,google,2026-03-12 20:03:20.178471,abortion laws in california 2024,abortion limits california 2024,limit,weeks +abortion,"('california abortion limit', 'california abortion laws')",california abortion limit,california abortion laws,2,4,google,2026-03-12 20:03:20.178471,abortion laws in california 2024,abortion limits california 2024,limit,laws +abortion,"('california abortion limit', 'california abortion laws 2024')",california abortion limit,california abortion laws 2024,3,4,google,2026-03-12 20:03:20.178471,abortion laws in california 2024,abortion limits california 2024,limit,laws 2024 +abortion,"('california abortion limit', 'california abortion laws 2025')",california abortion limit,california abortion laws 2025,4,4,google,2026-03-12 20:03:20.178471,abortion laws in california 2024,abortion limits california 2024,limit,laws 2025 +abortion,"('california abortion limit', 'california abortion rules')",california abortion limit,california abortion rules,5,4,google,2026-03-12 20:03:20.178471,abortion laws in california 2024,abortion limits california 2024,limit,rules +abortion,"('california abortion limit', 'california abortion restrictions')",california abortion limit,california abortion restrictions,6,4,google,2026-03-12 20:03:20.178471,abortion laws in california 2024,abortion limits california 2024,limit,restrictions +abortion,"('california abortion limit', 'california abortion laws weeks')",california abortion limit,california abortion laws weeks,7,4,google,2026-03-12 20:03:20.178471,abortion laws in california 2024,abortion limits california 2024,limit,laws weeks +abortion,"('california abortion limit', 'california abortion laws for minors')",california abortion limit,california abortion laws for minors,8,4,google,2026-03-12 20:03:20.178471,abortion laws in california 2024,abortion limits california 2024,limit,laws for minors +abortion,"('california abortion limit', 'california abortion laws 2024 how many months')",california abortion limit,california abortion laws 2024 how many months,9,4,google,2026-03-12 20:03:20.178471,abortion laws in california 2024,abortion limits california 2024,limit,laws 2024 how many months +abortion,"('what is the legal abortion limit in california', 'what is the abortion law in california')",what is the legal abortion limit in california,what is the abortion law in california,1,4,google,2026-03-12 20:03:21.616900,abortion laws in california 2024,abortion limits california 2024,what is the legal limit in,law +abortion,"('what is the legal abortion limit in california', 'what is the abortion law in california 2024')",what is the legal abortion limit in california,what is the abortion law in california 2024,2,4,google,2026-03-12 20:03:21.616900,abortion laws in california 2024,abortion limits california 2024,what is the legal limit in,law 2024 +abortion,"('what is the legal abortion limit in california', 'what is the new abortion law in california')",what is the legal abortion limit in california,what is the new abortion law in california,3,4,google,2026-03-12 20:03:21.616900,abortion laws in california 2024,abortion limits california 2024,what is the legal limit in,new law +abortion,"('what is the legal abortion limit in california', 'what is the current abortion law in california')",what is the legal abortion limit in california,what is the current abortion law in california,4,4,google,2026-03-12 20:03:21.616900,abortion laws in california 2024,abortion limits california 2024,what is the legal limit in,current law +abortion,"('what is the legal abortion limit in california', 'california abortion limit')",what is the legal abortion limit in california,california abortion limit,5,4,google,2026-03-12 20:03:21.616900,abortion laws in california 2024,abortion limits california 2024,what is the legal limit in,what is the legal limit in +abortion,"('what is the legal abortion limit in california', 'what is the abortion law in california 2022')",what is the legal abortion limit in california,what is the abortion law in california 2022,6,4,google,2026-03-12 20:03:21.616900,abortion laws in california 2024,abortion limits california 2024,what is the legal limit in,law 2022 +abortion,"('california abortion limits 2022', 'california abortion laws 2022')",california abortion limits 2022,california abortion laws 2022,1,4,google,2026-03-12 20:03:23.106974,abortion laws in california 2024,abortion limits california 2024,2022,laws +abortion,"('california abortion limits 2022', 'california abortion limit')",california abortion limits 2022,california abortion limit,2,4,google,2026-03-12 20:03:23.106974,abortion laws in california 2024,abortion limits california 2024,2022,limit +abortion,"('california abortion limits 2022', 'california abortion restrictions')",california abortion limits 2022,california abortion restrictions,3,4,google,2026-03-12 20:03:23.106974,abortion laws in california 2024,abortion limits california 2024,2022,restrictions +abortion,"('california abortion limits 2022', 'what is the legal abortion limit in california')",california abortion limits 2022,what is the legal abortion limit in california,4,4,google,2026-03-12 20:03:23.106974,abortion laws in california 2024,abortion limits california 2024,2022,what is the legal limit in +abortion,"('california abortion limits 2022', 'california abortion laws 2022 weeks')",california abortion limits 2022,california abortion laws 2022 weeks,5,4,google,2026-03-12 20:03:23.106974,abortion laws in california 2024,abortion limits california 2024,2022,laws weeks +abortion,"('california abortion limits 2022', 'california abortion laws 2022 text')",california abortion limits 2022,california abortion laws 2022 text,6,4,google,2026-03-12 20:03:23.106974,abortion laws in california 2024,abortion limits california 2024,2022,laws text +abortion,"('california abortion limits 2022', 'california abortion laws 2022 how many weeks')",california abortion limits 2022,california abortion laws 2022 how many weeks,7,4,google,2026-03-12 20:03:23.106974,abortion laws in california 2024,abortion limits california 2024,2022,laws how many weeks +abortion,"('abortion limit ca', 'abortion limit california')",abortion limit ca,abortion limit california,1,4,google,2026-03-12 20:03:24.318577,abortion laws in california 2024,abortion limits california 2024,limit ca,california +abortion,"('abortion limit ca', 'abortion limit canada')",abortion limit ca,abortion limit canada,2,4,google,2026-03-12 20:03:24.318577,abortion laws in california 2024,abortion limits california 2024,limit ca,canada +abortion,"('abortion limit ca', 'abortion limit california 2024')",abortion limit ca,abortion limit california 2024,3,4,google,2026-03-12 20:03:24.318577,abortion laws in california 2024,abortion limits california 2024,limit ca,california 2024 +abortion,"('abortion limit ca', 'abortion laws california')",abortion limit ca,abortion laws california,4,4,google,2026-03-12 20:03:24.318577,abortion laws in california 2024,abortion limits california 2024,limit ca,laws california +abortion,"('abortion limit ca', 'abortion laws canada')",abortion limit ca,abortion laws canada,5,4,google,2026-03-12 20:03:24.318577,abortion laws in california 2024,abortion limits california 2024,limit ca,laws canada +abortion,"('abortion limit ca', 'abortion rules canada')",abortion limit ca,abortion rules canada,6,4,google,2026-03-12 20:03:24.318577,abortion laws in california 2024,abortion limits california 2024,limit ca,rules canada +abortion,"('abortion limit ca', 'abortion rules california')",abortion limit ca,abortion rules california,7,4,google,2026-03-12 20:03:24.318577,abortion laws in california 2024,abortion limits california 2024,limit ca,rules california +abortion,"('abortion limit ca', 'abortion laws california 2025')",abortion limit ca,abortion laws california 2025,8,4,google,2026-03-12 20:03:24.318577,abortion laws in california 2024,abortion limits california 2024,limit ca,laws california 2025 +abortion,"('abortion limit ca', 'abortion laws canberra')",abortion limit ca,abortion laws canberra,9,4,google,2026-03-12 20:03:24.318577,abortion laws in california 2024,abortion limits california 2024,limit ca,laws canberra +abortion,"('what is the legal age for abortion in california', 'what is the legal gestational age for abortion in california')",what is the legal age for abortion in california,what is the legal gestational age for abortion in california,1,4,google,2026-03-12 20:03:26.603562,abortion laws in california for minors,age limit for abortion in california,what is the legal,gestational +abortion,"('what is the legal age for abortion in california', 'what is the legal abortion limit in california')",what is the legal age for abortion in california,what is the legal abortion limit in california,2,4,google,2026-03-12 20:03:26.603562,abortion laws in california for minors,age limit for abortion in california,what is the legal,limit +abortion,"('what is the legal age for abortion in california', 'age limit for abortion in california')",what is the legal age for abortion in california,age limit for abortion in california,3,4,google,2026-03-12 20:03:26.603562,abortion laws in california for minors,age limit for abortion in california,what is the legal,limit +abortion,"('what is the legal age for abortion in california', 'is abortion legal in california for minors')",what is the legal age for abortion in california,is abortion legal in california for minors,4,4,google,2026-03-12 20:03:26.603562,abortion laws in california for minors,age limit for abortion in california,what is the legal,minors +abortion,"('age for abortion in california', 'legal age for abortion in california')",age for abortion in california,legal age for abortion in california,1,4,google,2026-03-12 20:03:27.735162,abortion laws in california for minors,age limit for abortion in california,age limit,legal +abortion,"('age for abortion in california', 'age limit for abortion in california')",age for abortion in california,age limit for abortion in california,2,4,google,2026-03-12 20:03:27.735162,abortion laws in california for minors,age limit for abortion in california,age limit,limit +abortion,"('age for abortion in california', 'gestational age for abortion in california')",age for abortion in california,gestational age for abortion in california,3,4,google,2026-03-12 20:03:27.735162,abortion laws in california for minors,age limit for abortion in california,age limit,gestational +abortion,"('age for abortion in california', 'age of consent for abortion in california')",age for abortion in california,age of consent for abortion in california,4,4,google,2026-03-12 20:03:27.735162,abortion laws in california for minors,age limit for abortion in california,age limit,of consent +abortion,"('age for abortion in california', 'legal gestational age for abortion in california')",age for abortion in california,legal gestational age for abortion in california,5,4,google,2026-03-12 20:03:27.735162,abortion laws in california for minors,age limit for abortion in california,age limit,legal gestational +abortion,"('ca abortion laws how many weeks', 'canada abortion laws how many weeks')",ca abortion laws how many weeks,canada abortion laws how many weeks,1,4,google,2026-03-12 20:03:28.970291,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,ca,canada +abortion,"('ca abortion laws how many weeks', 'california abortion laws how many weeks')",ca abortion laws how many weeks,california abortion laws how many weeks,2,4,google,2026-03-12 20:03:28.970291,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,ca,california +abortion,"('ca abortion laws how many weeks', 'california abortion law up to how many weeks')",ca abortion laws how many weeks,california abortion law up to how many weeks,3,4,google,2026-03-12 20:03:28.970291,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,ca,california law up to +abortion,"('ca abortion laws how many weeks', 'california legal abortion up to how many weeks')",ca abortion laws how many weeks,california legal abortion up to how many weeks,4,4,google,2026-03-12 20:03:28.970291,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,ca,california legal up to +abortion,"('ca abortion laws how many weeks', 'how many weeks can you get an abortion california')",ca abortion laws how many weeks,how many weeks can you get an abortion california,5,4,google,2026-03-12 20:03:28.970291,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,ca,can you get an california +abortion,"('ca abortion laws how many weeks', 'how many weeks can you have an abortion in california')",ca abortion laws how many weeks,how many weeks can you have an abortion in california,6,4,google,2026-03-12 20:03:28.970291,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,ca,can you have an in california +abortion,"('ca abortion laws how many weeks', 'california abortion laws how many weeks 2021')",ca abortion laws how many weeks,california abortion laws how many weeks 2021,7,4,google,2026-03-12 20:03:28.970291,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,ca,california 2021 +abortion,"('ca abortion laws how many weeks', 'california abortion laws how many weeks 2020')",ca abortion laws how many weeks,california abortion laws how many weeks 2020,8,4,google,2026-03-12 20:03:28.970291,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,ca,california 2020 +abortion,"('ca abortion laws how many weeks', 'california abortion laws how many weeks 2022')",ca abortion laws how many weeks,california abortion laws how many weeks 2022,9,4,google,2026-03-12 20:03:28.970291,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,ca,california 2022 +abortion,"('california abortion law up to how many weeks', 'california legal abortion up to how many weeks')",california abortion law up to how many weeks,california legal abortion up to how many weeks,1,4,google,2026-03-12 20:03:30.294668,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,law up to,legal +abortion,"('california abortion law up to how many weeks', 'how many weeks can you get an abortion california')",california abortion law up to how many weeks,how many weeks can you get an abortion california,2,4,google,2026-03-12 20:03:30.294668,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,law up to,can you get an +abortion,"('california abortion law up to how many weeks', 'how many weeks can you have an abortion in california')",california abortion law up to how many weeks,how many weeks can you have an abortion in california,3,4,google,2026-03-12 20:03:30.294668,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,law up to,can you have an in +abortion,"('california abortion law up to how many weeks', 'california abortion up to how many weeks')",california abortion law up to how many weeks,california abortion up to how many weeks,4,4,google,2026-03-12 20:03:30.294668,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,law up to,law up to +abortion,"('california abortion law up to how many weeks', 'california abortion law up to birth')",california abortion law up to how many weeks,california abortion law up to birth,5,4,google,2026-03-12 20:03:30.294668,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,law up to,birth +abortion,"('california legal abortion up to how many weeks', 'california abortion law up to how many weeks')",california legal abortion up to how many weeks,california abortion law up to how many weeks,1,4,google,2026-03-12 20:03:31.440926,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,legal up to,law +abortion,"('california legal abortion up to how many weeks', 'how late can you have an abortion in california')",california legal abortion up to how many weeks,how late can you have an abortion in california,2,4,google,2026-03-12 20:03:31.440926,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,legal up to,late can you have an in +abortion,"('california legal abortion up to how many weeks', 'california abortion up to how many weeks')",california legal abortion up to how many weeks,california abortion up to how many weeks,3,4,google,2026-03-12 20:03:31.440926,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,legal up to,legal up to +abortion,"('california legal abortion up to how many weeks', 'abortion legal up to how many weeks')",california legal abortion up to how many weeks,abortion legal up to how many weeks,4,4,google,2026-03-12 20:03:31.440926,abortion laws in california 2024 how many weeks,california abortion laws how many weeks,legal up to,legal up to +abortion,"('abortion laws california 2021', 'abortion laws california 2021 california')",abortion laws california 2021,abortion laws california 2021 california,1,4,google,2026-03-12 20:03:32.799941,abortion laws in california 2024 how many weeks,abortion laws california 2023,2021,2021 +abortion,"('abortion laws california 2021', 'abortion laws california 2021-2024')",abortion laws california 2021,abortion laws california 2021-2024,2,4,google,2026-03-12 20:03:32.799941,abortion laws in california 2024 how many weeks,abortion laws california 2023,2021,2021-2024 +abortion,"('abortion laws california 2021', 'abortion laws california 2021 and 2022')",abortion laws california 2021,abortion laws california 2021 and 2022,3,4,google,2026-03-12 20:03:32.799941,abortion laws in california 2024 how many weeks,abortion laws california 2023,2021,and 2022 +abortion,"('abortion laws california 2021', 'abortion laws california 2021-2023')",abortion laws california 2021,abortion laws california 2021-2023,4,4,google,2026-03-12 20:03:32.799941,abortion laws in california 2024 how many weeks,abortion laws california 2023,2021,2021-2023 +abortion,"('abortion laws california 2022', 'california abortion laws 2022')",abortion laws california 2022,california abortion laws 2022,1,4,google,2026-03-12 20:03:34.239195,abortion laws in california 2024 how many weeks,abortion laws california 2023,2022,2022 +abortion,"('abortion laws california 2022', 'california abortion laws')",abortion laws california 2022,california abortion laws,2,4,google,2026-03-12 20:03:34.239195,abortion laws in california 2024 how many weeks,abortion laws california 2023,2022,2022 +abortion,"('abortion laws california 2022', 'abortion laws california 2021')",abortion laws california 2022,abortion laws california 2021,3,4,google,2026-03-12 20:03:34.239195,abortion laws in california 2024 how many weeks,abortion laws california 2023,2022,2021 +abortion,"('abortion laws california 2022', 'abortion laws california 2023')",abortion laws california 2022,abortion laws california 2023,4,4,google,2026-03-12 20:03:34.239195,abortion laws in california 2024 how many weeks,abortion laws california 2023,2022,2023 +abortion,"('abortion laws california 2022', 'abortion laws california weeks')",abortion laws california 2022,abortion laws california weeks,5,4,google,2026-03-12 20:03:34.239195,abortion laws in california 2024 how many weeks,abortion laws california 2023,2022,weeks +abortion,"('abortion law in california 2023', 'abortion laws in california 2023')",abortion law in california 2023,abortion laws in california 2023,1,4,google,2026-03-12 20:03:35.593195,abortion legal in california,abortion law in california 2025,2023,laws +abortion,"('abortion law in california 2023', 'new abortion law in california 2023')",abortion law in california 2023,new abortion law in california 2023,2,4,google,2026-03-12 20:03:35.593195,abortion legal in california,abortion law in california 2025,2023,new +abortion,"('abortion law in california 2023', 'new abortion law in california 2023 overturned')",abortion law in california 2023,new abortion law in california 2023 overturned,3,4,google,2026-03-12 20:03:35.593195,abortion legal in california,abortion law in california 2025,2023,new overturned +abortion,"('abortion law in california 2023', 'abortion law in california 2021')",abortion law in california 2023,abortion law in california 2021,4,4,google,2026-03-12 20:03:35.593195,abortion legal in california,abortion law in california 2025,2023,2021 +abortion,"('abortion law in california 2021', 'abortion law in california 2021 summary')",abortion law in california 2021,abortion law in california 2021 summary,1,4,google,2026-03-12 20:03:36.459920,abortion legal in california,abortion law in california 2025,2021,summary +abortion,"('abortion law in california 2021', 'abortion law in california 2021 update')",abortion law in california 2021,abortion law in california 2021 update,2,4,google,2026-03-12 20:03:36.459920,abortion legal in california,abortion law in california 2025,2021,update +abortion,"('abortion law in california 2021', 'abortion law in california 2021-2024')",abortion law in california 2021,abortion law in california 2021-2024,3,4,google,2026-03-12 20:03:36.459920,abortion legal in california,abortion law in california 2025,2021,2021-2024 +abortion,"('abortion law in california 2021', 'abortion law in california 2021-2023')",abortion law in california 2021,abortion law in california 2021-2023,4,4,google,2026-03-12 20:03:36.459920,abortion legal in california,abortion law in california 2025,2021,2021-2023 +abortion,"('abortion law in california 2022', 'abortion law in california 2022 update')",abortion law in california 2022,abortion law in california 2022 update,1,4,google,2026-03-12 20:03:37.554125,abortion legal in california,abortion law in california 2025,2022,update +abortion,"('abortion law in california 2022', 'abortion law in california 2022 california')",abortion law in california 2022,abortion law in california 2022 california,2,4,google,2026-03-12 20:03:37.554125,abortion legal in california,abortion law in california 2025,2022,2022 +abortion,"('abortion law in california 2022', 'abortion law in california 2022-2023')",abortion law in california 2022,abortion law in california 2022-2023,3,4,google,2026-03-12 20:03:37.554125,abortion legal in california,abortion law in california 2025,2022,2022-2023 +abortion,"('abortion law in california 2022', 'abortion law in california 2022-2024')",abortion law in california 2022,abortion law in california 2022-2024,4,4,google,2026-03-12 20:03:37.554125,abortion legal in california,abortion law in california 2025,2022,2022-2024 +abortion,"('how late can you have an abortion in california', 'how long can you have an abortion in california')",how late can you have an abortion in california,how long can you have an abortion in california,1,4,google,2026-03-12 20:03:38.682283,abortion legal in california,legal abortion in california weeks,how late can you have an,long +abortion,"('how late can you have an abortion in california', 'how late can you get an abortion in california 2022')",how late can you have an abortion in california,how late can you get an abortion in california 2022,2,4,google,2026-03-12 20:03:38.682283,abortion legal in california,legal abortion in california weeks,how late can you have an,get 2022 +abortion,"('how late can you have an abortion in california', 'how long can you have an abortion in ca')",how late can you have an abortion in california,how long can you have an abortion in ca,3,4,google,2026-03-12 20:03:38.682283,abortion legal in california,legal abortion in california weeks,how late can you have an,long ca +abortion,"('how late can you have an abortion in california', 'how late in pregnancy can you have an abortion in california')",how late can you have an abortion in california,how late in pregnancy can you have an abortion in california,4,4,google,2026-03-12 20:03:38.682283,abortion legal in california,legal abortion in california weeks,how late can you have an,pregnancy +abortion,"('how late can you have an abortion in california', 'how late term can you get an abortion in california')",how late can you have an abortion in california,how late term can you get an abortion in california,5,4,google,2026-03-12 20:03:38.682283,abortion legal in california,legal abortion in california weeks,how late can you have an,term get +abortion,"('how late can you have an abortion in california', 'how late can you get an elective abortion in california')",how late can you have an abortion in california,how late can you get an elective abortion in california,6,4,google,2026-03-12 20:03:38.682283,abortion legal in california,legal abortion in california weeks,how late can you have an,get elective +abortion,"('how late can you have an abortion in california', 'how long can you wait to have an abortion in california')",how late can you have an abortion in california,how long can you wait to have an abortion in california,7,4,google,2026-03-12 20:03:38.682283,abortion legal in california,legal abortion in california weeks,how late can you have an,long wait to +abortion,"('how late can you have an abortion in california', 'how long until you can have an abortion in california')",how late can you have an abortion in california,how long until you can have an abortion in california,8,4,google,2026-03-12 20:03:38.682283,abortion legal in california,legal abortion in california weeks,how late can you have an,long until +abortion,"('how late can you have an abortion in california', 'how long do you have for an abortion in california')",how late can you have an abortion in california,how long do you have for an abortion in california,9,4,google,2026-03-12 20:03:38.682283,abortion legal in california,legal abortion in california weeks,how late can you have an,long do for +abortion,"('legal abortion in ca', 'legal abortion in california')",legal abortion in ca,legal abortion in california,1,4,google,2026-03-12 20:03:39.662204,abortion legal in california,legal abortion in california weeks,ca,california +abortion,"('legal abortion in ca', 'legal abortion in canada')",legal abortion in ca,legal abortion in canada,2,4,google,2026-03-12 20:03:39.662204,abortion legal in california,legal abortion in california weeks,ca,canada +abortion,"('legal abortion in ca', 'legal abortion in california weeks')",legal abortion in ca,legal abortion in california weeks,3,4,google,2026-03-12 20:03:39.662204,abortion legal in california,legal abortion in california weeks,ca,california weeks +abortion,"('legal abortion in ca', 'legal abortion in canada weeks')",legal abortion in ca,legal abortion in canada weeks,4,4,google,2026-03-12 20:03:39.662204,abortion legal in california,legal abortion in california weeks,ca,canada weeks +abortion,"('legal abortion in ca', 'abortion legal in canada year')",legal abortion in ca,abortion legal in canada year,5,4,google,2026-03-12 20:03:39.662204,abortion legal in california,legal abortion in california weeks,ca,canada year +abortion,"('legal abortion in ca', 'abortion legal in cambodia')",legal abortion in ca,abortion legal in cambodia,6,4,google,2026-03-12 20:03:39.662204,abortion legal in california,legal abortion in california weeks,ca,cambodia +abortion,"('legal abortion in ca', 'abortion legal in california 2024')",legal abortion in ca,abortion legal in california 2024,7,4,google,2026-03-12 20:03:39.662204,abortion legal in california,legal abortion in california weeks,ca,california 2024 +abortion,"('legal abortion in ca', 'abortion legal in canada since')",legal abortion in ca,abortion legal in canada since,8,4,google,2026-03-12 20:03:39.662204,abortion legal in california,legal abortion in california weeks,ca,canada since +abortion,"('legal abortion in ca', 'abortion legal in cali')",legal abortion in ca,abortion legal in cali,9,4,google,2026-03-12 20:03:39.662204,abortion legal in california,legal abortion in california weeks,ca,cali +abortion,"('legal abortion in ca', 'abortion law in california')",legal abortion in ca,abortion law in california,10,4,google,2026-03-12 20:03:39.662204,abortion legal in california,legal abortion in california weeks,ca,law california +abortion,"('how many weeks is it legal to have an abortion in california', 'how many weeks can you get an abortion california')",how many weeks is it legal to have an abortion in california,how many weeks can you get an abortion california,1,4,google,2026-03-12 20:03:40.693608,abortion legal in california,legal abortion in california weeks,how many is it to have an,can you get +abortion,"('how many weeks is it legal to have an abortion in california', 'how many weeks can you have an abortion in california')",how many weeks is it legal to have an abortion in california,how many weeks can you have an abortion in california,2,4,google,2026-03-12 20:03:40.693608,abortion legal in california,legal abortion in california weeks,how many is it to have an,can you +abortion,"('how many weeks is it legal to have an abortion in california', 'is it legal to have an abortion after 6 months')",how many weeks is it legal to have an abortion in california,is it legal to have an abortion after 6 months,3,4,google,2026-03-12 20:03:40.693608,abortion legal in california,legal abortion in california weeks,how many is it to have an,after 6 months +abortion,"('how many weeks is it legal to have an abortion in california', 'how far into pregnancy can you have an abortion in california')",how many weeks is it legal to have an abortion in california,how far into pregnancy can you have an abortion in california,4,4,google,2026-03-12 20:03:40.693608,abortion legal in california,legal abortion in california weeks,how many is it to have an,far into pregnancy can you +abortion,"('how many weeks is it legal to have an abortion in california', 'how many weeks is it legal to have an abortion')",how many weeks is it legal to have an abortion in california,how many weeks is it legal to have an abortion,5,4,google,2026-03-12 20:03:40.693608,abortion legal in california,legal abortion in california weeks,how many is it to have an,how many is it to have an +abortion,"('abortion limit in california', 'abortion limit in california 2024')",abortion limit in california,abortion limit in california 2024,1,4,google,2026-03-12 20:03:41.602363,abortion legal in california,abortion rules in california,limit,2024 +abortion,"('abortion limit in california', 'abortion laws in california')",abortion limit in california,abortion laws in california,2,4,google,2026-03-12 20:03:41.602363,abortion legal in california,abortion rules in california,limit,laws +abortion,"('abortion limit in california', 'abortion laws in california 2025')",abortion limit in california,abortion laws in california 2025,3,4,google,2026-03-12 20:03:41.602363,abortion legal in california,abortion rules in california,limit,laws 2025 +abortion,"('abortion limit in california', 'abortion rules in california')",abortion limit in california,abortion rules in california,4,4,google,2026-03-12 20:03:41.602363,abortion legal in california,abortion rules in california,limit,rules +abortion,"('abortion limit in california', 'abortion laws in california 2024')",abortion limit in california,abortion laws in california 2024,5,4,google,2026-03-12 20:03:41.602363,abortion legal in california,abortion rules in california,limit,laws 2024 +abortion,"('abortion limit in california', 'abortion laws in california how many weeks')",abortion limit in california,abortion laws in california how many weeks,6,4,google,2026-03-12 20:03:41.602363,abortion legal in california,abortion rules in california,limit,laws how many weeks +abortion,"('abortion limit in california', 'abortion legality in california')",abortion limit in california,abortion legality in california,7,4,google,2026-03-12 20:03:41.602363,abortion legal in california,abortion rules in california,limit,legality +abortion,"('abortion limit in california', 'abortion restrictions in california')",abortion limit in california,abortion restrictions in california,8,4,google,2026-03-12 20:03:41.602363,abortion legal in california,abortion rules in california,limit,restrictions +abortion,"('abortion limit in california', 'abortion laws in california for minors')",abortion limit in california,abortion laws in california for minors,9,4,google,2026-03-12 20:03:41.602363,abortion legal in california,abortion rules in california,limit,laws for minors +abortion,"('abortion age in california', 'abortion rules in california')",abortion age in california,abortion rules in california,1,4,google,2026-03-12 20:03:42.619808,abortion legal in california,abortion rules in california,age,rules +abortion,"('abortion age in california', 'legal abortion age in california')",abortion age in california,legal abortion age in california,2,4,google,2026-03-12 20:03:42.619808,abortion legal in california,abortion rules in california,age,legal +abortion,"('abortion age in california', 'abortion age limit california')",abortion age in california,abortion age limit california,3,4,google,2026-03-12 20:03:42.619808,abortion legal in california,abortion rules in california,age,limit +abortion,"('abortion age in california', 'gestational age for abortion in california')",abortion age in california,gestational age for abortion in california,4,4,google,2026-03-12 20:03:42.619808,abortion legal in california,abortion rules in california,age,gestational for +abortion,"('abortion age in california', 'abortion age in ca')",abortion age in california,abortion age in ca,5,4,google,2026-03-12 20:03:42.619808,abortion legal in california,abortion rules in california,age,ca +abortion,"('abortion limit in california 2024', 'abortion laws in california 2024')",abortion limit in california 2024,abortion laws in california 2024,1,4,google,2026-03-12 20:03:43.755941,abortion legal in california,abortion rules in california,limit 2024,laws +abortion,"('abortion limit in california 2024', 'abortion laws in california 2024 how many weeks')",abortion limit in california 2024,abortion laws in california 2024 how many weeks,2,4,google,2026-03-12 20:03:43.755941,abortion legal in california,abortion rules in california,limit 2024,laws how many weeks +abortion,"('abortion limit in california 2024', 'new abortion law in california 2024')",abortion limit in california 2024,new abortion law in california 2024,3,4,google,2026-03-12 20:03:43.755941,abortion legal in california,abortion rules in california,limit 2024,new law +abortion,"('abortion limit in california 2024', 'new abortion laws in california 2024 update')",abortion limit in california 2024,new abortion laws in california 2024 update,4,4,google,2026-03-12 20:03:43.755941,abortion legal in california,abortion rules in california,limit 2024,new laws update +abortion,"('abortion limit in california 2024', 'abortion law california 2024 update today')",abortion limit in california 2024,abortion law california 2024 update today,5,4,google,2026-03-12 20:03:43.755941,abortion legal in california,abortion rules in california,limit 2024,law update today +abortion,"('abortion limit in california 2024', 'california abortion limit')",abortion limit in california 2024,california abortion limit,6,4,google,2026-03-12 20:03:43.755941,abortion legal in california,abortion rules in california,limit 2024,limit 2024 +abortion,"('abortion limit in california 2024', 'what is the legal abortion limit in california')",abortion limit in california 2024,what is the legal abortion limit in california,7,4,google,2026-03-12 20:03:43.755941,abortion legal in california,abortion rules in california,limit 2024,what is the legal +abortion,"('abortion limit in california 2024', 'abortion laws in california 2023')",abortion limit in california 2024,abortion laws in california 2023,8,4,google,2026-03-12 20:03:43.755941,abortion legal in california,abortion rules in california,limit 2024,laws 2023 +abortion,"('abortion limit in california 2024', 'abortion in california 28 days')",abortion limit in california 2024,abortion in california 28 days,9,4,google,2026-03-12 20:03:43.755941,abortion legal in california,abortion rules in california,limit 2024,28 days +abortion,"('abortion ban in california', 'abortion law in california')",abortion ban in california,abortion law in california,1,4,google,2026-03-12 20:03:44.822977,abortion illegal in california,abortion restrictions in california,ban,law +abortion,"('abortion ban in california', 'abortion law in california 2025')",abortion ban in california,abortion law in california 2025,2,4,google,2026-03-12 20:03:44.822977,abortion illegal in california,abortion restrictions in california,ban,law 2025 +abortion,"('abortion ban in california', 'abortion law in california 2024')",abortion ban in california,abortion law in california 2024,3,4,google,2026-03-12 20:03:44.822977,abortion illegal in california,abortion restrictions in california,ban,law 2024 +abortion,"('abortion ban in california', 'abortion law in california how many weeks')",abortion ban in california,abortion law in california how many weeks,4,4,google,2026-03-12 20:03:44.822977,abortion illegal in california,abortion restrictions in california,ban,law how many weeks +abortion,"('abortion ban in california', 'abortion restrictions in california')",abortion ban in california,abortion restrictions in california,5,4,google,2026-03-12 20:03:44.822977,abortion illegal in california,abortion restrictions in california,ban,restrictions +abortion,"('abortion ban in california', 'abortion ban california update')",abortion ban in california,abortion ban california update,6,4,google,2026-03-12 20:03:44.822977,abortion illegal in california,abortion restrictions in california,ban,update +abortion,"('abortion ban in california', 'is abortion banned in california 2024')",abortion ban in california,is abortion banned in california 2024,7,4,google,2026-03-12 20:03:44.822977,abortion illegal in california,abortion restrictions in california,ban,is banned 2024 +abortion,"('abortion ban in california', 'new abortion law in california')",abortion ban in california,new abortion law in california,8,4,google,2026-03-12 20:03:44.822977,abortion illegal in california,abortion restrictions in california,ban,new law +abortion,"('abortion ban in california', 'new abortion law in california 2024')",abortion ban in california,new abortion law in california 2024,9,4,google,2026-03-12 20:03:44.822977,abortion illegal in california,abortion restrictions in california,ban,new law 2024 diff --git a/tests/fixtures/abortion-20260312-122801.json b/tests/fixtures/abortion-20260312-122801.json new file mode 100644 index 0000000..b0d01f9 --- /dev/null +++ b/tests/fixtures/abortion-20260312-122801.json @@ -0,0 +1,1864 @@ +{"qry": "abortion", "datetime": "2026-03-12 19:28:01.691691", "source": "google", "data": ["abortion", [["abortion", 0, [512, 433]], ["abortion clinic san francisco", 0, [512, 402]], ["abortion clinic near me", 0, [512, 457]], ["abortion pill online", 0, [512, 433]], ["abortion clinic", 0, [512, 433]], ["abortion pill cost", 0, [512, 433]], ["abortion definition", 0, [512, 433]], ["abortion pill side effects", 0, [512]], ["abortion meaning", 0, [512, 433]], ["abortion laws in california", 0, [512]]], {"q": "7GygrVVcZl32Pq9zQvuVMC9mKDQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion", "abortion clinic san francisco", "abortion clinic near me", "abortion pill online", "abortion clinic", "abortion pill cost", "abortion definition", "abortion pill side effects", "abortion meaning", "abortion laws in california"], "self_loops": [0], "tags": {"q": "7GygrVVcZl32Pq9zQvuVMC9mKDQ", "t": {"bpc": false, "tlw": false}}, "depth": 0, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic san francisco", "datetime": "2026-03-12 19:28:03.175208", "source": "google", "data": ["abortion clinic san francisco", [["abortion clinic san francisco", 0, [512]], ["abortion clinic san francisco ca", 0, [22, 30]], ["women's clinic san francisco", 0, [22, 30]], ["abortion services san francisco", 0, [22, 30]], ["women's health clinic san francisco", 0, [22, 30]], ["free women's clinic san francisco", 0, [22, 30]], ["women's community clinic san francisco", 0, [22, 10, 30]], ["ucsf women's clinic san francisco", 0, [22, 10, 30]], ["va women's clinic san francisco", 0, [22, 30]], ["women's golf clinic san francisco", 0, [22, 10, 30]]], {"i": "abortion clinic san francisco", "q": "2jDHSHuOfFs9CJx3vurP25ynkJc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic san francisco", "abortion clinic san francisco ca", "women's clinic san francisco", "abortion services san francisco", "women's health clinic san francisco", "free women's clinic san francisco", "women's community clinic san francisco", "ucsf women's clinic san francisco", "va women's clinic san francisco", "women's golf clinic san francisco"], "self_loops": [0], "tags": {"i": "abortion clinic san francisco", "q": "2jDHSHuOfFs9CJx3vurP25ynkJc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 1, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me", "datetime": "2026-03-12 19:28:04.087321", "source": "google", "data": ["abortion clinic near me", [["abortion clinic san francisco", 0, [512, 402, 650]], ["abortion clinic near me", 0, [512, 457]], ["abortion clinic near me open now", 0, [512]], ["abortion clinic near me prices", 0, [512]], ["abortion clinic near me for free", 0, [512]], ["abortion clinic near me walk in", 0, [512]], ["abortion clinic near me now", 0, [512]], ["abortion clinic near me that takes insurance", 0, [512]], ["abortion clinic near me open", 0, [512]], ["abortion clinic near me same day", 0, [512]]], {"q": "rCxCfMQYL3_7vcKFKNl1VJfuX-M", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic san francisco", "abortion clinic near me", "abortion clinic near me open now", "abortion clinic near me prices", "abortion clinic near me for free", "abortion clinic near me walk in", "abortion clinic near me now", "abortion clinic near me that takes insurance", "abortion clinic near me open", "abortion clinic near me same day"], "self_loops": [1], "tags": {"q": "rCxCfMQYL3_7vcKFKNl1VJfuX-M", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 1, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online", "datetime": "2026-03-12 19:28:05.556378", "source": "google", "data": ["abortion pill online", [["abortion pill online", 0, [512, 433]], ["abortion pill online free", 0, [512]], ["abortion pill online cost", 0, [512]], ["abortion pill online near me", 0, [512, 457]], ["abortion pill online amazon", 0, [512]], ["abortion pill online georgia", 0, [512]], ["abortion pill online reviews", 0, [512]], ["abortion pill online ohio", 0, [512]], ["abortion pill online abuzz", 0, [512]], ["abortion pill online cheapest", 0, [512]]], {"q": "ALH1O16jRNbCZpCKSYCglpW5UbQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online", "abortion pill online free", "abortion pill online cost", "abortion pill online near me", "abortion pill online amazon", "abortion pill online georgia", "abortion pill online reviews", "abortion pill online ohio", "abortion pill online abuzz", "abortion pill online cheapest"], "self_loops": [0], "tags": {"q": "ALH1O16jRNbCZpCKSYCglpW5UbQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 1, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic", "datetime": "2026-03-12 19:28:06.714519", "source": "google", "data": ["abortion clinic", [["abortion clinic san francisco", 0, [512, 402]], ["abortion clinic near me", 0, [512, 457]], ["abortion clinic", 0, [512, 433]], ["abortion clinic san jose", 0, [512]], ["abortion clinic santa rosa", 0, [512]], ["abortion clinic brentwood", 0, [512]], ["abortion clinic oakland", 0, [512]], ["abortion clinic illinois", 0, [512]], ["abortion clinic north carolina", 0, [512]], ["abortion clinic chicago", 0, [512]]], {"q": "Ua-aZJN3oud4sOv84FUm0g5o9VY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic san francisco", "abortion clinic near me", "abortion clinic", "abortion clinic san jose", "abortion clinic santa rosa", "abortion clinic brentwood", "abortion clinic oakland", "abortion clinic illinois", "abortion clinic north carolina", "abortion clinic chicago"], "self_loops": [2], "tags": {"q": "Ua-aZJN3oud4sOv84FUm0g5o9VY", "t": {"bpc": false, "tlw": false}}, "depth": 1, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost", "datetime": "2026-03-12 19:28:07.992487", "source": "google", "data": ["abortion pill cost", [["abortion pill cost", 0, [512, 433]], ["abortion pill cost cvs", 0, [512]], ["abortion pill cost california", 0, [512]], ["abortion pill cost online", 0, [512]], ["abortion pill cost pharmacy", 0, [512]], ["abortion pill cost north carolina", 0, [512]], ["abortion pill cost planned parenthood reddit", 0, [512]], ["abortion pill cost florida", 0, [512]], ["abortion pill cost free", 0, [512]], ["abortion pill cost for 1 month", 0, [512]]], {"q": "Jf8o-gDR60LgUcFMylawaNKGOik", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost", "abortion pill cost cvs", "abortion pill cost california", "abortion pill cost online", "abortion pill cost pharmacy", "abortion pill cost north carolina", "abortion pill cost planned parenthood reddit", "abortion pill cost florida", "abortion pill cost free", "abortion pill cost for 1 month"], "self_loops": [0], "tags": {"q": "Jf8o-gDR60LgUcFMylawaNKGOik", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 1, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition", "datetime": "2026-03-12 19:28:09.264883", "source": "google", "data": ["abortion definition", [["abortion definition", 0, [512, 433]], ["abortion definition according to who", 0, [512]], ["abortion definition oxford", 0, [512]], ["abortion definition cdc", 0, [512]], ["abortion definition law", 0, [512]], ["abortion definition webster", 0, [512]], ["abortion definition simple", 0, [512]], ["abortion definition acog", 0, [512]], ["abortion definition merriam webster", 0, [512]], ["abortion definition in nursing", 0, [512]]], {"q": "u_SmaHgKvAFsITe5lTKJV8GE7hQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion definition", "abortion definition according to who", "abortion definition oxford", "abortion definition cdc", "abortion definition law", "abortion definition webster", "abortion definition simple", "abortion definition acog", "abortion definition merriam webster", "abortion definition in nursing"], "self_loops": [0], "tags": {"q": "u_SmaHgKvAFsITe5lTKJV8GE7hQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 1, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects", "datetime": "2026-03-12 19:28:10.542586", "source": "google", "data": ["abortion pill side effects", [["abortion pill side effects", 0, [512]], ["abortion pill side effects long term", 0, [512]], ["abortion pill side effects reddit", 0, [512]], ["abortion pill side effects how long", 0, [512]], ["abortion pill side effects first pill", 0, [512]], ["abortion pill side effects timeline", 0, [512]], ["abortion pill side effects future pregnancy", 0, [512]], ["abortion pill side effects mentally", 0, [512]], ["abortion pill side effects how many days", 0, [512]], ["abortion pill side effects 5 weeks", 0, [512]]], {"q": "NixhLe3Eh3cAO3EV1mVfHcgMEhA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill side effects", "abortion pill side effects long term", "abortion pill side effects reddit", "abortion pill side effects how long", "abortion pill side effects first pill", "abortion pill side effects timeline", "abortion pill side effects future pregnancy", "abortion pill side effects mentally", "abortion pill side effects how many days", "abortion pill side effects 5 weeks"], "self_loops": [0], "tags": {"q": "NixhLe3Eh3cAO3EV1mVfHcgMEhA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 1, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning", "datetime": "2026-03-12 19:28:11.973216", "source": "google", "data": ["abortion meaning", [["abortion meaning", 0, [512, 433]], ["abortion meaning in pregnancy", 0, [512]], ["abortion meaning in english", 0, [512]], ["abortion meaning for kids", 0, [512]], ["abortion meaning simple", 0, [512]], ["abortion meaning in hebrew", 0, [512]], ["abortion meaning in hindi", 0, [512]], ["abortion meaning in the bible", 0, [512]], ["abortion meaning in greek", 0, [512]], ["abortion meaning dictionary", 0, [512]]], {"q": "rJr4A8MsGbARkb1f4S0nf2Z7ZRY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion meaning", "abortion meaning in pregnancy", "abortion meaning in english", "abortion meaning for kids", "abortion meaning simple", "abortion meaning in hebrew", "abortion meaning in hindi", "abortion meaning in the bible", "abortion meaning in greek", "abortion meaning dictionary"], "self_loops": [0], "tags": {"q": "rJr4A8MsGbARkb1f4S0nf2Z7ZRY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 1, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california", "datetime": "2026-03-12 19:28:13.372973", "source": "google", "data": ["abortion laws in california", [["abortion laws in california", 0, [512]], ["abortion laws in california 2025", 0, [512]], ["abortion laws in california 2026", 0, [512]], ["abortion laws in california how many weeks", 0, [512]], ["abortion laws in california 2024", 0, [22, 30]], ["abortion laws in california for minors", 0, [22, 30]], ["abortion laws in california 2023", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["abortion legal in california", 0, [22, 30]], ["abortion illegal in california", 0, [22, 30]]], {"i": "abortion laws in california", "q": "DqDSt0NEnG_EDSOpPPd4y5_B5q4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion laws in california", "abortion laws in california 2025", "abortion laws in california 2026", "abortion laws in california how many weeks", "abortion laws in california 2024", "abortion laws in california for minors", "abortion laws in california 2023", "abortion laws in california 2024 how many weeks", "abortion legal in california", "abortion illegal in california"], "self_loops": [0], "tags": {"i": "abortion laws in california", "q": "DqDSt0NEnG_EDSOpPPd4y5_B5q4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 1, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic san francisco ca", "datetime": "2026-03-12 19:28:14.677008", "source": "google", "data": ["abortion clinic san francisco ca", [["abortion clinic san francisco ca", 0, [22, 30]], ["abortion clinics in san francisco", 0, [512, 390, 650]], ["free abortion clinics in california", 0, [512, 390, 650]], ["abortion clinic for free near me", 0, [512, 390, 650]], ["abortion clinics san francisco california", 0, [751]]], {"i": "abortion clinic san francisco ca", "q": "W56SzrNJoooMCVVoD01mfo6nzpY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic san francisco ca", "abortion clinics in san francisco", "free abortion clinics in california", "abortion clinic for free near me", "abortion clinics san francisco california"], "self_loops": [0], "tags": {"i": "abortion clinic san francisco ca", "q": "W56SzrNJoooMCVVoD01mfo6nzpY", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic san francisco", "datetime": "2026-03-12 19:28:16.169598", "source": "google", "data": ["women's clinic san francisco", [["women's clinic san francisco", 0, [512]], ["women's health center san francisco", 0, [22, 30]], ["women's hospital san francisco", 0, [22, 30]], ["women's health clinic san francisco", 0, [22, 30]], ["free women's clinic san francisco", 0, [22, 30]], ["women's community clinic san francisco", 0, [22, 10, 30]], ["ucsf women's clinic san francisco", 0, [22, 10, 30]], ["va women's clinic san francisco", 0, [22, 30]], ["women's golf clinic san francisco", 0, [22, 10, 30]], ["sutter women's health center san francisco", 0, [22, 30]]], {"q": "Bx4kKO1pqUATL6lqDc82Fp0s03o", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic san francisco", "women's health center san francisco", "women's hospital san francisco", "women's health clinic san francisco", "free women's clinic san francisco", "women's community clinic san francisco", "ucsf women's clinic san francisco", "va women's clinic san francisco", "women's golf clinic san francisco", "sutter women's health center san francisco"], "self_loops": [0], "tags": {"q": "Bx4kKO1pqUATL6lqDc82Fp0s03o", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion services san francisco", "datetime": "2026-03-12 19:28:17.589990", "source": "google", "data": ["abortion services san francisco", [["abortion services san francisco", 0, [22, 30]], ["abortion clinic san francisco", 0, [22, 30]], ["abortion clinic san francisco ca", 0, [22, 30]], ["abortion treatment near me", 0, [512, 390, 650]], ["abortion clinics san francisco california", 0, [751]], ["abortion san francisco", 0, [512, 546]], ["abortion clinics sf", 0, [751]]], {"i": "abortion services san francisco", "q": "AMmAzWmQyvdbxmanH0b21Mc7hVw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion services san francisco", "abortion clinic san francisco", "abortion clinic san francisco ca", "abortion treatment near me", "abortion clinics san francisco california", "abortion san francisco", "abortion clinics sf"], "self_loops": [0], "tags": {"i": "abortion services san francisco", "q": "AMmAzWmQyvdbxmanH0b21Mc7hVw", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic san francisco", "datetime": "2026-03-12 19:28:18.662082", "source": "google", "data": ["women's health clinic san francisco", [["women's health clinic san francisco", 0, [512]], ["women's health center san francisco", 0, [22, 30]], ["tia women's health clinic san francisco", 0, [22, 30]], ["tia women's health clinic san francisco reviews", 0, [22, 30]], ["sutter women's health center san francisco", 0, [22, 30]], ["women's breast health center san francisco", 0, [22, 30]], ["ucsf women's health center san francisco ca", 0, [22, 30]], ["st mary's women's health center san francisco", 0, [22, 30]], ["women's health san francisco", 0, [512, 546]], ["women's clinic san francisco", 0, [512, 546]]], {"i": "women's health clinic san francisco", "q": "Gn8G7KDbyIc2d1My9N4NdR4wnyc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's health clinic san francisco", "women's health center san francisco", "tia women's health clinic san francisco", "tia women's health clinic san francisco reviews", "sutter women's health center san francisco", "women's breast health center san francisco", "ucsf women's health center san francisco ca", "st mary's women's health center san francisco", "women's health san francisco", "women's clinic san francisco"], "self_loops": [0], "tags": {"i": "women's health clinic san francisco", "q": "Gn8G7KDbyIc2d1My9N4NdR4wnyc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic san francisco", "datetime": "2026-03-12 19:28:19.646242", "source": "google", "data": ["free women's clinic san francisco", [["free women's clinic san francisco", 0, [512]], ["free women's pregnancy clinic near me", 0, [512, 390, 650]], ["free women's clinics near me", 0, [512, 390, 650]], ["are free clinics really free", 0, [512, 390, 650]], ["free women's health clinics near me", 0, [512, 390, 650]], ["free women's clinic san diego", 0, [751]], ["free women's clinic sacramento", 0, [751]], ["free women's clinic san antonio", 0, [512, 546]], ["free women's clinic san bernardino ca", 0, [751]]], {"i": "free women's clinic san francisco", "q": "VkC_H-287K8Z5JFjLipiW1mE6X8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free women's clinic san francisco", "free women's pregnancy clinic near me", "free women's clinics near me", "are free clinics really free", "free women's health clinics near me", "free women's clinic san diego", "free women's clinic sacramento", "free women's clinic san antonio", "free women's clinic san bernardino ca"], "self_loops": [0], "tags": {"i": "free women's clinic san francisco", "q": "VkC_H-287K8Z5JFjLipiW1mE6X8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's community clinic san francisco", "datetime": "2026-03-12 19:28:20.962600", "source": "google", "data": ["women's community clinic san francisco", [["women's community clinic san francisco", 0, [512]], ["Women's Community Clinic, Mission Street, San Francisco, CA", 38], ["women's community clinic sf", 0, [512, 546]], ["women's community clinic", 0, [512, 546]], ["women's clinic san francisco", 0, [512, 546]]], {"q": "unGyYQ_snbjPZV4cXWnMmGyHF1A", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's community clinic san francisco", "Women's Community Clinic, Mission Street, San Francisco, CA", "women's community clinic sf", "women's community clinic", "women's clinic san francisco"], "self_loops": [0], "tags": {"q": "unGyYQ_snbjPZV4cXWnMmGyHF1A", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's clinic san francisco", "datetime": "2026-03-12 19:28:21.853974", "source": "google", "data": ["ucsf women's clinic san francisco", [["ucsf women's clinic san francisco", 0, [512]], ["ucsf women's health center san francisco ca", 0, [22, 30]], ["ucsf women's clinic", 0, [512, 546]], ["ucsf women's center", 0, [512, 546]], ["ucsf women's health clinic", 0, [512, 546]], ["ucsf women's health center", 0, [512, 546]]], {"i": "ucsf women's clinic san francisco", "q": "lo0wtD9F--mIQRnQ5gqHLiPqkM0", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's clinic san francisco", "ucsf women's health center san francisco ca", "ucsf women's clinic", "ucsf women's center", "ucsf women's health clinic", "ucsf women's health center"], "self_loops": [0], "tags": {"i": "ucsf women's clinic san francisco", "q": "lo0wtD9F--mIQRnQ5gqHLiPqkM0", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va women's clinic san francisco", "datetime": "2026-03-12 19:28:22.780598", "source": "google", "data": ["va women's clinic san francisco", [["va women's clinic san francisco", 0, [22, 30]], ["women's clinic equity boost san francisco va medical center'", 0, [22, 10, 30]], ["va women's clinic near me", 0, [512, 390, 650]], ["va approved clinics near me", 0, [512, 390, 650]], ["va doctors office near me", 0, [512, 390, 650]], ["va clinic near me", 0, [512, 390, 650]], ["va animal clinic near me", 0, [512, 390, 650]], ["va women's clinic st louis", 0, [512, 546]], ["va women's clinic seattle", 0, [751]], ["va women's center st francis", 0, [512, 546]]], {"i": "va women's clinic san francisco", "q": "ftPtUukvtJY7DcfF8VayDgi1xWM", "t": {"bpc": false, "tlw": false}}], "suggests": ["va women's clinic san francisco", "women's clinic equity boost san francisco va medical center'", "va women's clinic near me", "va approved clinics near me", "va doctors office near me", "va clinic near me", "va animal clinic near me", "va women's clinic st louis", "va women's clinic seattle", "va women's center st francis"], "self_loops": [0], "tags": {"i": "va women's clinic san francisco", "q": "ftPtUukvtJY7DcfF8VayDgi1xWM", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf clinic san francisco", "datetime": "2026-03-12 19:28:24.224130", "source": "google", "data": ["women's golf clinic san francisco", [["women's golf clinic san francisco", 0, [22, 30]], ["women's golf lessons san francisco", 0, [22, 10, 30]], ["women's golf clinic", 0, [512, 546]], ["women's golf clinic ideas", 0, [546, 649]], ["women's clinic sf general", 0, [751]]], {"i": "women's golf clinic san francisco", "q": "QA7L3gEYtRcCO2I8kSp7HC5haS4", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's golf clinic san francisco", "women's golf lessons san francisco", "women's golf clinic", "women's golf clinic ideas", "women's clinic sf general"], "self_loops": [0], "tags": {"i": "women's golf clinic san francisco", "q": "QA7L3gEYtRcCO2I8kSp7HC5haS4", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open now", "datetime": "2026-03-12 19:28:25.371678", "source": "google", "data": ["abortion clinic near me open now", [["abortion clinic near me open now", 0, [512]], ["abortion clinic near me open now within 8.1 km", 0, [22, 30]], ["abortion clinic near me open now within 20 mi", 0, [22, 30]], ["abortion clinic near me open now within 5 mi", 0, [22, 30]], ["women's clinic near me open now", 0, [22, 30]], ["abortion hospital near me open now", 0, [22, 30]], ["abortion doctor near me open now", 0, [22, 30]], ["abortion centers near me open now", 0, [22, 30]], ["abortion services near me open now", 0, [22, 30]], ["women's clinic near me open now within 5 mi", 0, [22, 30]]], {"i": "abortion clinic near me open now", "q": "AuI-xq385nwlV_Y99u7Ha8ZU1Tg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic near me open now", "abortion clinic near me open now within 8.1 km", "abortion clinic near me open now within 20 mi", "abortion clinic near me open now within 5 mi", "women's clinic near me open now", "abortion hospital near me open now", "abortion doctor near me open now", "abortion centers near me open now", "abortion services near me open now", "women's clinic near me open now within 5 mi"], "self_loops": [0], "tags": {"i": "abortion clinic near me open now", "q": "AuI-xq385nwlV_Y99u7Ha8ZU1Tg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me prices", "datetime": "2026-03-12 19:28:26.440067", "source": "google", "data": ["abortion clinic near me prices", [["abortion clinic near me prices", 0, [512]], ["abortion clinic near me prices open now", 0, [22, 30]], ["cat abortion clinic near me prices", 0, [22, 30]], ["abortion clinics near me and prices within 8.1 km", 0, [22, 30]], ["abortion clinics near me and prices within 32.2 km", 0, [22, 30]], ["abortion clinic near me low cost", 0, [22, 30]], ["women's clinic near me low cost", 0, [22, 30]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic near me cost", 0, [512, 546]], ["abortion clinic near me how much", 0, [512, 546]]], {"i": "abortion clinic near me prices", "q": "iHFNZznBLq0U0ppd5YeXjOo1HA0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic near me prices", "abortion clinic near me prices open now", "cat abortion clinic near me prices", "abortion clinics near me and prices within 8.1 km", "abortion clinics near me and prices within 32.2 km", "abortion clinic near me low cost", "women's clinic near me low cost", "abortion clinic near me for free", "abortion clinic near me cost", "abortion clinic near me how much"], "self_loops": [0], "tags": {"i": "abortion clinic near me prices", "q": "iHFNZznBLq0U0ppd5YeXjOo1HA0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me for free", "datetime": "2026-03-12 19:28:27.389291", "source": "google", "data": ["abortion clinic near me for free", [["abortion clinic near me for free", 0, [512]], ["women clinic near me for free", 0, [22, 30]], ["women's clinic near me free ultrasound", 0, [22, 30]], ["abortion pill clinic near me free", 0, [22, 30]], ["women's center near me free ultrasound", 0, [22, 30]], ["women center near me free", 0, [22, 30]], ["free abortion clinic near me open now", 0, [22, 30]], ["free abortion clinic near me volunteer", 0, [22, 30]], ["free abortion clinic near me within 5 mi", 0, [22, 30]], ["free abortion clinic near me within 20 mi", 0, [22, 30]]], {"i": "abortion clinic near me for free", "q": "WOp0Gp23rZ_Al4C_OViuzHvbUE0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic near me for free", "women clinic near me for free", "women's clinic near me free ultrasound", "abortion pill clinic near me free", "women's center near me free ultrasound", "women center near me free", "free abortion clinic near me open now", "free abortion clinic near me volunteer", "free abortion clinic near me within 5 mi", "free abortion clinic near me within 20 mi"], "self_loops": [0], "tags": {"i": "abortion clinic near me for free", "q": "WOp0Gp23rZ_Al4C_OViuzHvbUE0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me walk in", "datetime": "2026-03-12 19:28:28.254532", "source": "google", "data": ["abortion clinic near me walk in", [["abortion clinic near me walk in", 0, [512]], ["women clinic near me walk in", 0, [22, 30]], ["women's health clinic near me walk in", 0, [22, 30]], ["free women's clinic near me walk in", 0, [22, 30]], ["walk in abortion clinic near me nhs", 0, [22, 30]], ["walk in abortion clinic near me open now", 0, [22, 30]], ["walk in abortion clinic near me private", 0, [22, 30]], ["walk in abortion clinic near me within 5 mi", 0, [22, 30]], ["walk in abortion clinic near me within 20 mi", 0, [22, 30]], ["walk in abortion clinic near me nhs open now", 0, [22, 30]]], {"i": "abortion clinic near me walk in", "q": "cRyI_FRqyKc6fYMhUFT0xgSKKBo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic near me walk in", "women clinic near me walk in", "women's health clinic near me walk in", "free women's clinic near me walk in", "walk in abortion clinic near me nhs", "walk in abortion clinic near me open now", "walk in abortion clinic near me private", "walk in abortion clinic near me within 5 mi", "walk in abortion clinic near me within 20 mi", "walk in abortion clinic near me nhs open now"], "self_loops": [0], "tags": {"i": "abortion clinic near me walk in", "q": "cRyI_FRqyKc6fYMhUFT0xgSKKBo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me now", "datetime": "2026-03-12 19:28:29.507558", "source": "google", "data": ["abortion clinic near me now", [["abortion clinic near me now", 0, [512, 457]], ["abortion clinic san francisco", 0, [512, 402, 650]], ["women's clinic near me now", 0, [22, 30]], ["abortion clinic near me today", 0, [22, 30]], ["abortion clinic near me open now", 0, [22, 30]], ["abortion clinic near me open now within 8.1 km", 0, [22, 30]], ["abortion clinic near me open now within 20 mi", 0, [22, 30]], ["abortion clinic near me open now within 5 mi", 0, [22, 30]], ["women's clinic near me open now", 0, [22, 30]], ["abortion hospital near me open now", 0, [22, 30]]], {"i": "abortion clinic near me now", "q": "J9qgmsXXVIUMPPFCn-E-0h6ZOdg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic near me now", "abortion clinic san francisco", "women's clinic near me now", "abortion clinic near me today", "abortion clinic near me open now", "abortion clinic near me open now within 8.1 km", "abortion clinic near me open now within 20 mi", "abortion clinic near me open now within 5 mi", "women's clinic near me open now", "abortion hospital near me open now"], "self_loops": [0], "tags": {"i": "abortion clinic near me now", "q": "J9qgmsXXVIUMPPFCn-E-0h6ZOdg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me that takes insurance", "datetime": "2026-03-12 19:28:30.433995", "source": "google", "data": ["abortion clinic near me that takes insurance", [["abortion clinic near me that takes insurance", 0, [512]], ["abortion clinic near me insurance", 0, [22, 30]], ["do abortion clinics take insurance", 0, [512, 390, 650]], ["what insurance cover abortion", 0, [512, 390, 650]], ["abortion clinic near me that accept insurance", 0, [751]], ["abortion clinic near me that accepts medicaid", 0, [512, 546]]], {"i": "abortion clinic near me that takes insurance", "q": "J-Q2LZpk1vCsoTebLQ_8os_qbZE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic near me that takes insurance", "abortion clinic near me insurance", "do abortion clinics take insurance", "what insurance cover abortion", "abortion clinic near me that accept insurance", "abortion clinic near me that accepts medicaid"], "self_loops": [0], "tags": {"i": "abortion clinic near me that takes insurance", "q": "J-Q2LZpk1vCsoTebLQ_8os_qbZE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open", "datetime": "2026-03-12 19:28:31.736091", "source": "google", "data": ["abortion clinic near me open", [["abortion clinic near me open now", 0, [512]], ["abortion clinic near me open", 0, [512]], ["abortion clinic near me open on weekends", 0, [512]], ["abortion clinic near me open saturday", 0, [512]], ["abortion clinic near me open sunday", 0, [22, 30]], ["abortion clinic near me open today", 0, [22, 30]], ["abortion clinic near me open tomorrow", 0, [22, 30]], ["abortion clinic near me open now within 8.1 km", 0, [22, 30]], ["abortion clinic near me open now within 20 mi", 0, [22, 30]], ["abortion clinic near me open now within 5 mi", 0, [22, 30]]], {"i": "abortion clinic near me open", "q": "meEiM6D5eUfd6aeD8MLjc8tkLDI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic near me open now", "abortion clinic near me open", "abortion clinic near me open on weekends", "abortion clinic near me open saturday", "abortion clinic near me open sunday", "abortion clinic near me open today", "abortion clinic near me open tomorrow", "abortion clinic near me open now within 8.1 km", "abortion clinic near me open now within 20 mi", "abortion clinic near me open now within 5 mi"], "self_loops": [1], "tags": {"i": "abortion clinic near me open", "q": "meEiM6D5eUfd6aeD8MLjc8tkLDI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me same day", "datetime": "2026-03-12 19:28:33.196221", "source": "google", "data": ["abortion clinic near me same day", [["abortion clinic near me same day", 0, [512]], ["abortion clinic near me same day appointment", 0, [512]], ["same day private abortion clinic near me", 0, [22, 30]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic open on saturday near me", 0, [512, 390, 650]], ["abortion clinic near me 24 hours", 0, [751]]], {"i": "abortion clinic near me same day", "q": "8xXvqEkHRb6uNTNshLR2o7iWW5c", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me same day", "abortion clinic near me same day appointment", "same day private abortion clinic near me", "abortion clinic near me now", "abortion clinic open on saturday near me", "abortion clinic near me 24 hours"], "self_loops": [0], "tags": {"i": "abortion clinic near me same day", "q": "8xXvqEkHRb6uNTNshLR2o7iWW5c", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online free", "datetime": "2026-03-12 19:28:34.586238", "source": "google", "data": ["abortion pill online free", [["abortion pill online free", 0, [512]], ["abortion pill online free texas", 0, [512]], ["abortion pill online free missouri", 0, [22, 30]], ["abortion pill online free medicaid", 0, [22, 30]], ["morning after pill online free", 0, [22, 30]], ["morning after pill for free boots", 0, [22, 30]], ["morning after pill free online uk", 0, [22, 30]], ["morning after pill for free uk", 0, [22, 30]], ["morning after pill for free nhs", 0, [22, 30]]], {"i": "abortion pill online free", "q": "qv6l5EVC9q7cSc-6H70WowbVk5U", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online free", "abortion pill online free texas", "abortion pill online free missouri", "abortion pill online free medicaid", "morning after pill online free", "morning after pill for free boots", "morning after pill free online uk", "morning after pill for free uk", "morning after pill for free nhs"], "self_loops": [0], "tags": {"i": "abortion pill online free", "q": "qv6l5EVC9q7cSc-6H70WowbVk5U", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online cost", "datetime": "2026-03-12 19:28:35.489936", "source": "google", "data": ["abortion pill online cost", [["abortion pill online cost", 0, [512]], ["abortion pill online low cost", 0, [22, 30]], ["morning after pill price online", 0, [22, 30]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill online prescription", 0, [512, 546]]], {"i": "abortion pill online cost", "q": "Xe6sDZzekGTX21fFy6bbj8i9umg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online cost", "abortion pill online low cost", "morning after pill price online", "abortion pill near me online", "abortion pill online prescription"], "self_loops": [0], "tags": {"i": "abortion pill online cost", "q": "Xe6sDZzekGTX21fFy6bbj8i9umg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online near me", "datetime": "2026-03-12 19:28:36.903393", "source": "google", "data": ["abortion pill online near me", [["abortion pill online near me", 0, [512, 457]], ["abortion pill in german online near me", 0, [22, 30]], ["abortion pill online medicaid", 0, [22, 30]], ["abortion pill online near mississippi", 0, [751]]], {"i": "abortion pill online near me", "q": "gx2_THJUbp7sbicGkKc8sgyA87M", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online near me", "abortion pill in german online near me", "abortion pill online medicaid", "abortion pill online near mississippi"], "self_loops": [0], "tags": {"i": "abortion pill online near me", "q": "gx2_THJUbp7sbicGkKc8sgyA87M", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online amazon", "datetime": "2026-03-12 19:28:38.173894", "source": "google", "data": ["abortion pill online amazon", [["abortion pill online amazon", 0, [512]], ["morning after pill on amazon", 0, [22, 30]], ["best amazon morning after pill", 0, [22, 10, 30]], ["abortion pill on amazon", 0, [22, 455, 30]]], {"i": "abortion pill online amazon", "q": "EgJw6EZ7BFUHCNQ4mUzOiz9ouf4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online amazon", "morning after pill on amazon", "best amazon morning after pill", "abortion pill on amazon"], "self_loops": [0], "tags": {"i": "abortion pill online amazon", "q": "EgJw6EZ7BFUHCNQ4mUzOiz9ouf4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online georgia", "datetime": "2026-03-12 19:28:39.157457", "source": "google", "data": ["abortion pill online georgia", [["abortion pill online georgia", 0, [512]], ["abortion pill online ga", 0, [22, 30]], ["abortion pill online atlanta ga", 0, [22, 30]], ["abortion pill in georgia", 0, [512, 390, 650]], ["abortion pill near me online", 0, [512, 390, 650]]], {"i": "abortion pill online georgia", "q": "xcZlUD9RlLCbyTo2KF6tOSnuKxE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online georgia", "abortion pill online ga", "abortion pill online atlanta ga", "abortion pill in georgia", "abortion pill near me online"], "self_loops": [0], "tags": {"i": "abortion pill online georgia", "q": "xcZlUD9RlLCbyTo2KF6tOSnuKxE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online reviews", "datetime": "2026-03-12 19:28:40.231479", "source": "google", "data": ["abortion pill online reviews", [["abortion pill online reviews", 0, [512]], ["online abortion pill rx reviews", 0, [22, 30]], ["abortion pill online telehealth", 0, [546, 649]]], {"i": "abortion pill online reviews", "q": "RbfUqmFGv6HbPvPcKJxXe9piz28", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online reviews", "online abortion pill rx reviews", "abortion pill online telehealth"], "self_loops": [0], "tags": {"i": "abortion pill online reviews", "q": "RbfUqmFGv6HbPvPcKJxXe9piz28", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online ohio", "datetime": "2026-03-12 19:28:41.194426", "source": "google", "data": ["abortion pill online ohio", [["abortion pill online ohio", 0, [512]], ["abortion clinics in ohio", 0, [22, 30]], ["abortion clinics in ohio near me", 0, [22, 30]], ["abortion pill ohio", 0, [22, 10, 30]], ["abortion pill legal in ohio", 0, [22, 30]], ["abortion pill laws in ohio", 0, [22, 30]]], {"i": "abortion pill online ohio", "q": "ahOlVj5pc56qVrKilGDsBk8U0nw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online ohio", "abortion clinics in ohio", "abortion clinics in ohio near me", "abortion pill ohio", "abortion pill legal in ohio", "abortion pill laws in ohio"], "self_loops": [0], "tags": {"i": "abortion pill online ohio", "q": "ahOlVj5pc56qVrKilGDsBk8U0nw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online abuzz", "datetime": "2026-03-12 19:28:42.247279", "source": "google", "data": ["abortion pill online abuzz", [["abortion pill online abuzz", 0, [512]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill online amazon", 0, [512, 546]], ["abortion pill online az", 0, [512, 546]], ["abortion pill online access", 0, [751]], ["abortion pill online prescription", 0, [512, 546]]], {"i": "abortion pill online abuzz", "q": "GNXgLrHptrKllS4xyqdlu6AlUrg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online abuzz", "abortion pill near me online", "abortion pill online amazon", "abortion pill online az", "abortion pill online access", "abortion pill online prescription"], "self_loops": [0], "tags": {"i": "abortion pill online abuzz", "q": "GNXgLrHptrKllS4xyqdlu6AlUrg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online cheapest", "datetime": "2026-03-12 19:28:43.553744", "source": "google", "data": ["abortion pill online cheapest", [["abortion pill online cheapest", 0, [512]], ["abortion pill online prices", 0, [22, 30]], ["morning after pill online cheap", 0, [22, 30]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill online cost", 0, [512, 546]]], {"i": "abortion pill online cheapest", "q": "29Wv4ZNnHCzXKJa7QushT2TJIwI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online cheapest", "abortion pill online prices", "morning after pill online cheap", "abortion pill near me online", "abortion pill online cost"], "self_loops": [0], "tags": {"i": "abortion pill online cheapest", "q": "29Wv4ZNnHCzXKJa7QushT2TJIwI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic san jose", "datetime": "2026-03-12 19:28:44.390246", "source": "google", "data": ["abortion clinic san jose", [["abortion clinic san jose", 0, [512]], ["abortion clinic san jose california", 0, [22, 30]], ["women's clinic san jose", 0, [22, 30]], ["saint joseph's women's clinic", 0, [22, 10, 30]], ["women's clinic st joseph mo", 0, [22, 30]], ["women's clinic st joseph pavilion", 0, [22, 10, 30]], ["women's health clinic san jose", 0, [22, 30]], ["abortion clinic near st joseph mi", 0, [22, 30]], ["surgical abortion clinics near me", 0, [512, 390, 650]], ["abortion clinic for free near me", 0, [512, 390, 650]]], {"i": "abortion clinic san jose", "q": "uSBaSl3IPe1kqqvbFXnjI5muFko", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic san jose", "abortion clinic san jose california", "women's clinic san jose", "saint joseph's women's clinic", "women's clinic st joseph mo", "women's clinic st joseph pavilion", "women's health clinic san jose", "abortion clinic near st joseph mi", "surgical abortion clinics near me", "abortion clinic for free near me"], "self_loops": [0], "tags": {"i": "abortion clinic san jose", "q": "uSBaSl3IPe1kqqvbFXnjI5muFko", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic santa rosa", "datetime": "2026-03-12 19:28:45.598106", "source": "google", "data": ["abortion clinic santa rosa", [["abortion clinic santa rosa", 0, [512]], ["abortion clinic santa rosa ca", 0, [22, 30]], ["women's clinic santa rosa", 0, [22, 10, 30]], ["women's health clinic santa rosa", 0, [22, 30]], ["free abortion clinic near me", 0, [512, 390, 650]], ["planned parenthood near me abortion clinic", 0, [512, 390, 650]], ["abortion santa rosa", 0, [751]]], {"i": "abortion clinic santa rosa", "q": "FlEZfckj37xwEfMzYd-i-hRNY08", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic santa rosa", "abortion clinic santa rosa ca", "women's clinic santa rosa", "women's health clinic santa rosa", "free abortion clinic near me", "planned parenthood near me abortion clinic", "abortion santa rosa"], "self_loops": [0], "tags": {"i": "abortion clinic santa rosa", "q": "FlEZfckj37xwEfMzYd-i-hRNY08", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic brentwood", "datetime": "2026-03-12 19:28:46.890519", "source": "google", "data": ["abortion clinic brentwood", [["abortion clinic brentwood", 0, [512]], ["women's clinic brentwood", 0, [22, 30]], ["abortion clinic brevard county", 0, [751]], ["abortion clinic beverly hills", 0, [512, 546]], ["abortion clinic bristol tn", 0, [512, 546]], ["abortion clinic bradenton", 0, [512, 546]], ["abortion clinic boise", 0, [751]]], {"i": "abortion clinic brentwood", "q": "YzkTkU-1mQvtumaGXF8daGnv_UU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic brentwood", "women's clinic brentwood", "abortion clinic brevard county", "abortion clinic beverly hills", "abortion clinic bristol tn", "abortion clinic bradenton", "abortion clinic boise"], "self_loops": [0], "tags": {"i": "abortion clinic brentwood", "q": "YzkTkU-1mQvtumaGXF8daGnv_UU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic oakland", "datetime": "2026-03-12 19:28:47.927983", "source": "google", "data": ["abortion clinic oakland", [["abortion clinic oakland", 0, [512]], ["abortion clinic oakland park", 0, [22, 30]], ["abortion clinic oakland ca", 0, [22, 30]], ["women's clinic oakland", 0, [22, 30]], ["abortion clinic oakland county", 0, [751]]], {"i": "abortion clinic oakland", "q": "HMXFGn2bPVC3Z0iwkvKTYsYmV70", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic oakland", "abortion clinic oakland park", "abortion clinic oakland ca", "women's clinic oakland", "abortion clinic oakland county"], "self_loops": [0], "tags": {"i": "abortion clinic oakland", "q": "HMXFGn2bPVC3Z0iwkvKTYsYmV70", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic illinois", "datetime": "2026-03-12 19:28:48.828592", "source": "google", "data": ["abortion clinic illinois", [["abortion clinic illinois", 0, [512]], ["abortion clinic illinois cost", 0, [512]], ["abortion clinic illinois carbondale", 0, [512]], ["abortion clinic illinois near me", 0, [512]], ["abortion clinic illinois closest to me", 0, [22, 30]], ["abortion clinic illinois chicago", 0, [22, 30]], ["abortion clinic illinois open now", 0, [22, 30]], ["abortion clinic illinois free", 0, [22, 30]], ["women's clinic illinois", 0, [22, 30]], ["abortion services illinois", 0, [22, 30]]], {"i": "abortion clinic illinois", "q": "ui836h6tLxch5eNljea_DfagVm0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic illinois", "abortion clinic illinois cost", "abortion clinic illinois carbondale", "abortion clinic illinois near me", "abortion clinic illinois closest to me", "abortion clinic illinois chicago", "abortion clinic illinois open now", "abortion clinic illinois free", "women's clinic illinois", "abortion services illinois"], "self_loops": [0], "tags": {"i": "abortion clinic illinois", "q": "ui836h6tLxch5eNljea_DfagVm0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic north carolina", "datetime": "2026-03-12 19:28:49.751030", "source": "google", "data": ["abortion clinic north carolina", [["abortion clinic north carolina", 0, [512]], ["abortion clinic north carolina charlotte", 0, [512]], ["abortion clinic north carolina near me", 0, [512]], ["abortion clinic north carolina prices", 0, [512]], ["abortion clinic north carolina open now", 0, [22, 30]], ["abortion center north carolina", 0, [22, 30]], ["abortion services north carolina", 0, [22, 30]], ["women's clinic north carolina", 0, [22, 30]], ["free abortion clinic north carolina", 0, [22, 30]], ["abortion clinic greensboro north carolina", 0, [22, 30]]], {"i": "abortion clinic north carolina", "q": "sUx1DLkQ4Ckp7A_ULfb_KCy25Jc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic north carolina", "abortion clinic north carolina charlotte", "abortion clinic north carolina near me", "abortion clinic north carolina prices", "abortion clinic north carolina open now", "abortion center north carolina", "abortion services north carolina", "women's clinic north carolina", "free abortion clinic north carolina", "abortion clinic greensboro north carolina"], "self_loops": [0], "tags": {"i": "abortion clinic north carolina", "q": "sUx1DLkQ4Ckp7A_ULfb_KCy25Jc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic chicago", "datetime": "2026-03-12 19:28:50.716948", "source": "google", "data": ["abortion clinic chicago", [["abortion clinic chicago", 0, [512]], ["abortion clinic chicago illinois", 0, [512]], ["abortion clinic chicago free", 0, [512]], ["abortion clinic chicago price", 0, [512]], ["abortion clinic chicago near me", 0, [512]], ["abortion clinic chicago open now", 0, [512]], ["abortion clinic chicago washington street", 0, [512]], ["abortion clinic chicago downtown", 0, [22, 30]], ["abortion clinic chicago within 5 mi", 0, [22, 30]], ["abortion clinic chicago washington", 0, [22, 30]]], {"i": "abortion clinic chicago", "q": "pnFueDnRak_J1Lr5FK6rI9df6O4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic chicago", "abortion clinic chicago illinois", "abortion clinic chicago free", "abortion clinic chicago price", "abortion clinic chicago near me", "abortion clinic chicago open now", "abortion clinic chicago washington street", "abortion clinic chicago downtown", "abortion clinic chicago within 5 mi", "abortion clinic chicago washington"], "self_loops": [0], "tags": {"i": "abortion clinic chicago", "q": "pnFueDnRak_J1Lr5FK6rI9df6O4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost cvs", "datetime": "2026-03-12 19:28:51.875555", "source": "google", "data": ["abortion pill cost cvs", [["abortion pill cost cvs", 0, [512]], ["abortion pill cost cvs florida", 0, [512]], ["abortion pill cost cvs california", 0, [512]], ["abortion pill cost cvs texas", 0, [22, 30]], ["abortion pill cost cvs near me", 0, [22, 30]], ["abortion pill cost cvs michigan", 0, [22, 30]], ["abortion pill cost cvs over the counter", 0, [22, 30]], ["abortion pill cost cvs pa", 0, [22, 455, 30]], ["morning after pill cost cvs", 0, [22, 30]], ["abortion pill cvs cost nc", 0, [22, 30]]], {"i": "abortion pill cost cvs", "q": "-g2OuX8OeydKFJxLGamwBO8bpnk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost cvs", "abortion pill cost cvs florida", "abortion pill cost cvs california", "abortion pill cost cvs texas", "abortion pill cost cvs near me", "abortion pill cost cvs michigan", "abortion pill cost cvs over the counter", "abortion pill cost cvs pa", "morning after pill cost cvs", "abortion pill cvs cost nc"], "self_loops": [0], "tags": {"i": "abortion pill cost cvs", "q": "-g2OuX8OeydKFJxLGamwBO8bpnk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost california", "datetime": "2026-03-12 19:28:52.979033", "source": "google", "data": ["abortion pill cost california", [["abortion pill cost california", 0, [512]], ["abortion pill cost california reddit", 0, [22, 30]], ["abortion pill cost cvs california", 0, [22, 30]], ["abortion clinic california cost", 0, [22, 30]], ["kaiser abortion pill cost california", 0, [22, 30]], ["abortion pill cost no insurance california", 0, [22, 30]], ["hey jane abortion pill cost california", 0, [22, 30]]], {"i": "abortion pill cost california", "q": "c9_haTU-Q5WEeJTW4j9DIm3L2E8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost california", "abortion pill cost california reddit", "abortion pill cost cvs california", "abortion clinic california cost", "kaiser abortion pill cost california", "abortion pill cost no insurance california", "hey jane abortion pill cost california"], "self_loops": [0], "tags": {"i": "abortion pill cost california", "q": "c9_haTU-Q5WEeJTW4j9DIm3L2E8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost online", "datetime": "2026-03-12 19:28:54.015852", "source": "google", "data": ["abortion pill cost online", [["abortion pill cost online", 0, [512]], ["abortion pill low cost online", 0, [22, 30]], ["abortion pill near me online", 0, [512, 390, 650]]], {"i": "abortion pill cost online", "q": "l0heuyA4gvpDjjpOReBU-Hh3fsk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost online", "abortion pill low cost online", "abortion pill near me online"], "self_loops": [0], "tags": {"i": "abortion pill cost online", "q": "l0heuyA4gvpDjjpOReBU-Hh3fsk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost pharmacy", "datetime": "2026-03-12 19:28:55.451305", "source": "google", "data": ["abortion pill cost pharmacy", [["abortion pill cost pharmacy", 0, [512]], ["abortion pill cost pharmacy near me", 0, [512]], ["abortion pill cost pharmacy south africa", 0, [512]], ["abortion pill cost pharmacy in kenya", 0, [512]], ["abortion pill cost pharmacy india", 0, [512]], ["abortion pill cost pharmacy malaysia", 0, [512]], ["abortion pill cost pharmacy malaysia near me", 0, [512]]], {"q": "2S6vapEzZ2CwZvJ15pDW5PENR_A", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost pharmacy", "abortion pill cost pharmacy near me", "abortion pill cost pharmacy south africa", "abortion pill cost pharmacy in kenya", "abortion pill cost pharmacy india", "abortion pill cost pharmacy malaysia", "abortion pill cost pharmacy malaysia near me"], "self_loops": [0], "tags": {"q": "2S6vapEzZ2CwZvJ15pDW5PENR_A", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost north carolina", "datetime": "2026-03-12 19:28:56.666789", "source": "google", "data": ["abortion pill cost north carolina", [["abortion pill cost north carolina", 0, [512]], ["abortion pill nc cost", 0, [512, 390, 650]]], {"i": "abortion pill cost north carolina", "q": "-dmutkg2ruoOzNOLHG40lLaZP0M", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost north carolina", "abortion pill nc cost"], "self_loops": [0], "tags": {"i": "abortion pill cost north carolina", "q": "-dmutkg2ruoOzNOLHG40lLaZP0M", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost planned parenthood reddit", "datetime": "2026-03-12 19:28:57.484252", "source": "google", "data": ["abortion pill cost planned parenthood reddit", [["abortion pill cost planned parenthood reddit", 0, [512]], ["how much are abortions at planned parenthood with insurance", 0, [512, 390, 650]], ["how much is an abortion cost at planned parenthood", 0, [512, 390, 650]], ["abortion pill planned parenthood reddit", 0, [512, 546]]], {"i": "abortion pill cost planned parenthood reddit", "q": "tyXNp1Dxv9Q25wTg8SHaT-a8eh0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost planned parenthood reddit", "how much are abortions at planned parenthood with insurance", "how much is an abortion cost at planned parenthood", "abortion pill planned parenthood reddit"], "self_loops": [0], "tags": {"i": "abortion pill cost planned parenthood reddit", "q": "tyXNp1Dxv9Q25wTg8SHaT-a8eh0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost florida", "datetime": "2026-03-12 19:28:58.605231", "source": "google", "data": ["abortion pill cost florida", [["abortion pill cost florida", 0, [512]], ["abortion pill cost fl", 0, [22, 30]], ["abortion pill cost cvs florida", 0, [22, 30]], ["abortion clinic florida cost", 0, [22, 30]], ["planned parenthood abortion pill cost florida", 0, [22, 30]], ["average cost of abortion pill in florida", 0, [512, 390, 650]]], {"i": "abortion pill cost florida", "q": "_n1dlQyxatkKnX3U3w1JxUi32RU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost florida", "abortion pill cost fl", "abortion pill cost cvs florida", "abortion clinic florida cost", "planned parenthood abortion pill cost florida", "average cost of abortion pill in florida"], "self_loops": [0], "tags": {"i": "abortion pill cost florida", "q": "_n1dlQyxatkKnX3U3w1JxUi32RU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost free", "datetime": "2026-03-12 19:28:59.710555", "source": "google", "data": ["abortion pill cost free", [["abortion pill cost free", 0, [512]], ["abortion pill cost online", 0, [512, 546]], ["abortion pill cost fl", 0, [751]]], {"i": "abortion pill cost free", "q": "AdGzAZjjbIbUviOu4Osk9-2o8rA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost free", "abortion pill cost online", "abortion pill cost fl"], "self_loops": [0], "tags": {"i": "abortion pill cost free", "q": "AdGzAZjjbIbUviOu4Osk9-2o8rA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost for 1 month", "datetime": "2026-03-12 19:29:00.603932", "source": "google", "data": ["abortion pill cost for 1 month", [["abortion pill cost for 1 month", 0, [512]], ["abortion pill cost cvs", 0, [512, 546]], ["abortion pill cost online", 0, [512, 546]]], {"i": "abortion pill cost for 1 month", "q": "wAzG6w4nr1umFKw4IHw7XYfPxvY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost for 1 month", "abortion pill cost cvs", "abortion pill cost online"], "self_loops": [0], "tags": {"i": "abortion pill cost for 1 month", "q": "wAzG6w4nr1umFKw4IHw7XYfPxvY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition according to who", "datetime": "2026-03-12 19:29:02.077860", "source": "google", "data": ["abortion definition according to who", [["abortion definition according to who", 0, [512]], ["abortion definition according to who 2022", 0, [512]], ["abortion definition according to who pdf", 0, [512]], ["abortion definition acc to who", 0, [22, 30]], ["abortion meaning according to who", 0, [22, 30]], ["medical abortion definition according to who", 0, [22, 30]], ["illegal abortion definition according to who", 0, [22, 30]], ["spontaneous abortion definition according to who", 0, [22, 30]], ["criminal abortion definition according to who", 0, [22, 30]], ["threatened abortion definition according to who", 0, [22, 30]]], {"i": "abortion definition according to who", "q": "uO-EfsQvi2MQ8OZVlNOyYXdT-oU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion definition according to who", "abortion definition according to who 2022", "abortion definition according to who pdf", "abortion definition acc to who", "abortion meaning according to who", "medical abortion definition according to who", "illegal abortion definition according to who", "spontaneous abortion definition according to who", "criminal abortion definition according to who", "threatened abortion definition according to who"], "self_loops": [0], "tags": {"i": "abortion definition according to who", "q": "uO-EfsQvi2MQ8OZVlNOyYXdT-oU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition oxford", "datetime": "2026-03-12 19:29:03.346398", "source": "google", "data": ["abortion definition oxford", [["abortion definition oxford", 0, [512]], ["abortion definition oxford dictionary", 0, [512]], ["abortion oxford dictionary", 0, [22, 30]]], {"i": "abortion definition oxford", "q": "A3Ks28jEUSaKPzBzB-rU5KcJA6Y", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion definition oxford", "abortion definition oxford dictionary", "abortion oxford dictionary"], "self_loops": [0], "tags": {"i": "abortion definition oxford", "q": "A3Ks28jEUSaKPzBzB-rU5KcJA6Y", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition cdc", "datetime": "2026-03-12 19:29:04.448871", "source": "google", "data": ["abortion definition cdc", [["abortion definition cdc", 0, [512]], ["define abortion cdc", 0, [22, 30]], ["abortion definition according to cdc", 0, [22, 30]]], {"i": "abortion definition cdc", "q": "pCfB9vPO88PeQp6ccv-z4zLVgi4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion definition cdc", "define abortion cdc", "abortion definition according to cdc"], "self_loops": [0], "tags": {"i": "abortion definition cdc", "q": "pCfB9vPO88PeQp6ccv-z4zLVgi4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition law", "datetime": "2026-03-12 19:29:05.654195", "source": "google", "data": ["abortion definition law", [["abortion definition law", 0, [512]], ["abortion meaning in law philippines", 0, [22, 30]], ["abortion definition legal", 0, [22, 30]], ["abortion definition uk law", 0, [22, 30]], ["abortion act definition", 0, [22, 30]], ["abortion defined by law", 0, [751]], ["abortion defined legally", 0, [751]]], {"i": "abortion definition law", "q": "NDwN-vhJ93y_gV6RxegzCxCQOr0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion definition law", "abortion meaning in law philippines", "abortion definition legal", "abortion definition uk law", "abortion act definition", "abortion defined by law", "abortion defined legally"], "self_loops": [0], "tags": {"i": "abortion definition law", "q": "NDwN-vhJ93y_gV6RxegzCxCQOr0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition webster", "datetime": "2026-03-12 19:29:06.885125", "source": "google", "data": ["abortion definition webster", [["abortion definition webster", 0, [512]], ["abortion merriam webster", 0, [22, 30]], ["abortion definition merriam webster", 0, [22, 30]], ["abortion definition oxford", 0, [512, 390, 650]], ["abortion definition webster dictionary", 0, [751]], ["abortion webster's dictionary", 0, [512, 546]]], {"i": "abortion definition webster", "q": "59_Q0WDzLNLq4aFPofe9_0R2wdo", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition webster", "abortion merriam webster", "abortion definition merriam webster", "abortion definition oxford", "abortion definition webster dictionary", "abortion webster's dictionary"], "self_loops": [0], "tags": {"i": "abortion definition webster", "q": "59_Q0WDzLNLq4aFPofe9_0R2wdo", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition simple", "datetime": "2026-03-12 19:29:07.924095", "source": "google", "data": ["abortion definition simple", [["abortion definition simple", 0, [512]], ["abortion definition easy", 0, [22, 30]], ["septic abortion definition simple", 0, [22, 30]], ["spontaneous abortion definition simple", 0, [22, 30]], ["complete abortion definition simple", 0, [22, 30]], ["threatened abortion simple definition", 0, [22, 30]], ["inevitable abortion simple definition", 0, [22, 30]], ["missed abortion simple definition", 0, [22, 30]], ["induced abortion simple definition", 0, [22, 30]], ["recurrent abortion simple definition", 0, [22, 30]]], {"i": "abortion definition simple", "q": "5UU_1Rec-SCSg3hYMJXVTy8YCg8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion definition simple", "abortion definition easy", "septic abortion definition simple", "spontaneous abortion definition simple", "complete abortion definition simple", "threatened abortion simple definition", "inevitable abortion simple definition", "missed abortion simple definition", "induced abortion simple definition", "recurrent abortion simple definition"], "self_loops": [0], "tags": {"i": "abortion definition simple", "q": "5UU_1Rec-SCSg3hYMJXVTy8YCg8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition acog", "datetime": "2026-03-12 19:29:09.085069", "source": "google", "data": ["abortion definition acog", [["abortion definition acog", 0, [512]], ["missed abortion definition acog", 0, [22, 30]], ["spontaneous abortion definition acog", 0, [22, 30]], ["abortion medical definition acog", 0, [22, 30]], ["threatened abortion definition acog", 0, [22, 30]], ["inevitable abortion definition acog", 0, [22, 30]], ["septic abortion definition acog", 0, [22, 30]], ["incomplete abortion definition acog", 0, [22, 30]], ["types of abortion acog", 0, [512, 390, 650]], ["acog abortion policy", 0, [512, 390, 650]]], {"i": "abortion definition acog", "q": "zC5chcB4VnOrrB0u7NukmQifzks", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion definition acog", "missed abortion definition acog", "spontaneous abortion definition acog", "abortion medical definition acog", "threatened abortion definition acog", "inevitable abortion definition acog", "septic abortion definition acog", "incomplete abortion definition acog", "types of abortion acog", "acog abortion policy"], "self_loops": [0], "tags": {"i": "abortion definition acog", "q": "zC5chcB4VnOrrB0u7NukmQifzks", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition merriam webster", "datetime": "2026-03-12 19:29:10.513207", "source": "google", "data": ["abortion definition merriam webster", [["abortion definition merriam webster", 0, [512]], ["abortion definition webster", 0, [512, 390, 650]], ["abortion definition webster dictionary", 0, [751]]], {"i": "abortion definition merriam webster", "q": "Q-BgeWi8ykVNckFOQ3vYIIGQ_W4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition merriam webster", "abortion definition webster", "abortion definition webster dictionary"], "self_loops": [0], "tags": {"i": "abortion definition merriam webster", "q": "Q-BgeWi8ykVNckFOQ3vYIIGQ_W4", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition in nursing", "datetime": "2026-03-12 19:29:11.944125", "source": "google", "data": ["abortion definition in nursing", [["abortion definition in nursing", 0, [512]], ["abortion definition in nursing ppt", 0, [512]], ["abortion definition in nursing according to who", 0, [22, 30]], ["abortion definition in nursing pdf", 0, [22, 30]], ["abortion definition in nursing in hindi", 0, [22, 30]], ["abortion definition in community health nursing", 0, [22, 30]], ["types of abortion definition in nursing", 0, [22, 30]], ["definition of abortion in nursing wikipedia", 0, [22, 30]], ["definition of abortion in nursing slideshare", 0, [22, 30]], ["what is abortion in nursing", 0, [512, 390, 650]]], {"i": "abortion definition in nursing", "q": "rFMeuFMGiCSJXT3Do5eAOYNvqaw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion definition in nursing", "abortion definition in nursing ppt", "abortion definition in nursing according to who", "abortion definition in nursing pdf", "abortion definition in nursing in hindi", "abortion definition in community health nursing", "types of abortion definition in nursing", "definition of abortion in nursing wikipedia", "definition of abortion in nursing slideshare", "what is abortion in nursing"], "self_loops": [0], "tags": {"i": "abortion definition in nursing", "q": "rFMeuFMGiCSJXT3Do5eAOYNvqaw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects long term", "datetime": "2026-03-12 19:29:12.838266", "source": "google", "data": ["abortion pill side effects long term", [["abortion pill side effects long term", 0, [512]], ["abortion pill side effects long term reddit", 0, [22, 30]], ["morning after pill side effects long term reddit", 0, [22, 30]], ["morning after pill effects long term", 0, [22, 30]], ["morning after pill effects long term several times", 0, [22, 30]], ["does abortion pill have long term side effects", 0, [22, 30]], ["what are the long term effects of the abortion pill", 0, [512, 390, 650]], ["long term effects of medical abortion", 0, [512, 390, 650]]], {"i": "abortion pill side effects long term", "q": "l-W8DR3RylwbwrEEEpkOtXoE9oU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill side effects long term", "abortion pill side effects long term reddit", "morning after pill side effects long term reddit", "morning after pill effects long term", "morning after pill effects long term several times", "does abortion pill have long term side effects", "what are the long term effects of the abortion pill", "long term effects of medical abortion"], "self_loops": [0], "tags": {"i": "abortion pill side effects long term", "q": "l-W8DR3RylwbwrEEEpkOtXoE9oU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects reddit", "datetime": "2026-03-12 19:29:14.067292", "source": "google", "data": ["abortion pill side effects reddit", [["abortion pill side effects reddit", 0, [512]], ["morning after pill side effects reddit", 0, [22, 30]], ["abortion pill after effects reddit", 0, [22, 30]], ["first abortion pill side effects reddit", 0, [22, 30]], ["abortion pill long term side effects reddit", 0, [22, 30]], ["ella morning after pill side effects reddit", 0, [22, 30]], ["morning after pill emotional side effects reddit", 0, [22, 30]], ["morning after pill long term side effects reddit", 0, [22, 30]], ["morning after pill side effects menstrual cycle reddit", 0, [22, 30]], ["abortion pill reviews reddit", 0, [512, 390, 650]]], {"i": "abortion pill side effects reddit", "q": "-y3v_H-YbKMj137V9YHR-gkYgoU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill side effects reddit", "morning after pill side effects reddit", "abortion pill after effects reddit", "first abortion pill side effects reddit", "abortion pill long term side effects reddit", "ella morning after pill side effects reddit", "morning after pill emotional side effects reddit", "morning after pill long term side effects reddit", "morning after pill side effects menstrual cycle reddit", "abortion pill reviews reddit"], "self_loops": [0], "tags": {"i": "abortion pill side effects reddit", "q": "-y3v_H-YbKMj137V9YHR-gkYgoU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects how long", "datetime": "2026-03-12 19:29:15.067904", "source": "google", "data": ["abortion pill side effects how long", [["abortion pill side effects how long", 0, [512]], ["abortion pill side effects how many days", 0, [22, 30]], ["abortion pill side effects long term", 0, [22, 30]], ["abortion pill side effects long term reddit", 0, [22, 30]], ["morning after pill side effects and how long they last", 0, [22, 30]], ["morning after pill side effects long term reddit", 0, [22, 30]], ["morning after pill effects how long", 0, [22, 30]]], {"i": "abortion pill side effects how long", "q": "xnrQjfL2xliZWtZqslki_95mmkE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill side effects how long", "abortion pill side effects how many days", "abortion pill side effects long term", "abortion pill side effects long term reddit", "morning after pill side effects and how long they last", "morning after pill side effects long term reddit", "morning after pill effects how long"], "self_loops": [0], "tags": {"i": "abortion pill side effects how long", "q": "xnrQjfL2xliZWtZqslki_95mmkE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects first pill", "datetime": "2026-03-12 19:29:16.400669", "source": "google", "data": ["abortion pill side effects first pill", [["abortion pill side effects first pill", 0, [512]], ["abortion pill side effects after first pill", 0, [22, 30]], ["how soon after abortion can i take the pill", 0, [512, 390, 650]], ["how long after an abortion can you start taking the pill", 0, [512, 390, 650]], ["how long after an abortion can you start the pill", 0, [512, 390, 650]], ["abortion first pill side effects", 0, [512, 546]], ["abortion pill side effects future pregnancy", 0, [512, 546]], ["abortion pill side effects long term", 0, [512, 546]]], {"i": "abortion pill side effects first pill", "q": "G1r2oyi_1LuQ1QPCYQMkpCG7ZdQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill side effects first pill", "abortion pill side effects after first pill", "how soon after abortion can i take the pill", "how long after an abortion can you start taking the pill", "how long after an abortion can you start the pill", "abortion first pill side effects", "abortion pill side effects future pregnancy", "abortion pill side effects long term"], "self_loops": [0], "tags": {"i": "abortion pill side effects first pill", "q": "G1r2oyi_1LuQ1QPCYQMkpCG7ZdQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects timeline", "datetime": "2026-03-12 19:29:17.380626", "source": "google", "data": ["abortion pill side effects timeline", [["abortion pill side effects timeline", 0, [512]], ["morning after pill side effects timeline", 0, [22, 30]], ["abortion pill side effects duration", 0, [22, 30]], ["side effects 3 weeks after abortion", 0, [512, 390, 650]], ["4 days after abortion pill", 0, [512, 390, 650]], ["how soon after abortion can i take the pill", 0, [512, 390, 650]], ["abortion pill side effects last", 0, [751]], ["abortion pill side effects long term", 0, [512, 546]], ["abortion pill side effects after", 0, [546, 649]], ["abortion pill side effects future pregnancy", 0, [512, 546]]], {"i": "abortion pill side effects timeline", "q": "0qlkk98QWENbMgHwQ5VFFZaPwms", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill side effects timeline", "morning after pill side effects timeline", "abortion pill side effects duration", "side effects 3 weeks after abortion", "4 days after abortion pill", "how soon after abortion can i take the pill", "abortion pill side effects last", "abortion pill side effects long term", "abortion pill side effects after", "abortion pill side effects future pregnancy"], "self_loops": [0], "tags": {"i": "abortion pill side effects timeline", "q": "0qlkk98QWENbMgHwQ5VFFZaPwms", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects future pregnancy", "datetime": "2026-03-12 19:29:18.557442", "source": "google", "data": ["abortion pill side effects future pregnancy", [["abortion pill side effects future pregnancy", 0, [512]], ["abortion pill side effects future pregnancy in hindi", 0, [512]], ["abortion pill side effects future pregnancy in english", 0, [512]], ["morning after pill side effects future pregnancy", 0, [22, 30]], ["abortion side effects future pregnancy", 0, [512, 390, 650]], ["abortion pill future pregnancy", 0, [512, 390, 650]], ["side effects of pregnancy after abortion", 0, [512, 390, 650]], ["does abortion affect future pregnancy", 0, [512, 390, 650]], ["abortion pill effects on future pregnancy", 0, [512, 546]], ["abortion pill affect future pregnancy", 0, [512, 546]]], {"i": "abortion pill side effects future pregnancy", "q": "kQv60Wb3rjQMCn5EVCfVUJQFq7U", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill side effects future pregnancy", "abortion pill side effects future pregnancy in hindi", "abortion pill side effects future pregnancy in english", "morning after pill side effects future pregnancy", "abortion side effects future pregnancy", "abortion pill future pregnancy", "side effects of pregnancy after abortion", "does abortion affect future pregnancy", "abortion pill effects on future pregnancy", "abortion pill affect future pregnancy"], "self_loops": [0], "tags": {"i": "abortion pill side effects future pregnancy", "q": "kQv60Wb3rjQMCn5EVCfVUJQFq7U", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects mentally", "datetime": "2026-03-12 19:29:19.493995", "source": "google", "data": ["abortion pill side effects mentally", [["abortion pill side effects mentally", 0, [512]], ["morning after pill side effects mentally", 0, [22, 30]], ["abortion pill side effects emotional", 0, [22, 30]], ["morning after pill side effects emotional", 0, [22, 30]], ["abortion pill side effects future pregnancy", 0, [512, 390, 650]], ["abortion side effects future pregnancy", 0, [512, 390, 650]], ["abortion pill future pregnancy", 0, [512, 390, 650]], ["mental health side effects of abortion", 0, [751]], ["abortion side effects mentally", 0, [546, 649]]], {"i": "abortion pill side effects mentally", "q": "PCKGHO2pMHeQBNImmf--8AUE3DA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill side effects mentally", "morning after pill side effects mentally", "abortion pill side effects emotional", "morning after pill side effects emotional", "abortion pill side effects future pregnancy", "abortion side effects future pregnancy", "abortion pill future pregnancy", "mental health side effects of abortion", "abortion side effects mentally"], "self_loops": [0], "tags": {"i": "abortion pill side effects mentally", "q": "PCKGHO2pMHeQBNImmf--8AUE3DA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects how many days", "datetime": "2026-03-12 19:29:20.355548", "source": "google", "data": ["abortion pill side effects how many days", [["abortion pill side effects how many days", 0, [512]], ["morning after pill side effects days later", 0, [22, 30]], ["morning after pill side effects days", 0, [22, 10, 30]], ["side effects 3 weeks after abortion", 0, [512, 390, 650]], ["how soon after abortion can i take the pill", 0, [512, 390, 650]], ["abortion pill side effects long term", 0, [512, 546]], ["how long do side effects of abortion pills last", 0, [751]], ["abortion pill side effects after", 0, [546, 649]]], {"i": "abortion pill side effects how many days", "q": "xDTpv5i3DcusDDcu1vQTOTz8ZPk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill side effects how many days", "morning after pill side effects days later", "morning after pill side effects days", "side effects 3 weeks after abortion", "how soon after abortion can i take the pill", "abortion pill side effects long term", "how long do side effects of abortion pills last", "abortion pill side effects after"], "self_loops": [0], "tags": {"i": "abortion pill side effects how many days", "q": "xDTpv5i3DcusDDcu1vQTOTz8ZPk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects 5 weeks", "datetime": "2026-03-12 19:29:21.812761", "source": "google", "data": ["abortion pill side effects 5 weeks", [["abortion pill side effects 5 weeks", 0, [512]], ["bleeding 5 weeks after abortion pill", 0, [512, 390, 650]], ["bleeding 5 days after abortion pill", 0, [512, 390, 650]], ["abortion pill side effects long term", 0, [512, 546]], ["abortion pill side effects future pregnancy", 0, [512, 546]], ["abortion pill side effects last", 0, [751]]], {"i": "abortion pill side effects 5 weeks", "q": "MhK9Ly0ZHaYRZyTQCpFJChkjBOM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill side effects 5 weeks", "bleeding 5 weeks after abortion pill", "bleeding 5 days after abortion pill", "abortion pill side effects long term", "abortion pill side effects future pregnancy", "abortion pill side effects last"], "self_loops": [0], "tags": {"i": "abortion pill side effects 5 weeks", "q": "MhK9Ly0ZHaYRZyTQCpFJChkjBOM", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in pregnancy", "datetime": "2026-03-12 19:29:22.885707", "source": "google", "data": ["abortion meaning in pregnancy", [["abortion meaning in pregnancy", 0, [512]], ["abortion meaning in pregnancy kannada", 0, [22, 455, 30]], ["abortion meaning in marathi pregnancy", 0, [22, 30]], ["complete abortion meaning in pregnancy", 0, [22, 30]], ["induced abortion meaning in pregnancy", 0, [22, 30]], ["missed abortion meaning in pregnancy", 0, [22, 30]], ["threatened abortion meaning in pregnancy", 0, [22, 30]], ["spontaneous abortion meaning in pregnancy", 0, [22, 30]], ["abortion meaning in pregnancy in hindi", 0, [22, 30]], ["septic abortion meaning in pregnancy", 0, [22, 30]]], {"i": "abortion meaning in pregnancy", "q": "Dxjppxa6KpcID3iiI7M41EWkfVA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion meaning in pregnancy", "abortion meaning in pregnancy kannada", "abortion meaning in marathi pregnancy", "complete abortion meaning in pregnancy", "induced abortion meaning in pregnancy", "missed abortion meaning in pregnancy", "threatened abortion meaning in pregnancy", "spontaneous abortion meaning in pregnancy", "abortion meaning in pregnancy in hindi", "septic abortion meaning in pregnancy"], "self_loops": [0], "tags": {"i": "abortion meaning in pregnancy", "q": "Dxjppxa6KpcID3iiI7M41EWkfVA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in english", "datetime": "2026-03-12 19:29:23.938798", "source": "google", "data": ["abortion meaning in english", [["abortion meaning in english", 0, [512]], ["abortion meaning in english oxford", 0, [22, 30]], ["abortion meaning in english grammar", 0, [22, 30]], ["abortion meaning in english with example", 0, [22, 30]], ["abort meaning in english synonyms", 0, [22, 30]], ["threatened abortion meaning in english", 0, [22, 30]], ["spontaneous abortion meaning in english", 0, [22, 30]], ["induced abortion meaning in english", 0, [22, 30]], ["missed abortion meaning in english", 0, [22, 30]], ["inevitable abortion meaning in english", 0, [22, 30]]], {"i": "abortion meaning in english", "q": "JKYAM6ylY69Btuk964holT-UcmA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion meaning in english", "abortion meaning in english oxford", "abortion meaning in english grammar", "abortion meaning in english with example", "abort meaning in english synonyms", "threatened abortion meaning in english", "spontaneous abortion meaning in english", "induced abortion meaning in english", "missed abortion meaning in english", "inevitable abortion meaning in english"], "self_loops": [0], "tags": {"i": "abortion meaning in english", "q": "JKYAM6ylY69Btuk964holT-UcmA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning for kids", "datetime": "2026-03-12 19:29:25.245823", "source": "google", "data": ["abortion meaning for kids", [["abortion meaning for kids", 0, [512]], ["abortion meaning for child", 0, [751]], ["abortion meaning in simple words", 0, [512, 546]], ["abortion meaning simple", 0, [512, 546]], ["abortion meaning in english", 0, [512, 546]], ["abortion baby meaning", 0, [512, 546]]], {"i": "abortion meaning for kids", "q": "Xs9fqQup47UgSah6u4tXiwq0BjU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion meaning for kids", "abortion meaning for child", "abortion meaning in simple words", "abortion meaning simple", "abortion meaning in english", "abortion baby meaning"], "self_loops": [0], "tags": {"i": "abortion meaning for kids", "q": "Xs9fqQup47UgSah6u4tXiwq0BjU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning simple", "datetime": "2026-03-12 19:29:26.379844", "source": "google", "data": ["abortion meaning simple", [["abortion meaning simple", 0, [512]], ["abortion meaning easy", 0, [22, 30]], ["anti abortion meaning simple", 0, [22, 30]], ["threatened abortion simple meaning", 0, [22, 30]], ["abortion meaning in simple words", 0, [512, 546]], ["abortion simple terms", 0, [751]], ["abortion simple explanation", 0, [546, 649]]], {"i": "abortion meaning simple", "q": "cggwwTGGFm04k4tgSBV3qynrzlM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning simple", "abortion meaning easy", "anti abortion meaning simple", "threatened abortion simple meaning", "abortion meaning in simple words", "abortion simple terms", "abortion simple explanation"], "self_loops": [0], "tags": {"i": "abortion meaning simple", "q": "cggwwTGGFm04k4tgSBV3qynrzlM", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in hebrew", "datetime": "2026-03-12 19:29:27.189396", "source": "google", "data": ["abortion meaning in hebrew", [["abortion meaning in hebrew", 0, [512]], ["what does the word abortion mean", 0, [512, 390, 650]], ["abortion meaning in arabic", 0, [512, 390, 650]], ["is elias a hebrew name", 0, [512, 390, 650]], ["abortion in hebrew bible", 0, [751]], ["abortion in hebrew", 0, [512, 546]], ["abortion meaning in the bible", 0, [512, 546]], ["abortion meaning in farsi", 0, [546, 649]]], {"i": "abortion meaning in hebrew", "q": "Ad2ssmICY4x0sTl9CvTHIlzKkCQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in hebrew", "what does the word abortion mean", "abortion meaning in arabic", "is elias a hebrew name", "abortion in hebrew bible", "abortion in hebrew", "abortion meaning in the bible", "abortion meaning in farsi"], "self_loops": [0], "tags": {"i": "abortion meaning in hebrew", "q": "Ad2ssmICY4x0sTl9CvTHIlzKkCQ", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in hindi", "datetime": "2026-03-12 19:29:28.501561", "source": "google", "data": ["abortion meaning in hindi", [["abortion meaning in hindi", 0, [512]], ["abortion meaning in hindi with example", 0, [512]], ["abortion meaning in hindi and english", 0, [512]], ["abortion meaning in hindi pdf", 0, [512]], ["abortion meaning in hindi definition", 0, [512]], ["abortion meaning in hindi medical", 0, [22, 30]], ["abort meaning in hindi synonyms", 0, [22, 30]], ["abortion translation in hindi", 0, [22, 30]], ["missed abortion meaning in hindi", 0, [22, 30]], ["threatened abortion meaning in hindi", 0, [22, 30]]], {"i": "abortion meaning in hindi", "q": "3zs_Nu-j_cy-nhN2-db-3i4yOmI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion meaning in hindi", "abortion meaning in hindi with example", "abortion meaning in hindi and english", "abortion meaning in hindi pdf", "abortion meaning in hindi definition", "abortion meaning in hindi medical", "abort meaning in hindi synonyms", "abortion translation in hindi", "missed abortion meaning in hindi", "threatened abortion meaning in hindi"], "self_loops": [0], "tags": {"i": "abortion meaning in hindi", "q": "3zs_Nu-j_cy-nhN2-db-3i4yOmI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in the bible", "datetime": "2026-03-12 19:29:29.575004", "source": "google", "data": ["abortion meaning in the bible", [["abortion meaning in the bible", 0, [512]], ["is abortion mentioned in the bible", 0, [512, 390, 650]], ["is abortion even mentioned in the bible", 0, [512, 390, 650]], ["abortion meaning in hebrew", 0, [512, 546]], ["what does abortion mean in the bible", 0, [512, 546]], ["definition of abortion in the bible", 0, [751]]], {"i": "abortion meaning in the bible", "q": "o0dG1zqCO9K6o4lN6VDRiJMDFXU", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in the bible", "is abortion mentioned in the bible", "is abortion even mentioned in the bible", "abortion meaning in hebrew", "what does abortion mean in the bible", "definition of abortion in the bible"], "self_loops": [0], "tags": {"i": "abortion meaning in the bible", "q": "o0dG1zqCO9K6o4lN6VDRiJMDFXU", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in greek", "datetime": "2026-03-12 19:29:30.590523", "source": "google", "data": ["abortion meaning in greek", [["abortion meaning in greek", 0, [512]], ["origin of abortion", 0, [512, 390, 650]], ["abortion in greek", 0, [512, 546]], ["abortion meaning in hebrew", 0, [512, 546]], ["abortion in greek and roman times", 0, [751]], ["abortion meaning in farsi", 0, [546, 649]]], {"i": "abortion meaning in greek", "q": "Zp4bNvbtUzJh-g4htqmthG1zIR4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in greek", "origin of abortion", "abortion in greek", "abortion meaning in hebrew", "abortion in greek and roman times", "abortion meaning in farsi"], "self_loops": [0], "tags": {"i": "abortion meaning in greek", "q": "Zp4bNvbtUzJh-g4htqmthG1zIR4", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning dictionary", "datetime": "2026-03-12 19:29:31.642012", "source": "google", "data": ["abortion meaning dictionary", [["abortion meaning dictionary", 0, [512]], ["abortion meaning oxford dictionary", 0, [22, 30]], ["what does the word abortion mean", 0, [512, 390, 650]], ["is abortion a bad word", 0, [512, 390, 650]], ["what is the meaning of abortion in english", 0, [512, 390, 650]], ["abortion dictionary definition", 0, [512, 546]], ["abortion medical dictionary", 0, [751]], ["abortion meaning in simple words", 0, [512, 546]]], {"i": "abortion meaning dictionary", "q": "inTAaGY1rgpS1nzF0vi_emlPQCI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning dictionary", "abortion meaning oxford dictionary", "what does the word abortion mean", "is abortion a bad word", "what is the meaning of abortion in english", "abortion dictionary definition", "abortion medical dictionary", "abortion meaning in simple words"], "self_loops": [0], "tags": {"i": "abortion meaning dictionary", "q": "inTAaGY1rgpS1nzF0vi_emlPQCI", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2025", "datetime": "2026-03-12 19:29:32.831158", "source": "google", "data": ["abortion laws in california 2025", [["abortion laws in california 2025", 0, [512]], ["new abortion law in california 2025", 0, [22, 30]], ["abortion laws in california 2023", 0, [546, 649]], ["abortion laws in california 2021", 0, [751]], ["abortion laws in california 2022", 0, [751]], ["abortion laws in california how many weeks", 0, [512, 546]]], {"i": "abortion laws in california 2025", "q": "R79fl42FUp-wZTh-x5jH2T5Yqk8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion laws in california 2025", "new abortion law in california 2025", "abortion laws in california 2023", "abortion laws in california 2021", "abortion laws in california 2022", "abortion laws in california how many weeks"], "self_loops": [0], "tags": {"i": "abortion laws in california 2025", "q": "R79fl42FUp-wZTh-x5jH2T5Yqk8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2026", "datetime": "2026-03-12 19:29:34.082813", "source": "google", "data": ["abortion laws in california 2026", [["abortion laws in california 2026", 0, [512]], ["is abortion legal in california 2026", 0, [22, 30]], ["is abortion illegal in california 2026", 0, [22, 30]], ["california abortion laws", 0, [512, 390, 650]], ["abortion laws in california 2023", 0, [546, 649]], ["abortion laws in california 2021", 0, [751]], ["abortion laws in california 2022", 0, [751]], ["abortion laws in california history", 0, [546, 649]]], {"i": "abortion laws in california 2026", "q": "qIkBhMZ-Q0JFzOxpt_canEFEwSw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2026", "is abortion legal in california 2026", "is abortion illegal in california 2026", "california abortion laws", "abortion laws in california 2023", "abortion laws in california 2021", "abortion laws in california 2022", "abortion laws in california history"], "self_loops": [0], "tags": {"i": "abortion laws in california 2026", "q": "qIkBhMZ-Q0JFzOxpt_canEFEwSw", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california how many weeks", "datetime": "2026-03-12 19:29:34.981083", "source": "google", "data": ["abortion laws in california how many weeks", [["abortion laws in california how many weeks", 0, [512]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["is abortion legal in california how many weeks", 0, [22, 30]], ["how many weeks can you have an abortion in california", 0, [512, 390, 650]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["california abortion laws how many weeks 2021", 0, [751]], ["california abortion laws how many weeks 2020", 0, [751]], ["california abortion laws how many weeks 2022", 0, [546, 649]]], {"i": "abortion laws in california how many weeks", "q": "32NrZO7HST5lCSDRRkTrRztNvgs", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california how many weeks", "abortion laws in california 2024 how many weeks", "is abortion legal in california how many weeks", "how many weeks can you have an abortion in california", "how many weeks can you get an abortion california", "california abortion laws how many weeks 2021", "california abortion laws how many weeks 2020", "california abortion laws how many weeks 2022"], "self_loops": [0], "tags": {"i": "abortion laws in california how many weeks", "q": "32NrZO7HST5lCSDRRkTrRztNvgs", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2024", "datetime": "2026-03-12 19:29:35.916686", "source": "google", "data": ["abortion laws in california 2024", [["abortion laws in california 2024", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["abortion legal in california 2024", 0, [22, 30]], ["new abortion laws in california 2024 update", 0, [22, 30]], ["new abortion law in california 2024", 0, [22, 30]], ["abortion law california 2024 update today", 0, [22, 30]], ["is abortion illegal in california 2024", 0, [22, 30]], ["abortion limits california 2024", 0, [22, 30]], ["abortion laws in california 2023", 0, [546, 649]], ["abortion laws in california 2021", 0, [751]]], {"i": "abortion laws in california 2024", "q": "WFtbxlPTtrUBpmnu9HTn2wHPTcw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2024", "abortion laws in california 2024 how many weeks", "abortion legal in california 2024", "new abortion laws in california 2024 update", "new abortion law in california 2024", "abortion law california 2024 update today", "is abortion illegal in california 2024", "abortion limits california 2024", "abortion laws in california 2023", "abortion laws in california 2021"], "self_loops": [0], "tags": {"i": "abortion laws in california 2024", "q": "WFtbxlPTtrUBpmnu9HTn2wHPTcw", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california for minors", "datetime": "2026-03-12 19:29:37.291785", "source": "google", "data": ["abortion laws in california for minors", [["abortion laws in california for minors", 0, [22, 30]], ["is abortion legal in california for minors", 0, [22, 30]], ["age limit for abortion in california", 0, [751]]], {"i": "abortion laws in california for minors", "q": "OKmEYvzv1poL_yJfHqgeZzs9MA8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california for minors", "is abortion legal in california for minors", "age limit for abortion in california"], "self_loops": [0], "tags": {"i": "abortion laws in california for minors", "q": "OKmEYvzv1poL_yJfHqgeZzs9MA8", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2023", "datetime": "2026-03-12 19:29:38.195423", "source": "google", "data": ["abortion laws in california 2023", [["abortion laws in california 2023", 0, [22, 30]], ["new abortion law in california 2023", 0, [22, 30]], ["new abortion law in california 2023 overturned", 0, [22, 30]], ["abortion laws in california 2021", 0, [751]], ["abortion laws in california 2022", 0, [751]]], {"i": "abortion laws in california 2023", "q": "RcLezWDWhtjXj3_edi6wRar_6Vs", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2023", "new abortion law in california 2023", "new abortion law in california 2023 overturned", "abortion laws in california 2021", "abortion laws in california 2022"], "self_loops": [0], "tags": {"i": "abortion laws in california 2023", "q": "RcLezWDWhtjXj3_edi6wRar_6Vs", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2024 how many weeks", "datetime": "2026-03-12 19:29:39.228595", "source": "google", "data": ["abortion laws in california 2024 how many weeks", [["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["california abortion laws how many weeks", 0, [512, 390, 650]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["california abortion laws how many weeks 2020", 0, [751]], ["california abortion laws how many weeks 2021", 0, [751]], ["california abortion laws how many weeks 2022", 0, [546, 649]], ["abortion laws california 2023", 0, [546, 649]]], {"i": "abortion laws in california 2024 how many weeks", "q": "rpyLV2QZ9xU0sbuJfKKaWBKYMl8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2024 how many weeks", "california abortion laws how many weeks", "how many weeks can you get an abortion california", "california abortion laws how many weeks 2020", "california abortion laws how many weeks 2021", "california abortion laws how many weeks 2022", "abortion laws california 2023"], "self_loops": [0], "tags": {"i": "abortion laws in california 2024 how many weeks", "q": "rpyLV2QZ9xU0sbuJfKKaWBKYMl8", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion legal in california", "datetime": "2026-03-12 19:29:40.101960", "source": "google", "data": ["abortion legal in california", [["abortion legal in california", 0, [512]], ["abortion legal in california 2024", 0, [22, 30]], ["abortion law in california", 0, [22, 30]], ["abortion law in california 2025", 0, [22, 30]], ["abortion law in california 2024", 0, [22, 30]], ["abortion law in california how many weeks", 0, [22, 30]], ["legal abortion in california weeks", 0, [22, 30]], ["abortion rules in california", 0, [22, 30]], ["abortion illegal in california", 0, [22, 30]], ["abortion banned in california", 0, [22, 30]]], {"i": "abortion legal in california", "q": "vTtfDu1HUrO-bYP_sliWnjAy8EA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion legal in california", "abortion legal in california 2024", "abortion law in california", "abortion law in california 2025", "abortion law in california 2024", "abortion law in california how many weeks", "legal abortion in california weeks", "abortion rules in california", "abortion illegal in california", "abortion banned in california"], "self_loops": [0], "tags": {"i": "abortion legal in california", "q": "vTtfDu1HUrO-bYP_sliWnjAy8EA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion illegal in california", "datetime": "2026-03-12 19:29:41.326585", "source": "google", "data": ["abortion illegal in california", [["abortion illegal in california", 0, [512]], ["abortion laws in california", 0, [22, 30]], ["abortion legal in california", 0, [22, 30]], ["abortion laws in california 2025", 0, [22, 30]], ["abortion rules in california", 0, [22, 30]], ["abortion laws in california 2024", 0, [22, 30]], ["abortion laws in california how many weeks", 0, [22, 30]], ["abortion banned in california", 0, [22, 30]], ["abortion restrictions in california", 0, [22, 30]], ["abortion legal in california 2024", 0, [22, 30]]], {"i": "abortion illegal in california", "q": "6zKY1KXAdF_71q8tceYgCLuvitA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion illegal in california", "abortion laws in california", "abortion legal in california", "abortion laws in california 2025", "abortion rules in california", "abortion laws in california 2024", "abortion laws in california how many weeks", "abortion banned in california", "abortion restrictions in california", "abortion legal in california 2024"], "self_loops": [0], "tags": {"i": "abortion illegal in california", "q": "6zKY1KXAdF_71q8tceYgCLuvitA", "t": {"bpc": false, "tlw": false}}, "depth": 2, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics in san francisco", "datetime": "2026-03-12 19:29:42.733085", "source": "google", "data": ["abortion clinics in san francisco", [["abortion clinics in san francisco", 0, [512]], ["abortion clinic san francisco ca", 0, [22, 30]], ["abortion clinic for free near me", 0, [512, 390, 650]], ["abortion clinics san francisco california", 0, [751]], ["abortion clinics in bay area", 0, [751]], ["abortion clinics sf", 0, [751]]], {"i": "abortion clinics in san francisco", "q": "_3bCg85KSMUUU-EJ_J_Prubdd3A", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics in san francisco", "abortion clinic san francisco ca", "abortion clinic for free near me", "abortion clinics san francisco california", "abortion clinics in bay area", "abortion clinics sf"], "self_loops": [0], "tags": {"i": "abortion clinics in san francisco", "q": "_3bCg85KSMUUU-EJ_J_Prubdd3A", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinics in california", "datetime": "2026-03-12 19:29:44.075199", "source": "google", "data": ["free abortion clinics in california", [["free abortion clinics in california", 0, [512]], ["are there free abortion clinics in california", 0, [22, 30]], ["free abortion clinics near me", 0, [512, 390, 650]]], {"i": "free abortion clinics in california", "q": "_hVSrbR_JLoGn5_uZ5guMhxa134", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free abortion clinics in california", "are there free abortion clinics in california", "free abortion clinics near me"], "self_loops": [0], "tags": {"i": "free abortion clinics in california", "q": "_hVSrbR_JLoGn5_uZ5guMhxa134", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic for free near me", "datetime": "2026-03-12 19:29:44.980495", "source": "google", "data": ["abortion clinic for free near me", [["abortion clinic for free near me", 0, [512]], ["women's clinic free near me", 0, [22, 30]], ["free abortion clinic near me open now", 0, [22, 30]], ["free abortion clinic near me volunteer", 0, [22, 30]], ["free abortion clinic near me within 5 mi", 0, [22, 30]], ["free abortion clinic near me within 20 mi", 0, [22, 30]], ["free abortion clinic near me within 8.1 km", 0, [22, 30]], ["women's clinic free ultrasound near me", 0, [22, 30]], ["women's health clinic free near me", 0, [22, 30]], ["which clinic do abortion for free near me", 0, [22, 30]]], {"i": "abortion clinic for free near me", "q": "hIpAWrwj75ut58Z6cvvd6b2ZJLs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic for free near me", "women's clinic free near me", "free abortion clinic near me open now", "free abortion clinic near me volunteer", "free abortion clinic near me within 5 mi", "free abortion clinic near me within 20 mi", "free abortion clinic near me within 8.1 km", "women's clinic free ultrasound near me", "women's health clinic free near me", "which clinic do abortion for free near me"], "self_loops": [0], "tags": {"i": "abortion clinic for free near me", "q": "hIpAWrwj75ut58Z6cvvd6b2ZJLs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics san francisco california", "datetime": "2026-03-12 19:29:46.298109", "source": "google", "data": ["abortion clinics san francisco california", [["abortion clinic san francisco ca", 0, [22, 30]], ["abortion clinics in san francisco", 0, [512, 390, 650]], ["abortion options in california", 0, [512, 390, 650]], ["abortion cut off in california", 0, [512, 390, 650]], ["abortion clinics san francisco california", 0, [751]], ["abortion clinics sf", 0, [751]]], {"i": "abortion clinics san francisco california", "q": "bEVvNUftZYida4POqcF8gFySczw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic san francisco ca", "abortion clinics in san francisco", "abortion options in california", "abortion cut off in california", "abortion clinics san francisco california", "abortion clinics sf"], "self_loops": [4], "tags": {"i": "abortion clinics san francisco california", "q": "bEVvNUftZYida4POqcF8gFySczw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health center san francisco", "datetime": "2026-03-12 19:29:47.670977", "source": "google", "data": ["women's health center san francisco", [["women's health center san francisco", 0, [512]], ["women's health clinic san francisco", 0, [22, 30]], ["sutter women's health center san francisco", 0, [22, 30]], ["women's breast health center san francisco", 0, [22, 30]], ["ucsf women's health center san francisco ca", 0, [22, 30]], ["tia women's health clinic san francisco", 0, [22, 30]], ["st mary's women's health center san francisco", 0, [22, 30]], ["tia women's health clinic san francisco reviews", 0, [22, 30]], ["ucsf radiology at the women's health center san francisco", 0, [22, 30]], ["women's health resource center california pacific medical center san francisco", 0, [22, 30]]], {"q": "LI64R6CuYPmj47y3Nsfhe0NP1x8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's health center san francisco", "women's health clinic san francisco", "sutter women's health center san francisco", "women's breast health center san francisco", "ucsf women's health center san francisco ca", "tia women's health clinic san francisco", "st mary's women's health center san francisco", "tia women's health clinic san francisco reviews", "ucsf radiology at the women's health center san francisco", "women's health resource center california pacific medical center san francisco"], "self_loops": [0], "tags": {"q": "LI64R6CuYPmj47y3Nsfhe0NP1x8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's hospital san francisco", "datetime": "2026-03-12 19:29:48.727781", "source": "google", "data": ["women's hospital san francisco", [["women's hospital san francisco", 0, [22, 30]], ["general hospital san francisco women's clinic", 0, [22, 30]], ["women's hospital san diego", 0, [512, 546]], ["women's hospital san antonio", 0, [512, 546]], ["women's clinic general hospital sf", 0, [751]], ["women's health san francisco", 0, [512, 546]]], {"i": "women's hospital san francisco", "q": "f9TYzpZmmHqGGhibmDONF7H6NQo", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's hospital san francisco", "general hospital san francisco women's clinic", "women's hospital san diego", "women's hospital san antonio", "women's clinic general hospital sf", "women's health san francisco"], "self_loops": [0], "tags": {"i": "women's hospital san francisco", "q": "f9TYzpZmmHqGGhibmDONF7H6NQo", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "sutter women's health center san francisco", "datetime": "2026-03-12 19:29:50.109017", "source": "google", "data": ["sutter women's health center san francisco", [["sutter women's health center san francisco", 0, [512]], ["UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", 38], ["sutter health san francisco locations", 0, [512, 390, 650]], ["sutter health san francisco phone number", 0, [512, 390, 650]], ["sutter health san francisco address", 0, [512, 390, 650]], ["sutter health women's health san francisco", 0, [546, 649]], ["sutter health women's center san mateo", 0, [512, 546]], ["sutter women's health center sacramento", 0, [751]], ["sutter women's health center santa rosa", 0, [751]]], {"q": "Yis1Ilixk16UcOmIVZgoFHDxrEg", "t": {"bpc": false, "tlw": false}}], "suggests": ["sutter women's health center san francisco", "UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", "sutter health san francisco locations", "sutter health san francisco phone number", "sutter health san francisco address", "sutter health women's health san francisco", "sutter health women's center san mateo", "sutter women's health center sacramento", "sutter women's health center santa rosa"], "self_loops": [0], "tags": {"q": "Yis1Ilixk16UcOmIVZgoFHDxrEg", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion treatment near me", "datetime": "2026-03-12 19:29:50.968207", "source": "google", "data": ["abortion treatment near me", [["abortion treatment near me", 0, [512]], ["abortion care near me", 0, [22, 30]], ["miscarriage treatment near me", 0, [22, 30]], ["post abortion care near me", 0, [22, 30]], ["post abortion therapy near me", 0, [22, 30]], ["free abortion care near me", 0, [22, 30]], ["abortion care jobs near me", 0, [22, 30]], ["recurrent miscarriage treatment near me", 0, [22, 30]], ["abortion care clinic near me", 0, [22, 30]], ["abortion treatment cost", 0, [512, 390, 650]]], {"i": "abortion treatment near me", "q": "zRpUacBzxOWNbYn9yE7TGpb1Z8Q", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion treatment near me", "abortion care near me", "miscarriage treatment near me", "post abortion care near me", "post abortion therapy near me", "free abortion care near me", "abortion care jobs near me", "recurrent miscarriage treatment near me", "abortion care clinic near me", "abortion treatment cost"], "self_loops": [0], "tags": {"i": "abortion treatment near me", "q": "zRpUacBzxOWNbYn9yE7TGpb1Z8Q", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion san francisco", "datetime": "2026-03-12 19:29:51.810026", "source": "google", "data": ["abortion san francisco", [["abortion san francisco", 0, [512]], ["abortion clinic san francisco", 0, [22, 30]], ["abortion pill san francisco", 0, [22, 30]], ["abortion clinic san francisco ca", 0, [22, 30]], ["abortion protest san francisco", 0, [22, 30]], ["anti abortion san francisco", 0, [22, 30]], ["abortion services san francisco", 0, [22, 30]], ["surgical abortion san francisco", 0, [22, 30]], ["san francisco abortion law", 0, [22, 10, 30]], ["abortion rally san francisco", 0, [22, 30]]], {"i": "abortion san francisco", "q": "N_9ofvLpC7FmfrNIn0zy1pgTkkw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion san francisco", "abortion clinic san francisco", "abortion pill san francisco", "abortion clinic san francisco ca", "abortion protest san francisco", "anti abortion san francisco", "abortion services san francisco", "surgical abortion san francisco", "san francisco abortion law", "abortion rally san francisco"], "self_loops": [0], "tags": {"i": "abortion san francisco", "q": "N_9ofvLpC7FmfrNIn0zy1pgTkkw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics sf", "datetime": "2026-03-12 19:29:53.119272", "source": "google", "data": ["abortion clinics sf", [["abortion clinics sf", 0, [22, 30]], ["abortion clinics in san francisco", 0, [512, 390, 650]], ["abortion clinic near me surgical", 0, [512, 390, 650]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinics san francisco california", 0, [751]], ["abortion clinic san francisco ca", 0, [546, 649]]], {"i": "abortion clinics sf", "q": "mUYEFWYD-kMMEmfKqbktXT7Qm3g", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics sf", "abortion clinics in san francisco", "abortion clinic near me surgical", "abortion clinic near me for free", "abortion clinics san francisco california", "abortion clinic san francisco ca"], "self_loops": [0], "tags": {"i": "abortion clinics sf", "q": "mUYEFWYD-kMMEmfKqbktXT7Qm3g", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "tia women's health clinic san francisco", "datetime": "2026-03-12 19:29:54.079017", "source": "google", "data": ["tia women's health clinic san francisco", [["tia women's health clinic san francisco", 0, [512]], ["tia women's health clinic san francisco reviews", 0, [512]], ["Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA", 38], ["tia women's health locations", 0, [512, 546]], ["tia women's health clinic", 0, [512, 546]], ["tia health san francisco", 0, [512, 546]], ["tia sf clinic", 0, [751]], ["tia women's health los angeles", 0, [546, 649]]], {"q": "KLOJvc0RHkg4JMMmfGHEEXbM2UY", "t": {"bpc": false, "tlw": false}}], "suggests": ["tia women's health clinic san francisco", "tia women's health clinic san francisco reviews", "Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA", "tia women's health locations", "tia women's health clinic", "tia health san francisco", "tia sf clinic", "tia women's health los angeles"], "self_loops": [0], "tags": {"q": "KLOJvc0RHkg4JMMmfGHEEXbM2UY", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "tia women's health clinic san francisco reviews", "datetime": "2026-03-12 19:29:55.050426", "source": "google", "data": ["tia women's health clinic san francisco reviews", [["tia women's health clinic san francisco reviews", 0, [512]], ["tia san francisco reviews", 0, [512, 546]], ["tia sf reviews", 0, [751]], ["tia women's health reviews", 0, [512, 546]], ["tia clinic san francisco", 0, [512, 546]], ["tia health san francisco", 0, [512, 546]]], {"i": "tia women's health clinic san francisco reviews", "q": "zTeFjJjcLVOaNiu3ukw3cii5124", "t": {"bpc": false, "tlw": false}}], "suggests": ["tia women's health clinic san francisco reviews", "tia san francisco reviews", "tia sf reviews", "tia women's health reviews", "tia clinic san francisco", "tia health san francisco"], "self_loops": [0], "tags": {"i": "tia women's health clinic san francisco reviews", "q": "zTeFjJjcLVOaNiu3ukw3cii5124", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's breast health center san francisco", "datetime": "2026-03-12 19:29:56.025738", "source": "google", "data": ["women's breast health center san francisco", [["women's breast health center san francisco", 0, [22, 30]], ["women's health center san francisco", 0, [22, 30]], ["women's health clinic san francisco", 0, [22, 30]], ["sutter women's health center san francisco", 0, [22, 30]], ["ucsf women's health center san francisco ca", 0, [22, 30]], ["women's breast center san mateo", 0, [512, 546]], ["women's breast center san mateo ca", 0, [751]], ["sf breast health center", 0, [546, 649]], ["san francisco breast health center", 0, [512, 546]]], {"i": "women's breast health center san francisco", "q": "fmzmrbSMv6QyzzROk7WuGlmN4Uw", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's breast health center san francisco", "women's health center san francisco", "women's health clinic san francisco", "sutter women's health center san francisco", "ucsf women's health center san francisco ca", "women's breast center san mateo", "women's breast center san mateo ca", "sf breast health center", "san francisco breast health center"], "self_loops": [0], "tags": {"i": "women's breast health center san francisco", "q": "fmzmrbSMv6QyzzROk7WuGlmN4Uw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's health center san francisco ca", "datetime": "2026-03-12 19:29:57.295152", "source": "google", "data": ["ucsf women's health center san francisco ca", [["ucsf women's health center san francisco ca", 0, [512]], ["ucsf women's health center", 0, [512, 546]], ["ucsf women's health sutter street", 0, [751]], ["ucsf women's health clinic", 0, [512, 546]], ["ucsf women's center", 0, [512, 546]]], {"i": "ucsf women's health center san francisco ca", "q": "VsbjqQf2tozULwA6XNKTKDJ1DZQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's health center san francisco ca", "ucsf women's health center", "ucsf women's health sutter street", "ucsf women's health clinic", "ucsf women's center"], "self_loops": [0], "tags": {"i": "ucsf women's health center san francisco ca", "q": "VsbjqQf2tozULwA6XNKTKDJ1DZQ", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "st mary's women's health center san francisco", "datetime": "2026-03-12 19:29:58.694002", "source": "google", "data": ["st mary's women's health center san francisco", [["st mary's women's health center san francisco", 0, [22, 30]], ["st. mary's medical center san francisco photos", 0, [751]], ["st mary's women's health center", 0, [512, 546]], ["st mary's medical center san francisco services", 0, [546, 649]]], {"i": "st mary's women's health center san francisco", "q": "nVzIpXdvLjOO-6anif8MH6fyL6k", "t": {"bpc": false, "tlw": false}}], "suggests": ["st mary's women's health center san francisco", "st. mary's medical center san francisco photos", "st mary's women's health center", "st mary's medical center san francisco services"], "self_loops": [0], "tags": {"i": "st mary's women's health center san francisco", "q": "nVzIpXdvLjOO-6anif8MH6fyL6k", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health san francisco", "datetime": "2026-03-12 19:29:59.738045", "source": "google", "data": ["women's health san francisco", [["women's health san francisco", 0, [512]], ["women's health clinic san francisco", 0, [22, 30]], ["women's health center san francisco", 0, [22, 30]], ["pacific women's health san francisco", 0, [22, 10, 30]], ["tia women's health san francisco", 0, [22, 10, 30]], ["ucsf women's health san francisco", 0, [22, 10, 30]], ["women's health startups san francisco", 0, [22, 10, 30]], ["women's health companies san francisco", 0, [22, 10, 30]], ["sutter women's health san francisco", 0, [22, 10, 30]], ["myriad women's health san francisco", 0, [22, 10, 30]]], {"q": "lH6JEBRwENQNqBG0KNd125cH6GM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's health san francisco", "women's health clinic san francisco", "women's health center san francisco", "pacific women's health san francisco", "tia women's health san francisco", "ucsf women's health san francisco", "women's health startups san francisco", "women's health companies san francisco", "sutter women's health san francisco", "myriad women's health san francisco"], "self_loops": [0], "tags": {"q": "lH6JEBRwENQNqBG0KNd125cH6GM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's pregnancy clinic near me", "datetime": "2026-03-12 19:30:00.670595", "source": "google", "data": ["free women's pregnancy clinic near me", [["free women's pregnancy clinic near me", 0, [512]], ["free women's clinic near me", 0, [22, 30]], ["free women's clinic near me no insurance", 0, [22, 30]], ["free women's clinic near me open now", 0, [22, 30]], ["free women's clinic near me within 5 mi", 0, [22, 30]], ["free women's pregnancy center near me", 0, [22, 30]], ["free women's clinic near me walk in", 0, [22, 30]], ["free women's clinic near me within 1 mi", 0, [22, 30]], ["free women's clinic near mesquite tx", 0, [22, 30]], ["free women's services near me", 0, [22, 30]]], {"i": "free women's pregnancy clinic near me", "q": "9PrQiHZ5TCaS6Bzmsptb4s9x0tk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free women's pregnancy clinic near me", "free women's clinic near me", "free women's clinic near me no insurance", "free women's clinic near me open now", "free women's clinic near me within 5 mi", "free women's pregnancy center near me", "free women's clinic near me walk in", "free women's clinic near me within 1 mi", "free women's clinic near mesquite tx", "free women's services near me"], "self_loops": [0], "tags": {"i": "free women's pregnancy clinic near me", "q": "9PrQiHZ5TCaS6Bzmsptb4s9x0tk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinics near me", "datetime": "2026-03-12 19:30:01.536406", "source": "google", "data": ["free women's clinics near me", [["free women's clinics near me", 0, [512]], ["free women's clinics near me no insurance", 0, [22, 30]], ["free women's clinic near me open now", 0, [22, 30]], ["free women's clinic near me within 5 mi", 0, [22, 30]], ["free women's clinic near me walk in", 0, [22, 30]], ["free women's clinic near me within 1 mi", 0, [22, 30]], ["free women's clinic near mesquite tx", 0, [22, 30]], ["free gynecologist clinics near me", 0, [22, 30]], ["free female clinic near me", 0, [22, 30]], ["free women's health clinics near me", 0, [22, 30]]], {"i": "free women's clinics near me", "q": "ZKMd4vT8xPAvB1zp0EyrL52QGTQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free women's clinics near me", "free women's clinics near me no insurance", "free women's clinic near me open now", "free women's clinic near me within 5 mi", "free women's clinic near me walk in", "free women's clinic near me within 1 mi", "free women's clinic near mesquite tx", "free gynecologist clinics near me", "free female clinic near me", "free women's health clinics near me"], "self_loops": [0], "tags": {"i": "free women's clinics near me", "q": "ZKMd4vT8xPAvB1zp0EyrL52QGTQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are free clinics really free", "datetime": "2026-03-12 19:30:02.378013", "source": "google", "data": ["are free clinics really free", [["are free clinics really free", 0, [512]], ["are free clinics free", 0, [22, 30]], ["can you go to a free clinic without insurance", 0, [512, 390, 650]], ["are free clinics good", 0, [512, 546]], ["are free clinics actually free", 0, [512, 546]], ["are clinics free", 0, [512, 546]]], {"i": "are free clinics really free", "q": "Y0oibQYHveyfqjYgqQ-gmaR8GxQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["are free clinics really free", "are free clinics free", "can you go to a free clinic without insurance", "are free clinics good", "are free clinics actually free", "are clinics free"], "self_loops": [0], "tags": {"i": "are free clinics really free", "q": "Y0oibQYHveyfqjYgqQ-gmaR8GxQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's health clinics near me", "datetime": "2026-03-12 19:30:03.725896", "source": "google", "data": ["free women's health clinics near me", [["free women's health clinics near me", 0, [512]], ["free women's health clinic near me open now", 0, [22, 30]], ["free women's health services near me", 0, [22, 10, 30]], ["free women's care clinic near me", 0, [22, 10, 30]], ["free women's health clinic melbourne", 0, [22, 30]], ["list of free clinics near me", 0, [512, 390, 650]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["free women's clinics near me", 0, [512, 390, 650]], ["free women's health center near me", 0, [546, 649]], ["free women's health care clinics near me", 0, [546, 649]]], {"i": "free women's health clinics near me", "q": "911pV7F-kNBFGIuRSZJVjYXy-94", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's health clinics near me", "free women's health clinic near me open now", "free women's health services near me", "free women's care clinic near me", "free women's health clinic melbourne", "list of free clinics near me", "free women's clinic near me no insurance", "free women's clinics near me", "free women's health center near me", "free women's health care clinics near me"], "self_loops": [0], "tags": {"i": "free women's health clinics near me", "q": "911pV7F-kNBFGIuRSZJVjYXy-94", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic san diego", "datetime": "2026-03-12 19:30:04.878520", "source": "google", "data": ["free women's clinic san diego", [["free women's clinic san diego", 0, [22, 30]], ["free women's clinic san antonio", 0, [22, 30]], ["obgyn free clinic san diego", 0, [22, 30]], ["free women's health clinic san antonio", 0, [22, 30]], ["free women's clinics near me", 0, [512, 390, 650]], ["free women's health clinics near me", 0, [512, 390, 650]], ["free walk in women's clinic near me", 0, [512, 390, 650]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["free women's pregnancy clinic near me", 0, [512, 390, 650]], ["free women's clinic san francisco", 0, [512, 546]]], {"i": "free women's clinic san diego", "q": "kvg3SMtyFYvH2I1qjqr_ExbW87c", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's clinic san diego", "free women's clinic san antonio", "obgyn free clinic san diego", "free women's health clinic san antonio", "free women's clinics near me", "free women's health clinics near me", "free walk in women's clinic near me", "free women's clinic near me no insurance", "free women's pregnancy clinic near me", "free women's clinic san francisco"], "self_loops": [0], "tags": {"i": "free women's clinic san diego", "q": "kvg3SMtyFYvH2I1qjqr_ExbW87c", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic sacramento", "datetime": "2026-03-12 19:30:06.248228", "source": "google", "data": ["free women's clinic sacramento", [["free women's clinic sacramento", 0, [22, 30]], ["free women's clinics near me", 0, [512, 390, 650]], ["free women's pregnancy clinic near me", 0, [512, 390, 650]], ["free women's health clinics near me", 0, [512, 390, 650]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["free walk in women's clinic near me", 0, [512, 390, 650]], ["free women's clinic san francisco", 0, [512, 546]], ["free women's clinic san diego", 0, [751]], ["sacramento women's clinic", 0, [546, 649]], ["free women's clinic san bernardino ca", 0, [751]]], {"i": "free women's clinic sacramento", "q": "v4xRcyQgBewHv75iZ9tuu3x2opk", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's clinic sacramento", "free women's clinics near me", "free women's pregnancy clinic near me", "free women's health clinics near me", "free women's clinic near me no insurance", "free walk in women's clinic near me", "free women's clinic san francisco", "free women's clinic san diego", "sacramento women's clinic", "free women's clinic san bernardino ca"], "self_loops": [0], "tags": {"i": "free women's clinic sacramento", "q": "v4xRcyQgBewHv75iZ9tuu3x2opk", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic san antonio", "datetime": "2026-03-12 19:30:07.240969", "source": "google", "data": ["free women's clinic san antonio", [["free women's clinic san antonio", 0, [512]], ["free women's health clinic san antonio", 0, [22, 30]], ["free women's clinics near me", 0, [512, 390, 650]], ["free women's health clinics near me", 0, [512, 390, 650]], ["free walk in women's clinic near me", 0, [512, 390, 650]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["free women's pregnancy clinic near me", 0, [512, 390, 650]], ["free women's clinic san francisco", 0, [512, 546]], ["free women's clinic san diego", 0, [751]], ["free women's clinic austin", 0, [512, 546]]], {"i": "free women's clinic san antonio", "q": "ePNrLnrfglsCW7o-tpDmimpVHKU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free women's clinic san antonio", "free women's health clinic san antonio", "free women's clinics near me", "free women's health clinics near me", "free walk in women's clinic near me", "free women's clinic near me no insurance", "free women's pregnancy clinic near me", "free women's clinic san francisco", "free women's clinic san diego", "free women's clinic austin"], "self_loops": [0], "tags": {"i": "free women's clinic san antonio", "q": "ePNrLnrfglsCW7o-tpDmimpVHKU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic san bernardino ca", "datetime": "2026-03-12 19:30:08.237034", "source": "google", "data": ["free women's clinic san bernardino ca", [["free women's clinic san bernardino california", 33, [160], {"a": "free women's clinic san bernardino ", "b": "california"}], ["free women's clinic san bernardino ca 92407", 33, [160], {"a": "free women's clinic san bernardino ", "b": "ca 92407"}], ["free women's clinic san bernardino ca 92404", 33, [160], {"a": "free women's clinic san bernardino ", "b": "ca 92404"}], ["free women's clinic san bernardino ca 2024", 33, [160], {"a": "free women's clinic san bernardino ", "b": "ca 2024"}], ["free women's clinic san bernardino ca area", 33, [160], {"a": "free women's clinic san bernardino ", "b": "ca area"}], ["free women's clinic san bernardino ca", 33, [299], {"a": "free women's clinic san bernardino ", "b": "ca"}]], {"i": "free women's clinic san bernardino ca", "q": "5kG-qgOyBbZNi06SndWde590hd4", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's clinic san bernardino california", "free women's clinic san bernardino ca 92407", "free women's clinic san bernardino ca 92404", "free women's clinic san bernardino ca 2024", "free women's clinic san bernardino ca area", "free women's clinic san bernardino ca"], "self_loops": [5], "tags": {"i": "free women's clinic san bernardino ca", "q": "5kG-qgOyBbZNi06SndWde590hd4", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "Women's Community Clinic, Mission Street, San Francisco, CA", "datetime": "2026-03-12 19:30:09.499378", "source": "google", "data": ["Women's Community Clinic, Mission Street, San Francisco, CA", [["Women's Community Clinic, Mission Street, San Francisco, California", 38], ["women's community clinic san francisco", 0, [512, 546]], ["women's community clinic sf", 0, [512, 546]], ["women's community clinic", 0, [512, 546]], ["mission community center san francisco", 0, [546, 649]], ["women's clinic san francisco", 0, [512, 546]]], {"q": "8DV_QXJlY0V6NVbBphFdO1r2kq8", "t": {"bpc": false, "tlw": false}}], "suggests": ["Women's Community Clinic, Mission Street, San Francisco, California", "women's community clinic san francisco", "women's community clinic sf", "women's community clinic", "mission community center san francisco", "women's clinic san francisco"], "self_loops": [], "tags": {"q": "8DV_QXJlY0V6NVbBphFdO1r2kq8", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's community clinic sf", "datetime": "2026-03-12 19:30:10.436216", "source": "google", "data": ["women's community clinic sf", [["women's community clinic sf", 0, [512]], ["Women's Community Clinic, Mission Street, SF, CA", 38], ["women's community clinic near me", 0, [512, 390, 650]], ["women's community clinic san francisco", 0, [512, 546]], ["sf community clinic", 0, [512, 546]], ["women's clinic sf", 0, [546, 649]]], {"q": "wlTksk6IKezvub-VPZICqMyvfws", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's community clinic sf", "Women's Community Clinic, Mission Street, SF, CA", "women's community clinic near me", "women's community clinic san francisco", "sf community clinic", "women's clinic sf"], "self_loops": [0], "tags": {"q": "wlTksk6IKezvub-VPZICqMyvfws", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's community clinic", "datetime": "2026-03-12 19:30:11.510793", "source": "google", "data": ["women's community clinic", [["women's community clinic", 0, [512]], ["women's community clinic sf", 0, [512]], ["women's community clinic near me", 0, [512]], ["women's community clinic photos", 0, [22, 30]], ["women's community clinic reviews", 0, [22, 30]], ["women's community clinic a program of healthright 360", 0, [22, 30]], ["women's community health center", 0, [22, 30]], ["women's health community clinic", 0, [22, 30]], ["community women's health clinic tauranga", 0, [22, 30]], ["christ community women's clinic", 0, [22, 30]]], {"q": "y3OYeIck_U-gizczR4vikQHCaDc", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's community clinic", "women's community clinic sf", "women's community clinic near me", "women's community clinic photos", "women's community clinic reviews", "women's community clinic a program of healthright 360", "women's community health center", "women's health community clinic", "community women's health clinic tauranga", "christ community women's clinic"], "self_loops": [0], "tags": {"q": "y3OYeIck_U-gizczR4vikQHCaDc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's clinic", "datetime": "2026-03-12 19:30:12.635164", "source": "google", "data": ["ucsf women's clinic", [["ucsf women's clinic", 0, [512]], ["ucsf women's clinic san francisco", 0, [512]], ["ucsf women's health center", 0, [22, 10, 30]], ["ucsf women's hospital", 0, [22, 10, 30]], ["ucsf women's health clinic", 0, [22, 10, 30]], ["ucsf women's health clinical research center", 0, [22, 30]], ["ucsf women's specialty clinic", 0, [22, 30]], ["ucsf women's hiv clinic", 0, [22, 30]], ["ucsf young women's clinic", 0, [22, 30]], ["ucsf women's options clinic", 0, [22, 10, 30]]], {"i": "ucsf women's clinic", "q": "ds5ZJ8VAzjUEZO3YVQxOQd7f8AU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["ucsf women's clinic", "ucsf women's clinic san francisco", "ucsf women's health center", "ucsf women's hospital", "ucsf women's health clinic", "ucsf women's health clinical research center", "ucsf women's specialty clinic", "ucsf women's hiv clinic", "ucsf young women's clinic", "ucsf women's options clinic"], "self_loops": [0], "tags": {"i": "ucsf women's clinic", "q": "ds5ZJ8VAzjUEZO3YVQxOQd7f8AU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's center", "datetime": "2026-03-12 19:30:13.860271", "source": "google", "data": ["ucsf women's center", [["ucsf women's center", 0, [512]], ["ucsf women's center for bladder and pelvic health", 0, [512]], ["ucsf women's clinic", 0, [22, 10, 30]], ["ucsf women's clinic san francisco", 0, [22, 10, 30]], ["ucsf women's health center mount zion", 0, [22, 30]], ["ucsf women's health center", 0, [22, 10, 30]], ["ucsf women's options center", 0, [22, 30]], ["ucsf women's resource center", 0, [22, 10, 30]], ["ucsf women's options center photos", 0, [22, 30]], ["ucsf women's cancer center", 0, [22, 10, 30]]], {"q": "JBe3VtHNLeZPcADpk8m3FL0Hpsc", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's center", "ucsf women's center for bladder and pelvic health", "ucsf women's clinic", "ucsf women's clinic san francisco", "ucsf women's health center mount zion", "ucsf women's health center", "ucsf women's options center", "ucsf women's resource center", "ucsf women's options center photos", "ucsf women's cancer center"], "self_loops": [0], "tags": {"q": "JBe3VtHNLeZPcADpk8m3FL0Hpsc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's health clinic", "datetime": "2026-03-12 19:30:14.935716", "source": "google", "data": ["ucsf women's health clinic", [["ucsf women's health clinic", 0, [512]], ["ucsf women's health center mount zion", 0, [22, 30]], ["ucsf women's health center", 0, [22, 10, 30]], ["ucsf women's health center mount zion reviews", 0, [22, 30]], ["ucsf women's health center mount zion photos", 0, [22, 30]], ["ucsf women's health center san francisco ca", 0, [22, 30]], ["ucsf women's mental health clinic", 0, [22, 10, 30]], ["ucsf women's health primary care clinic", 0, [22, 30]], ["ucsf mount zion women's health clinic", 0, [22, 30]], ["ucsf women's health clinical research center", 0, [22, 30]]], {"i": "ucsf women's health clinic", "q": "d80PwkkIJZ3pjnL6Zt2x5ht_HJg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["ucsf women's health clinic", "ucsf women's health center mount zion", "ucsf women's health center", "ucsf women's health center mount zion reviews", "ucsf women's health center mount zion photos", "ucsf women's health center san francisco ca", "ucsf women's mental health clinic", "ucsf women's health primary care clinic", "ucsf mount zion women's health clinic", "ucsf women's health clinical research center"], "self_loops": [0], "tags": {"i": "ucsf women's health clinic", "q": "d80PwkkIJZ3pjnL6Zt2x5ht_HJg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's health center", "datetime": "2026-03-12 19:30:16.009907", "source": "google", "data": ["ucsf women's health center", [["ucsf women's health center", 0, [512]], ["ucsf women's health center mount zion", 0, [512]], ["ucsf women's health center mount zion reviews", 0, [512]], ["ucsf women's health center san francisco ca", 0, [512]], ["ucsf women's health center mount zion photos", 0, [22, 30]], ["ucsf women's health clinic", 0, [22, 10, 30]], ["ucsf women's health resource center", 0, [22, 10, 30]], ["ucsf women's health primary care center", 0, [22, 30]], ["ucsf women's health clinical research center", 0, [22, 30]], ["ucsf women's health primary care", 0, [22, 30]]], {"q": "LfETH5yY9eAmLXV--IAhn9k4xOU", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's health center", "ucsf women's health center mount zion", "ucsf women's health center mount zion reviews", "ucsf women's health center san francisco ca", "ucsf women's health center mount zion photos", "ucsf women's health clinic", "ucsf women's health resource center", "ucsf women's health primary care center", "ucsf women's health clinical research center", "ucsf women's health primary care"], "self_loops": [0], "tags": {"q": "LfETH5yY9eAmLXV--IAhn9k4xOU", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic equity boost san francisco va medical center'", "datetime": "2026-03-12 19:30:17.382847", "source": "google", "data": ["women's clinic equity boost san francisco va medical center'", [["women's clinic equity boost san francisco va medical center'", 0, [22, 30]], ["women's options center san francisco ca", 0, [751]], ["women's clinic san francisco", 0, [512, 546]], ["women's options center at san francisco general hospital", 0, [512, 546]], ["women's clinic sf", 0, [546, 649]], ["women's center san francisco", 0, [512, 546]]], {"i": "women's clinic equity boost san francisco va medical center'", "q": "QVSaIiZBcKX7Q68ol1JVm9aI06g", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic equity boost san francisco va medical center'", "women's options center san francisco ca", "women's clinic san francisco", "women's options center at san francisco general hospital", "women's clinic sf", "women's center san francisco"], "self_loops": [0], "tags": {"i": "women's clinic equity boost san francisco va medical center'", "q": "QVSaIiZBcKX7Q68ol1JVm9aI06g", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va women's clinic near me", "datetime": "2026-03-12 19:30:18.721999", "source": "google", "data": ["va women's clinic near me", [["va women's clinic near me", 0, [512]], ["va women's center near me", 0, [22, 10, 30]], ["virginia women's center near mechanicsville va", 0, [22, 10, 30]], ["va women's clinic memphis tn", 0, [22, 30]], ["virginia women's clinic mechanicsville", 0, [22, 10, 30]], ["va medical clinic near me", 0, [512, 390, 650]], ["va clinic near me", 0, [512, 390, 650]], ["va walk-in clinic near me", 0, [512, 390, 650]], ["va approved clinics near me", 0, [512, 390, 650]], ["va women's clinic phone number", 0, [512, 546]]], {"i": "va women's clinic near me", "q": "vNoYoBqcx9I6qaZR_8FRcQllTEk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va women's clinic near me", "va women's center near me", "virginia women's center near mechanicsville va", "va women's clinic memphis tn", "virginia women's clinic mechanicsville", "va medical clinic near me", "va clinic near me", "va walk-in clinic near me", "va approved clinics near me", "va women's clinic phone number"], "self_loops": [0], "tags": {"i": "va women's clinic near me", "q": "vNoYoBqcx9I6qaZR_8FRcQllTEk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va approved clinics near me", "datetime": "2026-03-12 19:30:19.916132", "source": "google", "data": ["va approved clinics near me", [["va approved clinics near me", 0, [512]], ["va approved doctors near me", 0, [22, 30]], ["va clinics near me", 0, [22, 30]], ["va clinic near me walk in", 0, [22, 30]], ["va clinic nearest me", 0, [22, 30]], ["va approved urgent care clinics near me", 0, [512, 390, 650]], ["va medical clinic near me", 0, [512, 390, 650]], ["va approved urgent care near me", 0, [512, 546]], ["va-approved urgent care locator", 0, [512, 546]]], {"i": "va approved clinics near me", "q": "stxqzm65EJdBGabSx90fu2d-8OE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va approved clinics near me", "va approved doctors near me", "va clinics near me", "va clinic near me walk in", "va clinic nearest me", "va approved urgent care clinics near me", "va medical clinic near me", "va approved urgent care near me", "va-approved urgent care locator"], "self_loops": [0], "tags": {"i": "va approved clinics near me", "q": "stxqzm65EJdBGabSx90fu2d-8OE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va doctors office near me", "datetime": "2026-03-12 19:30:20.834114", "source": "google", "data": ["va doctors office near me", [["va doctors office near me", 0, [512]], ["veterans doctors office near me", 0, [22, 30]], ["va medical office near me", 0, [22, 30]], ["va doctors near me", 0, [512, 390, 650]], ["find a va doctor near me", 0, [512, 390, 650]], ["va primary care physician near me", 0, [512, 390, 650]], ["va approved doctors near me", 0, [512, 390, 650]]], {"i": "va doctors office near me", "q": "xNnqUfva-2mwa_nVxm7tl241bxc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va doctors office near me", "veterans doctors office near me", "va medical office near me", "va doctors near me", "find a va doctor near me", "va primary care physician near me", "va approved doctors near me"], "self_loops": [0], "tags": {"i": "va doctors office near me", "q": "xNnqUfva-2mwa_nVxm7tl241bxc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va clinic near me", "datetime": "2026-03-12 19:30:21.891211", "source": "google", "data": ["va clinic near me", [["va clinic palo alto", 0, [512, 402, 650]], ["va clinic san francisco", 0, [512, 402, 650]], ["va clinic near me", 0, [512, 457]], ["va clinic near me now", 0, [512]], ["va clinic near me open now", 0, [512]], ["va clinic near me phone number", 0, [512]], ["va clinic near me within 20 mi", 0, [512]], ["va clinic near me within 5 mi", 0, [512]], ["va clinic near me location", 0, [22, 30]], ["va clinic near me jobs", 0, [22, 30]]], {"i": "va clinic near me", "q": "0MsYZGoFXQ4u62IH4eI0NY_0NKg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va clinic palo alto", "va clinic san francisco", "va clinic near me", "va clinic near me now", "va clinic near me open now", "va clinic near me phone number", "va clinic near me within 20 mi", "va clinic near me within 5 mi", "va clinic near me location", "va clinic near me jobs"], "self_loops": [2], "tags": {"i": "va clinic near me", "q": "0MsYZGoFXQ4u62IH4eI0NY_0NKg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va animal clinic near me", "datetime": "2026-03-12 19:30:23.073563", "source": "google", "data": ["va animal clinic near me", [["va animal clinic near me", 0, [512]], ["vet clinic. near me", 0, [512, 390, 650]], ["virginia animal clinic", 0, [751]], ["walk-in animal clinic near me", 0, [512, 546]], ["va animal control", 0, [512, 546]]], {"i": "va animal clinic near me", "q": "f-1KVw_9a-1VKBEpSpCTjinmGLA", "t": {"bpc": false, "tlw": false}}], "suggests": ["va animal clinic near me", "vet clinic. near me", "virginia animal clinic", "walk-in animal clinic near me", "va animal control"], "self_loops": [0], "tags": {"i": "va animal clinic near me", "q": "f-1KVw_9a-1VKBEpSpCTjinmGLA", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va women's clinic st louis", "datetime": "2026-03-12 19:30:24.320297", "source": "google", "data": ["va women's clinic st louis", [["va women's clinic st louis", 0, [512]], ["va women's clinic near st louis mo", 0, [22, 30]], ["va women's clinic near me", 0, [512, 390, 650]], ["va women's clinic phone number", 0, [512, 390, 650]], ["va approved clinics near me", 0, [512, 390, 650]], ["va women's clinic louisville ky", 0, [512, 546]], ["va women's center st francis", 0, [512, 546]]], {"i": "va women's clinic st louis", "q": "PKMBi45xlrUMpAXR9Gi_Vl_0hr0", "t": {"bpc": false, "tlw": false}}], "suggests": ["va women's clinic st louis", "va women's clinic near st louis mo", "va women's clinic near me", "va women's clinic phone number", "va approved clinics near me", "va women's clinic louisville ky", "va women's center st francis"], "self_loops": [0], "tags": {"i": "va women's clinic st louis", "q": "PKMBi45xlrUMpAXR9Gi_Vl_0hr0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va women's clinic seattle", "datetime": "2026-03-12 19:30:25.329597", "source": "google", "data": ["va women's clinic seattle", [["seattle va women's clinic", 0, [22, 10, 30], {"za": "seattle va women's clinic", "zb": "va women's clinic seattle"}], ["va women's clinic near me", 0, [512, 390, 650]], ["va approved clinics near me", 0, [512, 390, 650]], ["va clinic near me", 0, [512, 390, 650]], ["va medical clinic near me", 0, [512, 390, 650]], ["va women's clinic phone number", 0, [512, 390, 650]], ["va women's clinic american lake", 0, [546, 649]], ["va women's clinic st louis", 0, [512, 546]]], {"i": "va women's clinic seattle", "o": "seattle va women's clinic", "p": "va women's clinic seattle", "q": "7KD__7gOCqaFAo2uJxJ47wNX5A4", "t": {"bpc": false, "tlw": false}}], "suggests": ["seattle va women's clinic", "va women's clinic near me", "va approved clinics near me", "va clinic near me", "va medical clinic near me", "va women's clinic phone number", "va women's clinic american lake", "va women's clinic st louis"], "self_loops": [], "tags": {"i": "va women's clinic seattle", "o": "seattle va women's clinic", "p": "va women's clinic seattle", "q": "7KD__7gOCqaFAo2uJxJ47wNX5A4", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va women's center st francis", "datetime": "2026-03-12 19:30:26.676724", "source": "google", "data": ["va women's center st francis", [["va women's center st francis", 0, [512]], ["virginia women's center st francis hospital", 0, [22, 30]], ["virginia women's center st francis boulevard", 0, [22, 30]], ["virginia women's center - 13801 saint francis boulevard", 0, [22, 10, 30]], ["virginia women's center saint francis boulevard midlothian va", 0, [22, 30]], ["virginia women's center 13801 st francis blvd midlothian va 23114", 0, [22, 10, 30]], ["va women's center locations", 0, [546, 649]], ["va women's center fax number", 0, [546, 649]], ["virginia women's center st. francis", 0, [751]]], {"i": "va women's center st francis", "q": "qP64P6GBr8Omua3Lqg6Ap3qLFtk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va women's center st francis", "virginia women's center st francis hospital", "virginia women's center st francis boulevard", "virginia women's center - 13801 saint francis boulevard", "virginia women's center saint francis boulevard midlothian va", "virginia women's center 13801 st francis blvd midlothian va 23114", "va women's center locations", "va women's center fax number", "virginia women's center st. francis"], "self_loops": [0], "tags": {"i": "va women's center st francis", "q": "qP64P6GBr8Omua3Lqg6Ap3qLFtk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf lessons san francisco", "datetime": "2026-03-12 19:30:27.680711", "source": "google", "data": ["women's golf lessons san francisco", [["women's golf lessons san francisco", 0, [22, 30]], ["women's golf lessons san diego", 0, [512, 546]], ["women's golf lessons san antonio", 0, [546, 649]], ["women's golf lessons sacramento", 0, [751]], ["women's golf lessons los angeles", 0, [512, 546]], ["women's golf lessons st louis", 0, [546, 649]]], {"i": "women's golf lessons san francisco", "q": "0aTr5uhbIKyWOhKhUc0WLamDweU", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's golf lessons san francisco", "women's golf lessons san diego", "women's golf lessons san antonio", "women's golf lessons sacramento", "women's golf lessons los angeles", "women's golf lessons st louis"], "self_loops": [0], "tags": {"i": "women's golf lessons san francisco", "q": "0aTr5uhbIKyWOhKhUc0WLamDweU", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf clinic", "datetime": "2026-03-12 19:30:29.016570", "source": "google", "data": ["women's golf clinic", [["women's golf clinic near me", 0, [512]], ["women's golf clinics 2026", 0, [512]], ["women's golf clinic", 0, [512]], ["women's golf clinics melbourne", 0, [512]], ["women's golf clinics 2025", 0, [22, 30]], ["women's golf clinics 2025 near me", 0, [22, 30]], ["women's golf clinic boston", 0, [22, 30]], ["denver women's golf clinic", 0, [22, 10, 30], {"za": "denver women's golf clinic", "zb": "women's golf clinic denver"}], ["women's golf clinic perth", 0, [22, 30]], ["women's golf clinic ideas", 0, [22, 30]]], {"i": "women's golf clinic", "q": "VleoaKCPv5kYGXtHi51mw3c2oI0", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's golf clinic near me", "women's golf clinics 2026", "women's golf clinic", "women's golf clinics melbourne", "women's golf clinics 2025", "women's golf clinics 2025 near me", "women's golf clinic boston", "denver women's golf clinic", "women's golf clinic perth", "women's golf clinic ideas"], "self_loops": [2], "tags": {"i": "women's golf clinic", "q": "VleoaKCPv5kYGXtHi51mw3c2oI0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf clinic ideas", "datetime": "2026-03-12 19:30:30.013116", "source": "google", "data": ["women's golf clinic ideas", [["women's golf clinic ideas", 0, [22, 30]], ["women's wellness workshop ideas", 0, [512, 390, 650]], ["ladies golf clinic ideas", 0, [512, 546]], ["women's golf clinic", 0, [512, 546]]], {"i": "women's golf clinic ideas", "q": "W-iN_wOxzm5V1pBJUQEh-JE1ank", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's golf clinic ideas", "women's wellness workshop ideas", "ladies golf clinic ideas", "women's golf clinic"], "self_loops": [0], "tags": {"i": "women's golf clinic ideas", "q": "W-iN_wOxzm5V1pBJUQEh-JE1ank", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic sf general", "datetime": "2026-03-12 19:30:31.154738", "source": "google", "data": ["women's clinic sf general", [["women's clinic sf general", 0, [22, 30]], ["women's clinic general hospital sf", 0, [751]], ["women's clinic sf", 0, [546, 649]]], {"i": "women's clinic sf general", "q": "qOTP7y4jaS2I1PfNh0mNVl1q1V0", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic sf general", "women's clinic general hospital sf", "women's clinic sf"], "self_loops": [0], "tags": {"i": "women's clinic sf general", "q": "qOTP7y4jaS2I1PfNh0mNVl1q1V0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open now within 8.1 km", "datetime": "2026-03-12 19:30:32.481562", "source": "google", "data": ["abortion clinic near me open now within 8.1 km", [["abortion clinic near me open now within 8.1 km", 0, [22, 30]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic open on saturday near me", 0, [512, 390, 650]], ["abortion clinic open near me", 0, [512, 390, 650]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic near me open sunday", 0, [751]], ["abortion clinic open on weekends near me", 0, [751]]], {"i": "abortion clinic near me open now within 8.1 km", "q": "-W3l2bTGY6b1PYNA3aeDPDyiA54", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open now within 8.1 km", "abortion clinic near me now", "abortion clinic open on saturday near me", "abortion clinic open near me", "abortion clinic near me for free", "abortion clinic near me open sunday", "abortion clinic open on weekends near me"], "self_loops": [0], "tags": {"i": "abortion clinic near me open now within 8.1 km", "q": "-W3l2bTGY6b1PYNA3aeDPDyiA54", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open now within 20 mi", "datetime": "2026-03-12 19:30:33.426302", "source": "google", "data": ["abortion clinic near me open now within 20 mi", [["abortion clinic near me open now within 20 mi", 0, [22, 30]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic for free near me", 0, [512, 390, 650]], ["abortion clinic open near me", 0, [512, 390, 650]], ["abortion clinic near me open on saturday", 0, [751]], ["abortion clinic near me 24 hours", 0, [751]], ["abortion clinic near me up to 20 weeks", 0, [751]], ["abortion clinic near me open sunday", 0, [751]]], {"i": "abortion clinic near me open now within 20 mi", "q": "LRQ_5NC1HuylQ44JHG0gA4VBVo4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open now within 20 mi", "abortion clinic near me now", "abortion clinic for free near me", "abortion clinic open near me", "abortion clinic near me open on saturday", "abortion clinic near me 24 hours", "abortion clinic near me up to 20 weeks", "abortion clinic near me open sunday"], "self_loops": [0], "tags": {"i": "abortion clinic near me open now within 20 mi", "q": "LRQ_5NC1HuylQ44JHG0gA4VBVo4", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open now within 5 mi", "datetime": "2026-03-12 19:30:34.492886", "source": "google", "data": ["abortion clinic near me open now within 5 mi", [["abortion clinic near me open now within 5 mi", 0, [22, 30]], ["women's clinic near me open now within 5 mi", 0, [22, 30]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic open near me", 0, [512, 390, 650]], ["abortion clinic open on saturday near me", 0, [512, 390, 650]], ["abortion clinic near me open sunday", 0, [751]], ["abortion clinic open on weekends near me", 0, [751]]], {"i": "abortion clinic near me open now within 5 mi", "q": "lzILgeueJJPIiJIa2EjyEco6ewQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open now within 5 mi", "women's clinic near me open now within 5 mi", "abortion clinic near me now", "abortion clinic open near me", "abortion clinic open on saturday near me", "abortion clinic near me open sunday", "abortion clinic open on weekends near me"], "self_loops": [0], "tags": {"i": "abortion clinic near me open now within 5 mi", "q": "lzILgeueJJPIiJIa2EjyEco6ewQ", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic near me open now", "datetime": "2026-03-12 19:30:35.743757", "source": "google", "data": ["women's clinic near me open now", [["women's clinic near me open now", 0, [512]], ["women's clinic near me open now within 5 mi", 0, [22, 30]], ["women hospital near me open now", 0, [22, 30]], ["women doctor near me open now", 0, [22, 30]], ["women center near me open now", 0, [22, 30]], ["woman doctor near me open now", 0, [22, 30]], ["women's health clinic near me open now", 0, [22, 30]], ["free women's clinic near me open now", 0, [22, 30]], ["women specialist clinic near me open now", 0, [22, 30]], ["walk in women's clinic near me open now", 0, [22, 30]]], {"i": "women's clinic near me open now", "q": "Q76Z73ozRO5P8uOuaPNfSLZXpnA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic near me open now", "women's clinic near me open now within 5 mi", "women hospital near me open now", "women doctor near me open now", "women center near me open now", "woman doctor near me open now", "women's health clinic near me open now", "free women's clinic near me open now", "women specialist clinic near me open now", "walk in women's clinic near me open now"], "self_loops": [0], "tags": {"i": "women's clinic near me open now", "q": "Q76Z73ozRO5P8uOuaPNfSLZXpnA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion hospital near me open now", "datetime": "2026-03-12 19:30:36.812156", "source": "google", "data": ["abortion hospital near me open now", [["abortion hospital near me open now", 0, [512]], ["abortion clinic near me open now", 0, [22, 30]], ["abortion clinic near me open now within 8.1 km", 0, [22, 30]], ["abortion clinic near me open now within 20 mi", 0, [22, 30]], ["abortion clinic near me open now within 5 mi", 0, [22, 30]], ["abortion clinic near me open today", 0, [22, 30]], ["free abortion clinic near me open now", 0, [22, 30]], ["private abortion clinic near me open now", 0, [22, 30]], ["cheap abortion clinics near me open now", 0, [22, 30]], ["safe abortion clinic near me open now", 0, [22, 30]]], {"i": "abortion hospital near me open now", "q": "Faa7yG92LdZoX4ofes6-zTd9zuc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion hospital near me open now", "abortion clinic near me open now", "abortion clinic near me open now within 8.1 km", "abortion clinic near me open now within 20 mi", "abortion clinic near me open now within 5 mi", "abortion clinic near me open today", "free abortion clinic near me open now", "private abortion clinic near me open now", "cheap abortion clinics near me open now", "safe abortion clinic near me open now"], "self_loops": [0], "tags": {"i": "abortion hospital near me open now", "q": "Faa7yG92LdZoX4ofes6-zTd9zuc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion doctor near me open now", "datetime": "2026-03-12 19:30:37.613107", "source": "google", "data": ["abortion doctor near me open now", [["abortion doctor near me open now", 0, [512]], ["abortion clinic near me open now", 0, [22, 30]], ["abortion clinic near me open now within 8.1 km", 0, [22, 30]], ["abortion clinic near me open now within 20 mi", 0, [22, 30]], ["abortion clinic near me open now within 5 mi", 0, [22, 30]], ["abortion clinic near me open today", 0, [22, 30]], ["free abortion clinic near me open now", 0, [22, 30]], ["private abortion clinic near me open now", 0, [22, 30]], ["cheap abortion clinics near me open now", 0, [22, 30]], ["safe abortion clinic near me open now", 0, [22, 30]]], {"i": "abortion doctor near me open now", "q": "GSILT_9J3jZs7L2eWU_k9ZyPyvY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion doctor near me open now", "abortion clinic near me open now", "abortion clinic near me open now within 8.1 km", "abortion clinic near me open now within 20 mi", "abortion clinic near me open now within 5 mi", "abortion clinic near me open today", "free abortion clinic near me open now", "private abortion clinic near me open now", "cheap abortion clinics near me open now", "safe abortion clinic near me open now"], "self_loops": [0], "tags": {"i": "abortion doctor near me open now", "q": "GSILT_9J3jZs7L2eWU_k9ZyPyvY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion centers near me open now", "datetime": "2026-03-12 19:30:38.904958", "source": "google", "data": ["abortion centers near me open now", [["abortion centers near me open now", 0, [22, 30]], ["abortion clinic near me open now", 0, [22, 30]], ["abortion clinic near me open now within 8.1 km", 0, [22, 30]], ["abortion services near me open now", 0, [22, 30]], ["abortion clinic near me open now within 20 mi", 0, [22, 30]], ["abortion clinic near me open now within 5 mi", 0, [22, 30]], ["free abortion center near me open now", 0, [22, 30]], ["abortion clinic near me open today", 0, [22, 30]], ["private abortion clinic near me open now", 0, [22, 30]], ["cheap abortion clinics near me open now", 0, [22, 30]]], {"i": "abortion centers near me open now", "q": "nDEy-CdFXm2lHRqHylUKi97r8P0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion centers near me open now", "abortion clinic near me open now", "abortion clinic near me open now within 8.1 km", "abortion services near me open now", "abortion clinic near me open now within 20 mi", "abortion clinic near me open now within 5 mi", "free abortion center near me open now", "abortion clinic near me open today", "private abortion clinic near me open now", "cheap abortion clinics near me open now"], "self_loops": [0], "tags": {"i": "abortion centers near me open now", "q": "nDEy-CdFXm2lHRqHylUKi97r8P0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion services near me open now", "datetime": "2026-03-12 19:30:40.333387", "source": "google", "data": ["abortion services near me open now", [["abortion services near me open now", 0, [22, 30]], ["abortion clinic near me open now", 0, [22, 30]], ["abortion center near me open now", 0, [22, 30]], ["abortion clinic near me open now within 8.1 km", 0, [22, 30]], ["abortion clinic near me open now within 20 mi", 0, [22, 30]], ["abortion clinic near me open now within 5 mi", 0, [22, 30]], ["abortion clinic near me open today", 0, [22, 30]], ["free abortion clinic near me open now", 0, [22, 30]], ["private abortion clinic near me open now", 0, [22, 30]], ["cheap abortion clinics near me open now", 0, [22, 30]]], {"i": "abortion services near me open now", "q": "LE7hHwiD2IDcnEfnBlKMhM2VcjE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion services near me open now", "abortion clinic near me open now", "abortion center near me open now", "abortion clinic near me open now within 8.1 km", "abortion clinic near me open now within 20 mi", "abortion clinic near me open now within 5 mi", "abortion clinic near me open today", "free abortion clinic near me open now", "private abortion clinic near me open now", "cheap abortion clinics near me open now"], "self_loops": [0], "tags": {"i": "abortion services near me open now", "q": "LE7hHwiD2IDcnEfnBlKMhM2VcjE", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic near me open now within 5 mi", "datetime": "2026-03-12 19:30:41.172512", "source": "google", "data": ["women's clinic near me open now within 5 mi", [["women's clinic near me open now within 5 mi", 0, [22, 30]], ["women's clinic open near me", 0, [512, 390, 650]], ["24 hour women's clinic near me", 0, [512, 390, 650]], ["women's clinic near me no insurance", 0, [512, 390, 650]], ["women's clinic near me open on weekends", 0, [512, 546]], ["women's clinic open on saturday near me", 0, [512, 546]]], {"i": "women's clinic near me open now within 5 mi", "q": "PF5lh02ywLnMf4v6VAVFx9KFcgc", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic near me open now within 5 mi", "women's clinic open near me", "24 hour women's clinic near me", "women's clinic near me no insurance", "women's clinic near me open on weekends", "women's clinic open on saturday near me"], "self_loops": [0], "tags": {"i": "women's clinic near me open now within 5 mi", "q": "PF5lh02ywLnMf4v6VAVFx9KFcgc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me prices open now", "datetime": "2026-03-12 19:30:42.589451", "source": "google", "data": ["abortion clinic near me prices open now", [["abortion clinic near me prices open now", 0, [22, 30]], ["abortion clinic near me price", 0, [512, 390, 650]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic open near me", 0, [512, 390, 650]], ["abortion clinic near me open on saturday", 0, [751]], ["abortion clinic near me how much", 0, [512, 546]]], {"i": "abortion clinic near me prices open now", "q": "ARLQgoJkQrp0_A3gfq6ZAkbyvZs", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me prices open now", "abortion clinic near me price", "abortion clinic near me now", "abortion clinic near me for free", "abortion clinic open near me", "abortion clinic near me open on saturday", "abortion clinic near me how much"], "self_loops": [0], "tags": {"i": "abortion clinic near me prices open now", "q": "ARLQgoJkQrp0_A3gfq6ZAkbyvZs", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "cat abortion clinic near me prices", "datetime": "2026-03-12 19:30:43.776704", "source": "google", "data": ["cat abortion clinic near me prices", [["cat abortion clinic near me prices", 0, [22, 30]], ["cat abortion clinic near me", 0, [512, 546]]], {"i": "cat abortion clinic near me prices", "q": "UhuFNjN_5xqsqcMMB3e_-MymMEA", "t": {"bpc": false, "tlw": false}}], "suggests": ["cat abortion clinic near me prices", "cat abortion clinic near me"], "self_loops": [0], "tags": {"i": "cat abortion clinic near me prices", "q": "UhuFNjN_5xqsqcMMB3e_-MymMEA", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics near me and prices within 8.1 km", "datetime": "2026-03-12 19:30:44.786268", "source": "google", "data": ["abortion clinics near me and prices within 8.1 km", [["abortion clinics near me and prices within 8.1 km", 0, [22, 30]], ["abortion clinic near me and prices", 0, [512, 390, 650]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinics near me cost", 0, [751]], ["abortion clinics near me that accept insurance", 0, [751]]], {"i": "abortion clinics near me and prices within 8.1 km", "q": "Zp-ZYgYFEbSsYaHt2kqmpPpSXCw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics near me and prices within 8.1 km", "abortion clinic near me and prices", "abortion clinic near me for free", "abortion clinic near me now", "abortion clinics near me cost", "abortion clinics near me that accept insurance"], "self_loops": [0], "tags": {"i": "abortion clinics near me and prices within 8.1 km", "q": "Zp-ZYgYFEbSsYaHt2kqmpPpSXCw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics near me and prices within 32.2 km", "datetime": "2026-03-12 19:30:45.693120", "source": "google", "data": ["abortion clinics near me and prices within 32.2 km", [["abortion clinics near me and prices within 32.2 km", 0, [22, 30]], ["abortion clinics near me and prices", 0, [512, 390, 650]], ["abortion clinics near me cost", 0, [751]], ["abortion clinics near me free", 0, [512, 546]], ["abortion clinics near me now", 0, [546, 649]], ["abortion clinic near me up to 20 weeks", 0, [751]]], {"i": "abortion clinics near me and prices within 32.2 km", "q": "w29t6buaCwZGJpx68tX9jkYKxX4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics near me and prices within 32.2 km", "abortion clinics near me and prices", "abortion clinics near me cost", "abortion clinics near me free", "abortion clinics near me now", "abortion clinic near me up to 20 weeks"], "self_loops": [0], "tags": {"i": "abortion clinics near me and prices within 32.2 km", "q": "w29t6buaCwZGJpx68tX9jkYKxX4", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me low cost", "datetime": "2026-03-12 19:30:46.793139", "source": "google", "data": ["abortion clinic near me low cost", [["abortion clinic near me low cost", 0, [512]], ["abortion clinic near me and prices", 0, [22, 30]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["cheap abortion clinics near me", 0, [512, 390, 650]], ["abortion clinic near me how much", 0, [512, 546]], ["abortion clinic near me cost", 0, [512, 546]], ["abortion clinic near me that accept insurance", 0, [751]]], {"i": "abortion clinic near me low cost", "q": "t6-VTcgIehqLd4-5-rq6FEu4uoQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me low cost", "abortion clinic near me and prices", "abortion clinic near me for free", "cheap abortion clinics near me", "abortion clinic near me how much", "abortion clinic near me cost", "abortion clinic near me that accept insurance"], "self_loops": [0], "tags": {"i": "abortion clinic near me low cost", "q": "t6-VTcgIehqLd4-5-rq6FEu4uoQ", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic near me low cost", "datetime": "2026-03-12 19:30:47.682115", "source": "google", "data": ["women's clinic near me low cost", [["women's clinic near me low cost", 0, [512]], ["low cost women's health clinic near me", 0, [22, 30]], ["free or low cost women's clinic near me", 0, [22, 30]], ["women's clinic near me no insurance", 0, [512, 390, 650]], ["list of free clinics near me", 0, [512, 390, 650]]], {"i": "women's clinic near me low cost", "q": "FM3CSoOHKETEvOK-NfNy_JGe6Zc", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic near me low cost", "low cost women's health clinic near me", "free or low cost women's clinic near me", "women's clinic near me no insurance", "list of free clinics near me"], "self_loops": [0], "tags": {"i": "women's clinic near me low cost", "q": "FM3CSoOHKETEvOK-NfNy_JGe6Zc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me cost", "datetime": "2026-03-12 19:30:49.090376", "source": "google", "data": ["abortion clinic near me cost", [["abortion clinic near me cost", 0, [512]], ["abortion clinic near me prices open now", 0, [22, 30]], ["abortion clinic near me low cost", 0, [22, 30]], ["women's clinic near me low cost", 0, [22, 30]], ["cat abortion clinic near me prices", 0, [22, 30]], ["abortion clinics near me and prices within 8.1 km", 0, [22, 30]], ["abortion clinics near me and prices within 32.2 km", 0, [22, 30]], ["no cost abortion clinic near me", 0, [22, 30]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic near me and prices", 0, [512, 390, 650]]], {"i": "abortion clinic near me cost", "q": "Sx15airSZBJsj3vT5lDUt-NALns", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic near me cost", "abortion clinic near me prices open now", "abortion clinic near me low cost", "women's clinic near me low cost", "cat abortion clinic near me prices", "abortion clinics near me and prices within 8.1 km", "abortion clinics near me and prices within 32.2 km", "no cost abortion clinic near me", "abortion clinic near me for free", "abortion clinic near me and prices"], "self_loops": [0], "tags": {"i": "abortion clinic near me cost", "q": "Sx15airSZBJsj3vT5lDUt-NALns", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me how much", "datetime": "2026-03-12 19:30:50.599066", "source": "google", "data": ["abortion clinic near me how much", [["abortion clinic near me how much", 0, [512]], ["abortion clinic near me prices", 0, [512, 546]], ["abortion clinic near me cost", 0, [512, 546]]], {"i": "abortion clinic near me how much", "q": "popClbwstyeviMh-ln9WDP9oHJI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me how much", "abortion clinic near me prices", "abortion clinic near me cost"], "self_loops": [0], "tags": {"i": "abortion clinic near me how much", "q": "popClbwstyeviMh-ln9WDP9oHJI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women clinic near me for free", "datetime": "2026-03-12 19:30:51.837392", "source": "google", "data": ["women clinic near me for free", [["women clinic near me for free", 0, [22, 30]], ["women's clinic near me free ultrasound", 0, [22, 30]], ["women's center near me free ultrasound", 0, [22, 30]], ["women center near me free", 0, [22, 30]], ["women's health clinic near me free", 0, [22, 30]], ["free women's clinic near me no insurance", 0, [22, 30]], ["free women's clinic near me open now", 0, [22, 30]], ["free women's clinic near me within 5 mi", 0, [22, 30]], ["free women's clinic near me walk in", 0, [22, 30]], ["free women's clinic near me within 1 mi", 0, [22, 30]]], {"i": "women clinic near me for free", "q": "QALE-gJ9mQWSH_8Vc-BTpLX0Tew", "t": {"bpc": false, "tlw": false}}], "suggests": ["women clinic near me for free", "women's clinic near me free ultrasound", "women's center near me free ultrasound", "women center near me free", "women's health clinic near me free", "free women's clinic near me no insurance", "free women's clinic near me open now", "free women's clinic near me within 5 mi", "free women's clinic near me walk in", "free women's clinic near me within 1 mi"], "self_loops": [0], "tags": {"i": "women clinic near me for free", "q": "QALE-gJ9mQWSH_8Vc-BTpLX0Tew", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic near me free ultrasound", "datetime": "2026-03-12 19:30:53.269662", "source": "google", "data": ["women's clinic near me free ultrasound", [["women's clinic near me free ultrasound", 0, [512]], ["women's center near me free ultrasound", 0, [22, 30]], ["women's clinic near me for ultrasound", 0, [512, 390, 650]], ["free ultrasound clinic near me", 0, [512, 390, 650]], ["where can i go get a free ultrasound", 0, [512, 390, 650]], ["women's free ultrasound", 0, [512, 546]]], {"i": "women's clinic near me free ultrasound", "q": "ADUhJXi6acpXpFl8-3YpfZAN8eA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic near me free ultrasound", "women's center near me free ultrasound", "women's clinic near me for ultrasound", "free ultrasound clinic near me", "where can i go get a free ultrasound", "women's free ultrasound"], "self_loops": [0], "tags": {"i": "women's clinic near me free ultrasound", "q": "ADUhJXi6acpXpFl8-3YpfZAN8eA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill clinic near me free", "datetime": "2026-03-12 19:30:54.718753", "source": "google", "data": ["abortion pill clinic near me free", [["abortion pill clinic near me free", 0, [512]], ["abortion clinics near me free", 0, [22, 30]]], {"i": "abortion pill clinic near me free", "q": "X8ftWjRS8GOhTj4p6bMb_Xh5c4g", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill clinic near me free", "abortion clinics near me free"], "self_loops": [0], "tags": {"i": "abortion pill clinic near me free", "q": "X8ftWjRS8GOhTj4p6bMb_Xh5c4g", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's center near me free ultrasound", "datetime": "2026-03-12 19:30:55.552294", "source": "google", "data": ["women's center near me free ultrasound", [["women's center near me free ultrasound", 0, [512]], ["women's clinic near me free ultrasound", 0, [22, 30]], ["where can i go get a free ultrasound", 0, [512, 390, 650]], ["where can i get an ultrasound near me for free", 0, [512, 390, 650]], ["women's center ultrasound", 0, [512, 546]], ["women's free ultrasound", 0, [512, 546]], ["women's health center free ultrasound", 0, [512, 546]]], {"i": "women's center near me free ultrasound", "q": "1sCu8FL65r6xdouW_ddKF9T1U-g", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's center near me free ultrasound", "women's clinic near me free ultrasound", "where can i go get a free ultrasound", "where can i get an ultrasound near me for free", "women's center ultrasound", "women's free ultrasound", "women's health center free ultrasound"], "self_loops": [0], "tags": {"i": "women's center near me free ultrasound", "q": "1sCu8FL65r6xdouW_ddKF9T1U-g", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women center near me free", "datetime": "2026-03-12 19:30:56.459842", "source": "google", "data": ["women center near me free", [["women's center near me free ultrasound", 0, [22, 30]], ["women center near me free", 0, [22, 30]], ["women clinic near me free", 0, [22, 30]], ["women's clinic near me free ultrasound", 0, [22, 30]], ["women's health clinic near me free", 0, [22, 30]], ["walk in women's clinic near me free", 0, [22, 30]], ["free women's health center near me", 0, [22, 10, 30]], ["free women's donation center near me", 0, [22, 30]], ["free women's pregnancy center near me", 0, [22, 30]], ["free women's care center near me", 0, [22, 10, 30]]], {"i": "women center near me free", "q": "6Y93tHR7UkElBb5US-2Dc6os9L8", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's center near me free ultrasound", "women center near me free", "women clinic near me free", "women's clinic near me free ultrasound", "women's health clinic near me free", "walk in women's clinic near me free", "free women's health center near me", "free women's donation center near me", "free women's pregnancy center near me", "free women's care center near me"], "self_loops": [1], "tags": {"i": "women center near me free", "q": "6Y93tHR7UkElBb5US-2Dc6os9L8", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinic near me open now", "datetime": "2026-03-12 19:30:57.432466", "source": "google", "data": ["free abortion clinic near me open now", [["free abortion clinic near me open now", 0, [512]], ["free women's clinic near me open now", 0, [22, 30]], ["free women's health clinic near me open now", 0, [22, 30]], ["free abortion clinics near me", 0, [512, 390, 650]], ["free abortion center near me", 0, [512, 546]], ["free abortion clinics near fort lauderdale fl", 0, [751]]], {"i": "free abortion clinic near me open now", "q": "j7W89AzZiDVifuUax3BMxan9leU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free abortion clinic near me open now", "free women's clinic near me open now", "free women's health clinic near me open now", "free abortion clinics near me", "free abortion center near me", "free abortion clinics near fort lauderdale fl"], "self_loops": [0], "tags": {"i": "free abortion clinic near me open now", "q": "j7W89AzZiDVifuUax3BMxan9leU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinic near me volunteer", "datetime": "2026-03-12 19:30:58.655281", "source": "google", "data": ["free abortion clinic near me volunteer", [["free abortion clinic near me volunteer", 0, [22, 30]], ["volunteer at abortion clinic near me", 0, [512, 390, 650]], ["free abortion clinic near me", 0, [512, 390, 650]], ["abortion clinic volunteer opportunities near me", 0, [751]]], {"i": "free abortion clinic near me volunteer", "q": "A0HEtYaZ5YkvcuwFC65VZt97x4A", "t": {"bpc": false, "tlw": false}}], "suggests": ["free abortion clinic near me volunteer", "volunteer at abortion clinic near me", "free abortion clinic near me", "abortion clinic volunteer opportunities near me"], "self_loops": [0], "tags": {"i": "free abortion clinic near me volunteer", "q": "A0HEtYaZ5YkvcuwFC65VZt97x4A", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinic near me within 5 mi", "datetime": "2026-03-12 19:31:00.063954", "source": "google", "data": ["free abortion clinic near me within 5 mi", [["free abortion clinic near me within 5 mi", 0, [22, 30]], ["free women's clinic near me within 5 mi", 0, [22, 30]], ["free abortion clinic near me", 0, [512, 390, 650]], ["free abortion centers near me", 0, [512, 390, 650]], ["free abortion clinic near washington dc", 0, [751]], ["free abortion clinic minnesota", 0, [751]], ["free abortion clinic miami", 0, [512, 546]]], {"i": "free abortion clinic near me within 5 mi", "q": "8cmqAGmN_11vXi1l6uehzjobSts", "t": {"bpc": false, "tlw": false}}], "suggests": ["free abortion clinic near me within 5 mi", "free women's clinic near me within 5 mi", "free abortion clinic near me", "free abortion centers near me", "free abortion clinic near washington dc", "free abortion clinic minnesota", "free abortion clinic miami"], "self_loops": [0], "tags": {"i": "free abortion clinic near me within 5 mi", "q": "8cmqAGmN_11vXi1l6uehzjobSts", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinic near me within 20 mi", "datetime": "2026-03-12 19:31:01.315297", "source": "google", "data": ["free abortion clinic near me within 20 mi", [["free abortion clinic near me within 20 mi", 0, [22, 30]], ["free abortion clinics near me", 0, [512, 390, 650]], ["free abortion centers near me", 0, [512, 390, 650]], ["cheap abortion clinics near me", 0, [512, 390, 650]], ["free abortion clinic near washington dc", 0, [751]], ["free abortion clinics near fort lauderdale fl", 0, [751]]], {"i": "free abortion clinic near me within 20 mi", "q": "LNNGkRtYtiNgqmETdkwISsrA4Gw", "t": {"bpc": false, "tlw": false}}], "suggests": ["free abortion clinic near me within 20 mi", "free abortion clinics near me", "free abortion centers near me", "cheap abortion clinics near me", "free abortion clinic near washington dc", "free abortion clinics near fort lauderdale fl"], "self_loops": [0], "tags": {"i": "free abortion clinic near me within 20 mi", "q": "LNNGkRtYtiNgqmETdkwISsrA4Gw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women clinic near me walk in", "datetime": "2026-03-12 19:31:02.716302", "source": "google", "data": ["women clinic near me walk in", [["women clinic near me walk in", 0, [512]], ["women's health clinic near me walk in", 0, [22, 30]], ["female doctor near me walk in", 0, [22, 30]], ["free women's clinic near me walk in", 0, [22, 30]], ["female doctor near me walk in clinic", 0, [22, 30]], ["walk in women's clinic near me open now", 0, [22, 30]], ["walk in women's clinic near me within 5 mi", 0, [22, 30]], ["women's clinic near me without insurance", 0, [512, 390, 650]]], {"i": "women clinic near me walk in", "q": "rKY4RTTkJlAl1AaZezre-jXDOCA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women clinic near me walk in", "women's health clinic near me walk in", "female doctor near me walk in", "free women's clinic near me walk in", "female doctor near me walk in clinic", "walk in women's clinic near me open now", "walk in women's clinic near me within 5 mi", "women's clinic near me without insurance"], "self_loops": [0], "tags": {"i": "women clinic near me walk in", "q": "rKY4RTTkJlAl1AaZezre-jXDOCA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic near me walk in", "datetime": "2026-03-12 19:31:04.179562", "source": "google", "data": ["women's health clinic near me walk in", [["women's health clinic near me walk in", 0, [512]], ["walk-in women's clinic near me", 0, [512, 390, 650]], ["does walmart have a walk in clinic", 0, [512, 390, 650]], ["women's check up clinic near me", 0, [512, 390, 650]]], {"i": "women's health clinic near me walk in", "q": "nsW0rvbyP7LpiIjzZq2lbHuFtpg", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health clinic near me walk in", "walk-in women's clinic near me", "does walmart have a walk in clinic", "women's check up clinic near me"], "self_loops": [0], "tags": {"i": "women's health clinic near me walk in", "q": "nsW0rvbyP7LpiIjzZq2lbHuFtpg", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic near me walk in", "datetime": "2026-03-12 19:31:05.353268", "source": "google", "data": ["free women's clinic near me walk in", [["free women's clinic near me walk in", 0, [22, 30]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["walk-in women's clinic near me", 0, [512, 390, 650]], ["free women's clinics near me", 0, [512, 390, 650]]], {"i": "free women's clinic near me walk in", "q": "EiR7CO6MtrBk4k1yBzGVka7kziI", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's clinic near me walk in", "free women's clinic near me no insurance", "walk-in women's clinic near me", "free women's clinics near me"], "self_loops": [0], "tags": {"i": "free women's clinic near me walk in", "q": "EiR7CO6MtrBk4k1yBzGVka7kziI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in abortion clinic near me nhs", "datetime": "2026-03-12 19:31:06.175103", "source": "google", "data": ["walk in abortion clinic near me nhs", [["walk in abortion clinic near me nhs", 0, [512]], ["walk in abortion clinic near me nhs open now", 0, [22, 30]], ["walk in abortion clinic near me nhs london", 0, [22, 30]], ["walk in abortion clinic near me nhs scotland", 0, [22, 30]], ["walk in abortion clinic near me nhs within 5 mi", 0, [22, 30]], ["walk-in abortion clinic near me nhs birmingham", 0, [22, 10, 30], {"za": "walk-in abortion clinic near me nhs birmingham", "zb": "walk in abortion clinic near me nhs birmingham"}], ["top rated walk in abortion clinic near me nhs", 0, [22, 30]], ["walk in abortion clinic near me", 0, [512, 390, 650]], ["nhs walk in clinic near me open now", 0, [512, 390, 650]], ["do abortion clinics take walk ins", 0, [512, 390, 650]]], {"i": "walk in abortion clinic near me nhs", "q": "_iduPJ3jb5x7WGtVnOXvhA7CHoU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["walk in abortion clinic near me nhs", "walk in abortion clinic near me nhs open now", "walk in abortion clinic near me nhs london", "walk in abortion clinic near me nhs scotland", "walk in abortion clinic near me nhs within 5 mi", "walk-in abortion clinic near me nhs birmingham", "top rated walk in abortion clinic near me nhs", "walk in abortion clinic near me", "nhs walk in clinic near me open now", "do abortion clinics take walk ins"], "self_loops": [0], "tags": {"i": "walk in abortion clinic near me nhs", "q": "_iduPJ3jb5x7WGtVnOXvhA7CHoU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in abortion clinic near me open now", "datetime": "2026-03-12 19:31:07.478936", "source": "google", "data": ["walk in abortion clinic near me open now", [["walk in abortion clinic near me open now", 0, [512]], ["walk in women's clinic near me open now", 0, [22, 30]], ["walk in abortion clinic near me nhs open now", 0, [22, 30]], ["top rated walk in abortion clinic near me open now", 0, [22, 30]], ["walk in abortion clinic open now", 0, [22, 30]], ["walk in abortion clinic near me", 0, [512, 390, 650]], ["do abortion clinics take walk ins", 0, [512, 390, 650]], ["do abortion clinics do walk ins", 0, [512, 390, 650]], ["are there any walk in clinics open near me", 0, [512, 390, 650]]], {"i": "walk in abortion clinic near me open now", "q": "6k-v38-GOBtF-YRrhzumFUL0aP8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["walk in abortion clinic near me open now", "walk in women's clinic near me open now", "walk in abortion clinic near me nhs open now", "top rated walk in abortion clinic near me open now", "walk in abortion clinic open now", "walk in abortion clinic near me", "do abortion clinics take walk ins", "do abortion clinics do walk ins", "are there any walk in clinics open near me"], "self_loops": [0], "tags": {"i": "walk in abortion clinic near me open now", "q": "6k-v38-GOBtF-YRrhzumFUL0aP8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in abortion clinic near me private", "datetime": "2026-03-12 19:31:08.551368", "source": "google", "data": ["walk in abortion clinic near me private", [["walk in abortion clinic near me private", 0, [512]], ["walk in abortion clinic near me", 0, [512, 390, 650]], ["private abortion clinic near me", 0, [512, 390, 650]], ["do abortion clinics take walk ins", 0, [512, 390, 650]], ["do abortion clinics do walk ins", 0, [512, 390, 650]]], {"i": "walk in abortion clinic near me private", "q": "taYimsbqWPR6JtvVZMNz-l-iEk4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["walk in abortion clinic near me private", "walk in abortion clinic near me", "private abortion clinic near me", "do abortion clinics take walk ins", "do abortion clinics do walk ins"], "self_loops": [0], "tags": {"i": "walk in abortion clinic near me private", "q": "taYimsbqWPR6JtvVZMNz-l-iEk4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in abortion clinic near me within 5 mi", "datetime": "2026-03-12 19:31:09.635104", "source": "google", "data": ["walk in abortion clinic near me within 5 mi", [["walk in abortion clinic near me within 5 mi", 0, [22, 30]], ["walk in women's clinic near me within 5 mi", 0, [22, 30]], ["walk in abortion clinic near me nhs within 5 mi", 0, [22, 30]], ["walk in abortion clinic near me", 0, [512, 390, 650]], ["do abortion clinics take walk ins", 0, [512, 390, 650]], ["do abortion clinics do walk ins", 0, [512, 390, 650]], ["closest abortion clinic near me", 0, [512, 390, 650]]], {"i": "walk in abortion clinic near me within 5 mi", "q": "B7v0-xTLKeVFCIfAYdH3gP7WcdM", "t": {"bpc": false, "tlw": false}}], "suggests": ["walk in abortion clinic near me within 5 mi", "walk in women's clinic near me within 5 mi", "walk in abortion clinic near me nhs within 5 mi", "walk in abortion clinic near me", "do abortion clinics take walk ins", "do abortion clinics do walk ins", "closest abortion clinic near me"], "self_loops": [0], "tags": {"i": "walk in abortion clinic near me within 5 mi", "q": "B7v0-xTLKeVFCIfAYdH3gP7WcdM", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in abortion clinic near me within 20 mi", "datetime": "2026-03-12 19:31:10.535460", "source": "google", "data": ["walk in abortion clinic near me within 20 mi", [["walk in abortion clinic near me within 20 mi", 0, [512]], ["walk in abortion clinic near me", 0, [512, 390, 650]], ["do abortion clinics take walk ins", 0, [512, 390, 650]], ["do abortion clinics do walk ins", 0, [512, 390, 650]]], {"i": "walk in abortion clinic near me within 20 mi", "q": "F7iEffb67hMijEzGR9pzlK2Lek8", "t": {"bpc": false, "tlw": false}}], "suggests": ["walk in abortion clinic near me within 20 mi", "walk in abortion clinic near me", "do abortion clinics take walk ins", "do abortion clinics do walk ins"], "self_loops": [0], "tags": {"i": "walk in abortion clinic near me within 20 mi", "q": "F7iEffb67hMijEzGR9pzlK2Lek8", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in abortion clinic near me nhs open now", "datetime": "2026-03-12 19:31:12.029026", "source": "google", "data": ["walk in abortion clinic near me nhs open now", [["walk in abortion clinic near me nhs open now", 0, [22, 30]], ["nhs walk in clinic near me open now", 0, [512, 390, 650]], ["nhs walk in clinic near me open today", 0, [512, 390, 650]], ["are there any walk in clinics open near me", 0, [512, 390, 650]], ["nearest walk in clinic open now", 0, [512, 390, 650]], ["walk in medical clinic near me open now", 0, [512, 390, 650]], ["walk-in abortion clinic near me", 0, [512, 546]]], {"i": "walk in abortion clinic near me nhs open now", "q": "wrnT_xZWGarjyRY22r2fo-1DY5I", "t": {"bpc": false, "tlw": false}}], "suggests": ["walk in abortion clinic near me nhs open now", "nhs walk in clinic near me open now", "nhs walk in clinic near me open today", "are there any walk in clinics open near me", "nearest walk in clinic open now", "walk in medical clinic near me open now", "walk-in abortion clinic near me"], "self_loops": [0], "tags": {"i": "walk in abortion clinic near me nhs open now", "q": "wrnT_xZWGarjyRY22r2fo-1DY5I", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic near me now", "datetime": "2026-03-12 19:31:13.098915", "source": "google", "data": ["women's clinic near me now", [["women's clinic near me now", 0, [22, 457, 30]], ["women's clinic san jose", 0, [512, 402, 650]], ["women's clinic near me open now", 0, [22, 30]], ["women's clinic near me open now within 5 mi", 0, [22, 30]], ["female doctor near me now", 0, [22, 30]], ["women hospital near me open now", 0, [22, 30]], ["women doctor near me open now", 0, [22, 30]], ["women center near me open now", 0, [22, 30]], ["woman doctor near me open now", 0, [22, 30]], ["women's health clinic near me open now", 0, [22, 30]]], {"i": "women's clinic near me now", "q": "Qzam7cf6Gh_yg7_HONmOsziwUf4", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic near me now", "women's clinic san jose", "women's clinic near me open now", "women's clinic near me open now within 5 mi", "female doctor near me now", "women hospital near me open now", "women doctor near me open now", "women center near me open now", "woman doctor near me open now", "women's health clinic near me open now"], "self_loops": [0], "tags": {"i": "women's clinic near me now", "q": "Qzam7cf6Gh_yg7_HONmOsziwUf4", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me today", "datetime": "2026-03-12 19:31:14.137936", "source": "google", "data": ["abortion clinic near me today", [["abortion clinic near me today san jose", 33, [160], {"a": "abortion clinic near me ", "b": "today san jose"}], ["abortion clinic near me today palo alto", 33, [160], {"a": "abortion clinic near me ", "b": "today palo alto"}], ["abortion clinic near me today open", 33, [160], {"a": "abortion clinic near me ", "b": "today open"}], ["abortion clinic near me today san jose ca", 33, [160], {"a": "abortion clinic near me ", "b": "today san jose ca"}], ["abortion clinic near me today palo alto ca", 33, [160], {"a": "abortion clinic near me ", "b": "today palo alto ca"}], ["abortion clinic near me today", 33, [299], {"a": "abortion clinic near me ", "b": "today"}], ["abortion clinic near me today san francisco", 33, [402], {"a": "abortion clinic near me ", "b": "today san francisco"}], ["abortion clinic near me today menlo park", 33, [402], {"a": "abortion clinic near me ", "b": "today menlo park"}], ["abortion clinic near me today redwood city", 33, [402], {"a": "abortion clinic near me ", "b": "today redwood city"}], ["abortion clinic near me today stanford", 33, [402], {"a": "abortion clinic near me ", "b": "today stanford"}]], {"i": "abortion clinic near me today", "q": "WDdOaxTIqe3TGoXk4rbjA67lods", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me today san jose", "abortion clinic near me today palo alto", "abortion clinic near me today open", "abortion clinic near me today san jose ca", "abortion clinic near me today palo alto ca", "abortion clinic near me today", "abortion clinic near me today san francisco", "abortion clinic near me today menlo park", "abortion clinic near me today redwood city", "abortion clinic near me today stanford"], "self_loops": [5], "tags": {"i": "abortion clinic near me today", "q": "WDdOaxTIqe3TGoXk4rbjA67lods", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me insurance", "datetime": "2026-03-12 19:31:15.473400", "source": "google", "data": ["abortion clinic near me insurance", [["abortion clinic near me insurance", 0, [22, 30]], ["women's clinic near me no insurance", 0, [22, 30]], ["abortion clinic near me that takes insurance", 0, [22, 30]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic near me and prices", 0, [512, 390, 650]], ["abortion clinic near me that accept insurance", 0, [751]], ["abortion clinic near me accepts medicaid", 0, [751]], ["abortion clinic near me medicaid", 0, [512, 546]]], {"i": "abortion clinic near me insurance", "q": "UUK-tL8S5CH1bU7njsnOIIn1EpI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me insurance", "women's clinic near me no insurance", "abortion clinic near me that takes insurance", "abortion clinic near me for free", "abortion clinic near me and prices", "abortion clinic near me that accept insurance", "abortion clinic near me accepts medicaid", "abortion clinic near me medicaid"], "self_loops": [0], "tags": {"i": "abortion clinic near me insurance", "q": "UUK-tL8S5CH1bU7njsnOIIn1EpI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "do abortion clinics take insurance", "datetime": "2026-03-12 19:31:16.574688", "source": "google", "data": ["do abortion clinics take insurance", [["do abortion clinics take insurance", 0, [512]], ["do abortion clinics accept insurance", 0, [22, 30]], ["abortion clinics take insurance", 0, [22, 30]], ["what insurance cover abortion", 0, [512, 390, 650]], ["do abortion clinics take cash", 0, [751]], ["do abortion clinics take credit cards", 0, [512, 546]], ["do abortion clinics accept medicaid", 0, [751]]], {"i": "do abortion clinics take insurance", "q": "nmxZPbliEU_f8vGErXx4v_saGwE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["do abortion clinics take insurance", "do abortion clinics accept insurance", "abortion clinics take insurance", "what insurance cover abortion", "do abortion clinics take cash", "do abortion clinics take credit cards", "do abortion clinics accept medicaid"], "self_loops": [0], "tags": {"i": "do abortion clinics take insurance", "q": "nmxZPbliEU_f8vGErXx4v_saGwE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what insurance cover abortion", "datetime": "2026-03-12 19:31:17.615624", "source": "google", "data": ["what insurance cover abortion", [["what insurance cover abortion", 0, [512]], ["what insurance covers abortion pill", 0, [22, 30]], ["does insurance cover abortion", 0, [22, 30]], ["does insurance cover abortion pill", 0, [22, 30]], ["does insurance cover abortion at planned parenthood", 0, [22, 30]], ["does insurance cover abortion costs", 0, [22, 30]], ["does insurance cover abortion california", 0, [22, 30]], ["does insurance cover abortion florida", 0, [22, 30]], ["does insurance cover abortion nj", 0, [22, 30]], ["does insurance cover abortion pill at planned parenthood", 0, [22, 30]]], {"i": "what insurance cover abortion", "q": "jnZfGHBZSUvjUe0uM3LZNKxYAV4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what insurance cover abortion", "what insurance covers abortion pill", "does insurance cover abortion", "does insurance cover abortion pill", "does insurance cover abortion at planned parenthood", "does insurance cover abortion costs", "does insurance cover abortion california", "does insurance cover abortion florida", "does insurance cover abortion nj", "does insurance cover abortion pill at planned parenthood"], "self_loops": [0], "tags": {"i": "what insurance cover abortion", "q": "jnZfGHBZSUvjUe0uM3LZNKxYAV4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me that accept insurance", "datetime": "2026-03-12 19:31:18.836957", "source": "google", "data": ["abortion clinic near me that accept insurance", [["abortion clinic near me that accept insurance", 0, [22, 30]], ["abortion clinic near me insurance", 0, [22, 30]], ["do abortion clinics take insurance", 0, [512, 390, 650]], ["abortion clinic near me that accepts medicaid", 0, [512, 546]]], {"i": "abortion clinic near me that accept insurance", "q": "Zostmnummpsmg7SeWwKklJEQxcE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me that accept insurance", "abortion clinic near me insurance", "do abortion clinics take insurance", "abortion clinic near me that accepts medicaid"], "self_loops": [0], "tags": {"i": "abortion clinic near me that accept insurance", "q": "Zostmnummpsmg7SeWwKklJEQxcE", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me that accepts medicaid", "datetime": "2026-03-12 19:31:20.054001", "source": "google", "data": ["abortion clinic near me that accepts medicaid", [["abortion clinic near me that accepts medicaid", 0, [512]], ["women's clinic near me that accepts medicaid", 0, [22, 30]], ["women's health clinic near me that accept medicaid", 0, [22, 30]], ["abortion clinic near me medicaid", 0, [22, 30]], ["abortion clinic near me medicaid discount", 0, [22, 30]], ["women's clinic near me medicaid", 0, [22, 30]], ["abortion clinics near me that take medicaid", 0, [751]], ["abortion clinic near me that accept insurance", 0, [751]]], {"i": "abortion clinic near me that accepts medicaid", "q": "sX5URsUPrX9dS5dpO2nt_u35BRc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me that accepts medicaid", "women's clinic near me that accepts medicaid", "women's health clinic near me that accept medicaid", "abortion clinic near me medicaid", "abortion clinic near me medicaid discount", "women's clinic near me medicaid", "abortion clinics near me that take medicaid", "abortion clinic near me that accept insurance"], "self_loops": [0], "tags": {"i": "abortion clinic near me that accepts medicaid", "q": "sX5URsUPrX9dS5dpO2nt_u35BRc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open on weekends", "datetime": "2026-03-12 19:31:21.542617", "source": "google", "data": ["abortion clinic near me open on weekends", [["abortion clinic near me open on weekends", 0, [512]], ["women's clinic near me open on weekends", 0, [22, 30]], ["abortion clinic near me open on sunday", 0, [22, 30]], ["abortion clinic near me open saturday", 0, [22, 30]], ["women's clinic near me open saturday", 0, [22, 30]], ["abortion clinic open near me", 0, [512, 390, 650]]], {"i": "abortion clinic near me open on weekends", "q": "yxCKb7Hn9bujChwQCJ1tqnVvPdI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open on weekends", "women's clinic near me open on weekends", "abortion clinic near me open on sunday", "abortion clinic near me open saturday", "women's clinic near me open saturday", "abortion clinic open near me"], "self_loops": [0], "tags": {"i": "abortion clinic near me open on weekends", "q": "yxCKb7Hn9bujChwQCJ1tqnVvPdI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open saturday", "datetime": "2026-03-12 19:31:22.770966", "source": "google", "data": ["abortion clinic near me open saturday", [["abortion clinic near me open saturday", 0, [512]], ["women's clinic near me open saturday", 0, [22, 30]], ["abortion clinic near me open today", 0, [22, 30]], ["abortion clinic open sunday near me", 0, [512, 390, 650]]], {"i": "abortion clinic near me open saturday", "q": "wJGdo2j41MuO0oD51RuhBpZe_aY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open saturday", "women's clinic near me open saturday", "abortion clinic near me open today", "abortion clinic open sunday near me"], "self_loops": [0], "tags": {"i": "abortion clinic near me open saturday", "q": "wJGdo2j41MuO0oD51RuhBpZe_aY", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open sunday", "datetime": "2026-03-12 19:31:23.999626", "source": "google", "data": ["abortion clinic near me open sunday", [["abortion clinic near me open sunday", 0, [22, 30]], ["abortion clinic near me open today", 0, [22, 30]], ["abortion clinic open on saturday near me", 0, [512, 390, 650]], ["abortion clinic open near me", 0, [512, 390, 650]]], {"i": "abortion clinic near me open sunday", "q": "Z7faQr9CjGwKA0KHkDubF8nr9_4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open sunday", "abortion clinic near me open today", "abortion clinic open on saturday near me", "abortion clinic open near me"], "self_loops": [0], "tags": {"i": "abortion clinic near me open sunday", "q": "Z7faQr9CjGwKA0KHkDubF8nr9_4", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open today", "datetime": "2026-03-12 19:31:24.871085", "source": "google", "data": ["abortion clinic near me open today", [["abortion clinic near me open today", 0, [22, 30]], ["abortion clinic near me open on sunday", 0, [22, 30]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic open on saturday near me", 0, [512, 390, 650]], ["abortion clinic open near me", 0, [512, 390, 650]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic near me online appointment", 0, [751]], ["abortion clinic near me 24 hours", 0, [751]]], {"i": "abortion clinic near me open today", "q": "CnLjbaI_ERVHMCdUOH9xCiolA0s", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open today", "abortion clinic near me open on sunday", "abortion clinic near me now", "abortion clinic open on saturday near me", "abortion clinic open near me", "abortion clinic near me for free", "abortion clinic near me online appointment", "abortion clinic near me 24 hours"], "self_loops": [0], "tags": {"i": "abortion clinic near me open today", "q": "CnLjbaI_ERVHMCdUOH9xCiolA0s", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open tomorrow", "datetime": "2026-03-12 19:31:26.227331", "source": "google", "data": ["abortion clinic near me open tomorrow", [["abortion clinic near me open tomorrow morning", 33, [160], {"a": "abortion clinic near me open ", "b": "tomorrow morning"}], ["abortion clinic near me open tomorrow near me", 33, [160], {"a": "abortion clinic near me open ", "b": "tomorrow near me"}], ["abortion clinic near me open tomorrow san jose", 33, [160], {"a": "abortion clinic near me open ", "b": "tomorrow san jose"}], ["abortion clinic near me open tomorrow 2024", 33, [160], {"a": "abortion clinic near me open ", "b": "tomorrow 2024"}], ["abortion clinic near me open tomorrow san jose ca", 33, [160], {"a": "abortion clinic near me open ", "b": "tomorrow san jose ca"}]], {"i": "abortion clinic near me open tomorrow", "q": "1NtwehKwcQUdOP0CHMdGhTeuiJo", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open tomorrow morning", "abortion clinic near me open tomorrow near me", "abortion clinic near me open tomorrow san jose", "abortion clinic near me open tomorrow 2024", "abortion clinic near me open tomorrow san jose ca"], "self_loops": [], "tags": {"i": "abortion clinic near me open tomorrow", "q": "1NtwehKwcQUdOP0CHMdGhTeuiJo", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me same day appointment", "datetime": "2026-03-12 19:31:27.464477", "source": "google", "data": ["abortion clinic near me same day appointment", [["abortion clinic near me same day appointment", 0, [512]], ["same day appointment clinic near me", 0, [512, 390, 650]], ["abortion clinic open on saturday near me", 0, [512, 390, 650]], ["abortion clinic near me same day", 0, [512, 546]], ["abortion clinic near me online appointment", 0, [751]]], {"i": "abortion clinic near me same day appointment", "q": "HuA2-uyxPqHQxJPiJbJO0rqU8T0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me same day appointment", "same day appointment clinic near me", "abortion clinic open on saturday near me", "abortion clinic near me same day", "abortion clinic near me online appointment"], "self_loops": [0], "tags": {"i": "abortion clinic near me same day appointment", "q": "HuA2-uyxPqHQxJPiJbJO0rqU8T0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "same day private abortion clinic near me", "datetime": "2026-03-12 19:31:28.445498", "source": "google", "data": ["same day private abortion clinic near me", [["same day private abortion clinic near me", 0, [512]], ["same day abortion clinics near me", 0, [512, 390, 650]], ["private abortion clinic near me", 0, [512, 390, 650]], ["closest abortion clinic near me", 0, [512, 390, 650]]], {"i": "same day private abortion clinic near me", "q": "27ecbnPAY-juH9ugsMZ3sGokjgg", "t": {"bpc": false, "tlw": false}}], "suggests": ["same day private abortion clinic near me", "same day abortion clinics near me", "private abortion clinic near me", "closest abortion clinic near me"], "self_loops": [0], "tags": {"i": "same day private abortion clinic near me", "q": "27ecbnPAY-juH9ugsMZ3sGokjgg", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic open on saturday near me", "datetime": "2026-03-12 19:31:29.537086", "source": "google", "data": ["abortion clinic open on saturday near me", [["abortion clinic open on saturday near me", 0, [512]], ["abortion clinic open near me", 0, [22, 30]], ["abortion clinic open now near me", 0, [22, 30]], ["women's clinic open near me", 0, [22, 10, 30]], ["abortion clinic open sunday near me", 0, [512, 390, 650]], ["pregnancy clinic open on saturday near me", 0, [512, 390, 650]], ["abortion clinic open on weekends near me", 0, [751]]], {"i": "abortion clinic open on saturday near me", "q": "1103uqTSvBsNqia-6B6eNX4qZpI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic open on saturday near me", "abortion clinic open near me", "abortion clinic open now near me", "women's clinic open near me", "abortion clinic open sunday near me", "pregnancy clinic open on saturday near me", "abortion clinic open on weekends near me"], "self_loops": [0], "tags": {"i": "abortion clinic open on saturday near me", "q": "1103uqTSvBsNqia-6B6eNX4qZpI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me 24 hours", "datetime": "2026-03-12 19:31:30.347728", "source": "google", "data": ["abortion clinic near me 24 hours", [["abortion clinic near me 24 hours san jose", 33, [160], {"a": "abortion clinic near me 24 ", "b": "hours san jose"}], ["abortion clinic near me 24 hours open", 33, [160], {"a": "abortion clinic near me 24 ", "b": "hours open"}], ["abortion clinic near me 24 hours near me", 33, [160], {"a": "abortion clinic near me 24 ", "b": "hours near me"}], ["abortion clinic near me 24 hours no insurance", 33, [160], {"a": "abortion clinic near me 24 ", "b": "hours no insurance"}], ["abortion clinic near me 24 hours san jose ca", 33, [160], {"a": "abortion clinic near me 24 ", "b": "hours san jose ca"}]], {"i": "abortion clinic near me 24 hours", "q": "so1DafSXA16HcbmEO6tHbizKIDA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me 24 hours san jose", "abortion clinic near me 24 hours open", "abortion clinic near me 24 hours near me", "abortion clinic near me 24 hours no insurance", "abortion clinic near me 24 hours san jose ca"], "self_loops": [], "tags": {"i": "abortion clinic near me 24 hours", "q": "so1DafSXA16HcbmEO6tHbizKIDA", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online free texas", "datetime": "2026-03-12 19:31:31.601922", "source": "google", "data": ["abortion pill online free texas", [["abortion pill online free texas", 0, [512]], ["is abortion pill legal in texas", 0, [512, 390, 650]]], {"i": "abortion pill online free texas", "q": "BIiUfHX6J2dElRv_wSIk77QxqxE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill online free texas", "is abortion pill legal in texas"], "self_loops": [0], "tags": {"i": "abortion pill online free texas", "q": "BIiUfHX6J2dElRv_wSIk77QxqxE", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online free missouri", "datetime": "2026-03-12 19:31:32.942463", "source": "google", "data": ["abortion pill online free missouri", [["abortion pill online free missouri", 0, [22, 30]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill in missouri", 0, [512, 390, 650]], ["abortion pill clinic near me free", 0, [512, 390, 650]], ["abortion pill online missouri", 0, [512, 546]], ["abortion pill online mo", 0, [751]], ["abortion pill online free", 0, [512, 546]], ["abortion pill online mississippi", 0, [512, 546]]], {"i": "abortion pill online free missouri", "q": "2WJIZkXGwCtCyhVC9sv2ivR_14k", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill online free missouri", "abortion pill near me online", "abortion pill in missouri", "abortion pill clinic near me free", "abortion pill online missouri", "abortion pill online mo", "abortion pill online free", "abortion pill online mississippi"], "self_loops": [0], "tags": {"i": "abortion pill online free missouri", "q": "2WJIZkXGwCtCyhVC9sv2ivR_14k", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online free medicaid", "datetime": "2026-03-12 19:31:33.939885", "source": "google", "data": ["abortion pill online free medicaid", [["abortion pill online free medicaid", 0, [22, 30]], ["does medicaid cover abortion pill", 0, [512, 390, 650]], ["are abortions covered by medicaid", 0, [512, 390, 650]], ["abortion pill online free", 0, [512, 546]], ["abortion pill online prescription", 0, [512, 546]], ["abortion pill online access", 0, [751]]], {"i": "abortion pill online free medicaid", "q": "4RpK6dNp9POib62zePLPJjeor7c", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill online free medicaid", "does medicaid cover abortion pill", "are abortions covered by medicaid", "abortion pill online free", "abortion pill online prescription", "abortion pill online access"], "self_loops": [0], "tags": {"i": "abortion pill online free medicaid", "q": "4RpK6dNp9POib62zePLPJjeor7c", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill online free", "datetime": "2026-03-12 19:31:35.285983", "source": "google", "data": ["morning after pill online free", [["morning after pill online free", 0, [512]], ["morning after pill for free", 0, [22, 30]], ["morning after pill for free near me", 0, [22, 30]], ["morning after pill for free boots", 0, [22, 30]], ["morning after pill free online uk", 0, [22, 30]], ["morning after pill for free uk", 0, [22, 30]], ["morning after pill for free london", 0, [22, 30]], ["morning after pill for free nhs", 0, [22, 30]], ["morning after pill free online delivery", 0, [22, 30]], ["morning after pill free for students", 0, [22, 30]]], {"i": "morning after pill online free", "q": "Ov3EAqT-XL36_2DuyE7YaXC9MnI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill online free", "morning after pill for free", "morning after pill for free near me", "morning after pill for free boots", "morning after pill free online uk", "morning after pill for free uk", "morning after pill for free london", "morning after pill for free nhs", "morning after pill free online delivery", "morning after pill free for students"], "self_loops": [0], "tags": {"i": "morning after pill online free", "q": "Ov3EAqT-XL36_2DuyE7YaXC9MnI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill for free boots", "datetime": "2026-03-12 19:31:36.546182", "source": "google", "data": ["morning after pill for free boots", [["morning after pill for free boots", 0, [512]], ["can you get morning after pill for free boots", 0, [22, 30]], ["where to get morning after pill for free boots", 0, [22, 30]], ["can i get morning after pill for free boots", 0, [22, 30]], ["do boots offer the morning after pill for free", 0, [22, 30]], ["does boots give morning after pill free", 0, [512, 390, 650]], ["morning after pill free at planned parenthood", 0, [751]], ["boots.morning after.pill", 0, [751]]], {"i": "morning after pill for free boots", "q": "qX2o0neQeqsnZZ_KQvndOabpS_Y", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill for free boots", "can you get morning after pill for free boots", "where to get morning after pill for free boots", "can i get morning after pill for free boots", "do boots offer the morning after pill for free", "does boots give morning after pill free", "morning after pill free at planned parenthood", "boots.morning after.pill"], "self_loops": [0], "tags": {"i": "morning after pill for free boots", "q": "qX2o0neQeqsnZZ_KQvndOabpS_Y", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill free online uk", "datetime": "2026-03-12 19:31:37.474285", "source": "google", "data": ["morning after pill free online uk", [["morning after pill free online uk", 0, [512]], ["is the morning after pill free uk", 0, [512, 390, 650]], ["how to get free morning after pill uk", 0, [512, 390, 650]], ["free morning after pill order online", 0, [512, 546]], ["free morning after pill online", 0, [512, 546]], ["free morning after pill pharmacy", 0, [512, 546]]], {"i": "morning after pill free online uk", "q": "Yr8bzoG1C-bwtjXlh4SCNjnEtok", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill free online uk", "is the morning after pill free uk", "how to get free morning after pill uk", "free morning after pill order online", "free morning after pill online", "free morning after pill pharmacy"], "self_loops": [0], "tags": {"i": "morning after pill free online uk", "q": "Yr8bzoG1C-bwtjXlh4SCNjnEtok", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill for free uk", "datetime": "2026-03-12 19:31:38.660451", "source": "google", "data": ["morning after pill for free uk", [["morning after pill for free uk", 0, [22, 30]], ["morning after pill free uk news", 0, [22, 30]], ["morning after pill now free uk", 0, [22, 30]], ["morning after pill free england", 0, [22, 30]], ["can you get morning after pill free uk", 0, [22, 10, 30]], ["morning after pill free online uk", 0, [22, 30]], ["day after pill uk free", 0, [22, 30]], ["free morning after pill uk pharmacies", 0, [22, 30]], ["is the morning after pill free uk boots", 0, [22, 30]], ["free morning after pill uk reddit", 0, [22, 30]]], {"i": "morning after pill for free uk", "q": "MoFLbFin5ysf9QDXuc_1W4VrF8A", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill for free uk", "morning after pill free uk news", "morning after pill now free uk", "morning after pill free england", "can you get morning after pill free uk", "morning after pill free online uk", "day after pill uk free", "free morning after pill uk pharmacies", "is the morning after pill free uk boots", "free morning after pill uk reddit"], "self_loops": [0], "tags": {"i": "morning after pill for free uk", "q": "MoFLbFin5ysf9QDXuc_1W4VrF8A", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill for free nhs", "datetime": "2026-03-12 19:31:39.544414", "source": "google", "data": ["morning after pill for free nhs", [["morning after pill for free nhs", 0, [22, 30]], ["nhs makes morning after pill available for free across pharmacies in england", 0, [22, 30]], ["free morning after pill nhs pharmacy", 0, [22, 455, 30]], ["how to get free morning after pill uk", 0, [512, 390, 650]], ["is the morning after pill free uk", 0, [512, 390, 650]], ["morning after pill free at planned parenthood", 0, [751]]], {"i": "morning after pill for free nhs", "q": "sdkDhT317xQOIV2NVb5l-BgT1xc", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill for free nhs", "nhs makes morning after pill available for free across pharmacies in england", "free morning after pill nhs pharmacy", "how to get free morning after pill uk", "is the morning after pill free uk", "morning after pill free at planned parenthood"], "self_loops": [0], "tags": {"i": "morning after pill for free nhs", "q": "sdkDhT317xQOIV2NVb5l-BgT1xc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online low cost", "datetime": "2026-03-12 19:31:40.345872", "source": "google", "data": ["abortion pill online low cost", [["abortion pill online low cost", 0, [22, 30]], ["abortion pill online low income", 0, [22, 30]], ["abortion pill online cost", 0, [22, 30]], ["abortion pill near me online", 0, [512, 390, 650]]], {"i": "abortion pill online low cost", "q": "rMfvuCF_iM2AQAYL7ofgCGYZJkQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill online low cost", "abortion pill online low income", "abortion pill online cost", "abortion pill near me online"], "self_loops": [0], "tags": {"i": "abortion pill online low cost", "q": "rMfvuCF_iM2AQAYL7ofgCGYZJkQ", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill price online", "datetime": "2026-03-12 19:31:41.385110", "source": "google", "data": ["morning after pill price online", [["morning after pill price online", 0, [22, 30]], ["morning after pill price clicks online", 0, [22, 30]], ["morning after pill online cheap", 0, [22, 30]], ["how much do morning after pill cost at clicks", 0, [512, 390, 650]], ["how much does morning after pills cost at clicks", 0, [512, 390, 650]], ["morning after pill price at clicks", 0, [512, 390, 650]], ["morning after pill price walgreens", 0, [546, 649]], ["morning after pill price walmart", 0, [512, 546]], ["morning after pill price cvs", 0, [512, 546]], ["morning after pill cost walgreens", 0, [751]]], {"i": "morning after pill price online", "q": "YZyMlCpEBqx3vz_mfQBb72F497w", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill price online", "morning after pill price clicks online", "morning after pill online cheap", "how much do morning after pill cost at clicks", "how much does morning after pills cost at clicks", "morning after pill price at clicks", "morning after pill price walgreens", "morning after pill price walmart", "morning after pill price cvs", "morning after pill cost walgreens"], "self_loops": [0], "tags": {"i": "morning after pill price online", "q": "YZyMlCpEBqx3vz_mfQBb72F497w", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill near me online", "datetime": "2026-03-12 19:31:42.357330", "source": "google", "data": ["abortion pill near me online", [["abortion pill near me online", 0, [512]], ["abortion pill in german online near me", 0, [22, 30]], ["abortion pill near me over the counter", 0, [512, 546]], ["abortion pill near me same day", 0, [512, 546]], ["abortion pill online near mississippi", 0, [751]]], {"i": "abortion pill near me online", "q": "ingKQBLAz5-LzdFvLCmHVQ2BnWI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill near me online", "abortion pill in german online near me", "abortion pill near me over the counter", "abortion pill near me same day", "abortion pill online near mississippi"], "self_loops": [0], "tags": {"i": "abortion pill near me online", "q": "ingKQBLAz5-LzdFvLCmHVQ2BnWI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online prescription", "datetime": "2026-03-12 19:31:43.832417", "source": "google", "data": ["abortion pill online prescription", [["abortion pill online prescription", 0, [512]], ["morning after pill online prescription", 0, [22, 30]], ["abortion pill prescribed online", 0, [22, 30]], ["morning after pill online pharmacy", 0, [22, 455, 30]]], {"i": "abortion pill online prescription", "q": "9Z29TavulyA9-9v6L_GkjXFkD90", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online prescription", "morning after pill online prescription", "abortion pill prescribed online", "morning after pill online pharmacy"], "self_loops": [0], "tags": {"i": "abortion pill online prescription", "q": "9Z29TavulyA9-9v6L_GkjXFkD90", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill in german online near me", "datetime": "2026-03-12 19:31:45.159398", "source": "google", "data": ["abortion pill in german online near me", [["abortion pill in german online near me", 0, [22, 30]], ["abortion pill cost germany", 0, [512, 390, 650]], ["abortion pill in german", 0, [512, 546]]], {"i": "abortion pill in german online near me", "q": "j2RjC-XkFjWsfiusg4q90nyTKlM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill in german online near me", "abortion pill cost germany", "abortion pill in german"], "self_loops": [0], "tags": {"i": "abortion pill in german online near me", "q": "j2RjC-XkFjWsfiusg4q90nyTKlM", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online medicaid", "datetime": "2026-03-12 19:31:46.478144", "source": "google", "data": ["abortion pill online medicaid", [["abortion pill online medicaid", 0, [512]], ["abortion pill online free medicaid", 0, [22, 30]], ["does medicaid cover abortion pill", 0, [512, 390, 650]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill online access", 0, [751]], ["abortion pill online prescription", 0, [512, 546]], ["abortion pill online mississippi", 0, [512, 546]]], {"i": "abortion pill online medicaid", "q": "OBB8_nziTMMmZAjJHj5GuAS8lJQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online medicaid", "abortion pill online free medicaid", "does medicaid cover abortion pill", "abortion pill near me online", "abortion pill online access", "abortion pill online prescription", "abortion pill online mississippi"], "self_loops": [0], "tags": {"i": "abortion pill online medicaid", "q": "OBB8_nziTMMmZAjJHj5GuAS8lJQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online near mississippi", "datetime": "2026-03-12 19:31:47.275239", "source": "google", "data": ["abortion pill online near mississippi", [["abortion pill online mississippi", 0, [22, 30]], ["abortion pill cost in mississippi", 0, [512, 390, 650]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill in mississippi", 0, [512, 390, 650]]], {"i": "abortion pill online near mississippi", "q": "-ZDLxBAyTXyHtdcJbTgPosBXxyI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill online mississippi", "abortion pill cost in mississippi", "abortion pill near me online", "abortion pill in mississippi"], "self_loops": [], "tags": {"i": "abortion pill online near mississippi", "q": "-ZDLxBAyTXyHtdcJbTgPosBXxyI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill on amazon", "datetime": "2026-03-12 19:31:48.248597", "source": "google", "data": ["morning after pill on amazon", [["morning after pill on amazon", 0, [512]], ["best amazon morning after pill", 0, [22, 10, 30]], ["morning after pill amazon uk", 0, [22, 30]], ["morning after pill amazon reddit", 0, [22, 30]], ["day after pill amazon", 0, [22, 30]], ["can you buy morning after pill on amazon", 0, [22, 30]], ["ella morning after pill amazon", 0, [22, 30]], ["starting the pill after morning after pill", 0, [512, 390, 650]], ["when did morning after pill become available", 0, [512, 390, 650]], ["can you take morning after pill once a month", 0, [512, 390, 650]]], {"i": "morning after pill on amazon", "q": "hWgibkTIw9FlC5S59QkRv6bV31k", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill on amazon", "best amazon morning after pill", "morning after pill amazon uk", "morning after pill amazon reddit", "day after pill amazon", "can you buy morning after pill on amazon", "ella morning after pill amazon", "starting the pill after morning after pill", "when did morning after pill become available", "can you take morning after pill once a month"], "self_loops": [0], "tags": {"i": "morning after pill on amazon", "q": "hWgibkTIw9FlC5S59QkRv6bV31k", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "best amazon morning after pill", "datetime": "2026-03-12 19:31:49.241023", "source": "google", "data": ["best amazon morning after pill", [["best amazon morning after pill", 0, [22, 30]], ["amazon plan b reviews", 0, [512, 390, 650]], ["new day plan b reviews", 0, [512, 390, 650]], ["new day emergency contraception reviews", 0, [512, 390, 650]], ["amazon morning after pill", 0, [512, 546]], ["best morning after pill cvs", 0, [751]]], {"i": "best amazon morning after pill", "q": "6zLMFYqcX7XRGFGDJhaH33hskow", "t": {"bpc": false, "tlw": false}}], "suggests": ["best amazon morning after pill", "amazon plan b reviews", "new day plan b reviews", "new day emergency contraception reviews", "amazon morning after pill", "best morning after pill cvs"], "self_loops": [0], "tags": {"i": "best amazon morning after pill", "q": "6zLMFYqcX7XRGFGDJhaH33hskow", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill on amazon", "datetime": "2026-03-12 19:31:50.168530", "source": "google", "data": ["abortion pill on amazon", [["abortion pill on amazon", 0, [512]], ["morning after pill on amazon", 0, [22, 30]], ["abortion pill amazon pharmacy", 0, [22, 30]], ["abortion pill amazon reddit", 0, [22, 30]], ["abortion pill cost amazon", 0, [22, 30]], ["best amazon morning after pill", 0, [22, 10, 30]], ["morning after pill amazon uk", 0, [22, 30]], ["morning after pill amazon reddit", 0, [22, 30]], ["abortion pill online amazon", 0, [22, 455, 30]], ["abortion pill name amazon", 0, [22, 455, 30]]], {"i": "abortion pill on amazon", "q": "m5zm2qgEzOe6CB3xozqlNEWkKSs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill on amazon", "morning after pill on amazon", "abortion pill amazon pharmacy", "abortion pill amazon reddit", "abortion pill cost amazon", "best amazon morning after pill", "morning after pill amazon uk", "morning after pill amazon reddit", "abortion pill online amazon", "abortion pill name amazon"], "self_loops": [0], "tags": {"i": "abortion pill on amazon", "q": "m5zm2qgEzOe6CB3xozqlNEWkKSs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online ga", "datetime": "2026-03-12 19:31:51.279052", "source": "google", "data": ["abortion pill online ga", [["abortion pill online ga", 0, [512]], ["abortion pill online georgia", 0, [22, 30]], ["abortion pill online atlanta ga", 0, [22, 30]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill in georgia", 0, [512, 390, 650]]], {"i": "abortion pill online ga", "q": "d3hbEip7KQWKhAU5Nwq3XEhXXqs", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill online ga", "abortion pill online georgia", "abortion pill online atlanta ga", "abortion pill near me online", "abortion pill in georgia"], "self_loops": [0], "tags": {"i": "abortion pill online ga", "q": "d3hbEip7KQWKhAU5Nwq3XEhXXqs", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online atlanta ga", "datetime": "2026-03-12 19:31:52.439374", "source": "google", "data": ["abortion pill online atlanta ga", [["abortion pill online atlanta ga", 0, [512]], ["abortion pill in atlanta ga", 0, [512, 390, 650]], ["abortion pill in georgia", 0, [512, 390, 650]], ["abortion pill online ga", 0, [512, 546]], ["abortion pill online georgia", 0, [512, 546]], ["abortion pill atlanta georgia", 0, [751]]], {"i": "abortion pill online atlanta ga", "q": "_t0XA1oSr31XV5y_4Q4kGTbWChM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill online atlanta ga", "abortion pill in atlanta ga", "abortion pill in georgia", "abortion pill online ga", "abortion pill online georgia", "abortion pill atlanta georgia"], "self_loops": [0], "tags": {"i": "abortion pill online atlanta ga", "q": "_t0XA1oSr31XV5y_4Q4kGTbWChM", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill in georgia", "datetime": "2026-03-12 19:31:53.273398", "source": "google", "data": ["abortion pill in georgia", [["abortion pill in georgia", 0, [512]], ["abortion clinics in georgia", 0, [22, 30]], ["abortion options in georgia", 0, [22, 30]], ["abortion clinics in georgia open now", 0, [22, 30]], ["morning after pill in georgia", 0, [22, 30]], ["abortion pill legal in georgia", 0, [22, 30]], ["abortion pill laws in georgia", 0, [22, 30]], ["abortion pill clinic in georgia", 0, [22, 30]], ["abortion pill georgia how many weeks", 0, [22, 30]], ["abortion pill georgia tbilisi", 0, [22, 30]]], {"i": "abortion pill in georgia", "q": "Vwz4wIKtslFeol2eoX208jz1fbY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill in georgia", "abortion clinics in georgia", "abortion options in georgia", "abortion clinics in georgia open now", "morning after pill in georgia", "abortion pill legal in georgia", "abortion pill laws in georgia", "abortion pill clinic in georgia", "abortion pill georgia how many weeks", "abortion pill georgia tbilisi"], "self_loops": [0], "tags": {"i": "abortion pill in georgia", "q": "Vwz4wIKtslFeol2eoX208jz1fbY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "online abortion pill rx reviews", "datetime": "2026-03-12 19:31:54.184947", "source": "google", "data": ["online abortion pill rx reviews", [], {"i": "online abortion pill rx reviews", "q": "BkcC8gJi1_SH-eHY4jYiKgZzwAw", "t": {"bpc": true, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "online abortion pill rx reviews", "q": "BkcC8gJi1_SH-eHY4jYiKgZzwAw", "t": {"bpc": true, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online telehealth", "datetime": "2026-03-12 19:31:55.469871", "source": "google", "data": ["abortion pill online telehealth", [["abortion pill online telehealth", 0, [22, 30]], ["telehealth for abortion pill", 0, [512, 390, 650]], ["abortion pill near me online", 0, [512, 390, 650]], ["what is telemedicine abortion", 0, [512, 390, 650]], ["abortion pill telemedicine", 0, [512, 546]], ["abortion pill online planned parenthood", 0, [512, 546]]], {"i": "abortion pill online telehealth", "q": "kPn-1C2xxWPPG5xaLIg9XXTl4mk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill online telehealth", "telehealth for abortion pill", "abortion pill near me online", "what is telemedicine abortion", "abortion pill telemedicine", "abortion pill online planned parenthood"], "self_loops": [0], "tags": {"i": "abortion pill online telehealth", "q": "kPn-1C2xxWPPG5xaLIg9XXTl4mk", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics in ohio", "datetime": "2026-03-12 19:31:56.595922", "source": "google", "data": ["abortion clinics in ohio", [["abortion clinics in ohio", 0, [512]], ["abortion clinics in ohio near me", 0, [512]], ["abortion centers in ohio", 0, [22, 30]], ["abortion doctors in ohio", 0, [22, 30]], ["free abortion clinics in ohio", 0, [22, 30]], ["abortion clinics in columbus ohio", 0, [22, 30]], ["abortion clinics in cincinnati ohio", 0, [22, 30]], ["abortion clinics in cleveland ohio", 0, [22, 30]], ["abortion clinics in dayton ohio", 0, [22, 30]], ["abortion clinics in toledo ohio", 0, [22, 30]]], {"i": "abortion clinics in ohio", "q": "uiSLDgxkG42WAqixfXVX310IGW4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinics in ohio", "abortion clinics in ohio near me", "abortion centers in ohio", "abortion doctors in ohio", "free abortion clinics in ohio", "abortion clinics in columbus ohio", "abortion clinics in cincinnati ohio", "abortion clinics in cleveland ohio", "abortion clinics in dayton ohio", "abortion clinics in toledo ohio"], "self_loops": [0], "tags": {"i": "abortion clinics in ohio", "q": "uiSLDgxkG42WAqixfXVX310IGW4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics in ohio near me", "datetime": "2026-03-12 19:31:57.931412", "source": "google", "data": ["abortion clinics in ohio near me", [["abortion clinics in ohio near me", 0, [512]], ["abortion clinics in cleveland ohio", 0, [512, 546]], ["abortion clinics in columbus ohio", 0, [512, 546]]], {"i": "abortion clinics in ohio near me", "q": "EY8LqwdkByX3sbmzuuasEmZfugc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinics in ohio near me", "abortion clinics in cleveland ohio", "abortion clinics in columbus ohio"], "self_loops": [0], "tags": {"i": "abortion clinics in ohio near me", "q": "EY8LqwdkByX3sbmzuuasEmZfugc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill ohio", "datetime": "2026-03-12 19:31:59.207060", "source": "google", "data": ["abortion pill ohio", [["abortion pill ohio", 0, [512]], ["abortion pill ohio near me", 0, [512]], ["abortion pill ohio cvs", 0, [512]], ["abortion pill ohio online", 0, [512]], ["abortion pill ohio free", 0, [22, 30]], ["abortion pill ohio name", 0, [22, 30]], ["abortion pill ohio reddit", 0, [22, 30]], ["abortion pill ohio side effects", 0, [22, 30]], ["abortion clinic ohio", 0, [22, 30]], ["morning after pill ohio", 0, [22, 30]]], {"i": "abortion pill ohio", "q": "15svKsKYkymHdLYlTapDpGZsJUU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill ohio", "abortion pill ohio near me", "abortion pill ohio cvs", "abortion pill ohio online", "abortion pill ohio free", "abortion pill ohio name", "abortion pill ohio reddit", "abortion pill ohio side effects", "abortion clinic ohio", "morning after pill ohio"], "self_loops": [0], "tags": {"i": "abortion pill ohio", "q": "15svKsKYkymHdLYlTapDpGZsJUU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill legal in ohio", "datetime": "2026-03-12 19:32:00.007527", "source": "google", "data": ["abortion pill legal in ohio", [["abortion pill legal in ohio", 0, [22, 30]], ["abortion pill laws in ohio", 0, [22, 30]], ["is abortion pill available in ohio", 0, [22, 30]], ["are abortion pills illegal in ohio", 0, [22, 30]], ["is medication abortion legal in ohio", 0, [22, 30]], ["is the morning after pill legal in ohio", 0, [22, 30]], ["abortion rights in ohio", 0, [512, 390, 650]], ["abortion laws in ohio", 0, [512, 390, 650]], ["is abortion legal in ohio", 0, [512, 390, 650]]], {"i": "abortion pill legal in ohio", "q": "ryu8JY0ZcOTPnKc2LX0KAid14sM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill legal in ohio", "abortion pill laws in ohio", "is abortion pill available in ohio", "are abortion pills illegal in ohio", "is medication abortion legal in ohio", "is the morning after pill legal in ohio", "abortion rights in ohio", "abortion laws in ohio", "is abortion legal in ohio"], "self_loops": [0], "tags": {"i": "abortion pill legal in ohio", "q": "ryu8JY0ZcOTPnKc2LX0KAid14sM", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill laws in ohio", "datetime": "2026-03-12 19:32:01.094569", "source": "google", "data": ["abortion pill laws in ohio", [["abortion pill laws in ohio", 0, [22, 30]], ["abortion pill legal in ohio", 0, [22, 30]], ["abortion laws in ohio", 0, [512, 390, 650]], ["abortion rights in ohio", 0, [512, 390, 650]], ["abortion laws in ohio 2020", 0, [751]], ["abortion laws in ohio 2021", 0, [751]]], {"i": "abortion pill laws in ohio", "q": "pCtESd37HAsjxytM1laKwPsh7iA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill laws in ohio", "abortion pill legal in ohio", "abortion laws in ohio", "abortion rights in ohio", "abortion laws in ohio 2020", "abortion laws in ohio 2021"], "self_loops": [0], "tags": {"i": "abortion pill laws in ohio", "q": "pCtESd37HAsjxytM1laKwPsh7iA", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online az", "datetime": "2026-03-12 19:32:02.413184", "source": "google", "data": ["abortion pill online az", [["abortion pill online az", 0, [512]], ["abortion pill in arizona", 0, [512, 390, 650]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill online amazon", 0, [512, 546]], ["abortion pill online prescription", 0, [512, 546]]], {"i": "abortion pill online az", "q": "BdjT9S_v3s-afTM7w3dHRbXuACk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online az", "abortion pill in arizona", "abortion pill near me online", "abortion pill online amazon", "abortion pill online prescription"], "self_loops": [0], "tags": {"i": "abortion pill online az", "q": "BdjT9S_v3s-afTM7w3dHRbXuACk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online access", "datetime": "2026-03-12 19:32:03.405080", "source": "google", "data": ["abortion pill online access", [["abortion pill online access", 0, [22, 30]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill online prescription", 0, [512, 546]], ["abortion pill online purchase", 0, [512, 546]]], {"i": "abortion pill online access", "q": "NoIwBVjywOFqWaWe-C_P6MhyM18", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill online access", "abortion pill near me online", "abortion pill online prescription", "abortion pill online purchase"], "self_loops": [0], "tags": {"i": "abortion pill online access", "q": "NoIwBVjywOFqWaWe-C_P6MhyM18", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online prices", "datetime": "2026-03-12 19:32:04.328495", "source": "google", "data": ["abortion pill online prices", [["abortion pill online prices", 0, [22, 30]], ["morning after pill online purchase", 0, [22, 30]], ["morning after pill online cheap", 0, [22, 30]], ["morning after pill price online", 0, [22, 30]], ["abortion pill online purchase", 0, [22, 455, 30]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill online cost", 0, [512, 546]], ["abortion pill online prescription", 0, [512, 546]]], {"i": "abortion pill online prices", "q": "s53ZlLss4GXqqgVsWNghLAacenc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill online prices", "morning after pill online purchase", "morning after pill online cheap", "morning after pill price online", "abortion pill online purchase", "abortion pill near me online", "abortion pill online cost", "abortion pill online prescription"], "self_loops": [0], "tags": {"i": "abortion pill online prices", "q": "s53ZlLss4GXqqgVsWNghLAacenc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill online cheap", "datetime": "2026-03-12 19:32:05.778856", "source": "google", "data": ["morning after pill online cheap", [["morning after pill online cheap", 0, [22, 30]], ["morning after pill online buy", 0, [22, 30]], ["morning after pill buy online uk", 0, [22, 30]], ["morning after pill buy online australia", 0, [22, 30]], ["which pharmacies do free morning after pill", 0, [512, 390, 650]], ["how much do morning after pill cost at clicks", 0, [512, 390, 650]], ["morning after pill cheap near me", 0, [512, 546]], ["cheap morning after pill walgreens", 0, [751]], ["morning after pill on amazon", 0, [512, 546]], ["cheap morning after pill cvs", 0, [751]]], {"i": "morning after pill online cheap", "q": "fUee6CrNVsVVtKcm0vyZtpFmhwk", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill online cheap", "morning after pill online buy", "morning after pill buy online uk", "morning after pill buy online australia", "which pharmacies do free morning after pill", "how much do morning after pill cost at clicks", "morning after pill cheap near me", "cheap morning after pill walgreens", "morning after pill on amazon", "cheap morning after pill cvs"], "self_loops": [0], "tags": {"i": "morning after pill online cheap", "q": "fUee6CrNVsVVtKcm0vyZtpFmhwk", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic san jose california", "datetime": "2026-03-12 19:32:06.964171", "source": "google", "data": ["abortion clinic san jose california", [["abortion clinic san jose california", 0, [22, 30]], ["abortion clinic in san jose ca", 0, [751]], ["abortion clinic san jose", 0, [512, 546]]], {"i": "abortion clinic san jose california", "q": "p1Dffrclq_EzGgiuERyOUBTEgk0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic san jose california", "abortion clinic in san jose ca", "abortion clinic san jose"], "self_loops": [0], "tags": {"i": "abortion clinic san jose california", "q": "p1Dffrclq_EzGgiuERyOUBTEgk0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic san jose", "datetime": "2026-03-12 19:32:08.173823", "source": "google", "data": ["women's clinic san jose", [["women's clinic san jose", 0, [512]], ["saint joseph's women's clinic", 0, [22, 10, 30]], ["women's health center san jose", 0, [22, 10, 30]], ["women's clinic st joseph mo", 0, [22, 30]], ["women's clinic st joseph pavilion", 0, [22, 10, 30]], ["women's health clinic san jose", 0, [22, 30]], ["women's health clinic st joseph's hospital hamilton", 0, [22, 30]], ["women's health clinic st joseph mo", 0, [22, 30]], ["women's health clinic st joseph", 0, [22, 30]], ["women's outpatient clinic st joseph", 0, [22, 30]]], {"i": "women's clinic san jose", "q": "rH5qdTPj7-vWTn3Fs2wLer3ls_E", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic san jose", "saint joseph's women's clinic", "women's health center san jose", "women's clinic st joseph mo", "women's clinic st joseph pavilion", "women's health clinic san jose", "women's health clinic st joseph's hospital hamilton", "women's health clinic st joseph mo", "women's health clinic st joseph", "women's outpatient clinic st joseph"], "self_loops": [0], "tags": {"i": "women's clinic san jose", "q": "rH5qdTPj7-vWTn3Fs2wLer3ls_E", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "saint joseph's women's clinic", "datetime": "2026-03-12 19:32:09.438432", "source": "google", "data": ["saint joseph's women's clinic", [["saint joseph's women's clinic", 0, [512]], ["st joseph women's clinic tacoma", 0, [22, 30]], ["st joseph women's clinic reading pa", 0, [22, 30]], ["st joseph women's clinic lexington ky", 0, [22, 30]], ["saint joseph women's hospital", 0, [22, 30]], ["saint joseph women's hospital tampa", 0, [22, 30]], ["saint joseph women's hospital lexington ky", 0, [22, 10, 30]], ["saint joseph's women's health center", 0, [22, 30]], ["st joseph's women's hospital tampa fl", 0, [22, 10, 30]], ["st joseph's women's hospital reviews", 0, [22, 30]]], {"i": "saint joseph's women's clinic", "q": "IDUA1skLhEP3wiCN71zyu6Fq6Zc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["saint joseph's women's clinic", "st joseph women's clinic tacoma", "st joseph women's clinic reading pa", "st joseph women's clinic lexington ky", "saint joseph women's hospital", "saint joseph women's hospital tampa", "saint joseph women's hospital lexington ky", "saint joseph's women's health center", "st joseph's women's hospital tampa fl", "st joseph's women's hospital reviews"], "self_loops": [0], "tags": {"i": "saint joseph's women's clinic", "q": "IDUA1skLhEP3wiCN71zyu6Fq6Zc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic st joseph mo", "datetime": "2026-03-12 19:32:10.579060", "source": "google", "data": ["women's clinic st joseph mo", [["women's clinic st joseph mo", 0, [22, 30]], ["women's health clinic st joseph mo", 0, [22, 30]], ["willowbrook women's center st joseph mo", 0, [22, 30]], ["women's clinic st joseph", 0, [512, 546]], ["women's health st joseph missouri", 0, [512, 546]]], {"i": "women's clinic st joseph mo", "q": "pb-yaWm_1MurUXAJ0eTaFK9A1Y0", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic st joseph mo", "women's health clinic st joseph mo", "willowbrook women's center st joseph mo", "women's clinic st joseph", "women's health st joseph missouri"], "self_loops": [0], "tags": {"i": "women's clinic st joseph mo", "q": "pb-yaWm_1MurUXAJ0eTaFK9A1Y0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic st joseph pavilion", "datetime": "2026-03-12 19:32:11.973860", "source": "google", "data": ["women's clinic st joseph pavilion", [["women's clinic st joseph pavilion", 0, [22, 30]], ["women's clinic st joseph", 0, [512, 546]], ["women's clinic st joseph mo", 0, [546, 649]], ["st joseph's women's pavilion", 0, [546, 649]], ["women's health clinic st joseph mo", 0, [512, 546]], ["women's pavilion joplin missouri", 0, [512, 546]]], {"i": "women's clinic st joseph pavilion", "q": "-pRUlCMd9nsuwkgcxQ7DoFDhEsw", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic st joseph pavilion", "women's clinic st joseph", "women's clinic st joseph mo", "st joseph's women's pavilion", "women's health clinic st joseph mo", "women's pavilion joplin missouri"], "self_loops": [0], "tags": {"i": "women's clinic st joseph pavilion", "q": "-pRUlCMd9nsuwkgcxQ7DoFDhEsw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic san jose", "datetime": "2026-03-12 19:32:13.148325", "source": "google", "data": ["women's health clinic san jose", [["women's health clinic san jose", 0, [22, 30]], ["women's health clinic st joseph's hospital hamilton", 0, [22, 30]], ["women's health clinic st joseph mo", 0, [22, 30]], ["women's health clinic st joseph", 0, [22, 30]], ["women's health care st joseph", 0, [22, 30]], ["women's health centre st joseph's hospital", 0, [22, 30]], ["women's health clinic st joseph's saint john", 0, [22, 30]], ["women's health concerns clinic st joseph", 0, [22, 30]], ["women's health clinic san jose ca", 0, [751]], ["women's health clinic san jacinto", 0, [751]]], {"i": "women's health clinic san jose", "q": "3D-nE44hvsAt2utkWoEXHPNjWSw", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health clinic san jose", "women's health clinic st joseph's hospital hamilton", "women's health clinic st joseph mo", "women's health clinic st joseph", "women's health care st joseph", "women's health centre st joseph's hospital", "women's health clinic st joseph's saint john", "women's health concerns clinic st joseph", "women's health clinic san jose ca", "women's health clinic san jacinto"], "self_loops": [0], "tags": {"i": "women's health clinic san jose", "q": "3D-nE44hvsAt2utkWoEXHPNjWSw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near st joseph mi", "datetime": "2026-03-12 19:32:14.233321", "source": "google", "data": ["abortion clinic near st joseph mi", [["abortion clinic near st joseph mi", 0, [22, 30]], ["first abortion clinic in usa", 0, [512, 390, 650]], ["abortion clinic near me surgical", 0, [512, 390, 650]], ["where was the first abortion clinic", 0, [512, 390, 650]], ["abortion clinic near st. louis mo", 0, [751]], ["abortion clinic near st. augustine fl", 0, [546, 649]], ["abortion clinic near st paul mn", 0, [751]], ["abortion clinic near st. petersburg fl", 0, [751]], ["abortion clinic near st louis", 0, [546, 649]]], {"i": "abortion clinic near st joseph mi", "q": "eIidKN-RM59UNYgPDzby1fZpj5U", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near st joseph mi", "first abortion clinic in usa", "abortion clinic near me surgical", "where was the first abortion clinic", "abortion clinic near st. louis mo", "abortion clinic near st. augustine fl", "abortion clinic near st paul mn", "abortion clinic near st. petersburg fl", "abortion clinic near st louis"], "self_loops": [0], "tags": {"i": "abortion clinic near st joseph mi", "q": "eIidKN-RM59UNYgPDzby1fZpj5U", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "surgical abortion clinics near me", "datetime": "2026-03-12 19:32:15.327378", "source": "google", "data": ["surgical abortion clinics near me", [["surgical abortion clinics near me", 0, [512]], ["surgical abortion clinics near me open now", 0, [22, 30]], ["surgical abortion doctors near me", 0, [22, 30]], ["surgical abortion centers near me", 0, [22, 30]], ["private surgical abortion clinic near me", 0, [22, 30]], ["top rated surgical abortion clinics near me", 0, [22, 30]], ["surgical abortion clinics melbourne", 0, [22, 30]], ["surgical abortion centres near me", 0, [512, 390, 650]]], {"i": "surgical abortion clinics near me", "q": "pnGS2zRZPEn7JTw1iOXiqO1zDRk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["surgical abortion clinics near me", "surgical abortion clinics near me open now", "surgical abortion doctors near me", "surgical abortion centers near me", "private surgical abortion clinic near me", "top rated surgical abortion clinics near me", "surgical abortion clinics melbourne", "surgical abortion centres near me"], "self_loops": [0], "tags": {"i": "surgical abortion clinics near me", "q": "pnGS2zRZPEn7JTw1iOXiqO1zDRk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic santa rosa ca", "datetime": "2026-03-12 19:32:16.752190", "source": "google", "data": ["abortion clinic santa rosa ca", [["abortion clinic santa rosa ca", 0, [22, 30]], ["women's recovery services santa rosa ca", 0, [22, 30]], ["women's recovery center santa rosa ca", 0, [22, 30]], ["free abortion clinic near me", 0, [512, 390, 650]], ["free abortion clinics in california", 0, [512, 390, 650]], ["abortion clinic open sunday near me", 0, [512, 390, 650]], ["abortion clinic santa rosa", 0, [512, 546]], ["abortion clinic roseville ca", 0, [546, 649]]], {"i": "abortion clinic santa rosa ca", "q": "lXoAXV31aU2FSU97tKrWQSMtSrA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic santa rosa ca", "women's recovery services santa rosa ca", "women's recovery center santa rosa ca", "free abortion clinic near me", "free abortion clinics in california", "abortion clinic open sunday near me", "abortion clinic santa rosa", "abortion clinic roseville ca"], "self_loops": [0], "tags": {"i": "abortion clinic santa rosa ca", "q": "lXoAXV31aU2FSU97tKrWQSMtSrA", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic santa rosa", "datetime": "2026-03-12 19:32:17.853526", "source": "google", "data": ["women's clinic santa rosa", [["women's clinic santa rosa", 0, [22, 30]], ["women's health center santa rosa", 0, [22, 30]], ["women's health clinic santa rosa", 0, [22, 30]], ["sutter women's health center santa rosa", 0, [22, 10, 30]], ["women's clinic santa cruz", 0, [512, 546]], ["women's clinic santa maria", 0, [512, 546]], ["women's clinic santa fe", 0, [512, 546]], ["women's clinic santa barbara", 0, [751]]], {"i": "women's clinic santa rosa", "q": "AWcOOWaT0xR-O0SLvfcgitoHm2E", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic santa rosa", "women's health center santa rosa", "women's health clinic santa rosa", "sutter women's health center santa rosa", "women's clinic santa cruz", "women's clinic santa maria", "women's clinic santa fe", "women's clinic santa barbara"], "self_loops": [0], "tags": {"i": "women's clinic santa rosa", "q": "AWcOOWaT0xR-O0SLvfcgitoHm2E", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic santa rosa", "datetime": "2026-03-12 19:32:18.722403", "source": "google", "data": ["women's health clinic santa rosa", [["women's health clinic santa rosa", 0, [22, 30]], ["women's health santa rosa ca", 0, [751]], ["women's health center santa rosa", 0, [751]], ["women's health clinic santa cruz", 0, [512, 546]], ["women's health clinic santa fe nm", 0, [512, 546]]], {"i": "women's health clinic santa rosa", "q": "KtrizZxmfF581UoGB2lsTrlcnHw", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health clinic santa rosa", "women's health santa rosa ca", "women's health center santa rosa", "women's health clinic santa cruz", "women's health clinic santa fe nm"], "self_loops": [0], "tags": {"i": "women's health clinic santa rosa", "q": "KtrizZxmfF581UoGB2lsTrlcnHw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinic near me", "datetime": "2026-03-12 19:32:20.132445", "source": "google", "data": ["free abortion clinic near me", [["free abortion clinic near me", 0, [512]], ["free abortion clinic near me open now", 0, [512]], ["free abortion clinic near me volunteer", 0, [22, 30]], ["free abortion clinic near me within 5 mi", 0, [22, 30]], ["free abortion clinic near me within 20 mi", 0, [22, 30]], ["free abortion clinic near me within 8.1 km", 0, [22, 30]], ["free women's clinic near me", 0, [22, 30]], ["free abortion center near me", 0, [22, 30]], ["free women's clinic near me no insurance", 0, [22, 30]], ["free abortion hospital near me", 0, [22, 30]]], {"i": "free abortion clinic near me", "q": "Nt8VMFAaiDwa35iQCv9MJpkPjX0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free abortion clinic near me", "free abortion clinic near me open now", "free abortion clinic near me volunteer", "free abortion clinic near me within 5 mi", "free abortion clinic near me within 20 mi", "free abortion clinic near me within 8.1 km", "free women's clinic near me", "free abortion center near me", "free women's clinic near me no insurance", "free abortion hospital near me"], "self_loops": [0], "tags": {"i": "free abortion clinic near me", "q": "Nt8VMFAaiDwa35iQCv9MJpkPjX0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "planned parenthood near me abortion clinic", "datetime": "2026-03-12 19:32:21.476314", "source": "google", "data": ["planned parenthood near me abortion clinic", [["planned parenthood near me abortion clinic", 0, [512]], ["planned parenthood near me abortion services", 0, [22, 30]], ["does planned parenthood do abortions for free", 0, [512, 390, 650]], ["planned parenthood near me open now", 0, [512, 546]], ["planned parenthood near me walk in", 0, [512, 546]]], {"i": "planned parenthood near me abortion clinic", "q": "W31VrLkh6d538UR1_8j87vuJVUE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["planned parenthood near me abortion clinic", "planned parenthood near me abortion services", "does planned parenthood do abortions for free", "planned parenthood near me open now", "planned parenthood near me walk in"], "self_loops": [0], "tags": {"i": "planned parenthood near me abortion clinic", "q": "W31VrLkh6d538UR1_8j87vuJVUE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion santa rosa", "datetime": "2026-03-12 19:32:22.438135", "source": "google", "data": ["abortion santa rosa", [["abortion santa rosa", 0, [22, 30]], ["abortion santa rosa ca", 0, [22, 30]], ["abortion clinic santa rosa", 0, [22, 30]], ["abortion clinic santa rosa ca", 0, [22, 30]], ["abortion planned parenthood near me", 0, [512, 390, 650]], ["does planned parenthood support abortion", 0, [512, 390, 650]], ["santa rosa abortion rights protest", 0, [751]], ["abortion santa barbara", 0, [546, 649]], ["abortion santa fe", 0, [751]]], {"i": "abortion santa rosa", "q": "T4UseQ6LlvAy66JgYe5UimgffsE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion santa rosa", "abortion santa rosa ca", "abortion clinic santa rosa", "abortion clinic santa rosa ca", "abortion planned parenthood near me", "does planned parenthood support abortion", "santa rosa abortion rights protest", "abortion santa barbara", "abortion santa fe"], "self_loops": [0], "tags": {"i": "abortion santa rosa", "q": "T4UseQ6LlvAy66JgYe5UimgffsE", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic brentwood", "datetime": "2026-03-12 19:32:23.795349", "source": "google", "data": ["women's clinic brentwood", [["women's clinic brentwood", 0, [512]], ["london women's clinic brentwood", 0, [22, 30]], ["london women's clinic brentwood reviews", 0, [22, 30]], ["vanderbilt women's clinic brentwood", 0, [22, 10, 30]], ["women's health clinic brentwood", 0, [22, 30]], ["women's fertility clinic brentwood", 0, [22, 10, 30]], ["london women's clinic brentwood photos", 0, [22, 30]], ["vanderbilt women's health clinic brentwood", 0, [22, 10, 30]], ["women's health brentwood", 0, [512, 546]], ["women's health center brentwood", 0, [751]]], {"i": "women's clinic brentwood", "q": "P4hj7GK2VPXNQuCa4r8-0gm3uOc", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic brentwood", "london women's clinic brentwood", "london women's clinic brentwood reviews", "vanderbilt women's clinic brentwood", "women's health clinic brentwood", "women's fertility clinic brentwood", "london women's clinic brentwood photos", "vanderbilt women's health clinic brentwood", "women's health brentwood", "women's health center brentwood"], "self_loops": [0], "tags": {"i": "women's clinic brentwood", "q": "P4hj7GK2VPXNQuCa4r8-0gm3uOc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic brevard county", "datetime": "2026-03-12 19:32:24.716246", "source": "google", "data": ["abortion clinic brevard county", [["abortion clinic brevard county", 0, [22, 30]], ["abortion brevard county fl", 0, [751]], ["abortion clinic melbourne fl", 0, [512, 546]], ["abortion clinic titusville", 0, [751]]], {"i": "abortion clinic brevard county", "q": "gr1ZKK4c-HJqJu_6MtbiKD3cLMI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic brevard county", "abortion brevard county fl", "abortion clinic melbourne fl", "abortion clinic titusville"], "self_loops": [0], "tags": {"i": "abortion clinic brevard county", "q": "gr1ZKK4c-HJqJu_6MtbiKD3cLMI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic beverly hills", "datetime": "2026-03-12 19:32:25.746752", "source": "google", "data": ["abortion clinic beverly hills", [["abortion clinic beverly hills", 0, [512]], ["women's clinic beverly hills", 0, [22, 30]], ["dupont abortion clinic beverly hills", 0, [22, 30]], ["women's health clinic beverly hills", 0, [22, 30]], ["closest abortion clinics", 0, [512, 390, 650]], ["abortion clinic beverly", 0, [751]], ["abortion clinic beverly ma", 0, [512, 546]], ["beverly hills abortion", 0, [546, 649]]], {"i": "abortion clinic beverly hills", "q": "tDDbPjzmzgQHRq2SoM8ZshoaHSo", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic beverly hills", "women's clinic beverly hills", "dupont abortion clinic beverly hills", "women's health clinic beverly hills", "closest abortion clinics", "abortion clinic beverly", "abortion clinic beverly ma", "beverly hills abortion"], "self_loops": [0], "tags": {"i": "abortion clinic beverly hills", "q": "tDDbPjzmzgQHRq2SoM8ZshoaHSo", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic bristol tn", "datetime": "2026-03-12 19:32:26.910587", "source": "google", "data": ["abortion clinic bristol tn", [["abortion clinic bristol tn", 0, [512]], ["women's clinic for abortions near me", 0, [512, 390, 650]], ["abortion bristol tn", 0, [751]], ["abortion clinic bristol virginia", 0, [546, 649]], ["abortion clinic bristol va", 0, [512, 546]]], {"i": "abortion clinic bristol tn", "q": "9omCxghZodMaSpAItsZKIvo7R0Q", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic bristol tn", "women's clinic for abortions near me", "abortion bristol tn", "abortion clinic bristol virginia", "abortion clinic bristol va"], "self_loops": [0], "tags": {"i": "abortion clinic bristol tn", "q": "9omCxghZodMaSpAItsZKIvo7R0Q", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic bradenton", "datetime": "2026-03-12 19:32:28.158786", "source": "google", "data": ["abortion clinic bradenton", [["abortion clinic bradenton", 0, [512]], ["abortion clinic bradenton fl", 0, [22, 30]], ["women's clinic bradenton fl", 0, [22, 30]], ["women's clinic bradenton", 0, [22, 30]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic brandon fl", 0, [512, 546]], ["abortion clinic brevard county", 0, [751]]], {"i": "abortion clinic bradenton", "q": "SaIA8IIMP2OL9v5k3f7tsbgbSMA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic bradenton", "abortion clinic bradenton fl", "women's clinic bradenton fl", "women's clinic bradenton", "abortion clinic near me for free", "abortion clinic brandon fl", "abortion clinic brevard county"], "self_loops": [0], "tags": {"i": "abortion clinic bradenton", "q": "SaIA8IIMP2OL9v5k3f7tsbgbSMA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic boise", "datetime": "2026-03-12 19:32:29.647947", "source": "google", "data": ["abortion clinic boise", [["abortion clinic boise", 0, [22, 30]], ["abortion clinics boise idaho", 0, [22, 30]], ["women's clinic boise", 0, [22, 30]], ["women's clinic boise st luke's", 0, [22, 30]], ["women's clinic boise id", 0, [22, 10, 30]], ["boise va women's clinic", 0, [22, 10, 30]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic idaho", 0, [512, 546]]], {"i": "abortion clinic boise", "q": "DahLkJBuGIYUCO-IcVkD1tb2qxg", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic boise", "abortion clinics boise idaho", "women's clinic boise", "women's clinic boise st luke's", "women's clinic boise id", "boise va women's clinic", "abortion clinic near me for free", "abortion clinic near me now", "abortion clinic idaho"], "self_loops": [0], "tags": {"i": "abortion clinic boise", "q": "DahLkJBuGIYUCO-IcVkD1tb2qxg", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic oakland park", "datetime": "2026-03-12 19:32:30.798720", "source": "google", "data": ["abortion clinic oakland park", [["abortion clinic oakland park", 0, [22, 30]], ["abortion clinic oakland county", 0, [751]], ["abortion clinics oakland ca", 0, [751]]], {"i": "abortion clinic oakland park", "q": "yG27GKeh5UGBHuc_agVVnOgwzkU", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic oakland park", "abortion clinic oakland county", "abortion clinics oakland ca"], "self_loops": [0], "tags": {"i": "abortion clinic oakland park", "q": "yG27GKeh5UGBHuc_agVVnOgwzkU", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic oakland ca", "datetime": "2026-03-12 19:32:31.608999", "source": "google", "data": ["abortion clinic oakland ca", [["abortion clinic oakland ca", 0, [22, 30]], ["abortion clinic oakland county", 0, [751]], ["abortion clinic oakland park", 0, [546, 649]]], {"i": "abortion clinic oakland ca", "q": "VjwH_W5ll26ELRkURjfIRFcbXQo", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic oakland ca", "abortion clinic oakland county", "abortion clinic oakland park"], "self_loops": [0], "tags": {"i": "abortion clinic oakland ca", "q": "VjwH_W5ll26ELRkURjfIRFcbXQo", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic oakland", "datetime": "2026-03-12 19:32:32.501736", "source": "google", "data": ["women's clinic oakland", [["women's clinic oakland", 0, [512]], ["women's health center oakland", 0, [22, 30]], ["women's health clinic oakland", 0, [22, 30]], ["magee womens clinic oakland", 0, [22, 30]], ["women's clinic oakdale ca", 0, [751]], ["women's clinic oak lawn", 0, [751]]], {"i": "women's clinic oakland", "q": "ZsE94HUo0E8Dtsqyt8fk95Ts770", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic oakland", "women's health center oakland", "women's health clinic oakland", "magee womens clinic oakland", "women's clinic oakdale ca", "women's clinic oak lawn"], "self_loops": [0], "tags": {"i": "women's clinic oakland", "q": "ZsE94HUo0E8Dtsqyt8fk95Ts770", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic oakland county", "datetime": "2026-03-12 19:32:33.979472", "source": "google", "data": ["abortion clinic oakland county", [["abortion clinic oakland county ca", 33, [160], {"a": "abortion clinic oakland ", "b": "county ca"}], ["abortion clinic oakland county california", 33, [160], {"a": "abortion clinic oakland ", "b": "county california"}], ["abortion clinic oakland county jail", 33, [160], {"a": "abortion clinic oakland ", "b": "county jail"}], ["abortion clinic oakland county michigan", 33, [160], {"a": "abortion clinic oakland ", "b": "county michigan"}], ["abortion clinic oakland county health", 33, [160], {"a": "abortion clinic oakland ", "b": "county health"}], ["abortion clinic oakland county", 33, [299], {"a": "abortion clinic oakland ", "b": "county"}], ["abortion clinic oakland county mi", 33, [299], {"a": "abortion clinic oakland ", "b": "county mi"}], ["abortion clinic oakland county obstetrics and gynecology", 33, [671], {"a": "abortion clinic oakland ", "b": "county obstetrics and gynecology"}], ["abortion clinic oakland county obgyn", 33, [671], {"a": "abortion clinic oakland ", "b": "county obgyn"}]], {"i": "abortion clinic oakland county", "q": "kJA_R0Vx8O42OzqEmt7-c1TeFZY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic oakland county ca", "abortion clinic oakland county california", "abortion clinic oakland county jail", "abortion clinic oakland county michigan", "abortion clinic oakland county health", "abortion clinic oakland county", "abortion clinic oakland county mi", "abortion clinic oakland county obstetrics and gynecology", "abortion clinic oakland county obgyn"], "self_loops": [5], "tags": {"i": "abortion clinic oakland county", "q": "kJA_R0Vx8O42OzqEmt7-c1TeFZY", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic illinois cost", "datetime": "2026-03-12 19:32:35.223957", "source": "google", "data": ["abortion clinic illinois cost", [["abortion clinic illinois cost", 0, [512]], ["hope clinic illinois abortion cost", 0, [22, 30]], ["are abortions free in illinois", 0, [512, 390, 650]], ["abortion clinic chicago cost", 0, [512, 546]], ["abortion clinic in chicago illinois", 0, [512, 546]], ["low cost abortion clinics in illinois", 0, [751]]], {"i": "abortion clinic illinois cost", "q": "HVB2ExgIccuQxsRy0joq1DfraYY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic illinois cost", "hope clinic illinois abortion cost", "are abortions free in illinois", "abortion clinic chicago cost", "abortion clinic in chicago illinois", "low cost abortion clinics in illinois"], "self_loops": [0], "tags": {"i": "abortion clinic illinois cost", "q": "HVB2ExgIccuQxsRy0joq1DfraYY", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic illinois carbondale", "datetime": "2026-03-12 19:32:36.074255", "source": "google", "data": ["abortion clinic illinois carbondale", [["abortion clinic illinois carbondale", 0, [512]], ["abortion clinic carbondale il", 0, [22, 30]], ["women's clinic carbondale il", 0, [22, 30]], ["choices abortion clinic carbondale il", 0, [22, 30]], ["illinois abortion clinic near me", 0, [512, 390, 650]], ["abortion clinic in carbondale", 0, [751]]], {"i": "abortion clinic illinois carbondale", "q": "OeRFgYeRX7HGwlSX969V96M5yLk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic illinois carbondale", "abortion clinic carbondale il", "women's clinic carbondale il", "choices abortion clinic carbondale il", "illinois abortion clinic near me", "abortion clinic in carbondale"], "self_loops": [0], "tags": {"i": "abortion clinic illinois carbondale", "q": "OeRFgYeRX7HGwlSX969V96M5yLk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic illinois near me", "datetime": "2026-03-12 19:32:36.874207", "source": "google", "data": ["abortion clinic illinois near me", [["abortion clinic illinois near me", 0, [512]], ["abortion clinic near me il", 0, [22, 30]], ["abortion clinic near metropolis il", 0, [22, 30]], ["abortion clinic.near me. chicago illinois", 0, [22, 10, 30]], ["closest abortion clinic near me in illinois", 0, [22, 30]], ["are abortions free in illinois", 0, [512, 390, 650]]], {"i": "abortion clinic illinois near me", "q": "Lupt-Q3Io98zvuB1AehLtoumWYQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic illinois near me", "abortion clinic near me il", "abortion clinic near metropolis il", "abortion clinic.near me. chicago illinois", "closest abortion clinic near me in illinois", "are abortions free in illinois"], "self_loops": [0], "tags": {"i": "abortion clinic illinois near me", "q": "Lupt-Q3Io98zvuB1AehLtoumWYQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic illinois closest to me", "datetime": "2026-03-12 19:32:38.040598", "source": "google", "data": ["abortion clinic illinois closest to me", [["abortion clinic illinois closest to me", 0, [22, 30]], ["abortion clinic illinois near me", 0, [22, 30]], ["abortion clinic near me and prices", 0, [512, 390, 650]], ["abortion clinic near chicago il", 0, [751]], ["illinois abortion clinic locations", 0, [546, 649]]], {"i": "abortion clinic illinois closest to me", "q": "muL0MPYRIIisnN6COoarwSPqtOo", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic illinois closest to me", "abortion clinic illinois near me", "abortion clinic near me and prices", "abortion clinic near chicago il", "illinois abortion clinic locations"], "self_loops": [0], "tags": {"i": "abortion clinic illinois closest to me", "q": "muL0MPYRIIisnN6COoarwSPqtOo", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic illinois chicago", "datetime": "2026-03-12 19:32:39.215158", "source": "google", "data": ["abortion clinic illinois chicago", [], {"i": "abortion clinic illinois chicago", "q": "mLY5BoPmqRWGzLPgdPGXJKWLubg", "t": {"bpc": true, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "abortion clinic illinois chicago", "q": "mLY5BoPmqRWGzLPgdPGXJKWLubg", "t": {"bpc": true, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic illinois open now", "datetime": "2026-03-12 19:32:40.509940", "source": "google", "data": ["abortion clinic illinois open now", [["abortion clinic illinois open now", 0, [22, 30]], ["abortion clinic open near me", 0, [512, 390, 650]], ["illinois abortion clinic near me", 0, [512, 390, 650]], ["how late can you get an abortion in illinois", 0, [512, 390, 650]], ["illinois abortion clinic closest to me", 0, [751]], ["abortion clinic il", 0, [512, 546]]], {"i": "abortion clinic illinois open now", "q": "VexjVRoKQ5020uEP526plINE150", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic illinois open now", "abortion clinic open near me", "illinois abortion clinic near me", "how late can you get an abortion in illinois", "illinois abortion clinic closest to me", "abortion clinic il"], "self_loops": [0], "tags": {"i": "abortion clinic illinois open now", "q": "VexjVRoKQ5020uEP526plINE150", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic illinois free", "datetime": "2026-03-12 19:32:41.770345", "source": "google", "data": ["abortion clinic illinois free", [["abortion clinic illinois free", 0, [22, 30]], ["abortion clinic freeport il", 0, [22, 30]], ["women's clinic freeport il", 0, [22, 30]], ["are abortions free in illinois", 0, [512, 390, 650]], ["free abortion clinic in chicago", 0, [546, 649]]], {"i": "abortion clinic illinois free", "q": "IAPgDBeWOCy6KIlzyYvH0fqS2nc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic illinois free", "abortion clinic freeport il", "women's clinic freeport il", "are abortions free in illinois", "free abortion clinic in chicago"], "self_loops": [0], "tags": {"i": "abortion clinic illinois free", "q": "IAPgDBeWOCy6KIlzyYvH0fqS2nc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic illinois", "datetime": "2026-03-12 19:32:42.948301", "source": "google", "data": ["women's clinic illinois", [["women's clinic illinois", 0, [512]], ["women's health center illinois", 0, [22, 30]], ["women's medical center illinois", 0, [22, 10, 30]], ["alamo women's clinic of illinois", 0, [22, 10, 30]], ["women's health clinic illinois", 0, [22, 30]], ["women's abortion clinic illinois", 0, [22, 30]], ["hope women's clinic illinois", 0, [22, 30]], ["women's clinic danville illinois", 0, [22, 30]], ["women's clinic in chicago illinois", 0, [22, 30]], ["women's clinic in chicago", 0, [751]]], {"i": "women's clinic illinois", "q": "Z1Mvv_R5Wd0WaEZP1oNIw7fHCcs", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic illinois", "women's health center illinois", "women's medical center illinois", "alamo women's clinic of illinois", "women's health clinic illinois", "women's abortion clinic illinois", "hope women's clinic illinois", "women's clinic danville illinois", "women's clinic in chicago illinois", "women's clinic in chicago"], "self_loops": [0], "tags": {"i": "women's clinic illinois", "q": "Z1Mvv_R5Wd0WaEZP1oNIw7fHCcs", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion services illinois", "datetime": "2026-03-12 19:32:44.049172", "source": "google", "data": ["abortion services illinois", [["abortion services illinois", 0, [512]], ["abortion clinic illinois", 0, [22, 30]], ["abortion clinic illinois near me", 0, [22, 30]], ["abortion center illinois", 0, [22, 30]], ["abortion care illinois", 0, [22, 30]], ["abortion clinic illinois carbondale", 0, [22, 30]], ["abortion clinic illinois cost", 0, [22, 30]], ["abortion providers illinois", 0, [22, 30]], ["abortion clinic illinois closest to me", 0, [22, 30]], ["abortion clinic illinois chicago", 0, [22, 30]]], {"i": "abortion services illinois", "q": "XqdRu4Xh4TqUauqLwk5oYwbR4E8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion services illinois", "abortion clinic illinois", "abortion clinic illinois near me", "abortion center illinois", "abortion care illinois", "abortion clinic illinois carbondale", "abortion clinic illinois cost", "abortion providers illinois", "abortion clinic illinois closest to me", "abortion clinic illinois chicago"], "self_loops": [0], "tags": {"i": "abortion services illinois", "q": "XqdRu4Xh4TqUauqLwk5oYwbR4E8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic north carolina charlotte", "datetime": "2026-03-12 19:32:44.895192", "source": "google", "data": ["abortion clinic north carolina charlotte", [["abortion clinic north carolina charlotte", 0, [512]], ["north carolina abortion clinic charlotte nc", 0, [22, 30]], ["are abortions legal in north carolina", 0, [512, 390, 650]], ["abortion cost charlotte nc", 0, [512, 390, 650]], ["abortions in charlotte", 0, [512, 390, 650]], ["abortion clinic charlotte nc cost", 0, [751]], ["abortion clinic north carolina", 0, [512, 546]], ["abortion clinic charlotte nc price", 0, [751]]], {"i": "abortion clinic north carolina charlotte", "q": "DRQ5LP_56aU0TU1UKco5-_kAvgg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic north carolina charlotte", "north carolina abortion clinic charlotte nc", "are abortions legal in north carolina", "abortion cost charlotte nc", "abortions in charlotte", "abortion clinic charlotte nc cost", "abortion clinic north carolina", "abortion clinic charlotte nc price"], "self_loops": [0], "tags": {"i": "abortion clinic north carolina charlotte", "q": "DRQ5LP_56aU0TU1UKco5-_kAvgg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic north carolina near me", "datetime": "2026-03-12 19:32:45.753095", "source": "google", "data": ["abortion clinic north carolina near me", [["abortion clinic north carolina near me", 0, [512]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic for free near me", 0, [512, 390, 650]], ["abortion clinic raleigh north carolina", 0, [546, 649]]], {"i": "abortion clinic north carolina near me", "q": "UnmwjMT0yp8pI2yTW3-8oUG5Gsw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic north carolina near me", "abortion clinic near me now", "abortion clinic for free near me", "abortion clinic raleigh north carolina"], "self_loops": [0], "tags": {"i": "abortion clinic north carolina near me", "q": "UnmwjMT0yp8pI2yTW3-8oUG5Gsw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic north carolina prices", "datetime": "2026-03-12 19:32:46.815484", "source": "google", "data": ["abortion clinic north carolina prices", [["abortion clinic north carolina prices", 0, [512]], ["abortion clinic charlotte nc price", 0, [751]], ["abortion clinic north carolina", 0, [512, 546]], ["abortion clinic charlotte nc cost", 0, [751]], ["abortion clinic raleigh nc cost", 0, [751]]], {"i": "abortion clinic north carolina prices", "q": "va0m-8tjBS8Yu5rFaW0cxZSWDxc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic north carolina prices", "abortion clinic charlotte nc price", "abortion clinic north carolina", "abortion clinic charlotte nc cost", "abortion clinic raleigh nc cost"], "self_loops": [0], "tags": {"i": "abortion clinic north carolina prices", "q": "va0m-8tjBS8Yu5rFaW0cxZSWDxc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic north carolina open now", "datetime": "2026-03-12 19:32:47.955890", "source": "google", "data": ["abortion clinic north carolina open now", [["abortion clinic north carolina open now", 0, [22, 30]], ["abortion clinic raleigh nc open now", 0, [22, 30]], ["abortion clinic open near me", 0, [512, 390, 650]], ["how late can you get an abortion in nc", 0, [512, 390, 650]], ["abortion clinic near me now", 0, [512, 390, 650]], ["how many weeks can you get an abortion in nc", 0, [512, 390, 650]], ["abortion clinic north carolina", 0, [512, 546]], ["abortion clinic charlotte north carolina", 0, [512, 546]]], {"i": "abortion clinic north carolina open now", "q": "nODQ5FTcCOHoDgZQ09mXAtfSuv8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic north carolina open now", "abortion clinic raleigh nc open now", "abortion clinic open near me", "how late can you get an abortion in nc", "abortion clinic near me now", "how many weeks can you get an abortion in nc", "abortion clinic north carolina", "abortion clinic charlotte north carolina"], "self_loops": [0], "tags": {"i": "abortion clinic north carolina open now", "q": "nODQ5FTcCOHoDgZQ09mXAtfSuv8", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion center north carolina", "datetime": "2026-03-12 19:32:48.990864", "source": "google", "data": ["abortion center north carolina", [["abortion center north carolina", 0, [512]], ["abortion clinic north carolina", 0, [22, 30]], ["abortion clinic north carolina near me", 0, [22, 30]], ["abortion services north carolina", 0, [22, 30]], ["abortion clinic north carolina charlotte", 0, [22, 30]], ["abortion clinic north carolina open now", 0, [22, 30]], ["abortion clinic north carolina prices", 0, [22, 30]], ["free abortion clinic north carolina", 0, [22, 30]], ["abortion clinic greensboro north carolina", 0, [22, 30]], ["abortion clinic raleigh north carolina", 0, [22, 30]]], {"i": "abortion center north carolina", "q": "C6KCtANNvfSg6ozH5oeb0l8sBB8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion center north carolina", "abortion clinic north carolina", "abortion clinic north carolina near me", "abortion services north carolina", "abortion clinic north carolina charlotte", "abortion clinic north carolina open now", "abortion clinic north carolina prices", "free abortion clinic north carolina", "abortion clinic greensboro north carolina", "abortion clinic raleigh north carolina"], "self_loops": [0], "tags": {"i": "abortion center north carolina", "q": "C6KCtANNvfSg6ozH5oeb0l8sBB8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion services north carolina", "datetime": "2026-03-12 19:32:50.065333", "source": "google", "data": ["abortion services north carolina", [["abortion services north carolina", 0, [22, 30]], ["abortion clinic north carolina", 0, [22, 30]], ["abortion clinic north carolina near me", 0, [22, 30]], ["abortion center north carolina", 0, [22, 30]], ["abortion clinic north carolina charlotte", 0, [22, 30]], ["abortion clinic north carolina open now", 0, [22, 30]], ["abortion clinic north carolina prices", 0, [22, 30]], ["abortion care north carolina", 0, [22, 30]], ["abortion providers north carolina", 0, [22, 30]], ["free abortion clinic north carolina", 0, [22, 30]]], {"i": "abortion services north carolina", "q": "FyX2GCb3X7-KWNsqNackHo2OcTQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion services north carolina", "abortion clinic north carolina", "abortion clinic north carolina near me", "abortion center north carolina", "abortion clinic north carolina charlotte", "abortion clinic north carolina open now", "abortion clinic north carolina prices", "abortion care north carolina", "abortion providers north carolina", "free abortion clinic north carolina"], "self_loops": [0], "tags": {"i": "abortion services north carolina", "q": "FyX2GCb3X7-KWNsqNackHo2OcTQ", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic north carolina", "datetime": "2026-03-12 19:32:51.242440", "source": "google", "data": ["women's clinic north carolina", [["women's clinic north carolina", 0, [22, 30]], ["women's health center north carolina", 0, [22, 30]], ["women's hospital north carolina", 0, [22, 30]], ["women's choice clinic north carolina", 0, [22, 30]], ["women's health clinic north carolina", 0, [22, 30]], ["preferred women's clinic north carolina", 0, [22, 30]], ["women's clinic shelby north carolina", 0, [22, 30]], ["women's abortion clinic north carolina", 0, [22, 30]], ["women's clinic jacksonville north carolina", 0, [22, 30]], ["women's clinic fayetteville north carolina", 0, [22, 30]]], {"i": "women's clinic north carolina", "q": "UEBpdHXmDzOuSxnnurMnd5MD6Wk", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic north carolina", "women's health center north carolina", "women's hospital north carolina", "women's choice clinic north carolina", "women's health clinic north carolina", "preferred women's clinic north carolina", "women's clinic shelby north carolina", "women's abortion clinic north carolina", "women's clinic jacksonville north carolina", "women's clinic fayetteville north carolina"], "self_loops": [0], "tags": {"i": "women's clinic north carolina", "q": "UEBpdHXmDzOuSxnnurMnd5MD6Wk", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinic north carolina", "datetime": "2026-03-12 19:32:52.422900", "source": "google", "data": ["free abortion clinic north carolina", [["free abortion clinic north carolina", 0, [512]], ["free abortion clinic near me", 0, [512, 390, 650]], ["free abortion clinic raleigh nc", 0, [751]], ["free abortion clinic charlotte nc", 0, [512, 546]]], {"i": "free abortion clinic north carolina", "q": "UVpsW8Z6JVcnA_W6nXkPp_rEkcM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free abortion clinic north carolina", "free abortion clinic near me", "free abortion clinic raleigh nc", "free abortion clinic charlotte nc"], "self_loops": [0], "tags": {"i": "free abortion clinic north carolina", "q": "UVpsW8Z6JVcnA_W6nXkPp_rEkcM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic greensboro north carolina", "datetime": "2026-03-12 19:32:53.590699", "source": "google", "data": ["abortion clinic greensboro north carolina", [["abortion clinic greensboro north carolina", 0, [512]], ["women's hospital greensboro north carolina", 0, [22, 30]], ["women's center greensboro north carolina", 0, [22, 30]], ["women's resource center greensboro north carolina", 0, [22, 30]], ["how long can you get an abortion in nc", 0, [512, 390, 650]], ["abortion options in nc", 0, [512, 390, 650]], ["abortion process in nc", 0, [512, 390, 650]], ["abortion clinic near greensboro nc", 0, [751]], ["abortion clinic greensboro", 0, [512, 546]]], {"i": "abortion clinic greensboro north carolina", "q": "yoYiyJg3KcR7faeth7vL9QTfOhY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic greensboro north carolina", "women's hospital greensboro north carolina", "women's center greensboro north carolina", "women's resource center greensboro north carolina", "how long can you get an abortion in nc", "abortion options in nc", "abortion process in nc", "abortion clinic near greensboro nc", "abortion clinic greensboro"], "self_loops": [0], "tags": {"i": "abortion clinic greensboro north carolina", "q": "yoYiyJg3KcR7faeth7vL9QTfOhY", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic chicago illinois", "datetime": "2026-03-12 19:32:54.811396", "source": "google", "data": ["abortion clinic chicago illinois", [["abortion clinic chicago illinois", 0, [512]], ["women's clinic chicago il", 0, [22, 30]], ["abortion clinic.near me. chicago illinois", 0, [22, 10, 30]], ["abortion clinic downtown chicago il", 0, [22, 30]], ["abortion clinic near chicago il", 0, [22, 30]], ["abortion clinics in chicago area", 0, [22, 30]], ["abortion clinic chicago free", 0, [512, 546]], ["abortion clinic chicago downtown", 0, [546, 649]]], {"i": "abortion clinic chicago illinois", "q": "0fv0hjAXg2mUt_pANi81tAvrIuc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic chicago illinois", "women's clinic chicago il", "abortion clinic.near me. chicago illinois", "abortion clinic downtown chicago il", "abortion clinic near chicago il", "abortion clinics in chicago area", "abortion clinic chicago free", "abortion clinic chicago downtown"], "self_loops": [0], "tags": {"i": "abortion clinic chicago illinois", "q": "0fv0hjAXg2mUt_pANi81tAvrIuc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic chicago free", "datetime": "2026-03-12 19:32:56.147626", "source": "google", "data": ["abortion clinic chicago free", [["abortion clinic chicago free", 0, [512]], ["free abortion clinic chicago no insurance", 0, [22, 30]], ["free abortion clinic near me", 0, [512, 390, 650]], ["abortion clinic chicago cost", 0, [512, 546]], ["abortion clinic chicago downtown", 0, [546, 649]], ["abortion clinic chicago il", 0, [512, 546]], ["abortion clinic chicago illinois", 0, [512, 546]]], {"i": "abortion clinic chicago free", "q": "IBOLfoTQFk61VIGXuKZatEXVyL0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic chicago free", "free abortion clinic chicago no insurance", "free abortion clinic near me", "abortion clinic chicago cost", "abortion clinic chicago downtown", "abortion clinic chicago il", "abortion clinic chicago illinois"], "self_loops": [0], "tags": {"i": "abortion clinic chicago free", "q": "IBOLfoTQFk61VIGXuKZatEXVyL0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic chicago price", "datetime": "2026-03-12 19:32:57.637894", "source": "google", "data": ["abortion clinic chicago price", [["abortion clinic chicago price", 0, [512]], ["abortion clinic chicago cost", 0, [512, 546]], ["abortion clinic chicago free", 0, [512, 546]], ["abortion clinic chicago illinois", 0, [512, 546]], ["abortion clinic chicago downtown", 0, [546, 649]]], {"i": "abortion clinic chicago price", "q": "lZH2ZQpjfXnWbRtdGwe43_DPWV4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic chicago price", "abortion clinic chicago cost", "abortion clinic chicago free", "abortion clinic chicago illinois", "abortion clinic chicago downtown"], "self_loops": [0], "tags": {"i": "abortion clinic chicago price", "q": "lZH2ZQpjfXnWbRtdGwe43_DPWV4", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic chicago near me", "datetime": "2026-03-12 19:32:58.458760", "source": "google", "data": ["abortion clinic chicago near me", [["abortion clinic chicago near me", 0, [512]], ["abortion clinic near me chicago il", 0, [22, 30]], ["abortion clinic chicago free", 0, [512, 546]], ["abortion clinic chicago illinois", 0, [512, 546]]], {"i": "abortion clinic chicago near me", "q": "qkEK2jHTPhzmUJXmKfmTlQciEJ4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic chicago near me", "abortion clinic near me chicago il", "abortion clinic chicago free", "abortion clinic chicago illinois"], "self_loops": [0], "tags": {"i": "abortion clinic chicago near me", "q": "qkEK2jHTPhzmUJXmKfmTlQciEJ4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic chicago open now", "datetime": "2026-03-12 19:32:59.801292", "source": "google", "data": ["abortion clinic chicago open now", [["abortion clinic chicago open now", 0, [512]], ["abortion clinic open near me", 0, [512, 390, 650]], ["abortion clinic open on saturday near me", 0, [512, 390, 650]], ["abortion clinic chicago near me", 0, [512, 546]], ["abortion clinic chicago free", 0, [512, 546]], ["abortion clinic chicago il", 0, [512, 546]], ["abortion clinic chicago illinois", 0, [512, 546]], ["abortion clinic chicago downtown", 0, [546, 649]]], {"i": "abortion clinic chicago open now", "q": "xL6nW-m9Dvc7vbDkdWOnPogikLM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic chicago open now", "abortion clinic open near me", "abortion clinic open on saturday near me", "abortion clinic chicago near me", "abortion clinic chicago free", "abortion clinic chicago il", "abortion clinic chicago illinois", "abortion clinic chicago downtown"], "self_loops": [0], "tags": {"i": "abortion clinic chicago open now", "q": "xL6nW-m9Dvc7vbDkdWOnPogikLM", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic chicago washington street", "datetime": "2026-03-12 19:33:00.841736", "source": "google", "data": ["abortion clinic chicago washington street", [["abortion clinic chicago washington street", 0, [512]], ["abortion clinic chicago washington blvd", 0, [22, 30]], ["abortion clinic washington st chicago", 0, [512, 546]], ["abortion clinic on washington in chicago il", 0, [512, 546]], ["abortion clinic chicago downtown", 0, [546, 649]], ["abortion clinic chicago near me", 0, [512, 546]], ["abortion clinic chicago free", 0, [512, 546]]], {"i": "abortion clinic chicago washington street", "q": "S-mCMYL_FL38Dr9czaYroGrhUw4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic chicago washington street", "abortion clinic chicago washington blvd", "abortion clinic washington st chicago", "abortion clinic on washington in chicago il", "abortion clinic chicago downtown", "abortion clinic chicago near me", "abortion clinic chicago free"], "self_loops": [0], "tags": {"i": "abortion clinic chicago washington street", "q": "S-mCMYL_FL38Dr9czaYroGrhUw4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic chicago downtown", "datetime": "2026-03-12 19:33:02.014640", "source": "google", "data": ["abortion clinic chicago downtown", [["abortion clinic chicago downtown", 0, [22, 30]], ["abortion clinic chicago il", 0, [22, 30]], ["abortion clinic downtown chicago il", 0, [22, 30]], ["women's clinic downtown chicago", 0, [22, 10, 30]], ["women's clinic chicago il", 0, [22, 30]], ["abortion clinic chicago illinois", 0, [512, 546]]], {"i": "abortion clinic chicago downtown", "q": "StKTfiNmFrzVcBcrT_Qgq4_IvcM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic chicago downtown", "abortion clinic chicago il", "abortion clinic downtown chicago il", "women's clinic downtown chicago", "women's clinic chicago il", "abortion clinic chicago illinois"], "self_loops": [0], "tags": {"i": "abortion clinic chicago downtown", "q": "StKTfiNmFrzVcBcrT_Qgq4_IvcM", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic chicago within 5 mi", "datetime": "2026-03-12 19:33:03.445472", "source": "google", "data": ["abortion clinic chicago within 5 mi", [["abortion clinic chicago within 5 mi", 0, [22, 30]], ["abortion laws in chicago", 0, [512, 390, 650]], ["abortion clinic chicago free", 0, [512, 546]], ["abortion clinic chicago illinois", 0, [512, 546]], ["abortion clinic chicago downtown", 0, [546, 649]], ["abortion clinic chicago il", 0, [512, 546]], ["abortion clinic chicago cost", 0, [512, 546]]], {"i": "abortion clinic chicago within 5 mi", "q": "kiVuJX64eCJxki4xMMmuQlNVTM8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic chicago within 5 mi", "abortion laws in chicago", "abortion clinic chicago free", "abortion clinic chicago illinois", "abortion clinic chicago downtown", "abortion clinic chicago il", "abortion clinic chicago cost"], "self_loops": [0], "tags": {"i": "abortion clinic chicago within 5 mi", "q": "kiVuJX64eCJxki4xMMmuQlNVTM8", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic chicago washington", "datetime": "2026-03-12 19:33:04.688560", "source": "google", "data": ["abortion clinic chicago washington", [["abortion clinic chicago washington street", 0, [512]], ["abortion clinic chicago washington", 0, [22, 30]], ["abortion clinic chicago washington blvd", 0, [22, 30]], ["abortion clinic washington st chicago", 0, [512, 546]], ["abortion clinic on washington in chicago il", 0, [512, 546]], ["abortion clinic chicago downtown", 0, [546, 649]], ["abortion clinic chicago il", 0, [512, 546]], ["abortion clinic chicago near me", 0, [512, 546]]], {"i": "abortion clinic chicago washington", "q": "725QUB0aReMDZBWr-dxsNqz4zic", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic chicago washington street", "abortion clinic chicago washington", "abortion clinic chicago washington blvd", "abortion clinic washington st chicago", "abortion clinic on washington in chicago il", "abortion clinic chicago downtown", "abortion clinic chicago il", "abortion clinic chicago near me"], "self_loops": [1], "tags": {"i": "abortion clinic chicago washington", "q": "725QUB0aReMDZBWr-dxsNqz4zic", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost cvs florida", "datetime": "2026-03-12 19:33:05.719113", "source": "google", "data": ["abortion pill cost cvs florida", [["abortion pill cost cvs florida", 0, [512]], ["abortion pill cost cvs", 0, [512, 390, 650]], ["abortion pill cost cvs price", 0, [546, 649]], ["abortion pill cost fl", 0, [751]], ["abortion pill cvs walgreens", 0, [546, 649]]], {"i": "abortion pill cost cvs florida", "q": "hE9GzoebyZppAAXr4OHAyC0fEGc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost cvs florida", "abortion pill cost cvs", "abortion pill cost cvs price", "abortion pill cost fl", "abortion pill cvs walgreens"], "self_loops": [0], "tags": {"i": "abortion pill cost cvs florida", "q": "hE9GzoebyZppAAXr4OHAyC0fEGc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost cvs california", "datetime": "2026-03-12 19:33:06.960133", "source": "google", "data": ["abortion pill cost cvs california", [["abortion pill cost cvs california", 0, [512]], ["abortion pill cost cvs", 0, [512, 390, 650]], ["cost of abortion pill in california", 0, [512, 390, 650]], ["abortion pill cost cvs price", 0, [546, 649]], ["abortion pill cvs walgreens", 0, [546, 649]]], {"i": "abortion pill cost cvs california", "q": "EoBxtZSHr11BhgRggpf-4nutL0A", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cost cvs california", "abortion pill cost cvs", "cost of abortion pill in california", "abortion pill cost cvs price", "abortion pill cvs walgreens"], "self_loops": [0], "tags": {"i": "abortion pill cost cvs california", "q": "EoBxtZSHr11BhgRggpf-4nutL0A", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost cvs texas", "datetime": "2026-03-12 19:33:08.325829", "source": "google", "data": ["abortion pill cost cvs texas", [["abortion pill cost cvs texas", 0, [22, 30]], ["abortion pill cost cvs", 0, [512, 390, 650]], ["abortion pill cost cvs price", 0, [546, 649]], ["abortion pill texas cvs", 0, [546, 649]], ["abortion pill cvs walgreens", 0, [546, 649]]], {"i": "abortion pill cost cvs texas", "q": "ars9NwEJ0OGoZVgsbKwUpenjHDQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cost cvs texas", "abortion pill cost cvs", "abortion pill cost cvs price", "abortion pill texas cvs", "abortion pill cvs walgreens"], "self_loops": [0], "tags": {"i": "abortion pill cost cvs texas", "q": "ars9NwEJ0OGoZVgsbKwUpenjHDQ", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost cvs near me", "datetime": "2026-03-12 19:33:09.497367", "source": "google", "data": ["abortion pill cost cvs near me", [], {"i": "abortion pill cost cvs near me", "q": "y4OI7qgUIqEaTPWeHsF627NRUBQ", "t": {"bpc": true, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "abortion pill cost cvs near me", "q": "y4OI7qgUIqEaTPWeHsF627NRUBQ", "t": {"bpc": true, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost cvs michigan", "datetime": "2026-03-12 19:33:10.921975", "source": "google", "data": ["abortion pill cost cvs michigan", [["abortion pill cost cvs michigan", 0, [22, 30]], ["abortion pill cost cvs", 0, [512, 390, 650]], ["abortion pill cost michigan", 0, [512, 390, 650]], ["does insurance cover abortion pill", 0, [512, 390, 650]], ["abortion pill cost cvs price", 0, [546, 649]], ["abortion pill cvs walgreens", 0, [546, 649]]], {"i": "abortion pill cost cvs michigan", "q": "9RbGBvw5IzbLantiCUoGPwbOEVo", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cost cvs michigan", "abortion pill cost cvs", "abortion pill cost michigan", "does insurance cover abortion pill", "abortion pill cost cvs price", "abortion pill cvs walgreens"], "self_loops": [0], "tags": {"i": "abortion pill cost cvs michigan", "q": "9RbGBvw5IzbLantiCUoGPwbOEVo", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost cvs over the counter", "datetime": "2026-03-12 19:33:12.272467", "source": "google", "data": ["abortion pill cost cvs over the counter", [["abortion pill cost cvs over the counter", 0, [22, 30]], ["abortion pill cost cvs", 0, [512, 390, 650]], ["can you buy misoprostol over the counter at walmart", 0, [512, 390, 650]], ["abortion pill cost cvs price", 0, [546, 649]], ["abortion pill cvs walgreens", 0, [546, 649]]], {"i": "abortion pill cost cvs over the counter", "q": "052cskj63fVJUdeJLtPSmn_cOwA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cost cvs over the counter", "abortion pill cost cvs", "can you buy misoprostol over the counter at walmart", "abortion pill cost cvs price", "abortion pill cvs walgreens"], "self_loops": [0], "tags": {"i": "abortion pill cost cvs over the counter", "q": "052cskj63fVJUdeJLtPSmn_cOwA", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost cvs pa", "datetime": "2026-03-12 19:33:13.293508", "source": "google", "data": ["abortion pill cost cvs pa", [["abortion pill cost cvs pa", 0, [22, 455, 30]], ["abortion pill cost cvs", 0, [512, 390, 650]], ["abortion pill cost cvs price", 0, [546, 649]], ["abortion pill cvs walgreens", 0, [546, 649]]], {"i": "abortion pill cost cvs pa", "q": "cRPiCWu9586uJVGpzDUZd1BRo1U", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cost cvs pa", "abortion pill cost cvs", "abortion pill cost cvs price", "abortion pill cvs walgreens"], "self_loops": [0], "tags": {"i": "abortion pill cost cvs pa", "q": "cRPiCWu9586uJVGpzDUZd1BRo1U", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill cost cvs", "datetime": "2026-03-12 19:33:14.339374", "source": "google", "data": ["morning after pill cost cvs", [["morning after pill cost cvs", 0, [512]], ["day after pill cvs cost", 0, [22, 30]], ["morning after pill price cvs", 0, [512, 390, 650]], ["how much is the morning after pill at cvs", 0, [512, 390, 650]], ["does cvs sell morning after pill", 0, [512, 390, 650]], ["morning after pill cvs coupon", 0, [751]], ["morning after pill cost walgreens", 0, [751]]], {"i": "morning after pill cost cvs", "q": "IRvPILoOYcPI3ZRA6yyuJbzz1gw", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill cost cvs", "day after pill cvs cost", "morning after pill price cvs", "how much is the morning after pill at cvs", "does cvs sell morning after pill", "morning after pill cvs coupon", "morning after pill cost walgreens"], "self_loops": [0], "tags": {"i": "morning after pill cost cvs", "q": "IRvPILoOYcPI3ZRA6yyuJbzz1gw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cvs cost nc", "datetime": "2026-03-12 19:33:15.493402", "source": "google", "data": ["abortion pill cvs cost nc", [["abortion pill cvs cost nc", 0, [22, 30]], ["abortion pill cost cvs", 0, [512, 390, 650]], ["abortion pill nc cost", 0, [512, 390, 650]], ["abortion pill cost cvs price", 0, [546, 649]], ["abortion pill cost north carolina", 0, [512, 546]]], {"i": "abortion pill cvs cost nc", "q": "kqZINmLAN8wQoK-yvEcKiRFjfz0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cvs cost nc", "abortion pill cost cvs", "abortion pill nc cost", "abortion pill cost cvs price", "abortion pill cost north carolina"], "self_loops": [0], "tags": {"i": "abortion pill cvs cost nc", "q": "kqZINmLAN8wQoK-yvEcKiRFjfz0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost california reddit", "datetime": "2026-03-12 19:33:16.813028", "source": "google", "data": ["abortion pill cost california reddit", [["abortion pill cost california reddit", 0, [22, 30]], ["cost of abortion pill in california", 0, [512, 390, 650]]], {"i": "abortion pill cost california reddit", "q": "xQALNuKVOiQ0Ifji6saVX0b_BSs", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cost california reddit", "cost of abortion pill in california"], "self_loops": [0], "tags": {"i": "abortion pill cost california reddit", "q": "xQALNuKVOiQ0Ifji6saVX0b_BSs", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic california cost", "datetime": "2026-03-12 19:33:18.056736", "source": "google", "data": ["abortion clinic california cost", [["abortion clinic california cost", 0, [512]], ["how much does an abortion cost at planned parenthood california", 0, [512, 390, 650]], ["california abortion clinic free", 0, [512, 546]]], {"i": "abortion clinic california cost", "q": "2fytAqIT8tS4sE2SuE9OjaT79dE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic california cost", "how much does an abortion cost at planned parenthood california", "california abortion clinic free"], "self_loops": [0], "tags": {"i": "abortion clinic california cost", "q": "2fytAqIT8tS4sE2SuE9OjaT79dE", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "kaiser abortion pill cost california", "datetime": "2026-03-12 19:33:19.495387", "source": "google", "data": ["kaiser abortion pill cost california", [["kaiser abortion pill cost california", 0, [22, 30]], ["does kaiser cover abortions in california", 0, [512, 390, 650]], ["how much is an abortion at kaiser", 0, [512, 390, 650]], ["kaiser abortion pill cost", 0, [512, 546]], ["kaiser abortion copay", 0, [546, 649]], ["kaiser abortion pills", 0, [546, 649]]], {"i": "kaiser abortion pill cost california", "q": "OjG6-vK0-vzM7l5Ednv20FkCvTU", "t": {"bpc": false, "tlw": false}}], "suggests": ["kaiser abortion pill cost california", "does kaiser cover abortions in california", "how much is an abortion at kaiser", "kaiser abortion pill cost", "kaiser abortion copay", "kaiser abortion pills"], "self_loops": [0], "tags": {"i": "kaiser abortion pill cost california", "q": "OjG6-vK0-vzM7l5Ednv20FkCvTU", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost no insurance california", "datetime": "2026-03-12 19:33:20.864277", "source": "google", "data": ["abortion pill cost no insurance california", [], {"i": "abortion pill cost no insurance california", "q": "DnVCuXX4rWeXQtVU-rJtlIc6Bo0", "t": {"bpc": true, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "abortion pill cost no insurance california", "q": "DnVCuXX4rWeXQtVU-rJtlIc6Bo0", "t": {"bpc": true, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "hey jane abortion pill cost california", "datetime": "2026-03-12 19:33:21.779031", "source": "google", "data": ["hey jane abortion pill cost california", [["hey jane abortion pill cost california", 0, [22, 30]], ["jane abortion pill", 0, [512, 546]]], {"i": "hey jane abortion pill cost california", "q": "pRg2umdlxVojFVR0xkfXyRiERbs", "t": {"bpc": false, "tlw": false}}], "suggests": ["hey jane abortion pill cost california", "jane abortion pill"], "self_loops": [0], "tags": {"i": "hey jane abortion pill cost california", "q": "pRg2umdlxVojFVR0xkfXyRiERbs", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill low cost online", "datetime": "2026-03-12 19:33:22.890529", "source": "google", "data": ["abortion pill low cost online", [["abortion pill low cost online", 0, [512]], ["abortion pill cost online", 0, [22, 30]], ["abortion pills name and price online in india", 0, [22, 30]], ["abortion pill name and price online", 0, [22, 455, 30]], ["abortion pill clinic near me free", 0, [512, 390, 650]], ["abortion pill near me online", 0, [512, 390, 650]]], {"i": "abortion pill low cost online", "q": "Mw9PehbxoQ9DEzncwgP4um3VjrA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill low cost online", "abortion pill cost online", "abortion pills name and price online in india", "abortion pill name and price online", "abortion pill clinic near me free", "abortion pill near me online"], "self_loops": [0], "tags": {"i": "abortion pill low cost online", "q": "Mw9PehbxoQ9DEzncwgP4um3VjrA", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost pharmacy near me", "datetime": "2026-03-12 19:33:24.277754", "source": "google", "data": ["abortion pill cost pharmacy near me", [["abortion pill cost pharmacy near me", 0, [512]], ["abortion pill cost cvs near me", 0, [22, 30]], ["abortion pill cost pharmacy malaysia near me", 0, [22, 30]], ["abortion pill cost cvs price", 0, [546, 649]]], {"i": "abortion pill cost pharmacy near me", "q": "XwKEwTahw4BaWLJckhwGuAQ_ulQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost pharmacy near me", "abortion pill cost cvs near me", "abortion pill cost pharmacy malaysia near me", "abortion pill cost cvs price"], "self_loops": [0], "tags": {"i": "abortion pill cost pharmacy near me", "q": "XwKEwTahw4BaWLJckhwGuAQ_ulQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost pharmacy south africa", "datetime": "2026-03-12 19:33:25.196561", "source": "google", "data": ["abortion pill cost pharmacy south africa", [["abortion pill cost pharmacy south africa", 0, [512]], ["abortion pill cost south dakota", 0, [751]], ["abortion pill cost south carolina", 0, [546, 649]], ["abortion pill pharmacies", 0, [546, 649]], ["abortion pill cost sc", 0, [751]]], {"i": "abortion pill cost pharmacy south africa", "q": "JZcHapQ4HhMrkEIg6T-md7UhjQo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost pharmacy south africa", "abortion pill cost south dakota", "abortion pill cost south carolina", "abortion pill pharmacies", "abortion pill cost sc"], "self_loops": [0], "tags": {"i": "abortion pill cost pharmacy south africa", "q": "JZcHapQ4HhMrkEIg6T-md7UhjQo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost pharmacy in kenya", "datetime": "2026-03-12 19:33:26.007689", "source": "google", "data": ["abortion pill cost pharmacy in kenya", [["abortion pill cost pharmacy in kenya", 0, [512]], ["how much is mifepristone in pharmacy in kenya", 0, [512, 546]], ["abortion pill kentucky cost", 0, [751]], ["how much is mifepristone in pharmacy", 0, [512, 546]], ["cost of abortion pill in kenyan shillings", 0, [751]]], {"i": "abortion pill cost pharmacy in kenya", "q": "CLXHBiujnkPyU3GmHJyyIQAqWdI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost pharmacy in kenya", "how much is mifepristone in pharmacy in kenya", "abortion pill kentucky cost", "how much is mifepristone in pharmacy", "cost of abortion pill in kenyan shillings"], "self_loops": [0], "tags": {"i": "abortion pill cost pharmacy in kenya", "q": "CLXHBiujnkPyU3GmHJyyIQAqWdI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost pharmacy india", "datetime": "2026-03-12 19:33:26.908005", "source": "google", "data": ["abortion pill cost pharmacy india", [["abortion pill cost pharmacy india", 0, [512]], ["abortion pill cost in indiana", 0, [751]]], {"i": "abortion pill cost pharmacy india", "q": "8mES6SwD4xOnvgdkbldGd93QhwM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost pharmacy india", "abortion pill cost in indiana"], "self_loops": [0], "tags": {"i": "abortion pill cost pharmacy india", "q": "8mES6SwD4xOnvgdkbldGd93QhwM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost pharmacy malaysia", "datetime": "2026-03-12 19:33:28.297875", "source": "google", "data": ["abortion pill cost pharmacy malaysia", [["abortion pill cost pharmacy malaysia", 0, [512]], ["abortion pill cost pharmacy malaysia near me", 0, [512]], ["abortion pills price at pharmacy", 0, [512, 390, 650]], ["abortion pill pharmacies", 0, [546, 649]], ["abortion pill price massachusetts", 0, [751]]], {"i": "abortion pill cost pharmacy malaysia", "q": "-y_FIQo8JSxFApZ95pZIYx_WyVQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost pharmacy malaysia", "abortion pill cost pharmacy malaysia near me", "abortion pills price at pharmacy", "abortion pill pharmacies", "abortion pill price massachusetts"], "self_loops": [0], "tags": {"i": "abortion pill cost pharmacy malaysia", "q": "-y_FIQo8JSxFApZ95pZIYx_WyVQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost pharmacy malaysia near me", "datetime": "2026-03-12 19:33:29.159981", "source": "google", "data": ["abortion pill cost pharmacy malaysia near me", [["abortion pill cost pharmacy malaysia near me", 0, [512]], ["abortion pill malaysia pharmacy", 0, [512, 546]], ["abortion pill price massachusetts", 0, [751]]], {"i": "abortion pill cost pharmacy malaysia near me", "q": "oO40y8De76pq-oq0c9vqza21c14", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cost pharmacy malaysia near me", "abortion pill malaysia pharmacy", "abortion pill price massachusetts"], "self_loops": [0], "tags": {"i": "abortion pill cost pharmacy malaysia near me", "q": "oO40y8De76pq-oq0c9vqza21c14", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill nc cost", "datetime": "2026-03-12 19:33:30.423950", "source": "google", "data": ["abortion pill nc cost", [["abortion pill nc cost", 0, [512]], ["abortion clinic north carolina cost", 0, [22, 30]], ["abortion pill charlotte nc cost", 0, [22, 30]], ["abortion clinic raleigh nc cost", 0, [22, 30]], ["abortion clinic charlotte nc cost", 0, [22, 30]], ["abortion pill cvs cost nc", 0, [22, 30]], ["abortion pill cost raleigh nc", 0, [22, 30]], ["abortion pill cost north carolina", 0, [512, 546]], ["abortion pill nc", 0, [512, 546]]], {"i": "abortion pill nc cost", "q": "nlgYXrFrUptUpwq73kMOd0Yyxd0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill nc cost", "abortion clinic north carolina cost", "abortion pill charlotte nc cost", "abortion clinic raleigh nc cost", "abortion clinic charlotte nc cost", "abortion pill cvs cost nc", "abortion pill cost raleigh nc", "abortion pill cost north carolina", "abortion pill nc"], "self_loops": [0], "tags": {"i": "abortion pill nc cost", "q": "nlgYXrFrUptUpwq73kMOd0Yyxd0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much are abortions at planned parenthood with insurance", "datetime": "2026-03-12 19:33:31.534197", "source": "google", "data": ["how much are abortions at planned parenthood with insurance", [["how much are abortions at planned parenthood with insurance", 0, [512]], ["how much are abortion pills at planned parenthood with insurance", 0, [22, 30]], ["how much is an abortion at planned parenthood with insurance in california", 0, [22, 30]], ["how much is an abortion at planned parenthood with insurance reddit", 0, [22, 30]], ["how much are abortions at planned parenthood without insurance", 0, [22, 30]], ["how much is an abortion at planned parenthood with kaiser insurance", 0, [22, 30]], ["how much are abortion pills at planned parenthood without insurance", 0, [22, 30]], ["how much is an abortion at planned parenthood in illinois with insurance", 0, [22, 30]], ["how much is an abortion at planned parenthood in ohio with insurance", 0, [22, 30]], ["how much is an abortion at planned parenthood in pa with insurance", 0, [22, 30]]], {"i": "how much are abortions at planned parenthood with insurance", "q": "ubK3d25sbN7TH_KHBTJAGrlWIJk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much are abortions at planned parenthood with insurance", "how much are abortion pills at planned parenthood with insurance", "how much is an abortion at planned parenthood with insurance in california", "how much is an abortion at planned parenthood with insurance reddit", "how much are abortions at planned parenthood without insurance", "how much is an abortion at planned parenthood with kaiser insurance", "how much are abortion pills at planned parenthood without insurance", "how much is an abortion at planned parenthood in illinois with insurance", "how much is an abortion at planned parenthood in ohio with insurance", "how much is an abortion at planned parenthood in pa with insurance"], "self_loops": [0], "tags": {"i": "how much are abortions at planned parenthood with insurance", "q": "ubK3d25sbN7TH_KHBTJAGrlWIJk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much is an abortion cost at planned parenthood", "datetime": "2026-03-12 19:33:32.873231", "source": "google", "data": ["how much is an abortion cost at planned parenthood", [["how much is an abortion cost at planned parenthood", 0, [512]], ["how much does an abortion cost at planned parenthood in illinois", 0, [22, 30]], ["how much does an abortion cost at planned parenthood in ca", 0, [22, 30]], ["how much does an abortion cost at planned parenthood pa", 0, [22, 30]], ["how much does an abortion cost at planned parenthood in ny", 0, [22, 30]], ["how much does an abortion cost at planned parenthood in arizona", 0, [22, 30]], ["how much does an abortion cost at planned parenthood in michigan", 0, [22, 30]], ["how much does an abortion cost at planned parenthood in nj", 0, [22, 30]], ["how much does an abortion cost at planned parenthood in florida", 0, [22, 30]], ["how much does an abortion cost at planned parenthood in ohio", 0, [22, 30]]], {"i": "how much is an abortion cost at planned parenthood", "q": "CQVe5fhgKW1kgxQd25lyPEVzOA4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much is an abortion cost at planned parenthood", "how much does an abortion cost at planned parenthood in illinois", "how much does an abortion cost at planned parenthood in ca", "how much does an abortion cost at planned parenthood pa", "how much does an abortion cost at planned parenthood in ny", "how much does an abortion cost at planned parenthood in arizona", "how much does an abortion cost at planned parenthood in michigan", "how much does an abortion cost at planned parenthood in nj", "how much does an abortion cost at planned parenthood in florida", "how much does an abortion cost at planned parenthood in ohio"], "self_loops": [0], "tags": {"i": "how much is an abortion cost at planned parenthood", "q": "CQVe5fhgKW1kgxQd25lyPEVzOA4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill planned parenthood reddit", "datetime": "2026-03-12 19:33:34.138509", "source": "google", "data": ["abortion pill planned parenthood reddit", [["abortion pill planned parenthood reddit", 0, [512]], ["abortion pill cost planned parenthood reddit", 0, [22, 30]], ["medication abortion planned parenthood reddit", 0, [22, 30]], ["in clinic abortion planned parenthood reddit", 0, [22, 30]], ["planned parenthood abortion pill process reddit", 0, [22, 30]], ["planned parenthood abortion pill experience reddit", 0, [22, 30]], ["planned parenthood abortion pill price reddit", 0, [22, 30]], ["planned parenthood telehealth abortion pill reddit", 0, [22, 30]], ["planned parenthood direct abortion pill reddit", 0, [22, 30]], ["planned parenthood abortion pill appointment reddit", 0, [22, 30]]], {"i": "abortion pill planned parenthood reddit", "q": "RiJbHqaCN5OAJmJIRlC7vPeBqDA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill planned parenthood reddit", "abortion pill cost planned parenthood reddit", "medication abortion planned parenthood reddit", "in clinic abortion planned parenthood reddit", "planned parenthood abortion pill process reddit", "planned parenthood abortion pill experience reddit", "planned parenthood abortion pill price reddit", "planned parenthood telehealth abortion pill reddit", "planned parenthood direct abortion pill reddit", "planned parenthood abortion pill appointment reddit"], "self_loops": [0], "tags": {"i": "abortion pill planned parenthood reddit", "q": "RiJbHqaCN5OAJmJIRlC7vPeBqDA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost fl", "datetime": "2026-03-12 19:33:35.355355", "source": "google", "data": ["abortion pill cost fl", [["abortion pill cost florida", 0, [512]], ["abortion pill cost fl", 0, [22, 30]], ["abortion pill cost cvs florida", 0, [22, 30]], ["abortion clinic florida cost", 0, [22, 30]], ["planned parenthood abortion pill cost florida", 0, [22, 30]], ["abortion pill cost in tallahassee fl", 0, [22, 30]]], {"i": "abortion pill cost fl", "q": "eN7PaJO3uKTAxMAujuc6ress4S4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost florida", "abortion pill cost fl", "abortion pill cost cvs florida", "abortion clinic florida cost", "planned parenthood abortion pill cost florida", "abortion pill cost in tallahassee fl"], "self_loops": [1], "tags": {"i": "abortion pill cost fl", "q": "eN7PaJO3uKTAxMAujuc6ress4S4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic florida cost", "datetime": "2026-03-12 19:33:36.394078", "source": "google", "data": ["abortion clinic florida cost", [["abortion clinic florida cost", 0, [22, 30]], ["abortion clinic jacksonville fl cost", 0, [22, 30]], ["abortion cost florida planned parenthood", 0, [512, 546]], ["abortion cost fl", 0, [512, 546]], ["abortion clinic florida", 0, [512, 546]]], {"i": "abortion clinic florida cost", "q": "ycMS31I8w66pRlxRX2KWnPuYP0U", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic florida cost", "abortion clinic jacksonville fl cost", "abortion cost florida planned parenthood", "abortion cost fl", "abortion clinic florida"], "self_loops": [0], "tags": {"i": "abortion clinic florida cost", "q": "ycMS31I8w66pRlxRX2KWnPuYP0U", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "planned parenthood abortion pill cost florida", "datetime": "2026-03-12 19:33:37.499458", "source": "google", "data": ["planned parenthood abortion pill cost florida", [["planned parenthood abortion pill cost florida", 0, [512]], ["how much is an abortion cost at planned parenthood", 0, [512, 390, 650]], ["planned parenthood abortion cost florida", 0, [512, 390, 650]], ["are abortions free at planned parenthood", 0, [512, 390, 650]]], {"i": "planned parenthood abortion pill cost florida", "q": "RO5QzhvqIPF-Kebj6lJ6mpOWCkg", "t": {"bpc": false, "tlw": false}}], "suggests": ["planned parenthood abortion pill cost florida", "how much is an abortion cost at planned parenthood", "planned parenthood abortion cost florida", "are abortions free at planned parenthood"], "self_loops": [0], "tags": {"i": "planned parenthood abortion pill cost florida", "q": "RO5QzhvqIPF-Kebj6lJ6mpOWCkg", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "average cost of abortion pill in florida", "datetime": "2026-03-12 19:33:38.758473", "source": "google", "data": ["average cost of abortion pill in florida", [["average cost of abortion pill in florida", 0, [512]]], {"i": "average cost of abortion pill in florida", "q": "lsmKnplh4WIc0oMpr4UByuyLXc4", "t": {"bpc": false, "tlw": false}}], "suggests": ["average cost of abortion pill in florida"], "self_loops": [0], "tags": {"i": "average cost of abortion pill in florida", "q": "lsmKnplh4WIc0oMpr4UByuyLXc4", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition according to who 2022", "datetime": "2026-03-12 19:33:39.864214", "source": "google", "data": ["abortion definition according to who 2022", [["abortion definition according to who 2022", 0, [512]], ["what is abortion according to who", 0, [512, 390, 650]], ["types of abortion according to who", 0, [512, 390, 650]], ["who definition of abortion", 0, [512, 390, 650]], ["abortion definition according to who", 0, [512, 546]], ["what is the definition of abortion according to world health organization", 0, [751]], ["abortion definition world health organisation", 0, [751]], ["abortion definition by world health organization", 0, [751]], ["abortion definition acog", 0, [512, 546]]], {"i": "abortion definition according to who 2022", "q": "oLWYAb5kNjqEBXcabwfF-qc5Cjw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition according to who 2022", "what is abortion according to who", "types of abortion according to who", "who definition of abortion", "abortion definition according to who", "what is the definition of abortion according to world health organization", "abortion definition world health organisation", "abortion definition by world health organization", "abortion definition acog"], "self_loops": [0], "tags": {"i": "abortion definition according to who 2022", "q": "oLWYAb5kNjqEBXcabwfF-qc5Cjw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition according to who pdf", "datetime": "2026-03-12 19:33:41.356548", "source": "google", "data": ["abortion definition according to who pdf", [["abortion definition according to who pdf", 0, [512]], ["what is abortion pdf", 0, [512, 390, 650]], ["what is abortion according to who", 0, [512, 390, 650]], ["types of abortion pdf", 0, [512, 390, 650]], ["types of abortion according to who", 0, [512, 390, 650]], ["abortion definition according to who", 0, [512, 546]], ["abortion definition world health organisation", 0, [751]], ["what is the definition of abortion according to world health organization", 0, [751]], ["abortion definition ap gov", 0, [751]], ["abortion definition by world health organization", 0, [751]]], {"i": "abortion definition according to who pdf", "q": "uqqAnbTL38aRWtJqFWzH9i4Qg_Q", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition according to who pdf", "what is abortion pdf", "what is abortion according to who", "types of abortion pdf", "types of abortion according to who", "abortion definition according to who", "abortion definition world health organisation", "what is the definition of abortion according to world health organization", "abortion definition ap gov", "abortion definition by world health organization"], "self_loops": [0], "tags": {"i": "abortion definition according to who pdf", "q": "uqqAnbTL38aRWtJqFWzH9i4Qg_Q", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition acc to who", "datetime": "2026-03-12 19:33:42.629225", "source": "google", "data": ["abortion definition acc to who", [["abortion definition acc to who", 0, [22, 30]], ["abortion definition according to who", 0, [22, 30]], ["abortion definition according to who 2022", 0, [22, 30]], ["abortion definition according to who pdf", 0, [22, 30]], ["abortion definition according to who ppt", 0, [22, 30]], ["abortion definition according to who in hindi", 0, [22, 30]], ["abortion meaning according to who", 0, [22, 30]], ["medical abortion definition according to who", 0, [22, 30]], ["illegal abortion definition according to who", 0, [22, 30]], ["spontaneous abortion definition according to who", 0, [22, 30]]], {"i": "abortion definition acc to who", "q": "xA9f9Tko4PxsZ-D8CAhqJzaLH_k", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition acc to who", "abortion definition according to who", "abortion definition according to who 2022", "abortion definition according to who pdf", "abortion definition according to who ppt", "abortion definition according to who in hindi", "abortion meaning according to who", "medical abortion definition according to who", "illegal abortion definition according to who", "spontaneous abortion definition according to who"], "self_loops": [0], "tags": {"i": "abortion definition acc to who", "q": "xA9f9Tko4PxsZ-D8CAhqJzaLH_k", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning according to who", "datetime": "2026-03-12 19:33:43.913406", "source": "google", "data": ["abortion meaning according to who", [["abortion meaning according to who", 0, [22, 30]], ["abortion definition according to who", 0, [22, 30]], ["abortion definition according to who 2022", 0, [22, 30]], ["abortion definition according to who pdf", 0, [22, 30]], ["abortion definition acc to who", 0, [22, 30]], ["medical abortion definition according to who", 0, [22, 30]], ["illegal abortion definition according to who", 0, [22, 30]], ["spontaneous abortion definition according to who", 0, [22, 30]], ["criminal abortion definition according to who", 0, [22, 30]], ["threatened abortion definition according to who", 0, [22, 30]]], {"i": "abortion meaning according to who", "q": "p51c-u7izHWGmNeMHvkak-9Ne_Y", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning according to who", "abortion definition according to who", "abortion definition according to who 2022", "abortion definition according to who pdf", "abortion definition acc to who", "medical abortion definition according to who", "illegal abortion definition according to who", "spontaneous abortion definition according to who", "criminal abortion definition according to who", "threatened abortion definition according to who"], "self_loops": [0], "tags": {"i": "abortion meaning according to who", "q": "p51c-u7izHWGmNeMHvkak-9Ne_Y", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "medical abortion definition according to who", "datetime": "2026-03-12 19:33:45.165063", "source": "google", "data": ["medical abortion definition according to who", [["medical abortion definition according to who", 0, [512]], ["what does the term medical abortion describe", 0, [512, 390, 650]], ["what is abortion according to who", 0, [512, 390, 650]], ["what are the types of medical abortion", 0, [512, 390, 650]], ["medical abortion defined", 0, [751]], ["abortion definition according to who", 0, [512, 546]]], {"i": "medical abortion definition according to who", "q": "D2RXPP9iFzHDJae87aYX0QgEyRg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["medical abortion definition according to who", "what does the term medical abortion describe", "what is abortion according to who", "what are the types of medical abortion", "medical abortion defined", "abortion definition according to who"], "self_loops": [0], "tags": {"i": "medical abortion definition according to who", "q": "D2RXPP9iFzHDJae87aYX0QgEyRg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "illegal abortion definition according to who", "datetime": "2026-03-12 19:33:46.412802", "source": "google", "data": ["illegal abortion definition according to who", [["illegal abortion definition according to who", 0, [512]], ["criminal abortion definition according to who", 0, [22, 30]], ["unsafe abortion definition according to who", 0, [22, 30]], ["what type of abortion is illegal", 0, [512, 390, 650]], ["what is abortion according to who", 0, [512, 390, 650]], ["abortion definition according to who", 0, [512, 546]], ["what is the definition of abortion according to world health organization", 0, [751]], ["unlawful abortion definition", 0, [751]]], {"i": "illegal abortion definition according to who", "q": "93OUc2eGjiaT7iNpTv8hFC7noHI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["illegal abortion definition according to who", "criminal abortion definition according to who", "unsafe abortion definition according to who", "what type of abortion is illegal", "what is abortion according to who", "abortion definition according to who", "what is the definition of abortion according to world health organization", "unlawful abortion definition"], "self_loops": [0], "tags": {"i": "illegal abortion definition according to who", "q": "93OUc2eGjiaT7iNpTv8hFC7noHI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion definition according to who", "datetime": "2026-03-12 19:33:47.533868", "source": "google", "data": ["spontaneous abortion definition according to who", [["spontaneous abortion definition according to who", 0, [512]], ["induced abortion definition according to who", 0, [22, 30]], ["miscarriage definition according to who", 0, [22, 30]], ["spontaneous abortion definition who", 0, [22, 30]], ["what is a spontaneous abortion mean", 0, [512, 390, 650]], ["what is abortion spontaneous", 0, [512, 390, 650]], ["spontaneous abortion acronym", 0, [751]], ["spontaneous abortion def", 0, [751]], ["spontaneous abortion medical definition", 0, [512, 546]], ["spontaneous abortion definition acog", 0, [751]]], {"i": "spontaneous abortion definition according to who", "q": "aPtnZDY8HQzo44uUTgMShCpl0VQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["spontaneous abortion definition according to who", "induced abortion definition according to who", "miscarriage definition according to who", "spontaneous abortion definition who", "what is a spontaneous abortion mean", "what is abortion spontaneous", "spontaneous abortion acronym", "spontaneous abortion def", "spontaneous abortion medical definition", "spontaneous abortion definition acog"], "self_loops": [0], "tags": {"i": "spontaneous abortion definition according to who", "q": "aPtnZDY8HQzo44uUTgMShCpl0VQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "criminal abortion definition according to who", "datetime": "2026-03-12 19:33:48.411353", "source": "google", "data": ["criminal abortion definition according to who", [["criminal abortion definition according to who", 0, [512]], ["illegal abortion definition according to who", 0, [22, 30]], ["what is criminal abortion", 0, [512, 390, 650]], ["what is abortion according to who", 0, [512, 390, 650]], ["types of abortion according to who", 0, [512, 390, 650]], ["criminal abortion california", 0, [751]], ["abortion definition according to who", 0, [512, 546]], ["criminal abortion definition", 0, [512, 546]], ["define criminal abortion", 0, [512, 546]]], {"i": "criminal abortion definition according to who", "q": "qrWZYjpC7ST62CgifU8AdbDKamo", "t": {"bpc": false, "tlw": false}}], "suggests": ["criminal abortion definition according to who", "illegal abortion definition according to who", "what is criminal abortion", "what is abortion according to who", "types of abortion according to who", "criminal abortion california", "abortion definition according to who", "criminal abortion definition", "define criminal abortion"], "self_loops": [0], "tags": {"i": "criminal abortion definition according to who", "q": "qrWZYjpC7ST62CgifU8AdbDKamo", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion definition according to who", "datetime": "2026-03-12 19:33:49.447066", "source": "google", "data": ["threatened abortion definition according to who", [["threatened abortion definition according to who", 0, [512]], ["inevitable abortion definition according to who", 0, [22, 30]], ["types of abortion threatened", 0, [512, 390, 650]], ["what do you mean by threatened abortion", 0, [512, 390, 650]], ["what is threatened abortion", 0, [512, 390, 650]], ["types of abortion threatened inevitable", 0, [512, 390, 650]], ["what is threatened abortion in pregnancy", 0, [512, 390, 650]], ["threatened abortion quizlet", 0, [751]], ["abortion definition according to who", 0, [512, 546]], ["threatened definition biology", 0, [751]]], {"i": "threatened abortion definition according to who", "q": "mJDv3Pife2d219LnbT9qdaNEZBk", "t": {"bpc": false, "tlw": false}}], "suggests": ["threatened abortion definition according to who", "inevitable abortion definition according to who", "types of abortion threatened", "what do you mean by threatened abortion", "what is threatened abortion", "types of abortion threatened inevitable", "what is threatened abortion in pregnancy", "threatened abortion quizlet", "abortion definition according to who", "threatened definition biology"], "self_loops": [0], "tags": {"i": "threatened abortion definition according to who", "q": "mJDv3Pife2d219LnbT9qdaNEZBk", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition oxford dictionary", "datetime": "2026-03-12 19:33:50.883045", "source": "google", "data": ["abortion definition oxford dictionary", [["abortion definition oxford dictionary", 0, [512]], ["abortion meaning in english oxford", 0, [22, 30]], ["abortion definition oxford", 0, [512, 390, 650]], ["abortion definition dictionary", 0, [512, 390, 650]], ["abortion dictionary meaning", 0, [512, 390, 650]], ["oxford dictionary abortion", 0, [512, 546]]], {"i": "abortion definition oxford dictionary", "q": "GkU23Fd1IpIJxUWT4_VcGzBHyG4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion definition oxford dictionary", "abortion meaning in english oxford", "abortion definition oxford", "abortion definition dictionary", "abortion dictionary meaning", "oxford dictionary abortion"], "self_loops": [0], "tags": {"i": "abortion definition oxford dictionary", "q": "GkU23Fd1IpIJxUWT4_VcGzBHyG4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion oxford dictionary", "datetime": "2026-03-12 19:33:52.229716", "source": "google", "data": ["abortion oxford dictionary", [["abortion oxford dictionary", 0, [512]], ["abortion definition oxford dictionary", 0, [22, 30]], ["abortion definition oxford", 0, [512, 390, 650]], ["abortion dictionary meaning", 0, [512, 390, 650]], ["abortion root word", 0, [512, 390, 650]], ["what is abortion article", 0, [512, 390, 650]]], {"i": "abortion oxford dictionary", "q": "SjJiZfK5b8kVoBKmLmgqG6VlVCQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion oxford dictionary", "abortion definition oxford dictionary", "abortion definition oxford", "abortion dictionary meaning", "abortion root word", "what is abortion article"], "self_loops": [0], "tags": {"i": "abortion oxford dictionary", "q": "SjJiZfK5b8kVoBKmLmgqG6VlVCQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "define abortion cdc", "datetime": "2026-03-12 19:33:53.707018", "source": "google", "data": ["define abortion cdc", [["define abortion cdc", 0, [22, 30]], ["abortion definition cdc", 0, [22, 30]], ["miscarriage definition cdc", 0, [22, 30]], ["complete abortion definition", 0, [512, 390, 650]], ["define abortion medical", 0, [546, 649]]], {"i": "define abortion cdc", "q": "UXrKWveQXnowlirvVQ4b1p2wO_I", "t": {"bpc": false, "tlw": false}}], "suggests": ["define abortion cdc", "abortion definition cdc", "miscarriage definition cdc", "complete abortion definition", "define abortion medical"], "self_loops": [0], "tags": {"i": "define abortion cdc", "q": "UXrKWveQXnowlirvVQ4b1p2wO_I", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition according to cdc", "datetime": "2026-03-12 19:33:55.029521", "source": "google", "data": ["abortion definition according to cdc", [["abortion definition according to cdc", 0, [22, 30]], ["definition of abortion cdc", 0, [512, 390, 650]], ["types of abortion according to who", 0, [512, 390, 650]], ["what is abortion according to who", 0, [512, 390, 650]], ["types of abortion definition", 0, [512, 390, 650]], ["abortion definition according to who", 0, [512, 546]]], {"i": "abortion definition according to cdc", "q": "q_5hnMdGzhlew6-2pTu4MD3BfEw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition according to cdc", "definition of abortion cdc", "types of abortion according to who", "what is abortion according to who", "types of abortion definition", "abortion definition according to who"], "self_loops": [0], "tags": {"i": "abortion definition according to cdc", "q": "q_5hnMdGzhlew6-2pTu4MD3BfEw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in law philippines", "datetime": "2026-03-12 19:33:55.990491", "source": "google", "data": ["abortion meaning in law philippines", [["abortion meaning in law philippines", 0, [22, 30]], ["is abortion a crime in the philippines", 0, [512, 390, 650]], ["is abortion is legal in philippines", 0, [512, 390, 650]], ["is abortion illegal in philippines", 0, [512, 390, 650]], ["abortion laws in philippines", 0, [512, 546]], ["is abortion legal in the philippines 2020", 0, [751]]], {"i": "abortion meaning in law philippines", "q": "xHjLS9g2RPUn-DssBHcra-CGESA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in law philippines", "is abortion a crime in the philippines", "is abortion is legal in philippines", "is abortion illegal in philippines", "abortion laws in philippines", "is abortion legal in the philippines 2020"], "self_loops": [0], "tags": {"i": "abortion meaning in law philippines", "q": "xHjLS9g2RPUn-DssBHcra-CGESA", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition legal", "datetime": "2026-03-12 19:33:57.354149", "source": "google", "data": ["abortion definition legal", [["abortion definition legal", 0, [512]], ["abortion definition law", 0, [22, 30]], ["abortion legal meaning", 0, [22, 30]], ["legal abortion definition in hindi", 0, [22, 30]], ["legal abortion definition according to who", 0, [22, 30]], ["legal abortion definition in india", 0, [22, 30]], ["abortion defined legally", 0, [751]]], {"i": "abortion definition legal", "q": "c5oI6jPBcMGzL6jmCBaYOoHc2qc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition legal", "abortion definition law", "abortion legal meaning", "legal abortion definition in hindi", "legal abortion definition according to who", "legal abortion definition in india", "abortion defined legally"], "self_loops": [0], "tags": {"i": "abortion definition legal", "q": "c5oI6jPBcMGzL6jmCBaYOoHc2qc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition uk law", "datetime": "2026-03-12 19:33:58.264886", "source": "google", "data": ["abortion definition uk law", [["abortion definition uk law", 0, [22, 30]], ["abortion laws in england", 0, [512, 390, 650]], ["what is the current uk law on abortion", 0, [512, 390, 650]], ["abortion law united kingdom", 0, [546, 649]], ["abortion laws uk vs us", 0, [751]]], {"i": "abortion definition uk law", "q": "kNB9vL0CDvGFShBLC2qyJsmUdxA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition uk law", "abortion laws in england", "what is the current uk law on abortion", "abortion law united kingdom", "abortion laws uk vs us"], "self_loops": [0], "tags": {"i": "abortion definition uk law", "q": "kNB9vL0CDvGFShBLC2qyJsmUdxA", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion act definition", "datetime": "2026-03-12 19:33:59.345592", "source": "google", "data": ["abortion act definition", [["abortion act definition", 0, [22, 30]], ["abortion legal definition", 0, [22, 30]], ["abortion law definition", 0, [22, 30]], ["legal abortion definition in hindi", 0, [22, 30]], ["legal abortion definition according to who", 0, [22, 30]], ["legal abortion definition in india", 0, [22, 30]], ["act abortion laws", 0, [512, 390, 650]], ["what is the abortion act", 0, [512, 390, 650]], ["abortion act in india", 0, [512, 390, 650]], ["abortion definition dictionary", 0, [512, 546]]], {"i": "abortion act definition", "q": "0u__HLA537DzNbIAH2qAxMcrXfw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion act definition", "abortion legal definition", "abortion law definition", "legal abortion definition in hindi", "legal abortion definition according to who", "legal abortion definition in india", "act abortion laws", "what is the abortion act", "abortion act in india", "abortion definition dictionary"], "self_loops": [0], "tags": {"i": "abortion act definition", "q": "0u__HLA537DzNbIAH2qAxMcrXfw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion defined by law", "datetime": "2026-03-12 19:34:00.588797", "source": "google", "data": ["abortion defined by law", [["abortion defined by law", 0, [22, 30]], ["abortion meaning law", 0, [22, 30]], ["what is considered an abortion by law", 0, [512, 390, 650]], ["abortion defined legally", 0, [751]], ["abortion definition law", 0, [512, 546]], ["abortion definition legal", 0, [512, 546]]], {"i": "abortion defined by law", "q": "pqQemTS_z_yWgbE7v6Un-nDFGGk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion defined by law", "abortion meaning law", "what is considered an abortion by law", "abortion defined legally", "abortion definition law", "abortion definition legal"], "self_loops": [0], "tags": {"i": "abortion defined by law", "q": "pqQemTS_z_yWgbE7v6Un-nDFGGk", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion defined legally", "datetime": "2026-03-12 19:34:01.954545", "source": "google", "data": ["abortion defined legally", [["define abortion legal", 0, [22, 10, 30]], ["what type of abortion is illegal", 0, [512, 390, 650]], ["laws on abortion", 0, [512, 390, 650]], ["abortion defined by law", 0, [751]], ["abortion definition legal", 0, [512, 546]], ["abortion definition law", 0, [512, 546]]], {"i": "abortion defined legally", "q": "BvTWbukVL7RmypofiUBIGfODM3k", "t": {"bpc": false, "tlw": false}}], "suggests": ["define abortion legal", "what type of abortion is illegal", "laws on abortion", "abortion defined by law", "abortion definition legal", "abortion definition law"], "self_loops": [], "tags": {"i": "abortion defined legally", "q": "BvTWbukVL7RmypofiUBIGfODM3k", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion merriam webster", "datetime": "2026-03-12 19:34:02.967066", "source": "google", "data": ["abortion merriam webster", [["abortion merriam webster", 0, [512]], ["miscarriage merriam webster", 0, [22, 30]], ["abortion definition merriam webster", 0, [22, 30]], ["abortion definition webster", 0, [512, 390, 650]], ["abortion definition oxford", 0, [512, 390, 650]], ["abortion webster dictionary", 0, [751]]], {"i": "abortion merriam webster", "q": "nA4aP4Dka4sKMyaB8Vtwun9t8Cw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion merriam webster", "miscarriage merriam webster", "abortion definition merriam webster", "abortion definition webster", "abortion definition oxford", "abortion webster dictionary"], "self_loops": [0], "tags": {"i": "abortion merriam webster", "q": "nA4aP4Dka4sKMyaB8Vtwun9t8Cw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition webster dictionary", "datetime": "2026-03-12 19:34:04.240183", "source": "google", "data": ["abortion definition webster dictionary", [["abortion definition webster dictionary", 0, [22, 30]], ["abortion definition webster", 0, [512, 390, 650]], ["abortion definition dictionary", 0, [512, 390, 650]], ["what does the word abortion mean", 0, [512, 390, 650]], ["is abortion a bad word", 0, [512, 390, 650]], ["abortion webster dictionary", 0, [751]], ["define abortion webster's dictionary", 0, [751]]], {"i": "abortion definition webster dictionary", "q": "-2e4l-0vyvkfUtL6D7CawpMtYCc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition webster dictionary", "abortion definition webster", "abortion definition dictionary", "what does the word abortion mean", "is abortion a bad word", "abortion webster dictionary", "define abortion webster's dictionary"], "self_loops": [0], "tags": {"i": "abortion definition webster dictionary", "q": "-2e4l-0vyvkfUtL6D7CawpMtYCc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion webster's dictionary", "datetime": "2026-03-12 19:34:05.127253", "source": "google", "data": ["abortion webster's dictionary", [["abortion webster's dictionary", 0, [512]], ["miscarriage webster's dictionary", 0, [22, 30]], ["abortion definition webster dictionary", 0, [22, 30]], ["abortion definition webster", 0, [512, 390, 650]], ["abortion definition oxford", 0, [512, 390, 650]], ["abortion dictionary meaning", 0, [512, 390, 650]], ["abortion definition dictionary", 0, [512, 390, 650]], ["is abortion a bad word", 0, [512, 390, 650]], ["abortion webster", 0, [751]]], {"i": "abortion webster's dictionary", "q": "hqQU_Oh1SrAbgRDqcjTmS5OExoQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion webster's dictionary", "miscarriage webster's dictionary", "abortion definition webster dictionary", "abortion definition webster", "abortion definition oxford", "abortion dictionary meaning", "abortion definition dictionary", "is abortion a bad word", "abortion webster"], "self_loops": [0], "tags": {"i": "abortion webster's dictionary", "q": "hqQU_Oh1SrAbgRDqcjTmS5OExoQ", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition easy", "datetime": "2026-03-12 19:34:06.536339", "source": "google", "data": ["abortion definition easy", [["abortion definition easy", 0, [22, 30]], ["abortion meaning easy", 0, [22, 30]], ["abortion definition simple", 0, [22, 30]], ["inevitable abortion definition easy", 0, [22, 30]], ["abortion definition types", 0, [512, 390, 650]]], {"i": "abortion definition easy", "q": "8sRZzh8eW7R-iWLRM5x-Rj94M08", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition easy", "abortion meaning easy", "abortion definition simple", "inevitable abortion definition easy", "abortion definition types"], "self_loops": [0], "tags": {"i": "abortion definition easy", "q": "8sRZzh8eW7R-iWLRM5x-Rj94M08", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic abortion definition simple", "datetime": "2026-03-12 19:34:07.829807", "source": "google", "data": ["septic abortion definition simple", [["septic abortion definition simple", 0, [22, 30]], ["septic abortion means", 0, [512, 390, 650]], ["septic abortion organisms", 0, [512, 390, 650]], ["what is septic abortion", 0, [512, 390, 650]], ["septic abortion icd 10", 0, [512, 390, 650]], ["septic abortion symptoms", 0, [512, 546]], ["septic abortion wikem", 0, [512, 546]], ["septic abortion treatment", 0, [512, 546]], ["septic abortion unit", 0, [751]]], {"i": "septic abortion definition simple", "q": "CPAjQTCWNE1jfK5Opmya0r3whZM", "t": {"bpc": false, "tlw": false}}], "suggests": ["septic abortion definition simple", "septic abortion means", "septic abortion organisms", "what is septic abortion", "septic abortion icd 10", "septic abortion symptoms", "septic abortion wikem", "septic abortion treatment", "septic abortion unit"], "self_loops": [0], "tags": {"i": "septic abortion definition simple", "q": "CPAjQTCWNE1jfK5Opmya0r3whZM", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion definition simple", "datetime": "2026-03-12 19:34:09.329322", "source": "google", "data": ["spontaneous abortion definition simple", [["spontaneous abortion definition simple", 0, [22, 30]], ["induced abortion simple definition", 0, [22, 30]], ["what is a spontaneous abortion mean", 0, [512, 390, 650]], ["what is the definition of spontaneous abortion", 0, [512, 390, 650]], ["what does a spontaneous abortion mean", 0, [512, 390, 650]], ["spontaneous abortion def", 0, [751]], ["spontaneous abortion medical definition", 0, [512, 546]], ["spontaneous abortion synonyms", 0, [546, 649]], ["spontaneous abortion acronym", 0, [751]]], {"i": "spontaneous abortion definition simple", "q": "3fxl0rm2APbsqkyHrgEOVp-416s", "t": {"bpc": false, "tlw": false}}], "suggests": ["spontaneous abortion definition simple", "induced abortion simple definition", "what is a spontaneous abortion mean", "what is the definition of spontaneous abortion", "what does a spontaneous abortion mean", "spontaneous abortion def", "spontaneous abortion medical definition", "spontaneous abortion synonyms", "spontaneous abortion acronym"], "self_loops": [0], "tags": {"i": "spontaneous abortion definition simple", "q": "3fxl0rm2APbsqkyHrgEOVp-416s", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "complete abortion definition simple", "datetime": "2026-03-12 19:34:10.140188", "source": "google", "data": ["complete abortion definition simple", [["complete abortion definition simple", 0, [22, 30]], ["spontaneous abortion definition simple", 0, [22, 30]], ["complete abortion definition", 0, [512, 390, 650]], ["what is the meaning of complete abortion", 0, [512, 390, 650]], ["complete abortion treatment", 0, [512, 390, 650]], ["abortion definition simple", 0, [512, 546]], ["complete abortion vs missed abortion", 0, [512, 546]]], {"i": "complete abortion definition simple", "q": "2DsZnghe8lXNxy6WP_7-CtIcHhw", "t": {"bpc": false, "tlw": false}}], "suggests": ["complete abortion definition simple", "spontaneous abortion definition simple", "complete abortion definition", "what is the meaning of complete abortion", "complete abortion treatment", "abortion definition simple", "complete abortion vs missed abortion"], "self_loops": [0], "tags": {"i": "complete abortion definition simple", "q": "2DsZnghe8lXNxy6WP_7-CtIcHhw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion simple definition", "datetime": "2026-03-12 19:34:11.272298", "source": "google", "data": ["threatened abortion simple definition", [["threatened abortion simple definition", 0, [512]], ["inevitable abortion simple definition", 0, [22, 30]], ["what do you mean by threatened abortion", 0, [512, 390, 650]], ["what is threatened abortion", 0, [512, 390, 650]], ["types of abortion threatened", 0, [512, 390, 650]], ["what is threatened abortion in pregnancy", 0, [512, 390, 650]], ["threatened abortion definition", 0, [512, 546]], ["threatened abortion medical term", 0, [512, 546]], ["threatened abortion vs spontaneous abortion", 0, [512, 546]], ["threatened abortion vs inevitable abortion", 0, [512, 546]]], {"i": "threatened abortion simple definition", "q": "ncXvR6X7L7S4CLHkA0wbceaO8A4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["threatened abortion simple definition", "inevitable abortion simple definition", "what do you mean by threatened abortion", "what is threatened abortion", "types of abortion threatened", "what is threatened abortion in pregnancy", "threatened abortion definition", "threatened abortion medical term", "threatened abortion vs spontaneous abortion", "threatened abortion vs inevitable abortion"], "self_loops": [0], "tags": {"i": "threatened abortion simple definition", "q": "ncXvR6X7L7S4CLHkA0wbceaO8A4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable abortion simple definition", "datetime": "2026-03-12 19:34:12.533031", "source": "google", "data": ["inevitable abortion simple definition", [["inevitable abortion simple definition", 0, [512]], ["threatened abortion simple definition", 0, [22, 30]], ["missed abortion simple definition", 0, [22, 30]], ["inevitable abortion definition", 0, [512, 390, 650]], ["inevitable abortion causes", 0, [512, 390, 650]], ["inevitable abortion treatment", 0, [512, 390, 650]], ["inevitable.abortion", 0, [512, 546]], ["inevitable sab", 0, [512, 546]], ["inevitable abortion vs complete abortion", 0, [512, 546]]], {"i": "inevitable abortion simple definition", "q": "z2vtqa7-gCVwdPx3OFMTbxhgSlo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["inevitable abortion simple definition", "threatened abortion simple definition", "missed abortion simple definition", "inevitable abortion definition", "inevitable abortion causes", "inevitable abortion treatment", "inevitable.abortion", "inevitable sab", "inevitable abortion vs complete abortion"], "self_loops": [0], "tags": {"i": "inevitable abortion simple definition", "q": "z2vtqa7-gCVwdPx3OFMTbxhgSlo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion simple definition", "datetime": "2026-03-12 19:34:13.570297", "source": "google", "data": ["missed abortion simple definition", [["missed abortion simple definition", 0, [512]], ["spontaneous abortion simple definition", 0, [22, 30]], ["missed abortion definition", 0, [512, 390, 650]], ["explain missed abortion", 0, [512, 390, 650]], ["what is mean by missed abortion", 0, [512, 390, 650]], ["what does it mean by missed abortion", 0, [512, 390, 650]], ["missed abortion medical definition", 0, [512, 546]], ["missed abortion def", 0, [751]], ["missed abortion signs", 0, [512, 546]], ["missed abortion medical term", 0, [512, 546]]], {"i": "missed abortion simple definition", "q": "XgdYdeZ_DFQY71XnwNFvie-niQg", "t": {"bpc": false, "tlw": false}}], "suggests": ["missed abortion simple definition", "spontaneous abortion simple definition", "missed abortion definition", "explain missed abortion", "what is mean by missed abortion", "what does it mean by missed abortion", "missed abortion medical definition", "missed abortion def", "missed abortion signs", "missed abortion medical term"], "self_loops": [0], "tags": {"i": "missed abortion simple definition", "q": "XgdYdeZ_DFQY71XnwNFvie-niQg", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "induced abortion simple definition", "datetime": "2026-03-12 19:34:14.882528", "source": "google", "data": ["induced abortion simple definition", [["induced abortion simple definition", 0, [512]], ["spontaneous abortion simple definition", 0, [22, 30]], ["what is induced abortion class 12", 0, [512, 390, 650]], ["induced abortion meaning in english", 0, [512, 390, 650]], ["what is the difference between spontaneous and induced abortion", 0, [512, 390, 650]], ["induced abortion medical definition", 0, [512, 546]], ["induced abortion definition", 0, [512, 546]], ["induced abortion definition dictionary", 0, [546, 649]], ["induced abortions meaning", 0, [546, 649]], ["induced abortion def", 0, [546, 649]]], {"i": "induced abortion simple definition", "q": "wah1l6Z6z9soMTTZkdjD7Nic88s", "t": {"bpc": false, "tlw": false}}], "suggests": ["induced abortion simple definition", "spontaneous abortion simple definition", "what is induced abortion class 12", "induced abortion meaning in english", "what is the difference between spontaneous and induced abortion", "induced abortion medical definition", "induced abortion definition", "induced abortion definition dictionary", "induced abortions meaning", "induced abortion def"], "self_loops": [0], "tags": {"i": "induced abortion simple definition", "q": "wah1l6Z6z9soMTTZkdjD7Nic88s", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "recurrent abortion simple definition", "datetime": "2026-03-12 19:34:16.143055", "source": "google", "data": ["recurrent abortion simple definition", [["recurrent abortion simple definition", 0, [22, 30]], ["recurrent abortion definition", 0, [512, 390, 650]], ["causes of recurrent abortion", 0, [512, 390, 650]], ["recurrent abortion treatment", 0, [512, 390, 650]], ["most common cause of recurrent abortion", 0, [512, 390, 650]], ["recurrent abortion reasons", 0, [751]], ["recurrent abortion workup", 0, [512, 546]], ["recurrent spontaneous abortion", 0, [512, 546]], ["recurrent spontaneous abortion workup", 0, [751]]], {"i": "recurrent abortion simple definition", "q": "vh1LHl7ZLEAWljPJdY5U-x-awhs", "t": {"bpc": false, "tlw": false}}], "suggests": ["recurrent abortion simple definition", "recurrent abortion definition", "causes of recurrent abortion", "recurrent abortion treatment", "most common cause of recurrent abortion", "recurrent abortion reasons", "recurrent abortion workup", "recurrent spontaneous abortion", "recurrent spontaneous abortion workup"], "self_loops": [0], "tags": {"i": "recurrent abortion simple definition", "q": "vh1LHl7ZLEAWljPJdY5U-x-awhs", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion definition acog", "datetime": "2026-03-12 19:34:17.528605", "source": "google", "data": ["missed abortion definition acog", [["missed abortion definition acog", 0, [512]], ["spontaneous abortion definition acog", 0, [22, 30]], ["incomplete abortion definition acog", 0, [22, 30]], ["acog missed abortion criteria", 0, [512, 390, 650]], ["types of abortion acog", 0, [512, 390, 650]], ["missed abortion vs inevitable", 0, [512, 390, 650]], ["missed abortion acog", 0, [512, 546]], ["missed abortion def", 0, [751]], ["missed abortion management acog", 0, [512, 546]], ["missed abortion definition", 0, [512, 546]]], {"i": "missed abortion definition acog", "q": "AuDLWAnu6v0mv-X3Ny8pt1ycUIo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["missed abortion definition acog", "spontaneous abortion definition acog", "incomplete abortion definition acog", "acog missed abortion criteria", "types of abortion acog", "missed abortion vs inevitable", "missed abortion acog", "missed abortion def", "missed abortion management acog", "missed abortion definition"], "self_loops": [0], "tags": {"i": "missed abortion definition acog", "q": "AuDLWAnu6v0mv-X3Ny8pt1ycUIo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion definition acog", "datetime": "2026-03-12 19:34:18.609085", "source": "google", "data": ["spontaneous abortion definition acog", [["spontaneous abortion definition acog", 0, [22, 30]], ["acog spontaneous abortion guidelines", 0, [512, 390, 650]], ["missed abortion definition acog", 0, [512, 390, 650]], ["acog definition of abortion", 0, [512, 390, 650]], ["types of abortion acog", 0, [512, 390, 650]], ["spontaneous abortion acog", 0, [512, 546]], ["spontaneous abortion acronym", 0, [751]], ["spontaneous abortion definition", 0, [512, 546]], ["spontaneous abortion def", 0, [751]]], {"i": "spontaneous abortion definition acog", "q": "vKdjMAzG4ohcr_-WCGnHxhgi-Tg", "t": {"bpc": false, "tlw": false}}], "suggests": ["spontaneous abortion definition acog", "acog spontaneous abortion guidelines", "missed abortion definition acog", "acog definition of abortion", "types of abortion acog", "spontaneous abortion acog", "spontaneous abortion acronym", "spontaneous abortion definition", "spontaneous abortion def"], "self_loops": [0], "tags": {"i": "spontaneous abortion definition acog", "q": "vKdjMAzG4ohcr_-WCGnHxhgi-Tg", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion medical definition acog", "datetime": "2026-03-12 19:34:19.833077", "source": "google", "data": ["abortion medical definition acog", [["abortion medical definition acog", 0, [22, 30]], ["types of abortion acog", 0, [512, 390, 650]], ["acog definition of abortion", 0, [512, 390, 650]], ["missed abortion definition acog", 0, [512, 390, 650]], ["acog abortion policy", 0, [512, 390, 650]], ["acog abortion guidelines", 0, [512, 390, 650]], ["acog medical abortion guidelines", 0, [546, 649]], ["acog medical abortion", 0, [512, 546]]], {"i": "abortion medical definition acog", "q": "TnS7xbQfKHOKyG9LlRI5EPxvpIo", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion medical definition acog", "types of abortion acog", "acog definition of abortion", "missed abortion definition acog", "acog abortion policy", "acog abortion guidelines", "acog medical abortion guidelines", "acog medical abortion"], "self_loops": [0], "tags": {"i": "abortion medical definition acog", "q": "TnS7xbQfKHOKyG9LlRI5EPxvpIo", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion definition acog", "datetime": "2026-03-12 19:34:21.229873", "source": "google", "data": ["threatened abortion definition acog", [["threatened abortion definition acog", 0, [22, 30]], ["inevitable abortion definition acog", 0, [22, 30]], ["acog definition of abortion", 0, [512, 390, 650]], ["types of abortion acog", 0, [512, 390, 650]], ["missed abortion definition acog", 0, [512, 390, 650]], ["threatened abortion acog", 0, [512, 546]], ["threatened abortion definition", 0, [512, 546]], ["threatened abortion management acog", 0, [512, 546]], ["threatened abortion diagnosis", 0, [512, 546]], ["threatened abortion aafp", 0, [546, 649]]], {"i": "threatened abortion definition acog", "q": "ftRt-FTL8YEtZzTIY1qhmAV-05s", "t": {"bpc": false, "tlw": false}}], "suggests": ["threatened abortion definition acog", "inevitable abortion definition acog", "acog definition of abortion", "types of abortion acog", "missed abortion definition acog", "threatened abortion acog", "threatened abortion definition", "threatened abortion management acog", "threatened abortion diagnosis", "threatened abortion aafp"], "self_loops": [0], "tags": {"i": "threatened abortion definition acog", "q": "ftRt-FTL8YEtZzTIY1qhmAV-05s", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable abortion definition acog", "datetime": "2026-03-12 19:34:22.677041", "source": "google", "data": ["inevitable abortion definition acog", [["inevitable abortion definition acog", 0, [22, 30]], ["missed abortion definition acog", 0, [22, 30]], ["threatened abortion definition acog", 0, [22, 30]], ["incomplete abortion definition acog", 0, [22, 30]], ["acog definition of abortion", 0, [512, 390, 650]], ["types of abortion acog", 0, [512, 390, 650]], ["inevitable abortion definition", 0, [512, 390, 650]], ["inevitable ab", 0, [512, 546]], ["inevitable abortion icd-10", 0, [512, 546]], ["inevitable abortion wikem", 0, [546, 649]]], {"i": "inevitable abortion definition acog", "q": "UcKwCNwK6CcBxXjRb1rMhDdbfzQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["inevitable abortion definition acog", "missed abortion definition acog", "threatened abortion definition acog", "incomplete abortion definition acog", "acog definition of abortion", "types of abortion acog", "inevitable abortion definition", "inevitable ab", "inevitable abortion icd-10", "inevitable abortion wikem"], "self_loops": [0], "tags": {"i": "inevitable abortion definition acog", "q": "UcKwCNwK6CcBxXjRb1rMhDdbfzQ", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic abortion definition acog", "datetime": "2026-03-12 19:34:23.682987", "source": "google", "data": ["septic abortion definition acog", [["septic abortion definition acog", 0, [22, 30]], ["types of abortion acog", 0, [512, 390, 650]], ["acog definition of abortion", 0, [512, 390, 650]], ["missed abortion definition acog", 0, [512, 390, 650]], ["acog abortion guidelines", 0, [512, 390, 650]], ["septic abortion acog", 0, [512, 546]], ["septic abortion treatment acog", 0, [512, 546]], ["septic abortion antibiotics acog", 0, [512, 546]], ["septic abortion wikem", 0, [512, 546]]], {"i": "septic abortion definition acog", "q": "voBBeL-TmRaBg68bGzM_pLkMvrM", "t": {"bpc": false, "tlw": false}}], "suggests": ["septic abortion definition acog", "types of abortion acog", "acog definition of abortion", "missed abortion definition acog", "acog abortion guidelines", "septic abortion acog", "septic abortion treatment acog", "septic abortion antibiotics acog", "septic abortion wikem"], "self_loops": [0], "tags": {"i": "septic abortion definition acog", "q": "voBBeL-TmRaBg68bGzM_pLkMvrM", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "incomplete abortion definition acog", "datetime": "2026-03-12 19:34:25.174809", "source": "google", "data": ["incomplete abortion definition acog", [["incomplete abortion definition acog", 0, [22, 30]], ["missed abortion definition acog", 0, [22, 30]], ["spontaneous abortion definition acog", 0, [22, 30]], ["inevitable abortion definition acog", 0, [22, 30]], ["types of abortion acog", 0, [512, 390, 650]], ["acog definition of abortion", 0, [512, 390, 650]], ["acog missed abortion criteria", 0, [512, 390, 650]], ["incomplete abortion acog", 0, [512, 546]], ["incomplete abortion definition", 0, [512, 546]], ["incomplete abortion d&c", 0, [512, 546]]], {"i": "incomplete abortion definition acog", "q": "A8ehxG4eHYpssRmIYIfIe7-brqw", "t": {"bpc": false, "tlw": false}}], "suggests": ["incomplete abortion definition acog", "missed abortion definition acog", "spontaneous abortion definition acog", "inevitable abortion definition acog", "types of abortion acog", "acog definition of abortion", "acog missed abortion criteria", "incomplete abortion acog", "incomplete abortion definition", "incomplete abortion d&c"], "self_loops": [0], "tags": {"i": "incomplete abortion definition acog", "q": "A8ehxG4eHYpssRmIYIfIe7-brqw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "types of abortion acog", "datetime": "2026-03-12 19:34:26.664298", "source": "google", "data": ["types of abortion acog", [["types of abortion acog", 0, [512]], ["acog abortion guidelines", 0, [512, 390, 650]], ["acog definition of abortion", 0, [512, 390, 650]], ["acog abortion policy", 0, [512, 390, 650]], ["types of acog", 0, [546, 649]]], {"i": "types of abortion acog", "q": "AVyInLlfo4-d0JQzBNZNo-WtzXw", "t": {"bpc": false, "tlw": false}}], "suggests": ["types of abortion acog", "acog abortion guidelines", "acog definition of abortion", "acog abortion policy", "types of acog"], "self_loops": [0], "tags": {"i": "types of abortion acog", "q": "AVyInLlfo4-d0JQzBNZNo-WtzXw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "acog abortion policy", "datetime": "2026-03-12 19:34:28.035895", "source": "google", "data": ["acog abortion policy", [["acog abortion policy", 0, [512]], ["acog abortion guidelines", 0, [512, 390, 650]], ["types of abortion acog", 0, [512, 390, 650]], ["acog definition of abortion", 0, [512, 390, 650]], ["acog abortion access", 0, [751]], ["acog abortion guidelines pdf", 0, [512, 546]], ["acog abortion", 0, [512, 546]]], {"i": "acog abortion policy", "q": "2P_CG2vn6xKqGKiVDuuHQ5Az67w", "t": {"bpc": false, "tlw": false}}], "suggests": ["acog abortion policy", "acog abortion guidelines", "types of abortion acog", "acog definition of abortion", "acog abortion access", "acog abortion guidelines pdf", "acog abortion"], "self_loops": [0], "tags": {"i": "acog abortion policy", "q": "2P_CG2vn6xKqGKiVDuuHQ5Az67w", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition in nursing ppt", "datetime": "2026-03-12 19:34:29.461982", "source": "google", "data": ["abortion definition in nursing ppt", [["abortion definition in nursing ppt", 0, [512]], ["what is abortion ppt", 0, [512, 390, 650]], ["what is ppt in nursing", 0, [512, 390, 650]], ["what is abortion in nursing", 0, [512, 390, 650]], ["types of abortion ppt", 0, [512, 390, 650]], ["definition abortion nursing", 0, [751]], ["abortion in nursing lecture", 0, [751]], ["abortion in nursing ppt", 0, [751]]], {"i": "abortion definition in nursing ppt", "q": "YyXx0kxlIspT1qZJyvcjX2ef0GI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition in nursing ppt", "what is abortion ppt", "what is ppt in nursing", "what is abortion in nursing", "types of abortion ppt", "definition abortion nursing", "abortion in nursing lecture", "abortion in nursing ppt"], "self_loops": [0], "tags": {"i": "abortion definition in nursing ppt", "q": "YyXx0kxlIspT1qZJyvcjX2ef0GI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition in nursing according to who", "datetime": "2026-03-12 19:34:30.711389", "source": "google", "data": ["abortion definition in nursing according to who", [["abortion definition in nursing according to who", 0, [22, 30]], ["what is abortion according to who", 0, [512, 390, 650]], ["types of abortion according to who", 0, [512, 390, 650]], ["what is abortion in nursing", 0, [512, 390, 650]], ["abortion definition according to who", 0, [512, 546]], ["abortion definition webster dictionary", 0, [751]], ["abortion definition world health organisation", 0, [751]], ["abortion definition acog", 0, [512, 546]]], {"i": "abortion definition in nursing according to who", "q": "QyfnLV1RFFH3w-8REChVl5_Xtdk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition in nursing according to who", "what is abortion according to who", "types of abortion according to who", "what is abortion in nursing", "abortion definition according to who", "abortion definition webster dictionary", "abortion definition world health organisation", "abortion definition acog"], "self_loops": [0], "tags": {"i": "abortion definition in nursing according to who", "q": "QyfnLV1RFFH3w-8REChVl5_Xtdk", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition in nursing pdf", "datetime": "2026-03-12 19:34:32.016211", "source": "google", "data": ["abortion definition in nursing pdf", [["abortion definition in nursing pdf", 0, [22, 30]], ["what is abortion pdf", 0, [512, 390, 650]], ["what is abortion in nursing", 0, [512, 390, 650]], ["explain abortion in detail", 0, [512, 390, 650]], ["types of abortion pdf", 0, [512, 390, 650]], ["definition abortion nursing", 0, [751]]], {"i": "abortion definition in nursing pdf", "q": "qoV1eLCLPeE3Ioh_N7Vszcv_NQY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition in nursing pdf", "what is abortion pdf", "what is abortion in nursing", "explain abortion in detail", "types of abortion pdf", "definition abortion nursing"], "self_loops": [0], "tags": {"i": "abortion definition in nursing pdf", "q": "qoV1eLCLPeE3Ioh_N7Vszcv_NQY", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition in nursing in hindi", "datetime": "2026-03-12 19:34:33.145746", "source": "google", "data": ["abortion definition in nursing in hindi", [["abortion definition in nursing in hindi", 0, [22, 30]], ["abortion in nursing", 0, [512, 546]], ["abortion nursing lecture in hindi", 0, [751]], ["abortion definition nursing", 0, [512, 546]], ["abortion nursing lecture in english", 0, [751]]], {"i": "abortion definition in nursing in hindi", "q": "B2_4fGbHRZZ5ZUz4CsucxBoCrec", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition in nursing in hindi", "abortion in nursing", "abortion nursing lecture in hindi", "abortion definition nursing", "abortion nursing lecture in english"], "self_loops": [0], "tags": {"i": "abortion definition in nursing in hindi", "q": "B2_4fGbHRZZ5ZUz4CsucxBoCrec", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition in community health nursing", "datetime": "2026-03-12 19:34:34.776084", "source": "google", "data": ["abortion definition in community health nursing", [["abortion definition in community health nursing", 0, [512]], ["define the community health nursing", 0, [512, 390, 650]], ["explain the concept of community health nursing", 0, [512, 390, 650]], ["what do you mean by community health nursing", 0, [512, 390, 650]], ["examples of community health nursing", 0, [512, 390, 650]], ["what does abortion is health care mean", 0, [512, 546]], ["abortion definition according to who", 0, [512, 546]], ["definition abortion nursing", 0, [751]], ["abortion in nursing", 0, [512, 546]]], {"i": "abortion definition in community health nursing", "q": "zS4olrKrq7KszBmAvMLJPT7CHsQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition in community health nursing", "define the community health nursing", "explain the concept of community health nursing", "what do you mean by community health nursing", "examples of community health nursing", "what does abortion is health care mean", "abortion definition according to who", "definition abortion nursing", "abortion in nursing"], "self_loops": [0], "tags": {"i": "abortion definition in community health nursing", "q": "zS4olrKrq7KszBmAvMLJPT7CHsQ", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "types of abortion definition in nursing", "datetime": "2026-03-12 19:34:36.055745", "source": "google", "data": ["types of abortion definition in nursing", [["types of abortion definition in nursing", 0, [22, 30]], ["types of abortion nursing", 0, [512, 390, 650]], ["types of abortion definition", 0, [512, 390, 650]], ["explain types of abortion", 0, [512, 390, 650]], ["types of abortion and its nursing management", 0, [512, 390, 650]], ["types of abortion methods", 0, [512, 390, 650]], ["types of abortions pdf", 0, [512, 546]], ["nursing definition of abortion", 0, [751]]], {"i": "types of abortion definition in nursing", "q": "HX5LnnfQPIsNMhGNJiwQV4bPMIo", "t": {"bpc": false, "tlw": false}}], "suggests": ["types of abortion definition in nursing", "types of abortion nursing", "types of abortion definition", "explain types of abortion", "types of abortion and its nursing management", "types of abortion methods", "types of abortions pdf", "nursing definition of abortion"], "self_loops": [0], "tags": {"i": "types of abortion definition in nursing", "q": "HX5LnnfQPIsNMhGNJiwQV4bPMIo", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "definition of abortion in nursing wikipedia", "datetime": "2026-03-12 19:34:37.263116", "source": "google", "data": ["definition of abortion in nursing wikipedia", [["definition of abortion in nursing wikipedia", 0, [512]], ["who definition of abortion", 0, [512, 390, 650]], ["nursing definition of abortion", 0, [751]], ["definition of nursing intervention", 0, [751]]], {"i": "definition of abortion in nursing wikipedia", "q": "QyIeo8YOGzaO6QQA-E4yEvbnrj8", "t": {"bpc": false, "tlw": false}}], "suggests": ["definition of abortion in nursing wikipedia", "who definition of abortion", "nursing definition of abortion", "definition of nursing intervention"], "self_loops": [0], "tags": {"i": "definition of abortion in nursing wikipedia", "q": "QyIeo8YOGzaO6QQA-E4yEvbnrj8", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "definition of abortion in nursing slideshare", "datetime": "2026-03-12 19:34:38.344120", "source": "google", "data": ["definition of abortion in nursing slideshare", [["definition of abortion in nursing slideshare", 0, [512]], ["definition of abortion ppt nursing", 0, [22, 30]], ["what is abortion in nursing", 0, [512, 390, 650]], ["what is abortion ppt", 0, [512, 390, 650]], ["abortion in nursing lecture", 0, [751]], ["nursing definition of abortion", 0, [751]]], {"i": "definition of abortion in nursing slideshare", "q": "d6ZINhFQ3VktbUgL02usvPvsYnE", "t": {"bpc": false, "tlw": false}}], "suggests": ["definition of abortion in nursing slideshare", "definition of abortion ppt nursing", "what is abortion in nursing", "what is abortion ppt", "abortion in nursing lecture", "nursing definition of abortion"], "self_loops": [0], "tags": {"i": "definition of abortion in nursing slideshare", "q": "d6ZINhFQ3VktbUgL02usvPvsYnE", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is abortion in nursing", "datetime": "2026-03-12 19:34:39.720139", "source": "google", "data": ["what is abortion in nursing", [["what is abortion in nursing", 0, [512]], ["what is abortion definition in nursing", 0, [22, 30]], ["what is an incomplete abortion in nursing diagnosis", 0, [22, 30]], ["types of abortion nursing", 0, [512, 390, 650]], ["types of abortion and its nursing management", 0, [512, 390, 650]], ["nursing care in abortions", 0, [751]], ["what is abandonment in nursing", 0, [512, 546]], ["what is a nursing interventions", 0, [546, 649]]], {"i": "what is abortion in nursing", "q": "h1V2xBioZz5QB6cK6sqddVbnz2I", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is abortion in nursing", "what is abortion definition in nursing", "what is an incomplete abortion in nursing diagnosis", "types of abortion nursing", "types of abortion and its nursing management", "nursing care in abortions", "what is abandonment in nursing", "what is a nursing interventions"], "self_loops": [0], "tags": {"i": "what is abortion in nursing", "q": "h1V2xBioZz5QB6cK6sqddVbnz2I", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects long term reddit", "datetime": "2026-03-12 19:34:41.127080", "source": "google", "data": ["abortion pill side effects long term reddit", [["abortion pill side effects long term reddit", 0, [22, 30]], ["morning after pill side effects long term reddit", 0, [22, 30]], ["abortion pill reviews reddit", 0, [512, 390, 650]], ["abortion pill side effects long-term", 0, [512, 390, 650]], ["abortion pill side effects reddit", 0, [512, 546]], ["abortion pill symptoms reddit", 0, [512, 546]], ["abortion side effects reddit", 0, [512, 546]], ["abortion pill effects reddit", 0, [512, 546]]], {"i": "abortion pill side effects long term reddit", "q": "IZ5iIBZfffqLLeubKsvn4jnjf-8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill side effects long term reddit", "morning after pill side effects long term reddit", "abortion pill reviews reddit", "abortion pill side effects long-term", "abortion pill side effects reddit", "abortion pill symptoms reddit", "abortion side effects reddit", "abortion pill effects reddit"], "self_loops": [0], "tags": {"i": "abortion pill side effects long term reddit", "q": "IZ5iIBZfffqLLeubKsvn4jnjf-8", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects long term reddit", "datetime": "2026-03-12 19:34:42.475210", "source": "google", "data": ["morning after pill side effects long term reddit", [["morning after pill side effects long term reddit", 0, [22, 30]], ["does the morning after pill have long term effects", 0, [512, 390, 650]], ["long term effects of plan b reddit", 0, [512, 390, 650]], ["plan b side effects long-term reddit", 0, [546, 649]], ["metformin side effects long-term reddit", 0, [546, 649]], ["moringa side effects reddit", 0, [512, 546]]], {"i": "morning after pill side effects long term reddit", "q": "a38sAurmS6Q9Z7NX_fqDT4GOWMU", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects long term reddit", "does the morning after pill have long term effects", "long term effects of plan b reddit", "plan b side effects long-term reddit", "metformin side effects long-term reddit", "moringa side effects reddit"], "self_loops": [0], "tags": {"i": "morning after pill side effects long term reddit", "q": "a38sAurmS6Q9Z7NX_fqDT4GOWMU", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill effects long term", "datetime": "2026-03-12 19:34:43.788676", "source": "google", "data": ["morning after pill effects long term", [], {"i": "morning after pill effects long term", "q": "JpWXWIQxlBIxIS7hyKV4htq0QYM", "t": {"bpc": true, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "morning after pill effects long term", "q": "JpWXWIQxlBIxIS7hyKV4htq0QYM", "t": {"bpc": true, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill effects long term several times", "datetime": "2026-03-12 19:34:44.836251", "source": "google", "data": ["morning after pill effects long term several times", [["morning after pill effects long term several times", 0, [22, 30]], ["is it bad to take morning after pill multiple times", 0, [512, 390, 650]], ["does the morning after pill have long term effects", 0, [512, 390, 650]], ["can taking too many morning after pills be harmful", 0, [512, 390, 650]], ["long term side effects of morning-after pill", 0, [751]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning-after pills works after how long", 0, [751]], ["morning after pill cause longer period", 0, [546, 649]]], {"i": "morning after pill effects long term several times", "q": "I2aLBtPbpsHF40MNcL69p3NvfHs", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill effects long term several times", "is it bad to take morning after pill multiple times", "does the morning after pill have long term effects", "can taking too many morning after pills be harmful", "long term side effects of morning-after pill", "morning after pill side effects a week later", "morning-after pills works after how long", "morning after pill cause longer period"], "self_loops": [0], "tags": {"i": "morning after pill effects long term several times", "q": "I2aLBtPbpsHF40MNcL69p3NvfHs", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does abortion pill have long term side effects", "datetime": "2026-03-12 19:34:45.937560", "source": "google", "data": ["does abortion pill have long term side effects", [["does abortion pill have long term side effects", 0, [512]], ["does the morning after pill have any long lasting side effects", 0, [22, 30]], ["what are the long term effects of the abortion pill", 0, [512, 390, 650]], ["what are the long term side effects of abortion pills", 0, [512, 390, 650]], ["long term effects of medical abortion", 0, [512, 390, 650]], ["does abortion pill have side effects", 0, [512, 546]], ["long term effects of abortion pill on the body", 0, [751]]], {"i": "does abortion pill have long term side effects", "q": "ryGsUySVbmxiFAyLJTTrwyyqoZ0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does abortion pill have long term side effects", "does the morning after pill have any long lasting side effects", "what are the long term effects of the abortion pill", "what are the long term side effects of abortion pills", "long term effects of medical abortion", "does abortion pill have side effects", "long term effects of abortion pill on the body"], "self_loops": [0], "tags": {"i": "does abortion pill have long term side effects", "q": "ryGsUySVbmxiFAyLJTTrwyyqoZ0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what are the long term effects of the abortion pill", "datetime": "2026-03-12 19:34:47.062935", "source": "google", "data": ["what are the long term effects of the abortion pill", [["what are the long term effects of the abortion pill", 0, [512]], ["what are the long term effects of the morning after pill", 0, [22, 30]], ["what are the long term side effects of the abortion pill", 0, [22, 30]], ["what are the long term effects of taking the abortion pill", 0, [22, 30]], ["what are the long term side effects of the morning after pill", 0, [22, 30]], ["what are the side effects of the morning after pill", 0, [22, 30]], ["are there long term effects of the abortion pill", 0, [22, 30]], ["what are the side effects of the first abortion pill", 0, [22, 30]], ["what are the side effects of the morning after pill and how long does it last", 0, [22, 30]], ["what are the negative side effects of the morning after pill", 0, [22, 30]]], {"i": "what are the long term effects of the abortion pill", "q": "wzM7AbXaZ7BnMFX0A9uMAMJzqS8", "t": {"bpc": false, "tlw": false}}], "suggests": ["what are the long term effects of the abortion pill", "what are the long term effects of the morning after pill", "what are the long term side effects of the abortion pill", "what are the long term effects of taking the abortion pill", "what are the long term side effects of the morning after pill", "what are the side effects of the morning after pill", "are there long term effects of the abortion pill", "what are the side effects of the first abortion pill", "what are the side effects of the morning after pill and how long does it last", "what are the negative side effects of the morning after pill"], "self_loops": [0], "tags": {"i": "what are the long term effects of the abortion pill", "q": "wzM7AbXaZ7BnMFX0A9uMAMJzqS8", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "long term effects of medical abortion", "datetime": "2026-03-12 19:34:47.895342", "source": "google", "data": ["long term effects of medical abortion", [["long term effects of medical abortion", 0, [512]], ["long term risks of medical abortion", 0, [22, 30]], ["long term side effects of medical abortion", 0, [22, 30]], ["long term side effects of abortion medicine", 0, [22, 30]], ["are there long term side effects of medical abortion", 0, [22, 30]], ["are there long term effects of a medical abortion", 0, [22, 30]], ["how long do side effects of medical abortion last", 0, [22, 30]], ["side effects of medical abortion", 0, [22, 30]], ["side effects of medical abortion in future pregnancy", 0, [22, 30]], ["side effects of medical abortion pill", 0, [22, 30]]], {"i": "long term effects of medical abortion", "q": "MBbY_geVjCnYC1bOF3hMNAxqmqI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["long term effects of medical abortion", "long term risks of medical abortion", "long term side effects of medical abortion", "long term side effects of abortion medicine", "are there long term side effects of medical abortion", "are there long term effects of a medical abortion", "how long do side effects of medical abortion last", "side effects of medical abortion", "side effects of medical abortion in future pregnancy", "side effects of medical abortion pill"], "self_loops": [0], "tags": {"i": "long term effects of medical abortion", "q": "MBbY_geVjCnYC1bOF3hMNAxqmqI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects reddit", "datetime": "2026-03-12 19:34:49.101318", "source": "google", "data": ["morning after pill side effects reddit", [["morning after pill side effects reddit", 0, [512]], ["day after pill side effects reddit", 0, [22, 30]], ["ella morning after pill side effects reddit", 0, [22, 30]], ["morning after pill emotional side effects reddit", 0, [22, 30]], ["morning after pill long term side effects reddit", 0, [22, 30]], ["morning after pill side effects menstrual cycle reddit", 0, [22, 30]], ["does the morning after pill cause side effects", 0, [512, 390, 650]], ["morning after pill side effects bleeding", 0, [512, 546]], ["morning after pill side effects a week later", 0, [512, 546]]], {"i": "morning after pill side effects reddit", "q": "KkMljduKxQH8wO-0uzI1y5p6SHQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill side effects reddit", "day after pill side effects reddit", "ella morning after pill side effects reddit", "morning after pill emotional side effects reddit", "morning after pill long term side effects reddit", "morning after pill side effects menstrual cycle reddit", "does the morning after pill cause side effects", "morning after pill side effects bleeding", "morning after pill side effects a week later"], "self_loops": [0], "tags": {"i": "morning after pill side effects reddit", "q": "KkMljduKxQH8wO-0uzI1y5p6SHQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill after effects reddit", "datetime": "2026-03-12 19:34:50.031078", "source": "google", "data": ["abortion pill after effects reddit", [["abortion pill after effects reddit", 0, [512]], ["abortion pill side effects reddit", 0, [22, 30]], ["abortion pill long term effects reddit", 0, [22, 30]], ["morning after pill side effects reddit", 0, [22, 30]], ["abortion pill long term side effects reddit", 0, [22, 30]], ["first abortion pill side effects reddit", 0, [22, 30]], ["ella morning after pill side effects reddit", 0, [22, 30]], ["morning after pill emotional side effects reddit", 0, [22, 30]], ["abortion after effects", 0, [512, 390, 650]], ["abortion after effects on body", 0, [512, 390, 650]]], {"i": "abortion pill after effects reddit", "q": "HbeckDzF53Og9FfITQ4bAWvT0II", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill after effects reddit", "abortion pill side effects reddit", "abortion pill long term effects reddit", "morning after pill side effects reddit", "abortion pill long term side effects reddit", "first abortion pill side effects reddit", "ella morning after pill side effects reddit", "morning after pill emotional side effects reddit", "abortion after effects", "abortion after effects on body"], "self_loops": [0], "tags": {"i": "abortion pill after effects reddit", "q": "HbeckDzF53Og9FfITQ4bAWvT0II", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "first abortion pill side effects reddit", "datetime": "2026-03-12 19:34:51.502605", "source": "google", "data": ["first abortion pill side effects reddit", [["first abortion pill side effects reddit", 0, [22, 30]], ["abortion pill reviews reddit", 0, [512, 390, 650]], ["first abortion side effects", 0, [512, 390, 650]], ["how does first abortion pill make you feel", 0, [512, 390, 650]], ["first abortion pill symptoms", 0, [512, 546]], ["first abortion pill effects", 0, [512, 546]], ["what does abortion pill feel like reddit", 0, [512, 546]], ["side effects of abortion pill reddit", 0, [512, 546]]], {"i": "first abortion pill side effects reddit", "q": "C11zZpnU3Rhp_mFikJySp3i3RH4", "t": {"bpc": false, "tlw": false}}], "suggests": ["first abortion pill side effects reddit", "abortion pill reviews reddit", "first abortion side effects", "how does first abortion pill make you feel", "first abortion pill symptoms", "first abortion pill effects", "what does abortion pill feel like reddit", "side effects of abortion pill reddit"], "self_loops": [0], "tags": {"i": "first abortion pill side effects reddit", "q": "C11zZpnU3Rhp_mFikJySp3i3RH4", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill long term side effects reddit", "datetime": "2026-03-12 19:34:52.479775", "source": "google", "data": ["abortion pill long term side effects reddit", [["abortion pill long term side effects reddit", 0, [22, 30]], ["morning after pill long term side effects reddit", 0, [22, 30]], ["abortion pill reviews reddit", 0, [512, 390, 650]], ["long term effects of medical abortion", 0, [512, 390, 650]], ["abortion pill long term side effects", 0, [512, 546]], ["abortion pill side effects reddit", 0, [512, 546]], ["abortion pill pain level reddit", 0, [512, 546]], ["abortion pill 3 weeks reddit", 0, [512, 546]]], {"i": "abortion pill long term side effects reddit", "q": "Le5Y2Xr-FMqspUvP6NwAA0ng3CI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill long term side effects reddit", "morning after pill long term side effects reddit", "abortion pill reviews reddit", "long term effects of medical abortion", "abortion pill long term side effects", "abortion pill side effects reddit", "abortion pill pain level reddit", "abortion pill 3 weeks reddit"], "self_loops": [0], "tags": {"i": "abortion pill long term side effects reddit", "q": "Le5Y2Xr-FMqspUvP6NwAA0ng3CI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ella morning after pill side effects reddit", "datetime": "2026-03-12 19:34:53.341065", "source": "google", "data": ["ella morning after pill side effects reddit", [["ella morning after pill side effects reddit", 0, [22, 30]], ["ella morning after pill side effects", 0, [512, 390, 650]], ["plan b ella side effects", 0, [512, 390, 650]], ["does ellaone have side effects", 0, [512, 390, 650]], ["ella morning after pill reddit", 0, [751]], ["ella pill side effects reddit", 0, [512, 546]], ["ella side effects reddit", 0, [512, 546]], ["ella morning after pill reviews", 0, [546, 649]]], {"i": "ella morning after pill side effects reddit", "q": "eWJpZ5m7M2vn-to628gIzyT1wcc", "t": {"bpc": false, "tlw": false}}], "suggests": ["ella morning after pill side effects reddit", "ella morning after pill side effects", "plan b ella side effects", "does ellaone have side effects", "ella morning after pill reddit", "ella pill side effects reddit", "ella side effects reddit", "ella morning after pill reviews"], "self_loops": [0], "tags": {"i": "ella morning after pill side effects reddit", "q": "eWJpZ5m7M2vn-to628gIzyT1wcc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill emotional side effects reddit", "datetime": "2026-03-12 19:34:54.299202", "source": "google", "data": ["morning after pill emotional side effects reddit", [["morning after pill emotional side effects reddit", 0, [22, 30]], ["morning after pill emotional side effects", 0, [512, 390, 650]], ["does the morning after pill make you emotional", 0, [512, 390, 650]], ["can the morning after pill cause mood swings", 0, [512, 390, 650]], ["does plan b make you emotional reddit", 0, [512, 390, 650]], ["can the morning after pill affect your mood", 0, [512, 390, 650]], ["morning after pill depression reddit", 0, [546, 649]], ["emotional after plan b reddit", 0, [546, 649]]], {"i": "morning after pill emotional side effects reddit", "q": "wh0KyDGVxeBqgFYbriF5IlfOxcQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill emotional side effects reddit", "morning after pill emotional side effects", "does the morning after pill make you emotional", "can the morning after pill cause mood swings", "does plan b make you emotional reddit", "can the morning after pill affect your mood", "morning after pill depression reddit", "emotional after plan b reddit"], "self_loops": [0], "tags": {"i": "morning after pill emotional side effects reddit", "q": "wh0KyDGVxeBqgFYbriF5IlfOxcQ", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill long term side effects reddit", "datetime": "2026-03-12 19:34:55.200517", "source": "google", "data": ["morning after pill long term side effects reddit", [["morning after pill long term side effects reddit", 0, [22, 30]], ["does the morning after pill have long term effects", 0, [512, 390, 650]], ["plan b side effects long-term reddit", 0, [546, 649]], ["modafinil long term side effects reddit", 0, [751]], ["morning-after pill bleeding 1 week later reddit", 0, [546, 649]], ["metformin side effects long-term reddit", 0, [546, 649]]], {"i": "morning after pill long term side effects reddit", "q": "USkBsDlOdPcXYb2aPE3T2n7uKUg", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill long term side effects reddit", "does the morning after pill have long term effects", "plan b side effects long-term reddit", "modafinil long term side effects reddit", "morning-after pill bleeding 1 week later reddit", "metformin side effects long-term reddit"], "self_loops": [0], "tags": {"i": "morning after pill long term side effects reddit", "q": "USkBsDlOdPcXYb2aPE3T2n7uKUg", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects menstrual cycle reddit", "datetime": "2026-03-12 19:34:56.647109", "source": "google", "data": ["morning after pill side effects menstrual cycle reddit", [["morning after pill side effects menstrual cycle reddit", 0, [22, 30]], ["how long can morning after pill affect your cycle", 0, [512, 390, 650]], ["morning after pill side effects menstrual cycle", 0, [512, 390, 650]], ["how long can the morning after pill affect your period", 0, [512, 390, 650]], ["can taking the morning after pill make your period longer", 0, [512, 390, 650]], ["morning after pill side effects bleeding", 0, [512, 546]], ["morning after pill mess with cycle", 0, [751]]], {"i": "morning after pill side effects menstrual cycle reddit", "q": "_ZmSifSJ-XelyEDmwRj-eD8XqF0", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects menstrual cycle reddit", "how long can morning after pill affect your cycle", "morning after pill side effects menstrual cycle", "how long can the morning after pill affect your period", "can taking the morning after pill make your period longer", "morning after pill side effects bleeding", "morning after pill mess with cycle"], "self_loops": [0], "tags": {"i": "morning after pill side effects menstrual cycle reddit", "q": "_ZmSifSJ-XelyEDmwRj-eD8XqF0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill reviews reddit", "datetime": "2026-03-12 19:34:57.516472", "source": "google", "data": ["abortion pill reviews reddit", [["abortion pill reviews reddit", 0, [512]], ["abuzz abortion pills reviews reddit", 0, [22, 30]], ["carafem abortion pill review reddit", 0, [22, 30]], ["aid access abortion pill reviews reddit", 0, [22, 30]], ["hey jane abortion pill reviews reddit", 0, [22, 30]], ["abortion pill reddit experience", 0, [512, 546]], ["abortion pill reviews 2021", 0, [751]]], {"i": "abortion pill reviews reddit", "q": "IxHubgSecQ_CBkt-5pdLPqWQmtc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill reviews reddit", "abuzz abortion pills reviews reddit", "carafem abortion pill review reddit", "aid access abortion pill reviews reddit", "hey jane abortion pill reviews reddit", "abortion pill reddit experience", "abortion pill reviews 2021"], "self_loops": [0], "tags": {"i": "abortion pill reviews reddit", "q": "IxHubgSecQ_CBkt-5pdLPqWQmtc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects and how long they last", "datetime": "2026-03-12 19:34:59.110245", "source": "google", "data": ["morning after pill side effects and how long they last", [["morning after pill side effects and how long they last", 0, [512]], ["morning after pill side effects how long does it last", 0, [22, 30]], ["how long can side effects of the morning after pill last", 0, [512, 390, 650]], ["how many days do morning after pill side effects last", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill how it works side effects", 0, [512, 546]], ["morning-after pills works after how long", 0, [751]], ["morning after pill how long does it stay in your system", 0, [512, 546]], ["how long do you get side effects from the morning after pill", 0, [512, 546]]], {"i": "morning after pill side effects and how long they last", "q": "dMtqfgemNXdR9dUkPRHjLWqNuH8", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects and how long they last", "morning after pill side effects how long does it last", "how long can side effects of the morning after pill last", "how many days do morning after pill side effects last", "morning after pill side effects a week later", "morning after pill how it works side effects", "morning-after pills works after how long", "morning after pill how long does it stay in your system", "how long do you get side effects from the morning after pill"], "self_loops": [0], "tags": {"i": "morning after pill side effects and how long they last", "q": "dMtqfgemNXdR9dUkPRHjLWqNuH8", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill effects how long", "datetime": "2026-03-12 19:35:00.216420", "source": "google", "data": ["morning after pill effects how long", [["morning after pill effects how long", 0, [22, 30]], ["morning after pill side effects how long do they last", 0, [22, 30]], ["morning after pill side effects how long", 0, [22, 30]], ["morning after pill effects long term", 0, [22, 30]], ["morning after pill side effects long term", 0, [22, 30]], ["day after pill side effects long term", 0, [22, 30]], ["how long does morning after pill side effects take", 0, [22, 30]], ["how long can side effects of the morning after pill last", 0, [512, 390, 650]], ["how long does morning after pills side effects last", 0, [512, 390, 650]], ["how effective is the morning after pill 48 hours later", 0, [512, 390, 650]]], {"i": "morning after pill effects how long", "q": "-Y8c3yW6klcSFpcTBLrbYm8qHxI", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill effects how long", "morning after pill side effects how long do they last", "morning after pill side effects how long", "morning after pill effects long term", "morning after pill side effects long term", "day after pill side effects long term", "how long does morning after pill side effects take", "how long can side effects of the morning after pill last", "how long does morning after pills side effects last", "how effective is the morning after pill 48 hours later"], "self_loops": [0], "tags": {"i": "morning after pill effects how long", "q": "-Y8c3yW6klcSFpcTBLrbYm8qHxI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects after first pill", "datetime": "2026-03-12 19:35:01.608546", "source": "google", "data": ["abortion pill side effects after first pill", [["abortion pill side effects after first pill", 0, [22, 30]], ["abortion pill side effects first pill", 0, [22, 30]], ["how soon after abortion can i take the pill", 0, [512, 390, 650]], ["how long after an abortion can you start taking the pill", 0, [512, 390, 650]], ["how long after an abortion can you start the pill", 0, [512, 390, 650]], ["how soon after an abortion can i start the pill", 0, [512, 390, 650]], ["abortion first pill side effects", 0, [512, 546]], ["abortion pill side effects future pregnancy", 0, [512, 546]], ["abortion pill side effects long term", 0, [512, 546]], ["abortion pill side effects after", 0, [546, 649]]], {"i": "abortion pill side effects after first pill", "q": "pIPZxjnaoF7GIxveP3O3P2r2M6k", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill side effects after first pill", "abortion pill side effects first pill", "how soon after abortion can i take the pill", "how long after an abortion can you start taking the pill", "how long after an abortion can you start the pill", "how soon after an abortion can i start the pill", "abortion first pill side effects", "abortion pill side effects future pregnancy", "abortion pill side effects long term", "abortion pill side effects after"], "self_loops": [0], "tags": {"i": "abortion pill side effects after first pill", "q": "pIPZxjnaoF7GIxveP3O3P2r2M6k", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how soon after abortion can i take the pill", "datetime": "2026-03-12 19:35:03.117277", "source": "google", "data": ["how soon after abortion can i take the pill", [["how soon after abortion can i take the pill", 0, [512]], ["how soon after abortion pill can i get pregnant", 0, [22, 30]], ["how soon after an abortion can i start the pill", 0, [512, 390, 650]], ["how long after an abortion can you start the pill", 0, [512, 390, 650]], ["how long after an abortion can you start taking the pill", 0, [512, 390, 650]], ["how soon after taking abortion pill can i get pregnant", 0, [751]], ["how soon after abortion can you take birth control", 0, [512, 546]]], {"i": "how soon after abortion can i take the pill", "q": "KFPJmzULMnxVEesB84CDG7LUyds", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how soon after abortion can i take the pill", "how soon after abortion pill can i get pregnant", "how soon after an abortion can i start the pill", "how long after an abortion can you start the pill", "how long after an abortion can you start taking the pill", "how soon after taking abortion pill can i get pregnant", "how soon after abortion can you take birth control"], "self_loops": [0], "tags": {"i": "how soon after abortion can i take the pill", "q": "KFPJmzULMnxVEesB84CDG7LUyds", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long after an abortion can you start taking the pill", "datetime": "2026-03-12 19:35:04.414475", "source": "google", "data": ["how long after an abortion can you start taking the pill", [["how long after an abortion can you start taking the pill", 0, [512]], ["how long after an abortion can you start the pill", 0, [512, 390, 650]], ["how soon after an abortion can i start the pill", 0, [512, 390, 650]], ["how soon after abortion can i take the pill", 0, [512, 390, 650]], ["how long after an abortion can you start birth control", 0, [512, 546]], ["how long after an abortion can you take a plan b pill", 0, [751]], ["how long after an abortion can you take birth control", 0, [512, 546]], ["how long after an abortion pill can you get pregnant", 0, [512, 546]]], {"i": "how long after an abortion can you start taking the pill", "q": "KJGChdkpvw6uP1gHRqGDuIRy9lo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how long after an abortion can you start taking the pill", "how long after an abortion can you start the pill", "how soon after an abortion can i start the pill", "how soon after abortion can i take the pill", "how long after an abortion can you start birth control", "how long after an abortion can you take a plan b pill", "how long after an abortion can you take birth control", "how long after an abortion pill can you get pregnant"], "self_loops": [0], "tags": {"i": "how long after an abortion can you start taking the pill", "q": "KJGChdkpvw6uP1gHRqGDuIRy9lo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long after an abortion can you start the pill", "datetime": "2026-03-12 19:35:05.684842", "source": "google", "data": ["how long after an abortion can you start the pill", [["how long after an abortion can you start the pill", 0, [512]], ["how soon after an abortion can i start the pill", 0, [512, 390, 650]], ["how long after an abortion can you start taking the pill", 0, [512, 390, 650]], ["how soon after abortion can i take the pill", 0, [512, 390, 650]], ["how long after an abortion can you start birth control", 0, [512, 546]], ["how long after an abortion can you take birth control", 0, [512, 546]], ["how long after an abortion can you take a plan b pill", 0, [751]], ["how long after an abortion pill can you get pregnant", 0, [512, 546]]], {"i": "how long after an abortion can you start the pill", "q": "xiazyXRoOtLdfhfQ85WxxoIRl7k", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how long after an abortion can you start the pill", "how soon after an abortion can i start the pill", "how long after an abortion can you start taking the pill", "how soon after abortion can i take the pill", "how long after an abortion can you start birth control", "how long after an abortion can you take birth control", "how long after an abortion can you take a plan b pill", "how long after an abortion pill can you get pregnant"], "self_loops": [0], "tags": {"i": "how long after an abortion can you start the pill", "q": "xiazyXRoOtLdfhfQ85WxxoIRl7k", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion first pill side effects", "datetime": "2026-03-12 19:35:06.786137", "source": "google", "data": ["abortion first pill side effects", [["abortion first pill side effects", 0, [512]], ["first abortion pill side effects reddit", 0, [22, 30]], ["first abortion pill mumsnet side effects", 0, [22, 30]], ["does first abortion pill have side effects", 0, [22, 30]], ["abortion pill side effects after first pill", 0, [22, 30]], ["how long after an abortion can you start taking the pill", 0, [512, 390, 650]], ["how long after an abortion can you start the pill", 0, [512, 390, 650]], ["how soon after an abortion can i start the pill", 0, [512, 390, 650]], ["how soon after abortion can i take the pill", 0, [512, 390, 650]], ["first abortion pill symptoms", 0, [512, 546]]], {"i": "abortion first pill side effects", "q": "oIbSc7UsaaElNCCfNavwp5MPJz4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion first pill side effects", "first abortion pill side effects reddit", "first abortion pill mumsnet side effects", "does first abortion pill have side effects", "abortion pill side effects after first pill", "how long after an abortion can you start taking the pill", "how long after an abortion can you start the pill", "how soon after an abortion can i start the pill", "how soon after abortion can i take the pill", "first abortion pill symptoms"], "self_loops": [0], "tags": {"i": "abortion first pill side effects", "q": "oIbSc7UsaaElNCCfNavwp5MPJz4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects timeline", "datetime": "2026-03-12 19:35:07.754330", "source": "google", "data": ["morning after pill side effects timeline", [["morning after pill side effects timeline", 0, [22, 30]], ["how long does morning after pills side effects last", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill side effects bleeding", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]], ["morning after pill take action side effects", 0, [546, 649]], ["morning-after pill side effects", 0, [512, 546]]], {"i": "morning after pill side effects timeline", "q": "SLRvOjQdx045wlpBN5v85URaQAU", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects timeline", "how long does morning after pills side effects last", "morning after pill side effects a week later", "morning after pill side effects bleeding", "morning after pill side effects menstrual cycle", "morning after pill take action side effects", "morning-after pill side effects"], "self_loops": [0], "tags": {"i": "morning after pill side effects timeline", "q": "SLRvOjQdx045wlpBN5v85URaQAU", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects duration", "datetime": "2026-03-12 19:35:08.894727", "source": "google", "data": ["abortion pill side effects duration", [["abortion pill side effects duration", 0, [512]], ["abortion pill side effects timeline", 0, [22, 30]], ["how long does pain last after abortion pills", 0, [512, 390, 650]], ["how long pain after abortion", 0, [512, 390, 650]], ["side effects months after abortion", 0, [512, 390, 650]], ["abortion pill side effects long term", 0, [512, 546]], ["abortion pill side effects last", 0, [751]], ["abortion pill side effects after", 0, [546, 649]], ["abortion pill side effects future pregnancy", 0, [512, 546]]], {"i": "abortion pill side effects duration", "q": "CZgZfswpBrcNR21IcuCI3xcrtJA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill side effects duration", "abortion pill side effects timeline", "how long does pain last after abortion pills", "how long pain after abortion", "side effects months after abortion", "abortion pill side effects long term", "abortion pill side effects last", "abortion pill side effects after", "abortion pill side effects future pregnancy"], "self_loops": [0], "tags": {"i": "abortion pill side effects duration", "q": "CZgZfswpBrcNR21IcuCI3xcrtJA", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effects 3 weeks after abortion", "datetime": "2026-03-12 19:35:10.204620", "source": "google", "data": ["side effects 3 weeks after abortion", [["side effects 3 weeks after abortion", 0, [512]], ["side effects of 3 weeks abortion", 0, [22, 30]], ["side effects months after abortion", 0, [512, 390, 650]], ["long term effects after abortion", 0, [512, 390, 650]], ["positive pregnancy 3 weeks after abortion", 0, [546, 649]], ["side effects of abortion at 15 weeks", 0, [512, 546]]], {"i": "side effects 3 weeks after abortion", "q": "5w3Qr-g5rOMTwdZ3vSaWCKixlYo", "t": {"bpc": false, "tlw": false}}], "suggests": ["side effects 3 weeks after abortion", "side effects of 3 weeks abortion", "side effects months after abortion", "long term effects after abortion", "positive pregnancy 3 weeks after abortion", "side effects of abortion at 15 weeks"], "self_loops": [0], "tags": {"i": "side effects 3 weeks after abortion", "q": "5w3Qr-g5rOMTwdZ3vSaWCKixlYo", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "4 days after abortion pill", "datetime": "2026-03-12 19:35:11.526310", "source": "google", "data": ["4 days after abortion pill", [["4 days after abortion pill", 0, [512]], ["pain 4 days after abortion pill", 0, [22, 30]], ["bleeding 4 days after abortion pill", 0, [22, 30]], ["clots 4 days after abortion pill", 0, [22, 30]], ["bleeding 4 days after morning after pill", 0, [22, 30]], ["heavy bleeding 4 days after abortion pill", 0, [22, 30]], ["spotting 4 days after morning after pill", 0, [22, 30]], ["still bleeding 4 days after abortion pill", 0, [22, 30]], ["cramps 4 days after morning after pill", 0, [22, 30]], ["period 4 days after morning after pill", 0, [22, 30]]], {"i": "4 days after abortion pill", "q": "FctvIeClEv6bizWBYnLCLqbPydQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["4 days after abortion pill", "pain 4 days after abortion pill", "bleeding 4 days after abortion pill", "clots 4 days after abortion pill", "bleeding 4 days after morning after pill", "heavy bleeding 4 days after abortion pill", "spotting 4 days after morning after pill", "still bleeding 4 days after abortion pill", "cramps 4 days after morning after pill", "period 4 days after morning after pill"], "self_loops": [0], "tags": {"i": "4 days after abortion pill", "q": "FctvIeClEv6bizWBYnLCLqbPydQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects last", "datetime": "2026-03-12 19:35:12.812644", "source": "google", "data": ["abortion pill side effects last", [["abortion pill side effects last for how long", 0, [512]], ["abortion pill side effects last", 0, [22, 30]], ["can morning after pill side effects last a week", 0, [22, 30]], ["can morning after pill side effects last for 2 weeks", 0, [22, 30]], ["pregnancy symptoms after abortion pill", 0, [512, 390, 650]], ["how long do pregnancy symptoms last after abortion pill", 0, [512, 390, 650]], ["side effects of pregnancy after abortion", 0, [512, 390, 650]], ["abortion pill side effects long term", 0, [512, 546]], ["how long do side effects last from abortion pill", 0, [512, 546]]], {"i": "abortion pill side effects last", "q": "hT1AV23d9vrNfxsrxNZLYe-vJpI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill side effects last for how long", "abortion pill side effects last", "can morning after pill side effects last a week", "can morning after pill side effects last for 2 weeks", "pregnancy symptoms after abortion pill", "how long do pregnancy symptoms last after abortion pill", "side effects of pregnancy after abortion", "abortion pill side effects long term", "how long do side effects last from abortion pill"], "self_loops": [1], "tags": {"i": "abortion pill side effects last", "q": "hT1AV23d9vrNfxsrxNZLYe-vJpI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects after", "datetime": "2026-03-12 19:35:14.245476", "source": "google", "data": ["abortion pill side effects after", [["abortion pill side effects after", 0, [22, 30]], ["morning after pill side effects after 2 weeks", 0, [22, 30]], ["morning after pill side effects after a week", 0, [22, 30]], ["morning after pill side effects after 5 days", 0, [22, 30]], ["morning after pill side effects after 1 week", 0, [22, 30]], ["morning after pill side effects after a month", 0, [22, 30]], ["morning after pill side effects after 3 weeks", 0, [22, 30]], ["morning after pill side effects days", 0, [22, 10, 30]], ["abortion pill side effects after first pill", 0, [22, 30]], ["morning after pill vs abortion pill side effects", 0, [22, 30]]], {"i": "abortion pill side effects after", "q": "wQxVygyuOmfQzvqysqEmH9ODkwM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill side effects after", "morning after pill side effects after 2 weeks", "morning after pill side effects after a week", "morning after pill side effects after 5 days", "morning after pill side effects after 1 week", "morning after pill side effects after a month", "morning after pill side effects after 3 weeks", "morning after pill side effects days", "abortion pill side effects after first pill", "morning after pill vs abortion pill side effects"], "self_loops": [0], "tags": {"i": "abortion pill side effects after", "q": "wQxVygyuOmfQzvqysqEmH9ODkwM", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects future pregnancy in hindi", "datetime": "2026-03-12 19:35:15.410393", "source": "google", "data": ["abortion pill side effects future pregnancy in hindi", [["abortion pill side effects future pregnancy in hindi", 0, [512]], ["abortion pill side effects future pregnancy", 0, [512, 390, 650]], ["abortion side effects future pregnancy", 0, [512, 390, 650]], ["side effect of abortion in future", 0, [512, 390, 650]], ["abortion pill future pregnancy", 0, [512, 390, 650]], ["abortion side effects future pregnancy in hindi", 0, [512, 546]], ["abortion pill effects on future pregnancy", 0, [512, 546]]], {"i": "abortion pill side effects future pregnancy in hindi", "q": "SLIMQ4EdG2HLsITDPHPmQjaugzY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill side effects future pregnancy in hindi", "abortion pill side effects future pregnancy", "abortion side effects future pregnancy", "side effect of abortion in future", "abortion pill future pregnancy", "abortion side effects future pregnancy in hindi", "abortion pill effects on future pregnancy"], "self_loops": [0], "tags": {"i": "abortion pill side effects future pregnancy in hindi", "q": "SLIMQ4EdG2HLsITDPHPmQjaugzY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects future pregnancy in english", "datetime": "2026-03-12 19:35:16.870881", "source": "google", "data": ["abortion pill side effects future pregnancy in english", [["abortion pill side effects future pregnancy in english", 0, [512]], ["abortion side effects future pregnancy", 0, [512, 390, 650]], ["abortion pill side effects future pregnancy", 0, [512, 390, 650]], ["abortion pill future pregnancy", 0, [512, 390, 650]], ["side effect of abortion in future", 0, [512, 390, 650]], ["abortion pill effects on future pregnancy", 0, [512, 546]], ["abortion pill affect future pregnancy", 0, [512, 546]]], {"i": "abortion pill side effects future pregnancy in english", "q": "yeg4C_EEVjmo9py6K6m3JTfaSeI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill side effects future pregnancy in english", "abortion side effects future pregnancy", "abortion pill side effects future pregnancy", "abortion pill future pregnancy", "side effect of abortion in future", "abortion pill effects on future pregnancy", "abortion pill affect future pregnancy"], "self_loops": [0], "tags": {"i": "abortion pill side effects future pregnancy in english", "q": "yeg4C_EEVjmo9py6K6m3JTfaSeI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects future pregnancy", "datetime": "2026-03-12 19:35:17.951185", "source": "google", "data": ["morning after pill side effects future pregnancy", [["morning after pill side effects future pregnancy", 0, [512]], ["does morning after pill affect future pregnancy", 0, [512, 390, 650]], ["side effects of morning-after pill if pregnant", 0, [512, 390, 650]], ["can plan b harm future pregnancy", 0, [512, 390, 650]], ["can morning after pill affect pregnancy", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["plan b side effects future pregnancies", 0, [512, 546]], ["morning after pill plan b side effects", 0, [512, 546]]], {"i": "morning after pill side effects future pregnancy", "q": "-tgov2d8THdq3A6iEhD_ZZcgPiE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill side effects future pregnancy", "does morning after pill affect future pregnancy", "side effects of morning-after pill if pregnant", "can plan b harm future pregnancy", "can morning after pill affect pregnancy", "morning after pill side effects a week later", "plan b side effects future pregnancies", "morning after pill plan b side effects"], "self_loops": [0], "tags": {"i": "morning after pill side effects future pregnancy", "q": "-tgov2d8THdq3A6iEhD_ZZcgPiE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion side effects future pregnancy", "datetime": "2026-03-12 19:35:19.136824", "source": "google", "data": ["abortion side effects future pregnancy", [["abortion side effects future pregnancy", 0, [512]], ["abortion side effects future pregnancy in hindi", 0, [512]], ["abortion pill side effects future pregnancy", 0, [22, 30]], ["abortion pill side effects future pregnancy in english", 0, [22, 30]], ["side effects of medical abortion in future pregnancy", 0, [22, 30]], ["abortion pill side effects future pregnancy in hindi", 0, [22, 455, 30]], ["does abortion affect future pregnancy", 0, [512, 390, 650]], ["does surgical abortion affect future pregnancy", 0, [512, 390, 650]], ["how can an abortion affect future pregnancy", 0, [512, 390, 650]], ["abortion affect future pregnancy", 0, [512, 546]]], {"i": "abortion side effects future pregnancy", "q": "MIsBPBrqyYVHr-7J0rPXXIwn0aI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion side effects future pregnancy", "abortion side effects future pregnancy in hindi", "abortion pill side effects future pregnancy", "abortion pill side effects future pregnancy in english", "side effects of medical abortion in future pregnancy", "abortion pill side effects future pregnancy in hindi", "does abortion affect future pregnancy", "does surgical abortion affect future pregnancy", "how can an abortion affect future pregnancy", "abortion affect future pregnancy"], "self_loops": [0], "tags": {"i": "abortion side effects future pregnancy", "q": "MIsBPBrqyYVHr-7J0rPXXIwn0aI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill future pregnancy", "datetime": "2026-03-12 19:35:20.198314", "source": "google", "data": ["abortion pill future pregnancy", [["abortion pill future pregnancy", 0, [512]], ["abortion pill affect future pregnancy", 0, [22, 30]], ["abortion pill effects future pregnancy", 0, [22, 30]], ["abortion pill side effects future pregnancy", 0, [22, 30]], ["abortion pill side effects future pregnancy in english", 0, [22, 30]], ["morning after pill affect future pregnancy", 0, [22, 30]], ["does abortion pill affect future pregnancy", 0, [22, 30]], ["will abortion pill affect future pregnancy", 0, [22, 30]], ["does abortion pill prevent future pregnancy", 0, [22, 30]], ["does abortion pill harm future pregnancy", 0, [22, 30]]], {"i": "abortion pill future pregnancy", "q": "YLSQmnBeFfeOPcvllO7vTLQUE10", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill future pregnancy", "abortion pill affect future pregnancy", "abortion pill effects future pregnancy", "abortion pill side effects future pregnancy", "abortion pill side effects future pregnancy in english", "morning after pill affect future pregnancy", "does abortion pill affect future pregnancy", "will abortion pill affect future pregnancy", "does abortion pill prevent future pregnancy", "does abortion pill harm future pregnancy"], "self_loops": [0], "tags": {"i": "abortion pill future pregnancy", "q": "YLSQmnBeFfeOPcvllO7vTLQUE10", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effects of pregnancy after abortion", "datetime": "2026-03-12 19:35:21.376932", "source": "google", "data": ["side effects of pregnancy after abortion", [["side effects of pregnancy after abortion", 0, [512]], ["side effects of getting pregnant after miscarriage", 0, [22, 30]], ["side effects of pregnancy abortion", 0, [22, 30]], ["signs of pregnancy after abortion", 0, [22, 30]], ["signs of pregnancy after abortion pill", 0, [22, 30]], ["signs of pregnancy after abortion discharge", 0, [22, 30]], ["signs of pregnancy after abortion mumsnet", 0, [22, 30]], ["signs of pregnancy after abortion at 4 weeks", 0, [22, 30]], ["symptoms of pregnancy after abortion pill", 0, [22, 30]], ["signs of pregnancy after abortion at 6 weeks", 0, [22, 30]]], {"i": "side effects of pregnancy after abortion", "q": "NA0-JytduMlblTG0lLpIL_3Bwxw", "t": {"bpc": false, "tlw": false}}], "suggests": ["side effects of pregnancy after abortion", "side effects of getting pregnant after miscarriage", "side effects of pregnancy abortion", "signs of pregnancy after abortion", "signs of pregnancy after abortion pill", "signs of pregnancy after abortion discharge", "signs of pregnancy after abortion mumsnet", "signs of pregnancy after abortion at 4 weeks", "symptoms of pregnancy after abortion pill", "signs of pregnancy after abortion at 6 weeks"], "self_loops": [0], "tags": {"i": "side effects of pregnancy after abortion", "q": "NA0-JytduMlblTG0lLpIL_3Bwxw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does abortion affect future pregnancy", "datetime": "2026-03-12 19:35:22.401715", "source": "google", "data": ["does abortion affect future pregnancy", [["does abortion affect future pregnancy", 0, [512]], ["does abortion affect future pregnancy reddit", 0, [512]], ["does abortion affect future pregnancy nhs", 0, [22, 30]], ["does abortion affect future pregnancy chances", 0, [22, 30]], ["does abortion affect next pregnancy", 0, [22, 30]], ["does abortion affect further pregnancy", 0, [22, 30]], ["can abortion affect future pregnancy forum", 0, [22, 30]], ["do abortions impact future pregnancy", 0, [22, 30]], ["does abortion affect future fertility", 0, [22, 30]], ["does abortion affect future.fertility reddit", 0, [22, 10, 30]]], {"i": "does abortion affect future pregnancy", "q": "amdk0QyMZqIy2lIZjKsTmVNYNAM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does abortion affect future pregnancy", "does abortion affect future pregnancy reddit", "does abortion affect future pregnancy nhs", "does abortion affect future pregnancy chances", "does abortion affect next pregnancy", "does abortion affect further pregnancy", "can abortion affect future pregnancy forum", "do abortions impact future pregnancy", "does abortion affect future fertility", "does abortion affect future.fertility reddit"], "self_loops": [0], "tags": {"i": "does abortion affect future pregnancy", "q": "amdk0QyMZqIy2lIZjKsTmVNYNAM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill effects on future pregnancy", "datetime": "2026-03-12 19:35:23.796486", "source": "google", "data": ["abortion pill effects on future pregnancy", [["abortion pill effects on future pregnancy", 0, [512]], ["morning after pill effects on future pregnancy", 0, [22, 30]], ["abortion side effects on future pregnancy", 0, [22, 30]], ["does the abortion pill effects on future pregnancy", 0, [22, 30]], ["abortion pill affect future pregnancy", 0, [22, 30]], ["abortion side effects future pregnancy in hindi", 0, [22, 30]], ["abortion pill side effects future pregnancy", 0, [22, 30]], ["abortion pill side effects future pregnancy in english", 0, [22, 30]], ["does abortion pill affect future pregnancy", 0, [22, 30]], ["morning after pill side effects future pregnancy", 0, [22, 30]]], {"i": "abortion pill effects on future pregnancy", "q": "-PB_OW8qAUiYkYKqhUHsIY94ZrI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill effects on future pregnancy", "morning after pill effects on future pregnancy", "abortion side effects on future pregnancy", "does the abortion pill effects on future pregnancy", "abortion pill affect future pregnancy", "abortion side effects future pregnancy in hindi", "abortion pill side effects future pregnancy", "abortion pill side effects future pregnancy in english", "does abortion pill affect future pregnancy", "morning after pill side effects future pregnancy"], "self_loops": [0], "tags": {"i": "abortion pill effects on future pregnancy", "q": "-PB_OW8qAUiYkYKqhUHsIY94ZrI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill affect future pregnancy", "datetime": "2026-03-12 19:35:24.899530", "source": "google", "data": ["abortion pill affect future pregnancy", [["abortion pill affect future pregnancy", 0, [512]], ["abortion pill effects future pregnancy", 0, [22, 30]], ["morning after pill affect future pregnancy", 0, [22, 30]], ["does abortion pill affect future pregnancy", 0, [22, 30]], ["will abortion pill affect future pregnancy", 0, [22, 30]], ["does abortion pill affect future pregnancy quora", 0, [22, 30]], ["morning after pill affect future fertility", 0, [22, 30]], ["abortion pill side effects future pregnancy", 0, [22, 30]], ["abortion pill side effects future pregnancy in english", 0, [22, 30]], ["will morning after pill affect future pregnancy", 0, [22, 30]]], {"i": "abortion pill affect future pregnancy", "q": "_3uFiV0MHaIqHV2TJKLng5s8QBk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill affect future pregnancy", "abortion pill effects future pregnancy", "morning after pill affect future pregnancy", "does abortion pill affect future pregnancy", "will abortion pill affect future pregnancy", "does abortion pill affect future pregnancy quora", "morning after pill affect future fertility", "abortion pill side effects future pregnancy", "abortion pill side effects future pregnancy in english", "will morning after pill affect future pregnancy"], "self_loops": [0], "tags": {"i": "abortion pill affect future pregnancy", "q": "_3uFiV0MHaIqHV2TJKLng5s8QBk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects mentally", "datetime": "2026-03-12 19:35:26.012332", "source": "google", "data": ["morning after pill side effects mentally", [["morning after pill side effects mentally", 0, [512]], ["morning after pill side effects emotional", 0, [22, 30]], ["morning after pill psychological side effects", 0, [22, 30]], ["morning after pill emotional side effects reddit", 0, [22, 30]], ["can the morning after pill affect your mood", 0, [512, 390, 650]], ["side effects of plan b mentally", 0, [512, 390, 650]], ["how long does morning after pills side effects last", 0, [512, 390, 650]], ["morning after pill depression anxiety", 0, [546, 649]]], {"i": "morning after pill side effects mentally", "q": "4Q1nlRFYHT_vFwdfYQYwMFPeeCk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill side effects mentally", "morning after pill side effects emotional", "morning after pill psychological side effects", "morning after pill emotional side effects reddit", "can the morning after pill affect your mood", "side effects of plan b mentally", "how long does morning after pills side effects last", "morning after pill depression anxiety"], "self_loops": [0], "tags": {"i": "morning after pill side effects mentally", "q": "4Q1nlRFYHT_vFwdfYQYwMFPeeCk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects emotional", "datetime": "2026-03-12 19:35:27.206203", "source": "google", "data": ["abortion pill side effects emotional", [["abortion pill side effects emotional", 0, [22, 30]], ["morning after pill side effects emotional", 0, [22, 30]], ["abortion pill side effects mood", 0, [22, 30]], ["morning after pill side effects mood", 0, [22, 30]], ["morning after pill side effects mood swings", 0, [22, 30]], ["morning after pill side effects depression", 0, [22, 30]], ["morning after pill side effects mental health", 0, [22, 30]], ["morning after pill side effects low mood", 0, [22, 30]], ["abortion side effects future pregnancy", 0, [512, 390, 650]], ["abortion pill side effects future pregnancy", 0, [512, 390, 650]]], {"i": "abortion pill side effects emotional", "q": "IXLFcXML7rDFlgXlE5H-UdVMLBk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill side effects emotional", "morning after pill side effects emotional", "abortion pill side effects mood", "morning after pill side effects mood", "morning after pill side effects mood swings", "morning after pill side effects depression", "morning after pill side effects mental health", "morning after pill side effects low mood", "abortion side effects future pregnancy", "abortion pill side effects future pregnancy"], "self_loops": [0], "tags": {"i": "abortion pill side effects emotional", "q": "IXLFcXML7rDFlgXlE5H-UdVMLBk", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects emotional", "datetime": "2026-03-12 19:35:28.535299", "source": "google", "data": ["morning after pill side effects emotional", [["morning after pill side effects emotional", 0, [512]], ["morning after pill side effects mood", 0, [22, 30]], ["morning after pill side effects mood swings", 0, [22, 30]], ["morning after pill side effects depression", 0, [22, 30]], ["morning after pill side effects mental health", 0, [22, 30]], ["morning after pill side effects low mood", 0, [22, 30]], ["morning after pill emotional side effects reddit", 0, [22, 30]], ["plan b pill side effects emotional", 0, [22, 30]], ["morning after pill psychological side effects", 0, [22, 30]], ["does the morning after pill make you emotional", 0, [512, 390, 650]]], {"i": "morning after pill side effects emotional", "q": "GwR9m2FwH0dEzrpfvQ5zLmCPp68", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill side effects emotional", "morning after pill side effects mood", "morning after pill side effects mood swings", "morning after pill side effects depression", "morning after pill side effects mental health", "morning after pill side effects low mood", "morning after pill emotional side effects reddit", "plan b pill side effects emotional", "morning after pill psychological side effects", "does the morning after pill make you emotional"], "self_loops": [0], "tags": {"i": "morning after pill side effects emotional", "q": "GwR9m2FwH0dEzrpfvQ5zLmCPp68", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "mental health side effects of abortion", "datetime": "2026-03-12 19:35:29.743564", "source": "google", "data": ["mental health side effects of abortion", [["mental health side effects of abortion", 0, [22, 30]], ["negative mental health effects of abortion", 0, [22, 30]], ["psychological side effects of abortion", 0, [22, 30]], ["mental health risks of abortion", 0, [22, 30]], ["mental health affects of abortion", 0, [22, 30]], ["long term effects of abortion", 0, [512, 390, 650]], ["abortion effects on health", 0, [512, 390, 650]], ["mental side effects of abortion", 0, [512, 546]]], {"i": "mental health side effects of abortion", "q": "0AQfORmOkY_qogNUt4f8hvGLa_8", "t": {"bpc": false, "tlw": false}}], "suggests": ["mental health side effects of abortion", "negative mental health effects of abortion", "psychological side effects of abortion", "mental health risks of abortion", "mental health affects of abortion", "long term effects of abortion", "abortion effects on health", "mental side effects of abortion"], "self_loops": [0], "tags": {"i": "mental health side effects of abortion", "q": "0AQfORmOkY_qogNUt4f8hvGLa_8", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion side effects mentally", "datetime": "2026-03-12 19:35:31.235087", "source": "google", "data": ["abortion side effects mentally", [["abortion side effects mentally", 0, [22, 30]], ["abortion after effects mentally", 0, [22, 30]], ["abortion side effects mental health", 0, [22, 30]], ["abortion side effects emotionally", 0, [22, 30]], ["abortion pill side effects mentally", 0, [22, 30]], ["abortion pill side effects emotional", 0, [22, 30]], ["abortion side effects future pregnancy", 0, [512, 390, 650]], ["after abortion psychological effects", 0, [512, 390, 650]], ["abortion effects on health", 0, [512, 390, 650]], ["long term effects of abortion", 0, [512, 390, 650]]], {"i": "abortion side effects mentally", "q": "KyDCXU-Vq15qhJdZ2CeWJqaUWXE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion side effects mentally", "abortion after effects mentally", "abortion side effects mental health", "abortion side effects emotionally", "abortion pill side effects mentally", "abortion pill side effects emotional", "abortion side effects future pregnancy", "after abortion psychological effects", "abortion effects on health", "long term effects of abortion"], "self_loops": [0], "tags": {"i": "abortion side effects mentally", "q": "KyDCXU-Vq15qhJdZ2CeWJqaUWXE", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects days later", "datetime": "2026-03-12 19:35:32.051926", "source": "google", "data": ["morning after pill side effects days later", [["morning after pill side effects days later", 0, [512]], ["morning after pill side effects weeks later", 0, [22, 30]], ["morning after pill side effects 3 days later", 0, [22, 30]], ["morning after pill side effects 2 days later", 0, [22, 30]], ["morning after pill side effects 4 days later", 0, [22, 30]], ["morning after pill side effects 2 weeks later", 0, [22, 30]], ["morning after pill side effects 3 weeks later", 0, [22, 30]], ["side effects of morning after pill 5 days later", 0, [22, 30]], ["how many days do morning after pill side effects last", 0, [512, 390, 650]], ["morning after pill side effects menstrual cycle", 0, [512, 546]]], {"i": "morning after pill side effects days later", "q": "7-K1Zi0arnK89HA4zpU-o-fvaVo", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects days later", "morning after pill side effects weeks later", "morning after pill side effects 3 days later", "morning after pill side effects 2 days later", "morning after pill side effects 4 days later", "morning after pill side effects 2 weeks later", "morning after pill side effects 3 weeks later", "side effects of morning after pill 5 days later", "how many days do morning after pill side effects last", "morning after pill side effects menstrual cycle"], "self_loops": [0], "tags": {"i": "morning after pill side effects days later", "q": "7-K1Zi0arnK89HA4zpU-o-fvaVo", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects days", "datetime": "2026-03-12 19:35:33.434051", "source": "google", "data": ["morning after pill side effects days", [["morning after pill side effects days later", 0, [512]], ["morning after pill side effects days", 0, [22, 30]], ["morning after pill side effects day 2", 0, [22, 30]], ["morning after pill side effects 3 days later", 0, [22, 30]], ["morning after pill side effects 2 days later", 0, [22, 30]], ["morning after pill side effects 4 days later", 0, [22, 30]], ["morning after pill side effects after 5 days", 0, [22, 30]], ["morning after pill side effects next day", 0, [22, 30]], ["how many days do morning after pill side effects last", 0, [22, 30]], ["how long does morning after pills side effects last", 0, [512, 390, 650]]], {"i": "morning after pill side effects days", "q": "TfVDF_DjqNGmXEG20Bn3wUr_Cws", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects days later", "morning after pill side effects days", "morning after pill side effects day 2", "morning after pill side effects 3 days later", "morning after pill side effects 2 days later", "morning after pill side effects 4 days later", "morning after pill side effects after 5 days", "morning after pill side effects next day", "how many days do morning after pill side effects last", "how long does morning after pills side effects last"], "self_loops": [1], "tags": {"i": "morning after pill side effects days", "q": "TfVDF_DjqNGmXEG20Bn3wUr_Cws", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long do side effects of abortion pills last", "datetime": "2026-03-12 19:35:34.273363", "source": "google", "data": ["how long do side effects of abortion pills last", [["how long do side effects of abortion pills last", 0, [22, 30]], ["how long do symptoms of abortion pills last", 0, [22, 30]], ["what are the long term side effects of abortion pills", 0, [512, 390, 650]]], {"i": "how long do side effects of abortion pills last", "q": "PI4hPmDsodW9ya4NzfudLdkRiW4", "t": {"bpc": false, "tlw": false}}], "suggests": ["how long do side effects of abortion pills last", "how long do symptoms of abortion pills last", "what are the long term side effects of abortion pills"], "self_loops": [0], "tags": {"i": "how long do side effects of abortion pills last", "q": "PI4hPmDsodW9ya4NzfudLdkRiW4", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "bleeding 5 weeks after abortion pill", "datetime": "2026-03-12 19:35:35.601920", "source": "google", "data": ["bleeding 5 weeks after abortion pill", [["bleeding 5 weeks after abortion pill", 0, [512]], ["still bleeding 5 weeks after abortion pill", 0, [22, 30]], ["heavy bleeding 5 weeks after abortion pill", 0, [22, 30]], ["is it normal to bleed 5 weeks after abortion pill", 0, [22, 30]], ["bleeding 5 weeks after abortion", 0, [512, 390, 650]], ["spotting 5 weeks after abortion", 0, [512, 390, 650]], ["bleeding 5 weeks after misoprostol", 0, [512, 390, 650]], ["bleeding 5 days after abortion", 0, [512, 546]], ["bleeding 5 days after misoprostol", 0, [512, 546]]], {"i": "bleeding 5 weeks after abortion pill", "q": "hkG7PREYlgCK0gh4ACapVC4l1nA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["bleeding 5 weeks after abortion pill", "still bleeding 5 weeks after abortion pill", "heavy bleeding 5 weeks after abortion pill", "is it normal to bleed 5 weeks after abortion pill", "bleeding 5 weeks after abortion", "spotting 5 weeks after abortion", "bleeding 5 weeks after misoprostol", "bleeding 5 days after abortion", "bleeding 5 days after misoprostol"], "self_loops": [0], "tags": {"i": "bleeding 5 weeks after abortion pill", "q": "hkG7PREYlgCK0gh4ACapVC4l1nA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "bleeding 5 days after abortion pill", "datetime": "2026-03-12 19:35:37.085979", "source": "google", "data": ["bleeding 5 days after abortion pill", [["bleeding 5 days after abortion pill", 0, [512]], ["bleeding 5 days after morning after pill", 0, [22, 30]], ["spotting 5 days after morning after pill", 0, [22, 30]], ["heavy bleeding 5 days after abortion pill", 0, [22, 30]], ["still bleeding 5 days after abortion pill", 0, [22, 30]], ["light bleeding 5 days after morning after pill", 0, [22, 30]], ["heavy bleeding 5 days after morning after pill", 0, [22, 30]], ["brown blood 5 days after morning after pill", 0, [22, 30]], ["why am i bleeding 5 days after morning after pill", 0, [22, 30]], ["is it normal to stop bleeding 5 days after abortion pill", 0, [22, 30]]], {"i": "bleeding 5 days after abortion pill", "q": "W70yHlh_oiMyNw-9HJsMPstMzKE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["bleeding 5 days after abortion pill", "bleeding 5 days after morning after pill", "spotting 5 days after morning after pill", "heavy bleeding 5 days after abortion pill", "still bleeding 5 days after abortion pill", "light bleeding 5 days after morning after pill", "heavy bleeding 5 days after morning after pill", "brown blood 5 days after morning after pill", "why am i bleeding 5 days after morning after pill", "is it normal to stop bleeding 5 days after abortion pill"], "self_loops": [0], "tags": {"i": "bleeding 5 days after abortion pill", "q": "W70yHlh_oiMyNw-9HJsMPstMzKE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in pregnancy kannada", "datetime": "2026-03-12 19:35:38.437634", "source": "google", "data": ["abortion meaning in pregnancy kannada", [["abortion meaning in pregnancy kannada", 0, [22, 455, 30]], ["abortion definition in obstetrics", 0, [512, 390, 650]], ["abortion meaning in telugu", 0, [512, 390, 650]], ["abortion meaning in hindi definition", 0, [512, 390, 650]], ["abortion meaning in sinhala", 0, [512, 390, 650]], ["abortion meaning in hebrew", 0, [512, 546]], ["abortion meaning in english", 0, [512, 546]], ["abortion meaning in simple words", 0, [512, 546]], ["abortion meaning in farsi", 0, [546, 649]], ["abortion matra kannada", 0, [751]]], {"i": "abortion meaning in pregnancy kannada", "q": "A_3GbOwv1Te35qCi2vDDEZLZbk8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in pregnancy kannada", "abortion definition in obstetrics", "abortion meaning in telugu", "abortion meaning in hindi definition", "abortion meaning in sinhala", "abortion meaning in hebrew", "abortion meaning in english", "abortion meaning in simple words", "abortion meaning in farsi", "abortion matra kannada"], "self_loops": [0], "tags": {"i": "abortion meaning in pregnancy kannada", "q": "A_3GbOwv1Te35qCi2vDDEZLZbk8", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in marathi pregnancy", "datetime": "2026-03-12 19:35:39.869076", "source": "google", "data": ["abortion meaning in marathi pregnancy", [["abortion meaning in marathi pregnancy", 0, [512]], ["missed abortion meaning in marathi pregnancy", 0, [22, 30]], ["abortion meaning in marathi", 0, [512, 390, 650]], ["abortion definition in india", 0, [512, 390, 650]], ["abortion meaning in hindi definition", 0, [512, 390, 650]], ["meaning of abortion in pregnancy", 0, [512, 390, 650]], ["abortion definition in obstetrics", 0, [512, 390, 650]], ["abortion meaning in marathi translation", 0, [751]], ["abortion meaning", 0, [512, 546]], ["abortion in marathi translation", 0, [751]]], {"i": "abortion meaning in marathi pregnancy", "q": "9eJYmTYREzRlD91WBkY6Jh5fe64", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion meaning in marathi pregnancy", "missed abortion meaning in marathi pregnancy", "abortion meaning in marathi", "abortion definition in india", "abortion meaning in hindi definition", "meaning of abortion in pregnancy", "abortion definition in obstetrics", "abortion meaning in marathi translation", "abortion meaning", "abortion in marathi translation"], "self_loops": [0], "tags": {"i": "abortion meaning in marathi pregnancy", "q": "9eJYmTYREzRlD91WBkY6Jh5fe64", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "complete abortion meaning in pregnancy", "datetime": "2026-03-12 19:35:41.203488", "source": "google", "data": ["complete abortion meaning in pregnancy", [["complete abortion meaning in pregnancy", 0, [512]], ["spontaneous abortion meaning in pregnancy", 0, [22, 30]], ["abortion meaning in pregnancy", 0, [22, 30]], ["abortion meaning in pregnancy kannada", 0, [22, 455, 30]], ["what is the meaning of complete abortion", 0, [512, 390, 650]], ["what are signs of a complete abortion", 0, [512, 390, 650]], ["complete abortion definition", 0, [512, 546]], ["complete abortion vs missed abortion", 0, [512, 546]], ["complete abortion laws", 0, [751]], ["complete abortion wikem", 0, [751]]], {"i": "complete abortion meaning in pregnancy", "q": "MpW1hwrhD3H5U9cwNwrduyEw5cI", "t": {"bpc": false, "tlw": false}}], "suggests": ["complete abortion meaning in pregnancy", "spontaneous abortion meaning in pregnancy", "abortion meaning in pregnancy", "abortion meaning in pregnancy kannada", "what is the meaning of complete abortion", "what are signs of a complete abortion", "complete abortion definition", "complete abortion vs missed abortion", "complete abortion laws", "complete abortion wikem"], "self_loops": [0], "tags": {"i": "complete abortion meaning in pregnancy", "q": "MpW1hwrhD3H5U9cwNwrduyEw5cI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "induced abortion meaning in pregnancy", "datetime": "2026-03-12 19:35:42.216712", "source": "google", "data": ["induced abortion meaning in pregnancy", [["induced abortion meaning in pregnancy", 0, [22, 30]], ["spontaneous abortion meaning in pregnancy", 0, [22, 30]], ["what is threatened abortion in pregnancy", 0, [512, 390, 650]], ["what does induced mean in pregnancy", 0, [512, 390, 650]], ["what happens when a pregnant lady is induced", 0, [512, 390, 650]], ["induced abortion medical definition", 0, [512, 546]], ["induced abortions meaning", 0, [546, 649]], ["induced abortion definition", 0, [512, 546]], ["induced abortion def", 0, [546, 649]], ["induced abortion definition dictionary", 0, [546, 649]]], {"i": "induced abortion meaning in pregnancy", "q": "ordWMWBIAsFq7XctC0wuoV5Anv4", "t": {"bpc": false, "tlw": false}}], "suggests": ["induced abortion meaning in pregnancy", "spontaneous abortion meaning in pregnancy", "what is threatened abortion in pregnancy", "what does induced mean in pregnancy", "what happens when a pregnant lady is induced", "induced abortion medical definition", "induced abortions meaning", "induced abortion definition", "induced abortion def", "induced abortion definition dictionary"], "self_loops": [0], "tags": {"i": "induced abortion meaning in pregnancy", "q": "ordWMWBIAsFq7XctC0wuoV5Anv4", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion meaning in pregnancy", "datetime": "2026-03-12 19:35:43.697473", "source": "google", "data": ["missed abortion meaning in pregnancy", [["missed abortion meaning in pregnancy", 0, [22, 30]], ["spontaneous abortion meaning in pregnancy", 0, [22, 30]], ["incomplete abortion meaning in pregnancy", 0, [22, 30]], ["missed abortion meaning in telugu pregnancy", 0, [22, 30]], ["missed abortion meaning in marathi pregnancy", 0, [22, 30]], ["missed abortion means in pregnancy in hindi", 0, [22, 30]], ["what does missed ab mean in pregnancy", 0, [22, 30]], ["incomplete abortion meaning tagalog pregnancy", 0, [22, 30]], ["what does missed abortion mean in pregnancy", 0, [512, 390, 650]], ["what causes missed abortion in early pregnancy", 0, [512, 390, 650]]], {"i": "missed abortion meaning in pregnancy", "q": "H4go-fCb7qrM0J6FQwEK_GbJ6iQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["missed abortion meaning in pregnancy", "spontaneous abortion meaning in pregnancy", "incomplete abortion meaning in pregnancy", "missed abortion meaning in telugu pregnancy", "missed abortion meaning in marathi pregnancy", "missed abortion means in pregnancy in hindi", "what does missed ab mean in pregnancy", "incomplete abortion meaning tagalog pregnancy", "what does missed abortion mean in pregnancy", "what causes missed abortion in early pregnancy"], "self_loops": [0], "tags": {"i": "missed abortion meaning in pregnancy", "q": "H4go-fCb7qrM0J6FQwEK_GbJ6iQ", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion meaning in pregnancy", "datetime": "2026-03-12 19:35:45.127464", "source": "google", "data": ["threatened abortion meaning in pregnancy", [["threatened abortion meaning in pregnancy", 0, [22, 30]], ["threatened abortion meaning tagalog pregnancy", 0, [22, 30]], ["what is threatened abortion in pregnancy", 0, [512, 390, 650]], ["what is a threatened miscarriage", 0, [512, 390, 650]], ["what is threatened abortion", 0, [512, 390, 650]], ["what is a threatened pregnancy", 0, [512, 390, 650]], ["whats a threatened miscarriage", 0, [512, 390, 650]], ["threatened abortion in early pregnancy", 0, [512, 546]], ["threatened abortion in first trimester", 0, [512, 546]], ["threatened abortion medical term", 0, [512, 546]]], {"i": "threatened abortion meaning in pregnancy", "q": "sTii3oN2BZOo0qdMwQ3o7HSpz-U", "t": {"bpc": false, "tlw": false}}], "suggests": ["threatened abortion meaning in pregnancy", "threatened abortion meaning tagalog pregnancy", "what is threatened abortion in pregnancy", "what is a threatened miscarriage", "what is threatened abortion", "what is a threatened pregnancy", "whats a threatened miscarriage", "threatened abortion in early pregnancy", "threatened abortion in first trimester", "threatened abortion medical term"], "self_loops": [0], "tags": {"i": "threatened abortion meaning in pregnancy", "q": "sTii3oN2BZOo0qdMwQ3o7HSpz-U", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion meaning in pregnancy", "datetime": "2026-03-12 19:35:46.157072", "source": "google", "data": ["spontaneous abortion meaning in pregnancy", [["spontaneous abortion meaning in pregnancy", 0, [22, 30]], ["induced abortion meaning in pregnancy", 0, [22, 30]], ["what is a spontaneous abortion mean", 0, [512, 390, 650]], ["what is the definition of spontaneous abortion", 0, [512, 390, 650]], ["is spontaneous abortion the same as miscarriage", 0, [512, 390, 650]], ["spontaneous abortion medical definition", 0, [512, 546]], ["spontaneous abortion vs induced abortion", 0, [512, 546]], ["spontaneous abortion or miscarriage definition", 0, [546, 649]]], {"i": "spontaneous abortion meaning in pregnancy", "q": "gKVRIX7heR7D2ImAg3kHNGzeAQ0", "t": {"bpc": false, "tlw": false}}], "suggests": ["spontaneous abortion meaning in pregnancy", "induced abortion meaning in pregnancy", "what is a spontaneous abortion mean", "what is the definition of spontaneous abortion", "is spontaneous abortion the same as miscarriage", "spontaneous abortion medical definition", "spontaneous abortion vs induced abortion", "spontaneous abortion or miscarriage definition"], "self_loops": [0], "tags": {"i": "spontaneous abortion meaning in pregnancy", "q": "gKVRIX7heR7D2ImAg3kHNGzeAQ0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in pregnancy in hindi", "datetime": "2026-03-12 19:35:46.978593", "source": "google", "data": ["abortion meaning in pregnancy in hindi", [["abortion meaning in pregnancy in hindi", 0, [22, 30]], ["missed abortion means in pregnancy in hindi", 0, [22, 30]], ["abortion meaning in hindi definition", 0, [512, 390, 650]], ["abortion meaning in sinhala", 0, [512, 390, 650]], ["definition of abortion in ethiopia", 0, [512, 390, 650]], ["meaning of abortion in pregnancy", 0, [512, 390, 650]], ["abortion definition in obstetrics", 0, [512, 390, 650]], ["abortion meaning in hebrew", 0, [512, 546]], ["abortion meaning in simple words", 0, [512, 546]], ["abortion meaning in farsi", 0, [546, 649]]], {"i": "abortion meaning in pregnancy in hindi", "q": "RTdb9booSXQ0Tacb7TgN-4uWSJE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in pregnancy in hindi", "missed abortion means in pregnancy in hindi", "abortion meaning in hindi definition", "abortion meaning in sinhala", "definition of abortion in ethiopia", "meaning of abortion in pregnancy", "abortion definition in obstetrics", "abortion meaning in hebrew", "abortion meaning in simple words", "abortion meaning in farsi"], "self_loops": [0], "tags": {"i": "abortion meaning in pregnancy in hindi", "q": "RTdb9booSXQ0Tacb7TgN-4uWSJE", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic abortion meaning in pregnancy", "datetime": "2026-03-12 19:35:48.009472", "source": "google", "data": ["septic abortion meaning in pregnancy", [["septic abortion meaning in pregnancy", 0, [22, 30]], ["what is threatened abortion in pregnancy", 0, [512, 390, 650]], ["what is sepsis when pregnant", 0, [512, 390, 650]], ["septic abortion means", 0, [512, 390, 650]], ["septic pregnancy abortion", 0, [751]], ["septic abortion ultrasound", 0, [512, 546]], ["septic pregnancy definition", 0, [751]], ["septic abortion acog", 0, [512, 546]], ["septic abortion symptoms", 0, [512, 546]]], {"i": "septic abortion meaning in pregnancy", "q": "c-zz977TfNfDjXgkAqtNfOKoQy0", "t": {"bpc": false, "tlw": false}}], "suggests": ["septic abortion meaning in pregnancy", "what is threatened abortion in pregnancy", "what is sepsis when pregnant", "septic abortion means", "septic pregnancy abortion", "septic abortion ultrasound", "septic pregnancy definition", "septic abortion acog", "septic abortion symptoms"], "self_loops": [0], "tags": {"i": "septic abortion meaning in pregnancy", "q": "c-zz977TfNfDjXgkAqtNfOKoQy0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in english oxford", "datetime": "2026-03-12 19:35:49.134301", "source": "google", "data": ["abortion meaning in english oxford", [["abortion meaning in english oxford", 0, [22, 30]], ["abortion definition oxford", 0, [512, 390, 650]], ["what is the meaning of abortion in english", 0, [512, 390, 650]], ["oxford dictionary abortion", 0, [512, 546]], ["oxford dictionary definition of abortion", 0, [512, 546]]], {"i": "abortion meaning in english oxford", "q": "hb2lkgFAPhU3TyczvpPY9WjM934", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in english oxford", "abortion definition oxford", "what is the meaning of abortion in english", "oxford dictionary abortion", "oxford dictionary definition of abortion"], "self_loops": [0], "tags": {"i": "abortion meaning in english oxford", "q": "hb2lkgFAPhU3TyczvpPY9WjM934", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in english grammar", "datetime": "2026-03-12 19:35:49.952378", "source": "google", "data": ["abortion meaning in english grammar", [["abortion meaning in english grammar", 0, [22, 30]], ["what is the meaning of abortion in english", 0, [512, 390, 650]], ["abortion meaning in telugu", 0, [512, 390, 650]], ["abortion meaning in simple words", 0, [512, 546]], ["abortion meaning in farsi", 0, [546, 649]], ["abortion meaning easy", 0, [546, 649]], ["abortion in english grammar", 0, [751]]], {"i": "abortion meaning in english grammar", "q": "psIcW2XA6COU72t_Jk3J5jCdsZI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in english grammar", "what is the meaning of abortion in english", "abortion meaning in telugu", "abortion meaning in simple words", "abortion meaning in farsi", "abortion meaning easy", "abortion in english grammar"], "self_loops": [0], "tags": {"i": "abortion meaning in english grammar", "q": "psIcW2XA6COU72t_Jk3J5jCdsZI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in english with example", "datetime": "2026-03-12 19:35:51.033060", "source": "google", "data": ["abortion meaning in english with example", [["abortion meaning in english with example", 0, [22, 30]], ["abortion meaning in english", 0, [512, 390, 650]], ["abortion meaning in telugu", 0, [512, 390, 650]], ["abortion meaning in hindi definition", 0, [512, 390, 650]], ["abortion meaning in simple words", 0, [512, 546]], ["abortion meaning easy", 0, [546, 649]], ["abortion meaning simple", 0, [512, 546]], ["abortion meaning in hebrew", 0, [512, 546]]], {"i": "abortion meaning in english with example", "q": "HKtb2h0H8nVsL1jwN4_lHPt4kP4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in english with example", "abortion meaning in english", "abortion meaning in telugu", "abortion meaning in hindi definition", "abortion meaning in simple words", "abortion meaning easy", "abortion meaning simple", "abortion meaning in hebrew"], "self_loops": [0], "tags": {"i": "abortion meaning in english with example", "q": "HKtb2h0H8nVsL1jwN4_lHPt4kP4", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abort meaning in english synonyms", "datetime": "2026-03-12 19:35:51.862806", "source": "google", "data": ["abort meaning in english synonyms", [["abort meaning in english synonyms", 0, [512]], ["stop meaning in english synonyms", 0, [22, 30]], ["terminate meaning in english synonyms", 0, [22, 30]], ["termination meaning in english", 0, [512, 390, 650]], ["terminated meaning synonym", 0, [512, 390, 650]], ["termination synonyms in english", 0, [512, 390, 650]], ["abort synonyms and antonyms", 0, [512, 546]], ["abort synonyms", 0, [512, 546]], ["abort definition english", 0, [512, 546]], ["abort meaning", 0, [512, 546]]], {"i": "abort meaning in english synonyms", "q": "IZpsGnTYfQVBR6ucdAw9K0BkmyQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abort meaning in english synonyms", "stop meaning in english synonyms", "terminate meaning in english synonyms", "termination meaning in english", "terminated meaning synonym", "termination synonyms in english", "abort synonyms and antonyms", "abort synonyms", "abort definition english", "abort meaning"], "self_loops": [0], "tags": {"i": "abort meaning in english synonyms", "q": "IZpsGnTYfQVBR6ucdAw9K0BkmyQ", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion meaning in english", "datetime": "2026-03-12 19:35:53.079724", "source": "google", "data": ["threatened abortion meaning in english", [["threatened abortion meaning in english", 0, [512]], ["inevitable abortion meaning in english", 0, [22, 30]], ["threatened abortion in hindi meaning in english", 0, [22, 30]], ["what do you mean by threatened abortion", 0, [512, 390, 650]], ["what is threatened abortion", 0, [512, 390, 650]], ["threatened abortion meaning in tamil", 0, [512, 390, 650]], ["threatened abortion medical term", 0, [512, 546]], ["threatened abortion definition", 0, [512, 546]], ["threatened abortion in early pregnancy", 0, [512, 546]], ["threatening abortion meaning", 0, [512, 546]]], {"i": "threatened abortion meaning in english", "q": "OoyD-Cr7dPcbeTIXPNz3aTcbTpk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["threatened abortion meaning in english", "inevitable abortion meaning in english", "threatened abortion in hindi meaning in english", "what do you mean by threatened abortion", "what is threatened abortion", "threatened abortion meaning in tamil", "threatened abortion medical term", "threatened abortion definition", "threatened abortion in early pregnancy", "threatening abortion meaning"], "self_loops": [0], "tags": {"i": "threatened abortion meaning in english", "q": "OoyD-Cr7dPcbeTIXPNz3aTcbTpk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion meaning in english", "datetime": "2026-03-12 19:35:53.925327", "source": "google", "data": ["spontaneous abortion meaning in english", [["spontaneous abortion meaning in english", 0, [512]], ["induced abortion meaning in english", 0, [22, 30]], ["what is a spontaneous abortion mean", 0, [512, 390, 650]], ["what is the definition of spontaneous abortion", 0, [512, 390, 650]], ["what does a spontaneous abortion mean", 0, [512, 390, 650]], ["spontaneous abortion medical definition", 0, [512, 390, 650]], ["spontaneous abortion def", 0, [751]], ["spontaneous abortion synonyms", 0, [546, 649]], ["spontaneous abortion terminology", 0, [751]]], {"i": "spontaneous abortion meaning in english", "q": "ewlme1Pru5GJ2gSFlS1ePhaxouY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["spontaneous abortion meaning in english", "induced abortion meaning in english", "what is a spontaneous abortion mean", "what is the definition of spontaneous abortion", "what does a spontaneous abortion mean", "spontaneous abortion medical definition", "spontaneous abortion def", "spontaneous abortion synonyms", "spontaneous abortion terminology"], "self_loops": [0], "tags": {"i": "spontaneous abortion meaning in english", "q": "ewlme1Pru5GJ2gSFlS1ePhaxouY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "induced abortion meaning in english", "datetime": "2026-03-12 19:35:55.020161", "source": "google", "data": ["induced abortion meaning in english", [["induced abortion meaning in english", 0, [512]], ["spontaneous abortion meaning in english", 0, [22, 30]], ["induced abortion meaning", 0, [512, 390, 650]], ["what is the meaning of abortion in english", 0, [512, 390, 650]], ["induced abortion meaning in urdu", 0, [512, 390, 650]], ["induced abortion definition dictionary", 0, [546, 649]], ["induced abortion medical definition", 0, [512, 546]], ["induced abortion def", 0, [546, 649]], ["induced abortion definition", 0, [512, 546]]], {"i": "induced abortion meaning in english", "q": "kO8xUYnOzR4e0_HHPK6tbshYtwg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["induced abortion meaning in english", "spontaneous abortion meaning in english", "induced abortion meaning", "what is the meaning of abortion in english", "induced abortion meaning in urdu", "induced abortion definition dictionary", "induced abortion medical definition", "induced abortion def", "induced abortion definition"], "self_loops": [0], "tags": {"i": "induced abortion meaning in english", "q": "kO8xUYnOzR4e0_HHPK6tbshYtwg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion meaning in english", "datetime": "2026-03-12 19:35:55.842167", "source": "google", "data": ["missed abortion meaning in english", [["missed abortion meaning in english", 0, [512]], ["spontaneous abortion meaning in english", 0, [22, 30]], ["incomplete abortion meaning in english", 0, [22, 30]], ["missed abortion definition", 0, [512, 390, 650]], ["what is mean by missed abortion", 0, [512, 390, 650]], ["explain missed abortion", 0, [512, 390, 650]], ["what does it mean by missed abortion", 0, [512, 390, 650]], ["missed abortion medical definition", 0, [512, 546]], ["missed abortion medical term", 0, [512, 546]], ["missed abortion medical abbreviation", 0, [751]]], {"i": "missed abortion meaning in english", "q": "9ngxINlR-r0YfoJ7j-kJeAm9sSs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["missed abortion meaning in english", "spontaneous abortion meaning in english", "incomplete abortion meaning in english", "missed abortion definition", "what is mean by missed abortion", "explain missed abortion", "what does it mean by missed abortion", "missed abortion medical definition", "missed abortion medical term", "missed abortion medical abbreviation"], "self_loops": [0], "tags": {"i": "missed abortion meaning in english", "q": "9ngxINlR-r0YfoJ7j-kJeAm9sSs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable abortion meaning in english", "datetime": "2026-03-12 19:35:57.183761", "source": "google", "data": ["inevitable abortion meaning in english", [["inevitable abortion meaning in english", 0, [512]], ["threatened abortion meaning in english", 0, [22, 30]], ["missed abortion meaning in english", 0, [22, 30]], ["incomplete abortion meaning in english", 0, [22, 30]], ["threatened abortion in hindi meaning in english", 0, [22, 30]], ["inevitable abortion definition", 0, [512, 390, 650]], ["what is the meaning of abortion in english", 0, [512, 390, 650]], ["inevitable.abortion", 0, [512, 546]], ["inevitable abortion vs threatened abortion", 0, [512, 546]], ["inevitable ab", 0, [512, 546]]], {"i": "inevitable abortion meaning in english", "q": "p9yuVleSlm4hf4CggE2YHJgMRi0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["inevitable abortion meaning in english", "threatened abortion meaning in english", "missed abortion meaning in english", "incomplete abortion meaning in english", "threatened abortion in hindi meaning in english", "inevitable abortion definition", "what is the meaning of abortion in english", "inevitable.abortion", "inevitable abortion vs threatened abortion", "inevitable ab"], "self_loops": [0], "tags": {"i": "inevitable abortion meaning in english", "q": "p9yuVleSlm4hf4CggE2YHJgMRi0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning for child", "datetime": "2026-03-12 19:35:58.142010", "source": "google", "data": ["abortion meaning for child", [["abortion meaning for kids", 0, [22, 30]], ["abortion meaning for child", 0, [751]], ["abortion meaning in english", 0, [512, 546]], ["abortion meaning in simple words", 0, [512, 546]]], {"i": "abortion meaning for child", "q": "Y8lT6SnPMi_yqmUh4Y8Oj4puIYY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning for kids", "abortion meaning for child", "abortion meaning in english", "abortion meaning in simple words"], "self_loops": [1], "tags": {"i": "abortion meaning for child", "q": "Y8lT6SnPMi_yqmUh4Y8Oj4puIYY", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in simple words", "datetime": "2026-03-12 19:35:59.175733", "source": "google", "data": ["abortion meaning in simple words", [["abortion meaning in simple words", 0, [512]], ["what is called abortion", 0, [512, 390, 650]], ["abortion meaning simple", 0, [512, 546]], ["abortion meaning in english", 0, [512, 546]], ["abortion meaning easy", 0, [546, 649]]], {"i": "abortion meaning in simple words", "q": "rbFd_VZGYhS6KeYRFtq83J9NTkE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion meaning in simple words", "what is called abortion", "abortion meaning simple", "abortion meaning in english", "abortion meaning easy"], "self_loops": [0], "tags": {"i": "abortion meaning in simple words", "q": "rbFd_VZGYhS6KeYRFtq83J9NTkE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion baby meaning", "datetime": "2026-03-12 19:36:00.524460", "source": "google", "data": ["abortion baby meaning", [["abortion baby meaning", 0, [512]], ["baby abortion meaning in hindi", 0, [22, 30]], ["baby abortion meaning in english", 0, [22, 30]], ["miscarriage baby meaning", 0, [22, 30]], ["miscarriage baby meaning in hindi", 0, [22, 30]], ["miscarriage baby meaning in urdu", 0, [22, 30]], ["abortion child meaning", 0, [22, 30]], ["aborted fetus meaning", 0, [22, 30]], ["aborted fetus meaning in hindi", 0, [22, 30]], ["aborted fetus meaning in tamil", 0, [22, 30]]], {"i": "abortion baby meaning", "q": "ZM4Pp0x94CRbUnYnYAXLi5ECH_8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion baby meaning", "baby abortion meaning in hindi", "baby abortion meaning in english", "miscarriage baby meaning", "miscarriage baby meaning in hindi", "miscarriage baby meaning in urdu", "abortion child meaning", "aborted fetus meaning", "aborted fetus meaning in hindi", "aborted fetus meaning in tamil"], "self_loops": [0], "tags": {"i": "abortion baby meaning", "q": "ZM4Pp0x94CRbUnYnYAXLi5ECH_8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning easy", "datetime": "2026-03-12 19:36:01.955847", "source": "google", "data": ["abortion meaning easy", [["abortion meaning easy", 0, [22, 30]], ["abortion definition easy", 0, [22, 30]], ["abortion meaning simple", 0, [22, 30]], ["anti abortion meaning", 0, [512, 390, 650]], ["abortion meaning in simple words", 0, [512, 546]]], {"i": "abortion meaning easy", "q": "tjdY69bF6O-2iHCk5YKe86BLPi8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning easy", "abortion definition easy", "abortion meaning simple", "anti abortion meaning", "abortion meaning in simple words"], "self_loops": [0], "tags": {"i": "abortion meaning easy", "q": "tjdY69bF6O-2iHCk5YKe86BLPi8", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "anti abortion meaning simple", "datetime": "2026-03-12 19:36:02.988828", "source": "google", "data": ["anti abortion meaning simple", [["anti abortion meaning simple", 0, [22, 30]], ["anti abortion meaning", 0, [512, 390, 650]], ["anti-abortion meaning example", 0, [751]], ["anti abortion meaning tagalog", 0, [546, 649]], ["anti-abortion definition simple", 0, [546, 649]]], {"i": "anti abortion meaning simple", "q": "5SxJVUidDc4eBOs4AWPcgSQznS0", "t": {"bpc": false, "tlw": false}}], "suggests": ["anti abortion meaning simple", "anti abortion meaning", "anti-abortion meaning example", "anti abortion meaning tagalog", "anti-abortion definition simple"], "self_loops": [0], "tags": {"i": "anti abortion meaning simple", "q": "5SxJVUidDc4eBOs4AWPcgSQznS0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion simple meaning", "datetime": "2026-03-12 19:36:03.816082", "source": "google", "data": ["threatened abortion simple meaning", [["threatened abortion simple meaning", 0, [22, 30]], ["what do you mean by threatened abortion", 0, [512, 390, 650]], ["what is threatened abortion", 0, [512, 390, 650]], ["what is threatened abortion in pregnancy", 0, [512, 390, 650]], ["types of abortion threatened", 0, [512, 390, 650]], ["threatened abortion definition", 0, [512, 546]], ["threatened abortion medical term", 0, [512, 546]], ["threatened abortion vs threatened miscarriage", 0, [512, 546]], ["threatened abortion vs spontaneous abortion", 0, [512, 546]], ["threatened abortion vs inevitable abortion", 0, [512, 546]]], {"i": "threatened abortion simple meaning", "q": "WzXn4wIe57Lo696w1ba4NVG6HWs", "t": {"bpc": false, "tlw": false}}], "suggests": ["threatened abortion simple meaning", "what do you mean by threatened abortion", "what is threatened abortion", "what is threatened abortion in pregnancy", "types of abortion threatened", "threatened abortion definition", "threatened abortion medical term", "threatened abortion vs threatened miscarriage", "threatened abortion vs spontaneous abortion", "threatened abortion vs inevitable abortion"], "self_loops": [0], "tags": {"i": "threatened abortion simple meaning", "q": "WzXn4wIe57Lo696w1ba4NVG6HWs", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion simple terms", "datetime": "2026-03-12 19:36:04.880599", "source": "google", "data": ["abortion simple terms", [["abortion simple terms", 0, [22, 30]], ["hyde amendment simple terms", 0, [22, 30]], ["miscarriage simple terms", 0, [22, 30]], ["abortion simple definition", 0, [22, 30]], ["abortion simple explanation", 0, [22, 30]], ["abortion simple meaning", 0, [546, 649]]], {"i": "abortion simple terms", "q": "FKoKHQJA6f1i-aRcrnfXLWTxFKE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion simple terms", "hyde amendment simple terms", "miscarriage simple terms", "abortion simple definition", "abortion simple explanation", "abortion simple meaning"], "self_loops": [0], "tags": {"i": "abortion simple terms", "q": "FKoKHQJA6f1i-aRcrnfXLWTxFKE", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion simple explanation", "datetime": "2026-03-12 19:36:06.287698", "source": "google", "data": ["abortion simple explanation", [["abortion simple explanation", 0, [22, 30]], ["abortion simple definition", 0, [22, 30]], ["abortion simple meaning", 0, [546, 649]], ["abortion simple terms", 0, [751]]], {"i": "abortion simple explanation", "q": "gw6vWhwk5S07zw4jQ8OchQy-SXM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion simple explanation", "abortion simple definition", "abortion simple meaning", "abortion simple terms"], "self_loops": [0], "tags": {"i": "abortion simple explanation", "q": "gw6vWhwk5S07zw4jQ8OchQy-SXM", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does the word abortion mean", "datetime": "2026-03-12 19:36:07.348343", "source": "google", "data": ["what does the word abortion mean", [["what does the word abortion mean", 0, [512]], ["what does the word abortion mean in greek", 0, [22, 30]], ["what does the word miscarriage mean", 0, [22, 30]], ["what does the term abortion mean", 0, [22, 30]], ["what does the term miscarriage mean", 0, [22, 30]], ["what does the term missed abortion mean", 0, [22, 30]], ["what does the term threatened abortion mean", 0, [22, 30]], ["what does the term.spontaneous abortion mean", 0, [22, 10, 30]], ["what does late term abortion mean", 0, [22, 30]], ["what does the medical term missed abortion mean", 0, [22, 30]]], {"i": "what does the word abortion mean", "q": "cSeV-ZcG4nDXcjaDAmZ0cMsDXx4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what does the word abortion mean", "what does the word abortion mean in greek", "what does the word miscarriage mean", "what does the term abortion mean", "what does the term miscarriage mean", "what does the term missed abortion mean", "what does the term threatened abortion mean", "what does the term.spontaneous abortion mean", "what does late term abortion mean", "what does the medical term missed abortion mean"], "self_loops": [0], "tags": {"i": "what does the word abortion mean", "q": "cSeV-ZcG4nDXcjaDAmZ0cMsDXx4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in arabic", "datetime": "2026-03-12 19:36:08.475978", "source": "google", "data": ["abortion meaning in arabic", [["abortion meaning in arabic", 0, [512]], ["spontaneous abortion meaning in arabic", 0, [22, 30]], ["missed abortion meaning in arabic", 0, [22, 30]], ["abortion clinic meaning in arabic", 0, [22, 30]], ["abortion meaning in islam", 0, [22, 30]], ["abortion in arabic translation", 0, [512, 390, 650]], ["termination meaning in arabic", 0, [512, 390, 650]], ["abortion in arabic", 0, [512, 546]], ["abortion meaning in farsi", 0, [546, 649]], ["abortion meaning in hebrew", 0, [512, 546]]], {"i": "abortion meaning in arabic", "q": "5bCoj7WhVFIXL_iXhUF63ITpcdo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion meaning in arabic", "spontaneous abortion meaning in arabic", "missed abortion meaning in arabic", "abortion clinic meaning in arabic", "abortion meaning in islam", "abortion in arabic translation", "termination meaning in arabic", "abortion in arabic", "abortion meaning in farsi", "abortion meaning in hebrew"], "self_loops": [0], "tags": {"i": "abortion meaning in arabic", "q": "5bCoj7WhVFIXL_iXhUF63ITpcdo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is elias a hebrew name", "datetime": "2026-03-12 19:36:09.310289", "source": "google", "data": ["is elias a hebrew name", [["is elias a hebrew name", 0, [512]], ["is elias a jewish name", 0, [22, 30]], ["is elijah a hebrew name", 0, [22, 30]], ["is elias a jewish name in the bible", 0, [22, 30]], ["is ilyas a hebrew name", 0, [22, 10, 30]], ["is elias a jewish last name", 0, [22, 30]], ["is elias a common jewish name", 0, [22, 30]], ["is elias a jewish first name", 0, [22, 30]], ["is elias rodriguez a jewish name", 0, [22, 30]], ["is elias a biblical name", 0, [512, 390, 650]]], {"i": "is elias a hebrew name", "q": "IizV3X9xITR4EdiQeWH3mYmeXg4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is elias a hebrew name", "is elias a jewish name", "is elijah a hebrew name", "is elias a jewish name in the bible", "is ilyas a hebrew name", "is elias a jewish last name", "is elias a common jewish name", "is elias a jewish first name", "is elias rodriguez a jewish name", "is elias a biblical name"], "self_loops": [0], "tags": {"i": "is elias a hebrew name", "q": "IizV3X9xITR4EdiQeWH3mYmeXg4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in hebrew bible", "datetime": "2026-03-12 19:36:10.800359", "source": "google", "data": ["abortion in hebrew bible", [["abortion in hebrew bible verse", 33, [160], {"a": "abortion in hebrew ", "b": "bible verse"}], ["abortion in hebrew bibles", 33, [160], {"a": "abortion in hebrew ", "b": "bibles"}], ["abortion in hebrew bible translation", 33, [160], {"a": "abortion in hebrew ", "b": "bible translation"}], ["abortion in hebrew bible meaning", 33, [160], {"a": "abortion in hebrew ", "b": "bible meaning"}], ["abortion in hebrew bible instructions", 33, [671], {"a": "abortion in hebrew ", "b": "bible instructions"}], ["abortion in hebrew bible leviticus", 33, [671], {"a": "abortion in hebrew ", "b": "bible leviticus"}], ["abortion in hebrew bible times", 33, [671], {"a": "abortion in hebrew ", "b": "bible times"}], ["abortion in hebrew bible numbers 5", 33, [671], {"a": "abortion in hebrew ", "b": "bible numbers 5"}], ["abortion in hebrew bible days", 33, [671], {"a": "abortion in hebrew ", "b": "bible days"}], ["abortion in hebrew bible book of numbers", 33, [671], {"a": "abortion in hebrew ", "b": "bible book of numbers"}]], {"i": "abortion in hebrew bible", "q": "JdWXnylXNg2bBOQ60NfspbJ0Gv0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in hebrew bible verse", "abortion in hebrew bibles", "abortion in hebrew bible translation", "abortion in hebrew bible meaning", "abortion in hebrew bible instructions", "abortion in hebrew bible leviticus", "abortion in hebrew bible times", "abortion in hebrew bible numbers 5", "abortion in hebrew bible days", "abortion in hebrew bible book of numbers"], "self_loops": [], "tags": {"i": "abortion in hebrew bible", "q": "JdWXnylXNg2bBOQ60NfspbJ0Gv0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in hebrew", "datetime": "2026-03-12 19:36:11.940451", "source": "google", "data": ["abortion in hebrew", [["abortion in hebrew", 0, [512]], ["abortion in hebrew translation", 0, [22, 30]], ["abortion meaning in hebrew", 0, [22, 30]], ["how to say abortion in hebrew", 0, [22, 30]], ["is abortion mentioned in the bible", 0, [512, 390, 650]], ["abortion in hebrew bible", 0, [751]], ["abortion in halacha", 0, [512, 546]]], {"i": "abortion in hebrew", "q": "lZKhh214wObALIoUq0xhWl5zQD4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion in hebrew", "abortion in hebrew translation", "abortion meaning in hebrew", "how to say abortion in hebrew", "is abortion mentioned in the bible", "abortion in hebrew bible", "abortion in halacha"], "self_loops": [0], "tags": {"i": "abortion in hebrew", "q": "lZKhh214wObALIoUq0xhWl5zQD4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in farsi", "datetime": "2026-03-12 19:36:13.048190", "source": "google", "data": ["abortion meaning in farsi", [["abortion meaning in farsi", 0, [22, 30]], ["abortion meaning in persian", 0, [22, 30]], ["bay meaning in farsi", 0, [512, 390, 650]], ["abortion in farsi", 0, [512, 546]], ["abortion definition in farsi", 0, [751]]], {"i": "abortion meaning in farsi", "q": "hAQecjvqhdQBL0XRKIJDiFRUlI8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in farsi", "abortion meaning in persian", "bay meaning in farsi", "abortion in farsi", "abortion definition in farsi"], "self_loops": [0], "tags": {"i": "abortion meaning in farsi", "q": "hAQecjvqhdQBL0XRKIJDiFRUlI8", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in hindi with example", "datetime": "2026-03-12 19:36:13.905030", "source": "google", "data": ["abortion meaning in hindi with example", [["abortion meaning in hindi with example", 0, [512]], ["transaction aborted meaning in hindi with example", 0, [22, 30]], ["call aborted meaning in hindi with example", 0, [22, 30]], ["payment aborted meaning in hindi with example", 0, [22, 30]], ["mission abort meaning in hindi with example", 0, [22, 30]], ["abort meaning in hindi with example in english", 0, [22, 30]], ["your transaction is aborted meaning in hindi with example", 0, [22, 30]], ["user aborted meaning in hindi example", 0, [22, 30]], ["spontaneous abortion meaning in hindi and examples", 0, [22, 30]], ["induced abortion meaning in hindi and examples", 0, [22, 30]]], {"i": "abortion meaning in hindi with example", "q": "zvndF_qAA_RNnagbYN4Rxbc1uig", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion meaning in hindi with example", "transaction aborted meaning in hindi with example", "call aborted meaning in hindi with example", "payment aborted meaning in hindi with example", "mission abort meaning in hindi with example", "abort meaning in hindi with example in english", "your transaction is aborted meaning in hindi with example", "user aborted meaning in hindi example", "spontaneous abortion meaning in hindi and examples", "induced abortion meaning in hindi and examples"], "self_loops": [0], "tags": {"i": "abortion meaning in hindi with example", "q": "zvndF_qAA_RNnagbYN4Rxbc1uig", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in hindi and english", "datetime": "2026-03-12 19:36:15.164867", "source": "google", "data": ["abortion meaning in hindi and english", [["abortion meaning in hindi and english", 0, [512]], ["abort meaning in hindi with example in english", 0, [22, 30]], ["abortion meaning in hindi definition", 0, [512, 390, 650]], ["what is the meaning of abortion in english", 0, [512, 390, 650]], ["abortion meaning in hebrew", 0, [512, 546]], ["abortion meaning in simple words", 0, [512, 546]], ["abortion meaning in farsi", 0, [546, 649]], ["what does abortion mean in english", 0, [751]]], {"i": "abortion meaning in hindi and english", "q": "kVF08R8bjy7MWh_tAJNwo2mdsMA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion meaning in hindi and english", "abort meaning in hindi with example in english", "abortion meaning in hindi definition", "what is the meaning of abortion in english", "abortion meaning in hebrew", "abortion meaning in simple words", "abortion meaning in farsi", "what does abortion mean in english"], "self_loops": [0], "tags": {"i": "abortion meaning in hindi and english", "q": "kVF08R8bjy7MWh_tAJNwo2mdsMA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in hindi pdf", "datetime": "2026-03-12 19:36:16.486731", "source": "google", "data": ["abortion meaning in hindi pdf", [["abortion meaning in hindi pdf", 0, [512]], ["inevitable abortion meaning in hindi pdf", 0, [22, 30]], ["spontaneous abortion meaning in hindi pdf", 0, [22, 30]], ["induced abortion meaning in hindi pdf", 0, [22, 30]], ["incomplete abortion meaning in hindi pdf", 0, [22, 30]], ["abortion meaning in hindi definition", 0, [512, 390, 650]], ["abortion meaning in hebrew", 0, [512, 546]], ["abortion meaning in simple words", 0, [512, 546]], ["abortion meaning in farsi", 0, [546, 649]], ["abortion meaning in english", 0, [512, 546]]], {"i": "abortion meaning in hindi pdf", "q": "TK_zEEgcqw1ZJ5VzeszZURhOm7o", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in hindi pdf", "inevitable abortion meaning in hindi pdf", "spontaneous abortion meaning in hindi pdf", "induced abortion meaning in hindi pdf", "incomplete abortion meaning in hindi pdf", "abortion meaning in hindi definition", "abortion meaning in hebrew", "abortion meaning in simple words", "abortion meaning in farsi", "abortion meaning in english"], "self_loops": [0], "tags": {"i": "abortion meaning in hindi pdf", "q": "TK_zEEgcqw1ZJ5VzeszZURhOm7o", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in hindi definition", "datetime": "2026-03-12 19:36:17.925719", "source": "google", "data": ["abortion meaning in hindi definition", [["abortion meaning in hindi definition", 0, [512]], ["abortion meaning in simple words", 0, [512, 546]], ["abortion meaning in english", 0, [512, 546]], ["abortion meaning in hebrew", 0, [512, 546]], ["abortion meaning in farsi", 0, [546, 649]], ["abortion meaning in the bible", 0, [512, 546]]], {"i": "abortion meaning in hindi definition", "q": "VWof57mGFv81nnchRO3Ra813ly0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in hindi definition", "abortion meaning in simple words", "abortion meaning in english", "abortion meaning in hebrew", "abortion meaning in farsi", "abortion meaning in the bible"], "self_loops": [0], "tags": {"i": "abortion meaning in hindi definition", "q": "VWof57mGFv81nnchRO3Ra813ly0", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in hindi medical", "datetime": "2026-03-12 19:36:19.329039", "source": "google", "data": ["abortion meaning in hindi medical", [["abortion meaning in hindi medical", 0, [22, 30]], ["abortion meaning in hindi definition", 0, [512, 390, 650]], ["abortion medical dictionary", 0, [751]], ["abortion medical meaning", 0, [512, 546]], ["abortion meaning in simple words", 0, [512, 546]], ["abortion meaning in hebrew", 0, [512, 546]], ["abortion meaning in english", 0, [512, 546]]], {"i": "abortion meaning in hindi medical", "q": "2agzWh_Ss55y5iCIJA2JsHLvGAk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in hindi medical", "abortion meaning in hindi definition", "abortion medical dictionary", "abortion medical meaning", "abortion meaning in simple words", "abortion meaning in hebrew", "abortion meaning in english"], "self_loops": [0], "tags": {"i": "abortion meaning in hindi medical", "q": "2agzWh_Ss55y5iCIJA2JsHLvGAk", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abort meaning in hindi synonyms", "datetime": "2026-03-12 19:36:20.329109", "source": "google", "data": ["abort meaning in hindi synonyms", [["abort meaning in hindi synonyms", 0, [22, 30]], ["what is another name for means", 0, [512, 390, 650]], ["termination meaning in english", 0, [512, 390, 650]], ["terminated meaning synonym", 0, [512, 390, 650]], ["termination meaning in urdu", 0, [512, 390, 650]], ["abort synonyms and antonyms", 0, [512, 546]], ["abort synonyms", 0, [512, 546]], ["abort meaning", 0, [512, 546]], ["abort definition verb", 0, [751]]], {"i": "abort meaning in hindi synonyms", "q": "GUFqPiuZdYvGm_MhihUVAEnUMJA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abort meaning in hindi synonyms", "what is another name for means", "termination meaning in english", "terminated meaning synonym", "termination meaning in urdu", "abort synonyms and antonyms", "abort synonyms", "abort meaning", "abort definition verb"], "self_loops": [0], "tags": {"i": "abort meaning in hindi synonyms", "q": "GUFqPiuZdYvGm_MhihUVAEnUMJA", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion translation in hindi", "datetime": "2026-03-12 19:36:21.394048", "source": "google", "data": ["abortion translation in hindi", [["abortion translation in hindi", 0, [22, 30]], ["abortion meaning in hindi", 0, [22, 30]], ["abortion meaning in hindi with example", 0, [22, 30]], ["abortion meaning in hindi and english", 0, [22, 30]], ["abortion meaning in hindi definition", 0, [22, 30]], ["abortion meaning in hindi pdf", 0, [22, 30]], ["abortion meaning in hindi medical", 0, [22, 30]], ["missed abortion translate in hindi", 0, [22, 30]], ["threatened abortion meaning in hindi", 0, [22, 30]], ["spontaneous abortion meaning in hindi", 0, [22, 30]]], {"i": "abortion translation in hindi", "q": "D6XeWHNOWxKWOREmZbAENCUC26w", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion translation in hindi", "abortion meaning in hindi", "abortion meaning in hindi with example", "abortion meaning in hindi and english", "abortion meaning in hindi definition", "abortion meaning in hindi pdf", "abortion meaning in hindi medical", "missed abortion translate in hindi", "threatened abortion meaning in hindi", "spontaneous abortion meaning in hindi"], "self_loops": [0], "tags": {"i": "abortion translation in hindi", "q": "D6XeWHNOWxKWOREmZbAENCUC26w", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion meaning in hindi", "datetime": "2026-03-12 19:36:22.391971", "source": "google", "data": ["missed abortion meaning in hindi", [["missed abortion meaning in hindi", 0, [512]], ["spontaneous abortion meaning in hindi", 0, [22, 30]], ["incomplete abortion meaning in hindi", 0, [22, 30]], ["missed miscarriage meaning in hindi", 0, [22, 30]], ["missed abortion definition in hindi", 0, [22, 30]], ["spontaneous abortion meaning in hindi and examples", 0, [22, 30]], ["spontaneous abortion meaning in hindi pdf", 0, [22, 30]], ["incomplete abortion meaning in hindi pdf", 0, [22, 30]], ["likely missed abortion meaning in hindi", 0, [22, 30]], ["so missed abortion meaning in hindi", 0, [22, 30]]], {"i": "missed abortion meaning in hindi", "q": "bAGNJT8ugL3cv_1i6FsfGlzucyo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["missed abortion meaning in hindi", "spontaneous abortion meaning in hindi", "incomplete abortion meaning in hindi", "missed miscarriage meaning in hindi", "missed abortion definition in hindi", "spontaneous abortion meaning in hindi and examples", "spontaneous abortion meaning in hindi pdf", "incomplete abortion meaning in hindi pdf", "likely missed abortion meaning in hindi", "so missed abortion meaning in hindi"], "self_loops": [0], "tags": {"i": "missed abortion meaning in hindi", "q": "bAGNJT8ugL3cv_1i6FsfGlzucyo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion meaning in hindi", "datetime": "2026-03-12 19:36:23.225324", "source": "google", "data": ["threatened abortion meaning in hindi", [["threatened abortion meaning in hindi", 0, [512]], ["inevitable abortion meaning in hindi", 0, [22, 30]], ["inevitable abortion meaning in hindi pdf", 0, [22, 30]], ["threatened abortion definition in hindi wikipedia", 0, [22, 30]], ["threatened abortion in hindi meaning in english", 0, [22, 30]], ["what do you mean by threatened abortion", 0, [512, 390, 650]], ["threatened abortion meaning in tamil", 0, [512, 390, 650]], ["apa itu threatened abortion", 0, [512, 390, 650]], ["what is threatened abortion", 0, [512, 390, 650]], ["types of abortion threatened", 0, [512, 390, 650]]], {"i": "threatened abortion meaning in hindi", "q": "rjDm6_V31uul-xiUkpmHidjsXyw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["threatened abortion meaning in hindi", "inevitable abortion meaning in hindi", "inevitable abortion meaning in hindi pdf", "threatened abortion definition in hindi wikipedia", "threatened abortion in hindi meaning in english", "what do you mean by threatened abortion", "threatened abortion meaning in tamil", "apa itu threatened abortion", "what is threatened abortion", "types of abortion threatened"], "self_loops": [0], "tags": {"i": "threatened abortion meaning in hindi", "q": "rjDm6_V31uul-xiUkpmHidjsXyw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion mentioned in the bible", "datetime": "2026-03-12 19:36:24.498976", "source": "google", "data": ["is abortion mentioned in the bible", [["is abortion mentioned in the bible", 0, [512]], ["is abortion mentioned in the bible anywhere", 0, [512]], ["is abortion discussed in the bible", 0, [22, 30]], ["is abortion referenced in the bible", 0, [22, 30]], ["is abortion found in the bible", 0, [22, 30]], ["is abortion referred to in the bible", 0, [22, 30]], ["is abortion described in the bible", 0, [22, 30]], ["where is abortion mentioned in the bible verse", 0, [22, 30]], ["is abortion actually mentioned in the bible", 0, [22, 30]], ["is abortion specifically mentioned in the bible", 0, [22, 30]]], {"i": "is abortion mentioned in the bible", "q": "rtkLAH_ahMcDeKxV3t6V8DSTqDQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion mentioned in the bible", "is abortion mentioned in the bible anywhere", "is abortion discussed in the bible", "is abortion referenced in the bible", "is abortion found in the bible", "is abortion referred to in the bible", "is abortion described in the bible", "where is abortion mentioned in the bible verse", "is abortion actually mentioned in the bible", "is abortion specifically mentioned in the bible"], "self_loops": [0], "tags": {"i": "is abortion mentioned in the bible", "q": "rtkLAH_ahMcDeKxV3t6V8DSTqDQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion even mentioned in the bible", "datetime": "2026-03-12 19:36:25.504022", "source": "google", "data": ["is abortion even mentioned in the bible", [["is abortion even mentioned in the bible", 0, [512]], ["is abortion ever okay in the bible", 0, [22, 30]], ["is abortion ever justified in the bible", 0, [22, 30]], ["is abortion mentioned in the bible", 0, [512, 390, 650]], ["is abortion legal in the bible", 0, [512, 390, 650]], ["is abortion ever mentioned in the bible", 0, [512, 546]]], {"i": "is abortion even mentioned in the bible", "q": "qTKlfNFScJBhz2_cKq8jQ2eQfmo", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion even mentioned in the bible", "is abortion ever okay in the bible", "is abortion ever justified in the bible", "is abortion mentioned in the bible", "is abortion legal in the bible", "is abortion ever mentioned in the bible"], "self_loops": [0], "tags": {"i": "is abortion even mentioned in the bible", "q": "qTKlfNFScJBhz2_cKq8jQ2eQfmo", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does abortion mean in the bible", "datetime": "2026-03-12 19:36:26.708874", "source": "google", "data": ["what does abortion mean in the bible", [["what does abortion mean in the bible", 0, [512]], ["what does abortion mean in hebrew", 0, [22, 30]], ["is abortion mentioned in the bible", 0, [512, 390, 650]], ["is abortion even mentioned in the bible", 0, [512, 390, 650]], ["what does the word abortion mean", 0, [512, 390, 650]], ["what does abortion say in the bible", 0, [512, 546]]], {"i": "what does abortion mean in the bible", "q": "fH5wKx_Dqs1FdH99k4G802vZIrA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what does abortion mean in the bible", "what does abortion mean in hebrew", "is abortion mentioned in the bible", "is abortion even mentioned in the bible", "what does the word abortion mean", "what does abortion say in the bible"], "self_loops": [0], "tags": {"i": "what does abortion mean in the bible", "q": "fH5wKx_Dqs1FdH99k4G802vZIrA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "definition of abortion in the bible", "datetime": "2026-03-12 19:36:28.160455", "source": "google", "data": ["definition of abortion in the bible", [["definition of abortion in the bible", 0, [22, 30]], ["is abortion mentioned in the bible", 0, [512, 390, 650]], ["definition of abortion in texas", 0, [546, 649]], ["abortion meaning in the bible", 0, [512, 546]], ["definition of abortion in kansas", 0, [751]]], {"i": "definition of abortion in the bible", "q": "P725V7wnFIHf-1YUGefL1TKHyiY", "t": {"bpc": false, "tlw": false}}], "suggests": ["definition of abortion in the bible", "is abortion mentioned in the bible", "definition of abortion in texas", "abortion meaning in the bible", "definition of abortion in kansas"], "self_loops": [0], "tags": {"i": "definition of abortion in the bible", "q": "P725V7wnFIHf-1YUGefL1TKHyiY", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "origin of abortion", "datetime": "2026-03-12 19:36:29.147538", "source": "google", "data": ["origin of abortion", [["origin of abortion", 0, [512]], ["origin of abortion in the united states", 0, [22, 30]], ["origin of abortion laws", 0, [22, 30]], ["origin of word abortion", 0, [22, 30]], ["origin of anti abortion movement", 0, [22, 30]], ["where did abortions originate", 0, [512, 390, 650]], ["how long has abortion been around", 0, [512, 390, 650]], ["origin of abortion rights", 0, [751]]], {"i": "origin of abortion", "q": "W10o1SRrzmaub74axT_566IIjNk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["origin of abortion", "origin of abortion in the united states", "origin of abortion laws", "origin of word abortion", "origin of anti abortion movement", "where did abortions originate", "how long has abortion been around", "origin of abortion rights"], "self_loops": [0], "tags": {"i": "origin of abortion", "q": "W10o1SRrzmaub74axT_566IIjNk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in greek", "datetime": "2026-03-12 19:36:30.620466", "source": "google", "data": ["abortion in greek", [["abortion in greek", 0, [512]], ["abortion in greek mythology", 0, [22, 30]], ["abortion meaning in greek", 0, [22, 30]], ["abortion in ancient greek", 0, [22, 30]], ["abortion greek word", 0, [22, 30]], ["abortion greek orthodox", 0, [22, 30]], ["abortion greek translation", 0, [22, 30]], ["is abortion legal in greece", 0, [512, 390, 650]], ["abortion in greek and roman times", 0, [751]], ["abortion law greece", 0, [512, 546]]], {"i": "abortion in greek", "q": "cLphf_wd670r7xJWxT27EJkiyX4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion in greek", "abortion in greek mythology", "abortion meaning in greek", "abortion in ancient greek", "abortion greek word", "abortion greek orthodox", "abortion greek translation", "is abortion legal in greece", "abortion in greek and roman times", "abortion law greece"], "self_loops": [0], "tags": {"i": "abortion in greek", "q": "cLphf_wd670r7xJWxT27EJkiyX4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in greek and roman times", "datetime": "2026-03-12 19:36:31.612813", "source": "google", "data": ["abortion in greek and roman times", [["abortion in greek and roman times pdf", 33, [160], {"a": "abortion in greek and roman ", "b": "times pdf"}], ["abortion in greek and roman times book", 33, [160], {"a": "abortion in greek and roman ", "b": "times book"}], ["abortion in greek and roman times", 33, [299], {"a": "abortion in greek and roman ", "b": "times"}]], {"i": "abortion in greek and roman times", "q": "owIyAw8JNjvaO9R77lXvFn4GCQY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in greek and roman times pdf", "abortion in greek and roman times book", "abortion in greek and roman times"], "self_loops": [2], "tags": {"i": "abortion in greek and roman times", "q": "owIyAw8JNjvaO9R77lXvFn4GCQY", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning oxford dictionary", "datetime": "2026-03-12 19:36:32.464675", "source": "google", "data": ["abortion meaning oxford dictionary", [["abortion meaning oxford dictionary", 0, [22, 30]], ["abortion definition oxford", 0, [512, 390, 650]], ["abortion dictionary meaning", 0, [512, 390, 650]], ["what is the meaning of abortion in english", 0, [512, 390, 650]], ["is abortion a bad word", 0, [512, 390, 650]], ["oxford dictionary abortion", 0, [512, 546]], ["oxford dictionary definition of abortion", 0, [512, 546]]], {"i": "abortion meaning oxford dictionary", "q": "fOZTZMOrhO4KpfyShSIJn_AaDmA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning oxford dictionary", "abortion definition oxford", "abortion dictionary meaning", "what is the meaning of abortion in english", "is abortion a bad word", "oxford dictionary abortion", "oxford dictionary definition of abortion"], "self_loops": [0], "tags": {"i": "abortion meaning oxford dictionary", "q": "fOZTZMOrhO4KpfyShSIJn_AaDmA", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion a bad word", "datetime": "2026-03-12 19:36:33.708857", "source": "google", "data": ["is abortion a bad word", [["is abortion a bad word", 0, [512]], ["is abortion a swear word", 0, [22, 30]], ["what does abortion ban mean", 0, [512, 390, 650]], ["is abortion a bad choice", 0, [512, 546]], ["is abortion a verb", 0, [751]], ["is a bad word bad", 0, [751]]], {"i": "is abortion a bad word", "q": "Atj06XqBoZJOT3bcrnb0ArY9vsA", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion a bad word", "is abortion a swear word", "what does abortion ban mean", "is abortion a bad choice", "is abortion a verb", "is a bad word bad"], "self_loops": [0], "tags": {"i": "is abortion a bad word", "q": "Atj06XqBoZJOT3bcrnb0ArY9vsA", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is the meaning of abortion in english", "datetime": "2026-03-12 19:36:34.629355", "source": "google", "data": ["what is the meaning of abortion in english", [["what is the meaning of abortion in english", 0, [512]], ["what is the meaning of miscarriage in english", 0, [22, 30]], ["what does the word abortion mean", 0, [512, 390, 650]], ["what the meaning of abortion", 0, [512, 390, 650]], ["what is the meaning of the word abortion", 0, [512, 546]], ["what does abortion mean in english", 0, [751]], ["what is the definition of the word abortion", 0, [512, 546]]], {"i": "what is the meaning of abortion in english", "q": "YidNW6Uu1iLdahayCTWVHq1phDc", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is the meaning of abortion in english", "what is the meaning of miscarriage in english", "what does the word abortion mean", "what the meaning of abortion", "what is the meaning of the word abortion", "what does abortion mean in english", "what is the definition of the word abortion"], "self_loops": [0], "tags": {"i": "what is the meaning of abortion in english", "q": "YidNW6Uu1iLdahayCTWVHq1phDc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion dictionary definition", "datetime": "2026-03-12 19:36:35.804114", "source": "google", "data": ["abortion dictionary definition", [["abortion dictionary definition", 0, [512]], ["miscarriage definition dictionary", 0, [22, 30]], ["oxford dictionary abortion definition", 0, [22, 30]], ["abortion dictionary meaning", 0, [512, 390, 650]], ["abortion dictionary", 0, [512, 546]]], {"i": "abortion dictionary definition", "q": "j8_6_0b4z4RhH9wvGr6Eh_lsArI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion dictionary definition", "miscarriage definition dictionary", "oxford dictionary abortion definition", "abortion dictionary meaning", "abortion dictionary"], "self_loops": [0], "tags": {"i": "abortion dictionary definition", "q": "j8_6_0b4z4RhH9wvGr6Eh_lsArI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion medical dictionary", "datetime": "2026-03-12 19:36:37.235286", "source": "google", "data": ["abortion medical dictionary", [["abortion medical dictionary", 0, [22, 30]], ["abortion medical terminology", 0, [22, 30]], ["abortion table name", 0, [512, 390, 650]], ["abortion dictionary meaning", 0, [512, 390, 650]], ["abortion dictionary definition", 0, [512, 546]], ["abortion medical meaning", 0, [512, 546]], ["abortion medical definition", 0, [512, 546]]], {"i": "abortion medical dictionary", "q": "qFJ6UXWY7wlcFqZGYeXj0YJ3Vk4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion medical dictionary", "abortion medical terminology", "abortion table name", "abortion dictionary meaning", "abortion dictionary definition", "abortion medical meaning", "abortion medical definition"], "self_loops": [0], "tags": {"i": "abortion medical dictionary", "q": "qFJ6UXWY7wlcFqZGYeXj0YJ3Vk4", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new abortion law in california 2025", "datetime": "2026-03-12 19:36:38.160886", "source": "google", "data": ["new abortion law in california 2025", [["new abortion law in california 2025", 0, [22, 30]], ["abortion law in california 2025", 0, [22, 30]], ["new california abortion laws 2025 update", 0, [22, 30]], ["new california abortion laws 2025 update today", 0, [22, 30]], ["new abortion laws in california", 0, [512, 390, 650]], ["new abortion law in california 2023", 0, [546, 649]], ["new abortion law in california 2022", 0, [751]], ["new abortion laws 2021 california", 0, [751]]], {"i": "new abortion law in california 2025", "q": "DjuAxKVC7K9VTSjCed0ssY8nV1k", "t": {"bpc": false, "tlw": false}}], "suggests": ["new abortion law in california 2025", "abortion law in california 2025", "new california abortion laws 2025 update", "new california abortion laws 2025 update today", "new abortion laws in california", "new abortion law in california 2023", "new abortion law in california 2022", "new abortion laws 2021 california"], "self_loops": [0], "tags": {"i": "new abortion law in california 2025", "q": "DjuAxKVC7K9VTSjCed0ssY8nV1k", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2021", "datetime": "2026-03-12 19:36:39.475103", "source": "google", "data": ["abortion laws in california 2021", [["abortion laws in california 2021-2024", 33, [160], {"a": "abortion laws in california ", "b": "2021-2024"}], ["abortion laws in california 2021 california", 33, [160], {"a": "abortion laws in california ", "b": "2021 california"}], ["abortion laws in california 2021 and 2022", 33, [160], {"a": "abortion laws in california ", "b": "2021 and 2022"}], ["abortion laws in california 2021", 33, [671], {"a": "abortion laws in california ", "b": "2021"}]], {"i": "abortion laws in california 2021", "q": "FMh5XGHsGqiubgMq-bIcF9PPtNc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2021-2024", "abortion laws in california 2021 california", "abortion laws in california 2021 and 2022", "abortion laws in california 2021"], "self_loops": [3], "tags": {"i": "abortion laws in california 2021", "q": "FMh5XGHsGqiubgMq-bIcF9PPtNc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2022", "datetime": "2026-03-12 19:36:40.464082", "source": "google", "data": ["abortion laws in california 2022", [["abortion laws in california 2022 california", 33, [160], {"a": "abortion laws in california ", "b": "2022 california"}], ["abortion laws in california 2022 and 2023", 33, [160], {"a": "abortion laws in california ", "b": "2022 and 2023"}], ["abortion laws in california 2022-2024", 33, [160], {"a": "abortion laws in california ", "b": "2022-2024"}], ["abortion laws in california 2022", 33, [671], {"a": "abortion laws in california ", "b": "2022"}], ["abortion laws in california 2022 how many weeks", 33, [671], {"a": "abortion laws in california ", "b": "2022 how many weeks"}], ["abortion laws in california 2022 weeks", 33, [671], {"a": "abortion laws in california ", "b": "2022 weeks"}], ["abortion laws in california 2022 text", 33, [671], {"a": "abortion laws in california ", "b": "2022 text"}]], {"i": "abortion laws in california 2022", "q": "8Q0Ed6-4FHOPeO1ZUsSMqO9WeoM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2022 california", "abortion laws in california 2022 and 2023", "abortion laws in california 2022-2024", "abortion laws in california 2022", "abortion laws in california 2022 how many weeks", "abortion laws in california 2022 weeks", "abortion laws in california 2022 text"], "self_loops": [3], "tags": {"i": "abortion laws in california 2022", "q": "8Q0Ed6-4FHOPeO1ZUsSMqO9WeoM", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion legal in california 2026", "datetime": "2026-03-12 19:36:41.472727", "source": "google", "data": ["is abortion legal in california 2026", [["is abortion legal in california 2026", 0, [512]], ["is abortion illegal in california 2026", 0, [22, 30]], ["abortion laws in california 2026", 0, [22, 30]], ["is abortion legal in california", 0, [512, 390, 650]], ["when did abortion become legal in california", 0, [512, 390, 650]], ["is abortion legal in california 2023", 0, [546, 649]], ["is abortion legal in california 2021", 0, [751]], ["is abortion legal in california 2022", 0, [751]], ["is abortion illegal in california 2023", 0, [546, 649]]], {"i": "is abortion legal in california 2026", "q": "6ZMPM53yzMkJpuCNAPHnxYc0E9k", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion legal in california 2026", "is abortion illegal in california 2026", "abortion laws in california 2026", "is abortion legal in california", "when did abortion become legal in california", "is abortion legal in california 2023", "is abortion legal in california 2021", "is abortion legal in california 2022", "is abortion illegal in california 2023"], "self_loops": [0], "tags": {"i": "is abortion legal in california 2026", "q": "6ZMPM53yzMkJpuCNAPHnxYc0E9k", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion illegal in california 2026", "datetime": "2026-03-12 19:36:42.388106", "source": "google", "data": ["is abortion illegal in california 2026", [["is abortion illegal in california 2026", 0, [22, 30]], ["is abortion legal in california 2026", 0, [22, 30]], ["abortion laws in california 2026", 0, [22, 30]], ["when did abortion become legal in california", 0, [512, 390, 650]], ["is abortion legal in california", 0, [512, 390, 650]], ["is abortion illegal in california 2023", 0, [546, 649]], ["is abortion illegal in california 2022", 0, [751]], ["is abortion illegal in california today", 0, [751]], ["is abortion illegal in california now", 0, [751]], ["is abortion legal in california 2023", 0, [546, 649]]], {"i": "is abortion illegal in california 2026", "q": "oHU4iDOJ_G-y_lS7nltcf7gtX5c", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion illegal in california 2026", "is abortion legal in california 2026", "abortion laws in california 2026", "when did abortion become legal in california", "is abortion legal in california", "is abortion illegal in california 2023", "is abortion illegal in california 2022", "is abortion illegal in california today", "is abortion illegal in california now", "is abortion legal in california 2023"], "self_loops": [0], "tags": {"i": "is abortion illegal in california 2026", "q": "oHU4iDOJ_G-y_lS7nltcf7gtX5c", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws", "datetime": "2026-03-12 19:36:43.750579", "source": "google", "data": ["california abortion laws", [["california abortion laws", 0, [512]], ["california abortion laws 2024", 0, [512]], ["california abortion laws 2025", 0, [512]], ["california abortion laws weeks", 0, [512]], ["california abortion laws for minors", 0, [512]], ["california abortion laws 2026", 0, [512]], ["california abortion lawsuit", 0, [22, 30]], ["california abortion laws 2024 how many months", 0, [22, 30]], ["california abortion laws 2024 weeks", 0, [22, 30]], ["california abortion laws 2022", 0, [22, 30]]], {"i": "california abortion laws", "q": "Bj61C4dEtA2csodgCpYchgla2eg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["california abortion laws", "california abortion laws 2024", "california abortion laws 2025", "california abortion laws weeks", "california abortion laws for minors", "california abortion laws 2026", "california abortion lawsuit", "california abortion laws 2024 how many months", "california abortion laws 2024 weeks", "california abortion laws 2022"], "self_loops": [0], "tags": {"i": "california abortion laws", "q": "Bj61C4dEtA2csodgCpYchgla2eg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california history", "datetime": "2026-03-12 19:36:44.744373", "source": "google", "data": ["abortion laws in california history", [["abortion laws in california history and background", 33, [160], {"a": "abortion laws in california ", "b": "history and background"}], ["abortion laws in california history of", 33, [160], {"a": "abortion laws in california ", "b": "history of"}], ["abortion laws in california history timeline", 33, [160], {"a": "abortion laws in california ", "b": "history timeline"}]], {"i": "abortion laws in california history", "q": "u8iPqxXMy0E5f0tJShvoL_wwfOU", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california history and background", "abortion laws in california history of", "abortion laws in california history timeline"], "self_loops": [], "tags": {"i": "abortion laws in california history", "q": "u8iPqxXMy0E5f0tJShvoL_wwfOU", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion legal in california how many weeks", "datetime": "2026-03-12 19:36:45.579688", "source": "google", "data": ["is abortion legal in california how many weeks", [["is abortion legal in california how many weeks", 0, [22, 30]], ["abortion law in california how many weeks", 0, [22, 30]], ["until how many weeks is abortion legal in california", 0, [22, 30]], ["how many weeks can you have an abortion in california", 0, [512, 390, 650]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["california abortion laws how many weeks 2021", 0, [751]], ["california abortion laws how many weeks 2020", 0, [751]], ["california abortion laws how many weeks 2022", 0, [546, 649]]], {"i": "is abortion legal in california how many weeks", "q": "Zw9jS3cQPLzy5O7gaZ6XHyDVZ4w", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion legal in california how many weeks", "abortion law in california how many weeks", "until how many weeks is abortion legal in california", "how many weeks can you have an abortion in california", "how many weeks can you get an abortion california", "california abortion laws how many weeks 2021", "california abortion laws how many weeks 2020", "california abortion laws how many weeks 2022"], "self_loops": [0], "tags": {"i": "is abortion legal in california how many weeks", "q": "Zw9jS3cQPLzy5O7gaZ6XHyDVZ4w", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how many weeks can you have an abortion in california", "datetime": "2026-03-12 19:36:46.562570", "source": "google", "data": ["how many weeks can you have an abortion in california", [["how many weeks can you have an abortion in california", 0, [512]], ["how many weeks can you get an abortion in california 2024", 0, [22, 30]], ["how many weeks can you get an abortion in california 2022", 0, [22, 30]], ["until how many weeks can you have an abortion in california", 0, [22, 30]], ["how many weeks can you not have an abortion in california", 0, [22, 30]], ["after how many weeks can you have an abortion in california", 0, [22, 30]], ["how many weeks can you get an abortion pill in california", 0, [22, 30]], ["how many weeks can you not get an abortion in california", 0, [22, 30]], ["after how many weeks can you get an abortion in california", 0, [22, 30]], ["how many weeks can you wait to get an abortion in california", 0, [22, 30]]], {"i": "how many weeks can you have an abortion in california", "q": "Yx4n9pXRsLoYjlSKLbahk6B4dfU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how many weeks can you have an abortion in california", "how many weeks can you get an abortion in california 2024", "how many weeks can you get an abortion in california 2022", "until how many weeks can you have an abortion in california", "how many weeks can you not have an abortion in california", "after how many weeks can you have an abortion in california", "how many weeks can you get an abortion pill in california", "how many weeks can you not get an abortion in california", "after how many weeks can you get an abortion in california", "how many weeks can you wait to get an abortion in california"], "self_loops": [0], "tags": {"i": "how many weeks can you have an abortion in california", "q": "Yx4n9pXRsLoYjlSKLbahk6B4dfU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how many weeks can you get an abortion california", "datetime": "2026-03-12 19:36:47.913353", "source": "google", "data": ["how many weeks can you get an abortion california", [["how many weeks can you get an abortion california", 0, [512]], ["how many weeks can you get an abortion in california 2024", 0, [22, 30]], ["how many weeks can you get an abortion in california 2022", 0, [22, 30]], ["how many weeks can you get an abortion pill in california", 0, [22, 30]], ["up to how many weeks can you get an abortion california", 0, [22, 30]], ["how many weeks can you not get an abortion in california", 0, [22, 30]], ["after how many weeks can you get an abortion in california", 0, [22, 30]], ["how many weeks do you have to get an abortion california", 0, [22, 30]], ["how many weeks until you can't get an abortion in california", 0, [22, 10, 30]], ["how many weeks can you not have an abortion in california", 0, [22, 30]]], {"i": "how many weeks can you get an abortion california", "q": "WkU6XqMxLpbgskg9yjmV_yJ9a_M", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how many weeks can you get an abortion california", "how many weeks can you get an abortion in california 2024", "how many weeks can you get an abortion in california 2022", "how many weeks can you get an abortion pill in california", "up to how many weeks can you get an abortion california", "how many weeks can you not get an abortion in california", "after how many weeks can you get an abortion in california", "how many weeks do you have to get an abortion california", "how many weeks until you can't get an abortion in california", "how many weeks can you not have an abortion in california"], "self_loops": [0], "tags": {"i": "how many weeks can you get an abortion california", "q": "WkU6XqMxLpbgskg9yjmV_yJ9a_M", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2021", "datetime": "2026-03-12 19:36:49.225212", "source": "google", "data": ["california abortion laws how many weeks 2021", [["california abortion laws how many weeks 2021 california", 33, [160], {"a": "california abortion laws how many weeks ", "b": "2021 california"}], ["california abortion laws how many weeks 2021 law", 33, [160], {"a": "california abortion laws how many weeks ", "b": "2021 law"}], ["california abortion laws how many weeks 2021 to present", 33, [160], {"a": "california abortion laws how many weeks ", "b": "2021 to present"}], ["california abortion laws how many weeks 2021-2024", 33, [160], {"a": "california abortion laws how many weeks ", "b": "2021-2024"}], ["california abortion laws how many weeks 2021", 33, [671], {"a": "california abortion laws how many weeks ", "b": "2021"}]], {"i": "california abortion laws how many weeks 2021", "q": "LD9NY43Y4CAb5FPdcJQdnoFCxpA", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2021 california", "california abortion laws how many weeks 2021 law", "california abortion laws how many weeks 2021 to present", "california abortion laws how many weeks 2021-2024", "california abortion laws how many weeks 2021"], "self_loops": [4], "tags": {"i": "california abortion laws how many weeks 2021", "q": "LD9NY43Y4CAb5FPdcJQdnoFCxpA", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2020", "datetime": "2026-03-12 19:36:50.582836", "source": "google", "data": ["california abortion laws how many weeks 2020", [["california abortion laws how many weeks 2020 to present", 33, [160], {"a": "california abortion laws how many weeks ", "b": "2020 to present"}], ["california abortion laws how many weeks 2020-2024", 33, [160], {"a": "california abortion laws how many weeks ", "b": "2020-2024"}], ["california abortion laws how many weeks 2020 california", 33, [160], {"a": "california abortion laws how many weeks ", "b": "2020 california"}], ["california abortion laws how many weeks 2020 law", 33, [160], {"a": "california abortion laws how many weeks ", "b": "2020 law"}], ["california abortion laws how many weeks 2020", 33, [671], {"a": "california abortion laws how many weeks ", "b": "2020"}]], {"i": "california abortion laws how many weeks 2020", "q": "7aHu-VBH58gaRmbupv-EbCwDH6s", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2020 to present", "california abortion laws how many weeks 2020-2024", "california abortion laws how many weeks 2020 california", "california abortion laws how many weeks 2020 law", "california abortion laws how many weeks 2020"], "self_loops": [4], "tags": {"i": "california abortion laws how many weeks 2020", "q": "7aHu-VBH58gaRmbupv-EbCwDH6s", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2022", "datetime": "2026-03-12 19:36:51.441261", "source": "google", "data": ["california abortion laws how many weeks 2022", [["california abortion laws how many weeks 2022 california", 33, [160], {"a": "california abortion laws how many weeks ", "b": "2022 california"}], ["california abortion laws how many weeks 2022-2023", 33, [160], {"a": "california abortion laws how many weeks ", "b": "2022-2023"}], ["california abortion laws how many weeks 2022 to present", 33, [160], {"a": "california abortion laws how many weeks ", "b": "2022 to present"}], ["california abortion laws how many weeks 20224", 33, [160], {"a": "california abortion laws how many weeks ", "b": "20224"}], ["california abortion laws how many weeks 2022", 33, [671], {"a": "california abortion laws how many weeks ", "b": "2022"}], ["california abortion laws how many weeks 2022 text", 33, [671], {"a": "california abortion laws how many weeks ", "b": "2022 text"}]], {"i": "california abortion laws how many weeks 2022", "q": "s-rZFv2bLMtEOgIjc6Sm3xamJbo", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2022 california", "california abortion laws how many weeks 2022-2023", "california abortion laws how many weeks 2022 to present", "california abortion laws how many weeks 20224", "california abortion laws how many weeks 2022", "california abortion laws how many weeks 2022 text"], "self_loops": [4], "tags": {"i": "california abortion laws how many weeks 2022", "q": "s-rZFv2bLMtEOgIjc6Sm3xamJbo", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion legal in california 2024", "datetime": "2026-03-12 19:36:52.410045", "source": "google", "data": ["abortion legal in california 2024", [["abortion legal in california 2024", 0, [22, 30]], ["abortion law in california 2024", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["new abortion law in california 2024", 0, [22, 30]], ["abortion law california 2024 update today", 0, [22, 30]], ["is abortion illegal in california 2024", 0, [22, 30]], ["is abortion banned in california 2024", 0, [22, 30]], ["new abortion laws in california 2024 update", 0, [22, 30]], ["is abortion legal in california 2023", 0, [546, 649]], ["abortion legal in california 2022", 0, [751]]], {"i": "abortion legal in california 2024", "q": "miLzqZmHGg1qZOKIZAl1f0cMnCU", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion legal in california 2024", "abortion law in california 2024", "abortion laws in california 2024 how many weeks", "new abortion law in california 2024", "abortion law california 2024 update today", "is abortion illegal in california 2024", "is abortion banned in california 2024", "new abortion laws in california 2024 update", "is abortion legal in california 2023", "abortion legal in california 2022"], "self_loops": [0], "tags": {"i": "abortion legal in california 2024", "q": "miLzqZmHGg1qZOKIZAl1f0cMnCU", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new abortion laws in california 2024 update", "datetime": "2026-03-12 19:36:53.438805", "source": "google", "data": ["new abortion laws in california 2024 update", [["new abortion laws in california 2024 update", 0, [22, 30]], ["new california abortion laws 2024 update today", 0, [22, 30]], ["new abortion laws in california", 0, [512, 390, 650]], ["new abortion laws 2021 california", 0, [751]], ["new abortion law in california 2023", 0, [546, 649]], ["new abortion laws in california 2022", 0, [751]]], {"i": "new abortion laws in california 2024 update", "q": "zTsKmvXPD5qNWNy_miM9jhukIig", "t": {"bpc": false, "tlw": false}}], "suggests": ["new abortion laws in california 2024 update", "new california abortion laws 2024 update today", "new abortion laws in california", "new abortion laws 2021 california", "new abortion law in california 2023", "new abortion laws in california 2022"], "self_loops": [0], "tags": {"i": "new abortion laws in california 2024 update", "q": "zTsKmvXPD5qNWNy_miM9jhukIig", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new abortion law in california 2024", "datetime": "2026-03-12 19:36:54.454465", "source": "google", "data": ["new abortion law in california 2024", [["new abortion law in california 2024", 0, [22, 30]], ["new abortion laws in california 2024 update", 0, [22, 30]], ["abortion law in california 2024", 0, [22, 30]], ["abortion legal in california 2024", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["new california abortion laws 2024 update today", 0, [22, 30]], ["new abortion laws in california", 0, [512, 390, 650]], ["new abortion law in california 2023", 0, [546, 649]], ["new abortion laws 2021 california", 0, [751]], ["new abortion law in california 2022", 0, [751]]], {"i": "new abortion law in california 2024", "q": "I4F35sbMAhyS0cBLg_fyucIGuLw", "t": {"bpc": false, "tlw": false}}], "suggests": ["new abortion law in california 2024", "new abortion laws in california 2024 update", "abortion law in california 2024", "abortion legal in california 2024", "abortion laws in california 2024 how many weeks", "new california abortion laws 2024 update today", "new abortion laws in california", "new abortion law in california 2023", "new abortion laws 2021 california", "new abortion law in california 2022"], "self_loops": [0], "tags": {"i": "new abortion law in california 2024", "q": "I4F35sbMAhyS0cBLg_fyucIGuLw", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law california 2024 update today", "datetime": "2026-03-12 19:36:55.896547", "source": "google", "data": ["abortion law california 2024 update today", [["abortion law california 2024 update today", 0, [22, 30]], ["abortion law california 2023", 0, [546, 649]], ["abortion law california 2021", 0, [751]], ["abortion law california 28 days", 0, [751]]], {"i": "abortion law california 2024 update today", "q": "P9ul0cu-xEqg2W6bYiY6LCzuXtE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion law california 2024 update today", "abortion law california 2023", "abortion law california 2021", "abortion law california 28 days"], "self_loops": [0], "tags": {"i": "abortion law california 2024 update today", "q": "P9ul0cu-xEqg2W6bYiY6LCzuXtE", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion illegal in california 2024", "datetime": "2026-03-12 19:36:57.180712", "source": "google", "data": ["is abortion illegal in california 2024", [["is abortion illegal in california 2024", 0, [22, 30]], ["is abortion legal in california 2024", 0, [22, 30]], ["is abortion banned in california 2024", 0, [22, 30]], ["what is the abortion law in california 2024", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["when did abortion become legal in california", 0, [512, 390, 650]], ["is abortion illegal in california 2023", 0, [546, 649]], ["is abortion illegal in california 2022", 0, [751]], ["is abortion illegal in california today", 0, [751]], ["is abortion illegal in california now", 0, [751]]], {"i": "is abortion illegal in california 2024", "q": "u4xw-6YqKUBcT7m5ohFBAwYyzDQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion illegal in california 2024", "is abortion legal in california 2024", "is abortion banned in california 2024", "what is the abortion law in california 2024", "abortion laws in california 2024 how many weeks", "when did abortion become legal in california", "is abortion illegal in california 2023", "is abortion illegal in california 2022", "is abortion illegal in california today", "is abortion illegal in california now"], "self_loops": [0], "tags": {"i": "is abortion illegal in california 2024", "q": "u4xw-6YqKUBcT7m5ohFBAwYyzDQ", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion limits california 2024", "datetime": "2026-03-12 19:36:58.358734", "source": "google", "data": ["abortion limits california 2024", [["abortion limits california 2024", 0, [22, 30]], ["abortion law california 2024", 0, [22, 30]], ["abortion law california 2024 update today", 0, [22, 30]], ["new abortion law california 2024", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["california abortion limit", 0, [512, 390, 650]], ["what is the legal abortion limit in california", 0, [512, 390, 650]], ["abortion laws california 2023", 0, [546, 649]], ["california abortion limits 2022", 0, [751]], ["abortion limit ca", 0, [546, 649]]], {"i": "abortion limits california 2024", "q": "gJLwJXHZZijZC4dUMY7jHOvCgd4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion limits california 2024", "abortion law california 2024", "abortion law california 2024 update today", "new abortion law california 2024", "abortion laws in california 2024 how many weeks", "california abortion limit", "what is the legal abortion limit in california", "abortion laws california 2023", "california abortion limits 2022", "abortion limit ca"], "self_loops": [0], "tags": {"i": "abortion limits california 2024", "q": "gJLwJXHZZijZC4dUMY7jHOvCgd4", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion legal in california for minors", "datetime": "2026-03-12 19:36:59.523389", "source": "google", "data": ["is abortion legal in california for minors", [["is abortion legal in california for minors", 0, [512]], ["abortion laws in california for minors", 0, [22, 30]], ["what age can you abort a baby in california", 0, [751]]], {"i": "is abortion legal in california for minors", "q": "TVm84TZzhlC-4i_xvS9ZFJrqst8", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion legal in california for minors", "abortion laws in california for minors", "what age can you abort a baby in california"], "self_loops": [0], "tags": {"i": "is abortion legal in california for minors", "q": "TVm84TZzhlC-4i_xvS9ZFJrqst8", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "age limit for abortion in california", "datetime": "2026-03-12 19:37:00.493118", "source": "google", "data": ["age limit for abortion in california", [["age limit for abortion in california", 0, [22, 30]], ["what is the legal age for abortion in california", 0, [751]], ["age for abortion in california", 0, [751]]], {"i": "age limit for abortion in california", "q": "enbsz0uBpQfUcISD4tZM1_osZlI", "t": {"bpc": false, "tlw": false}}], "suggests": ["age limit for abortion in california", "what is the legal age for abortion in california", "age for abortion in california"], "self_loops": [0], "tags": {"i": "age limit for abortion in california", "q": "enbsz0uBpQfUcISD4tZM1_osZlI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new abortion law in california 2023", "datetime": "2026-03-12 19:37:01.331498", "source": "google", "data": ["new abortion law in california 2023", [["new abortion law in california 2023", 0, [22, 30]], ["new abortion law in california 2023 overturned", 0, [22, 30]], ["abortion laws in california 2023", 0, [22, 30]], ["new abortion laws in california", 0, [512, 390, 650]], ["when did abortion become legal in california", 0, [512, 390, 650]], ["new abortion law in california 2022", 0, [751]]], {"i": "new abortion law in california 2023", "q": "89xT-ICf4QxjjQuxNSFXh8FJUwc", "t": {"bpc": false, "tlw": false}}], "suggests": ["new abortion law in california 2023", "new abortion law in california 2023 overturned", "abortion laws in california 2023", "new abortion laws in california", "when did abortion become legal in california", "new abortion law in california 2022"], "self_loops": [0], "tags": {"i": "new abortion law in california 2023", "q": "89xT-ICf4QxjjQuxNSFXh8FJUwc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new abortion law in california 2023 overturned", "datetime": "2026-03-12 19:37:02.343139", "source": "google", "data": ["new abortion law in california 2023 overturned", [["new abortion law in california 2023 overturned", 0, [22, 30]], ["new abortion laws in california", 0, [512, 390, 650]], ["new abortion law in california 2023", 0, [546, 649]], ["new abortion law in california 2022", 0, [751]], ["new abortion laws 2021 california", 0, [751]]], {"i": "new abortion law in california 2023 overturned", "q": "lcsNdovnsbOUYQgrsxGk9K46x88", "t": {"bpc": false, "tlw": false}}], "suggests": ["new abortion law in california 2023 overturned", "new abortion laws in california", "new abortion law in california 2023", "new abortion law in california 2022", "new abortion laws 2021 california"], "self_loops": [0], "tags": {"i": "new abortion law in california 2023 overturned", "q": "lcsNdovnsbOUYQgrsxGk9K46x88", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks", "datetime": "2026-03-12 19:37:03.572424", "source": "google", "data": ["california abortion laws how many weeks", [["california abortion laws how many weeks", 0, [512]], ["ca abortion laws how many weeks", 0, [22, 30]], ["california abortion law up to how many weeks", 0, [22, 30]], ["california legal abortion up to how many weeks", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["california abortion laws how many weeks 2021", 0, [751]], ["california abortion laws how many weeks 2020", 0, [751]], ["california abortion laws how many weeks 2022", 0, [546, 649]]], {"i": "california abortion laws how many weeks", "q": "V8rZfmUyLK0Nze3cznmCYVilniI", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks", "ca abortion laws how many weeks", "california abortion law up to how many weeks", "california legal abortion up to how many weeks", "abortion laws in california 2024 how many weeks", "how many weeks can you get an abortion california", "california abortion laws how many weeks 2021", "california abortion laws how many weeks 2020", "california abortion laws how many weeks 2022"], "self_loops": [0], "tags": {"i": "california abortion laws how many weeks", "q": "V8rZfmUyLK0Nze3cznmCYVilniI", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws california 2023", "datetime": "2026-03-12 19:37:04.872175", "source": "google", "data": ["abortion laws california 2023", [["abortion laws in california 2023", 0, [22, 30]], ["abortion laws california 2021", 0, [751]], ["abortion laws california 2022", 0, [751]]], {"i": "abortion laws california 2023", "q": "kNw5SwpJ_YjBj2ZruiF0SUqkH-g", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2023", "abortion laws california 2021", "abortion laws california 2022"], "self_loops": [], "tags": {"i": "abortion laws california 2023", "q": "kNw5SwpJ_YjBj2ZruiF0SUqkH-g", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law in california", "datetime": "2026-03-12 19:37:06.354994", "source": "google", "data": ["abortion law in california", [["abortion law in california", 0, [512]], ["abortion law in california 2025", 0, [512]], ["abortion law in california how many weeks", 0, [512]], ["abortion law in california 2024", 0, [22, 30]], ["abortion legal in california", 0, [22, 30]], ["abortion legal in california 2024", 0, [22, 30]], ["abortion laws in california for minors", 0, [22, 30]], ["abortion laws in california 2023", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["abortion laws in california 2026", 0, [22, 30]]], {"i": "abortion law in california", "q": "ATH_2IS80tcbYug3gtzPnpj-uIE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion law in california", "abortion law in california 2025", "abortion law in california how many weeks", "abortion law in california 2024", "abortion legal in california", "abortion legal in california 2024", "abortion laws in california for minors", "abortion laws in california 2023", "abortion laws in california 2024 how many weeks", "abortion laws in california 2026"], "self_loops": [0], "tags": {"i": "abortion law in california", "q": "ATH_2IS80tcbYug3gtzPnpj-uIE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law in california 2025", "datetime": "2026-03-12 19:37:07.392319", "source": "google", "data": ["abortion law in california 2025", [["abortion law in california 2025", 0, [512]], ["new abortion law in california 2025", 0, [22, 30]], ["abortion law in california 2023", 0, [546, 649]], ["abortion law in california 2021", 0, [751]], ["abortion law in california 2022", 0, [751]]], {"i": "abortion law in california 2025", "q": "SSveaJPjqCt5KG7DpEiS0UUmyBg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion law in california 2025", "new abortion law in california 2025", "abortion law in california 2023", "abortion law in california 2021", "abortion law in california 2022"], "self_loops": [0], "tags": {"i": "abortion law in california 2025", "q": "SSveaJPjqCt5KG7DpEiS0UUmyBg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law in california 2024", "datetime": "2026-03-12 19:37:08.531365", "source": "google", "data": ["abortion law in california 2024", [["abortion law in california 2024", 0, [22, 30]], ["abortion legal in california 2024", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["new abortion law in california 2024", 0, [22, 30]], ["new abortion laws in california 2024 update", 0, [22, 30]], ["abortion law california 2024 update today", 0, [22, 30]], ["is abortion illegal in california 2024", 0, [22, 30]], ["abortion limits california 2024", 0, [22, 30]], ["abortion law in california 2023", 0, [546, 649]], ["abortion law in california 2021", 0, [751]]], {"i": "abortion law in california 2024", "q": "zxZEAB5EmgwK6ocKFv-wJaWiHUc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion law in california 2024", "abortion legal in california 2024", "abortion laws in california 2024 how many weeks", "new abortion law in california 2024", "new abortion laws in california 2024 update", "abortion law california 2024 update today", "is abortion illegal in california 2024", "abortion limits california 2024", "abortion law in california 2023", "abortion law in california 2021"], "self_loops": [0], "tags": {"i": "abortion law in california 2024", "q": "zxZEAB5EmgwK6ocKFv-wJaWiHUc", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law in california how many weeks", "datetime": "2026-03-12 19:37:09.806647", "source": "google", "data": ["abortion law in california how many weeks", [["abortion law in california how many weeks", 0, [512]], ["is abortion legal in california how many weeks", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["how many weeks can you have an abortion in california", 0, [512, 390, 650]], ["california abortion laws how many weeks 2021", 0, [751]], ["california abortion laws how many weeks 2020", 0, [751]]], {"i": "abortion law in california how many weeks", "q": "z7v2cWAUPkmkBJvCsMWreU6Hd0Q", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion law in california how many weeks", "is abortion legal in california how many weeks", "abortion laws in california 2024 how many weeks", "how many weeks can you get an abortion california", "how many weeks can you have an abortion in california", "california abortion laws how many weeks 2021", "california abortion laws how many weeks 2020"], "self_loops": [0], "tags": {"i": "abortion law in california how many weeks", "q": "z7v2cWAUPkmkBJvCsMWreU6Hd0Q", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "legal abortion in california weeks", "datetime": "2026-03-12 19:37:11.187178", "source": "google", "data": ["legal abortion in california weeks", [["legal abortion in california weeks", 0, [22, 30]], ["how many weeks can you have an abortion in california", 0, [512, 390, 650]], ["how late can you have an abortion in california", 0, [512, 390, 650]], ["california abortion laws how many weeks", 0, [512, 390, 650]], ["legal abortion in ca", 0, [751]], ["how many weeks is it legal to have an abortion in california", 0, [751]]], {"i": "legal abortion in california weeks", "q": "Vo8Tcc1h-NxIG3-TnNTAy3xB-vg", "t": {"bpc": false, "tlw": false}}], "suggests": ["legal abortion in california weeks", "how many weeks can you have an abortion in california", "how late can you have an abortion in california", "california abortion laws how many weeks", "legal abortion in ca", "how many weeks is it legal to have an abortion in california"], "self_loops": [0], "tags": {"i": "legal abortion in california weeks", "q": "Vo8Tcc1h-NxIG3-TnNTAy3xB-vg", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion rules in california", "datetime": "2026-03-12 19:37:12.625859", "source": "google", "data": ["abortion rules in california", [["abortion rules in california", 0, [512]], ["abortion laws in california", 0, [22, 30]], ["abortion legal in california", 0, [22, 30]], ["abortion limit in california", 0, [22, 30]], ["abortion laws in california 2025", 0, [22, 30]], ["abortion illegal in california", 0, [22, 30]], ["abortion laws in california 2024", 0, [22, 30]], ["abortion age in california", 0, [22, 30]], ["abortion laws in california how many weeks", 0, [22, 30]], ["abortion limit in california 2024", 0, [22, 30]]], {"i": "abortion rules in california", "q": "kNteW7lMtI1B5pn55Umc0EVgtOE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion rules in california", "abortion laws in california", "abortion legal in california", "abortion limit in california", "abortion laws in california 2025", "abortion illegal in california", "abortion laws in california 2024", "abortion age in california", "abortion laws in california how many weeks", "abortion limit in california 2024"], "self_loops": [0], "tags": {"i": "abortion rules in california", "q": "kNteW7lMtI1B5pn55Umc0EVgtOE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion banned in california", "datetime": "2026-03-12 19:37:13.950832", "source": "google", "data": ["abortion banned in california", [["abortion banned in california", 0, [22, 30]], ["abortion laws in california", 0, [22, 30]], ["abortion legal in california", 0, [22, 30]], ["abortion laws in california 2025", 0, [22, 30]], ["abortion illegal in california", 0, [22, 30]], ["abortion laws in california 2024", 0, [22, 30]], ["abortion laws in california how many weeks", 0, [22, 30]], ["abortion restrictions in california", 0, [22, 30]], ["abortion legal in california 2024", 0, [22, 30]], ["abortion laws in california for minors", 0, [22, 30]]], {"i": "abortion banned in california", "q": "sQ7PoBB65X4PpKAPKXosvyGFu_E", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion banned in california", "abortion laws in california", "abortion legal in california", "abortion laws in california 2025", "abortion illegal in california", "abortion laws in california 2024", "abortion laws in california how many weeks", "abortion restrictions in california", "abortion legal in california 2024", "abortion laws in california for minors"], "self_loops": [0], "tags": {"i": "abortion banned in california", "q": "sQ7PoBB65X4PpKAPKXosvyGFu_E", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion restrictions in california", "datetime": "2026-03-12 19:37:15.308092", "source": "google", "data": ["abortion restrictions in california", [["abortion restrictions in california", 0, [22, 30]], ["abortion laws in california", 0, [22, 30]], ["abortion legal in california", 0, [22, 30]], ["abortion limit in california", 0, [22, 30]], ["abortion laws in california 2025", 0, [22, 30]], ["abortion rules in california", 0, [22, 30]], ["abortion laws in california 2024", 0, [22, 30]], ["abortion ban in california", 0, [22, 30]], ["abortion laws in california how many weeks", 0, [22, 30]], ["abortion limit in california 2024", 0, [22, 30]]], {"i": "abortion restrictions in california", "q": "LkhTzYHtom45xeFLzkVbvZQGXbk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion restrictions in california", "abortion laws in california", "abortion legal in california", "abortion limit in california", "abortion laws in california 2025", "abortion rules in california", "abortion laws in california 2024", "abortion ban in california", "abortion laws in california how many weeks", "abortion limit in california 2024"], "self_loops": [0], "tags": {"i": "abortion restrictions in california", "q": "LkhTzYHtom45xeFLzkVbvZQGXbk", "t": {"bpc": false, "tlw": false}}, "depth": 3, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics in bay area", "datetime": "2026-03-12 19:37:16.421701", "source": "google", "data": ["abortion clinics in bay area", [["abortion clinics in the bay area", 0, [22, 30]], ["abortion clinics in san francisco", 0, [512, 390, 650]], ["abortion options in california", 0, [512, 390, 650]], ["abortion in bay area", 0, [751]]], {"i": "abortion clinics in bay area", "q": "D_rsaSV3f4PSbhFDeA7U2plaJwU", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics in the bay area", "abortion clinics in san francisco", "abortion options in california", "abortion in bay area"], "self_loops": [], "tags": {"i": "abortion clinics in bay area", "q": "D_rsaSV3f4PSbhFDeA7U2plaJwU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are there free abortion clinics in california", "datetime": "2026-03-12 19:37:17.908306", "source": "google", "data": ["are there free abortion clinics in california", [["are there free abortion clinics in california", 0, [22, 30]], ["free abortion clinics near me", 0, [512, 390, 650]], ["abortion free in california", 0, [751]], ["is abortion free in california 2021", 0, [751]]], {"i": "are there free abortion clinics in california", "q": "98YKmTeKEmN6hR8o0lqTfIV-tgM", "t": {"bpc": false, "tlw": false}}], "suggests": ["are there free abortion clinics in california", "free abortion clinics near me", "abortion free in california", "is abortion free in california 2021"], "self_loops": [0], "tags": {"i": "are there free abortion clinics in california", "q": "98YKmTeKEmN6hR8o0lqTfIV-tgM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinics near me", "datetime": "2026-03-12 19:37:19.047555", "source": "google", "data": ["free abortion clinics near me", [["free abortion clinics near me", 0, [512]], ["free abortion clinics near me open now", 0, [512]], ["free abortion clinic near me volunteer", 0, [22, 30]], ["free abortion clinic near me within 5 mi", 0, [22, 30]], ["free abortion clinic near me within 20 mi", 0, [22, 30]], ["free abortion clinic near me within 8.1 km", 0, [22, 30]], ["free abortion centers near me", 0, [22, 30]], ["free government abortion clinic near me", 0, [22, 30]], ["free cat abortion clinic near me", 0, [22, 30]], ["is there free abortion clinics near me", 0, [22, 30]]], {"i": "free abortion clinics near me", "q": "bcFaeza98-eC3CVx6V_SX2_SaEE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free abortion clinics near me", "free abortion clinics near me open now", "free abortion clinic near me volunteer", "free abortion clinic near me within 5 mi", "free abortion clinic near me within 20 mi", "free abortion clinic near me within 8.1 km", "free abortion centers near me", "free government abortion clinic near me", "free cat abortion clinic near me", "is there free abortion clinics near me"], "self_loops": [0], "tags": {"i": "free abortion clinics near me", "q": "bcFaeza98-eC3CVx6V_SX2_SaEE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic free near me", "datetime": "2026-03-12 19:37:20.244075", "source": "google", "data": ["women's clinic free near me", [["women's clinic free near me", 0, [512]], ["woman free clinic near me", 0, [22, 30]], ["women's clinic free ultrasound near me", 0, [22, 30]], ["women's health clinic free near me", 0, [22, 30]], ["women's clinic free pregnancy test near me", 0, [22, 30]], ["women's center free ultrasound near me", 0, [22, 30]], ["free women's clinic near me no insurance", 0, [22, 30]], ["free women's clinic near me open now", 0, [22, 30]], ["free women's clinic near me within 5 mi", 0, [22, 30]], ["free women's clinic near me walk in", 0, [22, 30]]], {"i": "women's clinic free near me", "q": "2Ec61CBH9GmEWyLG2pW9lCN_xhk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic free near me", "woman free clinic near me", "women's clinic free ultrasound near me", "women's health clinic free near me", "women's clinic free pregnancy test near me", "women's center free ultrasound near me", "free women's clinic near me no insurance", "free women's clinic near me open now", "free women's clinic near me within 5 mi", "free women's clinic near me walk in"], "self_loops": [0], "tags": {"i": "women's clinic free near me", "q": "2Ec61CBH9GmEWyLG2pW9lCN_xhk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinic near me within 8.1 km", "datetime": "2026-03-12 19:37:21.091227", "source": "google", "data": ["free abortion clinic near me within 8.1 km", [["free abortion clinic near me within 8.1 km", 0, [22, 30]], ["free abortion clinic near me", 0, [512, 390, 650]], ["free abortion centers near me", 0, [512, 390, 650]], ["free abortion clinic near washington dc", 0, [751]]], {"i": "free abortion clinic near me within 8.1 km", "q": "t02QrMtoT4BaEk-RjJDe-gW9Pz4", "t": {"bpc": false, "tlw": false}}], "suggests": ["free abortion clinic near me within 8.1 km", "free abortion clinic near me", "free abortion centers near me", "free abortion clinic near washington dc"], "self_loops": [0], "tags": {"i": "free abortion clinic near me within 8.1 km", "q": "t02QrMtoT4BaEk-RjJDe-gW9Pz4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic free ultrasound near me", "datetime": "2026-03-12 19:37:22.086557", "source": "google", "data": ["women's clinic free ultrasound near me", [["women's clinic free ultrasound near me", 0, [512]], ["women's clinic free pregnancy test near me", 0, [22, 30]], ["women's center free ultrasound near me", 0, [22, 30]], ["free ultrasound clinic near me", 0, [512, 390, 650]], ["where can i go get a free ultrasound", 0, [512, 390, 650]], ["women's clinic near me for ultrasound", 0, [512, 390, 650]], ["women's free ultrasound", 0, [512, 546]], ["women's clinic free near me", 0, [512, 546]]], {"i": "women's clinic free ultrasound near me", "q": "zHcHK0K_eaO18k-w34gEzdTaf5o", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic free ultrasound near me", "women's clinic free pregnancy test near me", "women's center free ultrasound near me", "free ultrasound clinic near me", "where can i go get a free ultrasound", "women's clinic near me for ultrasound", "women's free ultrasound", "women's clinic free near me"], "self_loops": [0], "tags": {"i": "women's clinic free ultrasound near me", "q": "zHcHK0K_eaO18k-w34gEzdTaf5o", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic free near me", "datetime": "2026-03-12 19:37:23.498539", "source": "google", "data": ["women's health clinic free near me", [["women's health clinic free near me", 0, [512]], ["free women's health clinic near me open now", 0, [22, 30]], ["free women's health care near me", 0, [22, 30]], ["free women's health services near me", 0, [22, 10, 30]], ["free women's health center near me", 0, [22, 10, 30]], ["list of free clinics near me", 0, [512, 390, 650]], ["women's clinic near me without insurance", 0, [512, 390, 650]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["women's free clinic near me", 0, [512, 546]]], {"i": "women's health clinic free near me", "q": "-OupSCLn5DEUqWXvttYV6jMZGWw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's health clinic free near me", "free women's health clinic near me open now", "free women's health care near me", "free women's health services near me", "free women's health center near me", "list of free clinics near me", "women's clinic near me without insurance", "free women's clinic near me no insurance", "women's free clinic near me"], "self_loops": [0], "tags": {"i": "women's health clinic free near me", "q": "-OupSCLn5DEUqWXvttYV6jMZGWw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "which clinic do abortion for free near me", "datetime": "2026-03-12 19:37:24.788517", "source": "google", "data": ["which clinic do abortion for free near me", [["which clinic do abortion for free near me", 0, [512]], ["clinic that do abortion near me", 0, [512, 546]], ["abortion clinic for free near me", 0, [512, 546]], ["women's clinic for abortion near me", 0, [512, 546]], ["clinic for abortion near me", 0, [512, 546]]], {"i": "which clinic do abortion for free near me", "q": "_ntwPrnpDHs9zhnO3ZeKM5uak9E", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["which clinic do abortion for free near me", "clinic that do abortion near me", "abortion clinic for free near me", "women's clinic for abortion near me", "clinic for abortion near me"], "self_loops": [0], "tags": {"i": "which clinic do abortion for free near me", "q": "_ntwPrnpDHs9zhnO3ZeKM5uak9E", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion options in california", "datetime": "2026-03-12 19:37:25.961236", "source": "google", "data": ["abortion options in california", [["abortion options in california", 0, [512]], ["abortion clinics in california", 0, [22, 30]], ["abortion methods in california", 0, [22, 30]], ["free abortion clinics in california", 0, [22, 30]], ["abortion pill legal in california", 0, [22, 30]], ["abortion clinics in southern california", 0, [22, 30]], ["best abortion clinics in california", 0, [22, 30]], ["abortion clinics in anaheim california", 0, [22, 30]], ["abortion clinics in northern california", 0, [22, 30]], ["abortion clinics in fresno california", 0, [22, 30]]], {"i": "abortion options in california", "q": "cITOjs0aaOKrVXIneqW7NISzaAM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion options in california", "abortion clinics in california", "abortion methods in california", "free abortion clinics in california", "abortion pill legal in california", "abortion clinics in southern california", "best abortion clinics in california", "abortion clinics in anaheim california", "abortion clinics in northern california", "abortion clinics in fresno california"], "self_loops": [0], "tags": {"i": "abortion options in california", "q": "cITOjs0aaOKrVXIneqW7NISzaAM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion cut off in california", "datetime": "2026-03-12 19:37:27.139685", "source": "google", "data": ["abortion cut off in california", [["abortion cut off in california", 0, [512]], ["abortion cut off date california", 0, [22, 30]]], {"i": "abortion cut off in california", "q": "5XBYvDMsEWImmK51magfSjKPTxQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion cut off in california", "abortion cut off date california"], "self_loops": [0], "tags": {"i": "abortion cut off in california", "q": "5XBYvDMsEWImmK51magfSjKPTxQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf radiology at the women's health center san francisco", "datetime": "2026-03-12 19:37:28.578365", "source": "google", "data": ["ucsf radiology at the women's health center san francisco", [["ucsf radiology at the women's health center san francisco", 0, [22, 30]], ["ucsf women's health center san francisco ca", 0, [22, 30]], ["UCSF Radiology at the Women's Health Center, and J, San Francisco, CA", 38], ["ucsf women's health radiology", 0, [751]], ["ucsf radiology women's health mammography", 0, [546, 649]], ["ucsf women's health mammography", 0, [751]], ["ucsf health radiology", 0, [512, 546]]], {"q": "B5E1PQ4f6LeaxlZNTV7TkTlw3h0", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf radiology at the women's health center san francisco", "ucsf women's health center san francisco ca", "UCSF Radiology at the Women's Health Center, and J, San Francisco, CA", "ucsf women's health radiology", "ucsf radiology women's health mammography", "ucsf women's health mammography", "ucsf health radiology"], "self_loops": [0], "tags": {"q": "B5E1PQ4f6LeaxlZNTV7TkTlw3h0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health resource center california pacific medical center san francisco", "datetime": "2026-03-12 19:37:29.722258", "source": "google", "data": ["women's health resource center california pacific medical center san francisco", [["Women's Health Resource Center: California Pacific Medical Center, Buchanan Street, San Francisco, CA", 38]], {"q": "d-gGSCljlwxQDXaZj7Lw5Pr5cvs", "t": {"bpc": false, "tlw": false}}], "suggests": ["Women's Health Resource Center: California Pacific Medical Center, Buchanan Street, San Francisco, CA"], "self_loops": [], "tags": {"q": "d-gGSCljlwxQDXaZj7Lw5Pr5cvs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "general hospital san francisco women's clinic", "datetime": "2026-03-12 19:37:31.113356", "source": "google", "data": ["general hospital san francisco women's clinic", [["general hospital san francisco women's clinic", 0, [22, 30]], ["san francisco general women's health center", 0, [751]], ["general hospital women's clinic", 0, [512, 546]], ["women's clinic general hospital sf", 0, [751]]], {"i": "general hospital san francisco women's clinic", "q": "1e48XA-mtv445mKwt6XSs0FTjNs", "t": {"bpc": false, "tlw": false}}], "suggests": ["general hospital san francisco women's clinic", "san francisco general women's health center", "general hospital women's clinic", "women's clinic general hospital sf"], "self_loops": [0], "tags": {"i": "general hospital san francisco women's clinic", "q": "1e48XA-mtv445mKwt6XSs0FTjNs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's hospital san diego", "datetime": "2026-03-12 19:37:32.581174", "source": "google", "data": ["women's hospital san diego", [["women's hospital san diego", 0, [512]], ["women's healthcare san diego", 0, [22, 30]], ["women's hospital san antonio", 0, [22, 30]], ["sharp women's hospital san diego", 0, [22, 30]], ["mary birch women's hospital san diego", 0, [22, 30]], ["womens and childrens hospital san diego", 0, [22, 30]], ["methodist women's hospital san antonio", 0, [22, 30]], ["methodist women's hospital san antonio tx", 0, [22, 30]], ["women's hospital in san antonio texas", 0, [22, 30]], ["humana women's hospital san antonio", 0, [22, 30]]], {"i": "women's hospital san diego", "q": "mW1gfeh_MOKOeWIMXe9Vlnm8EmM", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's hospital san diego", "women's healthcare san diego", "women's hospital san antonio", "sharp women's hospital san diego", "mary birch women's hospital san diego", "womens and childrens hospital san diego", "methodist women's hospital san antonio", "methodist women's hospital san antonio tx", "women's hospital in san antonio texas", "humana women's hospital san antonio"], "self_loops": [0], "tags": {"i": "women's hospital san diego", "q": "mW1gfeh_MOKOeWIMXe9Vlnm8EmM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's hospital san antonio", "datetime": "2026-03-12 19:37:33.452150", "source": "google", "data": ["women's hospital san antonio", [["women's hospital san antonio", 0, [512]], ["methodist women's hospital san antonio", 0, [22, 30]], ["methodist women's hospital san antonio tx", 0, [22, 30]], ["women's hospital in san antonio texas", 0, [22, 30]], ["humana women's hospital san antonio", 0, [22, 30]], ["baptist women's hospital san antonio", 0, [22, 30]], ["women's center university hospital san antonio reviews", 0, [22, 30]], ["women and children's hospital san antonio", 0, [22, 30]], ["women's and children's hospital san antonio texas", 0, [22, 10, 30]], ["unified women's healthcare san antonio", 0, [22, 30]]], {"i": "women's hospital san antonio", "q": "Pg1kYchEGCX4STVDWcZU9uMPaRQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's hospital san antonio", "methodist women's hospital san antonio", "methodist women's hospital san antonio tx", "women's hospital in san antonio texas", "humana women's hospital san antonio", "baptist women's hospital san antonio", "women's center university hospital san antonio reviews", "women and children's hospital san antonio", "women's and children's hospital san antonio texas", "unified women's healthcare san antonio"], "self_loops": [0], "tags": {"i": "women's hospital san antonio", "q": "Pg1kYchEGCX4STVDWcZU9uMPaRQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic general hospital sf", "datetime": "2026-03-12 19:37:34.318913", "source": "google", "data": ["women's clinic general hospital sf", [["general hospital sf women's clinic", 0, [22, 30]], ["women's clinic sf general", 0, [751]], ["general hospital san francisco women's clinic", 0, [751]]], {"i": "women's clinic general hospital sf", "q": "OtvMy0N99kAIYniM4jH_eaXzl64", "t": {"bpc": false, "tlw": false}}], "suggests": ["general hospital sf women's clinic", "women's clinic sf general", "general hospital san francisco women's clinic"], "self_loops": [], "tags": {"i": "women's clinic general hospital sf", "q": "OtvMy0N99kAIYniM4jH_eaXzl64", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", "datetime": "2026-03-12 19:37:35.379387", "source": "google", "data": ["UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", [["UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, California", 38]], {"q": "muvxXg7mDJ82A3nI1iOp1FFzOH4", "t": {"bpc": false, "tlw": false}}], "suggests": ["UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, California"], "self_loops": [], "tags": {"q": "muvxXg7mDJ82A3nI1iOp1FFzOH4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "sutter health san francisco locations", "datetime": "2026-03-12 19:37:36.374818", "source": "google", "data": ["sutter health san francisco locations", [["sutter health san francisco locations", 0, [512]], ["sutter health lab locations san francisco", 0, [22, 30]], ["sutter health san francisco address", 0, [512, 390, 650]], ["sutter health san francisco phone number", 0, [512, 390, 650]], ["sutter health northern california locations", 0, [512, 390, 650]], ["sutter health san francisco california", 0, [512, 546]]], {"i": "sutter health san francisco locations", "q": "iX-zFSjlr2apxmTrnjcxYH7oi_o", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["sutter health san francisco locations", "sutter health lab locations san francisco", "sutter health san francisco address", "sutter health san francisco phone number", "sutter health northern california locations", "sutter health san francisco california"], "self_loops": [0], "tags": {"i": "sutter health san francisco locations", "q": "iX-zFSjlr2apxmTrnjcxYH7oi_o", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "sutter health san francisco phone number", "datetime": "2026-03-12 19:37:37.293420", "source": "google", "data": ["sutter health san francisco phone number", [["sutter health san francisco phone number", 0, [512]], ["sutter hospital san francisco phone number", 0, [22, 30]], ["sutter health california phone number", 0, [512, 390, 650]], ["sutter health san francisco address", 0, [512, 390, 650]], ["phone number sutter health", 0, [512, 390, 650]], ["sutter health san carlos phone number", 0, [512, 390, 650]], ["sutter health san francisco fax number", 0, [751]]], {"i": "sutter health san francisco phone number", "q": "5XcckrjiMID6woO9GJcrgJX-qqY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["sutter health san francisco phone number", "sutter hospital san francisco phone number", "sutter health california phone number", "sutter health san francisco address", "phone number sutter health", "sutter health san carlos phone number", "sutter health san francisco fax number"], "self_loops": [0], "tags": {"i": "sutter health san francisco phone number", "q": "5XcckrjiMID6woO9GJcrgJX-qqY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "sutter health san francisco address", "datetime": "2026-03-12 19:37:38.333821", "source": "google", "data": ["sutter health san francisco address", [["sutter health san francisco address", 0, [512]], ["sutter hospital san francisco address", 0, [22, 30]], ["sutter health san francisco location", 0, [22, 30]], ["sutter health san francisco phone number", 0, [512, 390, 650]], ["sutter health san francisco fax number", 0, [751]], ["sutter health san francisco california street", 0, [751]]], {"i": "sutter health san francisco address", "q": "6vf-Ovf-lwKWfEyAcF6faFt6Nis", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["sutter health san francisco address", "sutter hospital san francisco address", "sutter health san francisco location", "sutter health san francisco phone number", "sutter health san francisco fax number", "sutter health san francisco california street"], "self_loops": [0], "tags": {"i": "sutter health san francisco address", "q": "6vf-Ovf-lwKWfEyAcF6faFt6Nis", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "sutter health women's health san francisco", "datetime": "2026-03-12 19:37:39.770528", "source": "google", "data": ["sutter health women's health san francisco", [["sutter women's health san francisco", 0, [22, 10, 30], {"za": "sutter women's health san francisco", "zb": "sutter health women's health san francisco"}], ["sutter health san francisco locations", 0, [512, 390, 650]], ["sutter health san francisco address", 0, [512, 390, 650]], ["sutter health women's health san francisco", 0, [546, 649]], ["sutter women's health center san francisco", 0, [512, 546]], ["sutter health women's center san mateo", 0, [512, 546]], ["sutter health women's health", 0, [512, 546]], ["sutter women's health center santa rosa", 0, [751]]], {"i": "sutter health women's health san francisco", "o": "sutter women's health san francisco", "p": "sutter health women's health san francisco", "q": "LA_4p10svJZDFfvY-R8o0FZ4UIw", "t": {"bpc": false, "tlw": false}}], "suggests": ["sutter women's health san francisco", "sutter health san francisco locations", "sutter health san francisco address", "sutter health women's health san francisco", "sutter women's health center san francisco", "sutter health women's center san mateo", "sutter health women's health", "sutter women's health center santa rosa"], "self_loops": [3], "tags": {"i": "sutter health women's health san francisco", "o": "sutter women's health san francisco", "p": "sutter health women's health san francisco", "q": "LA_4p10svJZDFfvY-R8o0FZ4UIw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "sutter health women's center san mateo", "datetime": "2026-03-12 19:37:40.615826", "source": "google", "data": ["sutter health women's center san mateo", [["sutter health women's center san mateo", 0, [512]], ["sutter women's health center san francisco", 0, [512, 546]], ["sutter health women's health san francisco", 0, [546, 649]], ["sutter women's health center santa rosa", 0, [751]], ["san mateo women's center", 0, [512, 546]]], {"i": "sutter health women's center san mateo", "q": "m1YZRh8x5O9UN628JmxpffCVFH8", "t": {"bpc": false, "tlw": false}}], "suggests": ["sutter health women's center san mateo", "sutter women's health center san francisco", "sutter health women's health san francisco", "sutter women's health center santa rosa", "san mateo women's center"], "self_loops": [0], "tags": {"i": "sutter health women's center san mateo", "q": "m1YZRh8x5O9UN628JmxpffCVFH8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "sutter women's health center sacramento", "datetime": "2026-03-12 19:37:41.751138", "source": "google", "data": ["sutter women's health center sacramento", [["sutter women's health center sacramento ca", 33, [160], {"a": "sutter women's health center ", "b": "sacramento ca"}], ["sutter women's health center sacramento fax number", 33, [160], {"a": "sutter women's health center ", "b": "sacramento fax number"}], ["sutter women's health center sacramento california", 33, [160], {"a": "sutter women's health center ", "b": "sacramento california"}], ["sutter women's health center sacramento fax", 33, [160], {"a": "sutter women's health center ", "b": "sacramento fax"}], ["sutter women's health center sacramento medical records", 33, [160], {"a": "sutter women's health center ", "b": "sacramento medical records"}], ["sutter women's health center sacramento", 33, [299], {"a": "sutter women's health center ", "b": "sacramento"}]], {"i": "sutter women's health center sacramento", "q": "uDdNVydgZiUiqqiHFVpZjw-mmGc", "t": {"bpc": false, "tlw": false}}], "suggests": ["sutter women's health center sacramento ca", "sutter women's health center sacramento fax number", "sutter women's health center sacramento california", "sutter women's health center sacramento fax", "sutter women's health center sacramento medical records", "sutter women's health center sacramento"], "self_loops": [5], "tags": {"i": "sutter women's health center sacramento", "q": "uDdNVydgZiUiqqiHFVpZjw-mmGc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "sutter women's health center santa rosa", "datetime": "2026-03-12 19:37:42.727984", "source": "google", "data": ["sutter women's health center santa rosa", [["sutter women's health center santa rosa", 0, [22, 30]], ["sutter women's health center sutter pacific medical foundation santa rosa", 0, [22, 30]], ["sutter health customer care", 0, [512, 390, 650]], ["sutter health near me", 0, [512, 390, 650]], ["sutter women's health santa rosa", 0, [512, 546]], ["sutter women's health center roseville", 0, [751]], ["sutter women's health center san francisco", 0, [512, 546]], ["sutter women's health center sacramento", 0, [751]]], {"i": "sutter women's health center santa rosa", "q": "k6hn-Ydzv-AjcL-ZlrgjMb5o_to", "t": {"bpc": false, "tlw": false}}], "suggests": ["sutter women's health center santa rosa", "sutter women's health center sutter pacific medical foundation santa rosa", "sutter health customer care", "sutter health near me", "sutter women's health santa rosa", "sutter women's health center roseville", "sutter women's health center san francisco", "sutter women's health center sacramento"], "self_loops": [0], "tags": {"i": "sutter women's health center santa rosa", "q": "k6hn-Ydzv-AjcL-ZlrgjMb5o_to", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion care near me", "datetime": "2026-03-12 19:37:43.730890", "source": "google", "data": ["abortion care near me", [["abortion care near me", 0, [512]], ["abortion clinic near me", 0, [22, 30]], ["abortion clinic near me open now", 0, [22, 30]], ["abortion clinic near me prices", 0, [22, 30]], ["abortion clinic near me for free", 0, [22, 30]], ["abortion clinic near me bulk bill", 0, [22, 30]], ["abortion clinic near me walk in", 0, [22, 30]], ["abortion clinic near me now", 0, [22, 30]], ["abortion clinic near me nhs", 0, [22, 30]], ["abortion clinic near me within 20 mi", 0, [22, 30]]], {"i": "abortion care near me", "q": "Lmc-LJu3h29oA-QreJ1mxOMrUvw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion care near me", "abortion clinic near me", "abortion clinic near me open now", "abortion clinic near me prices", "abortion clinic near me for free", "abortion clinic near me bulk bill", "abortion clinic near me walk in", "abortion clinic near me now", "abortion clinic near me nhs", "abortion clinic near me within 20 mi"], "self_loops": [0], "tags": {"i": "abortion care near me", "q": "Lmc-LJu3h29oA-QreJ1mxOMrUvw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "miscarriage treatment near me", "datetime": "2026-03-12 19:37:44.566466", "source": "google", "data": ["miscarriage treatment near me", [["miscarriage treatment near me", 0, [512]], ["miscarriage therapy near me", 0, [22, 30]], ["abortion treatment near me", 0, [22, 30]], ["miscarriage care near me", 0, [22, 30]], ["recurrent miscarriage treatment near me", 0, [22, 30]], ["miscarriage group therapy near me", 0, [22, 30]], ["miscarriage specialist near me", 0, [512, 390, 650]], ["cost of miscarriage treatment", 0, [512, 390, 650]], ["miscarriage surgery cost", 0, [512, 390, 650]], ["miscarriage near me", 0, [512, 546]]], {"i": "miscarriage treatment near me", "q": "DHwxm5fT-KDu7Pg8ZWzngroULPI", "t": {"bpc": false, "tlw": false}}], "suggests": ["miscarriage treatment near me", "miscarriage therapy near me", "abortion treatment near me", "miscarriage care near me", "recurrent miscarriage treatment near me", "miscarriage group therapy near me", "miscarriage specialist near me", "cost of miscarriage treatment", "miscarriage surgery cost", "miscarriage near me"], "self_loops": [0], "tags": {"i": "miscarriage treatment near me", "q": "DHwxm5fT-KDu7Pg8ZWzngroULPI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "post abortion care near me", "datetime": "2026-03-12 19:37:45.373882", "source": "google", "data": ["post abortion care near me", [["post abortion care near me", 0, [512]], ["post abortion care meaning", 0, [22, 30]], ["post abortion care medication", 0, [22, 30]], ["post abortion care medscape", 0, [22, 30]], ["post abortion care medicine", 0, [22, 30]], ["types of post abortion care", 0, [512, 390, 650]], ["post abortion clinic", 0, [751]], ["post abortion care planned parenthood", 0, [751]], ["post abortion care packages", 0, [751]], ["post abortion support near me", 0, [751]]], {"i": "post abortion care near me", "q": "FLnDYsiiMVbQUHcafnm2eVvDR_8", "t": {"bpc": false, "tlw": false}}], "suggests": ["post abortion care near me", "post abortion care meaning", "post abortion care medication", "post abortion care medscape", "post abortion care medicine", "types of post abortion care", "post abortion clinic", "post abortion care planned parenthood", "post abortion care packages", "post abortion support near me"], "self_loops": [0], "tags": {"i": "post abortion care near me", "q": "FLnDYsiiMVbQUHcafnm2eVvDR_8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "post abortion therapy near me", "datetime": "2026-03-12 19:37:46.657853", "source": "google", "data": ["post abortion therapy near me", [["post abortion therapy near me", 0, [22, 30]], ["post abortion counseling near me", 0, [22, 30]], ["post abortion counseling christian near me", 0, [22, 30]], ["post abortion therapist near me", 0, [22, 30]], ["treatment of post abortion care", 0, [512, 390, 650]], ["post abortion counseling services near me", 0, [751]]], {"i": "post abortion therapy near me", "q": "QTqkKQB6MYnaOWPAQBuodi8lx9w", "t": {"bpc": false, "tlw": false}}], "suggests": ["post abortion therapy near me", "post abortion counseling near me", "post abortion counseling christian near me", "post abortion therapist near me", "treatment of post abortion care", "post abortion counseling services near me"], "self_loops": [0], "tags": {"i": "post abortion therapy near me", "q": "QTqkKQB6MYnaOWPAQBuodi8lx9w", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion care near me", "datetime": "2026-03-12 19:37:48.010792", "source": "google", "data": ["free abortion care near me", [["free abortion care near me", 0, [22, 30]], ["free abortion clinic near me", 0, [22, 30]], ["free abortion clinic near me open now", 0, [22, 30]], ["free abortion clinic near me volunteer", 0, [22, 30]], ["free abortion clinic near me within 5 mi", 0, [22, 30]], ["free abortion clinic near me within 20 mi", 0, [22, 30]], ["free abortion clinic near me within 8.1 km", 0, [22, 30]], ["free government abortion clinic near me", 0, [22, 30]], ["free cat abortion clinic near me", 0, [22, 30]], ["free miscarriage care package near me", 0, [22, 30]]], {"i": "free abortion care near me", "q": "8Y0PKlgXfQFIgzuTseA5gzCWaB0", "t": {"bpc": false, "tlw": false}}], "suggests": ["free abortion care near me", "free abortion clinic near me", "free abortion clinic near me open now", "free abortion clinic near me volunteer", "free abortion clinic near me within 5 mi", "free abortion clinic near me within 20 mi", "free abortion clinic near me within 8.1 km", "free government abortion clinic near me", "free cat abortion clinic near me", "free miscarriage care package near me"], "self_loops": [0], "tags": {"i": "free abortion care near me", "q": "8Y0PKlgXfQFIgzuTseA5gzCWaB0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion care jobs near me", "datetime": "2026-03-12 19:37:48.999051", "source": "google", "data": ["abortion care jobs near me", [["abortion care jobs near me", 0, [512]], ["abortion clinic jobs near me", 0, [512, 390, 650]], ["abortion care network jobs", 0, [512, 390, 650]], ["abortion care network careers", 0, [751]], ["abortion clinic nurse jobs near me", 0, [751]]], {"i": "abortion care jobs near me", "q": "-q3fO9cZvxUobGd0us-B648ctgk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion care jobs near me", "abortion clinic jobs near me", "abortion care network jobs", "abortion care network careers", "abortion clinic nurse jobs near me"], "self_loops": [0], "tags": {"i": "abortion care jobs near me", "q": "-q3fO9cZvxUobGd0us-B648ctgk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "recurrent miscarriage treatment near me", "datetime": "2026-03-12 19:37:50.046320", "source": "google", "data": ["recurrent miscarriage treatment near me", [["recurrent miscarriage treatment near me", 0, [22, 30]], ["recurrent miscarriage treatment melbourne", 0, [22, 30]], ["recurrent miscarriage clinic near me", 0, [512, 390, 650]], ["recurrent miscarriage doctors near me", 0, [546, 649]], ["recurrent miscarriage specialist near me", 0, [512, 546]], ["miscarriage treatment near me", 0, [512, 546]], ["recurrent pregnancy loss clinic near me", 0, [512, 546]]], {"i": "recurrent miscarriage treatment near me", "q": "5w3aO5kmyepssLKG0yS3JWSjziA", "t": {"bpc": false, "tlw": false}}], "suggests": ["recurrent miscarriage treatment near me", "recurrent miscarriage treatment melbourne", "recurrent miscarriage clinic near me", "recurrent miscarriage doctors near me", "recurrent miscarriage specialist near me", "miscarriage treatment near me", "recurrent pregnancy loss clinic near me"], "self_loops": [0], "tags": {"i": "recurrent miscarriage treatment near me", "q": "5w3aO5kmyepssLKG0yS3JWSjziA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion care clinic near me", "datetime": "2026-03-12 19:37:51.200376", "source": "google", "data": ["abortion care clinic near me", [["abortion care clinic near me", 0, [22, 30]], ["abortion health clinic near me", 0, [22, 30]], ["women's health abortion clinic near me", 0, [22, 10, 30]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic near me and prices", 0, [512, 390, 650]], ["abortion care near me", 0, [512, 546]], ["women's care abortion clinic", 0, [512, 546]], ["abortion care services", 0, [512, 546]], ["abortion care providers", 0, [751]]], {"i": "abortion care clinic near me", "q": "O3zUsLp7habseJE1wT9C-TShLvo", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion care clinic near me", "abortion health clinic near me", "women's health abortion clinic near me", "abortion clinic near me for free", "abortion clinic near me now", "abortion clinic near me and prices", "abortion care near me", "women's care abortion clinic", "abortion care services", "abortion care providers"], "self_loops": [0], "tags": {"i": "abortion care clinic near me", "q": "O3zUsLp7habseJE1wT9C-TShLvo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion treatment cost", "datetime": "2026-03-12 19:37:52.232264", "source": "google", "data": ["abortion treatment cost", [["abortion treatment cost", 0, [512]], ["abortion treatment cost in india", 0, [512]], ["abortion treatment cost in pakistan", 0, [22, 30]], ["abortion treatment cost in malaysia", 0, [22, 30]], ["miscarriage treatment cost", 0, [22, 30]], ["abortion surgery cost nc", 0, [22, 30]], ["miscarriage treatment cost in india", 0, [22, 30]], ["miscarriage treatment cost in malaysia", 0, [22, 30]], ["abortion surgery cost in illinois", 0, [22, 30]], ["abortion treatment price", 0, [22, 30]]], {"i": "abortion treatment cost", "q": "xoge1d5_zxzdHRC7iBvxtfd311s", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion treatment cost", "abortion treatment cost in india", "abortion treatment cost in pakistan", "abortion treatment cost in malaysia", "miscarriage treatment cost", "abortion surgery cost nc", "miscarriage treatment cost in india", "miscarriage treatment cost in malaysia", "abortion surgery cost in illinois", "abortion treatment price"], "self_loops": [0], "tags": {"i": "abortion treatment cost", "q": "xoge1d5_zxzdHRC7iBvxtfd311s", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill san francisco", "datetime": "2026-03-12 19:37:53.369866", "source": "google", "data": ["abortion pill san francisco", [["abortion pill san francisco", 0, [512]], ["abortion pill san francisco price", 0, [22, 30]], ["abortion clinic san francisco", 0, [22, 30]], ["abortion clinic san francisco ca", 0, [22, 30]], ["abortion pill under 9 weeks", 0, [512, 390, 650]], ["abortion pill san jose", 0, [512, 546]], ["abortion pill sacramento ca", 0, [751]], ["abortion pill san diego", 0, [512, 546]], ["abortion pill sacramento", 0, [512, 546]]], {"i": "abortion pill san francisco", "q": "9JHVBKgklEZjowGcECFVOcYGd9Q", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill san francisco", "abortion pill san francisco price", "abortion clinic san francisco", "abortion clinic san francisco ca", "abortion pill under 9 weeks", "abortion pill san jose", "abortion pill sacramento ca", "abortion pill san diego", "abortion pill sacramento"], "self_loops": [0], "tags": {"i": "abortion pill san francisco", "q": "9JHVBKgklEZjowGcECFVOcYGd9Q", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion protest san francisco", "datetime": "2026-03-12 19:37:54.757942", "source": "google", "data": ["abortion protest san francisco", [["abortion protest san francisco", 0, [512]], ["pro life protest san francisco", 0, [22, 30]], ["abortion rally san francisco", 0, [22, 30]], ["anti abortion protest san francisco", 0, [22, 30]], ["anti abortion rally san francisco", 0, [22, 30]], ["abortion protests near me", 0, [512, 390, 650]], ["anti abortion protests near me", 0, [512, 390, 650]], ["are there protests going on in san francisco", 0, [512, 390, 650]], ["abortion protest sf", 0, [512, 546]]], {"i": "abortion protest san francisco", "q": "9ZFjLNISqx5Saq5GwvS0Yv59plE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion protest san francisco", "pro life protest san francisco", "abortion rally san francisco", "anti abortion protest san francisco", "anti abortion rally san francisco", "abortion protests near me", "anti abortion protests near me", "are there protests going on in san francisco", "abortion protest sf"], "self_loops": [0], "tags": {"i": "abortion protest san francisco", "q": "9ZFjLNISqx5Saq5GwvS0Yv59plE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "anti abortion san francisco", "datetime": "2026-03-12 19:37:55.980412", "source": "google", "data": ["anti abortion san francisco", [["anti abortion san francisco", 0, [22, 30]], ["anti abortion protest san francisco", 0, [22, 30]], ["anti abortion march san francisco", 0, [22, 30]], ["anti abortion rally san francisco", 0, [22, 30]], ["anti abortion laws", 0, [512, 390, 650]], ["anti abortion protests near me", 0, [512, 390, 650]], ["anti abortion jobs", 0, [512, 390, 650]], ["anti abortion protest sf", 0, [512, 546]]], {"i": "anti abortion san francisco", "q": "bSeGmQzD-TYQCEp7NyhEL5jMqwA", "t": {"bpc": false, "tlw": false}}], "suggests": ["anti abortion san francisco", "anti abortion protest san francisco", "anti abortion march san francisco", "anti abortion rally san francisco", "anti abortion laws", "anti abortion protests near me", "anti abortion jobs", "anti abortion protest sf"], "self_loops": [0], "tags": {"i": "anti abortion san francisco", "q": "bSeGmQzD-TYQCEp7NyhEL5jMqwA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "surgical abortion san francisco", "datetime": "2026-03-12 19:37:57.415420", "source": "google", "data": ["surgical abortion san francisco", [["surgical abortion san francisco", 0, [22, 30]], ["surgical abortion san diego", 0, [512, 546]], ["surgical abortion california", 0, [512, 546]]], {"i": "surgical abortion san francisco", "q": "_rVIcyotrzT2fveWpEg4Rw8H728", "t": {"bpc": false, "tlw": false}}], "suggests": ["surgical abortion san francisco", "surgical abortion san diego", "surgical abortion california"], "self_loops": [0], "tags": {"i": "surgical abortion san francisco", "q": "_rVIcyotrzT2fveWpEg4Rw8H728", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "san francisco abortion law", "datetime": "2026-03-12 19:37:58.848292", "source": "google", "data": ["san francisco abortion law", [["san francisco abortion laws", 0, [22, 30]], ["is abortion legal in california", 0, [512, 390, 650]], ["san francisco abortion rights", 0, [751]], ["san francisco abortion protests", 0, [751]]], {"i": "san francisco abortion law", "q": "uKJHb6H1ihLPnN1XfnrWJMu405Y", "t": {"bpc": false, "tlw": false}}], "suggests": ["san francisco abortion laws", "is abortion legal in california", "san francisco abortion rights", "san francisco abortion protests"], "self_loops": [], "tags": {"i": "san francisco abortion law", "q": "uKJHb6H1ihLPnN1XfnrWJMu405Y", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion rally san francisco", "datetime": "2026-03-12 19:38:00.189382", "source": "google", "data": ["abortion rally san francisco", [["abortion rally san francisco", 0, [22, 30]], ["pro life rally san francisco", 0, [22, 30]], ["abortion protest san francisco", 0, [22, 30]], ["anti abortion rally san francisco", 0, [22, 30]], ["anti abortion protest san francisco", 0, [22, 30]], ["abortion clinics in san francisco", 0, [512, 390, 650]], ["abortion rally sf today", 0, [751]], ["abortion rally sf", 0, [751]], ["abortion rally bay area", 0, [751]]], {"i": "abortion rally san francisco", "q": "ars8SOYM9uhsxHrmMlLBeEXZtD0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion rally san francisco", "pro life rally san francisco", "abortion protest san francisco", "anti abortion rally san francisco", "anti abortion protest san francisco", "abortion clinics in san francisco", "abortion rally sf today", "abortion rally sf", "abortion rally bay area"], "self_loops": [0], "tags": {"i": "abortion rally san francisco", "q": "ars8SOYM9uhsxHrmMlLBeEXZtD0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me surgical", "datetime": "2026-03-12 19:38:01.661913", "source": "google", "data": ["abortion clinic near me surgical", [["abortion clinic near me surgical", 0, [512]], ["surgical abortion clinics near me open now", 0, [22, 30]], ["private surgical abortion clinic near me", 0, [22, 30]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic near me and prices", 0, [512, 390, 650]], ["abortion clinic near me open sunday", 0, [751]], ["abortion clinic near me same day", 0, [512, 546]], ["abortion clinic near me open saturday", 0, [512, 546]]], {"i": "abortion clinic near me surgical", "q": "9UZUZotRQd3EPZztk1G6VAGARNs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic near me surgical", "surgical abortion clinics near me open now", "private surgical abortion clinic near me", "abortion clinic near me for free", "abortion clinic near me and prices", "abortion clinic near me open sunday", "abortion clinic near me same day", "abortion clinic near me open saturday"], "self_loops": [0], "tags": {"i": "abortion clinic near me surgical", "q": "9UZUZotRQd3EPZztk1G6VAGARNs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA", "datetime": "2026-03-12 19:38:02.529235", "source": "google", "data": ["Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA", [["Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, California", 38]], {"q": "cdt5sRhfXliGw-9Ot1pRYB9yNC4", "t": {"bpc": false, "tlw": false}}], "suggests": ["Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, California"], "self_loops": [], "tags": {"q": "cdt5sRhfXliGw-9Ot1pRYB9yNC4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "tia women's health locations", "datetime": "2026-03-12 19:38:03.793519", "source": "google", "data": ["tia women's health locations", [["tia women's health locations", 0, [512]], ["tia women's health clinic", 0, [512, 546]], ["tia women's health los angeles", 0, [546, 649]], ["tia women's wellness", 0, [751]], ["tia women's health", 0, [512, 546]]], {"i": "tia women's health locations", "q": "6SVRAhKpVvLzh6Pw-sv1_49v650", "t": {"bpc": false, "tlw": false}}], "suggests": ["tia women's health locations", "tia women's health clinic", "tia women's health los angeles", "tia women's wellness", "tia women's health"], "self_loops": [0], "tags": {"i": "tia women's health locations", "q": "6SVRAhKpVvLzh6Pw-sv1_49v650", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "tia women's health clinic", "datetime": "2026-03-12 19:38:05.165865", "source": "google", "data": ["tia women's health clinic", [["tia women's health clinic san francisco", 0, [512]], ["tia women's health clinic", 0, [512]], ["tia women's health clinic culver city", 0, [512]], ["tia women's health clinic pasadena", 0, [512]], ["tia women's health clinic williamsburg reviews", 0, [512]], ["tia women's health clinic san francisco reviews", 0, [512]], ["tia women's health clinic williamsburg", 0, [512]], ["tia women's health clinic scottsdale", 0, [512]], ["tia women's health clinic studio city studio city", 0, [512]], ["tia women's health clinic silver lake", 0, [512]]], {"q": "h9ak63qOmCXdJjX-pshjboEK5YU", "t": {"bpc": false, "tlw": false}}], "suggests": ["tia women's health clinic san francisco", "tia women's health clinic", "tia women's health clinic culver city", "tia women's health clinic pasadena", "tia women's health clinic williamsburg reviews", "tia women's health clinic san francisco reviews", "tia women's health clinic williamsburg", "tia women's health clinic scottsdale", "tia women's health clinic studio city studio city", "tia women's health clinic silver lake"], "self_loops": [1], "tags": {"q": "h9ak63qOmCXdJjX-pshjboEK5YU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "tia health san francisco", "datetime": "2026-03-12 19:38:06.400246", "source": "google", "data": ["tia health san francisco", [["tia health san francisco", 0, [512]], ["tia health san francisco reddit", 0, [22, 30]], ["tia healthcare san francisco", 0, [22, 30]], ["tia medical san francisco", 0, [22, 30]], ["tia women's health san francisco", 0, [22, 10, 30]], ["tia women's health clinic san francisco", 0, [22, 30]], ["tia women's health clinic san francisco reviews", 0, [22, 30]], ["Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA", 38], ["tia health sf", 0, [512, 546]], ["tia san francisco", 0, [512, 546]]], {"q": "uL0_bU59jU_Fqqr04A0JsIpMnEM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["tia health san francisco", "tia health san francisco reddit", "tia healthcare san francisco", "tia medical san francisco", "tia women's health san francisco", "tia women's health clinic san francisco", "tia women's health clinic san francisco reviews", "Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA", "tia health sf", "tia san francisco"], "self_loops": [0], "tags": {"q": "uL0_bU59jU_Fqqr04A0JsIpMnEM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "tia sf clinic", "datetime": "2026-03-12 19:38:07.665887", "source": "google", "data": ["tia sf clinic", [["tia clinic sf", 0, [22, 30]], ["tia sf reviews", 0, [751]], ["tia sf", 0, [512, 546]], ["tia clinic san francisco", 0, [512, 546]]], {"i": "tia sf clinic", "q": "y1fD5KV4UItpndlY4gXjUd4lTvM", "t": {"bpc": false, "tlw": false}}], "suggests": ["tia clinic sf", "tia sf reviews", "tia sf", "tia clinic san francisco"], "self_loops": [], "tags": {"i": "tia sf clinic", "q": "y1fD5KV4UItpndlY4gXjUd4lTvM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "tia women's health los angeles", "datetime": "2026-03-12 19:38:09.022289", "source": "google", "data": ["tia women's health los angeles", [["tia women's health los angeles", 0, [22, 30]], ["tia women's health clinic silver lake los angeles", 0, [22, 30]], ["tia women's health clinic playa vista los angeles", 0, [22, 30]], ["tia women's health locations", 0, [512, 546]], ["tia health los angeles", 0, [512, 546]], ["tia women's health reviews", 0, [512, 546]], ["tia women's wellness", 0, [751]]], {"i": "tia women's health los angeles", "q": "LMWN5YvGAjLdSBsmAXGGzLXFTRs", "t": {"bpc": false, "tlw": false}}], "suggests": ["tia women's health los angeles", "tia women's health clinic silver lake los angeles", "tia women's health clinic playa vista los angeles", "tia women's health locations", "tia health los angeles", "tia women's health reviews", "tia women's wellness"], "self_loops": [0], "tags": {"i": "tia women's health los angeles", "q": "LMWN5YvGAjLdSBsmAXGGzLXFTRs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "tia san francisco reviews", "datetime": "2026-03-12 19:38:10.285469", "source": "google", "data": ["tia san francisco reviews", [["tia san francisco reviews", 0, [512]], ["tia women's health clinic san francisco reviews", 0, [22, 30]], ["tia sf reviews", 0, [751]], ["tia san francisco", 0, [512, 546]], ["tia mission sf reviews", 0, [751]]], {"i": "tia san francisco reviews", "q": "Dg3r1x3NCsNCpGAxxGsVFv5dTi8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["tia san francisco reviews", "tia women's health clinic san francisco reviews", "tia sf reviews", "tia san francisco", "tia mission sf reviews"], "self_loops": [0], "tags": {"i": "tia san francisco reviews", "q": "Dg3r1x3NCsNCpGAxxGsVFv5dTi8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "tia sf reviews", "datetime": "2026-03-12 19:38:11.205319", "source": "google", "data": ["tia sf reviews", [["tia sf reviews", 0, [22, 30]], ["tia health sf reviews", 0, [22, 30]], ["tia san francisco reviews", 0, [512, 546]], ["tia sf clinic", 0, [751]], ["tia sf", 0, [512, 546]], ["tia mission sf reviews", 0, [751]]], {"i": "tia sf reviews", "q": "VHxEIid44Mn8nbGhUbsR37O3Rk8", "t": {"bpc": false, "tlw": false}}], "suggests": ["tia sf reviews", "tia health sf reviews", "tia san francisco reviews", "tia sf clinic", "tia sf", "tia mission sf reviews"], "self_loops": [0], "tags": {"i": "tia sf reviews", "q": "VHxEIid44Mn8nbGhUbsR37O3Rk8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "tia women's health reviews", "datetime": "2026-03-12 19:38:12.070676", "source": "google", "data": ["tia women's health reviews", [["tia women's health reviews", 0, [512]], ["tia women's health clinic reviews", 0, [22, 30]], ["tia women's health clinic scottsdale reviews", 0, [22, 30]], ["tia women's health clinic williamsburg reviews", 0, [22, 30]], ["tia women's health clinic pasadena reviews", 0, [22, 30]], ["tia women's health clinic gilbert reviews", 0, [22, 30]], ["tia women's health clinic studio city reviews", 0, [22, 30]], ["tia women's health clinic silver lake reviews", 0, [22, 30]], ["tia women's health clinic san francisco reviews", 0, [22, 30]], ["tia women's health clinic west hollywood reviews", 0, [22, 30]]], {"i": "tia women's health reviews", "q": "Xm8Rp9eMxu8swsSFBl3zs8LMLf8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["tia women's health reviews", "tia women's health clinic reviews", "tia women's health clinic scottsdale reviews", "tia women's health clinic williamsburg reviews", "tia women's health clinic pasadena reviews", "tia women's health clinic gilbert reviews", "tia women's health clinic studio city reviews", "tia women's health clinic silver lake reviews", "tia women's health clinic san francisco reviews", "tia women's health clinic west hollywood reviews"], "self_loops": [0], "tags": {"i": "tia women's health reviews", "q": "Xm8Rp9eMxu8swsSFBl3zs8LMLf8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "tia clinic san francisco", "datetime": "2026-03-12 19:38:13.147188", "source": "google", "data": ["tia clinic san francisco", [["tia clinic san francisco", 0, [512]], ["tia women's health clinic san francisco", 0, [22, 30]], ["tia women's health clinic san francisco reviews", 0, [22, 30]], ["Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA", 38], ["tia clinic near me", 0, [512, 390, 650]], ["tia clinic sf", 0, [512, 546]], ["tia san francisco", 0, [512, 546]], ["tia san francisco reviews", 0, [512, 546]]], {"q": "UdzvNHfL3olbMFkVspQI6bmkPAs", "t": {"bpc": false, "tlw": false}}], "suggests": ["tia clinic san francisco", "tia women's health clinic san francisco", "tia women's health clinic san francisco reviews", "Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA", "tia clinic near me", "tia clinic sf", "tia san francisco", "tia san francisco reviews"], "self_loops": [0], "tags": {"q": "UdzvNHfL3olbMFkVspQI6bmkPAs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's breast center san mateo", "datetime": "2026-03-12 19:38:14.056311", "source": "google", "data": ["women's breast center san mateo", [["women's breast center san mateo", 0, [512]], ["women's breast center san mateo ca", 0, [751]], ["women's center san mateo ca", 0, [512, 546]], ["women's center san mateo", 0, [512, 546]], ["women's breast center santa monica", 0, [546, 649]]], {"i": "women's breast center san mateo", "q": "NZFUUY6xscpGBcSMbOsbxjIWjmw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's breast center san mateo", "women's breast center san mateo ca", "women's center san mateo ca", "women's center san mateo", "women's breast center santa monica"], "self_loops": [0], "tags": {"i": "women's breast center san mateo", "q": "NZFUUY6xscpGBcSMbOsbxjIWjmw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's breast center san mateo ca", "datetime": "2026-03-12 19:38:15.480147", "source": "google", "data": ["women's breast center san mateo ca", [["women's breast center san mateo california", 33, [160], {"a": "women's breast center san mateo ", "b": "california"}], ["women's breast center san mateo ca fax number", 33, [160], {"a": "women's breast center san mateo ", "b": "ca fax number"}], ["women's breast center san mateo ca fax", 33, [160], {"a": "women's breast center san mateo ", "b": "ca fax"}], ["women's breast center san mateo ca npi", 33, [160], {"a": "women's breast center san mateo ", "b": "ca npi"}], ["women's breast center san mateo ca 94402", 33, [160], {"a": "women's breast center san mateo ", "b": "ca 94402"}], ["women's breast center san mateo ca", 33, [299], {"a": "women's breast center san mateo ", "b": "ca"}], ["women's breast center san mateo ca 94403", 33, [299], {"a": "women's breast center san mateo ", "b": "ca 94403"}]], {"i": "women's breast center san mateo ca", "q": "yxg8BEk_k-cwcY5a3xWFv5WUvng", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's breast center san mateo california", "women's breast center san mateo ca fax number", "women's breast center san mateo ca fax", "women's breast center san mateo ca npi", "women's breast center san mateo ca 94402", "women's breast center san mateo ca", "women's breast center san mateo ca 94403"], "self_loops": [5], "tags": {"i": "women's breast center san mateo ca", "q": "yxg8BEk_k-cwcY5a3xWFv5WUvng", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "sf breast health center", "datetime": "2026-03-12 19:38:16.475610", "source": "google", "data": ["sf breast health center", [["sf breast health center", 0, [22, 30]], ["san francisco women's health center", 0, [22, 30]], ["san francisco general women's health center", 0, [22, 30]], ["cpmc breast health center sf", 0, [22, 30]], ["sutter health breast center sf", 0, [22, 30]], ["SPMF Breast Health Center, Mission Bernal Campus | 1580 Valencia Street, Valencia Street, SF, CA", 38], ["Breast Health Center: California Pacific Medical Center, Valencia Street, SF, CA", 38], ["UCSF Breast Care Center, 4th Street, SF, CA", 38], ["san francisco breast health center", 0, [512, 546]], ["women's breast health center san francisco", 0, [546, 649]]], {"q": "fpOM1zZ3K7_o7zhjqViX-efzycw", "t": {"bpc": false, "tlw": false}}], "suggests": ["sf breast health center", "san francisco women's health center", "san francisco general women's health center", "cpmc breast health center sf", "sutter health breast center sf", "SPMF Breast Health Center, Mission Bernal Campus | 1580 Valencia Street, Valencia Street, SF, CA", "Breast Health Center: California Pacific Medical Center, Valencia Street, SF, CA", "UCSF Breast Care Center, 4th Street, SF, CA", "san francisco breast health center", "women's breast health center san francisco"], "self_loops": [0], "tags": {"q": "fpOM1zZ3K7_o7zhjqViX-efzycw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "san francisco breast health center", "datetime": "2026-03-12 19:38:17.863923", "source": "google", "data": ["san francisco breast health center", [["san francisco breast health center", 0, [512]], ["san francisco women's health center", 0, [22, 30]], ["san francisco women's health clinic", 0, [22, 30]], ["san francisco general women's health center", 0, [22, 30]], ["sutter breast health center san francisco", 0, [22, 30]], ["women's breast health center san francisco", 0, [22, 30]], ["cpmc breast health center san francisco", 0, [22, 30]], ["SPMF Breast Health Center, Mission Bernal Campus | 1580 Valencia Street, Valencia Street, San Francisco, CA", 38], ["Breast Health Center: California Pacific Medical Center, Valencia Street, San Francisco, CA", 38], ["UCSF Breast Care Center, 4th Street, San Francisco, CA", 38]], {"q": "feqo7hio5uiykTrQON_pGhE-c9o", "t": {"bpc": false, "tlw": false}}], "suggests": ["san francisco breast health center", "san francisco women's health center", "san francisco women's health clinic", "san francisco general women's health center", "sutter breast health center san francisco", "women's breast health center san francisco", "cpmc breast health center san francisco", "SPMF Breast Health Center, Mission Bernal Campus | 1580 Valencia Street, Valencia Street, San Francisco, CA", "Breast Health Center: California Pacific Medical Center, Valencia Street, San Francisco, CA", "UCSF Breast Care Center, 4th Street, San Francisco, CA"], "self_loops": [0], "tags": {"q": "feqo7hio5uiykTrQON_pGhE-c9o", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's health sutter street", "datetime": "2026-03-12 19:38:19.080582", "source": "google", "data": ["ucsf women's health sutter street", [["ucsf women's health sutter street", 0, [22, 30]], ["UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", 38], ["ucsf women's health sutter", 0, [751]], ["ucsf women's health center san francisco ca", 0, [512, 546]], ["ucsf sutter street", 0, [512, 546]], ["ucsf women's health center", 0, [512, 546]]], {"q": "JvBdOeqcLfxE-bdIvWoU-PvdY_E", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's health sutter street", "UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", "ucsf women's health sutter", "ucsf women's health center san francisco ca", "ucsf sutter street", "ucsf women's health center"], "self_loops": [0], "tags": {"q": "JvBdOeqcLfxE-bdIvWoU-PvdY_E", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "st. mary's medical center san francisco photos", "datetime": "2026-03-12 19:38:19.978355", "source": "google", "data": ["st. mary's medical center san francisco photos", [["st mary's medical center san francisco photos", 0, [22, 30]], ["St Mary's Medical Center, San Francisco, Stanyan Street, San Francisco, CA", 38], ["st. mary's medical center san francisco map", 0, [751]], ["st. mary's medical center san francisco ca", 0, [546, 649]], ["st. mary\u2019s medical center san francisco ca", 0, [546, 649]]], {"q": "-GE3xYoSO74EZH2q1BwulkEGbkE", "t": {"bpc": false, "tlw": false}}], "suggests": ["st mary's medical center san francisco photos", "St Mary's Medical Center, San Francisco, Stanyan Street, San Francisco, CA", "st. mary's medical center san francisco map", "st. mary's medical center san francisco ca", "st. mary\u2019s medical center san francisco ca"], "self_loops": [], "tags": {"q": "-GE3xYoSO74EZH2q1BwulkEGbkE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "st mary's women's health center", "datetime": "2026-03-12 19:38:20.874761", "source": "google", "data": ["st mary's women's health center", [["st mary's women's health center", 0, [512]], ["st mary's women's health center san francisco", 0, [22, 30]], ["st mary's women's health center troy ny", 0, [22, 30]], ["saint mary's women's health center harold chotiner md", 0, [22, 30]], ["st mary's women's medical center", 0, [22, 30]], ["st mary's women's wellness center", 0, [22, 30]], ["st mary's women's health clinic", 0, [22, 30]], ["columbia st. mary's women's medical center", 0, [22, 10, 30]], ["ascension columbia st mary's women's medical center", 0, [22, 30]], ["ascension columbia st mary's women's medical center photos", 0, [22, 30]]], {"i": "st mary's women's health center", "q": "oYe_82c1AfQW6nND2v9Wfl8CJOY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["st mary's women's health center", "st mary's women's health center san francisco", "st mary's women's health center troy ny", "saint mary's women's health center harold chotiner md", "st mary's women's medical center", "st mary's women's wellness center", "st mary's women's health clinic", "columbia st. mary's women's medical center", "ascension columbia st mary's women's medical center", "ascension columbia st mary's women's medical center photos"], "self_loops": [0], "tags": {"i": "st mary's women's health center", "q": "oYe_82c1AfQW6nND2v9Wfl8CJOY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "st mary's medical center san francisco services", "datetime": "2026-03-12 19:38:21.900954", "source": "google", "data": ["st mary's medical center san francisco services", [["services offered by st mary's medical center san francisco", 0, [22, 30]], ["ucsf health st mary's medical center laboratory services san francisco", 0, [22, 30]], ["st mary's medical center san francisco services", 0, [546, 649]], ["st mary's medical center san francisco photos", 0, [512, 546]], ["st mary's medical center san francisco ca", 0, [512, 546]], ["st. mary's medical center san francisco map", 0, [751]]], {"i": "st mary's medical center san francisco services", "q": "SFpTGaVcwtHyppGKK8OK4rf7JtU", "t": {"bpc": false, "tlw": false}}], "suggests": ["services offered by st mary's medical center san francisco", "ucsf health st mary's medical center laboratory services san francisco", "st mary's medical center san francisco services", "st mary's medical center san francisco photos", "st mary's medical center san francisco ca", "st. mary's medical center san francisco map"], "self_loops": [2], "tags": {"i": "st mary's medical center san francisco services", "q": "SFpTGaVcwtHyppGKK8OK4rf7JtU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "pacific women's health san francisco", "datetime": "2026-03-12 19:38:22.734663", "source": "google", "data": ["pacific women's health san francisco", [["pacific women's health san francisco", 0, [512]], ["pacific women's health sf", 0, [751]], ["pacific women's ob gyn san francisco", 0, [512, 546]], ["pacific women's ob/gyn medical group san francisco ca", 0, [751]], ["pacific women's health clinic", 0, [512, 546]]], {"i": "pacific women's health san francisco", "q": "KeHvfNcSXQd_WcJDdBFmLR0aHXc", "t": {"bpc": false, "tlw": false}}], "suggests": ["pacific women's health san francisco", "pacific women's health sf", "pacific women's ob gyn san francisco", "pacific women's ob/gyn medical group san francisco ca", "pacific women's health clinic"], "self_loops": [0], "tags": {"i": "pacific women's health san francisco", "q": "KeHvfNcSXQd_WcJDdBFmLR0aHXc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "tia women's health san francisco", "datetime": "2026-03-12 19:38:23.596675", "source": "google", "data": ["tia women's health san francisco", [["tia women's health san francisco", 0, [22, 30]], ["tia women's health clinic san francisco", 0, [22, 30]], ["tia women's health clinic san francisco reviews", 0, [22, 30]], ["Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA", 38], ["tia women's health locations", 0, [512, 546]], ["tia women's health los angeles", 0, [546, 649]], ["tia women's health clinic", 0, [512, 546]], ["tia women's health", 0, [512, 546]], ["tia women's health reviews", 0, [512, 546]]], {"q": "Hqv7kAk_XHkW5Hwe4BeHq7Zw-aM", "t": {"bpc": false, "tlw": false}}], "suggests": ["tia women's health san francisco", "tia women's health clinic san francisco", "tia women's health clinic san francisco reviews", "Tia Women's Health Clinic San Francisco, Mission Street, San Francisco, CA", "tia women's health locations", "tia women's health los angeles", "tia women's health clinic", "tia women's health", "tia women's health reviews"], "self_loops": [0], "tags": {"q": "Hqv7kAk_XHkW5Hwe4BeHq7Zw-aM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's health san francisco", "datetime": "2026-03-12 19:38:24.504844", "source": "google", "data": ["ucsf women's health san francisco", [["ucsf women's health san francisco", 0, [22, 30]], ["ucsf women's health center san francisco ca", 0, [22, 30]], ["ucsf radiology at the women's health center san francisco", 0, [22, 30]], ["ucsf center for urogynecology and women's pelvic health san francisco", 0, [22, 30]], ["UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", 38], ["ucsf women's health sutter", 0, [751]], ["ucsf women's health sutter street", 0, [751]], ["ucsf women's health center", 0, [512, 546]], ["ucsf women's health clinic", 0, [512, 546]]], {"q": "RYlwqLabzfSwP3v4rUJhZOdT1VE", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's health san francisco", "ucsf women's health center san francisco ca", "ucsf radiology at the women's health center san francisco", "ucsf center for urogynecology and women's pelvic health san francisco", "UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", "ucsf women's health sutter", "ucsf women's health sutter street", "ucsf women's health center", "ucsf women's health clinic"], "self_loops": [0], "tags": {"q": "RYlwqLabzfSwP3v4rUJhZOdT1VE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health startups san francisco", "datetime": "2026-03-12 19:38:25.554204", "source": "google", "data": ["women's health startups san francisco", [["women's health startups san francisco", 0, [22, 30]], ["women's health startups", 0, [512, 546]], ["women's healthcare startups", 0, [512, 546]], ["women's health startups nyc", 0, [512, 546]], ["women's health startups hiring", 0, [512, 546]]], {"i": "women's health startups san francisco", "q": "dRnbUkJEYx4n6XlKrHcFLuSTS28", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health startups san francisco", "women's health startups", "women's healthcare startups", "women's health startups nyc", "women's health startups hiring"], "self_loops": [0], "tags": {"i": "women's health startups san francisco", "q": "dRnbUkJEYx4n6XlKrHcFLuSTS28", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health companies san francisco", "datetime": "2026-03-12 19:38:26.498516", "source": "google", "data": ["women's health companies san francisco", [["women's health companies san francisco", 0, [22, 30]], ["largest women's health companies", 0, [512, 390, 650]], ["women's health san francisco", 0, [512, 546]], ["women's health clinic san francisco", 0, [512, 546]], ["women's health center san francisco", 0, [512, 546]], ["san francisco women\u2019s healthcare", 0, [751]], ["san francisco women's healthcare inc", 0, [546, 649]]], {"i": "women's health companies san francisco", "q": "PTpoqWX-V_OZKw_u8aqmKAxGd6w", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health companies san francisco", "largest women's health companies", "women's health san francisco", "women's health clinic san francisco", "women's health center san francisco", "san francisco women\u2019s healthcare", "san francisco women's healthcare inc"], "self_loops": [0], "tags": {"i": "women's health companies san francisco", "q": "PTpoqWX-V_OZKw_u8aqmKAxGd6w", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "sutter women's health san francisco", "datetime": "2026-03-12 19:38:27.661857", "source": "google", "data": ["sutter women's health san francisco", [["sutter women's health san francisco", 0, [22, 30]], ["sutter women's health center san francisco", 0, [22, 30]], ["Ucsf Women's Health Obstetrics: Chen Joyce D MD, Sutter Street, San Francisco, CA", 38], ["UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", 38], ["sutter health san francisco locations", 0, [512, 390, 650]], ["sutter health san francisco address", 0, [512, 390, 650]], ["sutter health san francisco phone number", 0, [512, 390, 650]], ["sutter health san francisco jobs", 0, [512, 390, 650]], ["sutter health women's health san francisco", 0, [546, 649]], ["sutter health women's center san mateo", 0, [512, 546]]], {"q": "4YN0-PUH5dSHxFaPQPMmYQTwTpk", "t": {"bpc": false, "tlw": false}}], "suggests": ["sutter women's health san francisco", "sutter women's health center san francisco", "Ucsf Women's Health Obstetrics: Chen Joyce D MD, Sutter Street, San Francisco, CA", "UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", "sutter health san francisco locations", "sutter health san francisco address", "sutter health san francisco phone number", "sutter health san francisco jobs", "sutter health women's health san francisco", "sutter health women's center san mateo"], "self_loops": [0], "tags": {"q": "4YN0-PUH5dSHxFaPQPMmYQTwTpk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "myriad women's health san francisco", "datetime": "2026-03-12 19:38:29.050731", "source": "google", "data": ["myriad women's health san francisco", [["myriad women's health san francisco", 0, [22, 30]], ["myriad women's health south san francisco", 0, [22, 30]], ["myriad women's health fax number", 0, [751]], ["myriad women\u2019s health inc", 0, [751]], ["myriad women's health contact", 0, [751]], ["myriad women's health phone number", 0, [751]]], {"i": "myriad women's health san francisco", "q": "v5cay1G3WetA1Bz52wZDorkcorc", "t": {"bpc": false, "tlw": false}}], "suggests": ["myriad women's health san francisco", "myriad women's health south san francisco", "myriad women's health fax number", "myriad women\u2019s health inc", "myriad women's health contact", "myriad women's health phone number"], "self_loops": [0], "tags": {"i": "myriad women's health san francisco", "q": "v5cay1G3WetA1Bz52wZDorkcorc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic near me", "datetime": "2026-03-12 19:38:29.859579", "source": "google", "data": ["free women's clinic near me", [["free women's clinic near me", 0, [512]], ["free women's clinic near me no insurance", 0, [512]], ["free women's clinic near me within 5 mi", 0, [512]], ["free women's clinic near me open now", 0, [512]], ["free women's clinic near me walk in", 0, [22, 30]], ["free women's clinic near me within 1 mi", 0, [22, 30]], ["free women's clinic near mesquite tx", 0, [22, 30]], ["free obgyn clinic near me", 0, [22, 30]], ["free female clinic near me", 0, [22, 30]], ["free women's center near me", 0, [22, 30]]], {"i": "free women's clinic near me", "q": "fzPGqEPPFPmOlvpeWICr_wii-1Q", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free women's clinic near me", "free women's clinic near me no insurance", "free women's clinic near me within 5 mi", "free women's clinic near me open now", "free women's clinic near me walk in", "free women's clinic near me within 1 mi", "free women's clinic near mesquite tx", "free obgyn clinic near me", "free female clinic near me", "free women's center near me"], "self_loops": [0], "tags": {"i": "free women's clinic near me", "q": "fzPGqEPPFPmOlvpeWICr_wii-1Q", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic near me no insurance", "datetime": "2026-03-12 19:38:30.833003", "source": "google", "data": ["free women's clinic near me no insurance", [["free women's clinic near me no insurance", 0, [512]], ["free obgyn clinics near me no insurance", 0, [22, 30]], ["free clinics near me no insurance for pregnant woman", 0, [22, 30]], ["women's clinic near me no insurance", 0, [512, 390, 650]], ["no insurance needed clinic near me", 0, [512, 390, 650]], ["are free clinics really free", 0, [512, 390, 650]], ["free women's clinics near me", 0, [512, 546]]], {"i": "free women's clinic near me no insurance", "q": "gZDtZrPZ_TRqZc3OiH_uGYkQJxs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free women's clinic near me no insurance", "free obgyn clinics near me no insurance", "free clinics near me no insurance for pregnant woman", "women's clinic near me no insurance", "no insurance needed clinic near me", "are free clinics really free", "free women's clinics near me"], "self_loops": [0], "tags": {"i": "free women's clinic near me no insurance", "q": "gZDtZrPZ_TRqZc3OiH_uGYkQJxs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic near me open now", "datetime": "2026-03-12 19:38:32.198759", "source": "google", "data": ["free women's clinic near me open now", [["free women's clinic near me open now", 0, [512]], ["free obgyn clinic near me open now", 0, [22, 30]], ["free women's health clinic near me open now", 0, [22, 30]], ["free obgyn walk in clinic near me open now", 0, [22, 30]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["women's clinic near me no insurance", 0, [512, 390, 650]], ["free walk in women's clinic near me", 0, [512, 390, 650]], ["women's clinic open near me", 0, [512, 390, 650]], ["free women's clinic near me", 0, [512, 546]]], {"i": "free women's clinic near me open now", "q": "oA_bzGkjxQwM7asWNFbAiaiKML0", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's clinic near me open now", "free obgyn clinic near me open now", "free women's health clinic near me open now", "free obgyn walk in clinic near me open now", "free women's clinic near me no insurance", "women's clinic near me no insurance", "free walk in women's clinic near me", "women's clinic open near me", "free women's clinic near me"], "self_loops": [0], "tags": {"i": "free women's clinic near me open now", "q": "oA_bzGkjxQwM7asWNFbAiaiKML0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic near me within 5 mi", "datetime": "2026-03-12 19:38:33.592753", "source": "google", "data": ["free women's clinic near me within 5 mi", [["free women's clinic near me within 5 mi", 0, [512]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["free walk in women's clinic near me", 0, [512, 390, 650]], ["women's clinic near me no insurance", 0, [512, 390, 650]], ["free women's clinics near me", 0, [512, 390, 650]], ["low cost women's clinic near me", 0, [512, 390, 650]], ["free women's medical clinic", 0, [751]], ["free women's clinic minneapolis", 0, [751]]], {"i": "free women's clinic near me within 5 mi", "q": "mrDUh-6oLFr-YWNDRZkyFcBCxY4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free women's clinic near me within 5 mi", "free women's clinic near me no insurance", "free walk in women's clinic near me", "women's clinic near me no insurance", "free women's clinics near me", "low cost women's clinic near me", "free women's medical clinic", "free women's clinic minneapolis"], "self_loops": [0], "tags": {"i": "free women's clinic near me within 5 mi", "q": "mrDUh-6oLFr-YWNDRZkyFcBCxY4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's pregnancy center near me", "datetime": "2026-03-12 19:38:34.810317", "source": "google", "data": ["free women's pregnancy center near me", [["free women's pregnancy center near me", 0, [22, 30]], ["free women's pregnancy clinic near me", 0, [22, 30]], ["free women's center near me", 0, [22, 30]], ["free women's clinic near me", 0, [22, 30]], ["free women's clinic near me no insurance", 0, [22, 30]], ["free women's clinic near me open now", 0, [22, 30]], ["free women's clinic near me within 5 mi", 0, [22, 30]], ["free women's clinic near me walk in", 0, [22, 30]], ["free women's clinic near me within 1 mi", 0, [22, 30]], ["free women's clinic near mesquite tx", 0, [22, 30]]], {"i": "free women's pregnancy center near me", "q": "f3B64kl1t8U7LFfZOnStaPlI3Vs", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's pregnancy center near me", "free women's pregnancy clinic near me", "free women's center near me", "free women's clinic near me", "free women's clinic near me no insurance", "free women's clinic near me open now", "free women's clinic near me within 5 mi", "free women's clinic near me walk in", "free women's clinic near me within 1 mi", "free women's clinic near mesquite tx"], "self_loops": [0], "tags": {"i": "free women's pregnancy center near me", "q": "f3B64kl1t8U7LFfZOnStaPlI3Vs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic near me within 1 mi", "datetime": "2026-03-12 19:38:36.354392", "source": "google", "data": ["free women's clinic near me within 1 mi", [["free women's clinic near me within 1 mi", 0, [22, 30]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["free walk in women's clinic near me", 0, [512, 390, 650]], ["free women's clinics near me", 0, [512, 390, 650]], ["women's clinic near me no insurance", 0, [512, 390, 650]], ["low cost women's clinic near me", 0, [512, 390, 650]], ["free women's medical clinic", 0, [751]]], {"i": "free women's clinic near me within 1 mi", "q": "Jle8WN7u_Jkh9tfDWRJszHeDHcE", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's clinic near me within 1 mi", "free women's clinic near me no insurance", "free walk in women's clinic near me", "free women's clinics near me", "women's clinic near me no insurance", "low cost women's clinic near me", "free women's medical clinic"], "self_loops": [0], "tags": {"i": "free women's clinic near me within 1 mi", "q": "Jle8WN7u_Jkh9tfDWRJszHeDHcE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic near mesquite tx", "datetime": "2026-03-12 19:38:37.418569", "source": "google", "data": ["free women's clinic near mesquite tx", [["free women's clinic near mesquite tx", 0, [22, 30]], ["women's clinic mesquite tx", 0, [512, 546]], ["women's clinic mesquite nevada", 0, [751]], ["women's clinic mesquite", 0, [512, 546]]], {"i": "free women's clinic near mesquite tx", "q": "XZo1vyFl46HgJxIT-CYoLNd7UB4", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's clinic near mesquite tx", "women's clinic mesquite tx", "women's clinic mesquite nevada", "women's clinic mesquite"], "self_loops": [0], "tags": {"i": "free women's clinic near mesquite tx", "q": "XZo1vyFl46HgJxIT-CYoLNd7UB4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's services near me", "datetime": "2026-03-12 19:38:38.359461", "source": "google", "data": ["free women's services near me", [["free women's services near me", 0, [512]], ["free women's health services near me", 0, [22, 10, 30]], ["free female handyman services near me", 0, [22, 30]], ["free services for pregnant women near me", 0, [22, 30]], ["free women's clinics near me", 0, [512, 390, 650]], ["free women's center near me", 0, [512, 390, 650]], ["free female clinic near me", 0, [512, 390, 650]]], {"i": "free women's services near me", "q": "ztq1alsKQyw-Jai66l0grLWNM7c", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's services near me", "free women's health services near me", "free female handyman services near me", "free services for pregnant women near me", "free women's clinics near me", "free women's center near me", "free female clinic near me"], "self_loops": [0], "tags": {"i": "free women's services near me", "q": "ztq1alsKQyw-Jai66l0grLWNM7c", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinics near me no insurance", "datetime": "2026-03-12 19:38:39.849865", "source": "google", "data": ["free women's clinics near me no insurance", [["free women's clinics near me no insurance", 0, [22, 30]], ["free clinics near me no insurance for pregnant woman", 0, [22, 30]], ["women's clinic near me no insurance", 0, [512, 390, 650]], ["list of free clinics near me", 0, [512, 390, 650]], ["no insurance needed clinic near me", 0, [512, 390, 650]], ["are free clinics really free", 0, [512, 390, 650]], ["free women's clinics near me", 0, [512, 546]]], {"i": "free women's clinics near me no insurance", "q": "YQUummbyLOLc-FlrDLZ29qCrPS4", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's clinics near me no insurance", "free clinics near me no insurance for pregnant woman", "women's clinic near me no insurance", "list of free clinics near me", "no insurance needed clinic near me", "are free clinics really free", "free women's clinics near me"], "self_loops": [0], "tags": {"i": "free women's clinics near me no insurance", "q": "YQUummbyLOLc-FlrDLZ29qCrPS4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free gynecologist clinics near me", "datetime": "2026-03-12 19:38:40.944122", "source": "google", "data": ["free gynecologist clinics near me", [["free gynecologist clinics near me", 0, [22, 30]], ["free gyn clinics near me", 0, [22, 30]], ["free gynecology clinic near me", 0, [22, 30]], ["free obgyn clinics near me", 0, [22, 30]], ["free obgyn clinics near me no insurance", 0, [22, 30]], ["free obgyn clinic near me open now", 0, [22, 30]], ["women's free clinic near me", 0, [22, 10, 30]], ["free women's health clinics near me", 0, [22, 10, 30]], ["free obgyn walk in clinic near me", 0, [22, 30]], ["free obgyn walk in clinic near me open now", 0, [22, 30]]], {"i": "free gynecologist clinics near me", "q": "kDEmxmuf4CmLUauR4nmcqUNV3rQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["free gynecologist clinics near me", "free gyn clinics near me", "free gynecology clinic near me", "free obgyn clinics near me", "free obgyn clinics near me no insurance", "free obgyn clinic near me open now", "women's free clinic near me", "free women's health clinics near me", "free obgyn walk in clinic near me", "free obgyn walk in clinic near me open now"], "self_loops": [0], "tags": {"i": "free gynecologist clinics near me", "q": "kDEmxmuf4CmLUauR4nmcqUNV3rQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free female clinic near me", "datetime": "2026-03-12 19:38:42.193265", "source": "google", "data": ["free female clinic near me", [["free female clinic near me", 0, [512]], ["free women's clinic near me", 0, [22, 30]], ["free women's clinic near me no insurance", 0, [22, 30]], ["free women's clinic near me open now", 0, [22, 30]], ["free women's clinic near me within 5 mi", 0, [22, 30]], ["free women's clinic near me walk in", 0, [22, 30]], ["free women's clinic near me within 1 mi", 0, [22, 30]], ["free women's clinic near mesquite tx", 0, [22, 30]], ["free women's center near me", 0, [22, 30]], ["free women's doctor near me", 0, [22, 10, 30]]], {"i": "free female clinic near me", "q": "-NQqfr2rngXaafXGLvqaLsnVNJQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free female clinic near me", "free women's clinic near me", "free women's clinic near me no insurance", "free women's clinic near me open now", "free women's clinic near me within 5 mi", "free women's clinic near me walk in", "free women's clinic near me within 1 mi", "free women's clinic near mesquite tx", "free women's center near me", "free women's doctor near me"], "self_loops": [0], "tags": {"i": "free female clinic near me", "q": "-NQqfr2rngXaafXGLvqaLsnVNJQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are free clinics free", "datetime": "2026-03-12 19:38:43.371310", "source": "google", "data": ["are free clinics free", [["are free clinics free", 0, [512]], ["are free clinics actually free", 0, [22, 30]], ["is hassle free clinic free", 0, [22, 30]], ["are free clinics really free", 0, [512, 390, 650]], ["can you go to a free clinic without insurance", 0, [512, 390, 650]], ["are free clinics good", 0, [512, 546]], ["are free clinics subject to hipaa", 0, [751]], ["are clinics free", 0, [512, 546]]], {"i": "are free clinics free", "q": "Nb4UXYp2IBF7XIB07cMaKxPD-Ak", "t": {"bpc": false, "tlw": false}}], "suggests": ["are free clinics free", "are free clinics actually free", "is hassle free clinic free", "are free clinics really free", "can you go to a free clinic without insurance", "are free clinics good", "are free clinics subject to hipaa", "are clinics free"], "self_loops": [0], "tags": {"i": "are free clinics free", "q": "Nb4UXYp2IBF7XIB07cMaKxPD-Ak", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can you go to a free clinic without insurance", "datetime": "2026-03-12 19:38:44.605447", "source": "google", "data": ["can you go to a free clinic without insurance", [["can you go to a free clinic without insurance", 0, [512]], ["can you go to a free clinic if you have insurance", 0, [22, 30]], ["can i go to a clinic without insurance", 0, [512, 390, 650]], ["can i go to a walk in clinic without insurance", 0, [512, 390, 650]]], {"i": "can you go to a free clinic without insurance", "q": "NlyeUvaRpfxtbp5HWZjhBNRGwQA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["can you go to a free clinic without insurance", "can you go to a free clinic if you have insurance", "can i go to a clinic without insurance", "can i go to a walk in clinic without insurance"], "self_loops": [0], "tags": {"i": "can you go to a free clinic without insurance", "q": "NlyeUvaRpfxtbp5HWZjhBNRGwQA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are free clinics good", "datetime": "2026-03-12 19:38:45.598255", "source": "google", "data": ["are free clinics good", [["are free clinics good", 0, [512]], ["are free clinics really free", 0, [512, 390, 650]], ["can you go to a free clinic without insurance", 0, [512, 390, 650]], ["are free clinics actually free", 0, [512, 546]], ["are clinics free", 0, [512, 546]], ["are health clinics free", 0, [512, 546]]], {"i": "are free clinics good", "q": "K2_-cYgnvvSGVQ7PylD7DA9z_Fw", "t": {"bpc": false, "tlw": false}}], "suggests": ["are free clinics good", "are free clinics really free", "can you go to a free clinic without insurance", "are free clinics actually free", "are clinics free", "are health clinics free"], "self_loops": [0], "tags": {"i": "are free clinics good", "q": "K2_-cYgnvvSGVQ7PylD7DA9z_Fw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are free clinics actually free", "datetime": "2026-03-12 19:38:46.774961", "source": "google", "data": ["are free clinics actually free", [["are free clinics actually free", 0, [512]], ["are free clinics free", 0, [22, 30]], ["are free clinics really free", 0, [512, 390, 650]], ["can you go to a free clinic without insurance", 0, [512, 390, 650]], ["are free clinics good", 0, [512, 546]], ["are clinics free", 0, [512, 546]], ["are free clinics subject to hipaa", 0, [751]]], {"i": "are free clinics actually free", "q": "JfutuyeGVuE6aMPpDShjX-C03FU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["are free clinics actually free", "are free clinics free", "are free clinics really free", "can you go to a free clinic without insurance", "are free clinics good", "are clinics free", "are free clinics subject to hipaa"], "self_loops": [0], "tags": {"i": "are free clinics actually free", "q": "JfutuyeGVuE6aMPpDShjX-C03FU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are clinics free", "datetime": "2026-03-12 19:38:48.126571", "source": "google", "data": ["are clinics free", [["are clinics free", 0, [512]], ["are clinics free in south africa", 0, [512]], ["are hospitals free", 0, [22, 30]], ["are methadone clinics free", 0, [22, 30]], ["are health clinics free", 0, [22, 30]], ["are legal clinics free", 0, [22, 30]], ["are dental clinics free", 0, [22, 30]], ["are medical clinics free", 0, [22, 30]], ["are vaccine clinics free", 0, [22, 30]], ["are tax clinics free", 0, [22, 30]]], {"i": "are clinics free", "q": "9z4mJ26czAzY-h1GRcGRyhmeeLI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["are clinics free", "are clinics free in south africa", "are hospitals free", "are methadone clinics free", "are health clinics free", "are legal clinics free", "are dental clinics free", "are medical clinics free", "are vaccine clinics free", "are tax clinics free"], "self_loops": [0], "tags": {"i": "are clinics free", "q": "9z4mJ26czAzY-h1GRcGRyhmeeLI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's health clinic near me open now", "datetime": "2026-03-12 19:38:49.391881", "source": "google", "data": ["free women's health clinic near me open now", [["free women's health clinic near me open now", 0, [22, 30]], ["free obgyn clinic near me open now", 0, [22, 30]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["free women's health clinics near me", 0, [512, 390, 650]], ["list of free clinics near me", 0, [512, 390, 650]], ["free women's health center near me", 0, [546, 649]], ["free women's health near me", 0, [512, 546]], ["free women's health services near me", 0, [512, 546]]], {"i": "free women's health clinic near me open now", "q": "aOMp1lNds-iI-qK03kaaH0_NFNM", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's health clinic near me open now", "free obgyn clinic near me open now", "free women's clinic near me no insurance", "free women's health clinics near me", "list of free clinics near me", "free women's health center near me", "free women's health near me", "free women's health services near me"], "self_loops": [0], "tags": {"i": "free women's health clinic near me open now", "q": "aOMp1lNds-iI-qK03kaaH0_NFNM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's health services near me", "datetime": "2026-03-12 19:38:50.321124", "source": "google", "data": ["free women's health services near me", [["free women's health services near me", 0, [512]], ["free women's health clinic near me", 0, [22, 30]], ["free women's health care near me", 0, [22, 30]], ["free women's health center near me", 0, [22, 10, 30]], ["free women's health clinic near me open now", 0, [22, 30]], ["free women's care near me", 0, [22, 30]], ["free women's health clinic melbourne", 0, [22, 30]], ["free women's care clinic near me", 0, [22, 10, 30]], ["free women's care center near me", 0, [22, 10, 30]], ["free women's clinic near me no insurance", 0, [512, 390, 650]]], {"i": "free women's health services near me", "q": "9FhpIshldQUbgdozAtUyCkCWNzo", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's health services near me", "free women's health clinic near me", "free women's health care near me", "free women's health center near me", "free women's health clinic near me open now", "free women's care near me", "free women's health clinic melbourne", "free women's care clinic near me", "free women's care center near me", "free women's clinic near me no insurance"], "self_loops": [0], "tags": {"i": "free women's health services near me", "q": "9FhpIshldQUbgdozAtUyCkCWNzo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's care clinic near me", "datetime": "2026-03-12 19:38:51.501141", "source": "google", "data": ["free women's care clinic near me", [["free women's care clinic near me", 0, [22, 30]], ["free women's health clinic near me", 0, [22, 30]], ["free women's health clinic near me open now", 0, [22, 30]], ["free women's health clinic melbourne", 0, [22, 30]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["free women's clinics near me", 0, [512, 390, 650]], ["free walk in women's clinic near me", 0, [512, 390, 650]], ["list of free clinics near me", 0, [512, 390, 650]], ["free women's care near me", 0, [512, 546]], ["free women's health care clinics near me", 0, [546, 649]]], {"i": "free women's care clinic near me", "q": "dJ0pi7sy7uYD5lM8DUG_2kRAMgA", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's care clinic near me", "free women's health clinic near me", "free women's health clinic near me open now", "free women's health clinic melbourne", "free women's clinic near me no insurance", "free women's clinics near me", "free walk in women's clinic near me", "list of free clinics near me", "free women's care near me", "free women's health care clinics near me"], "self_loops": [0], "tags": {"i": "free women's care clinic near me", "q": "dJ0pi7sy7uYD5lM8DUG_2kRAMgA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's health clinic melbourne", "datetime": "2026-03-12 19:38:52.681821", "source": "google", "data": ["free women's health clinic melbourne", [["free women's health clinic melbourne", 0, [512]], ["free women's health clinics near me", 0, [512, 390, 650]], ["free women's pregnancy clinic near me", 0, [512, 390, 650]], ["free women's clinics near me", 0, [512, 390, 650]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["women's health clinic melbourne cbd", 0, [546, 649]], ["free women's medical clinic", 0, [751]], ["women's health clinic melbourne bulk bill", 0, [512, 546]], ["women's clinic melbourne fl", 0, [546, 649]], ["melbourne women's center", 0, [512, 546]]], {"i": "free women's health clinic melbourne", "q": "ixVigezjYL7u8uEkrW9dnn_c3ps", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's health clinic melbourne", "free women's health clinics near me", "free women's pregnancy clinic near me", "free women's clinics near me", "free women's clinic near me no insurance", "women's health clinic melbourne cbd", "free women's medical clinic", "women's health clinic melbourne bulk bill", "women's clinic melbourne fl", "melbourne women's center"], "self_loops": [0], "tags": {"i": "free women's health clinic melbourne", "q": "ixVigezjYL7u8uEkrW9dnn_c3ps", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "list of free clinics near me", "datetime": "2026-03-12 19:38:53.559975", "source": "google", "data": ["list of free clinics near me", [["list of free clinics near me", 0, [512]], ["clinics free near me", 0, [512, 390, 650]], ["list of clinics near me", 0, [512, 546]], ["local free clinics near me", 0, [512, 546]]], {"i": "list of free clinics near me", "q": "u3jAcMG_JrDSU4dQaoT2cqGbmjc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["list of free clinics near me", "clinics free near me", "list of clinics near me", "local free clinics near me"], "self_loops": [0], "tags": {"i": "list of free clinics near me", "q": "u3jAcMG_JrDSU4dQaoT2cqGbmjc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's health center near me", "datetime": "2026-03-12 19:38:54.848175", "source": "google", "data": ["free women's health center near me", [["free women's health center near me", 0, [22, 30]], ["free women's health clinic near me", 0, [22, 30]], ["free women's health care near me", 0, [22, 30]], ["free women's health services near me", 0, [22, 10, 30]], ["free women's health clinic near me open now", 0, [22, 30]], ["free women's care center near me", 0, [22, 10, 30]], ["free women's clinics near me", 0, [22, 10, 30]], ["free women's care near me", 0, [22, 30]], ["free women's clinics near me no insurance", 0, [22, 30]], ["free women's health clinic melbourne", 0, [22, 30]]], {"i": "free women's health center near me", "q": "Q_Ii1QUFcGG8nSFRghPZAFGB3aA", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's health center near me", "free women's health clinic near me", "free women's health care near me", "free women's health services near me", "free women's health clinic near me open now", "free women's care center near me", "free women's clinics near me", "free women's care near me", "free women's clinics near me no insurance", "free women's health clinic melbourne"], "self_loops": [0], "tags": {"i": "free women's health center near me", "q": "Q_Ii1QUFcGG8nSFRghPZAFGB3aA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's health care clinics near me", "datetime": "2026-03-12 19:38:55.871700", "source": "google", "data": ["free women's health care clinics near me", [["free women's health care clinics near me", 0, [22, 30]], ["women's health free clinic near me", 0, [512, 390, 650]], ["list of free clinics near me", 0, [512, 390, 650]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["are free clinics really free", 0, [512, 390, 650]], ["free women's health care near me", 0, [512, 546]], ["free women's health center near me", 0, [546, 649]]], {"i": "free women's health care clinics near me", "q": "wKF_I0mGDfyaYOw6Mufm3Rur6oY", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's health care clinics near me", "women's health free clinic near me", "list of free clinics near me", "free women's clinic near me no insurance", "are free clinics really free", "free women's health care near me", "free women's health center near me"], "self_loops": [0], "tags": {"i": "free women's health care clinics near me", "q": "wKF_I0mGDfyaYOw6Mufm3Rur6oY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "obgyn free clinic san diego", "datetime": "2026-03-12 19:38:57.070122", "source": "google", "data": ["obgyn free clinic san diego", [["obgyn free clinic san diego", 0, [22, 30]], ["ob gyn free clinic near me", 0, [512, 390, 650]], ["obgyn near me free consultation", 0, [512, 390, 650]], ["how much does obgyn cost without insurance", 0, [512, 390, 650]], ["where to see a gynecologist for free", 0, [512, 390, 650]], ["obgyn clinic san diego", 0, [751]], ["san diego free clinics", 0, [512, 546]]], {"i": "obgyn free clinic san diego", "q": "97EgzGP2kZXrhkJ7g6-1oKm1WvQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["obgyn free clinic san diego", "ob gyn free clinic near me", "obgyn near me free consultation", "how much does obgyn cost without insurance", "where to see a gynecologist for free", "obgyn clinic san diego", "san diego free clinics"], "self_loops": [0], "tags": {"i": "obgyn free clinic san diego", "q": "97EgzGP2kZXrhkJ7g6-1oKm1WvQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's health clinic san antonio", "datetime": "2026-03-12 19:38:58.549145", "source": "google", "data": ["free women's health clinic san antonio", [["free women's health clinic san antonio", 0, [512]], ["free women's health clinics near me", 0, [512, 390, 650]], ["are free clinics really free", 0, [512, 390, 650]], ["free women's clinics near me", 0, [512, 390, 650]], ["free women's clinic san antonio", 0, [512, 546]], ["free women's health clinic austin tx", 0, [751]], ["women's health clinic san antonio tx", 0, [546, 649]]], {"i": "free women's health clinic san antonio", "q": "H7atTt0TiPBdEP_cJ8m79QFCcGk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free women's health clinic san antonio", "free women's health clinics near me", "are free clinics really free", "free women's clinics near me", "free women's clinic san antonio", "free women's health clinic austin tx", "women's health clinic san antonio tx"], "self_loops": [0], "tags": {"i": "free women's health clinic san antonio", "q": "H7atTt0TiPBdEP_cJ8m79QFCcGk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free walk in women's clinic near me", "datetime": "2026-03-12 19:38:59.830546", "source": "google", "data": ["free walk in women's clinic near me", [["free walk in women's clinic near me", 0, [512]], ["walk-in women's clinic near me", 0, [512, 390, 650]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["free walk in clinic near me open now", 0, [512, 390, 650]]], {"i": "free walk in women's clinic near me", "q": "yoPaFi8J8bva82sOEu_JEMWqxwM", "t": {"bpc": false, "tlw": false}}], "suggests": ["free walk in women's clinic near me", "walk-in women's clinic near me", "free women's clinic near me no insurance", "free walk in clinic near me open now"], "self_loops": [0], "tags": {"i": "free walk in women's clinic near me", "q": "yoPaFi8J8bva82sOEu_JEMWqxwM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "sacramento women's clinic", "datetime": "2026-03-12 19:39:01.019545", "source": "google", "data": ["sacramento women's clinic", [["sacramento women's clinic", 0, [22, 30]], ["sacramento women's health center", 0, [22, 30]], ["sacramento women's health clinic", 0, [22, 30]], ["sacramento street medicine women's clinic", 0, [22, 10, 30]], ["sacramento women's center", 0, [751]], ["sacramento women's health", 0, [512, 546]]], {"i": "sacramento women's clinic", "q": "02JARaMUXbAoMrEZeJuKgftqv3Q", "t": {"bpc": false, "tlw": false}}], "suggests": ["sacramento women's clinic", "sacramento women's health center", "sacramento women's health clinic", "sacramento street medicine women's clinic", "sacramento women's center", "sacramento women's health"], "self_loops": [0], "tags": {"i": "sacramento women's clinic", "q": "02JARaMUXbAoMrEZeJuKgftqv3Q", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic austin", "datetime": "2026-03-12 19:39:02.142534", "source": "google", "data": ["free women's clinic austin", [["free women's clinic austin", 0, [512]], ["free women's clinic austin tx", 0, [22, 30]], ["free women's health clinic austin tx", 0, [751]], ["women's clinic austin texas", 0, [751]], ["free women's clinic - houston", 0, [751]], ["women's clinic austin tx", 0, [512, 546]]], {"i": "free women's clinic austin", "q": "oBLbEcEkUua9AkHi_pSs3uLLHnE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free women's clinic austin", "free women's clinic austin tx", "free women's health clinic austin tx", "women's clinic austin texas", "free women's clinic - houston", "women's clinic austin tx"], "self_loops": [0], "tags": {"i": "free women's clinic austin", "q": "oBLbEcEkUua9AkHi_pSs3uLLHnE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic san bernardino california", "datetime": "2026-03-12 19:39:03.147057", "source": "google", "data": ["free women's clinic san bernardino california", [["free women's clinic san bernardino california free", 33, [160], {"a": "free women's clinic san bernardino ", "b": "california free"}], ["free women's clinic san bernardino california 2024", 33, [160], {"a": "free women's clinic san bernardino ", "b": "california 2024"}], ["free women's clinic san bernardino california 2023", 33, [160], {"a": "free women's clinic san bernardino ", "b": "california 2023"}], ["free women's clinic san bernardino california free clinic", 33, [160], {"a": "free women's clinic san bernardino ", "b": "california free clinic"}], ["free women's clinic san bernardino california 92407", 33, [160], {"a": "free women's clinic san bernardino ", "b": "california 92407"}], ["free women's clinic san bernardino california", 33, [299], {"a": "free women's clinic san bernardino ", "b": "california"}], ["free women's clinic san bernardino ca", 33, [671], {"a": "free women's clinic san bernardino ", "b": "ca"}]], {"i": "free women's clinic san bernardino california", "q": "vObHUnIyy3tQ-kf12HCRJT8NZrg", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's clinic san bernardino california free", "free women's clinic san bernardino california 2024", "free women's clinic san bernardino california 2023", "free women's clinic san bernardino california free clinic", "free women's clinic san bernardino california 92407", "free women's clinic san bernardino california", "free women's clinic san bernardino ca"], "self_loops": [5], "tags": {"i": "free women's clinic san bernardino california", "q": "vObHUnIyy3tQ-kf12HCRJT8NZrg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic san bernardino ca 92407", "datetime": "2026-03-12 19:39:04.518002", "source": "google", "data": ["free women's clinic san bernardino ca 92407", [["free women's clinic san bernardino ca 92407 zip", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "92407 zip"}], ["free women's clinic san bernardino ca 92407 free", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "92407 free"}], ["free women's clinic san bernardino ca 92407 area", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "92407 area"}], ["free women's clinic san bernardino ca 92407 united", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "92407 united"}], ["free women's clinic san bernardino ca 92407 ca", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "92407 ca"}], ["free women's clinic san bernardino ca 92407", 33, [299], {"a": "free women's clinic san bernardino ca ", "b": "92407"}]], {"i": "free women's clinic san bernardino ca 92407", "q": "-c-4SVS3wc3uiX2bvsjXrmnBFuk", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's clinic san bernardino ca 92407 zip", "free women's clinic san bernardino ca 92407 free", "free women's clinic san bernardino ca 92407 area", "free women's clinic san bernardino ca 92407 united", "free women's clinic san bernardino ca 92407 ca", "free women's clinic san bernardino ca 92407"], "self_loops": [5], "tags": {"i": "free women's clinic san bernardino ca 92407", "q": "-c-4SVS3wc3uiX2bvsjXrmnBFuk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic san bernardino ca 92404", "datetime": "2026-03-12 19:39:05.696408", "source": "google", "data": ["free women's clinic san bernardino ca 92404", [["free women's clinic san bernardino ca 92404 zip", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "92404 zip"}], ["free women's clinic san bernardino ca 92404 free", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "92404 free"}], ["free women's clinic san bernardino ca 92404 area", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "92404 area"}], ["free women's clinic san bernardino ca 92404 united", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "92404 united"}], ["free women's clinic san bernardino ca 92404 phone", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "92404 phone"}], ["free women's clinic san bernardino ca 92404", 33, [299], {"a": "free women's clinic san bernardino ca ", "b": "92404"}]], {"i": "free women's clinic san bernardino ca 92404", "q": "9t6n8CN3XKUm7GHpmfFzCtjRbWU", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's clinic san bernardino ca 92404 zip", "free women's clinic san bernardino ca 92404 free", "free women's clinic san bernardino ca 92404 area", "free women's clinic san bernardino ca 92404 united", "free women's clinic san bernardino ca 92404 phone", "free women's clinic san bernardino ca 92404"], "self_loops": [5], "tags": {"i": "free women's clinic san bernardino ca 92404", "q": "9t6n8CN3XKUm7GHpmfFzCtjRbWU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic san bernardino ca 2024", "datetime": "2026-03-12 19:39:06.670463", "source": "google", "data": ["free women's clinic san bernardino ca 2024", [["free women's clinic san bernardino ca 2024 schedule", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "2024 schedule"}], ["free women's clinic san bernardino ca 2024 free", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "2024 free"}], ["free women's clinic san bernardino ca 2024 free clinic", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "2024 free clinic"}], ["free women's clinic san bernardino ca 2024 dates", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "2024 dates"}], ["free women's clinic san bernardino ca 2024 application", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "2024 application"}]], {"i": "free women's clinic san bernardino ca 2024", "q": "04Zkl7nEvOTXegtaAiD3sOHDPN4", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's clinic san bernardino ca 2024 schedule", "free women's clinic san bernardino ca 2024 free", "free women's clinic san bernardino ca 2024 free clinic", "free women's clinic san bernardino ca 2024 dates", "free women's clinic san bernardino ca 2024 application"], "self_loops": [], "tags": {"i": "free women's clinic san bernardino ca 2024", "q": "04Zkl7nEvOTXegtaAiD3sOHDPN4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's clinic san bernardino ca area", "datetime": "2026-03-12 19:39:07.552663", "source": "google", "data": ["free women's clinic san bernardino ca area", [["free women's clinic san bernardino ca area free", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "area free"}], ["free women's clinic san bernardino ca area free clinic", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "area free clinic"}], ["free women's clinic san bernardino ca area 2024", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "area 2024"}], ["free women's clinic san bernardino ca area california", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "area california"}], ["free women's clinic san bernardino ca area code", 33, [160], {"a": "free women's clinic san bernardino ca ", "b": "area code"}]], {"i": "free women's clinic san bernardino ca area", "q": "HKYRUsi_eBiGuKjhAHLtXG3dWwA", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's clinic san bernardino ca area free", "free women's clinic san bernardino ca area free clinic", "free women's clinic san bernardino ca area 2024", "free women's clinic san bernardino ca area california", "free women's clinic san bernardino ca area code"], "self_loops": [], "tags": {"i": "free women's clinic san bernardino ca area", "q": "HKYRUsi_eBiGuKjhAHLtXG3dWwA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "Women's Community Clinic, Mission Street, San Francisco, California", "datetime": "2026-03-12 19:39:08.950645", "source": "google", "data": ["Women's Community Clinic, Mission Street, San Francisco, California", [["Women's Community Clinic, Mission Street, San Francisco, California", 38]], {"q": "AiiAFV7yzC69SAx030gtfyziG4g", "t": {"bpc": false, "tlw": false}}], "suggests": ["Women's Community Clinic, Mission Street, San Francisco, California"], "self_loops": [0], "tags": {"q": "AiiAFV7yzC69SAx030gtfyziG4g", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "mission community center san francisco", "datetime": "2026-03-12 19:39:10.282308", "source": "google", "data": ["mission community center san francisco", [["mission community center san francisco", 0, [22, 30]], ["mission recreation center san francisco", 0, [22, 30]], ["Filipino Community Center, Mission Street, San Francisco, CA", 38], ["Excelsior Community Center, Mission Street, San Francisco, CA", 38], ["Mission Recreation Center, Harrison Street, San Francisco, CA", 38], ["The Salvation Army Mission Corps Community Center, Valencia Street, Mission, San Francisco, CA", 38], ["BAAITS Community Center and Office, Valencia Street, Mission, San Francisco, CA", 38], ["mission bay community center", 0, [512, 546]], ["mission community music center", 0, [512, 546]], ["mission neighborhood centers san francisco", 0, [546, 649]]], {"q": "LtJUpCkcy6WQVaW-zSM6M7iyTko", "t": {"bpc": false, "tlw": false}}], "suggests": ["mission community center san francisco", "mission recreation center san francisco", "Filipino Community Center, Mission Street, San Francisco, CA", "Excelsior Community Center, Mission Street, San Francisco, CA", "Mission Recreation Center, Harrison Street, San Francisco, CA", "The Salvation Army Mission Corps Community Center, Valencia Street, Mission, San Francisco, CA", "BAAITS Community Center and Office, Valencia Street, Mission, San Francisco, CA", "mission bay community center", "mission community music center", "mission neighborhood centers san francisco"], "self_loops": [0], "tags": {"q": "LtJUpCkcy6WQVaW-zSM6M7iyTko", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "Women's Community Clinic, Mission Street, SF, CA", "datetime": "2026-03-12 19:39:11.239957", "source": "google", "data": ["Women's Community Clinic, Mission Street, SF, CA", [["Women's Community Clinic, Mission Street, SF, California", 38], ["women's community clinic san francisco", 0, [512, 546]], ["women's community clinic sf", 0, [512, 546]], ["women's community clinic", 0, [512, 546]], ["mission community center san francisco", 0, [546, 649]], ["women's clinic mission beach", 0, [751]]], {"q": "dK_TeoKjc2yR3LTaEbXx6IvHFkc", "t": {"bpc": false, "tlw": false}}], "suggests": ["Women's Community Clinic, Mission Street, SF, California", "women's community clinic san francisco", "women's community clinic sf", "women's community clinic", "mission community center san francisco", "women's clinic mission beach"], "self_loops": [], "tags": {"q": "dK_TeoKjc2yR3LTaEbXx6IvHFkc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's community clinic near me", "datetime": "2026-03-12 19:39:12.196241", "source": "google", "data": ["women's community clinic near me", [["women's community clinic near me", 0, [512]], ["women's community health center near me", 0, [22, 30]], ["women's health free clinic near me", 0, [512, 390, 650]], ["are community clinics free", 0, [512, 390, 650]], ["women's clinic near me without insurance", 0, [512, 390, 650]], ["women's health community clinics", 0, [751]]], {"i": "women's community clinic near me", "q": "2DkGly0iuOVEXKDbOXXq8Zqen1M", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's community clinic near me", "women's community health center near me", "women's health free clinic near me", "are community clinics free", "women's clinic near me without insurance", "women's health community clinics"], "self_loops": [0], "tags": {"i": "women's community clinic near me", "q": "2DkGly0iuOVEXKDbOXXq8Zqen1M", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "sf community clinic", "datetime": "2026-03-12 19:39:13.128880", "source": "google", "data": ["sf community clinic", [["sf community clinic consortium", 0, [512]], ["sf community clinic", 0, [512]], ["sf city clinic", 0, [22, 30]], ["sf city clinic hours", 0, [22, 30]], ["sf city clinic prep", 0, [22, 30]], ["san francisco community clinic springdale", 0, [22, 30]], ["san francisco community clinic consortium sfccc", 0, [22, 30]], ["sf city clinic jobs", 0, [22, 30]], ["sf city clinic mychart", 0, [22, 30]], ["sf city clinic volunteer", 0, [22, 30]]], {"q": "cLTeimCmoAk5SzwAeVMi7vn3T3A", "t": {"bpc": false, "tlw": false}}], "suggests": ["sf community clinic consortium", "sf community clinic", "sf city clinic", "sf city clinic hours", "sf city clinic prep", "san francisco community clinic springdale", "san francisco community clinic consortium sfccc", "sf city clinic jobs", "sf city clinic mychart", "sf city clinic volunteer"], "self_loops": [1], "tags": {"q": "cLTeimCmoAk5SzwAeVMi7vn3T3A", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic sf", "datetime": "2026-03-12 19:39:14.210469", "source": "google", "data": ["women's clinic sf", [["women's clinic sf", 0, [22, 30]], ["women's clinic sf general", 0, [22, 30]], ["women's clinic sfgh", 0, [22, 30]], ["women's health center sf", 0, [22, 30]], ["women's health center sfgh", 0, [22, 30]], ["women's community clinic sf", 0, [22, 30]], ["women's health clinic sf", 0, [22, 30]], ["women's clinic peterson afb", 0, [22, 10, 30]], ["Mission Bernal Women's Clinic, Valencia Street, SF, CA", 38], ["women's clinic san francisco", 0, [512, 546]]], {"q": "AICML-hoXvyQr-r8pK6TUkhwxQg", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic sf", "women's clinic sf general", "women's clinic sfgh", "women's health center sf", "women's health center sfgh", "women's community clinic sf", "women's health clinic sf", "women's clinic peterson afb", "Mission Bernal Women's Clinic, Valencia Street, SF, CA", "women's clinic san francisco"], "self_loops": [0], "tags": {"q": "AICML-hoXvyQr-r8pK6TUkhwxQg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's community clinic photos", "datetime": "2026-03-12 19:39:15.284146", "source": "google", "data": ["women's community clinic photos", [["women's community clinic photos", 0, [22, 30]], ["leichhardt women's community health centre photos", 0, [22, 30]], ["women's community clinic near me", 0, [512, 390, 650]], ["women's health community clinic", 0, [512, 546]]], {"i": "women's community clinic photos", "q": "IqyN5N3Sg-uZiBKvjgt4RcMXXnk", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's community clinic photos", "leichhardt women's community health centre photos", "women's community clinic near me", "women's health community clinic"], "self_loops": [0], "tags": {"i": "women's community clinic photos", "q": "IqyN5N3Sg-uZiBKvjgt4RcMXXnk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's community clinic reviews", "datetime": "2026-03-12 19:39:16.335654", "source": "google", "data": ["women's community clinic reviews", [["women's community clinic reviews", 0, [22, 30]], ["leichhardt women's community health centre reviews", 0, [22, 30]], ["women's community clinic near me", 0, [512, 390, 650]], ["women's health community clinic", 0, [512, 546]], ["women's clinic reviews", 0, [512, 546]]], {"i": "women's community clinic reviews", "q": "RINb9_FIetdVbeuM35G7CJUmDNo", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's community clinic reviews", "leichhardt women's community health centre reviews", "women's community clinic near me", "women's health community clinic", "women's clinic reviews"], "self_loops": [0], "tags": {"i": "women's community clinic reviews", "q": "RINb9_FIetdVbeuM35G7CJUmDNo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's community clinic a program of healthright 360", "datetime": "2026-03-12 19:39:17.692539", "source": "google", "data": ["women's community clinic a program of healthright 360", [["women's community clinic a program of healthright 360", 0, [22, 30]], ["women's community clinic near me", 0, [512, 390, 650]], ["women's health program-1350", 0, [751]], ["women's community health clinic", 0, [512, 546]]], {"i": "women's community clinic a program of healthright 360", "q": "gx6ACiOQk0hUOqfc8uWZ8HoDTx0", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's community clinic a program of healthright 360", "women's community clinic near me", "women's health program-1350", "women's community health clinic"], "self_loops": [0], "tags": {"i": "women's community clinic a program of healthright 360", "q": "gx6ACiOQk0hUOqfc8uWZ8HoDTx0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's community health center", "datetime": "2026-03-12 19:39:18.780533", "source": "google", "data": ["women's community health center", [["women's community health center", 0, [512]], ["women's community health center near me", 0, [22, 30]], ["women's community health clinic", 0, [22, 30]], ["women's community health services", 0, [22, 10, 30]], ["women's community health centre leichhardt", 0, [22, 30]], ["women's health community hospital", 0, [22, 30]], ["community women's health clinic tauranga", 0, [22, 30]], ["community women's health centre mile end", 0, [22, 10, 30]], ["community women's health clinic te puke", 0, [22, 30]], ["community women's health clinic papamoa", 0, [22, 30]]], {"i": "women's community health center", "q": "TSHAmdhkvEL_bq4NmY9CDs92de4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's community health center", "women's community health center near me", "women's community health clinic", "women's community health services", "women's community health centre leichhardt", "women's health community hospital", "community women's health clinic tauranga", "community women's health centre mile end", "community women's health clinic te puke", "community women's health clinic papamoa"], "self_loops": [0], "tags": {"i": "women's community health center", "q": "TSHAmdhkvEL_bq4NmY9CDs92de4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health community clinic", "datetime": "2026-03-12 19:39:19.939944", "source": "google", "data": ["women's health community clinic", [["women's health community clinic", 0, [512]], ["community women's health clinic tauranga", 0, [22, 30]], ["community women's health clinic te puke", 0, [22, 30]], ["community women's health clinic papamoa", 0, [22, 30]], ["community care women's health clinic", 0, [22, 30]], ["boulder community health women's clinic", 0, [22, 30]], ["bendigo community health women's clinic", 0, [22, 30]], ["women's health clinic helping the community meridian idaho", 0, [22, 30]], ["women's community clinic near me", 0, [512, 390, 650]], ["women's community health center near me", 0, [546, 649]]], {"i": "women's health community clinic", "q": "rgF0N6AM7ftLMbjJ_g_wVCYeAWY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's health community clinic", "community women's health clinic tauranga", "community women's health clinic te puke", "community women's health clinic papamoa", "community care women's health clinic", "boulder community health women's clinic", "bendigo community health women's clinic", "women's health clinic helping the community meridian idaho", "women's community clinic near me", "women's community health center near me"], "self_loops": [0], "tags": {"i": "women's health community clinic", "q": "rgF0N6AM7ftLMbjJ_g_wVCYeAWY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "community women's health clinic tauranga", "datetime": "2026-03-12 19:39:22.218448", "source": "google", "data": ["community women's health clinic tauranga", [["community women's health clinic tauranga", 0, [512]], ["women's community clinic near me", 0, [512, 390, 650]], ["community health centers women's health", 0, [546, 649]], ["community health women's care", 0, [512, 546]], ["community health women's clinic", 0, [512, 546]], ["community health women's", 0, [751]], ["community health women's center", 0, [512, 546]]], {"i": "community women's health clinic tauranga", "q": "FlaBf9Qd-au_OoVY3YLSYA8TJ8w", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["community women's health clinic tauranga", "women's community clinic near me", "community health centers women's health", "community health women's care", "community health women's clinic", "community health women's", "community health women's center"], "self_loops": [0], "tags": {"i": "community women's health clinic tauranga", "q": "FlaBf9Qd-au_OoVY3YLSYA8TJ8w", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "christ community women's clinic", "datetime": "2026-03-12 19:39:23.454038", "source": "google", "data": ["christ community women's clinic", [["christ community women's clinic", 0, [512]], ["christ community women's clinic jackson tn", 0, [22, 30]], ["christ community women's health center", 0, [22, 30]], ["christ community health services women's clinic", 0, [22, 30]], ["christ community women's health center jackson tn", 0, [22, 10, 30]], ["christ community women's center", 0, [546, 649]], ["christ community women's health", 0, [512, 546]], ["christ community broad women's clinic", 0, [751]]], {"i": "christ community women's clinic", "q": "3ahLmmRKBS1SAU87n8ApTuS0x0k", "t": {"bpc": false, "tlw": false}}], "suggests": ["christ community women's clinic", "christ community women's clinic jackson tn", "christ community women's health center", "christ community health services women's clinic", "christ community women's health center jackson tn", "christ community women's center", "christ community women's health", "christ community broad women's clinic"], "self_loops": [0], "tags": {"i": "christ community women's clinic", "q": "3ahLmmRKBS1SAU87n8ApTuS0x0k", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's hospital", "datetime": "2026-03-12 19:39:24.446403", "source": "google", "data": ["ucsf women's hospital", [["ucsf women's hospital", 0, [512]], ["ucsf medical center women's health", 0, [22, 30]], ["ucsf mission bay women's hospital", 0, [22, 30]], ["ucsf women's and children's hospital", 0, [22, 30]], ["ucsf betty irene moore women's hospital", 0, [22, 30]], ["UCSF Betty Irene Moore Women's Hospital, 4th Street, San Francisco, CA", 38], ["UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", 38], ["ucsf women's health center", 0, [512, 546]], ["ucsf women's health", 0, [512, 546]], ["ucsf women's health clinic", 0, [512, 546]]], {"q": "4tzufvPO4lLh5knZAMDYrWqRjZQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's hospital", "ucsf medical center women's health", "ucsf mission bay women's hospital", "ucsf women's and children's hospital", "ucsf betty irene moore women's hospital", "UCSF Betty Irene Moore Women's Hospital, 4th Street, San Francisco, CA", "UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", "ucsf women's health center", "ucsf women's health", "ucsf women's health clinic"], "self_loops": [0], "tags": {"q": "4tzufvPO4lLh5knZAMDYrWqRjZQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's health clinical research center", "datetime": "2026-03-12 19:39:25.837089", "source": "google", "data": ["ucsf women's health clinical research center", [["ucsf women's health clinical research center", 0, [22, 30]], ["ucsf women's health resource center", 0, [512, 546]], ["ucsf women's health center san francisco ca", 0, [512, 546]], ["ucsf women's health center", 0, [512, 546]], ["ucsf women's health clinic", 0, [512, 546]], ["ucsf women's resource center", 0, [512, 546]]], {"i": "ucsf women's health clinical research center", "q": "U-5Z4p6_6vHOSjXqtw8rA2bMSP8", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's health clinical research center", "ucsf women's health resource center", "ucsf women's health center san francisco ca", "ucsf women's health center", "ucsf women's health clinic", "ucsf women's resource center"], "self_loops": [0], "tags": {"i": "ucsf women's health clinical research center", "q": "U-5Z4p6_6vHOSjXqtw8rA2bMSP8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's specialty clinic", "datetime": "2026-03-12 19:39:26.730784", "source": "google", "data": ["ucsf women's specialty clinic", [["ucsf women's specialty clinic", 0, [22, 30]], ["ucsf women's clinic", 0, [512, 546]], ["ucsf women's center", 0, [512, 546]], ["ucsf women's health clinic", 0, [512, 546]], ["ucsf women's health", 0, [512, 546]], ["ucsf women's health center", 0, [512, 546]]], {"i": "ucsf women's specialty clinic", "q": "y82m4mxxYFbdcFHxXRqpnqLGu_Y", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's specialty clinic", "ucsf women's clinic", "ucsf women's center", "ucsf women's health clinic", "ucsf women's health", "ucsf women's health center"], "self_loops": [0], "tags": {"i": "ucsf women's specialty clinic", "q": "y82m4mxxYFbdcFHxXRqpnqLGu_Y", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's hiv clinic", "datetime": "2026-03-12 19:39:28.011010", "source": "google", "data": ["ucsf women's hiv clinic", [["ucsf women's hiv clinic", 0, [22, 30]], ["ucsf women's hiv program", 0, [512, 546]], ["ucsf hiv clinic", 0, [512, 546]], ["ucsf hiv hotline", 0, [512, 546]], ["ucsf hiv care", 0, [751]], ["ucsf hiv testing", 0, [751]]], {"i": "ucsf women's hiv clinic", "q": "Cfe9ltS7C3Y9Ynf9_scGq6D0Yl8", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's hiv clinic", "ucsf women's hiv program", "ucsf hiv clinic", "ucsf hiv hotline", "ucsf hiv care", "ucsf hiv testing"], "self_loops": [0], "tags": {"i": "ucsf women's hiv clinic", "q": "Cfe9ltS7C3Y9Ynf9_scGq6D0Yl8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf young women's clinic", "datetime": "2026-03-12 19:39:29.435275", "source": "google", "data": ["ucsf young women's clinic", [["ucsf young women's clinic", 0, [22, 30]], ["young women's program ucsf", 0, [751]], ["ucsf young adolescent clinic", 0, [751]], ["ucsf young adult clinic", 0, [512, 546]], ["ucsf women's clinic", 0, [512, 546]]], {"i": "ucsf young women's clinic", "q": "kRyxXg2tXGbWhkF897D2ivDCw-s", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf young women's clinic", "young women's program ucsf", "ucsf young adolescent clinic", "ucsf young adult clinic", "ucsf women's clinic"], "self_loops": [0], "tags": {"i": "ucsf young women's clinic", "q": "kRyxXg2tXGbWhkF897D2ivDCw-s", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's options clinic", "datetime": "2026-03-12 19:39:30.304555", "source": "google", "data": ["ucsf women's options clinic", [["ucsf women's options clinic", 0, [22, 30]], ["ucsf women's options center", 0, [512, 546]], ["ucsf women's options", 0, [751]], ["ucsf clinic women's options center", 0, [751]], ["ucsf women's clinic", 0, [512, 546]], ["ucsf women's health clinic", 0, [512, 546]]], {"i": "ucsf women's options clinic", "q": "dzGxCyBgKFnpa9zef8wssC9TOjw", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's options clinic", "ucsf women's options center", "ucsf women's options", "ucsf clinic women's options center", "ucsf women's clinic", "ucsf women's health clinic"], "self_loops": [0], "tags": {"i": "ucsf women's options clinic", "q": "dzGxCyBgKFnpa9zef8wssC9TOjw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's center for bladder and pelvic health", "datetime": "2026-03-12 19:39:31.730358", "source": "google", "data": ["ucsf women's center for bladder and pelvic health", [["ucsf women's center for bladder and pelvic health", 0, [512]], ["UCSF Women\u2019s Center for Bladder & Pelvic Health, Illinois Street, San Francisco, CA", 38], ["what is a women's pelvic floor", 0, [512, 390, 650]], ["does pelvic us show bladder", 0, [512, 390, 650]], ["how big is a women's bladder", 0, [512, 390, 650]], ["ucsf center for urogynecology and women's pelvic health", 0, [512, 546]], ["ucsf pelvic floor clinic", 0, [751]], ["ucsf pelvic health", 0, [546, 649]], ["ucsf women's urology", 0, [546, 649]], ["ucsf pelvic floor", 0, [546, 649]]], {"q": "knwKC8D_udYgQUoLTtmftEDvyK0", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's center for bladder and pelvic health", "UCSF Women\u2019s Center for Bladder & Pelvic Health, Illinois Street, San Francisco, CA", "what is a women's pelvic floor", "does pelvic us show bladder", "how big is a women's bladder", "ucsf center for urogynecology and women's pelvic health", "ucsf pelvic floor clinic", "ucsf pelvic health", "ucsf women's urology", "ucsf pelvic floor"], "self_loops": [0], "tags": {"q": "knwKC8D_udYgQUoLTtmftEDvyK0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's health center mount zion", "datetime": "2026-03-12 19:39:32.798336", "source": "google", "data": ["ucsf women's health center mount zion", [["ucsf women's health center mount zion", 0, [512]], ["ucsf women's health center mount zion reviews", 0, [512]], ["ucsf women's health center mount zion photos", 0, [22, 30]], ["ucsf women's health obstetrics and gynecology services mount zion", 0, [22, 30]], ["UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", 38], ["ucsf mount zion women's health clinic", 0, [546, 649]], ["ucsf women's health mt zion", 0, [512, 546]], ["ucsf mount zion gynecology", 0, [546, 649]]], {"q": "n58TmsiYwPEDjMJHUFczCzJ8lUU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["ucsf women's health center mount zion", "ucsf women's health center mount zion reviews", "ucsf women's health center mount zion photos", "ucsf women's health obstetrics and gynecology services mount zion", "UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", "ucsf mount zion women's health clinic", "ucsf women's health mt zion", "ucsf mount zion gynecology"], "self_loops": [0], "tags": {"q": "n58TmsiYwPEDjMJHUFczCzJ8lUU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's options center", "datetime": "2026-03-12 19:39:34.079998", "source": "google", "data": ["ucsf women's options center", [["ucsf women's options center", 0, [512]], ["ucsf women's options center photos", 0, [22, 30]], ["UCSF Women's Options Center, Sutter Street, San Francisco, CA", 38], ["ucsf women's options", 0, [751]], ["ucsf women's center", 0, [512, 546]], ["ucsf women's health center", 0, [512, 546]]], {"q": "FQJGqu-0lc8hwEq2jRFuWX2y-Wg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["ucsf women's options center", "ucsf women's options center photos", "UCSF Women's Options Center, Sutter Street, San Francisco, CA", "ucsf women's options", "ucsf women's center", "ucsf women's health center"], "self_loops": [0], "tags": {"q": "FQJGqu-0lc8hwEq2jRFuWX2y-Wg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's resource center", "datetime": "2026-03-12 19:39:35.353506", "source": "google", "data": ["ucsf women's resource center", [["ucsf women's resource center", 0, [512]], ["ucsf women's health resource center", 0, [22, 10, 30]], ["ucsf women's center", 0, [512, 546]], ["ucsf women's health center", 0, [512, 546]], ["ucsf women's hospital", 0, [512, 546]]], {"i": "ucsf women's resource center", "q": "wE343U5UZNV2cJ5kQ6ciqSYVblQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["ucsf women's resource center", "ucsf women's health resource center", "ucsf women's center", "ucsf women's health center", "ucsf women's hospital"], "self_loops": [0], "tags": {"i": "ucsf women's resource center", "q": "wE343U5UZNV2cJ5kQ6ciqSYVblQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's options center photos", "datetime": "2026-03-12 19:39:36.220028", "source": "google", "data": ["ucsf women's options center photos", [["ucsf women's options center photos", 0, [22, 30]], ["ucsf women's options center", 0, [512, 546]], ["ucsf women's center", 0, [512, 546]], ["ucsf women's health center", 0, [512, 546]], ["ucsf women's options", 0, [751]], ["ucsf women's health center san francisco ca", 0, [512, 546]]], {"i": "ucsf women's options center photos", "q": "oapb_n-26VZ8aNsHYF_LaXnYPaI", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's options center photos", "ucsf women's options center", "ucsf women's center", "ucsf women's health center", "ucsf women's options", "ucsf women's health center san francisco ca"], "self_loops": [0], "tags": {"i": "ucsf women's options center photos", "q": "oapb_n-26VZ8aNsHYF_LaXnYPaI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's cancer center", "datetime": "2026-03-12 19:39:37.141728", "source": "google", "data": ["ucsf women's cancer center", [["ucsf women's cancer center", 0, [22, 30]], ["ucsf women's center", 0, [512, 546]], ["ucsf women's health center", 0, [512, 546]], ["ucsf women's health center san francisco ca", 0, [512, 546]], ["ucsf women's clinic", 0, [512, 546]], ["ucsf women's health clinic", 0, [512, 546]]], {"i": "ucsf women's cancer center", "q": "qYrEcV5U69uOzFav7WGu8LjrseA", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's cancer center", "ucsf women's center", "ucsf women's health center", "ucsf women's health center san francisco ca", "ucsf women's clinic", "ucsf women's health clinic"], "self_loops": [0], "tags": {"i": "ucsf women's cancer center", "q": "qYrEcV5U69uOzFav7WGu8LjrseA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's health center mount zion reviews", "datetime": "2026-03-12 19:39:38.560259", "source": "google", "data": ["ucsf women's health center mount zion reviews", [["ucsf women's health center mount zion reviews", 0, [512]], ["ucsf women's health center mount zion", 0, [512, 546]], ["ucsf mount zion women's health clinic", 0, [546, 649]], ["ucsf women's health mt zion", 0, [512, 546]], ["ucsf mount zion gynecology", 0, [546, 649]]], {"i": "ucsf women's health center mount zion reviews", "q": "eTojc_FVxNbWP679CRX3k1b_1ls", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["ucsf women's health center mount zion reviews", "ucsf women's health center mount zion", "ucsf mount zion women's health clinic", "ucsf women's health mt zion", "ucsf mount zion gynecology"], "self_loops": [0], "tags": {"i": "ucsf women's health center mount zion reviews", "q": "eTojc_FVxNbWP679CRX3k1b_1ls", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's health center mount zion photos", "datetime": "2026-03-12 19:39:39.417101", "source": "google", "data": ["ucsf women's health center mount zion photos", [["ucsf women's health center mount zion photos", 0, [22, 30]], ["UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", 38], ["ucsf women's health center mount zion", 0, [512, 546]], ["ucsf mount zion women's health clinic", 0, [546, 649]], ["ucsf women's health mt zion", 0, [512, 546]], ["ucsf mount zion gynecology", 0, [546, 649]]], {"q": "MjsvSa6aqKFkpoqC-qyfqDxr1CQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's health center mount zion photos", "UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", "ucsf women's health center mount zion", "ucsf mount zion women's health clinic", "ucsf women's health mt zion", "ucsf mount zion gynecology"], "self_loops": [0], "tags": {"q": "MjsvSa6aqKFkpoqC-qyfqDxr1CQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's mental health clinic", "datetime": "2026-03-12 19:39:40.226219", "source": "google", "data": ["ucsf women's mental health clinic", [["ucsf women's mental health clinic", 0, [22, 30]], ["ucsf women's health center", 0, [512, 546]], ["ucsf mental health clinic", 0, [512, 546]], ["ucsf women's health clinic", 0, [512, 546]], ["ucsf women's center", 0, [512, 546]], ["ucsf women's health physical therapy", 0, [546, 649]]], {"i": "ucsf women's mental health clinic", "q": "XTIvyof1E6I4Z6shTtDSDoevJUg", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's mental health clinic", "ucsf women's health center", "ucsf mental health clinic", "ucsf women's health clinic", "ucsf women's center", "ucsf women's health physical therapy"], "self_loops": [0], "tags": {"i": "ucsf women's mental health clinic", "q": "XTIvyof1E6I4Z6shTtDSDoevJUg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's health primary care clinic", "datetime": "2026-03-12 19:39:41.605124", "source": "google", "data": ["ucsf women's health primary care clinic", [["ucsf women's health primary care clinic", 0, [512]], ["ucsf women's health primary care center", 0, [751]], ["ucsf women's health primary care", 0, [512, 546]], ["ucsf women's primary care", 0, [512, 546]]], {"i": "ucsf women's health primary care clinic", "q": "4yn4vRnqhHhv27F4AgTGNq-8Ecw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["ucsf women's health primary care clinic", "ucsf women's health primary care center", "ucsf women's health primary care", "ucsf women's primary care"], "self_loops": [0], "tags": {"i": "ucsf women's health primary care clinic", "q": "4yn4vRnqhHhv27F4AgTGNq-8Ecw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf mount zion women's health clinic", "datetime": "2026-03-12 19:39:42.454126", "source": "google", "data": ["ucsf mount zion women's health clinic", [["ucsf mount zion women's health clinic", 0, [22, 30]], ["ucsf mt zion women's health center", 0, [22, 10, 30]], ["UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", 38], ["ucsf women's health center mount zion", 0, [512, 546]], ["ucsf mt zion women's health", 0, [546, 649]], ["ucsf mount zion gynecology", 0, [546, 649]], ["ucsf mount zion obgyn", 0, [546, 649]]], {"q": "t40P6P2dZHc4S_aANiDIa5W7DAg", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf mount zion women's health clinic", "ucsf mt zion women's health center", "UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", "ucsf women's health center mount zion", "ucsf mt zion women's health", "ucsf mount zion gynecology", "ucsf mount zion obgyn"], "self_loops": [0], "tags": {"q": "t40P6P2dZHc4S_aANiDIa5W7DAg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's health resource center", "datetime": "2026-03-12 19:39:43.827846", "source": "google", "data": ["ucsf women's health resource center", [["ucsf women's health resource center", 0, [512]], ["ucsf women's health clinical research center", 0, [22, 30]], ["ucsf women's resource center", 0, [512, 546]], ["ucsf women's health center", 0, [512, 546]], ["ucsf women's health center san francisco ca", 0, [512, 546]], ["ucsf women's health mission bay", 0, [512, 546]]], {"i": "ucsf women's health resource center", "q": "ISXGlJ2wb69zWy72n5jMYgQTpUA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["ucsf women's health resource center", "ucsf women's health clinical research center", "ucsf women's resource center", "ucsf women's health center", "ucsf women's health center san francisco ca", "ucsf women's health mission bay"], "self_loops": [0], "tags": {"i": "ucsf women's health resource center", "q": "ISXGlJ2wb69zWy72n5jMYgQTpUA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's health primary care center", "datetime": "2026-03-12 19:39:44.931950", "source": "google", "data": ["ucsf women's health primary care center", [["ucsf women's health primary care center", 0, [22, 30]], ["ucsf women's health primary care clinic", 0, [22, 30]], ["ucsf women's health primary care", 0, [512, 546]], ["ucsf women's primary care", 0, [512, 546]]], {"i": "ucsf women's health primary care center", "q": "-tyUjS3eHA3CnCqkzNnEV2aD-lc", "t": {"bpc": false, "tlw": false}}], "suggests": ["ucsf women's health primary care center", "ucsf women's health primary care clinic", "ucsf women's health primary care", "ucsf women's primary care"], "self_loops": [0], "tags": {"i": "ucsf women's health primary care center", "q": "-tyUjS3eHA3CnCqkzNnEV2aD-lc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ucsf women's health primary care", "datetime": "2026-03-12 19:39:46.021016", "source": "google", "data": ["ucsf women's health primary care", [["ucsf women's health primary care", 0, [512]], ["ucsf women's health primary care clinic", 0, [512]], ["ucsf women's health primary care center", 0, [22, 30]], ["UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", 38], ["ucsf women's primary care", 0, [512, 546]]], {"q": "anRrqUOjOkCBUCM28wH5hiRms3c", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["ucsf women's health primary care", "ucsf women's health primary care clinic", "ucsf women's health primary care center", "UCSF Women's Health Center, Mount Zion, Sutter Street, San Francisco, CA", "ucsf women's primary care"], "self_loops": [0], "tags": {"q": "anRrqUOjOkCBUCM28wH5hiRms3c", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's options center san francisco ca", "datetime": "2026-03-12 19:39:47.473102", "source": "google", "data": ["women's options center san francisco ca", [["women's options center san francisco general hospital campus", 0, [22, 30]], ["Women's Options Center At San Francisco General Hospital, Potrero Avenue, San Francisco, CA", 38], ["UCSF Center for Pregnancy Options, Sutter Street, San Francisco, California", 38], ["women's options center san francisco ca", 0, [751]], ["women's options center at san francisco general hospital", 0, [512, 546]], ["women's option center san francisco", 0, [512, 546]], ["women's options center ucsf", 0, [546, 649]], ["women's center san francisco", 0, [512, 546]]], {"q": "Szm1CszbHV2glipZC_7FGJudyvI", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's options center san francisco general hospital campus", "Women's Options Center At San Francisco General Hospital, Potrero Avenue, San Francisco, CA", "UCSF Center for Pregnancy Options, Sutter Street, San Francisco, California", "women's options center san francisco ca", "women's options center at san francisco general hospital", "women's option center san francisco", "women's options center ucsf", "women's center san francisco"], "self_loops": [3], "tags": {"q": "Szm1CszbHV2glipZC_7FGJudyvI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's options center at san francisco general hospital", "datetime": "2026-03-12 19:39:48.976426", "source": "google", "data": ["women's options center at san francisco general hospital", [["women's options center at san francisco general hospital", 0, [512]], ["women's options center at san francisco general hospital reviews", 0, [512]], ["Women's Options Center At San Francisco General Hospital, Potrero Avenue, San Francisco, CA", 38], ["women's options center san francisco ca", 0, [751]], ["san francisco general women's options center", 0, [751]], ["women's option center san francisco", 0, [512, 546]], ["sf general women's options center", 0, [751]]], {"q": "TtGBc9aXfwPgTzWtWKQaOPg3MKg", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's options center at san francisco general hospital", "women's options center at san francisco general hospital reviews", "Women's Options Center At San Francisco General Hospital, Potrero Avenue, San Francisco, CA", "women's options center san francisco ca", "san francisco general women's options center", "women's option center san francisco", "sf general women's options center"], "self_loops": [0], "tags": {"q": "TtGBc9aXfwPgTzWtWKQaOPg3MKg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's center san francisco", "datetime": "2026-03-12 19:39:50.331457", "source": "google", "data": ["women's center san francisco", [["women's center san francisco", 0, [512]], ["women's clinic san francisco", 0, [22, 30]], ["women's health center san francisco", 0, [22, 30]], ["women's resource center san francisco", 0, [22, 30]], ["women's option center san francisco", 0, [22, 30]], ["women's center south san francisco", 0, [22, 10, 30]], ["women resource center san francisco photos", 0, [22, 30]], ["women's business center san francisco", 0, [22, 10, 30]], ["women's options center san francisco general hospital campus", 0, [22, 30]], ["women resource center san francisco reviews", 0, [22, 30]]], {"q": "Yb-lwiXryHksVUu8vJznDT-fHeU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's center san francisco", "women's clinic san francisco", "women's health center san francisco", "women's resource center san francisco", "women's option center san francisco", "women's center south san francisco", "women resource center san francisco photos", "women's business center san francisco", "women's options center san francisco general hospital campus", "women resource center san francisco reviews"], "self_loops": [0], "tags": {"q": "Yb-lwiXryHksVUu8vJznDT-fHeU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va women's center near me", "datetime": "2026-03-12 19:39:51.817433", "source": "google", "data": ["va women's center near me", [["va women's center near me", 0, [512]], ["va women's clinic near me", 0, [22, 30]], ["virginia women's center near mechanicsville va", 0, [22, 10, 30]], ["va women's center mechanicsville", 0, [22, 30]], ["va women's center mech", 0, [22, 10, 30]], ["virginia women's center mechanicsville reviews", 0, [22, 30]], ["virginia women's center mechanicsville photos", 0, [22, 30]], ["virginia women's center mechanicsville doctors", 0, [22, 30]], ["virginia women's center medical records", 0, [22, 10, 30]], ["virginia women's center medical records fax number", 0, [22, 30]]], {"i": "va women's center near me", "q": "p-Z7qY942ru4t59-g-sKTieKKwE", "t": {"bpc": false, "tlw": false}}], "suggests": ["va women's center near me", "va women's clinic near me", "virginia women's center near mechanicsville va", "va women's center mechanicsville", "va women's center mech", "virginia women's center mechanicsville reviews", "virginia women's center mechanicsville photos", "virginia women's center mechanicsville doctors", "virginia women's center medical records", "virginia women's center medical records fax number"], "self_loops": [0], "tags": {"i": "va women's center near me", "q": "p-Z7qY942ru4t59-g-sKTieKKwE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "virginia women's center near mechanicsville va", "datetime": "2026-03-12 19:39:53.263647", "source": "google", "data": ["virginia women's center near mechanicsville va", [["virginia women's center near mechanicsville va", 0, [22, 30]], ["virginia women's center mechanicsville va united states", 0, [22, 30]], ["virginia women's center locations", 0, [512, 390, 650]], ["closest part of virginia to me", 0, [512, 390, 650]], ["virginia workforce center near me", 0, [512, 390, 650]], ["virginia women's center mechanicsville virginia", 0, [512, 546]], ["virginia women's center mechanicsville doctors", 0, [546, 649]], ["virginia women's center mechanicsville", 0, [512, 546]]], {"i": "virginia women's center near mechanicsville va", "q": "1P5dJiChhQ2_SDjP2PGWq5Go9I0", "t": {"bpc": false, "tlw": false}}], "suggests": ["virginia women's center near mechanicsville va", "virginia women's center mechanicsville va united states", "virginia women's center locations", "closest part of virginia to me", "virginia workforce center near me", "virginia women's center mechanicsville virginia", "virginia women's center mechanicsville doctors", "virginia women's center mechanicsville"], "self_loops": [0], "tags": {"i": "virginia women's center near mechanicsville va", "q": "1P5dJiChhQ2_SDjP2PGWq5Go9I0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va women's clinic memphis tn", "datetime": "2026-03-12 19:39:54.412700", "source": "google", "data": ["va women's clinic memphis tn", [["va women's clinic memphis tn", 0, [22, 30]], ["va women's clinic near me", 0, [512, 390, 650]], ["va women's clinic phone number", 0, [512, 390, 650]], ["va women's clinic murfreesboro tn", 0, [546, 649]], ["va women's clinic nashville", 0, [512, 546]], ["memphis va women's clinic", 0, [512, 546]], ["va women's clinic nashville tn", 0, [751]]], {"i": "va women's clinic memphis tn", "q": "PGFoPNd0Qd0eLptgGqJvr6RwtRE", "t": {"bpc": false, "tlw": false}}], "suggests": ["va women's clinic memphis tn", "va women's clinic near me", "va women's clinic phone number", "va women's clinic murfreesboro tn", "va women's clinic nashville", "memphis va women's clinic", "va women's clinic nashville tn"], "self_loops": [0], "tags": {"i": "va women's clinic memphis tn", "q": "PGFoPNd0Qd0eLptgGqJvr6RwtRE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "virginia women's clinic mechanicsville", "datetime": "2026-03-12 19:39:55.278993", "source": "google", "data": ["virginia women's clinic mechanicsville", [["virginia women's clinic mechanicsville", 0, [22, 30]], ["virginia women's health center mechanicsville", 0, [22, 10, 30]], ["virginia women's center mechanicsville doctors", 0, [546, 649]], ["virginia women's center mechanicsville virginia", 0, [512, 546]], ["virginia women's center mechanicsville va", 0, [512, 546]], ["virginia women's center mechanicsville", 0, [512, 546]], ["virginia women's center mechanicsville va united states", 0, [546, 649]]], {"i": "virginia women's clinic mechanicsville", "q": "IUb6MMyIqcmTRrT3JrvDqMMklA8", "t": {"bpc": false, "tlw": false}}], "suggests": ["virginia women's clinic mechanicsville", "virginia women's health center mechanicsville", "virginia women's center mechanicsville doctors", "virginia women's center mechanicsville virginia", "virginia women's center mechanicsville va", "virginia women's center mechanicsville", "virginia women's center mechanicsville va united states"], "self_loops": [0], "tags": {"i": "virginia women's clinic mechanicsville", "q": "IUb6MMyIqcmTRrT3JrvDqMMklA8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va medical clinic near me", "datetime": "2026-03-12 19:39:56.411323", "source": "google", "data": ["va medical clinic near me", [["va medical clinic near me", 0, [512]], ["va outpatient clinic near me", 0, [22, 30]], ["va walk in clinic near me", 0, [22, 30]], ["va health clinic near me", 0, [22, 30]], ["va medical facility near me", 0, [22, 30]], ["va hospital clinic near me", 0, [22, 30]], ["va walk in clinic near me open now", 0, [22, 30]], ["veterans affairs outpatient clinic near me", 0, [22, 30]], ["va hospital urgent care near me", 0, [22, 30]], ["va health urgent care near me", 0, [22, 30]]], {"i": "va medical clinic near me", "q": "ark7508NqmNd1Pi9UdrQhhSjAcE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va medical clinic near me", "va outpatient clinic near me", "va walk in clinic near me", "va health clinic near me", "va medical facility near me", "va hospital clinic near me", "va walk in clinic near me open now", "veterans affairs outpatient clinic near me", "va hospital urgent care near me", "va health urgent care near me"], "self_loops": [0], "tags": {"i": "va medical clinic near me", "q": "ark7508NqmNd1Pi9UdrQhhSjAcE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va walk-in clinic near me", "datetime": "2026-03-12 19:39:57.455905", "source": "google", "data": ["va walk-in clinic near me", [["va walk-in clinic near me", 0, [512]], ["va walk in clinic near me open now", 0, [22, 30]], ["veterans walk in clinic near me", 0, [22, 30]], ["va walk in clinic hours near me", 0, [22, 30]], ["virginia mason walk in clinic near me", 0, [22, 30]], ["va approved walk in clinics near me", 0, [22, 30]], ["va audiology walk in clinic hours near me", 0, [22, 30]], ["is there a va walk in clinic near me", 0, [22, 30]], ["va walk in clinic mental health", 0, [22, 30]], ["does the va have a walk in clinic", 0, [512, 390, 650]]], {"i": "va walk-in clinic near me", "q": "8CaUrYBJ5mNYjwGkgzzlJVqjWTk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va walk-in clinic near me", "va walk in clinic near me open now", "veterans walk in clinic near me", "va walk in clinic hours near me", "virginia mason walk in clinic near me", "va approved walk in clinics near me", "va audiology walk in clinic hours near me", "is there a va walk in clinic near me", "va walk in clinic mental health", "does the va have a walk in clinic"], "self_loops": [0], "tags": {"i": "va walk-in clinic near me", "q": "8CaUrYBJ5mNYjwGkgzzlJVqjWTk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va women's clinic phone number", "datetime": "2026-03-12 19:39:58.539593", "source": "google", "data": ["va women's clinic phone number", [["va women's clinic phone number", 0, [512]], ["temple va women's clinic phone number", 0, [22, 30]], ["dayton va women's clinic phone number", 0, [22, 30]], ["va women's health clinic phone number", 0, [22, 30]], ["birmingham va women's clinic phone number", 0, [22, 10, 30]], ["miami va women's clinic phone number", 0, [22, 30]], ["va loma linda women's clinic phone number", 0, [22, 30]], ["va women's clinic near me", 0, [512, 390, 650]], ["va women's center phone number", 0, [546, 649]], ["va women's center fax number", 0, [546, 649]]], {"i": "va women's clinic phone number", "q": "o4vtlEPZuBt_IGRcPKYSqqeHKe4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va women's clinic phone number", "temple va women's clinic phone number", "dayton va women's clinic phone number", "va women's health clinic phone number", "birmingham va women's clinic phone number", "miami va women's clinic phone number", "va loma linda women's clinic phone number", "va women's clinic near me", "va women's center phone number", "va women's center fax number"], "self_loops": [0], "tags": {"i": "va women's clinic phone number", "q": "o4vtlEPZuBt_IGRcPKYSqqeHKe4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va approved doctors near me", "datetime": "2026-03-12 19:39:59.909396", "source": "google", "data": ["va approved doctors near me", [["va approved doctors near me", 0, [512]], ["va doctors near me", 0, [22, 30]], ["virginia doctors near me", 0, [22, 30]], ["va approved clinics near me", 0, [512, 390, 650]], ["va medical clinic near me", 0, [512, 390, 650]], ["find a va doctor near me", 0, [512, 390, 650]], ["va approved dermatologist near me", 0, [546, 649]]], {"i": "va approved doctors near me", "q": "az5GDgnS52wsWyYopykJQZ049P4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va approved doctors near me", "va doctors near me", "virginia doctors near me", "va approved clinics near me", "va medical clinic near me", "find a va doctor near me", "va approved dermatologist near me"], "self_loops": [0], "tags": {"i": "va approved doctors near me", "q": "az5GDgnS52wsWyYopykJQZ049P4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va clinics near me", "datetime": "2026-03-12 19:40:00.835739", "source": "google", "data": ["va clinics near me", [["va clinics near me", 0, [512]], ["va clinics near me within 20 mi", 0, [512]], ["va clinic near me now", 0, [22, 30]], ["veteran clinics near me", 0, [22, 30]], ["va clinic near me location", 0, [22, 30]], ["va clinic near me jobs", 0, [22, 30]], ["va clinic near me walk in", 0, [22, 30]], ["va clinic nearest me", 0, [22, 30]], ["va hospital near me", 0, [22, 30]], ["va medical center near me", 0, [22, 30]]], {"i": "va clinics near me", "q": "XF5VuIA3AJenrrl8QFZPzCypLck", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va clinics near me", "va clinics near me within 20 mi", "va clinic near me now", "veteran clinics near me", "va clinic near me location", "va clinic near me jobs", "va clinic near me walk in", "va clinic nearest me", "va hospital near me", "va medical center near me"], "self_loops": [0], "tags": {"i": "va clinics near me", "q": "XF5VuIA3AJenrrl8QFZPzCypLck", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va clinic near me walk in", "datetime": "2026-03-12 19:40:01.879548", "source": "google", "data": ["va clinic near me walk in", [["va clinic near me walk in", 0, [22, 30]], ["va walk in clinic near me open now", 0, [22, 30]], ["va walk in clinic hours near me", 0, [22, 30]], ["va audiology walk in clinic hours near me", 0, [22, 30]], ["does the va have a walk in clinic", 0, [512, 390, 650]], ["does the va clinic take walk ins", 0, [512, 390, 650]], ["does the va cover walk in clinics", 0, [512, 390, 650]], ["va clinic near me", 0, [512, 390, 650]], ["va clinic walk ins", 0, [751]]], {"i": "va clinic near me walk in", "q": "lhwx1jE7IMjDVXQJfwKo8Yy-mIA", "t": {"bpc": false, "tlw": false}}], "suggests": ["va clinic near me walk in", "va walk in clinic near me open now", "va walk in clinic hours near me", "va audiology walk in clinic hours near me", "does the va have a walk in clinic", "does the va clinic take walk ins", "does the va cover walk in clinics", "va clinic near me", "va clinic walk ins"], "self_loops": [0], "tags": {"i": "va clinic near me walk in", "q": "lhwx1jE7IMjDVXQJfwKo8Yy-mIA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va clinic nearest me", "datetime": "2026-03-12 19:40:02.724913", "source": "google", "data": ["va clinic nearest me", [["va clinic nearest me", 0, [512]], ["va clinic palo alto", 0, [512, 402, 650]], ["va clinic san francisco", 0, [512, 402, 650]], ["va hospital nearest me", 0, [22, 30]], ["va clinic around me", 0, [22, 30]], ["va medical center nearest me", 0, [22, 30]], ["va clinic near me", 0, [22, 457, 30]], ["va clinic near me now", 0, [22, 30]], ["va clinic near me open now", 0, [22, 30]], ["va clinic near me within 20 mi", 0, [22, 30]]], {"i": "va clinic nearest me", "q": "HBSLBZM8IxgoT05luusyLDxMWEk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va clinic nearest me", "va clinic palo alto", "va clinic san francisco", "va hospital nearest me", "va clinic around me", "va medical center nearest me", "va clinic near me", "va clinic near me now", "va clinic near me open now", "va clinic near me within 20 mi"], "self_loops": [0], "tags": {"i": "va clinic nearest me", "q": "HBSLBZM8IxgoT05luusyLDxMWEk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va approved urgent care clinics near me", "datetime": "2026-03-12 19:40:04.108677", "source": "google", "data": ["va approved urgent care clinics near me", [["va approved urgent care clinics near me", 0, [512]], ["va urgent care clinics near me", 0, [22, 30]], ["va urgent care centers near me", 0, [22, 30]], ["va approved walk in clinics near me", 0, [22, 30]], ["va urgent cares near me", 0, [512, 390, 650]], ["va approved urgent care locations", 0, [512, 390, 650]], ["does the va have urgent care", 0, [512, 390, 650]], ["va approved urgent care near me", 0, [512, 390, 650]], ["va approved urgent care centers", 0, [512, 546]]], {"i": "va approved urgent care clinics near me", "q": "hHfPtLuYmHz6rWn2ByycBnhrEfQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va approved urgent care clinics near me", "va urgent care clinics near me", "va urgent care centers near me", "va approved walk in clinics near me", "va urgent cares near me", "va approved urgent care locations", "does the va have urgent care", "va approved urgent care near me", "va approved urgent care centers"], "self_loops": [0], "tags": {"i": "va approved urgent care clinics near me", "q": "hHfPtLuYmHz6rWn2ByycBnhrEfQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va approved urgent care near me", "datetime": "2026-03-12 19:40:04.966777", "source": "google", "data": ["va approved urgent care near me", [["va approved urgent care near me", 0, [512]], ["va approved urgent care near me within 5 mi", 0, [512]], ["va approved urgent care near me open now", 0, [512]], ["va authorized urgent care near me", 0, [22, 30]], ["va accepted urgent care near me", 0, [22, 30]], ["va urgent care near me", 0, [22, 30]], ["va urgent care near me open now", 0, [22, 30]], ["veterans affairs urgent care near me", 0, [22, 30]], ["va covered urgent care near me", 0, [22, 30]], ["va hospital urgent care near me", 0, [22, 30]]], {"i": "va approved urgent care near me", "q": "pC06_qZyWwWfP3PkSlyCwOhO8Gk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va approved urgent care near me", "va approved urgent care near me within 5 mi", "va approved urgent care near me open now", "va authorized urgent care near me", "va accepted urgent care near me", "va urgent care near me", "va urgent care near me open now", "veterans affairs urgent care near me", "va covered urgent care near me", "va hospital urgent care near me"], "self_loops": [0], "tags": {"i": "va approved urgent care near me", "q": "pC06_qZyWwWfP3PkSlyCwOhO8Gk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va-approved urgent care locator", "datetime": "2026-03-12 19:40:06.358076", "source": "google", "data": ["va-approved urgent care locator", [["va-approved urgent care locator", 0, [512]], ["va authorized urgent care locations", 0, [22, 30]], ["va urgent care locator", 0, [22, 30]], ["va urgent care locator triwest", 0, [22, 30]], ["va urgent care locator tool", 0, [22, 30]], ["va urgent care locator open now", 0, [22, 30]], ["veterans affairs urgent care locator", 0, [22, 30]], ["va approved urgent care near me", 0, [512, 390, 650]], ["va approved urgent care clinics near me", 0, [512, 390, 650]]], {"i": "va-approved urgent care locator", "q": "KiiVQb1MGsRPKCWrO9-j2Cbedo0", "t": {"bpc": false, "tlw": false}}], "suggests": ["va-approved urgent care locator", "va authorized urgent care locations", "va urgent care locator", "va urgent care locator triwest", "va urgent care locator tool", "va urgent care locator open now", "veterans affairs urgent care locator", "va approved urgent care near me", "va approved urgent care clinics near me"], "self_loops": [0], "tags": {"i": "va-approved urgent care locator", "q": "KiiVQb1MGsRPKCWrO9-j2Cbedo0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "veterans doctors office near me", "datetime": "2026-03-12 19:40:07.351917", "source": "google", "data": ["veterans doctors office near me", [["veterans doctors office near me", 0, [512]], ["veterans medical office near me", 0, [22, 30]], ["doctors office closed on veterans day near me", 0, [22, 30]], ["doctors office open on veterans day near me", 0, [22, 30]], ["va doctors office near me", 0, [512, 390, 650]], ["find a va doctor near me", 0, [512, 390, 650]], ["veterans doctors near me", 0, [512, 546]]], {"i": "veterans doctors office near me", "q": "H_vKJG4I5smusDpqc27QccyeV-I", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["veterans doctors office near me", "veterans medical office near me", "doctors office closed on veterans day near me", "doctors office open on veterans day near me", "va doctors office near me", "find a va doctor near me", "veterans doctors near me"], "self_loops": [0], "tags": {"i": "veterans doctors office near me", "q": "H_vKJG4I5smusDpqc27QccyeV-I", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va medical office near me", "datetime": "2026-03-12 19:40:08.260130", "source": "google", "data": ["va medical office near me", [["va medical office near me", 0, [512]], ["va medical center near me", 0, [22, 30]], ["va medical clinic near me", 0, [22, 30]], ["va doctors office near me", 0, [22, 30]], ["veterans affairs medical center near me", 0, [22, 30]], ["va hospital clinic near me", 0, [22, 30]], ["va medical center jobs near me", 0, [22, 30]], ["closest va medical center near me", 0, [22, 30]], ["local va medical center near me", 0, [22, 30]], ["va medical facility near me", 0, [512, 390, 650]]], {"i": "va medical office near me", "q": "jSL0AIDq4w9kaKEBvM43hcLx6ZU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va medical office near me", "va medical center near me", "va medical clinic near me", "va doctors office near me", "veterans affairs medical center near me", "va hospital clinic near me", "va medical center jobs near me", "closest va medical center near me", "local va medical center near me", "va medical facility near me"], "self_loops": [0], "tags": {"i": "va medical office near me", "q": "jSL0AIDq4w9kaKEBvM43hcLx6ZU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va doctors near me", "datetime": "2026-03-12 19:40:09.257063", "source": "google", "data": ["va doctors near me", [["va doctors near me", 0, [512]], ["virginia doctors near me", 0, [22, 30]], ["va healthcare near me", 0, [22, 30]], ["va specialist near me", 0, [22, 30]], ["veterans affairs doctors near me", 0, [22, 30]], ["virginia physicians near me", 0, [22, 30]], ["va approved doctors near me", 0, [22, 30]], ["va disability doctors near me", 0, [22, 30]], ["va doctors office near me", 0, [22, 30]], ["va friendly doctors near me", 0, [22, 30]]], {"i": "va doctors near me", "q": "1ZqrlE10aJJxjHYnCg_Alub9Lt4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va doctors near me", "virginia doctors near me", "va healthcare near me", "va specialist near me", "veterans affairs doctors near me", "virginia physicians near me", "va approved doctors near me", "va disability doctors near me", "va doctors office near me", "va friendly doctors near me"], "self_loops": [0], "tags": {"i": "va doctors near me", "q": "1ZqrlE10aJJxjHYnCg_Alub9Lt4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "find a va doctor near me", "datetime": "2026-03-12 19:40:10.511908", "source": "google", "data": ["find a va doctor near me", [["find a va doctor near me", 0, [512]], ["find a va clinic near me", 0, [22, 30]], ["find a va dental clinic near me", 0, [22, 30]], ["find a va near me", 0, [512, 390, 650]], ["find a doctor near me", 0, [512, 390, 650]]], {"i": "find a va doctor near me", "q": "pF-XUeqT6PXmGrWNJkhFmsxT6kg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["find a va doctor near me", "find a va clinic near me", "find a va dental clinic near me", "find a va near me", "find a doctor near me"], "self_loops": [0], "tags": {"i": "find a va doctor near me", "q": "pF-XUeqT6PXmGrWNJkhFmsxT6kg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va primary care physician near me", "datetime": "2026-03-12 19:40:11.700768", "source": "google", "data": ["va primary care physician near me", [["va primary care physician near me", 0, [512]], ["va primary care provider near me", 0, [22, 30]], ["primary care physician near mechanicsville va", 0, [22, 30]], ["primary care physician richmond va near me", 0, [22, 30]], ["va primary care near me", 0, [512, 390, 650]], ["va health care providers near me", 0, [512, 390, 650]], ["va doctors near me", 0, [512, 390, 650]], ["va primary care physician salary", 0, [512, 546]]], {"i": "va primary care physician near me", "q": "Q8hx8baiuwRkXIruqQbArqCpDNA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va primary care physician near me", "va primary care provider near me", "primary care physician near mechanicsville va", "primary care physician richmond va near me", "va primary care near me", "va health care providers near me", "va doctors near me", "va primary care physician salary"], "self_loops": [0], "tags": {"i": "va primary care physician near me", "q": "Q8hx8baiuwRkXIruqQbArqCpDNA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va clinic palo alto", "datetime": "2026-03-12 19:40:12.649069", "source": "google", "data": ["va clinic palo alto", [["va clinic palo alto", 0, [512]], ["va clinic palo alto ca", 0, [22, 30]], ["va hospital palo alto", 0, [22, 30]], ["va medical center palo alto", 0, [22, 30]], ["va hospital palo alto ca", 0, [22, 30]], ["va hospital palo alto jobs", 0, [22, 30]], ["va hospital palo alto volunteer", 0, [22, 30]], ["va medical center palo alto california", 0, [22, 30]], ["va hospital palo alto address", 0, [22, 30]], ["va hospital palo alto phone number", 0, [22, 30]]], {"q": "uQFqjGHO-56ZvOI7btXVd0Fndv0", "t": {"bpc": false, "tlw": false}}], "suggests": ["va clinic palo alto", "va clinic palo alto ca", "va hospital palo alto", "va medical center palo alto", "va hospital palo alto ca", "va hospital palo alto jobs", "va hospital palo alto volunteer", "va medical center palo alto california", "va hospital palo alto address", "va hospital palo alto phone number"], "self_loops": [0], "tags": {"q": "uQFqjGHO-56ZvOI7btXVd0Fndv0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va clinic san francisco", "datetime": "2026-03-12 19:40:13.740458", "source": "google", "data": ["va clinic san francisco", [["va clinic san francisco", 0, [512]], ["va clinic san francisco ca", 0, [512]], ["va hospital san francisco", 0, [22, 30]], ["va medical center san francisco", 0, [22, 30]], ["va hospital san francisco california", 0, [22, 30]], ["va hospital san francisco jobs", 0, [22, 30]], ["va hospital san francisco address", 0, [22, 30]], ["va hospital san francisco volunteer", 0, [22, 30]], ["va hospital san francisco cafeteria", 0, [22, 30]], ["va medical center san francisco ca", 0, [22, 30]]], {"q": "MgygL6Pr0phE5AVxE_FyTNAeHvg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va clinic san francisco", "va clinic san francisco ca", "va hospital san francisco", "va medical center san francisco", "va hospital san francisco california", "va hospital san francisco jobs", "va hospital san francisco address", "va hospital san francisco volunteer", "va hospital san francisco cafeteria", "va medical center san francisco ca"], "self_loops": [0], "tags": {"q": "MgygL6Pr0phE5AVxE_FyTNAeHvg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va clinic near me now", "datetime": "2026-03-12 19:40:14.685280", "source": "google", "data": ["va clinic near me now", [["va clinic near me now", 0, [512, 457]], ["va clinic palo alto", 0, [512, 402, 650]], ["va clinic san francisco", 0, [512, 402, 650]], ["va hospital near me now", 0, [22, 30]], ["va clinic near me open now", 0, [22, 30]], ["va hospital near me open now", 0, [22, 30]], ["veteran hospital near me open now", 0, [22, 30]], ["va dental clinic near me open now", 0, [22, 30]], ["va audiology clinic near me open now", 0, [22, 30]], ["va walk in clinic near me open now", 0, [22, 30]]], {"i": "va clinic near me now", "q": "COSVv8QFR7jH5k5vjKNskX3R12E", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va clinic near me now", "va clinic palo alto", "va clinic san francisco", "va hospital near me now", "va clinic near me open now", "va hospital near me open now", "veteran hospital near me open now", "va dental clinic near me open now", "va audiology clinic near me open now", "va walk in clinic near me open now"], "self_loops": [0], "tags": {"i": "va clinic near me now", "q": "COSVv8QFR7jH5k5vjKNskX3R12E", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va clinic near me open now", "datetime": "2026-03-12 19:40:15.750905", "source": "google", "data": ["va clinic near me open now", [["va clinic near me open now", 0, [512]], ["va hospital near me open now", 0, [22, 30]], ["veteran hospital near me open now", 0, [22, 30]], ["va dental clinic near me open now", 0, [22, 30]], ["va audiology clinic near me open now", 0, [22, 30]], ["va walk in clinic near me open now", 0, [22, 30]], ["va clinic near me", 0, [512, 390, 650]], ["va medical clinic near me", 0, [512, 390, 650]], ["va outpatient clinic near me", 0, [512, 390, 650]], ["va walk-in clinic near me", 0, [512, 390, 650]]], {"i": "va clinic near me open now", "q": "OrxzrHWZrAPfg-unWR42wxJjwro", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va clinic near me open now", "va hospital near me open now", "veteran hospital near me open now", "va dental clinic near me open now", "va audiology clinic near me open now", "va walk in clinic near me open now", "va clinic near me", "va medical clinic near me", "va outpatient clinic near me", "va walk-in clinic near me"], "self_loops": [0], "tags": {"i": "va clinic near me open now", "q": "OrxzrHWZrAPfg-unWR42wxJjwro", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va clinic near me phone number", "datetime": "2026-03-12 19:40:16.660045", "source": "google", "data": ["va clinic near me phone number", [["va clinic near me phone number", 0, [512]], ["va hospital near me phone number", 0, [22, 30]], ["va audiology clinic near me phone number", 0, [22, 30]], ["va dental clinic near me phone number", 0, [22, 30]], ["va clinic near me", 0, [512, 390, 650]], ["va phone number near me", 0, [512, 390, 650]], ["va clinic near me now", 0, [512, 546]], ["va clinic near my location", 0, [512, 546]], ["va clinic number", 0, [512, 546]]], {"i": "va clinic near me phone number", "q": "TeSOirEOZ_BgMtWb68fGEvkfIG4", "t": {"bpc": false, "tlw": false}}], "suggests": ["va clinic near me phone number", "va hospital near me phone number", "va audiology clinic near me phone number", "va dental clinic near me phone number", "va clinic near me", "va phone number near me", "va clinic near me now", "va clinic near my location", "va clinic number"], "self_loops": [0], "tags": {"i": "va clinic near me phone number", "q": "TeSOirEOZ_BgMtWb68fGEvkfIG4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va clinic near me within 20 mi", "datetime": "2026-03-12 19:40:18.062531", "source": "google", "data": ["va clinic near me within 20 mi", [["va clinic near me within 20 mi", 0, [512]], ["va hospital near me within 20 mi", 0, [22, 30]], ["va dental clinic near me within 20 mi", 0, [22, 30]], ["va hospital locations within 20 mi", 0, [22, 30]], ["va clinic locations", 0, [512, 390, 650]], ["va clinic near me", 0, [512, 390, 650]], ["va clinic near me now", 0, [512, 546]], ["va walk-in clinic near me", 0, [512, 546]], ["va clinic near me phone number", 0, [512, 546]], ["va clinic nearby", 0, [512, 546]]], {"i": "va clinic near me within 20 mi", "q": "yt_zAHQpglLq1Sn-J_2ZsQeMJ4g", "t": {"bpc": false, "tlw": false}}], "suggests": ["va clinic near me within 20 mi", "va hospital near me within 20 mi", "va dental clinic near me within 20 mi", "va hospital locations within 20 mi", "va clinic locations", "va clinic near me", "va clinic near me now", "va walk-in clinic near me", "va clinic near me phone number", "va clinic nearby"], "self_loops": [0], "tags": {"i": "va clinic near me within 20 mi", "q": "yt_zAHQpglLq1Sn-J_2ZsQeMJ4g", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va clinic near me within 5 mi", "datetime": "2026-03-12 19:40:19.316365", "source": "google", "data": ["va clinic near me within 5 mi", [["va clinic near me within 5 mi", 0, [512]], ["va hospital near me within 5 mi", 0, [22, 30]], ["va clinic locations", 0, [512, 390, 650]], ["va clinic near me", 0, [512, 390, 650]], ["va outpatient clinic near me", 0, [512, 390, 650]], ["va clinic near me now", 0, [512, 546]], ["va clinic near milton fl", 0, [751]], ["va clinic near me phone number", 0, [512, 546]], ["va clinic near mesa az", 0, [751]]], {"i": "va clinic near me within 5 mi", "q": "STWKWpVwJZdPB9JsKFgZ6vCQb-o", "t": {"bpc": false, "tlw": false}}], "suggests": ["va clinic near me within 5 mi", "va hospital near me within 5 mi", "va clinic locations", "va clinic near me", "va outpatient clinic near me", "va clinic near me now", "va clinic near milton fl", "va clinic near me phone number", "va clinic near mesa az"], "self_loops": [0], "tags": {"i": "va clinic near me within 5 mi", "q": "STWKWpVwJZdPB9JsKFgZ6vCQb-o", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va clinic near me location", "datetime": "2026-03-12 19:40:20.430919", "source": "google", "data": ["va clinic near me location", [["va clinic near me location", 0, [22, 30]], ["va clinic near my location", 0, [22, 457, 30]], ["va clinic palo alto", 0, [512, 402, 650]], ["va clinic san francisco", 0, [512, 402, 650]], ["va hospital near my location", 0, [22, 30]], ["va hospital nearest my location", 0, [22, 30]], ["closest va hospital near my location", 0, [22, 30]], ["va hospital near my current location", 0, [22, 30]], ["va clinic near me", 0, [512, 390, 650]], ["va medical clinic near me", 0, [512, 390, 650]]], {"i": "va clinic near me location", "q": "q_DSKIpgfYgUJfVMYHKXcXDHzr4", "t": {"bpc": false, "tlw": false}}], "suggests": ["va clinic near me location", "va clinic near my location", "va clinic palo alto", "va clinic san francisco", "va hospital near my location", "va hospital nearest my location", "closest va hospital near my location", "va hospital near my current location", "va clinic near me", "va medical clinic near me"], "self_loops": [0], "tags": {"i": "va clinic near me location", "q": "q_DSKIpgfYgUJfVMYHKXcXDHzr4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va clinic near me jobs", "datetime": "2026-03-12 19:40:21.757568", "source": "google", "data": ["va clinic near me jobs", [["va clinic near me jobs", 0, [22, 30]], ["va hospital near me jobs", 0, [22, 30]], ["veteran hospital near me jobs", 0, [22, 30]], ["va hospital near me hiring", 0, [22, 30]], ["veteran clinic jobs near me", 0, [22, 30]], ["va clinic rn jobs near me", 0, [22, 30]], ["va clinic nursing jobs near me", 0, [22, 30]], ["va clinic garner nc jobs near me", 0, [22, 30]], ["va clinic near me", 0, [512, 390, 650]], ["va clinic locations", 0, [512, 390, 650]]], {"i": "va clinic near me jobs", "q": "ZJa1mTwZSo-2Jcb5MEhcwD2t5KY", "t": {"bpc": false, "tlw": false}}], "suggests": ["va clinic near me jobs", "va hospital near me jobs", "veteran hospital near me jobs", "va hospital near me hiring", "veteran clinic jobs near me", "va clinic rn jobs near me", "va clinic nursing jobs near me", "va clinic garner nc jobs near me", "va clinic near me", "va clinic locations"], "self_loops": [0], "tags": {"i": "va clinic near me jobs", "q": "ZJa1mTwZSo-2Jcb5MEhcwD2t5KY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "vet clinic. near me", "datetime": "2026-03-12 19:40:22.990853", "source": "google", "data": ["vet clinic. near me", [["vet clinic. near me", 0, [512]], ["vet clinic near me open now", 0, [22, 30]], ["vet clinic near me for dogs", 0, [22, 30]], ["vet clinic near me within 1.6 km", 0, [22, 30]], ["vet clinic near me for cats", 0, [22, 30]], ["vet clinic near me open", 0, [22, 30]], ["vet clinic near me affordable", 0, [22, 30]], ["vet clinic near me within 5 mi", 0, [22, 30]], ["vet clinic near me 24 hours", 0, [22, 30]], ["vet clinic near me low cost", 0, [22, 30]]], {"i": "vet clinic. near me", "q": "y4twQx61pTEIpRSiVhY1CiqLBek", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["vet clinic. near me", "vet clinic near me open now", "vet clinic near me for dogs", "vet clinic near me within 1.6 km", "vet clinic near me for cats", "vet clinic near me open", "vet clinic near me affordable", "vet clinic near me within 5 mi", "vet clinic near me 24 hours", "vet clinic near me low cost"], "self_loops": [0], "tags": {"i": "vet clinic. near me", "q": "y4twQx61pTEIpRSiVhY1CiqLBek", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "virginia animal clinic", "datetime": "2026-03-12 19:40:24.176995", "source": "google", "data": ["virginia animal clinic", [["virginia animal clinic", 0, [22, 30]], ["va animal clinic", 0, [22, 30]], ["va animal clinic near me", 0, [22, 30]], ["virginia vet clinic", 0, [22, 30]], ["virginia pet clinic", 0, [22, 30]], ["virginia vet clinic sa", 0, [22, 30]], ["virginia animal hospital", 0, [22, 30]], ["va pet clinic", 0, [22, 30]], ["va vet clinic", 0, [22, 30]], ["va vet clinic near me", 0, [22, 30]]], {"i": "virginia animal clinic", "q": "3zaYKYcS6HJuBw-24arWDjJL8Dw", "t": {"bpc": false, "tlw": false}}], "suggests": ["virginia animal clinic", "va animal clinic", "va animal clinic near me", "virginia vet clinic", "virginia pet clinic", "virginia vet clinic sa", "virginia animal hospital", "va pet clinic", "va vet clinic", "va vet clinic near me"], "self_loops": [0], "tags": {"i": "virginia animal clinic", "q": "3zaYKYcS6HJuBw-24arWDjJL8Dw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk-in animal clinic near me", "datetime": "2026-03-12 19:40:25.001772", "source": "google", "data": ["walk-in animal clinic near me", [["walk-in animal clinic near me", 0, [512]], ["walk in animal clinic near me for dogs", 0, [22, 30]], ["walk in animal clinic near me open now", 0, [22, 30]], ["walk in animal clinic near me for cats", 0, [22, 30]], ["walk in veterinary clinic near me", 0, [22, 30]], ["walk in animal hospital near me", 0, [22, 30]], ["walk in veterinarian clinic near me", 0, [22, 30]], ["walk in animal vet near me", 0, [22, 30]], ["walk in veterinary clinic near me open now", 0, [22, 30]], ["walk in animal hospital near me open now", 0, [22, 30]]], {"i": "walk-in animal clinic near me", "q": "9jhu9sYtxmkB-KSVD01exzx5ydU", "t": {"bpc": false, "tlw": false}}], "suggests": ["walk-in animal clinic near me", "walk in animal clinic near me for dogs", "walk in animal clinic near me open now", "walk in animal clinic near me for cats", "walk in veterinary clinic near me", "walk in animal hospital near me", "walk in veterinarian clinic near me", "walk in animal vet near me", "walk in veterinary clinic near me open now", "walk in animal hospital near me open now"], "self_loops": [0], "tags": {"i": "walk-in animal clinic near me", "q": "9jhu9sYtxmkB-KSVD01exzx5ydU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va animal control", "datetime": "2026-03-12 19:40:26.192143", "source": "google", "data": ["va animal control", [["va animal control", 0, [512]], ["va animal control association", 0, [22, 30]], ["va animal control phone number", 0, [22, 30]], ["virginia animal control laws", 0, [22, 30]], ["virginia animal control laws for dogs", 0, [22, 30]], ["virginia animal control association conference", 0, [22, 30]], ["virginia animal control academy", 0, [22, 30]], ["virginia animal control jobs", 0, [22, 30]], ["va animal shelter", 0, [22, 30]], ["va animal rescue", 0, [22, 30]]], {"i": "va animal control", "q": "xnb9RfeGAvhymf-nbQyZ9qwlP0s", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["va animal control", "va animal control association", "va animal control phone number", "virginia animal control laws", "virginia animal control laws for dogs", "virginia animal control association conference", "virginia animal control academy", "virginia animal control jobs", "va animal shelter", "va animal rescue"], "self_loops": [0], "tags": {"i": "va animal control", "q": "xnb9RfeGAvhymf-nbQyZ9qwlP0s", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va women's clinic near st louis mo", "datetime": "2026-03-12 19:40:27.014198", "source": "google", "data": ["va women's clinic near st louis mo", [["va women's clinic near st louis mo", 0, [22, 30]], ["va women's clinic near me", 0, [512, 390, 650]], ["va clinic near me", 0, [512, 390, 650]], ["va medical clinic near me", 0, [512, 390, 650]], ["va animal clinic near me", 0, [512, 390, 650]], ["va walk-in clinic near me", 0, [512, 390, 650]], ["va women's clinic st louis", 0, [512, 546]], ["va women's clinic louisville ky", 0, [512, 546]]], {"i": "va women's clinic near st louis mo", "q": "B9JtE1-sMPJJtf46taGbsh0fans", "t": {"bpc": false, "tlw": false}}], "suggests": ["va women's clinic near st louis mo", "va women's clinic near me", "va clinic near me", "va medical clinic near me", "va animal clinic near me", "va walk-in clinic near me", "va women's clinic st louis", "va women's clinic louisville ky"], "self_loops": [0], "tags": {"i": "va women's clinic near st louis mo", "q": "B9JtE1-sMPJJtf46taGbsh0fans", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va women's clinic louisville ky", "datetime": "2026-03-12 19:40:28.004116", "source": "google", "data": ["va women's clinic louisville ky", [["va women's clinic louisville ky", 0, [512]], ["va women's clinic near me", 0, [512, 390, 650]], ["va women's clinic phone number", 0, [512, 390, 650]], ["va women's clinic st louis", 0, [512, 546]], ["va women's clinic birmingham al", 0, [512, 546]]], {"i": "va women's clinic louisville ky", "q": "VO0GaSzxkCr_6RqOVWygk3XyzBs", "t": {"bpc": false, "tlw": false}}], "suggests": ["va women's clinic louisville ky", "va women's clinic near me", "va women's clinic phone number", "va women's clinic st louis", "va women's clinic birmingham al"], "self_loops": [0], "tags": {"i": "va women's clinic louisville ky", "q": "VO0GaSzxkCr_6RqOVWygk3XyzBs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "seattle va women's clinic", "datetime": "2026-03-12 19:40:29.499075", "source": "google", "data": ["seattle va women's clinic", [["seattle va women's clinic", 0, [512]], ["va puget sound women's clinic", 0, [22, 30]], ["va women's clinic near me", 0, [512, 390, 650]], ["seattle women's clinic", 0, [512, 546]], ["seattle women's health clinic", 0, [751]], ["seattle women's health and wellness clinic", 0, [512, 546]]], {"i": "seattle va women's clinic", "q": "xhurhyezPg63X506SWSyHgMGWws", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["seattle va women's clinic", "va puget sound women's clinic", "va women's clinic near me", "seattle women's clinic", "seattle women's health clinic", "seattle women's health and wellness clinic"], "self_loops": [0], "tags": {"i": "seattle va women's clinic", "q": "xhurhyezPg63X506SWSyHgMGWws", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va women's clinic american lake", "datetime": "2026-03-12 19:40:30.660648", "source": "google", "data": ["va women's clinic american lake", [["va women's clinic american lake", 0, [22, 30]], ["american lake va women's health clinic", 0, [22, 30]], ["va women's clinic near me", 0, [512, 390, 650]], ["va women's clinic phone number", 0, [512, 390, 650]], ["va women's health benefits", 0, [512, 390, 650]], ["va women's clinic lake city fl", 0, [751]]], {"i": "va women's clinic american lake", "q": "EY0zjFWTYLHeTlBoi8mXxPyhq4I", "t": {"bpc": false, "tlw": false}}], "suggests": ["va women's clinic american lake", "american lake va women's health clinic", "va women's clinic near me", "va women's clinic phone number", "va women's health benefits", "va women's clinic lake city fl"], "self_loops": [0], "tags": {"i": "va women's clinic american lake", "q": "EY0zjFWTYLHeTlBoi8mXxPyhq4I", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "virginia women's center st francis hospital", "datetime": "2026-03-12 19:40:31.486849", "source": "google", "data": ["virginia women's center st francis hospital", [["virginia women's center st francis hospital", 0, [22, 30]], ["virginia women's center st. francis", 0, [751]], ["virginia women's center saint francis boulevard midlothian va", 0, [546, 649]], ["virginia women's center saint francis", 0, [512, 546]], ["virginia women's center flank road", 0, [546, 649]]], {"i": "virginia women's center st francis hospital", "q": "M3FcMNIEi4AmJz43smyitXmzk0k", "t": {"bpc": false, "tlw": false}}], "suggests": ["virginia women's center st francis hospital", "virginia women's center st. francis", "virginia women's center saint francis boulevard midlothian va", "virginia women's center saint francis", "virginia women's center flank road"], "self_loops": [0], "tags": {"i": "virginia women's center st francis hospital", "q": "M3FcMNIEi4AmJz43smyitXmzk0k", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "virginia women's center st francis boulevard", "datetime": "2026-03-12 19:40:32.875589", "source": "google", "data": ["virginia women's center st francis boulevard", [["virginia women's center st francis boulevard", 0, [512]], ["virginia women's center - 13801 saint francis boulevard", 0, [22, 10, 30]], ["virginia women's center saint francis boulevard midlothian va", 0, [22, 30]], ["virginia women's center st. francis", 0, [751]], ["virginia women's center saint francis", 0, [512, 546]], ["virginia women's center flank road", 0, [546, 649]]], {"i": "virginia women's center st francis boulevard", "q": "pe5xuk7hVm_l30T5OlkIhPDxCb8", "t": {"bpc": false, "tlw": false}}], "suggests": ["virginia women's center st francis boulevard", "virginia women's center - 13801 saint francis boulevard", "virginia women's center saint francis boulevard midlothian va", "virginia women's center st. francis", "virginia women's center saint francis", "virginia women's center flank road"], "self_loops": [0], "tags": {"i": "virginia women's center st francis boulevard", "q": "pe5xuk7hVm_l30T5OlkIhPDxCb8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "virginia women's center - 13801 saint francis boulevard", "datetime": "2026-03-12 19:40:33.703728", "source": "google", "data": ["virginia women's center - 13801 saint francis boulevard", [["virginia women's center - 13801 saint francis boulevard", 0, [22, 30]], ["virginia women's center 13801 st francis blvd midlothian va 23114", 0, [22, 10, 30]], ["state of virginia vital statistics", 0, [512, 390, 650]], ["virginia women's center saint francis boulevard midlothian va", 0, [546, 649]], ["virginia women's center saint francis", 0, [512, 546]], ["virginia women's center st. francis", 0, [751]], ["virginia women's center locations", 0, [512, 546]]], {"i": "virginia women's center - 13801 saint francis boulevard", "q": "wi72xfjI7kOtLm2JLYHCCt87z7w", "t": {"bpc": false, "tlw": false}}], "suggests": ["virginia women's center - 13801 saint francis boulevard", "virginia women's center 13801 st francis blvd midlothian va 23114", "state of virginia vital statistics", "virginia women's center saint francis boulevard midlothian va", "virginia women's center saint francis", "virginia women's center st. francis", "virginia women's center locations"], "self_loops": [0], "tags": {"i": "virginia women's center - 13801 saint francis boulevard", "q": "wi72xfjI7kOtLm2JLYHCCt87z7w", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "virginia women's center saint francis boulevard midlothian va", "datetime": "2026-03-12 19:40:34.633666", "source": "google", "data": ["virginia women's center saint francis boulevard midlothian va", [["virginia women's center saint francis boulevard midlothian va", 0, [22, 30]], ["virginia women's center 13801 st francis blvd midlothian va 23114", 0, [22, 10, 30]]], {"i": "virginia women's center saint francis boulevard midlothian va", "q": "z0Z30bE-FveYs8zSrT-n5xzpy-0", "t": {"bpc": false, "tlw": false}}], "suggests": ["virginia women's center saint francis boulevard midlothian va", "virginia women's center 13801 st francis blvd midlothian va 23114"], "self_loops": [0], "tags": {"i": "virginia women's center saint francis boulevard midlothian va", "q": "z0Z30bE-FveYs8zSrT-n5xzpy-0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "virginia women's center 13801 st francis blvd midlothian va 23114", "datetime": "2026-03-12 19:40:36.070515", "source": "google", "data": ["virginia women's center 13801 st francis blvd midlothian va 23114", [], {"i": "virginia women's center 13801 st francis blvd midlothian va 23114", "q": "Iqybf3AkycnwoEe0F0YjUuZLZs8", "t": {"bpc": false, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "virginia women's center 13801 st francis blvd midlothian va 23114", "q": "Iqybf3AkycnwoEe0F0YjUuZLZs8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va women's center locations", "datetime": "2026-03-12 19:40:36.910992", "source": "google", "data": ["va women's center locations", [["va women's center locations", 0, [22, 30]], ["virginia women's center locations", 0, [512, 390, 650]], ["va medical center locations usa", 0, [512, 390, 650]], ["va locations", 0, [512, 390, 650]], ["va women's center near me", 0, [512, 546]], ["va women's center phone number", 0, [546, 649]]], {"i": "va women's center locations", "q": "MyKZc0TToHXjI9g5C4EeNsKZp5U", "t": {"bpc": false, "tlw": false}}], "suggests": ["va women's center locations", "virginia women's center locations", "va medical center locations usa", "va locations", "va women's center near me", "va women's center phone number"], "self_loops": [0], "tags": {"i": "va women's center locations", "q": "MyKZc0TToHXjI9g5C4EeNsKZp5U", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "va women's center fax number", "datetime": "2026-03-12 19:40:37.951652", "source": "google", "data": ["va women's center fax number", [["va women's center fax number", 0, [22, 30]], ["va women's center phone number", 0, [22, 30]], ["va women's clinic fax number", 0, [22, 10, 30]], ["virginia women's center phone number", 0, [22, 30]], ["va women's clinic phone number", 0, [22, 30]], ["virginia women's center mechanicsville fax number", 0, [22, 30]], ["virginia women's center medical records fax number", 0, [22, 30]], ["virginia women's center short pump fax number", 0, [22, 10, 30]], ["temple va women's clinic phone number", 0, [22, 30]], ["dayton va women's clinic phone number", 0, [22, 30]]], {"i": "va women's center fax number", "q": "9EPsGT0C8vyml91tOeR7P4Mvldc", "t": {"bpc": false, "tlw": false}}], "suggests": ["va women's center fax number", "va women's center phone number", "va women's clinic fax number", "virginia women's center phone number", "va women's clinic phone number", "virginia women's center mechanicsville fax number", "virginia women's center medical records fax number", "virginia women's center short pump fax number", "temple va women's clinic phone number", "dayton va women's clinic phone number"], "self_loops": [0], "tags": {"i": "va women's center fax number", "q": "9EPsGT0C8vyml91tOeR7P4Mvldc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "virginia women's center st. francis", "datetime": "2026-03-12 19:40:38.835738", "source": "google", "data": ["virginia women's center st. francis", [["virginia women's center st francis", 0, [22, 10, 30]], ["virginia women's center st francis hospital", 0, [22, 30]], ["virginia women's center st francis boulevard", 0, [22, 30]], ["virginia women's center - 13801 saint francis boulevard", 0, [22, 10, 30]], ["virginia women's center saint francis boulevard midlothian va", 0, [22, 30]], ["virginia women's center 13801 st francis blvd midlothian va 23114", 0, [22, 10, 30]], ["virginia women's center saint francis", 0, [512, 546]], ["virginia women's center st mary's", 0, [546, 649]]], {"i": "virginia women's center st. francis", "q": "T0bm31ouU44FNer8zsdbyWaIyxA", "t": {"bpc": false, "tlw": false}}], "suggests": ["virginia women's center st francis", "virginia women's center st francis hospital", "virginia women's center st francis boulevard", "virginia women's center - 13801 saint francis boulevard", "virginia women's center saint francis boulevard midlothian va", "virginia women's center 13801 st francis blvd midlothian va 23114", "virginia women's center saint francis", "virginia women's center st mary's"], "self_loops": [], "tags": {"i": "virginia women's center st. francis", "q": "T0bm31ouU44FNer8zsdbyWaIyxA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf lessons san diego", "datetime": "2026-03-12 19:40:39.838561", "source": "google", "data": ["women's golf lessons san diego", [["women's golf lessons san diego", 0, [512]], ["women's golf lessons san antonio", 0, [22, 30]], ["female golf instructors san diego", 0, [22, 30]], ["women's golf league san diego", 0, [546, 649]], ["women's golf club san diego", 0, [512, 546]], ["women's golf lessons sacramento", 0, [751]]], {"i": "women's golf lessons san diego", "q": "_-cnMnD7ZQ97MZpYCVkLGOj6SE0", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's golf lessons san diego", "women's golf lessons san antonio", "female golf instructors san diego", "women's golf league san diego", "women's golf club san diego", "women's golf lessons sacramento"], "self_loops": [0], "tags": {"i": "women's golf lessons san diego", "q": "_-cnMnD7ZQ97MZpYCVkLGOj6SE0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf lessons san antonio", "datetime": "2026-03-12 19:40:41.084603", "source": "google", "data": ["women's golf lessons san antonio", [["women's golf lessons san antonio", 0, [22, 30]], ["women's golf san antonio", 0, [751]], ["women's golf lessons austin", 0, [751]], ["women's golf lessons san diego", 0, [512, 546]], ["women's golf lessons austin tx", 0, [751]]], {"i": "women's golf lessons san antonio", "q": "gSxr0yu-47vvMueIFFs7DCEnbc4", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's golf lessons san antonio", "women's golf san antonio", "women's golf lessons austin", "women's golf lessons san diego", "women's golf lessons austin tx"], "self_loops": [0], "tags": {"i": "women's golf lessons san antonio", "q": "gSxr0yu-47vvMueIFFs7DCEnbc4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf lessons sacramento", "datetime": "2026-03-12 19:40:42.362686", "source": "google", "data": ["women's golf lessons sacramento", [["women's golf lessons sacramento", 0, [22, 30]], ["women's golf lessons san diego", 0, [512, 546]], ["women's golf lessons los angeles", 0, [512, 546]], ["women's golf lessons san antonio", 0, [546, 649]], ["sacramento golf lessons", 0, [512, 546]]], {"i": "women's golf lessons sacramento", "q": "d6MTNUlNwE7NzPXldaWDensJsBw", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's golf lessons sacramento", "women's golf lessons san diego", "women's golf lessons los angeles", "women's golf lessons san antonio", "sacramento golf lessons"], "self_loops": [0], "tags": {"i": "women's golf lessons sacramento", "q": "d6MTNUlNwE7NzPXldaWDensJsBw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf lessons los angeles", "datetime": "2026-03-12 19:40:43.702601", "source": "google", "data": ["women's golf lessons los angeles", [["women's golf lessons los angeles", 0, [512]], ["female golf instructors los angeles", 0, [22, 30]], ["women's golf los angeles", 0, [546, 649]], ["women's golf club los angeles", 0, [546, 649]], ["women's golf lessons sacramento", 0, [751]], ["women's golf league los angeles", 0, [751]]], {"i": "women's golf lessons los angeles", "q": "nsS4hzLELVXYTMW0btd4rGO3XIw", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's golf lessons los angeles", "female golf instructors los angeles", "women's golf los angeles", "women's golf club los angeles", "women's golf lessons sacramento", "women's golf league los angeles"], "self_loops": [0], "tags": {"i": "women's golf lessons los angeles", "q": "nsS4hzLELVXYTMW0btd4rGO3XIw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf lessons st louis", "datetime": "2026-03-12 19:40:44.521375", "source": "google", "data": ["women's golf lessons st louis", [["women's golf lessons st louis", 0, [22, 30]], ["women's golf league st louis", 0, [546, 649]], ["women's golf lessons louisville ky", 0, [751]], ["women's golf lessons san antonio", 0, [546, 649]]], {"i": "women's golf lessons st louis", "q": "3KSa5scjB12XBA_iYKYIEEH74wY", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's golf lessons st louis", "women's golf league st louis", "women's golf lessons louisville ky", "women's golf lessons san antonio"], "self_loops": [0], "tags": {"i": "women's golf lessons st louis", "q": "3KSa5scjB12XBA_iYKYIEEH74wY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf clinic near me", "datetime": "2026-03-12 19:40:45.444618", "source": "google", "data": ["women's golf clinic near me", [["women's golf clinic near me", 0, [512]], ["women's golf lessons near me", 0, [22, 30]], ["ladies golf clinic near me", 0, [22, 30]], ["women's golf lessons near me for beginners", 0, [22, 30]], ["women's golf lessons near me for adults", 0, [22, 30]], ["women's golf lessons near me for seniors", 0, [22, 30]], ["women's golf camp near me", 0, [22, 30]], ["woman golf lessons near me", 0, [22, 30]], ["women's beginner golf clinic near me", 0, [22, 30]], ["women's golf clinic 2025 near me", 0, [22, 30]]], {"i": "women's golf clinic near me", "q": "jAFGS19YGEoVSmqbnxNEtvVFX4s", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's golf clinic near me", "women's golf lessons near me", "ladies golf clinic near me", "women's golf lessons near me for beginners", "women's golf lessons near me for adults", "women's golf lessons near me for seniors", "women's golf camp near me", "woman golf lessons near me", "women's beginner golf clinic near me", "women's golf clinic 2025 near me"], "self_loops": [0], "tags": {"i": "women's golf clinic near me", "q": "jAFGS19YGEoVSmqbnxNEtvVFX4s", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf clinics 2026", "datetime": "2026-03-12 19:40:46.316112", "source": "google", "data": ["women's golf clinics 2026", [["women's golf clinics 2026", 0, [512]], ["women's golf clinics near me", 0, [512, 546]], ["women's golf clinics arizona", 0, [546, 649]]], {"i": "women's golf clinics 2026", "q": "TKBb3giMFneTguL_kXHxlRBXLW8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's golf clinics 2026", "women's golf clinics near me", "women's golf clinics arizona"], "self_loops": [0], "tags": {"i": "women's golf clinics 2026", "q": "TKBb3giMFneTguL_kXHxlRBXLW8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf clinics melbourne", "datetime": "2026-03-12 19:40:47.532934", "source": "google", "data": ["women's golf clinics melbourne", [["women's golf clinics melbourne", 0, [512]], ["women's golf clinics", 0, [751]], ["women's golf melbourne", 0, [512, 546]]], {"i": "women's golf clinics melbourne", "q": "iOEqvbQ9mgt56TJdEzGcsjtU1kw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's golf clinics melbourne", "women's golf clinics", "women's golf melbourne"], "self_loops": [0], "tags": {"i": "women's golf clinics melbourne", "q": "iOEqvbQ9mgt56TJdEzGcsjtU1kw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf clinics 2025", "datetime": "2026-03-12 19:40:48.915595", "source": "google", "data": ["women's golf clinics 2025", [["women's golf clinics 2025", 0, [22, 30]], ["women's golf clinics 2025 near me", 0, [22, 30]], ["best women's golf clinics 2025", 0, [22, 30]], ["women's golf q school 2025", 0, [22, 10, 30]], ["women's golf clinics", 0, [751]], ["women's golf clinics arizona", 0, [546, 649]], ["women's golf clinic ideas", 0, [546, 649]]], {"i": "women's golf clinics 2025", "q": "-Xsx4MLA8Zr7hqS7Q5ClUSfPR3w", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's golf clinics 2025", "women's golf clinics 2025 near me", "best women's golf clinics 2025", "women's golf q school 2025", "women's golf clinics", "women's golf clinics arizona", "women's golf clinic ideas"], "self_loops": [0], "tags": {"i": "women's golf clinics 2025", "q": "-Xsx4MLA8Zr7hqS7Q5ClUSfPR3w", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf clinics 2025 near me", "datetime": "2026-03-12 19:40:50.009981", "source": "google", "data": ["women's golf clinics 2025 near me", [["women's golf clinics 2025 near me", 0, [22, 30]], ["latest women's golf results", 0, [512, 390, 650]], ["women's golf clinics near me", 0, [512, 546]], ["women's golf clinics arizona", 0, [546, 649]]], {"i": "women's golf clinics 2025 near me", "q": "FFkuchoT9bFNUNOUYKHRI0G_56w", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's golf clinics 2025 near me", "latest women's golf results", "women's golf clinics near me", "women's golf clinics arizona"], "self_loops": [0], "tags": {"i": "women's golf clinics 2025 near me", "q": "FFkuchoT9bFNUNOUYKHRI0G_56w", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf clinic boston", "datetime": "2026-03-12 19:40:51.241676", "source": "google", "data": ["women's golf clinic boston", [["women's golf clinic boston", 0, [22, 30]], ["women's golf lessons boston", 0, [22, 30]], ["women's golf clinic", 0, [512, 546]], ["women's golf boston", 0, [751]], ["women's golf clinic ideas", 0, [546, 649]]], {"i": "women's golf clinic boston", "q": "1r4xvQs_EdJc83tpKsA4yE7boNg", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's golf clinic boston", "women's golf lessons boston", "women's golf clinic", "women's golf boston", "women's golf clinic ideas"], "self_loops": [0], "tags": {"i": "women's golf clinic boston", "q": "1r4xvQs_EdJc83tpKsA4yE7boNg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "denver women's golf clinic", "datetime": "2026-03-12 19:40:52.412215", "source": "google", "data": ["denver women's golf clinic", [["denver women's golf clinic", 0, [22, 30]], ["denver women's golf lessons", 0, [22, 30]], ["denver women's clinic", 0, [512, 546]], ["denver women's golf", 0, [512, 546]], ["denver women's health clinic", 0, [512, 546]], ["denver women's golf schedule", 0, [546, 649]], ["denver women's health center", 0, [546, 649]]], {"i": "denver women's golf clinic", "q": "Kr0iuZgWgFdpo-ZerXB2QAdnNnM", "t": {"bpc": false, "tlw": false}}], "suggests": ["denver women's golf clinic", "denver women's golf lessons", "denver women's clinic", "denver women's golf", "denver women's health clinic", "denver women's golf schedule", "denver women's health center"], "self_loops": [0], "tags": {"i": "denver women's golf clinic", "q": "Kr0iuZgWgFdpo-ZerXB2QAdnNnM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's golf clinic perth", "datetime": "2026-03-12 19:40:53.507809", "source": "google", "data": ["women's golf clinic perth", [["women's golf clinic perth", 0, [22, 30]], ["women's golf lessons perth", 0, [22, 30]], ["ladies golf clinic perth", 0, [22, 30]], ["women's golf clinic", 0, [512, 546]], ["women's golf clinic ideas", 0, [546, 649]]], {"i": "women's golf clinic perth", "q": "QtVqmL9Dkg-w8ZgUfaAqi8ArMes", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's golf clinic perth", "women's golf lessons perth", "ladies golf clinic perth", "women's golf clinic", "women's golf clinic ideas"], "self_loops": [0], "tags": {"i": "women's golf clinic perth", "q": "QtVqmL9Dkg-w8ZgUfaAqi8ArMes", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's wellness workshop ideas", "datetime": "2026-03-12 19:40:54.672135", "source": "google", "data": ["women's wellness workshop ideas", [["women's wellness workshop ideas", 0, [512]], ["women's workshop ideas", 0, [512, 390, 650]], ["women's wellness activities", 0, [512, 390, 650]], ["wellness workshop ideas", 0, [512, 390, 650]], ["health and wellness workshop ideas", 0, [512, 390, 650]], ["women's wellness workshop", 0, [512, 546]], ["women's wellness ideas", 0, [546, 649]], ["women's empowerment workshop ideas", 0, [512, 546]]], {"i": "women's wellness workshop ideas", "q": "ZPhWlfkNZV97mS6B5VPWUX5EcF4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's wellness workshop ideas", "women's workshop ideas", "women's wellness activities", "wellness workshop ideas", "health and wellness workshop ideas", "women's wellness workshop", "women's wellness ideas", "women's empowerment workshop ideas"], "self_loops": [0], "tags": {"i": "women's wellness workshop ideas", "q": "ZPhWlfkNZV97mS6B5VPWUX5EcF4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ladies golf clinic ideas", "datetime": "2026-03-12 19:40:56.114526", "source": "google", "data": ["ladies golf clinic ideas", [["ladies golf clinic ideas", 0, [512]], ["women's golf clinic ideas", 0, [546, 649]], ["ladies clinic golf", 0, [546, 649]]], {"i": "ladies golf clinic ideas", "q": "n4IlQYmm8LJO8uxgfYAPsG2cgtQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["ladies golf clinic ideas", "women's golf clinic ideas", "ladies clinic golf"], "self_loops": [0], "tags": {"i": "ladies golf clinic ideas", "q": "n4IlQYmm8LJO8uxgfYAPsG2cgtQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic open near me", "datetime": "2026-03-12 19:40:57.550545", "source": "google", "data": ["abortion clinic open near me", [["abortion clinic open near me", 0, [512]], ["women's clinic open near me", 0, [22, 10, 30]], ["abortion clinic open sunday near me", 0, [22, 30]], ["abortion clinic open now near me", 0, [22, 30]], ["abortion clinic open today near me", 0, [22, 30]], ["abortion clinic open saturday near me", 0, [22, 30]], ["abortion clinics still open near me", 0, [22, 30]], ["women's clinic open saturday near me", 0, [22, 30]], ["women's health clinic open near me", 0, [22, 10, 30]], ["women's clinic open now near me", 0, [22, 30]]], {"i": "abortion clinic open near me", "q": "4SPlLChOLTy6chxWiNMXJOqsUBA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic open near me", "women's clinic open near me", "abortion clinic open sunday near me", "abortion clinic open now near me", "abortion clinic open today near me", "abortion clinic open saturday near me", "abortion clinics still open near me", "women's clinic open saturday near me", "women's health clinic open near me", "women's clinic open now near me"], "self_loops": [0], "tags": {"i": "abortion clinic open near me", "q": "4SPlLChOLTy6chxWiNMXJOqsUBA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic open on weekends near me", "datetime": "2026-03-12 19:40:58.427894", "source": "google", "data": ["abortion clinic open on weekends near me", [["abortion clinic open on saturday near me", 0, [22, 30]], ["abortion clinic open near me", 0, [22, 30]], ["abortion clinic open now near me", 0, [22, 30]], ["women's clinic open near me", 0, [22, 10, 30]], ["abortion clinic open sunday near me", 0, [512, 390, 650]], ["abortion clinic open on weekends near me", 0, [751]]], {"i": "abortion clinic open on weekends near me", "q": "xyizv-_ihO-x4zLFb-oiiTaQRnM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic open on saturday near me", "abortion clinic open near me", "abortion clinic open now near me", "women's clinic open near me", "abortion clinic open sunday near me", "abortion clinic open on weekends near me"], "self_loops": [5], "tags": {"i": "abortion clinic open on weekends near me", "q": "xyizv-_ihO-x4zLFb-oiiTaQRnM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open on saturday", "datetime": "2026-03-12 19:40:59.685248", "source": "google", "data": ["abortion clinic near me open on saturday", [["abortion clinic near me open on weekends", 0, [22, 30]], ["abortion clinic near me open saturday", 0, [22, 30]], ["women's clinic near me open on weekends", 0, [22, 30]], ["women's clinic near me open saturday", 0, [22, 30]], ["abortion clinic open near me", 0, [512, 390, 650]], ["abortion clinic near me open sunday", 0, [751]]], {"i": "abortion clinic near me open on saturday", "q": "VSNm62N_dERV4rLegS5QUw4ic9A", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open on weekends", "abortion clinic near me open saturday", "women's clinic near me open on weekends", "women's clinic near me open saturday", "abortion clinic open near me", "abortion clinic near me open sunday"], "self_loops": [], "tags": {"i": "abortion clinic near me open on saturday", "q": "VSNm62N_dERV4rLegS5QUw4ic9A", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me up to 20 weeks", "datetime": "2026-03-12 19:41:00.993892", "source": "google", "data": ["abortion clinic near me up to 20 weeks", [["abortion clinic near me up to 20 weeks", 0, [22, 30]], ["abortion clinic near me 20 weeks", 0, [22, 30]], ["abortion clinic up to 20 weeks", 0, [22, 30]], ["can you get an abortion at 20 weeks in illinois", 0, [512, 390, 650]], ["abortion clinic near me 15 weeks", 0, [751]], ["abortion clinic near me 24 hours", 0, [751]], ["abortion clinic near me 13 weeks", 0, [512, 546]]], {"i": "abortion clinic near me up to 20 weeks", "q": "rVRIFoyakf-8_69Fm_6b72FZOPY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me up to 20 weeks", "abortion clinic near me 20 weeks", "abortion clinic up to 20 weeks", "can you get an abortion at 20 weeks in illinois", "abortion clinic near me 15 weeks", "abortion clinic near me 24 hours", "abortion clinic near me 13 weeks"], "self_loops": [0], "tags": {"i": "abortion clinic near me up to 20 weeks", "q": "rVRIFoyakf-8_69Fm_6b72FZOPY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women hospital near me open now", "datetime": "2026-03-12 19:41:01.823929", "source": "google", "data": ["women hospital near me open now", [["women hospital near me open now", 0, [512]], ["open hospital near me now", 0, [512, 390, 650]], ["women's clinic open near me", 0, [512, 390, 650]], ["are there any walk in clinics open near me", 0, [512, 390, 650]], ["women's hospital near me", 0, [512, 546]], ["woman hospital near me", 0, [512, 546]], ["women's hospital emergency room near me", 0, [512, 546]], ["women's clinic near me open on weekends", 0, [512, 546]]], {"i": "women hospital near me open now", "q": "cZVhQzgxJ77JtchOmZS71EBRlEU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women hospital near me open now", "open hospital near me now", "women's clinic open near me", "are there any walk in clinics open near me", "women's hospital near me", "woman hospital near me", "women's hospital emergency room near me", "women's clinic near me open on weekends"], "self_loops": [0], "tags": {"i": "women hospital near me open now", "q": "cZVhQzgxJ77JtchOmZS71EBRlEU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women doctor near me open now", "datetime": "2026-03-12 19:41:03.054104", "source": "google", "data": ["women doctor near me open now", [["women doctor near me open now", 0, [512]], ["woman doctor near me open now", 0, [22, 30]], ["women dr near me open now", 0, [22, 30]], ["women's clinic near me open now", 0, [22, 30]], ["women specialist near me open now", 0, [22, 30]], ["lady doctor near me open now within 1.6 km", 0, [22, 30]], ["women's clinic near me open now within 5 mi", 0, [22, 30]], ["lady doctor near me open now within 800m", 0, [22, 30]], ["female physician near me open now", 0, [22, 30]], ["lady doctor clinic near me open now", 0, [22, 30]]], {"i": "women doctor near me open now", "q": "GZYlKmUQzqbGE3vcvAMYWUw4Jyk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women doctor near me open now", "woman doctor near me open now", "women dr near me open now", "women's clinic near me open now", "women specialist near me open now", "lady doctor near me open now within 1.6 km", "women's clinic near me open now within 5 mi", "lady doctor near me open now within 800m", "female physician near me open now", "lady doctor clinic near me open now"], "self_loops": [0], "tags": {"i": "women doctor near me open now", "q": "GZYlKmUQzqbGE3vcvAMYWUw4Jyk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women center near me open now", "datetime": "2026-03-12 19:41:04.559303", "source": "google", "data": ["women center near me open now", [["women center near me open now", 0, [512]], ["women's clinic near me open now", 0, [22, 30]], ["women's clinic near me open now within 5 mi", 0, [22, 30]], ["women's health center near me open now", 0, [22, 30]], ["women's care center near me open now", 0, [22, 30]], ["women's pregnancy center near me open now", 0, [22, 30]], ["women's health clinic near me open now", 0, [22, 30]], ["free women's clinic near me open now", 0, [22, 30]], ["women specialist clinic near me open now", 0, [22, 30]], ["women police station near me open now", 0, [22, 30]]], {"i": "women center near me open now", "q": "SY0ztWFnK40pPRBUmwwwG9qsfPM", "t": {"bpc": false, "tlw": false}}], "suggests": ["women center near me open now", "women's clinic near me open now", "women's clinic near me open now within 5 mi", "women's health center near me open now", "women's care center near me open now", "women's pregnancy center near me open now", "women's health clinic near me open now", "free women's clinic near me open now", "women specialist clinic near me open now", "women police station near me open now"], "self_loops": [0], "tags": {"i": "women center near me open now", "q": "SY0ztWFnK40pPRBUmwwwG9qsfPM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "woman doctor near me open now", "datetime": "2026-03-12 19:41:05.766731", "source": "google", "data": ["woman doctor near me open now", [["woman doctor near me open now", 0, [22, 30]], ["women doctor near me open now", 0, [22, 30]], ["women dr near me open now", 0, [22, 30]], ["women clinic near me open now", 0, [22, 10, 30]], ["lady doctor near me open now within 1.6 km", 0, [22, 30]], ["lady doctor near me open now within 800m", 0, [22, 30]], ["women specialist near me open now", 0, [22, 30]], ["women's clinic near me open now within 5 mi", 0, [22, 30]], ["female physician near me open now", 0, [22, 30]], ["lady doctor clinic near me open now", 0, [22, 30]]], {"i": "woman doctor near me open now", "q": "h0ooYzl9hBQJuCB47VfeD57bYa8", "t": {"bpc": false, "tlw": false}}], "suggests": ["woman doctor near me open now", "women doctor near me open now", "women dr near me open now", "women clinic near me open now", "lady doctor near me open now within 1.6 km", "lady doctor near me open now within 800m", "women specialist near me open now", "women's clinic near me open now within 5 mi", "female physician near me open now", "lady doctor clinic near me open now"], "self_loops": [0], "tags": {"i": "woman doctor near me open now", "q": "h0ooYzl9hBQJuCB47VfeD57bYa8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic near me open now", "datetime": "2026-03-12 19:41:07.133242", "source": "google", "data": ["women's health clinic near me open now", [["women's health clinic near me open now", 0, [22, 30]], ["women's health center near me open now", 0, [22, 30]], ["free women's health clinic near me open now", 0, [22, 30]], ["health clinic near me open now", 0, [512, 390, 650]], ["women's clinic open near me", 0, [512, 390, 650]], ["are there any medical clinics open today near me", 0, [512, 390, 650]], ["public clinic near me open", 0, [512, 390, 650]], ["women's clinic near me open on weekends", 0, [512, 546]], ["women's health clinic near me free", 0, [512, 546]], ["women's health clinic near me no insurance", 0, [512, 546]]], {"i": "women's health clinic near me open now", "q": "0rT8SLFpGaInqmselBTC9enC7cM", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health clinic near me open now", "women's health center near me open now", "free women's health clinic near me open now", "health clinic near me open now", "women's clinic open near me", "are there any medical clinics open today near me", "public clinic near me open", "women's clinic near me open on weekends", "women's health clinic near me free", "women's health clinic near me no insurance"], "self_loops": [0], "tags": {"i": "women's health clinic near me open now", "q": "0rT8SLFpGaInqmselBTC9enC7cM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women specialist clinic near me open now", "datetime": "2026-03-12 19:41:08.487661", "source": "google", "data": ["women specialist clinic near me open now", [["women specialist clinic near me open now", 0, [512]], ["women specialist doctor near me open now", 0, [22, 30]], ["female breast doctor specialist near me open now", 0, [22, 30]], ["public clinic near me open", 0, [512, 390, 650]], ["women's clinic open near me", 0, [512, 390, 650]], ["open doctors clinic near me", 0, [512, 390, 650]], ["women's specialist clinic", 0, [512, 546]], ["women's clinic near me open on weekends", 0, [512, 546]], ["woman specialist clinic", 0, [512, 546]], ["women's clinic near me walk-in", 0, [546, 649]]], {"i": "women specialist clinic near me open now", "q": "_k3zlqIi_lmwhCsuama0oM91IN0", "t": {"bpc": false, "tlw": false}}], "suggests": ["women specialist clinic near me open now", "women specialist doctor near me open now", "female breast doctor specialist near me open now", "public clinic near me open", "women's clinic open near me", "open doctors clinic near me", "women's specialist clinic", "women's clinic near me open on weekends", "woman specialist clinic", "women's clinic near me walk-in"], "self_loops": [0], "tags": {"i": "women specialist clinic near me open now", "q": "_k3zlqIi_lmwhCsuama0oM91IN0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in women's clinic near me open now", "datetime": "2026-03-12 19:41:09.513879", "source": "google", "data": ["walk in women's clinic near me open now", [["walk in women's clinic near me open now", 0, [22, 30]], ["walk in women's clinic open now", 0, [22, 30]], ["walk-in women's clinic near me", 0, [512, 390, 650]], ["are there any walk in clinics open near me", 0, [512, 390, 650]], ["what walk in clinics are open today", 0, [512, 390, 650]], ["walk in medical clinic near me open now", 0, [512, 390, 650]]], {"i": "walk in women's clinic near me open now", "q": "TlOvGQLSlIPBRJ6qTAaxwya0LCs", "t": {"bpc": false, "tlw": false}}], "suggests": ["walk in women's clinic near me open now", "walk in women's clinic open now", "walk-in women's clinic near me", "are there any walk in clinics open near me", "what walk in clinics are open today", "walk in medical clinic near me open now"], "self_loops": [0], "tags": {"i": "walk in women's clinic near me open now", "q": "TlOvGQLSlIPBRJ6qTAaxwya0LCs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "private abortion clinic near me open now", "datetime": "2026-03-12 19:41:10.663834", "source": "google", "data": ["private abortion clinic near me open now", [["private abortion clinic near me open now", 0, [22, 30]], ["private abortion clinic near me", 0, [512, 390, 650]], ["private abortion clinic cost", 0, [512, 390, 650]], ["abortion clinic near me open on saturday", 0, [751]], ["abortion clinic near me online appointment", 0, [751]], ["abortion clinic near me open sunday", 0, [751]]], {"i": "private abortion clinic near me open now", "q": "q0tUhh0t-SsOoFKVuZNYMvivjtk", "t": {"bpc": false, "tlw": false}}], "suggests": ["private abortion clinic near me open now", "private abortion clinic near me", "private abortion clinic cost", "abortion clinic near me open on saturday", "abortion clinic near me online appointment", "abortion clinic near me open sunday"], "self_loops": [0], "tags": {"i": "private abortion clinic near me open now", "q": "q0tUhh0t-SsOoFKVuZNYMvivjtk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "cheap abortion clinics near me open now", "datetime": "2026-03-12 19:41:11.980385", "source": "google", "data": ["cheap abortion clinics near me open now", [["cheap abortion clinics near me open now", 0, [512]], ["free abortion clinics near me open now", 0, [22, 30]], ["abortion clinics near me open now", 0, [22, 30]], ["abortion clinic near me open now within 8.1 km", 0, [22, 30]], ["abortion clinic near me open now within 20 mi", 0, [22, 30]], ["abortion clinic near me open now within 5 mi", 0, [22, 30]], ["abortion doctors near me open now", 0, [22, 30]], ["surgical abortion clinics near me open now", 0, [22, 30]], ["termination clinics near me open now", 0, [22, 30]], ["private abortion clinic near me open now", 0, [22, 30]]], {"i": "cheap abortion clinics near me open now", "q": "ts1hAeooPh-FgWlIYSMkkQQ12Sk", "t": {"bpc": false, "tlw": false}}], "suggests": ["cheap abortion clinics near me open now", "free abortion clinics near me open now", "abortion clinics near me open now", "abortion clinic near me open now within 8.1 km", "abortion clinic near me open now within 20 mi", "abortion clinic near me open now within 5 mi", "abortion doctors near me open now", "surgical abortion clinics near me open now", "termination clinics near me open now", "private abortion clinic near me open now"], "self_loops": [0], "tags": {"i": "cheap abortion clinics near me open now", "q": "ts1hAeooPh-FgWlIYSMkkQQ12Sk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "safe abortion clinic near me open now", "datetime": "2026-03-12 19:41:13.453674", "source": "google", "data": ["safe abortion clinic near me open now", [["safe abortion clinic near me open now", 0, [22, 30]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic open near me", 0, [512, 390, 650]], ["abortion clinic open on saturday near me", 0, [512, 390, 650]], ["abortion clinic for free near me", 0, [512, 390, 650]], ["abortion clinic near me open sunday", 0, [751]]], {"i": "safe abortion clinic near me open now", "q": "-DNN13KvqrxHFObS-hyoi3D6u-Y", "t": {"bpc": false, "tlw": false}}], "suggests": ["safe abortion clinic near me open now", "abortion clinic near me now", "abortion clinic open near me", "abortion clinic open on saturday near me", "abortion clinic for free near me", "abortion clinic near me open sunday"], "self_loops": [0], "tags": {"i": "safe abortion clinic near me open now", "q": "-DNN13KvqrxHFObS-hyoi3D6u-Y", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion center near me open now", "datetime": "2026-03-12 19:41:14.421842", "source": "google", "data": ["free abortion center near me open now", [["free abortion center near me open now", 0, [22, 30]], ["free abortion centers near me", 0, [512, 390, 650]], ["free abortion clinics near me", 0, [512, 390, 650]]], {"i": "free abortion center near me open now", "q": "-8W3I2CX-WsU3_7f0vWcaI-kXr8", "t": {"bpc": false, "tlw": false}}], "suggests": ["free abortion center near me open now", "free abortion centers near me", "free abortion clinics near me"], "self_loops": [0], "tags": {"i": "free abortion center near me open now", "q": "-8W3I2CX-WsU3_7f0vWcaI-kXr8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion center near me open now", "datetime": "2026-03-12 19:41:15.773331", "source": "google", "data": ["abortion center near me open now", [["abortion center near me open now", 0, [22, 30]], ["abortion clinic near me open now", 0, [22, 30]], ["abortion hospital near me open now", 0, [22, 30]], ["abortion clinic near me open now within 8.1 km", 0, [22, 30]], ["abortion services near me open now", 0, [22, 30]], ["abortion clinic near me open now within 20 mi", 0, [22, 30]], ["abortion clinic near me open now within 5 mi", 0, [22, 30]], ["free abortion center near me open now", 0, [22, 30]], ["abortion clinic near me open today", 0, [22, 30]], ["private abortion clinic near me open now", 0, [22, 30]]], {"i": "abortion center near me open now", "q": "nb04JzMFSNuNG6z3AcwyKZBb9Zc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion center near me open now", "abortion clinic near me open now", "abortion hospital near me open now", "abortion clinic near me open now within 8.1 km", "abortion services near me open now", "abortion clinic near me open now within 20 mi", "abortion clinic near me open now within 5 mi", "free abortion center near me open now", "abortion clinic near me open today", "private abortion clinic near me open now"], "self_loops": [0], "tags": {"i": "abortion center near me open now", "q": "nb04JzMFSNuNG6z3AcwyKZBb9Zc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic open near me", "datetime": "2026-03-12 19:41:16.843536", "source": "google", "data": ["women's clinic open near me", [["women's clinic open near me", 0, [512]], ["women's clinic open saturday near me", 0, [22, 30]], ["women's health clinic open near me", 0, [22, 10, 30]], ["women's clinic open now near me", 0, [22, 30]], ["women's clinic open on sunday near me", 0, [22, 30]], ["women's clinics open on weekends near me", 0, [22, 30]], ["women's clinic near me open now within 5 mi", 0, [22, 30]], ["women's health clinic near me open now", 0, [22, 30]], ["free women's clinic near me open now", 0, [22, 30]], ["women specialist clinic near me open now", 0, [22, 30]]], {"i": "women's clinic open near me", "q": "3YDVkAoBd4MSDi0mcN6E_vra87Y", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic open near me", "women's clinic open saturday near me", "women's health clinic open near me", "women's clinic open now near me", "women's clinic open on sunday near me", "women's clinics open on weekends near me", "women's clinic near me open now within 5 mi", "women's health clinic near me open now", "free women's clinic near me open now", "women specialist clinic near me open now"], "self_loops": [0], "tags": {"i": "women's clinic open near me", "q": "3YDVkAoBd4MSDi0mcN6E_vra87Y", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "24 hour women's clinic near me", "datetime": "2026-03-12 19:41:18.141840", "source": "google", "data": ["24 hour women's clinic near me", [["24 hour women's clinic near me", 0, [512]], ["24 hour clinic near me", 0, [512, 390, 650]], ["same day women's clinic near me", 0, [512, 390, 650]], ["24 clinic near me", 0, [512, 390, 650]], ["24/7 women's clinic", 0, [751]], ["walk-in women's clinic near me", 0, [512, 546]], ["24 hour gynecologist clinic", 0, [512, 546]]], {"i": "24 hour women's clinic near me", "q": "TJV1y1w-hgDLbh1WGHNPu0j1qUs", "t": {"bpc": false, "tlw": false}}], "suggests": ["24 hour women's clinic near me", "24 hour clinic near me", "same day women's clinic near me", "24 clinic near me", "24/7 women's clinic", "walk-in women's clinic near me", "24 hour gynecologist clinic"], "self_loops": [0], "tags": {"i": "24 hour women's clinic near me", "q": "TJV1y1w-hgDLbh1WGHNPu0j1qUs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic near me no insurance", "datetime": "2026-03-12 19:41:19.387477", "source": "google", "data": ["women's clinic near me no insurance", [["women's clinic near me no insurance", 0, [512]], ["free women's clinic near me no insurance", 0, [22, 30]], ["women's health clinic near me no insurance", 0, [22, 30]], ["what clinic can i go to without insurance", 0, [512, 390, 650]]], {"i": "women's clinic near me no insurance", "q": "NUn5BlyHRETdYkJuszzNs7Ofs8w", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic near me no insurance", "free women's clinic near me no insurance", "women's health clinic near me no insurance", "what clinic can i go to without insurance"], "self_loops": [0], "tags": {"i": "women's clinic near me no insurance", "q": "NUn5BlyHRETdYkJuszzNs7Ofs8w", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic near me open on weekends", "datetime": "2026-03-12 19:41:20.269308", "source": "google", "data": ["women's clinic near me open on weekends", [["women's clinic near me open on weekends", 0, [512]], ["women's clinic near me open saturday", 0, [22, 30]], ["women's clinic open near me", 0, [512, 390, 650]], ["are clinics open on weekends", 0, [512, 390, 650]]], {"i": "women's clinic near me open on weekends", "q": "hSTpPNs98nfFzfIueqp3U1h0hGA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic near me open on weekends", "women's clinic near me open saturday", "women's clinic open near me", "are clinics open on weekends"], "self_loops": [0], "tags": {"i": "women's clinic near me open on weekends", "q": "hSTpPNs98nfFzfIueqp3U1h0hGA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic open on saturday near me", "datetime": "2026-03-12 19:41:21.113960", "source": "google", "data": ["women's clinic open on saturday near me", [["women's clinic open on saturday near me", 0, [512]], ["women's clinic open near me", 0, [22, 10, 30]], ["women's clinic open now near me", 0, [22, 30]], ["women's clinics open on weekends near me", 0, [512, 390, 650]], ["what clinic is open on saturday", 0, [512, 390, 650]]], {"i": "women's clinic open on saturday near me", "q": "GKaunrrOYLlTQK7i27B3KspaAiA", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic open on saturday near me", "women's clinic open near me", "women's clinic open now near me", "women's clinics open on weekends near me", "what clinic is open on saturday"], "self_loops": [0], "tags": {"i": "women's clinic open on saturday near me", "q": "GKaunrrOYLlTQK7i27B3KspaAiA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me price", "datetime": "2026-03-12 19:41:22.467230", "source": "google", "data": ["abortion clinic near me price", [["abortion clinic near me prices", 0, [512]], ["abortion clinic near me prices open now", 0, [22, 30]], ["cat abortion clinic near me prices", 0, [22, 30]], ["abortion clinics near me and prices within 8.1 km", 0, [22, 30]], ["abortion clinics near me and prices within 32.2 km", 0, [22, 30]], ["women's clinic near me cheap", 0, [22, 30]], ["abortion clinic near me low cost", 0, [22, 30]], ["women's clinic near me low cost", 0, [22, 30]], ["unjani clinic near me abortion price", 0, [22, 30]], ["private abortion clinic in kl price near me", 0, [22, 30]]], {"i": "abortion clinic near me price", "q": "QrqfABF1z2U30ITXMzlt4P0wmFE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic near me prices", "abortion clinic near me prices open now", "cat abortion clinic near me prices", "abortion clinics near me and prices within 8.1 km", "abortion clinics near me and prices within 32.2 km", "women's clinic near me cheap", "abortion clinic near me low cost", "women's clinic near me low cost", "unjani clinic near me abortion price", "private abortion clinic in kl price near me"], "self_loops": [], "tags": {"i": "abortion clinic near me price", "q": "QrqfABF1z2U30ITXMzlt4P0wmFE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "cat abortion clinic near me", "datetime": "2026-03-12 19:41:23.998509", "source": "google", "data": ["cat abortion clinic near me", [["cat abortion clinic near me", 0, [512]], ["cat abortion clinic near me prices", 0, [22, 30]], ["free cat abortion clinic near me", 0, [22, 30]]], {"i": "cat abortion clinic near me", "q": "yvPZEbkQG8-f4aCjCTUh6gxRI30", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["cat abortion clinic near me", "cat abortion clinic near me prices", "free cat abortion clinic near me"], "self_loops": [0], "tags": {"i": "cat abortion clinic near me", "q": "yvPZEbkQG8-f4aCjCTUh6gxRI30", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me and prices", "datetime": "2026-03-12 19:41:25.438447", "source": "google", "data": ["abortion clinic near me and prices", [["abortion clinic near me and prices", 0, [512]], ["abortion clinics near me and prices open now", 0, [22, 30]], ["abortion clinics near me and prices within 8.1 km", 0, [22, 30]], ["abortion clinics near me and prices within 32.2 km", 0, [22, 30]], ["cat abortion clinic near me prices", 0, [22, 30]], ["abortion clinic near me low cost", 0, [22, 30]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic near me how much", 0, [512, 546]], ["abortion clinic near me cost", 0, [512, 546]], ["abortion clinic near me same day", 0, [512, 546]]], {"i": "abortion clinic near me and prices", "q": "SIIFyx9rVylXQi41VOCcp71iUEA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic near me and prices", "abortion clinics near me and prices open now", "abortion clinics near me and prices within 8.1 km", "abortion clinics near me and prices within 32.2 km", "cat abortion clinic near me prices", "abortion clinic near me low cost", "abortion clinic near me for free", "abortion clinic near me how much", "abortion clinic near me cost", "abortion clinic near me same day"], "self_loops": [0], "tags": {"i": "abortion clinic near me and prices", "q": "SIIFyx9rVylXQi41VOCcp71iUEA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics near me cost", "datetime": "2026-03-12 19:41:26.519391", "source": "google", "data": ["abortion clinics near me cost", [["abortion clinics near me cost", 0, [22, 30]], ["abortion clinic near me prices open now", 0, [22, 30]], ["abortion clinics near me and prices within 8.1 km", 0, [22, 30]], ["abortion clinics near me and prices within 32.2 km", 0, [22, 30]], ["cat abortion clinic near me prices", 0, [22, 30]], ["abortion clinics near me and prices", 0, [512, 390, 650]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinics near me no insurance", 0, [512, 546]], ["abortion clinics near me that accept insurance", 0, [751]], ["abortion clinics near me open", 0, [751]]], {"i": "abortion clinics near me cost", "q": "ncTlTgk0LqmNuN4KLbEPCAr58wM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics near me cost", "abortion clinic near me prices open now", "abortion clinics near me and prices within 8.1 km", "abortion clinics near me and prices within 32.2 km", "cat abortion clinic near me prices", "abortion clinics near me and prices", "abortion clinic near me for free", "abortion clinics near me no insurance", "abortion clinics near me that accept insurance", "abortion clinics near me open"], "self_loops": [0], "tags": {"i": "abortion clinics near me cost", "q": "ncTlTgk0LqmNuN4KLbEPCAr58wM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics near me that accept insurance", "datetime": "2026-03-12 19:41:27.614433", "source": "google", "data": ["abortion clinics near me that accept insurance", [["abortion clinics near me that accept insurance", 0, [22, 30]], ["abortion clinic near me insurance", 0, [22, 30]], ["abortion clinics near me no insurance", 0, [22, 30]], ["do abortion clinics take insurance", 0, [512, 390, 650]], ["abortion clinics near me that take medicaid", 0, [751]]], {"i": "abortion clinics near me that accept insurance", "q": "DdNzhPfHeP2tM-N6o1QUgAJaCr0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics near me that accept insurance", "abortion clinic near me insurance", "abortion clinics near me no insurance", "do abortion clinics take insurance", "abortion clinics near me that take medicaid"], "self_loops": [0], "tags": {"i": "abortion clinics near me that accept insurance", "q": "DdNzhPfHeP2tM-N6o1QUgAJaCr0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics near me and prices", "datetime": "2026-03-12 19:41:28.695409", "source": "google", "data": ["abortion clinics near me and prices", [["abortion clinics near me and prices", 0, [512]], ["abortion clinics near me and prices open now", 0, [512]], ["abortion clinics near me and prices within 8.1 km", 0, [22, 30]], ["abortion clinics near me and prices within 32.2 km", 0, [22, 30]], ["cat abortion clinic near me prices", 0, [22, 30]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinics near me cost", 0, [751]], ["abortion clinics near me no insurance", 0, [512, 546]], ["abortion clinics near me that accept insurance", 0, [751]]], {"i": "abortion clinics near me and prices", "q": "tCtH97H8BbwHARbKA1ymz7TrkvQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinics near me and prices", "abortion clinics near me and prices open now", "abortion clinics near me and prices within 8.1 km", "abortion clinics near me and prices within 32.2 km", "cat abortion clinic near me prices", "abortion clinic near me for free", "abortion clinics near me cost", "abortion clinics near me no insurance", "abortion clinics near me that accept insurance"], "self_loops": [0], "tags": {"i": "abortion clinics near me and prices", "q": "tCtH97H8BbwHARbKA1ymz7TrkvQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics near me free", "datetime": "2026-03-12 19:41:29.714508", "source": "google", "data": ["abortion clinics near me free", [["abortion clinics near me free", 0, [512]], ["abortion pill clinic near me free", 0, [22, 30]], ["free abortion clinics near me open now", 0, [22, 30]], ["free abortion clinic near me volunteer", 0, [22, 30]], ["free abortion clinic near me within 5 mi", 0, [22, 30]], ["free abortion clinic near me within 20 mi", 0, [22, 30]], ["abortion clinic near freeport il", 0, [22, 30]], ["free abortion clinic near me within 8.1 km", 0, [22, 30]], ["is there free abortion clinics near me", 0, [22, 30]], ["abortion clinics near me no insurance", 0, [512, 546]]], {"i": "abortion clinics near me free", "q": "CY5GpcyNxdXQKGxwRrBj8-uvJN0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinics near me free", "abortion pill clinic near me free", "free abortion clinics near me open now", "free abortion clinic near me volunteer", "free abortion clinic near me within 5 mi", "free abortion clinic near me within 20 mi", "abortion clinic near freeport il", "free abortion clinic near me within 8.1 km", "is there free abortion clinics near me", "abortion clinics near me no insurance"], "self_loops": [0], "tags": {"i": "abortion clinics near me free", "q": "CY5GpcyNxdXQKGxwRrBj8-uvJN0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics near me now", "datetime": "2026-03-12 19:41:31.013605", "source": "google", "data": ["abortion clinics near me now", [["abortion clinics near me now", 0, [22, 457, 30]], ["abortion clinics san francisco", 0, [512, 402, 650]], ["abortion clinic near me today", 0, [22, 30]], ["abortion clinics near me open now", 0, [22, 30]], ["abortion clinic near me open now within 8.1 km", 0, [22, 30]], ["abortion clinic near me open now within 20 mi", 0, [22, 30]], ["abortion clinic near me open now within 5 mi", 0, [22, 30]], ["abortion centers near me open now", 0, [22, 30]], ["abortion doctors near me open now", 0, [22, 30]], ["abortion clinic near me prices open now", 0, [22, 30]]], {"i": "abortion clinics near me now", "q": "e_Z2ohUeyXIZ0QIjMHzvN0bvf_g", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics near me now", "abortion clinics san francisco", "abortion clinic near me today", "abortion clinics near me open now", "abortion clinic near me open now within 8.1 km", "abortion clinic near me open now within 20 mi", "abortion clinic near me open now within 5 mi", "abortion centers near me open now", "abortion doctors near me open now", "abortion clinic near me prices open now"], "self_loops": [0], "tags": {"i": "abortion clinics near me now", "q": "e_Z2ohUeyXIZ0QIjMHzvN0bvf_g", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "cheap abortion clinics near me", "datetime": "2026-03-12 19:41:32.416604", "source": "google", "data": ["cheap abortion clinics near me", [["cheap abortion clinics near me", 0, [512]], ["cheap abortion clinics near me open now", 0, [512]], ["free abortion clinics near me", 0, [22, 30]], ["abortion clinics near me", 0, [22, 30]], ["abortion clinics near me and prices", 0, [22, 30]], ["abortion clinics near me open now", 0, [22, 30]], ["abortion clinics near me nhs", 0, [22, 30]], ["abortion clinics near me same day", 0, [22, 30]], ["abortion clinics near me legal", 0, [22, 30]], ["abortion clinic near me bulk bill", 0, [22, 30]]], {"i": "cheap abortion clinics near me", "q": "RolWcTWS7mFNVW0DdgtRRU8h2E0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["cheap abortion clinics near me", "cheap abortion clinics near me open now", "free abortion clinics near me", "abortion clinics near me", "abortion clinics near me and prices", "abortion clinics near me open now", "abortion clinics near me nhs", "abortion clinics near me same day", "abortion clinics near me legal", "abortion clinic near me bulk bill"], "self_loops": [0], "tags": {"i": "cheap abortion clinics near me", "q": "RolWcTWS7mFNVW0DdgtRRU8h2E0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "low cost women's health clinic near me", "datetime": "2026-03-12 19:41:33.707351", "source": "google", "data": ["low cost women's health clinic near me", [["low cost women's health clinic near me", 0, [512]], ["low cost women's clinic near me", 0, [512, 390, 650]], ["women's clinic near me no insurance", 0, [512, 390, 650]], ["women's health free clinic near me", 0, [512, 390, 650]], ["low income women's health clinic near me", 0, [512, 546]]], {"i": "low cost women's health clinic near me", "q": "kpvQLr1fcZZSBeczYq3biGYoqME", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["low cost women's health clinic near me", "low cost women's clinic near me", "women's clinic near me no insurance", "women's health free clinic near me", "low income women's health clinic near me"], "self_loops": [0], "tags": {"i": "low cost women's health clinic near me", "q": "kpvQLr1fcZZSBeczYq3biGYoqME", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free or low cost women's clinic near me", "datetime": "2026-03-12 19:41:34.579153", "source": "google", "data": ["free or low cost women's clinic near me", [["free or low cost women's clinic near me", 0, [512]], ["low cost women's clinic near me", 0, [512, 390, 650]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["clinic with low cost", 0, [512, 390, 650]], ["free or low cost gynecologist near me", 0, [512, 546]], ["free or low cost obgyn", 0, [512, 546]], ["free or low cost clinics near me", 0, [512, 546]], ["free or low cost doctors near me", 0, [512, 546]]], {"i": "free or low cost women's clinic near me", "q": "-JrD31pfHyWQemYfKOXEkzXT6VU", "t": {"bpc": false, "tlw": false}}], "suggests": ["free or low cost women's clinic near me", "low cost women's clinic near me", "free women's clinic near me no insurance", "clinic with low cost", "free or low cost gynecologist near me", "free or low cost obgyn", "free or low cost clinics near me", "free or low cost doctors near me"], "self_loops": [0], "tags": {"i": "free or low cost women's clinic near me", "q": "-JrD31pfHyWQemYfKOXEkzXT6VU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "no cost abortion clinic near me", "datetime": "2026-03-12 19:41:35.478136", "source": "google", "data": ["no cost abortion clinic near me", [["no cost abortion clinic near me", 0, [512]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["cheap abortion clinics near me", 0, [512, 390, 650]], ["closest abortion clinic near me", 0, [512, 390, 650]], ["abortion clinics near me no insurance", 0, [512, 546]]], {"i": "no cost abortion clinic near me", "q": "jqCKbP8AyAF7-DtpFgbpIJZyS10", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["no cost abortion clinic near me", "abortion clinic near me for free", "cheap abortion clinics near me", "closest abortion clinic near me", "abortion clinics near me no insurance"], "self_loops": [0], "tags": {"i": "no cost abortion clinic near me", "q": "jqCKbP8AyAF7-DtpFgbpIJZyS10", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic near me free", "datetime": "2026-03-12 19:41:36.964676", "source": "google", "data": ["women's health clinic near me free", [["women's health clinic near me free", 0, [512]], ["free women's health clinic near me open now", 0, [22, 30]], ["free women's health care near me", 0, [22, 30]], ["free women's health services near me", 0, [22, 10, 30]], ["free women's health center near me", 0, [22, 10, 30]], ["list of free clinics near me", 0, [512, 390, 650]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["are free clinics really free", 0, [512, 390, 650]], ["women's health clinic near me no insurance", 0, [512, 546]], ["women's clinic near me free", 0, [512, 546]]], {"i": "women's health clinic near me free", "q": "pfUaGEfn1H1mljBMnGagLbR7FxY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's health clinic near me free", "free women's health clinic near me open now", "free women's health care near me", "free women's health services near me", "free women's health center near me", "list of free clinics near me", "free women's clinic near me no insurance", "are free clinics really free", "women's health clinic near me no insurance", "women's clinic near me free"], "self_loops": [0], "tags": {"i": "women's health clinic near me free", "q": "pfUaGEfn1H1mljBMnGagLbR7FxY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic near me for ultrasound", "datetime": "2026-03-12 19:41:38.118302", "source": "google", "data": ["women's clinic near me for ultrasound", [["women's clinic near me for ultrasound", 0, [512]], ["women's clinic near me free ultrasound", 0, [22, 30]], ["women's center near me free ultrasound", 0, [22, 30]], ["open ultrasound clinic near me", 0, [512, 390, 650]], ["do free clinics do ultrasounds", 0, [512, 390, 650]], ["can i open my own ultrasound clinic", 0, [512, 390, 650]], ["women's clinic near me walk-in", 0, [546, 649]]], {"i": "women's clinic near me for ultrasound", "q": "c3JYOdI4fgTdy8-HBcBTl6G8XDI", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic near me for ultrasound", "women's clinic near me free ultrasound", "women's center near me free ultrasound", "open ultrasound clinic near me", "do free clinics do ultrasounds", "can i open my own ultrasound clinic", "women's clinic near me walk-in"], "self_loops": [0], "tags": {"i": "women's clinic near me for ultrasound", "q": "c3JYOdI4fgTdy8-HBcBTl6G8XDI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free ultrasound clinic near me", "datetime": "2026-03-12 19:41:38.946656", "source": "google", "data": ["free ultrasound clinic near me", [["free ultrasound clinic near me", 0, [512]], ["free ultrasound clinic near me without insurance", 0, [512]], ["free ultrasound clinic near me open now", 0, [512]], ["free ultrasound clinic near me within 5 mi", 0, [512]], ["free pregnancy test clinic near me", 0, [22, 30]], ["free ultrasound places near me", 0, [22, 30]], ["free pregnancy test clinic near me open now", 0, [22, 30]], ["free pregnancy test clinic near me within 5 mi", 0, [22, 30]], ["free pregnancy test clinics near me open on saturday", 0, [22, 30]], ["free pregnancy test center near me", 0, [22, 30]]], {"i": "free ultrasound clinic near me", "q": "OvzQ1WSCqkdSKNQ-kKQLLekI3Ro", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free ultrasound clinic near me", "free ultrasound clinic near me without insurance", "free ultrasound clinic near me open now", "free ultrasound clinic near me within 5 mi", "free pregnancy test clinic near me", "free ultrasound places near me", "free pregnancy test clinic near me open now", "free pregnancy test clinic near me within 5 mi", "free pregnancy test clinics near me open on saturday", "free pregnancy test center near me"], "self_loops": [0], "tags": {"i": "free ultrasound clinic near me", "q": "OvzQ1WSCqkdSKNQ-kKQLLekI3Ro", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "where can i go get a free ultrasound", "datetime": "2026-03-12 19:41:39.801625", "source": "google", "data": ["where can i go get a free ultrasound", [["where can i go get a free ultrasound", 0, [512]], ["where can i go to get a free ultrasound near me", 0, [22, 30]], ["where can i go get a free pregnancy test", 0, [22, 30]], ["where can i go to get a free pregnancy test and ultrasound", 0, [22, 30]], ["where can i get a free ultrasound today", 0, [22, 30]], ["where can i get a free ultrasound to confirm pregnancy", 0, [22, 30]], ["where can i get a free ultrasound without insurance", 0, [22, 30]], ["where can i get a free ultrasound done near me", 0, [22, 30]], ["where can i go for a free blood pregnancy test", 0, [22, 30]], ["where can i go to get a free pregnancy test near me", 0, [22, 30]]], {"i": "where can i go get a free ultrasound", "q": "CzDXLxW4yv-1ZhkTF5gYFmnPBcM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["where can i go get a free ultrasound", "where can i go to get a free ultrasound near me", "where can i go get a free pregnancy test", "where can i go to get a free pregnancy test and ultrasound", "where can i get a free ultrasound today", "where can i get a free ultrasound to confirm pregnancy", "where can i get a free ultrasound without insurance", "where can i get a free ultrasound done near me", "where can i go for a free blood pregnancy test", "where can i go to get a free pregnancy test near me"], "self_loops": [0], "tags": {"i": "where can i go get a free ultrasound", "q": "CzDXLxW4yv-1ZhkTF5gYFmnPBcM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's free ultrasound", "datetime": "2026-03-12 19:41:40.749212", "source": "google", "data": ["women's free ultrasound", [["women's free ultrasound", 0, [512]], ["women's free pregnancy test", 0, [22, 30]], ["women's center free ultrasound", 0, [22, 30]], ["women's clinic free ultrasound", 0, [22, 30]], ["women's clinic free ultrasound near me", 0, [22, 30]], ["women's health free ultrasound", 0, [22, 10, 30]], ["women's care free ultrasound", 0, [22, 10, 30]], ["women's center free ultrasound near me", 0, [22, 30]], ["women's care center free ultrasound", 0, [22, 30]], ["women's health center free ultrasound", 0, [22, 30]]], {"i": "women's free ultrasound", "q": "LQ1PLr4CAufPVHIiYICaT4DnqZo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's free ultrasound", "women's free pregnancy test", "women's center free ultrasound", "women's clinic free ultrasound", "women's clinic free ultrasound near me", "women's health free ultrasound", "women's care free ultrasound", "women's center free ultrasound near me", "women's care center free ultrasound", "women's health center free ultrasound"], "self_loops": [0], "tags": {"i": "women's free ultrasound", "q": "LQ1PLr4CAufPVHIiYICaT4DnqZo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "where can i get an ultrasound near me for free", "datetime": "2026-03-12 19:41:41.996499", "source": "google", "data": ["where can i get an ultrasound near me for free", [["where can i get an ultrasound near me for free", 0, [512]], ["where to get an ultrasound near me free", 0, [22, 30]], ["where can i get a free pregnancy ultrasound near me", 0, [22, 30]], ["where can i get a free sonogram near me", 0, [22, 30]], ["where can i go to get an ultrasound for free", 0, [512, 390, 650]], ["where can i get an ultrasound without insurance near me", 0, [512, 390, 650]], ["where can i get an ultrasound near me today", 0, [512, 546]], ["where can i get an ultrasound without a referral near me", 0, [512, 546]]], {"i": "where can i get an ultrasound near me for free", "q": "DwmCxpauLbIlALwLu0bX1N8DlWs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["where can i get an ultrasound near me for free", "where to get an ultrasound near me free", "where can i get a free pregnancy ultrasound near me", "where can i get a free sonogram near me", "where can i go to get an ultrasound for free", "where can i get an ultrasound without insurance near me", "where can i get an ultrasound near me today", "where can i get an ultrasound without a referral near me"], "self_loops": [0], "tags": {"i": "where can i get an ultrasound near me for free", "q": "DwmCxpauLbIlALwLu0bX1N8DlWs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's center ultrasound", "datetime": "2026-03-12 19:41:43.509666", "source": "google", "data": ["women's center ultrasound", [["women's center ultrasound", 0, [512]], ["women's center ultrasound near me", 0, [512]], ["women's ultrasound center photos", 0, [22, 30]], ["women's ultrasound center laoag city", 0, [22, 30]], ["women's ultrasound center reviews", 0, [22, 30]], ["women's ultrasound center cdo", 0, [22, 30]], ["women's clinic ultrasound", 0, [22, 30]], ["women's clinic ultrasound near me", 0, [22, 30]], ["women's center imaging", 0, [22, 30]], ["women's center free ultrasound", 0, [22, 30]]], {"i": "women's center ultrasound", "q": "Kd0JcWZi7pwA0t7EovguXbXHhJg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's center ultrasound", "women's center ultrasound near me", "women's ultrasound center photos", "women's ultrasound center laoag city", "women's ultrasound center reviews", "women's ultrasound center cdo", "women's clinic ultrasound", "women's clinic ultrasound near me", "women's center imaging", "women's center free ultrasound"], "self_loops": [0], "tags": {"i": "women's center ultrasound", "q": "Kd0JcWZi7pwA0t7EovguXbXHhJg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health center free ultrasound", "datetime": "2026-03-12 19:41:44.805951", "source": "google", "data": ["women's health center free ultrasound", [["women's health center free ultrasound", 0, [512]], ["women's health center free pregnancy test", 0, [22, 10, 30]], ["women's health clinic free pregnancy test", 0, [22, 30]], ["women's care center free ultrasound", 0, [22, 30]], ["women's clinic near me for ultrasound", 0, [512, 390, 650]], ["can i get a free ultrasound", 0, [512, 390, 650]], ["where can i go get a free ultrasound", 0, [512, 390, 650]], ["how to get a free ultrasound", 0, [512, 390, 650]], ["women's center free ultrasound", 0, [512, 546]], ["women's health center ultrasound", 0, [512, 546]]], {"i": "women's health center free ultrasound", "q": "fsQdV4yGsWAfiHGvm_3x47ckQNE", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health center free ultrasound", "women's health center free pregnancy test", "women's health clinic free pregnancy test", "women's care center free ultrasound", "women's clinic near me for ultrasound", "can i get a free ultrasound", "where can i go get a free ultrasound", "how to get a free ultrasound", "women's center free ultrasound", "women's health center ultrasound"], "self_loops": [0], "tags": {"i": "women's health center free ultrasound", "q": "fsQdV4yGsWAfiHGvm_3x47ckQNE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women clinic near me free", "datetime": "2026-03-12 19:41:45.773523", "source": "google", "data": ["women clinic near me free", [["women clinic near me free", 0, [512]], ["women's clinic near me free ultrasound", 0, [22, 30]], ["women's center near me free ultrasound", 0, [22, 30]], ["women center near me free", 0, [22, 30]], ["women's health clinic near me free", 0, [22, 30]], ["walk in women's clinic near me free", 0, [22, 30]], ["free women's clinic near me no insurance", 0, [22, 30]], ["free women's clinic near me open now", 0, [22, 30]], ["free women's clinic near me within 5 mi", 0, [22, 30]], ["free women's clinic near me within 1 mi", 0, [22, 30]]], {"i": "women clinic near me free", "q": "x7PDbES1HKvpWAi9XD8phjzU9is", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women clinic near me free", "women's clinic near me free ultrasound", "women's center near me free ultrasound", "women center near me free", "women's health clinic near me free", "walk in women's clinic near me free", "free women's clinic near me no insurance", "free women's clinic near me open now", "free women's clinic near me within 5 mi", "free women's clinic near me within 1 mi"], "self_loops": [0], "tags": {"i": "women clinic near me free", "q": "x7PDbES1HKvpWAi9XD8phjzU9is", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in women's clinic near me free", "datetime": "2026-03-12 19:41:46.766178", "source": "google", "data": ["walk in women's clinic near me free", [["walk in women's clinic near me free", 0, [22, 30]], ["walk-in women's clinic near me", 0, [512, 390, 650]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["what clinic can i go to without insurance", 0, [512, 390, 650]], ["walk-in women's clinic no insurance", 0, [751]]], {"i": "walk in women's clinic near me free", "q": "U4l5Huk-rGsFPHTf7xiflZTeIvI", "t": {"bpc": false, "tlw": false}}], "suggests": ["walk in women's clinic near me free", "walk-in women's clinic near me", "free women's clinic near me no insurance", "what clinic can i go to without insurance", "walk-in women's clinic no insurance"], "self_loops": [0], "tags": {"i": "walk in women's clinic near me free", "q": "U4l5Huk-rGsFPHTf7xiflZTeIvI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's donation center near me", "datetime": "2026-03-12 19:41:47.884115", "source": "google", "data": ["free women's donation center near me", [["free women's donation center near me", 0, [22, 30]], ["free women's clothing donation center near me", 0, [22, 30]], ["free women's refuge donation drop off near me", 0, [22, 30]], ["free women's shelter donation drop off near me", 0, [22, 10, 30]], ["women's donation center near me", 0, [512, 390, 650]], ["where can i get free donated clothes", 0, [512, 390, 650]], ["where to get donated clothes for free", 0, [512, 390, 650]], ["women's shelters near me that accept clothing donations", 0, [512, 390, 650]], ["free women's center near me", 0, [512, 546]], ["donation center for women's shelter near me", 0, [512, 546]]], {"i": "free women's donation center near me", "q": "umYQ5QDBSPIAvCezg7GnC04R4p0", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's donation center near me", "free women's clothing donation center near me", "free women's refuge donation drop off near me", "free women's shelter donation drop off near me", "women's donation center near me", "where can i get free donated clothes", "where to get donated clothes for free", "women's shelters near me that accept clothing donations", "free women's center near me", "donation center for women's shelter near me"], "self_loops": [0], "tags": {"i": "free women's donation center near me", "q": "umYQ5QDBSPIAvCezg7GnC04R4p0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free women's care center near me", "datetime": "2026-03-12 19:41:49.369377", "source": "google", "data": ["free women's care center near me", [["free women's care center near me", 0, [22, 30]], ["free women's health center near me", 0, [22, 10, 30]], ["free women's care clinic near me", 0, [22, 10, 30]], ["free women's health clinic near me", 0, [22, 30]], ["free women's health clinic near me open now", 0, [22, 30]], ["free women's center near me", 0, [512, 390, 650]], ["free women's clinic near me no insurance", 0, [512, 390, 650]], ["free women's clinics near me", 0, [512, 390, 650]], ["free women's care near me", 0, [512, 546]], ["free women's health care clinics near me", 0, [546, 649]]], {"i": "free women's care center near me", "q": "oTj3yITaJhE9q9-Kibh5OUXyVlk", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's care center near me", "free women's health center near me", "free women's care clinic near me", "free women's health clinic near me", "free women's health clinic near me open now", "free women's center near me", "free women's clinic near me no insurance", "free women's clinics near me", "free women's care near me", "free women's health care clinics near me"], "self_loops": [0], "tags": {"i": "free women's care center near me", "q": "oTj3yITaJhE9q9-Kibh5OUXyVlk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion center near me", "datetime": "2026-03-12 19:41:50.734168", "source": "google", "data": ["free abortion center near me", [["free abortion center near me", 0, [512]], ["free abortion center near me open now", 0, [22, 30]], ["free abortion clinic near me", 0, [22, 30]], ["free abortion hospital near me", 0, [22, 30]], ["free abortion clinic near me volunteer", 0, [22, 30]], ["free abortion clinic near me within 5 mi", 0, [22, 30]], ["free abortion clinic near me within 20 mi", 0, [22, 30]], ["free abortion clinic near me within 8.1 km", 0, [22, 30]], ["free abortion pill center near me", 0, [22, 30]], ["free government abortion clinic near me", 0, [22, 30]]], {"i": "free abortion center near me", "q": "fN4wb8a-rWcJmtVfHNnU6oZ8WbE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free abortion center near me", "free abortion center near me open now", "free abortion clinic near me", "free abortion hospital near me", "free abortion clinic near me volunteer", "free abortion clinic near me within 5 mi", "free abortion clinic near me within 20 mi", "free abortion clinic near me within 8.1 km", "free abortion pill center near me", "free government abortion clinic near me"], "self_loops": [0], "tags": {"i": "free abortion center near me", "q": "fN4wb8a-rWcJmtVfHNnU6oZ8WbE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinics near fort lauderdale fl", "datetime": "2026-03-12 19:41:52.095590", "source": "google", "data": ["free abortion clinics near fort lauderdale fl", [["free abortion clinics near fort lauderdale florida", 33, [160], {"a": "free abortion clinics near fort lauderdale ", "b": "florida"}], ["free abortion clinics near fort lauderdale fl", 33, [299], {"a": "free abortion clinics near fort lauderdale ", "b": "fl"}]], {"i": "free abortion clinics near fort lauderdale fl", "q": "wL8B9UC8dNyXOJc9K6710Wqz0JQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["free abortion clinics near fort lauderdale florida", "free abortion clinics near fort lauderdale fl"], "self_loops": [1], "tags": {"i": "free abortion clinics near fort lauderdale fl", "q": "wL8B9UC8dNyXOJc9K6710Wqz0JQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "volunteer at abortion clinic near me", "datetime": "2026-03-12 19:41:53.205806", "source": "google", "data": ["volunteer at abortion clinic near me", [["volunteer at abortion clinic near me", 0, [512]]], {"i": "volunteer at abortion clinic near me", "q": "xB4sJjL5nyUR2C7xvUeFlxi-mcc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["volunteer at abortion clinic near me"], "self_loops": [0], "tags": {"i": "volunteer at abortion clinic near me", "q": "xB4sJjL5nyUR2C7xvUeFlxi-mcc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic volunteer opportunities near me", "datetime": "2026-03-12 19:41:54.408858", "source": "google", "data": ["abortion clinic volunteer opportunities near me", [["women's health volunteer opportunities near me", 0, [22, 30]], ["abortion clinic volunteer near me", 0, [22, 30]], ["women's clinic volunteer near me", 0, [22, 30]], ["abortion clinic volunteer opportunities near me", 0, [751]], ["abortion volunteer opportunities near me", 0, [546, 649]]], {"i": "abortion clinic volunteer opportunities near me", "q": "IGQSK6SSy2v38Y_Lm8l6DtVBkX4", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health volunteer opportunities near me", "abortion clinic volunteer near me", "women's clinic volunteer near me", "abortion clinic volunteer opportunities near me", "abortion volunteer opportunities near me"], "self_loops": [3], "tags": {"i": "abortion clinic volunteer opportunities near me", "q": "IGQSK6SSy2v38Y_Lm8l6DtVBkX4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion centers near me", "datetime": "2026-03-12 19:41:55.436831", "source": "google", "data": ["free abortion centers near me", [["free abortion centers near me", 0, [512]], ["free abortion center near me open now", 0, [22, 30]], ["free abortion clinic near me", 0, [22, 30]], ["free abortion clinic near me volunteer", 0, [22, 30]], ["free abortion clinic near me within 5 mi", 0, [22, 30]], ["free abortion clinic near me within 20 mi", 0, [22, 30]], ["free abortion clinic near me within 8.1 km", 0, [22, 30]], ["free abortion pill center near me", 0, [22, 30]], ["free government abortion clinic near me", 0, [22, 30]], ["free cat abortion clinic near me", 0, [22, 30]]], {"i": "free abortion centers near me", "q": "CX6nyoqThAcvptdIKY1udW3MYL8", "t": {"bpc": false, "tlw": false}}], "suggests": ["free abortion centers near me", "free abortion center near me open now", "free abortion clinic near me", "free abortion clinic near me volunteer", "free abortion clinic near me within 5 mi", "free abortion clinic near me within 20 mi", "free abortion clinic near me within 8.1 km", "free abortion pill center near me", "free government abortion clinic near me", "free cat abortion clinic near me"], "self_loops": [0], "tags": {"i": "free abortion centers near me", "q": "CX6nyoqThAcvptdIKY1udW3MYL8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinic near washington dc", "datetime": "2026-03-12 19:41:56.793902", "source": "google", "data": ["free abortion clinic near washington dc", [["free abortion clinic washington dc", 0, [22, 30]], ["free abortion clinic near me", 0, [512, 390, 650]], ["free abortion centers near me", 0, [512, 390, 650]], ["free abortion clinic dc", 0, [751]], ["abortion clinic near me washington dc", 0, [751]], ["free abortion dc", 0, [512, 546]]], {"i": "free abortion clinic near washington dc", "q": "qfZga7iYBIDEHZKPgqgYoQE1MU4", "t": {"bpc": false, "tlw": false}}], "suggests": ["free abortion clinic washington dc", "free abortion clinic near me", "free abortion centers near me", "free abortion clinic dc", "abortion clinic near me washington dc", "free abortion dc"], "self_loops": [], "tags": {"i": "free abortion clinic near washington dc", "q": "qfZga7iYBIDEHZKPgqgYoQE1MU4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinic minnesota", "datetime": "2026-03-12 19:41:57.879027", "source": "google", "data": ["free abortion clinic minnesota", [["free abortion clinic minnesota", 0, [22, 30]], ["free abortion clinics near me", 0, [512, 390, 650]], ["free abortion centers near me", 0, [512, 390, 650]], ["free abortion pill mn", 0, [512, 546]], ["free abortion clinics in wisconsin", 0, [751]]], {"i": "free abortion clinic minnesota", "q": "Nqjbed_MKso2fXxRQh8UO9TisHw", "t": {"bpc": false, "tlw": false}}], "suggests": ["free abortion clinic minnesota", "free abortion clinics near me", "free abortion centers near me", "free abortion pill mn", "free abortion clinics in wisconsin"], "self_loops": [0], "tags": {"i": "free abortion clinic minnesota", "q": "Nqjbed_MKso2fXxRQh8UO9TisHw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinic miami", "datetime": "2026-03-12 19:41:58.948839", "source": "google", "data": ["free abortion clinic miami", [["free abortion clinic miami", 0, [512]], ["free women's clinic miami", 0, [22, 10, 30]], ["free abortion clinic near me", 0, [512, 390, 650]], ["free abortion clinic in florida", 0, [751]]], {"i": "free abortion clinic miami", "q": "9Xvv8211PeKjT5jKRF5ba2tWwuY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free abortion clinic miami", "free women's clinic miami", "free abortion clinic near me", "free abortion clinic in florida"], "self_loops": [0], "tags": {"i": "free abortion clinic miami", "q": "9Xvv8211PeKjT5jKRF5ba2tWwuY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "female doctor near me walk in", "datetime": "2026-03-12 19:41:59.764112", "source": "google", "data": ["female doctor near me walk in", [["female doctor near me walk in clinic", 0, [512]], ["female doctor near me walk in", 0, [22, 30]], ["women clinic near me walk in", 0, [22, 30]], ["women's health clinic near me walk in", 0, [22, 30]], ["free women's clinic near me walk in", 0, [22, 30]], ["female doctors in my area", 0, [512, 390, 650]], ["walk in gynecologist near me no insurance", 0, [512, 390, 650]], ["gynecologist near me female walk in clinic", 0, [512, 546]], ["walk in female clinic near me", 0, [512, 546]]], {"i": "female doctor near me walk in", "q": "2qtjV9OGRXRQ55TazpTluXQs4HU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["female doctor near me walk in clinic", "female doctor near me walk in", "women clinic near me walk in", "women's health clinic near me walk in", "free women's clinic near me walk in", "female doctors in my area", "walk in gynecologist near me no insurance", "gynecologist near me female walk in clinic", "walk in female clinic near me"], "self_loops": [1], "tags": {"i": "female doctor near me walk in", "q": "2qtjV9OGRXRQ55TazpTluXQs4HU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "female doctor near me walk in clinic", "datetime": "2026-03-12 19:42:00.850974", "source": "google", "data": ["female doctor near me walk in clinic", [["female doctor near me walk in clinic", 0, [512]], ["where can i see a doctor without insurance near me", 0, [512, 390, 650]], ["can you request a female doctor at urgent care", 0, [512, 390, 650]], ["gynecologist near me female walk in clinic", 0, [512, 546]], ["walk in female clinic near me", 0, [512, 546]], ["women's clinic near me walk-in", 0, [546, 649]], ["walk in clinic near me women's health", 0, [512, 546]]], {"i": "female doctor near me walk in clinic", "q": "koSp8JUZ9k5_ry3w0S5WcbIOU2k", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["female doctor near me walk in clinic", "where can i see a doctor without insurance near me", "can you request a female doctor at urgent care", "gynecologist near me female walk in clinic", "walk in female clinic near me", "women's clinic near me walk-in", "walk in clinic near me women's health"], "self_loops": [0], "tags": {"i": "female doctor near me walk in clinic", "q": "koSp8JUZ9k5_ry3w0S5WcbIOU2k", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in women's clinic near me within 5 mi", "datetime": "2026-03-12 19:42:02.000955", "source": "google", "data": ["walk in women's clinic near me within 5 mi", [["walk in women's clinic near me within 5 mi", 0, [22, 30]], ["walk-in women's clinic near me", 0, [512, 390, 650]], ["does walgreens clinic take walk ins", 0, [512, 390, 650]], ["does walmart have a walk in clinic", 0, [512, 390, 650]], ["walk in clinic near me women's health", 0, [512, 546]]], {"i": "walk in women's clinic near me within 5 mi", "q": "3miijFBOgHoZmQ7VVs6syEzjh2o", "t": {"bpc": false, "tlw": false}}], "suggests": ["walk in women's clinic near me within 5 mi", "walk-in women's clinic near me", "does walgreens clinic take walk ins", "does walmart have a walk in clinic", "walk in clinic near me women's health"], "self_loops": [0], "tags": {"i": "walk in women's clinic near me within 5 mi", "q": "3miijFBOgHoZmQ7VVs6syEzjh2o", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic near me without insurance", "datetime": "2026-03-12 19:42:03.413445", "source": "google", "data": ["women's clinic near me without insurance", [["women's clinic near me without insurance", 0, [512]], ["free women's clinic near me no insurance", 0, [22, 30]], ["women's health clinic near me no insurance", 0, [22, 30]], ["what clinic can i go to without insurance", 0, [512, 390, 650]]], {"i": "women's clinic near me without insurance", "q": "Q-1cv0vXvzhqJS49gTvEeSd5Aic", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic near me without insurance", "free women's clinic near me no insurance", "women's health clinic near me no insurance", "what clinic can i go to without insurance"], "self_loops": [0], "tags": {"i": "women's clinic near me without insurance", "q": "Q-1cv0vXvzhqJS49gTvEeSd5Aic", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk-in women's clinic near me", "datetime": "2026-03-12 19:42:04.858014", "source": "google", "data": ["walk-in women's clinic near me", [["walk-in women's clinic near me", 0, [512]], ["walk in women's clinic near me open now", 0, [22, 30]], ["walk in women's clinic near me free", 0, [22, 30]], ["walk in women's clinic near me within 5 mi", 0, [22, 30]], ["walk in women's health clinic near me", 0, [22, 30]], ["walk in female doctor near me", 0, [22, 30]], ["walk in clinic female doctor near me", 0, [22, 30]], ["walk in clinic for pregnant women near me", 0, [22, 30]], ["does walmart have a walk in clinic", 0, [512, 390, 650]], ["walk in gyn clinic near me", 0, [512, 390, 650]]], {"i": "walk-in women's clinic near me", "q": "sFiLX--kW409qX7FPVaHKZjg944", "t": {"bpc": false, "tlw": false}}], "suggests": ["walk-in women's clinic near me", "walk in women's clinic near me open now", "walk in women's clinic near me free", "walk in women's clinic near me within 5 mi", "walk in women's health clinic near me", "walk in female doctor near me", "walk in clinic female doctor near me", "walk in clinic for pregnant women near me", "does walmart have a walk in clinic", "walk in gyn clinic near me"], "self_loops": [0], "tags": {"i": "walk-in women's clinic near me", "q": "sFiLX--kW409qX7FPVaHKZjg944", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does walmart have a walk in clinic", "datetime": "2026-03-12 19:42:05.688502", "source": "google", "data": ["does walmart have a walk in clinic", [["does walmart have a walk in clinic", 0, [512]], ["does walmart have a walk in clinic near me", 0, [22, 30]], ["does walmart still have a walk in clinic", 0, [22, 30]], ["is walmart walk in clinic open", 0, [512, 390, 650]], ["walk in clinic near me in walmart", 0, [512, 390, 650]], ["does walgreens still have walk in clinics", 0, [512, 390, 650]], ["does walmart auto center take walk ins", 0, [512, 390, 650]], ["does walmart have a clinic", 0, [512, 546]], ["does walmart have a health clinic", 0, [546, 649]], ["does walmart have a medical clinic", 0, [512, 546]]], {"i": "does walmart have a walk in clinic", "q": "1kFRTRA9o36jS-js4_PLE_b9yFw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does walmart have a walk in clinic", "does walmart have a walk in clinic near me", "does walmart still have a walk in clinic", "is walmart walk in clinic open", "walk in clinic near me in walmart", "does walgreens still have walk in clinics", "does walmart auto center take walk ins", "does walmart have a clinic", "does walmart have a health clinic", "does walmart have a medical clinic"], "self_loops": [0], "tags": {"i": "does walmart have a walk in clinic", "q": "1kFRTRA9o36jS-js4_PLE_b9yFw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's check up clinic near me", "datetime": "2026-03-12 19:42:07.080467", "source": "google", "data": ["women's check up clinic near me", [["women's check up clinic near me", 0, [512]], ["women's check up doctor near me", 0, [22, 30]], ["where can i get a women's check up", 0, [512, 390, 650]], ["health check up clinic near me", 0, [512, 390, 650]], ["women's health check-up near me", 0, [546, 649]], ["women's check up near me", 0, [512, 546]]], {"i": "women's check up clinic near me", "q": "CGNg7lZVGhM0oy5O-VNNMOQZlPE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's check up clinic near me", "women's check up doctor near me", "where can i get a women's check up", "health check up clinic near me", "women's health check-up near me", "women's check up near me"], "self_loops": [0], "tags": {"i": "women's check up clinic near me", "q": "CGNg7lZVGhM0oy5O-VNNMOQZlPE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in abortion clinic near me nhs london", "datetime": "2026-03-12 19:42:08.599759", "source": "google", "data": ["walk in abortion clinic near me nhs london", [["walk in abortion clinic near me nhs london", 0, [22, 30]], ["nhs walk in clinic near me open now", 0, [512, 390, 650]], ["nhs walk in clinic near me open today", 0, [512, 390, 650]], ["nhs walk in centre london near me", 0, [512, 390, 650]], ["abortion walk in clinic london", 0, [546, 649]], ["walk-in abortion clinic near me", 0, [512, 546]]], {"i": "walk in abortion clinic near me nhs london", "q": "ods-9UBFg85sIh0Ml7pocyBE5io", "t": {"bpc": false, "tlw": false}}], "suggests": ["walk in abortion clinic near me nhs london", "nhs walk in clinic near me open now", "nhs walk in clinic near me open today", "nhs walk in centre london near me", "abortion walk in clinic london", "walk-in abortion clinic near me"], "self_loops": [0], "tags": {"i": "walk in abortion clinic near me nhs london", "q": "ods-9UBFg85sIh0Ml7pocyBE5io", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in abortion clinic near me nhs scotland", "datetime": "2026-03-12 19:42:09.734706", "source": "google", "data": ["walk in abortion clinic near me nhs scotland", [["walk in abortion clinic near me nhs scotland", 0, [22, 30]], ["nhs walk in clinic near me open now", 0, [512, 390, 650]], ["nhs walk in clinic near me open today", 0, [512, 390, 650]], ["walk in abortion clinic near me", 0, [512, 390, 650]], ["do abortion clinics take walk ins", 0, [512, 390, 650]]], {"i": "walk in abortion clinic near me nhs scotland", "q": "1DyqpSSpeAybGKHh_dsOKCawnFg", "t": {"bpc": false, "tlw": false}}], "suggests": ["walk in abortion clinic near me nhs scotland", "nhs walk in clinic near me open now", "nhs walk in clinic near me open today", "walk in abortion clinic near me", "do abortion clinics take walk ins"], "self_loops": [0], "tags": {"i": "walk in abortion clinic near me nhs scotland", "q": "1DyqpSSpeAybGKHh_dsOKCawnFg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in abortion clinic near me nhs within 5 mi", "datetime": "2026-03-12 19:42:10.907465", "source": "google", "data": ["walk in abortion clinic near me nhs within 5 mi", [["walk in abortion clinic near me nhs within 5 mi", 0, [22, 30]], ["walk in abortion clinic near me", 0, [512, 390, 650]], ["do abortion clinics take walk ins", 0, [512, 390, 650]], ["do abortion clinics do walk ins", 0, [512, 390, 650]], ["walk in clinics with appointments near me", 0, [512, 390, 650]]], {"i": "walk in abortion clinic near me nhs within 5 mi", "q": "ARy8MOj_Pl41Z8BaOvLxaguLwBA", "t": {"bpc": false, "tlw": false}}], "suggests": ["walk in abortion clinic near me nhs within 5 mi", "walk in abortion clinic near me", "do abortion clinics take walk ins", "do abortion clinics do walk ins", "walk in clinics with appointments near me"], "self_loops": [0], "tags": {"i": "walk in abortion clinic near me nhs within 5 mi", "q": "ARy8MOj_Pl41Z8BaOvLxaguLwBA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk-in abortion clinic near me nhs birmingham", "datetime": "2026-03-12 19:42:11.807699", "source": "google", "data": ["walk-in abortion clinic near me nhs birmingham", [["walk-in abortion clinic near me nhs birmingham", 0, [22, 30]], ["nhs walk in clinic near me open now", 0, [512, 390, 650]], ["nhs walk in clinic near me open today", 0, [512, 390, 650]], ["can i go to any nhs walk in centre", 0, [512, 390, 650]], ["nhs walk in centre near me", 0, [512, 390, 650]], ["walk-in abortion clinic near me", 0, [512, 546]]], {"i": "walk-in abortion clinic near me nhs birmingham", "q": "xC4erAxACHSone8X86fmd-ALnYc", "t": {"bpc": false, "tlw": false}}], "suggests": ["walk-in abortion clinic near me nhs birmingham", "nhs walk in clinic near me open now", "nhs walk in clinic near me open today", "can i go to any nhs walk in centre", "nhs walk in centre near me", "walk-in abortion clinic near me"], "self_loops": [0], "tags": {"i": "walk-in abortion clinic near me nhs birmingham", "q": "xC4erAxACHSone8X86fmd-ALnYc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "top rated walk in abortion clinic near me nhs", "datetime": "2026-03-12 19:42:13.179413", "source": "google", "data": ["top rated walk in abortion clinic near me nhs", [["top rated walk in abortion clinic near me nhs", 0, [22, 30]], ["walk in abortion clinic near me", 0, [512, 390, 650]], ["nhs walk in clinic near me open now", 0, [512, 390, 650]], ["walk in clinic near kensington", 0, [512, 390, 650]], ["top rated abortion clinics near me", 0, [512, 546]], ["best rated abortion clinics near me", 0, [751]], ["top rated abortion clinics in michigan", 0, [751]]], {"i": "top rated walk in abortion clinic near me nhs", "q": "OzPmcAORum0UprlkB9IFu-Yvq0E", "t": {"bpc": false, "tlw": false}}], "suggests": ["top rated walk in abortion clinic near me nhs", "walk in abortion clinic near me", "nhs walk in clinic near me open now", "walk in clinic near kensington", "top rated abortion clinics near me", "best rated abortion clinics near me", "top rated abortion clinics in michigan"], "self_loops": [0], "tags": {"i": "top rated walk in abortion clinic near me nhs", "q": "OzPmcAORum0UprlkB9IFu-Yvq0E", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in abortion clinic near me", "datetime": "2026-03-12 19:42:14.348758", "source": "google", "data": ["walk in abortion clinic near me", [["walk in abortion clinic near me", 0, [512]], ["walk in abortion clinic near me within 20 mi", 0, [512]], ["walk in abortion clinic near me open now", 0, [512]], ["walk in abortion clinic near me nhs", 0, [512]], ["walk in abortion clinic near me private", 0, [512]], ["walk in abortion clinic near me within 5 mi", 0, [22, 30]], ["walk in abortion clinic near me nhs open now", 0, [22, 30]], ["walk in abortion clinic near me nhs london", 0, [22, 30]], ["walk in abortion clinic near me nhs scotland", 0, [22, 30]], ["walk in abortion clinic near me nhs within 5 mi", 0, [22, 30]]], {"i": "walk in abortion clinic near me", "q": "2ZWgswMYpBHnfPv3HD9Eo69Kbn4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["walk in abortion clinic near me", "walk in abortion clinic near me within 20 mi", "walk in abortion clinic near me open now", "walk in abortion clinic near me nhs", "walk in abortion clinic near me private", "walk in abortion clinic near me within 5 mi", "walk in abortion clinic near me nhs open now", "walk in abortion clinic near me nhs london", "walk in abortion clinic near me nhs scotland", "walk in abortion clinic near me nhs within 5 mi"], "self_loops": [0], "tags": {"i": "walk in abortion clinic near me", "q": "2ZWgswMYpBHnfPv3HD9Eo69Kbn4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "nhs walk in clinic near me open now", "datetime": "2026-03-12 19:42:15.638743", "source": "google", "data": ["nhs walk in clinic near me open now", [["nhs walk in clinic near me open now", 0, [512]], ["nhs walk in clinic near me open now within 5 mi", 0, [22, 30]], ["nhs walk in clinic near me open today", 0, [22, 30]], ["walk in abortion clinic near me nhs open now", 0, [22, 30]], ["nhs walk in clinic open now", 0, [22, 30]], ["can i go to any nhs walk in centre", 0, [512, 390, 650]], ["nhs walk in centre near me", 0, [512, 390, 650]], ["is there any walk-in clinics open today", 0, [512, 546]], ["nhs healthcare near me", 0, [512, 546]], ["walk in health clinic near me open now", 0, [512, 546]]], {"i": "nhs walk in clinic near me open now", "q": "CK6qQqiLq38ZK94I8lqoC2ux4Dc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["nhs walk in clinic near me open now", "nhs walk in clinic near me open now within 5 mi", "nhs walk in clinic near me open today", "walk in abortion clinic near me nhs open now", "nhs walk in clinic open now", "can i go to any nhs walk in centre", "nhs walk in centre near me", "is there any walk-in clinics open today", "nhs healthcare near me", "walk in health clinic near me open now"], "self_loops": [0], "tags": {"i": "nhs walk in clinic near me open now", "q": "CK6qQqiLq38ZK94I8lqoC2ux4Dc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "do abortion clinics take walk ins", "datetime": "2026-03-12 19:42:16.572869", "source": "google", "data": ["do abortion clinics take walk ins", [["do abortion clinics take walk ins", 0, [512]], ["do abortion clinics do walk ins", 0, [512, 390, 650]], ["does planned parenthood take walk ins for abortions", 0, [512, 390, 650]], ["do you need an appointment for an abortion at planned parenthood", 0, [512, 390, 650]], ["walk in abortion clinic near me", 0, [512, 390, 650]], ["do abortion clinics take insurance", 0, [512, 546]], ["do abortion clinics take cash", 0, [751]], ["do abortion clinics take credit cards", 0, [512, 546]]], {"i": "do abortion clinics take walk ins", "q": "I-gKFcyf5SAM_FPx117tcXfyfvk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["do abortion clinics take walk ins", "do abortion clinics do walk ins", "does planned parenthood take walk ins for abortions", "do you need an appointment for an abortion at planned parenthood", "walk in abortion clinic near me", "do abortion clinics take insurance", "do abortion clinics take cash", "do abortion clinics take credit cards"], "self_loops": [0], "tags": {"i": "do abortion clinics take walk ins", "q": "I-gKFcyf5SAM_FPx117tcXfyfvk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "top rated walk in abortion clinic near me open now", "datetime": "2026-03-12 19:42:18.094774", "source": "google", "data": ["top rated walk in abortion clinic near me open now", [["top rated walk in abortion clinic near me open now", 0, [22, 30]], ["walk in abortion clinic near me", 0, [512, 390, 650]], ["abortion clinic open on saturday near me", 0, [512, 390, 650]], ["walk in medical clinic near me open now", 0, [512, 390, 650]], ["closest walk in clinic open near me", 0, [512, 390, 650]], ["top rated abortion clinics near me", 0, [512, 546]]], {"i": "top rated walk in abortion clinic near me open now", "q": "Vd0lzsWRmLU5hUyIOR3AYf2PG_0", "t": {"bpc": false, "tlw": false}}], "suggests": ["top rated walk in abortion clinic near me open now", "walk in abortion clinic near me", "abortion clinic open on saturday near me", "walk in medical clinic near me open now", "closest walk in clinic open near me", "top rated abortion clinics near me"], "self_loops": [0], "tags": {"i": "top rated walk in abortion clinic near me open now", "q": "Vd0lzsWRmLU5hUyIOR3AYf2PG_0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in abortion clinic open now", "datetime": "2026-03-12 19:42:19.061714", "source": "google", "data": ["walk in abortion clinic open now", [["walk in abortion clinic open now", 0, [22, 30]], ["walk in women's clinic open now", 0, [22, 30]], ["walk in abortion clinic near me open now", 0, [22, 30]], ["walk in abortion clinic near me nhs open now", 0, [22, 30]], ["walk in women's clinic near me open now", 0, [22, 30]], ["top rated walk in abortion clinic near me open now", 0, [22, 30]], ["walk in abortion clinic near me", 0, [512, 390, 650]], ["do abortion clinics take walk ins", 0, [512, 390, 650]], ["abortion clinic open near me", 0, [512, 390, 650]], ["do abortion clinics do walk ins", 0, [512, 390, 650]]], {"i": "walk in abortion clinic open now", "q": "fgddu3LUsKd8PR95QF-jcaYOqkk", "t": {"bpc": false, "tlw": false}}], "suggests": ["walk in abortion clinic open now", "walk in women's clinic open now", "walk in abortion clinic near me open now", "walk in abortion clinic near me nhs open now", "walk in women's clinic near me open now", "top rated walk in abortion clinic near me open now", "walk in abortion clinic near me", "do abortion clinics take walk ins", "abortion clinic open near me", "do abortion clinics do walk ins"], "self_loops": [0], "tags": {"i": "walk in abortion clinic open now", "q": "fgddu3LUsKd8PR95QF-jcaYOqkk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "do abortion clinics do walk ins", "datetime": "2026-03-12 19:42:20.227855", "source": "google", "data": ["do abortion clinics do walk ins", [["do abortion clinics do walk ins", 0, [512]], ["do abortion clinics take walk ins", 0, [512, 390, 650]], ["does planned parenthood take walk ins for abortions", 0, [512, 390, 650]], ["do you need an appointment for an abortion at planned parenthood", 0, [512, 390, 650]], ["does planned parenthood take walk ins", 0, [512, 390, 650]], ["do abortion clinics do ultrasounds", 0, [512, 546]], ["do abortion clinics give doctors notes", 0, [512, 546]], ["do abortion clinics take insurance", 0, [512, 546]], ["does planned parenthood do walk in abortions", 0, [512, 546]]], {"i": "do abortion clinics do walk ins", "q": "7LW3iqdCoiSOtG61Mqi4wV9OhcE", "t": {"bpc": false, "tlw": false}}], "suggests": ["do abortion clinics do walk ins", "do abortion clinics take walk ins", "does planned parenthood take walk ins for abortions", "do you need an appointment for an abortion at planned parenthood", "does planned parenthood take walk ins", "do abortion clinics do ultrasounds", "do abortion clinics give doctors notes", "do abortion clinics take insurance", "does planned parenthood do walk in abortions"], "self_loops": [0], "tags": {"i": "do abortion clinics do walk ins", "q": "7LW3iqdCoiSOtG61Mqi4wV9OhcE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are there any walk in clinics open near me", "datetime": "2026-03-12 19:42:21.624934", "source": "google", "data": ["are there any walk in clinics open near me", [["are there any walk in clinics open near me", 0, [512]], ["are there any walk in clinics open near me today", 0, [22, 30]], ["are there any urgent care open near me", 0, [22, 30]], ["are walk in clinics open near me", 0, [22, 30]], ["are any clinics open near me", 0, [512, 390, 650]], ["are there any clinics open on saturday", 0, [512, 546]], ["are there any clinics open on sunday", 0, [512, 546]]], {"i": "are there any walk in clinics open near me", "q": "GjdlXhbu1xntQIcKv_v_f-rmkRY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["are there any walk in clinics open near me", "are there any walk in clinics open near me today", "are there any urgent care open near me", "are walk in clinics open near me", "are any clinics open near me", "are there any clinics open on saturday", "are there any clinics open on sunday"], "self_loops": [0], "tags": {"i": "are there any walk in clinics open near me", "q": "GjdlXhbu1xntQIcKv_v_f-rmkRY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "private abortion clinic near me", "datetime": "2026-03-12 19:42:22.723881", "source": "google", "data": ["private abortion clinic near me", [["private abortion clinic near me", 0, [512]], ["private abortion clinic near me open now", 0, [22, 30]], ["private abortion clinic near me within 5 mi", 0, [22, 30]], ["private women's clinic near me", 0, [22, 30]], ["private abortion hospital near me", 0, [22, 30]], ["private abortion centre near me", 0, [22, 30]], ["private surgical abortion clinic near me", 0, [22, 30]], ["private women's hospital near me", 0, [22, 30]], ["private doctor abortion near me", 0, [22, 30]], ["private women's doctor near me", 0, [22, 30]]], {"i": "private abortion clinic near me", "q": "r89Ynwnh8qDlpMA-u16liilI1S0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["private abortion clinic near me", "private abortion clinic near me open now", "private abortion clinic near me within 5 mi", "private women's clinic near me", "private abortion hospital near me", "private abortion centre near me", "private surgical abortion clinic near me", "private women's hospital near me", "private doctor abortion near me", "private women's doctor near me"], "self_loops": [0], "tags": {"i": "private abortion clinic near me", "q": "r89Ynwnh8qDlpMA-u16liilI1S0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "closest abortion clinic near me", "datetime": "2026-03-12 19:42:23.819150", "source": "google", "data": ["closest abortion clinic near me", [["closest abortion clinic near me", 0, [512]], ["closest abortion clinic near me open now", 0, [22, 30]], ["closest abortion clinic near me in illinois", 0, [22, 30]], ["closest legal abortion clinic near me", 0, [22, 30]], ["abortion clinic nearest me", 0, [22, 30]]], {"i": "closest abortion clinic near me", "q": "9rwerxUKpUOIhVq_G0FC43BykJU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["closest abortion clinic near me", "closest abortion clinic near me open now", "closest abortion clinic near me in illinois", "closest legal abortion clinic near me", "abortion clinic nearest me"], "self_loops": [0], "tags": {"i": "closest abortion clinic near me", "q": "9rwerxUKpUOIhVq_G0FC43BykJU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "nhs walk in clinic near me open today", "datetime": "2026-03-12 19:42:24.655083", "source": "google", "data": ["nhs walk in clinic near me open today", [["nhs walk in clinic near me open today", 0, [512]], ["nhs walk in clinic near me open now", 0, [512, 390, 650]], ["can i go to any nhs walk in centre", 0, [512, 390, 650]], ["what walk in clinics are open today", 0, [512, 390, 650]], ["are there any walk in clinics open near me", 0, [512, 390, 650]], ["walk in health clinic near me open now", 0, [512, 546]], ["nhs healthcare near me", 0, [512, 546]], ["nearest walk in clinic open today", 0, [546, 649]]], {"i": "nhs walk in clinic near me open today", "q": "jFVdacWssUBs9fHJjSEmp7H3DnU", "t": {"bpc": false, "tlw": false}}], "suggests": ["nhs walk in clinic near me open today", "nhs walk in clinic near me open now", "can i go to any nhs walk in centre", "what walk in clinics are open today", "are there any walk in clinics open near me", "walk in health clinic near me open now", "nhs healthcare near me", "nearest walk in clinic open today"], "self_loops": [0], "tags": {"i": "nhs walk in clinic near me open today", "q": "jFVdacWssUBs9fHJjSEmp7H3DnU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "nearest walk in clinic open now", "datetime": "2026-03-12 19:42:25.531469", "source": "google", "data": ["nearest walk in clinic open now", [["nearest walk in clinic open now", 0, [512]], ["nearest walk in clinic open now within 5 mi", 0, [22, 30]], ["nearby walk in clinic open now", 0, [22, 30]], ["closest walk in clinic open now", 0, [22, 30]], ["nearest walk in clinic to me open now", 0, [22, 30]], ["closest walk in clinic near me open now", 0, [22, 30]], ["what walk in clinics are open today", 0, [512, 390, 650]], ["closest walk in clinic open near me", 0, [512, 390, 650]], ["walk in medical clinic near me open now", 0, [512, 390, 650]], ["nearest walk in clinic open today", 0, [546, 649]]], {"i": "nearest walk in clinic open now", "q": "CTdEg-FoaqsSwXHA68Hx7vflFbo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["nearest walk in clinic open now", "nearest walk in clinic open now within 5 mi", "nearby walk in clinic open now", "closest walk in clinic open now", "nearest walk in clinic to me open now", "closest walk in clinic near me open now", "what walk in clinics are open today", "closest walk in clinic open near me", "walk in medical clinic near me open now", "nearest walk in clinic open today"], "self_loops": [0], "tags": {"i": "nearest walk in clinic open now", "q": "CTdEg-FoaqsSwXHA68Hx7vflFbo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk in medical clinic near me open now", "datetime": "2026-03-12 19:42:26.757101", "source": "google", "data": ["walk in medical clinic near me open now", [["walk in medical clinic near me open now", 0, [512]], ["walk in health clinic near me open now", 0, [22, 30]], ["drop in medical clinic near me open now", 0, [22, 30]], ["walk in medical clinic near me open today", 0, [22, 30]], ["top rated walk in medical clinic near me open now", 0, [22, 30]], ["walk in mental health clinic near me open now", 0, [22, 30]], ["walk in clinic urgent care near me open now", 0, [22, 30]], ["walk in doctor clinic near me open now", 0, [22, 30]], ["walk in sexual health clinic near me open today", 0, [22, 30]], ["walk in medical center near me open now", 0, [22, 30]]], {"i": "walk in medical clinic near me open now", "q": "reGArXUC4QfSoJrkD7DVnTGIgB8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["walk in medical clinic near me open now", "walk in health clinic near me open now", "drop in medical clinic near me open now", "walk in medical clinic near me open today", "top rated walk in medical clinic near me open now", "walk in mental health clinic near me open now", "walk in clinic urgent care near me open now", "walk in doctor clinic near me open now", "walk in sexual health clinic near me open today", "walk in medical center near me open now"], "self_loops": [0], "tags": {"i": "walk in medical clinic near me open now", "q": "reGArXUC4QfSoJrkD7DVnTGIgB8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "walk-in abortion clinic near me", "datetime": "2026-03-12 19:42:27.604627", "source": "google", "data": ["walk-in abortion clinic near me", [["walk-in abortion clinic near me", 0, [512]], ["walk-in abortion clinic near me nhs", 0, [512]], ["walk in abortion clinic near me open now", 0, [22, 30]], ["walk in abortion clinic near me private", 0, [22, 30]], ["walk in abortion clinic near me within 5 mi", 0, [22, 30]], ["walk in abortion clinic near me within 20 mi", 0, [22, 30]], ["walk in abortion clinic near me nhs open now", 0, [22, 30]], ["walk in abortion clinic near me nhs london", 0, [22, 30]], ["walk in abortion clinic near me nhs scotland", 0, [22, 30]], ["walk in abortion clinic near me nhs within 5 mi", 0, [22, 30]]], {"i": "walk-in abortion clinic near me", "q": "U5wlwdqjjr71AU7wPTwtboPiiA4", "t": {"bpc": false, "tlw": false}}], "suggests": ["walk-in abortion clinic near me", "walk-in abortion clinic near me nhs", "walk in abortion clinic near me open now", "walk in abortion clinic near me private", "walk in abortion clinic near me within 5 mi", "walk in abortion clinic near me within 20 mi", "walk in abortion clinic near me nhs open now", "walk in abortion clinic near me nhs london", "walk in abortion clinic near me nhs scotland", "walk in abortion clinic near me nhs within 5 mi"], "self_loops": [0], "tags": {"i": "walk-in abortion clinic near me", "q": "U5wlwdqjjr71AU7wPTwtboPiiA4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "female doctor near me now", "datetime": "2026-03-12 19:42:28.890446", "source": "google", "data": ["female doctor near me now", [["female doctor near me now", 0, [22, 30]], ["female doctor near me open now", 0, [22, 30]], ["women's clinic near me now", 0, [22, 30]], ["women doctor near me open now", 0, [22, 30]], ["female clinic near me open now", 0, [22, 30]], ["lady doctor near me open now within 1.6 km", 0, [22, 30]], ["female physician near me open now", 0, [22, 30]], ["lady doctor near me open now within 800m", 0, [22, 30]], ["women dr near me open now", 0, [22, 30]], ["female skin doctor near me open now", 0, [22, 30]]], {"i": "female doctor near me now", "q": "7fOvVVwx1RTB0eiEkC5othJanj8", "t": {"bpc": false, "tlw": false}}], "suggests": ["female doctor near me now", "female doctor near me open now", "women's clinic near me now", "women doctor near me open now", "female clinic near me open now", "lady doctor near me open now within 1.6 km", "female physician near me open now", "lady doctor near me open now within 800m", "women dr near me open now", "female skin doctor near me open now"], "self_loops": [0], "tags": {"i": "female doctor near me now", "q": "7fOvVVwx1RTB0eiEkC5othJanj8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me today san jose", "datetime": "2026-03-12 19:42:30.288757", "source": "google", "data": ["abortion clinic near me today san jose", [["abortion clinic near me today san jose ca", 33, [160], {"a": "abortion clinic near me today san ", "b": "jose ca"}], ["abortion clinic near me today san jose california", 33, [160], {"a": "abortion clinic near me today san ", "b": "jose california"}], ["abortion clinic near me today san jose reddit", 33, [160], {"a": "abortion clinic near me today san ", "b": "jose reddit"}], ["abortion clinic near me today san jose area", 33, [160], {"a": "abortion clinic near me today san ", "b": "jose area"}], ["abortion clinic near me today san jose", 33, [299], {"a": "abortion clinic near me today san ", "b": "jose"}]], {"i": "abortion clinic near me today san jose", "q": "av2JPKBYMrg9aSO1HJspHsxIqG0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me today san jose ca", "abortion clinic near me today san jose california", "abortion clinic near me today san jose reddit", "abortion clinic near me today san jose area", "abortion clinic near me today san jose"], "self_loops": [4], "tags": {"i": "abortion clinic near me today san jose", "q": "av2JPKBYMrg9aSO1HJspHsxIqG0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me today palo alto", "datetime": "2026-03-12 19:42:31.694493", "source": "google", "data": ["abortion clinic near me today palo alto", [["abortion clinic near me today palo alto ca", 33, [160], {"a": "abortion clinic near me today palo ", "b": "alto ca"}], ["abortion clinic near me today palo alto california", 33, [160], {"a": "abortion clinic near me today palo ", "b": "alto california"}], ["abortion clinic near me today palo alto today", 33, [160], {"a": "abortion clinic near me today palo ", "b": "alto today"}], ["abortion clinic near me today palo alto reddit", 33, [160], {"a": "abortion clinic near me today palo ", "b": "alto reddit"}], ["abortion clinic near me today palo alto", 33, [299], {"a": "abortion clinic near me today palo ", "b": "alto"}]], {"i": "abortion clinic near me today palo alto", "q": "m8raP-Y4Gc7vbSbpBm0TqMVRyKs", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me today palo alto ca", "abortion clinic near me today palo alto california", "abortion clinic near me today palo alto today", "abortion clinic near me today palo alto reddit", "abortion clinic near me today palo alto"], "self_loops": [4], "tags": {"i": "abortion clinic near me today palo alto", "q": "m8raP-Y4Gc7vbSbpBm0TqMVRyKs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me today open", "datetime": "2026-03-12 19:42:33.062266", "source": "google", "data": ["abortion clinic near me today open", [["abortion clinic near me open today", 0, [22, 30]], ["abortion clinic near me open now", 0, [22, 30]], ["abortion clinic near me open", 0, [22, 30]], ["abortion clinic near me open saturday", 0, [22, 30]], ["abortion clinic near me open on weekends", 0, [22, 30]], ["abortion clinic near me open sunday", 0, [22, 30]], ["abortion clinic near me open tomorrow", 0, [22, 30]], ["abortion clinic near me open now within 8.1 km", 0, [22, 30]], ["abortion clinic near me open now within 20 mi", 0, [22, 30]], ["abortion clinic near me open now within 5 mi", 0, [22, 30]]], {"i": "abortion clinic near me today open", "q": "T70kIQcNaOyUo3F6qojMJyLKd7U", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open today", "abortion clinic near me open now", "abortion clinic near me open", "abortion clinic near me open saturday", "abortion clinic near me open on weekends", "abortion clinic near me open sunday", "abortion clinic near me open tomorrow", "abortion clinic near me open now within 8.1 km", "abortion clinic near me open now within 20 mi", "abortion clinic near me open now within 5 mi"], "self_loops": [], "tags": {"i": "abortion clinic near me today open", "q": "T70kIQcNaOyUo3F6qojMJyLKd7U", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me today san jose ca", "datetime": "2026-03-12 19:42:34.171681", "source": "google", "data": ["abortion clinic near me today san jose ca", [["abortion clinic near me today san jose california", 33, [160], {"a": "abortion clinic near me today san jose ", "b": "california"}], ["abortion clinic near me today san jose ca", 33, [299], {"a": "abortion clinic near me today san jose ", "b": "ca"}]], {"i": "abortion clinic near me today san jose ca", "q": "JNqn0iQfuBIyyW2G9D03eXguVbw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me today san jose california", "abortion clinic near me today san jose ca"], "self_loops": [1], "tags": {"i": "abortion clinic near me today san jose ca", "q": "JNqn0iQfuBIyyW2G9D03eXguVbw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me today palo alto ca", "datetime": "2026-03-12 19:42:35.676685", "source": "google", "data": ["abortion clinic near me today palo alto ca", [["abortion clinic near me today palo alto california", 33, [160], {"a": "abortion clinic near me today palo alto ", "b": "california"}], ["abortion clinic near me today palo alto ca", 33, [299], {"a": "abortion clinic near me today palo alto ", "b": "ca"}], ["abortion clinic near me today palo alto ca 94306", 33, [299], {"a": "abortion clinic near me today palo alto ", "b": "ca 94306"}]], {"i": "abortion clinic near me today palo alto ca", "q": "QtHr9dJQU5nAAaNoNqDqqUedhnM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me today palo alto california", "abortion clinic near me today palo alto ca", "abortion clinic near me today palo alto ca 94306"], "self_loops": [1], "tags": {"i": "abortion clinic near me today palo alto ca", "q": "QtHr9dJQU5nAAaNoNqDqqUedhnM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me today san francisco", "datetime": "2026-03-12 19:42:36.508778", "source": "google", "data": ["abortion clinic near me today san francisco", [["abortion clinic near me today san francisco ca", 33, [160], {"a": "abortion clinic near me today san ", "b": "francisco ca"}], ["abortion clinic near me today san francisco bay area", 33, [160], {"a": "abortion clinic near me today san ", "b": "francisco bay area"}], ["abortion clinic near me today san francisco california", 33, [160], {"a": "abortion clinic near me today san ", "b": "francisco california"}], ["abortion clinic near me today san francisco reddit", 33, [160], {"a": "abortion clinic near me today san ", "b": "francisco reddit"}], ["abortion clinic near me today san francisco bay area ca", 33, [160], {"a": "abortion clinic near me today san ", "b": "francisco bay area ca"}], ["abortion clinic near me today san francisco", 33, [299], {"a": "abortion clinic near me today san ", "b": "francisco"}], ["abortion clinic near me today san francisco protest", 33, [671], {"a": "abortion clinic near me today san ", "b": "francisco protest"}]], {"i": "abortion clinic near me today san francisco", "q": "3D2Re-o5lgkQqKr40-ftOpY3QfE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me today san francisco ca", "abortion clinic near me today san francisco bay area", "abortion clinic near me today san francisco california", "abortion clinic near me today san francisco reddit", "abortion clinic near me today san francisco bay area ca", "abortion clinic near me today san francisco", "abortion clinic near me today san francisco protest"], "self_loops": [5], "tags": {"i": "abortion clinic near me today san francisco", "q": "3D2Re-o5lgkQqKr40-ftOpY3QfE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me today menlo park", "datetime": "2026-03-12 19:42:37.843567", "source": "google", "data": ["abortion clinic near me today menlo park", [["abortion clinic near me today menlo park ca", 33, [160], {"a": "abortion clinic near me today menlo ", "b": "park ca"}], ["abortion clinic near me today menlo park california", 33, [160], {"a": "abortion clinic near me today menlo ", "b": "park california"}], ["abortion clinic near me today menlo park ca 94025", 33, [160], {"a": "abortion clinic near me today menlo ", "b": "park ca 94025"}], ["abortion clinic near me today menlo park", 33, [299], {"a": "abortion clinic near me today menlo ", "b": "park"}]], {"i": "abortion clinic near me today menlo park", "q": "01vEwo5D1XCx3Tpih5Z9jxbF8I4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me today menlo park ca", "abortion clinic near me today menlo park california", "abortion clinic near me today menlo park ca 94025", "abortion clinic near me today menlo park"], "self_loops": [3], "tags": {"i": "abortion clinic near me today menlo park", "q": "01vEwo5D1XCx3Tpih5Z9jxbF8I4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me today redwood city", "datetime": "2026-03-12 19:42:38.987605", "source": "google", "data": ["abortion clinic near me today redwood city", [["abortion clinic near me today redwood city ca", 33, [160], {"a": "abortion clinic near me today redwood ", "b": "city ca"}], ["abortion clinic near me today redwood city california", 33, [160], {"a": "abortion clinic near me today redwood ", "b": "city california"}], ["abortion clinic near me today redwood city", 33, [299], {"a": "abortion clinic near me today redwood ", "b": "city"}], ["abortion clinic near me today redwood city ca 94063", 33, [299], {"a": "abortion clinic near me today redwood ", "b": "city ca 94063"}], ["abortion clinic near me today redwood city health", 33, [671], {"a": "abortion clinic near me today redwood ", "b": "city health"}]], {"i": "abortion clinic near me today redwood city", "q": "-p0djsMYkqlEhTlkPFZK51A8Zac", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me today redwood city ca", "abortion clinic near me today redwood city california", "abortion clinic near me today redwood city", "abortion clinic near me today redwood city ca 94063", "abortion clinic near me today redwood city health"], "self_loops": [2], "tags": {"i": "abortion clinic near me today redwood city", "q": "-p0djsMYkqlEhTlkPFZK51A8Zac", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me today stanford", "datetime": "2026-03-12 19:42:39.921591", "source": "google", "data": ["abortion clinic near me today stanford", [["abortion clinic near me today stanford hospital", 33, [160], {"a": "abortion clinic near me today ", "b": "stanford hospital"}], ["abortion clinic near me today stanford ca", 33, [160], {"a": "abortion clinic near me today ", "b": "stanford ca"}], ["abortion clinic near me today stanford medical center", 33, [160], {"a": "abortion clinic near me today ", "b": "stanford medical center"}], ["abortion clinic near me today stanford campus", 33, [160], {"a": "abortion clinic near me today ", "b": "stanford campus"}], ["abortion clinic near me today stanford health care", 33, [160], {"a": "abortion clinic near me today ", "b": "stanford health care"}], ["abortion clinic near me today stanford", 33, [671], {"a": "abortion clinic near me today ", "b": "stanford"}]], {"i": "abortion clinic near me today stanford", "q": "GxTtRUT4ToUEXemzHa8lQ4Hlh04", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me today stanford hospital", "abortion clinic near me today stanford ca", "abortion clinic near me today stanford medical center", "abortion clinic near me today stanford campus", "abortion clinic near me today stanford health care", "abortion clinic near me today stanford"], "self_loops": [5], "tags": {"i": "abortion clinic near me today stanford", "q": "GxTtRUT4ToUEXemzHa8lQ4Hlh04", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me accepts medicaid", "datetime": "2026-03-12 19:42:40.945739", "source": "google", "data": ["abortion clinic near me accepts medicaid", [["abortion clinic near me accept medicaid", 0, [22, 30]], ["women's clinic near me that accepts medicaid", 0, [22, 30]], ["women's health clinic near me that accept medicaid", 0, [22, 30]], ["abortion clinic near me medicaid", 0, [512, 390, 650]], ["abortion clinics near me that take medicaid", 0, [751]]], {"i": "abortion clinic near me accepts medicaid", "q": "iklaf1kWEnqK3auk0XTFVAwru2k", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me accept medicaid", "women's clinic near me that accepts medicaid", "women's health clinic near me that accept medicaid", "abortion clinic near me medicaid", "abortion clinics near me that take medicaid"], "self_loops": [], "tags": {"i": "abortion clinic near me accepts medicaid", "q": "iklaf1kWEnqK3auk0XTFVAwru2k", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me medicaid", "datetime": "2026-03-12 19:42:41.842659", "source": "google", "data": ["abortion clinic near me medicaid", [["abortion clinic near me medicaid", 0, [512]], ["abortion clinic near me medicaid discount", 0, [22, 30]], ["women's clinic near me medicaid", 0, [22, 30]], ["abortion clinic near me accept medicaid", 0, [22, 30]], ["women's clinic near me that accept medicaid", 0, [22, 30]], ["are abortions covered by medicaid", 0, [512, 390, 650]], ["abortion clinics near me that take medicaid", 0, [751]]], {"i": "abortion clinic near me medicaid", "q": "BDEHs093w93P0HvB16zzx_wCKGg", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me medicaid", "abortion clinic near me medicaid discount", "women's clinic near me medicaid", "abortion clinic near me accept medicaid", "women's clinic near me that accept medicaid", "are abortions covered by medicaid", "abortion clinics near me that take medicaid"], "self_loops": [0], "tags": {"i": "abortion clinic near me medicaid", "q": "BDEHs093w93P0HvB16zzx_wCKGg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "do abortion clinics accept insurance", "datetime": "2026-03-12 19:42:42.893262", "source": "google", "data": ["do abortion clinics accept insurance", [["do abortion clinics accept insurance", 0, [22, 30]], ["do abortion clinics take insurance", 0, [22, 30]], ["abortion clinic accept insurance", 0, [22, 30]], ["what insurance cover abortion", 0, [512, 390, 650]], ["do abortion clinics accept medicaid", 0, [751]], ["do abortion clinics take credit cards", 0, [512, 546]], ["do insurance cover abortions", 0, [512, 546]]], {"i": "do abortion clinics accept insurance", "q": "eRVq_h9w1dHKDYJttJYmwIJmNOo", "t": {"bpc": false, "tlw": false}}], "suggests": ["do abortion clinics accept insurance", "do abortion clinics take insurance", "abortion clinic accept insurance", "what insurance cover abortion", "do abortion clinics accept medicaid", "do abortion clinics take credit cards", "do insurance cover abortions"], "self_loops": [0], "tags": {"i": "do abortion clinics accept insurance", "q": "eRVq_h9w1dHKDYJttJYmwIJmNOo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics take insurance", "datetime": "2026-03-12 19:42:43.721454", "source": "google", "data": ["abortion clinics take insurance", [["abortion clinics take insurance", 0, [22, 30]], ["do abortion clinics take insurance", 0, [22, 30]], ["abortion clinics that take insurance near me", 0, [22, 30]], ["do abortion clinics accept insurance", 0, [22, 30]], ["abortion clinics that take cigna insurance", 0, [22, 30]], ["abortion clinics that take private insurance", 0, [22, 30]], ["abortion clinics that take aetna insurance", 0, [22, 30]], ["what insurance cover abortion", 0, [512, 390, 650]], ["abortion clinics that accept insurance", 0, [512, 546]], ["abortion clinic take medicaid", 0, [751]]], {"i": "abortion clinics take insurance", "q": "QyFAWSu1nYM48yin8tWq3RjOgxY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics take insurance", "do abortion clinics take insurance", "abortion clinics that take insurance near me", "do abortion clinics accept insurance", "abortion clinics that take cigna insurance", "abortion clinics that take private insurance", "abortion clinics that take aetna insurance", "what insurance cover abortion", "abortion clinics that accept insurance", "abortion clinic take medicaid"], "self_loops": [0], "tags": {"i": "abortion clinics take insurance", "q": "QyFAWSu1nYM48yin8tWq3RjOgxY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "do abortion clinics take cash", "datetime": "2026-03-12 19:42:44.985880", "source": "google", "data": ["do abortion clinics take cash", [["do abortion clinics take cash", 0, [22, 30]], ["do abortion clinics take credit cards", 0, [512, 390, 650]], ["do abortion clinics take insurance", 0, [512, 390, 650]]], {"i": "do abortion clinics take cash", "q": "peOobsee7cnlQFr0GSxzhS_jMcc", "t": {"bpc": false, "tlw": false}}], "suggests": ["do abortion clinics take cash", "do abortion clinics take credit cards", "do abortion clinics take insurance"], "self_loops": [0], "tags": {"i": "do abortion clinics take cash", "q": "peOobsee7cnlQFr0GSxzhS_jMcc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "do abortion clinics take credit cards", "datetime": "2026-03-12 19:42:46.159448", "source": "google", "data": ["do abortion clinics take credit cards", [["do abortion clinics take credit cards", 0, [512]], ["does planned parenthood take credit cards", 0, [512, 390, 650]], ["do abortion clinics take cash", 0, [751]], ["do abortion clinics take insurance", 0, [512, 546]], ["do abortion clinics accept medicaid", 0, [751]]], {"i": "do abortion clinics take credit cards", "q": "vPCX23xErc7Si25cLV1L6SD7lyI", "t": {"bpc": false, "tlw": false}}], "suggests": ["do abortion clinics take credit cards", "does planned parenthood take credit cards", "do abortion clinics take cash", "do abortion clinics take insurance", "do abortion clinics accept medicaid"], "self_loops": [0], "tags": {"i": "do abortion clinics take credit cards", "q": "vPCX23xErc7Si25cLV1L6SD7lyI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "do abortion clinics accept medicaid", "datetime": "2026-03-12 19:42:47.145045", "source": "google", "data": ["do abortion clinics accept medicaid", [["do abortion clinics accept medicaid", 0, [22, 30]], ["abortion clinics accept medicaid", 0, [22, 30]], ["are abortions covered by medicaid", 0, [512, 390, 650]], ["does medicaid cover abortions", 0, [512, 390, 650]], ["what abortion clinics take medicaid", 0, [512, 390, 650]], ["do abortion clinics take insurance", 0, [512, 546]], ["do abortion clinics take credit cards", 0, [512, 546]], ["do abortion clinics take cash", 0, [751]]], {"i": "do abortion clinics accept medicaid", "q": "6woQFP2qXDwjSmyEshORklzSisE", "t": {"bpc": false, "tlw": false}}], "suggests": ["do abortion clinics accept medicaid", "abortion clinics accept medicaid", "are abortions covered by medicaid", "does medicaid cover abortions", "what abortion clinics take medicaid", "do abortion clinics take insurance", "do abortion clinics take credit cards", "do abortion clinics take cash"], "self_loops": [0], "tags": {"i": "do abortion clinics accept medicaid", "q": "6woQFP2qXDwjSmyEshORklzSisE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what insurance covers abortion pill", "datetime": "2026-03-12 19:42:48.199155", "source": "google", "data": ["what insurance covers abortion pill", [["what insurance covers abortion pill", 0, [512]], ["does health insurance cover morning after pill", 0, [22, 30]], ["does aetna health insurance cover abortion pill", 0, [22, 30]], ["what insurance cover abortion", 0, [512, 390, 650]]], {"i": "what insurance covers abortion pill", "q": "XZ1VVczWHXqNbSBKXNaEhHWRKlk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what insurance covers abortion pill", "does health insurance cover morning after pill", "does aetna health insurance cover abortion pill", "what insurance cover abortion"], "self_loops": [0], "tags": {"i": "what insurance covers abortion pill", "q": "XZ1VVczWHXqNbSBKXNaEhHWRKlk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does insurance cover abortion", "datetime": "2026-03-12 19:42:49.648337", "source": "google", "data": ["does insurance cover abortion", [["does insurance cover abortion", 0, [512]], ["does insurance cover abortion pill", 0, [512]], ["does insurance cover abortion in california", 0, [512]], ["does insurance cover abortions in ny", 0, [512]], ["does insurance cover abortion in illinois", 0, [512]], ["does insurance cover abortion in michigan", 0, [512]], ["does insurance cover abortion in ohio", 0, [512]], ["does insurance cover abortion in nc", 0, [512]], ["does insurance cover abortion pill in pa", 0, [512]], ["does insurance cover abortion in nj", 0, [512]]], {"q": "GWtj25Q3SyY0WvA7pBRxj62UFR4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does insurance cover abortion", "does insurance cover abortion pill", "does insurance cover abortion in california", "does insurance cover abortions in ny", "does insurance cover abortion in illinois", "does insurance cover abortion in michigan", "does insurance cover abortion in ohio", "does insurance cover abortion in nc", "does insurance cover abortion pill in pa", "does insurance cover abortion in nj"], "self_loops": [0], "tags": {"q": "GWtj25Q3SyY0WvA7pBRxj62UFR4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does insurance cover abortion pill", "datetime": "2026-03-12 19:42:50.674933", "source": "google", "data": ["does insurance cover abortion pill", [["does insurance cover abortion pill", 0, [512]], ["does insurance cover abortion pill in pa", 0, [512]], ["does insurance cover abortion pill at planned parenthood", 0, [512]], ["does insurance cover abortion pill illinois", 0, [22, 30]], ["does insurance cover abortion pill nj", 0, [22, 30]], ["does insurance cover abortion pill florida", 0, [22, 30]], ["does insurance cover abortion pill ny", 0, [22, 30]], ["does insurance cover abortion pill nyc", 0, [22, 30]], ["does insurance cover abortion pill california", 0, [22, 30]], ["does insurance cover abortion pill washington", 0, [22, 30]]], {"i": "does insurance cover abortion pill", "q": "h7mll1sjcEQQoA8gtqyXuf-7Mhs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does insurance cover abortion pill", "does insurance cover abortion pill in pa", "does insurance cover abortion pill at planned parenthood", "does insurance cover abortion pill illinois", "does insurance cover abortion pill nj", "does insurance cover abortion pill florida", "does insurance cover abortion pill ny", "does insurance cover abortion pill nyc", "does insurance cover abortion pill california", "does insurance cover abortion pill washington"], "self_loops": [0], "tags": {"i": "does insurance cover abortion pill", "q": "h7mll1sjcEQQoA8gtqyXuf-7Mhs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does insurance cover abortion at planned parenthood", "datetime": "2026-03-12 19:42:51.876654", "source": "google", "data": ["does insurance cover abortion at planned parenthood", [["does insurance cover abortion at planned parenthood", 0, [512]], ["does insurance cover abortion pill at planned parenthood", 0, [22, 30]], ["does kaiser insurance cover abortions at planned parenthood", 0, [22, 30]], ["does anthem blue cross cover abortions at planned parenthood", 0, [22, 30]], ["do you need insurance for an abortion at planned parenthood", 0, [22, 30]], ["how much is an abortion at planned parenthood with insurance", 0, [512, 390, 650]], ["do you need insurance to get an abortion at planned parenthood", 0, [512, 390, 650]], ["does planned parenthood take insurance for abortions", 0, [512, 390, 650]], ["does insurance cover planned parenthood", 0, [512, 546]], ["does insurance cover an abortion", 0, [512, 546]]], {"i": "does insurance cover abortion at planned parenthood", "q": "Rzr0pVwp5V_ZhIsqx4UaAGrjvC4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does insurance cover abortion at planned parenthood", "does insurance cover abortion pill at planned parenthood", "does kaiser insurance cover abortions at planned parenthood", "does anthem blue cross cover abortions at planned parenthood", "do you need insurance for an abortion at planned parenthood", "how much is an abortion at planned parenthood with insurance", "do you need insurance to get an abortion at planned parenthood", "does planned parenthood take insurance for abortions", "does insurance cover planned parenthood", "does insurance cover an abortion"], "self_loops": [0], "tags": {"i": "does insurance cover abortion at planned parenthood", "q": "Rzr0pVwp5V_ZhIsqx4UaAGrjvC4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does insurance cover abortion costs", "datetime": "2026-03-12 19:42:53.168979", "source": "google", "data": ["does insurance cover abortion costs", [["does insurance cover abortion costs", 0, [22, 30]], ["how much does insurance cover for abortions", 0, [512, 390, 650]], ["what insurance cover abortion", 0, [512, 390, 650]], ["does insurance cover abortion pill", 0, [512, 546]]], {"i": "does insurance cover abortion costs", "q": "hcPvihbmF39GmPu1FzQUCB_0wPg", "t": {"bpc": false, "tlw": false}}], "suggests": ["does insurance cover abortion costs", "how much does insurance cover for abortions", "what insurance cover abortion", "does insurance cover abortion pill"], "self_loops": [0], "tags": {"i": "does insurance cover abortion costs", "q": "hcPvihbmF39GmPu1FzQUCB_0wPg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does insurance cover abortion california", "datetime": "2026-03-12 19:42:54.388178", "source": "google", "data": ["does insurance cover abortion california", [["does insurance cover abortion california", 0, [22, 30]], ["does insurance cover abortion pill california", 0, [22, 30]], ["does insurance cover abortion in ca", 0, [22, 30]], ["does blue cross cover abortion pill in california", 0, [22, 30]], ["does health insurance cover abortion in california", 0, [22, 30]], ["does kaiser insurance cover abortion in california", 0, [22, 30]], ["does blue cross insurance cover abortions in california", 0, [22, 30]], ["what insurance cover abortion", 0, [512, 390, 650]], ["california insurance abortion", 0, [751]], ["are abortions covered by insurance in california", 0, [512, 546]]], {"i": "does insurance cover abortion california", "q": "KS3xND-AGN092qXjFuh-9SbmiiU", "t": {"bpc": false, "tlw": false}}], "suggests": ["does insurance cover abortion california", "does insurance cover abortion pill california", "does insurance cover abortion in ca", "does blue cross cover abortion pill in california", "does health insurance cover abortion in california", "does kaiser insurance cover abortion in california", "does blue cross insurance cover abortions in california", "what insurance cover abortion", "california insurance abortion", "are abortions covered by insurance in california"], "self_loops": [0], "tags": {"i": "does insurance cover abortion california", "q": "KS3xND-AGN092qXjFuh-9SbmiiU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does insurance cover abortion florida", "datetime": "2026-03-12 19:42:55.429823", "source": "google", "data": ["does insurance cover abortion florida", [["does insurance cover abortion florida", 0, [22, 30]], ["does insurance cover abortion pill florida", 0, [22, 30]], ["do insurance cover abortions in florida", 0, [22, 30]], ["does health insurance cover abortion in florida", 0, [22, 30]], ["does blue cross insurance cover abortions in florida", 0, [22, 30]], ["what insurance cover abortion", 0, [512, 390, 650]], ["does florida blue insurance cover abortion", 0, [751]], ["does insurance cover abortion pill", 0, [512, 546]]], {"i": "does insurance cover abortion florida", "q": "a05mVXAsWhjNADLoWuZ2BwCARIU", "t": {"bpc": false, "tlw": false}}], "suggests": ["does insurance cover abortion florida", "does insurance cover abortion pill florida", "do insurance cover abortions in florida", "does health insurance cover abortion in florida", "does blue cross insurance cover abortions in florida", "what insurance cover abortion", "does florida blue insurance cover abortion", "does insurance cover abortion pill"], "self_loops": [0], "tags": {"i": "does insurance cover abortion florida", "q": "a05mVXAsWhjNADLoWuZ2BwCARIU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does insurance cover abortion nj", "datetime": "2026-03-12 19:42:56.559810", "source": "google", "data": ["does insurance cover abortion nj", [["does insurance cover abortion nj", 0, [22, 30]], ["does insurance cover abortion pill nj", 0, [22, 30]], ["does health insurance cover abortion nj", 0, [22, 30]], ["what insurance cover abortion", 0, [512, 390, 650]], ["does insurance cover abortion in new jersey", 0, [512, 546]]], {"i": "does insurance cover abortion nj", "q": "ifbOIt5QflYsi_x2JuJkPWQhmbg", "t": {"bpc": false, "tlw": false}}], "suggests": ["does insurance cover abortion nj", "does insurance cover abortion pill nj", "does health insurance cover abortion nj", "what insurance cover abortion", "does insurance cover abortion in new jersey"], "self_loops": [0], "tags": {"i": "does insurance cover abortion nj", "q": "ifbOIt5QflYsi_x2JuJkPWQhmbg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does insurance cover abortion pill at planned parenthood", "datetime": "2026-03-12 19:42:57.952646", "source": "google", "data": ["does insurance cover abortion pill at planned parenthood", [["does insurance cover abortion pill at planned parenthood", 0, [512]], ["how much is an abortion at planned parenthood with insurance", 0, [512, 390, 650]], ["does planned parenthood insurance cover abortions", 0, [512, 390, 650]], ["does planned parenthood take insurance for abortions", 0, [512, 390, 650]], ["do you need insurance to get an abortion at planned parenthood", 0, [512, 390, 650]]], {"i": "does insurance cover abortion pill at planned parenthood", "q": "c8DZ2ZgeuUWDy5j7n_DR5SP5oUI", "t": {"bpc": false, "tlw": false}}], "suggests": ["does insurance cover abortion pill at planned parenthood", "how much is an abortion at planned parenthood with insurance", "does planned parenthood insurance cover abortions", "does planned parenthood take insurance for abortions", "do you need insurance to get an abortion at planned parenthood"], "self_loops": [0], "tags": {"i": "does insurance cover abortion pill at planned parenthood", "q": "c8DZ2ZgeuUWDy5j7n_DR5SP5oUI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic near me that accepts medicaid", "datetime": "2026-03-12 19:42:59.421304", "source": "google", "data": ["women's clinic near me that accepts medicaid", [["women's clinic near me that accepts medicaid", 0, [22, 30]], ["women's health clinic near me that accept medicaid", 0, [22, 30]], ["women's clinic near me medicaid", 0, [22, 30]], ["female doctors near me that accept medicaid", 0, [512, 390, 650]], ["does the women's clinic take medicaid", 0, [512, 390, 650]], ["clinic near me that accepts medicaid", 0, [512, 390, 650]]], {"i": "women's clinic near me that accepts medicaid", "q": "zuyHa50U5493BSIMyC61hpDwIlk", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic near me that accepts medicaid", "women's health clinic near me that accept medicaid", "women's clinic near me medicaid", "female doctors near me that accept medicaid", "does the women's clinic take medicaid", "clinic near me that accepts medicaid"], "self_loops": [0], "tags": {"i": "women's clinic near me that accepts medicaid", "q": "zuyHa50U5493BSIMyC61hpDwIlk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic near me that accept medicaid", "datetime": "2026-03-12 19:43:00.669678", "source": "google", "data": ["women's health clinic near me that accept medicaid", [["women's health clinic near me that accept medicaid", 0, [512]], ["female doctors near me that accept medicaid", 0, [512, 390, 650]], ["how do i find a doctor who accepts medicaid", 0, [512, 390, 650]], ["women's clinics that accept medicaid near me", 0, [512, 390, 650]], ["what does women's health medicaid cover", 0, [512, 390, 650]]], {"i": "women's health clinic near me that accept medicaid", "q": "JVyMZEfljUvtdD1CeA8flWN4uNk", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health clinic near me that accept medicaid", "female doctors near me that accept medicaid", "how do i find a doctor who accepts medicaid", "women's clinics that accept medicaid near me", "what does women's health medicaid cover"], "self_loops": [0], "tags": {"i": "women's health clinic near me that accept medicaid", "q": "JVyMZEfljUvtdD1CeA8flWN4uNk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me medicaid discount", "datetime": "2026-03-12 19:43:01.900842", "source": "google", "data": ["abortion clinic near me medicaid discount", [["abortion clinic near me medicaid discount", 0, [22, 30]], ["abortion clinic near me medicaid", 0, [512, 390, 650]], ["are abortions covered by medicaid", 0, [512, 390, 650]], ["abortion clinic near me accepts medicaid", 0, [751]], ["abortion clinics near me that take medicaid", 0, [751]]], {"i": "abortion clinic near me medicaid discount", "q": "T6pVSRsBn8dg3AfXzYIEFTn0jxc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me medicaid discount", "abortion clinic near me medicaid", "are abortions covered by medicaid", "abortion clinic near me accepts medicaid", "abortion clinics near me that take medicaid"], "self_loops": [0], "tags": {"i": "abortion clinic near me medicaid discount", "q": "T6pVSRsBn8dg3AfXzYIEFTn0jxc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic near me medicaid", "datetime": "2026-03-12 19:43:02.814949", "source": "google", "data": ["women's clinic near me medicaid", [["women's clinic near me medicaid", 0, [512]], ["women's clinic near me that accept medicaid", 0, [22, 30]], ["women's health clinic near me that accept medicaid", 0, [22, 30]], ["women's clinic near me without insurance", 0, [512, 390, 650]], ["does the women's clinic take medicaid", 0, [512, 390, 650]], ["women's health clinic medicaid", 0, [512, 546]]], {"i": "women's clinic near me medicaid", "q": "Z9ptsOtQQ5fw8RJ3zSy-DDcHBRk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic near me medicaid", "women's clinic near me that accept medicaid", "women's health clinic near me that accept medicaid", "women's clinic near me without insurance", "does the women's clinic take medicaid", "women's health clinic medicaid"], "self_loops": [0], "tags": {"i": "women's clinic near me medicaid", "q": "Z9ptsOtQQ5fw8RJ3zSy-DDcHBRk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics near me that take medicaid", "datetime": "2026-03-12 19:43:03.651621", "source": "google", "data": ["abortion clinics near me that take medicaid", [["abortion clinics near me that take medicaid", 0, [22, 30]], ["abortion clinic near me medicaid", 0, [22, 30]], ["abortion clinic near me medicaid discount", 0, [22, 30]], ["abortion clinic near me that accepts medicaid", 0, [512, 546]]], {"i": "abortion clinics near me that take medicaid", "q": "Vo9Ka9PnOfE4J1GfYqwa28AeR9g", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics near me that take medicaid", "abortion clinic near me medicaid", "abortion clinic near me medicaid discount", "abortion clinic near me that accepts medicaid"], "self_loops": [0], "tags": {"i": "abortion clinics near me that take medicaid", "q": "Vo9Ka9PnOfE4J1GfYqwa28AeR9g", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open on sunday", "datetime": "2026-03-12 19:43:04.989057", "source": "google", "data": ["abortion clinic near me open on sunday", [["abortion clinic near me open on sunday", 0, [22, 30]], ["abortion clinic near me open saturday", 0, [22, 30]], ["women's clinic near me open saturday", 0, [22, 30]], ["abortion clinic open near me", 0, [512, 390, 650]]], {"i": "abortion clinic near me open on sunday", "q": "tLSe70isweofUwAC_P7AK6qfLiQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open on sunday", "abortion clinic near me open saturday", "women's clinic near me open saturday", "abortion clinic open near me"], "self_loops": [0], "tags": {"i": "abortion clinic near me open on sunday", "q": "tLSe70isweofUwAC_P7AK6qfLiQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic near me open saturday", "datetime": "2026-03-12 19:43:06.153782", "source": "google", "data": ["women's clinic near me open saturday", [["women's clinic near me open saturday", 0, [22, 30]], ["women's clinics open on weekends near me", 0, [512, 390, 650]], ["what clinic is open on saturday", 0, [512, 390, 650]], ["is the health clinic open on saturday", 0, [512, 390, 650]]], {"i": "women's clinic near me open saturday", "q": "TnY1EdrnxM9dSqJE1JUhE-FcE6Y", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic near me open saturday", "women's clinics open on weekends near me", "what clinic is open on saturday", "is the health clinic open on saturday"], "self_loops": [0], "tags": {"i": "women's clinic near me open saturday", "q": "TnY1EdrnxM9dSqJE1JUhE-FcE6Y", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic open sunday near me", "datetime": "2026-03-12 19:43:07.444553", "source": "google", "data": ["abortion clinic open sunday near me", [["abortion clinic open sunday near me", 0, [512]], ["abortion clinic open today near me", 0, [22, 30]], ["women's clinic open on sunday near me", 0, [22, 30]], ["abortion clinic open near me", 0, [22, 30]], ["women's clinic open near me", 0, [22, 10, 30]], ["abortion clinic open now near me", 0, [22, 30]], ["abortion clinic open saturday near me", 0, [22, 30]], ["abortion clinic hours near me", 0, [22, 30]], ["abortion clinic open on weekends near me", 0, [751]]], {"i": "abortion clinic open sunday near me", "q": "6rfOXhO4E6fgDap75afdm1jOZ8g", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic open sunday near me", "abortion clinic open today near me", "women's clinic open on sunday near me", "abortion clinic open near me", "women's clinic open near me", "abortion clinic open now near me", "abortion clinic open saturday near me", "abortion clinic hours near me", "abortion clinic open on weekends near me"], "self_loops": [0], "tags": {"i": "abortion clinic open sunday near me", "q": "6rfOXhO4E6fgDap75afdm1jOZ8g", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me online appointment", "datetime": "2026-03-12 19:43:08.389677", "source": "google", "data": ["abortion clinic near me online appointment", [["abortion clinic near me online appointment", 0, [22, 30]], ["appointment for abortion near me", 0, [512, 390, 650]], ["abortion clinic open on saturday near me", 0, [512, 390, 650]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic near me open sunday", 0, [751]]], {"i": "abortion clinic near me online appointment", "q": "09uWEV2p1vmDIH7ZRh6mRQ1BxhU", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me online appointment", "appointment for abortion near me", "abortion clinic open on saturday near me", "abortion clinic near me for free", "abortion clinic near me open sunday"], "self_loops": [0], "tags": {"i": "abortion clinic near me online appointment", "q": "09uWEV2p1vmDIH7ZRh6mRQ1BxhU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open tomorrow morning", "datetime": "2026-03-12 19:43:09.390576", "source": "google", "data": ["abortion clinic near me open tomorrow morning", [["abortion clinic near me open tomorrow morning palo alto", 33, [160], {"a": "abortion clinic near me open tomorrow ", "b": "morning palo alto"}], ["abortion clinic near me open tomorrow mornings", 33, [160], {"a": "abortion clinic near me open tomorrow ", "b": "mornings"}], ["abortion clinic near me open tomorrow morning san jose", 33, [160], {"a": "abortion clinic near me open tomorrow ", "b": "morning san jose"}], ["abortion clinic near me open tomorrow morning 2024", 33, [160], {"a": "abortion clinic near me open tomorrow ", "b": "morning 2024"}]], {"i": "abortion clinic near me open tomorrow morning", "q": "yCcYIBBEq-iVOEbT8GgK2v2oyfA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open tomorrow morning palo alto", "abortion clinic near me open tomorrow mornings", "abortion clinic near me open tomorrow morning san jose", "abortion clinic near me open tomorrow morning 2024"], "self_loops": [], "tags": {"i": "abortion clinic near me open tomorrow morning", "q": "yCcYIBBEq-iVOEbT8GgK2v2oyfA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open tomorrow near me", "datetime": "2026-03-12 19:43:10.444276", "source": "google", "data": ["abortion clinic near me open tomorrow near me", [["abortion clinic near me open tomorrow near me palo alto", 33, [160], {"a": "abortion clinic near me open tomorrow near ", "b": "me palo alto"}], ["abortion clinic near me open tomorrow near me san jose", 33, [160], {"a": "abortion clinic near me open tomorrow near ", "b": "me san jose"}], ["abortion clinic near me open tomorrow near menlo park ca", 33, [160], {"a": "abortion clinic near me open tomorrow near ", "b": "menlo park ca"}], ["abortion clinic near me open tomorrow near menlo park", 33, [160], {"a": "abortion clinic near me open tomorrow near ", "b": "menlo park"}], ["abortion clinic near me open tomorrow near me sunnyvale", 33, [160], {"a": "abortion clinic near me open tomorrow near ", "b": "me sunnyvale"}], ["abortion clinic near me open tomorrow near me", 33, [299], {"a": "abortion clinic near me open tomorrow near ", "b": "me"}], ["abortion clinic near me open tomorrow near me stanford", 33, [402], {"a": "abortion clinic near me open tomorrow near ", "b": "me stanford"}], ["abortion clinic near me open tomorrow near me east palo alto", 33, [402], {"a": "abortion clinic near me open tomorrow near ", "b": "me east palo alto"}], ["abortion clinic near me open tomorrow near me san carlos", 33, [402], {"a": "abortion clinic near me open tomorrow near ", "b": "me san carlos"}], ["abortion clinic near me open tomorrow near medicaid", 33, [671], {"a": "abortion clinic near me open tomorrow near ", "b": "medicaid"}]], {"i": "abortion clinic near me open tomorrow near me", "q": "Ff5S9eXdZlFEtgl7YnD4zTWzaog", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open tomorrow near me palo alto", "abortion clinic near me open tomorrow near me san jose", "abortion clinic near me open tomorrow near menlo park ca", "abortion clinic near me open tomorrow near menlo park", "abortion clinic near me open tomorrow near me sunnyvale", "abortion clinic near me open tomorrow near me", "abortion clinic near me open tomorrow near me stanford", "abortion clinic near me open tomorrow near me east palo alto", "abortion clinic near me open tomorrow near me san carlos", "abortion clinic near me open tomorrow near medicaid"], "self_loops": [5], "tags": {"i": "abortion clinic near me open tomorrow near me", "q": "Ff5S9eXdZlFEtgl7YnD4zTWzaog", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open tomorrow san jose", "datetime": "2026-03-12 19:43:11.455104", "source": "google", "data": ["abortion clinic near me open tomorrow san jose", [["abortion clinic near me open tomorrow san jose ca", 33, [160], {"a": "abortion clinic near me open tomorrow san ", "b": "jose ca"}], ["abortion clinic near me open tomorrow san jose california", 33, [160], {"a": "abortion clinic near me open tomorrow san ", "b": "jose california"}], ["abortion clinic near me open tomorrow san jose reddit", 33, [160], {"a": "abortion clinic near me open tomorrow san ", "b": "jose reddit"}], ["abortion clinic near me open tomorrow san jose area", 33, [160], {"a": "abortion clinic near me open tomorrow san ", "b": "jose area"}], ["abortion clinic near me open tomorrow san jose", 33, [299], {"a": "abortion clinic near me open tomorrow san ", "b": "jose"}]], {"i": "abortion clinic near me open tomorrow san jose", "q": "81yaX4r5BN_myuBWpKSVnSERTgQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open tomorrow san jose ca", "abortion clinic near me open tomorrow san jose california", "abortion clinic near me open tomorrow san jose reddit", "abortion clinic near me open tomorrow san jose area", "abortion clinic near me open tomorrow san jose"], "self_loops": [4], "tags": {"i": "abortion clinic near me open tomorrow san jose", "q": "81yaX4r5BN_myuBWpKSVnSERTgQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open tomorrow 2024", "datetime": "2026-03-12 19:43:12.728179", "source": "google", "data": ["abortion clinic near me open tomorrow 2024", [["abortion clinic near me open tomorrow 2024 california", 33, [160], {"a": "abortion clinic near me open tomorrow ", "b": "2024 california"}], ["abortion clinic near me open tomorrow 2024 schedule", 33, [160], {"a": "abortion clinic near me open tomorrow ", "b": "2024 schedule"}], ["abortion clinic near me open tomorrow 2024 san jose", 33, [160], {"a": "abortion clinic near me open tomorrow ", "b": "2024 san jose"}], ["abortion clinic near me open tomorrow 2024 palo alto", 33, [160], {"a": "abortion clinic near me open tomorrow ", "b": "2024 palo alto"}], ["abortion clinic near me open tomorrow 2024 near me", 33, [160], {"a": "abortion clinic near me open tomorrow ", "b": "2024 near me"}]], {"i": "abortion clinic near me open tomorrow 2024", "q": "6P8UAxzPtLEHhVf3kDhAFYMYVM0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open tomorrow 2024 california", "abortion clinic near me open tomorrow 2024 schedule", "abortion clinic near me open tomorrow 2024 san jose", "abortion clinic near me open tomorrow 2024 palo alto", "abortion clinic near me open tomorrow 2024 near me"], "self_loops": [], "tags": {"i": "abortion clinic near me open tomorrow 2024", "q": "6P8UAxzPtLEHhVf3kDhAFYMYVM0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me open tomorrow san jose ca", "datetime": "2026-03-12 19:43:14.017645", "source": "google", "data": ["abortion clinic near me open tomorrow san jose ca", [["abortion clinic near me open tomorrow san jose california", 33, [160], {"a": "abortion clinic near me open tomorrow san jose ", "b": "california"}], ["abortion clinic near me open tomorrow san jose ca", 33, [671], {"a": "abortion clinic near me open tomorrow san jose ", "b": "ca"}]], {"i": "abortion clinic near me open tomorrow san jose ca", "q": "un6Tz-iTnfbcuNoxeL97a8Y2t5U", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me open tomorrow san jose california", "abortion clinic near me open tomorrow san jose ca"], "self_loops": [1], "tags": {"i": "abortion clinic near me open tomorrow san jose ca", "q": "un6Tz-iTnfbcuNoxeL97a8Y2t5U", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "same day appointment clinic near me", "datetime": "2026-03-12 19:43:14.890600", "source": "google", "data": ["same day appointment clinic near me", [["same day appointment clinic near me", 0, [512]], ["same day appointment doctor near me", 0, [22, 30]], ["same day appointment dental clinic near me", 0, [22, 30]], ["same day appointment eye doctor near me", 0, [22, 30]], ["vet clinic same day appointment near me", 0, [22, 30]], ["abortion clinic near me same day appointment", 0, [22, 30]], ["can you get a doctor's appointment the same day", 0, [512, 390, 650]], ["same day clinic near me", 0, [512, 390, 650]], ["how to get a same day doctor appointment", 0, [512, 390, 650]], ["same-day appointment near me", 0, [546, 649]]], {"i": "same day appointment clinic near me", "q": "gYORHKo6iuSEpuQGHhOIYAtZngc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["same day appointment clinic near me", "same day appointment doctor near me", "same day appointment dental clinic near me", "same day appointment eye doctor near me", "vet clinic same day appointment near me", "abortion clinic near me same day appointment", "can you get a doctor's appointment the same day", "same day clinic near me", "how to get a same day doctor appointment", "same-day appointment near me"], "self_loops": [0], "tags": {"i": "same day appointment clinic near me", "q": "gYORHKo6iuSEpuQGHhOIYAtZngc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "same day abortion clinics near me", "datetime": "2026-03-12 19:43:16.221013", "source": "google", "data": ["same day abortion clinics near me", [["same day abortion clinics near me", 0, [512]], ["same day abortion clinics near me open now", 0, [22, 30]], ["same day private abortion clinic near me", 0, [22, 30]], ["24 hour abortion clinic near me", 0, [512, 390, 650]], ["same day abortion clinics in illinois", 0, [751]]], {"i": "same day abortion clinics near me", "q": "WEuW4Jz2G0kNmfcfkHyYph7tvAs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["same day abortion clinics near me", "same day abortion clinics near me open now", "same day private abortion clinic near me", "24 hour abortion clinic near me", "same day abortion clinics in illinois"], "self_loops": [0], "tags": {"i": "same day abortion clinics near me", "q": "WEuW4Jz2G0kNmfcfkHyYph7tvAs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic open now near me", "datetime": "2026-03-12 19:43:17.245892", "source": "google", "data": ["abortion clinic open now near me", [["abortion clinic open now near me", 0, [22, 30]], ["abortion clinic open today near me", 0, [22, 30]], ["women's clinic open now near me", 0, [22, 30]], ["abortion clinic near me open now within 8.1 km", 0, [22, 30]], ["abortion clinic near me open now within 20 mi", 0, [22, 30]], ["abortion clinic near me open now within 5 mi", 0, [22, 30]], ["abortion clinic near me prices open now", 0, [22, 30]], ["free abortion clinic near me open now", 0, [22, 30]], ["private abortion clinic near me open now", 0, [22, 30]], ["safe abortion clinic near me open now", 0, [22, 30]]], {"i": "abortion clinic open now near me", "q": "a69MPjBlF9y4TQ0vQgSMjz90CQ4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic open now near me", "abortion clinic open today near me", "women's clinic open now near me", "abortion clinic near me open now within 8.1 km", "abortion clinic near me open now within 20 mi", "abortion clinic near me open now within 5 mi", "abortion clinic near me prices open now", "free abortion clinic near me open now", "private abortion clinic near me open now", "safe abortion clinic near me open now"], "self_loops": [0], "tags": {"i": "abortion clinic open now near me", "q": "a69MPjBlF9y4TQ0vQgSMjz90CQ4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "pregnancy clinic open on saturday near me", "datetime": "2026-03-12 19:43:18.639527", "source": "google", "data": ["pregnancy clinic open on saturday near me", [["pregnancy clinic open on saturday near me", 0, [512]], ["pregnancy test open near me", 0, [22, 30]], ["is the little clinic open on saturday", 0, [512, 390, 650]], ["is the health clinic open on saturday", 0, [512, 390, 650]], ["what clinic is open on saturday", 0, [512, 390, 650]], ["pregnancy clinic open on sunday", 0, [751]], ["pregnancy clinic open today", 0, [751]], ["pregnancy clinic open near me", 0, [512, 546]]], {"i": "pregnancy clinic open on saturday near me", "q": "6VXzFAxy5KCZMThiWD92Xlx9t40", "t": {"bpc": false, "tlw": false}}], "suggests": ["pregnancy clinic open on saturday near me", "pregnancy test open near me", "is the little clinic open on saturday", "is the health clinic open on saturday", "what clinic is open on saturday", "pregnancy clinic open on sunday", "pregnancy clinic open today", "pregnancy clinic open near me"], "self_loops": [0], "tags": {"i": "pregnancy clinic open on saturday near me", "q": "6VXzFAxy5KCZMThiWD92Xlx9t40", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me 24 hours san jose", "datetime": "2026-03-12 19:43:19.722566", "source": "google", "data": ["abortion clinic near me 24 hours san jose", [["abortion clinic near me 24 hours san jose ca", 33, [160], {"a": "abortion clinic near me 24 hours san ", "b": "jose ca"}], ["abortion clinic near me 24 hours san jose california", 33, [160], {"a": "abortion clinic near me 24 hours san ", "b": "jose california"}], ["abortion clinic near me 24 hours san jose reddit", 33, [160], {"a": "abortion clinic near me 24 hours san ", "b": "jose reddit"}], ["abortion clinic near me 24 hours san jose", 33, [299], {"a": "abortion clinic near me 24 hours san ", "b": "jose"}]], {"i": "abortion clinic near me 24 hours san jose", "q": "-Lt-Dn37VhVMPJvTg2NcykGB3VA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me 24 hours san jose ca", "abortion clinic near me 24 hours san jose california", "abortion clinic near me 24 hours san jose reddit", "abortion clinic near me 24 hours san jose"], "self_loops": [3], "tags": {"i": "abortion clinic near me 24 hours san jose", "q": "-Lt-Dn37VhVMPJvTg2NcykGB3VA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me 24 hours open", "datetime": "2026-03-12 19:43:20.581326", "source": "google", "data": ["abortion clinic near me 24 hours open", [["abortion clinic near me 24 hours open now", 33, [160], {"a": "abortion clinic near me 24 hours ", "b": "open now"}], ["abortion clinic near me 24 hours open today", 33, [160], {"a": "abortion clinic near me 24 hours ", "b": "open today"}], ["abortion clinic near me 24 hours open near me", 33, [160], {"a": "abortion clinic near me 24 hours ", "b": "open near me"}], ["abortion clinic near me 24 hours open on saturday", 33, [160], {"a": "abortion clinic near me 24 hours ", "b": "open on saturday"}], ["abortion clinic near me 24 hours open on sunday", 33, [160], {"a": "abortion clinic near me 24 hours ", "b": "open on sunday"}]], {"i": "abortion clinic near me 24 hours open", "q": "ceu-d4_V76WrevBvtYDCjFPjPew", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me 24 hours open now", "abortion clinic near me 24 hours open today", "abortion clinic near me 24 hours open near me", "abortion clinic near me 24 hours open on saturday", "abortion clinic near me 24 hours open on sunday"], "self_loops": [], "tags": {"i": "abortion clinic near me 24 hours open", "q": "ceu-d4_V76WrevBvtYDCjFPjPew", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me 24 hours near me", "datetime": "2026-03-12 19:43:21.530438", "source": "google", "data": ["abortion clinic near me 24 hours near me", [["abortion clinic near me 24 hours near me palo alto", 33, [160], {"a": "abortion clinic near me 24 hours near ", "b": "me palo alto"}], ["abortion clinic near me 24 hours near me san jose", 33, [160], {"a": "abortion clinic near me 24 hours near ", "b": "me san jose"}], ["abortion clinic near me 24 hours near menlo park ca", 33, [160], {"a": "abortion clinic near me 24 hours near ", "b": "menlo park ca"}], ["abortion clinic near me 24 hours near menlo park", 33, [160], {"a": "abortion clinic near me 24 hours near ", "b": "menlo park"}], ["abortion clinic near me 24 hours near me", 33, [299], {"a": "abortion clinic near me 24 hours near ", "b": "me"}], ["abortion clinic near me 24 hours near me stanford", 33, [402], {"a": "abortion clinic near me 24 hours near ", "b": "me stanford"}], ["abortion clinic near me 24 hours near me east palo alto", 33, [402], {"a": "abortion clinic near me 24 hours near ", "b": "me east palo alto"}], ["abortion clinic near me 24 hours near me san carlos", 33, [402], {"a": "abortion clinic near me 24 hours near ", "b": "me san carlos"}]], {"i": "abortion clinic near me 24 hours near me", "q": "4p_jeXaJegMbF3CdWAK41k7IkpA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me 24 hours near me palo alto", "abortion clinic near me 24 hours near me san jose", "abortion clinic near me 24 hours near menlo park ca", "abortion clinic near me 24 hours near menlo park", "abortion clinic near me 24 hours near me", "abortion clinic near me 24 hours near me stanford", "abortion clinic near me 24 hours near me east palo alto", "abortion clinic near me 24 hours near me san carlos"], "self_loops": [4], "tags": {"i": "abortion clinic near me 24 hours near me", "q": "4p_jeXaJegMbF3CdWAK41k7IkpA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me 24 hours no insurance", "datetime": "2026-03-12 19:43:22.664363", "source": "google", "data": ["abortion clinic near me 24 hours no insurance", [["abortion clinic near me 24 hours no insurance san jose", 33, [160], {"a": "abortion clinic near me 24 hours no ", "b": "insurance san jose"}], ["abortion clinic near me 24 hours no insurance needed", 33, [160], {"a": "abortion clinic near me 24 hours no ", "b": "insurance needed"}], ["abortion clinic near me 24 hours no insurance california", 33, [160], {"a": "abortion clinic near me 24 hours no ", "b": "insurance california"}], ["abortion clinic near me 24 hours no insurance near me", 33, [160], {"a": "abortion clinic near me 24 hours no ", "b": "insurance near me"}], ["abortion clinic near me 24 hours no insurance bay area", 33, [160], {"a": "abortion clinic near me 24 hours no ", "b": "insurance bay area"}]], {"i": "abortion clinic near me 24 hours no insurance", "q": "H3l_BL_kj5WdNcc-Da2Sys5pN2A", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me 24 hours no insurance san jose", "abortion clinic near me 24 hours no insurance needed", "abortion clinic near me 24 hours no insurance california", "abortion clinic near me 24 hours no insurance near me", "abortion clinic near me 24 hours no insurance bay area"], "self_loops": [], "tags": {"i": "abortion clinic near me 24 hours no insurance", "q": "H3l_BL_kj5WdNcc-Da2Sys5pN2A", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me 24 hours san jose ca", "datetime": "2026-03-12 19:43:23.751976", "source": "google", "data": ["abortion clinic near me 24 hours san jose ca", [["abortion clinic near me 24 hours san jose california", 33, [160], {"a": "abortion clinic near me 24 hours san jose ", "b": "california"}], ["abortion clinic near me 24 hours san jose ca reddit", 33, [160], {"a": "abortion clinic near me 24 hours san jose ", "b": "ca reddit"}], ["abortion clinic near me 24 hours san jose ca", 33, [299], {"a": "abortion clinic near me 24 hours san jose ", "b": "ca"}]], {"i": "abortion clinic near me 24 hours san jose ca", "q": "U06kYC21OKL0xTkg2lKu-K_tnng", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me 24 hours san jose california", "abortion clinic near me 24 hours san jose ca reddit", "abortion clinic near me 24 hours san jose ca"], "self_loops": [2], "tags": {"i": "abortion clinic near me 24 hours san jose ca", "q": "U06kYC21OKL0xTkg2lKu-K_tnng", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion pill legal in texas", "datetime": "2026-03-12 19:43:24.854295", "source": "google", "data": ["is abortion pill legal in texas", [["is abortion pill legal in texas", 0, [512]], ["is morning after pill legal in texas", 0, [22, 30]], ["is abortion pill illegal in texas", 0, [22, 30]], ["is abortion pill available in texas", 0, [22, 30]], ["is abortion medication legal in texas", 0, [22, 30]], ["are abortion pills legal in texas 2025", 0, [22, 30]], ["are abortion pills legal in texas reddit", 0, [22, 30]], ["is morning after pill available in texas", 0, [22, 30]], ["are abortion clinics legal in texas", 0, [22, 30]], ["are abortion pills legal in texas", 0, [22, 10, 30]]], {"i": "is abortion pill legal in texas", "q": "MKbuKD5RjAHJRRmw4ISj9bYLLz4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion pill legal in texas", "is morning after pill legal in texas", "is abortion pill illegal in texas", "is abortion pill available in texas", "is abortion medication legal in texas", "are abortion pills legal in texas 2025", "are abortion pills legal in texas reddit", "is morning after pill available in texas", "are abortion clinics legal in texas", "are abortion pills legal in texas"], "self_loops": [0], "tags": {"i": "is abortion pill legal in texas", "q": "MKbuKD5RjAHJRRmw4ISj9bYLLz4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill in missouri", "datetime": "2026-03-12 19:43:26.181361", "source": "google", "data": ["abortion pill in missouri", [["abortion pill in missouri", 0, [512]], ["abortion clinics in missouri", 0, [22, 30]], ["abortion options in missouri", 0, [22, 30]], ["morning after pill in missouri", 0, [22, 30]], ["abortion pill in mo", 0, [22, 30]], ["abortion pill cost in missouri", 0, [22, 30]], ["abortion pill legal in missouri", 0, [22, 30]], ["abortion pill missouri online", 0, [22, 30]], ["medical abortion in missouri", 0, [22, 30]], ["abortion clinics in branson missouri", 0, [22, 30]]], {"i": "abortion pill in missouri", "q": "5EraDtf4l4xbG8GVvAazhzVzEwQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill in missouri", "abortion clinics in missouri", "abortion options in missouri", "morning after pill in missouri", "abortion pill in mo", "abortion pill cost in missouri", "abortion pill legal in missouri", "abortion pill missouri online", "medical abortion in missouri", "abortion clinics in branson missouri"], "self_loops": [0], "tags": {"i": "abortion pill in missouri", "q": "5EraDtf4l4xbG8GVvAazhzVzEwQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online missouri", "datetime": "2026-03-12 19:43:27.032745", "source": "google", "data": ["abortion pill online missouri", [["abortion pill online missouri", 0, [512]], ["abortion pill online free missouri", 0, [22, 30]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill in missouri", 0, [512, 390, 650]], ["abortion pill online mo", 0, [751]], ["abortion pill online mississippi", 0, [512, 546]], ["abortion pill online kansas", 0, [512, 546]], ["abortion pill online minnesota", 0, [751]]], {"i": "abortion pill online missouri", "q": "JDZi53kXzv6p9xe1hRrf8QEFV6I", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill online missouri", "abortion pill online free missouri", "abortion pill near me online", "abortion pill in missouri", "abortion pill online mo", "abortion pill online mississippi", "abortion pill online kansas", "abortion pill online minnesota"], "self_loops": [0], "tags": {"i": "abortion pill online missouri", "q": "JDZi53kXzv6p9xe1hRrf8QEFV6I", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online mo", "datetime": "2026-03-12 19:43:28.311726", "source": "google", "data": ["abortion pill online mo", [["abortion pill online montana", 0, [22, 30]], ["abortion pill online missouri", 0, [22, 30]], ["abortion pill online free missouri", 0, [22, 30]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill online mo", 0, [751]], ["abortion pill online amazon", 0, [512, 546]]], {"i": "abortion pill online mo", "q": "p65wgZB47JboeAzPslZczsPzprw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill online montana", "abortion pill online missouri", "abortion pill online free missouri", "abortion pill near me online", "abortion pill online mo", "abortion pill online amazon"], "self_loops": [4], "tags": {"i": "abortion pill online mo", "q": "p65wgZB47JboeAzPslZczsPzprw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online mississippi", "datetime": "2026-03-12 19:43:29.594058", "source": "google", "data": ["abortion pill online mississippi", [["abortion pill online mississippi", 0, [512]], ["abortion pill cost in mississippi", 0, [512, 390, 650]], ["abortion pill in mississippi", 0, [512, 390, 650]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill online missouri", 0, [512, 546]]], {"i": "abortion pill online mississippi", "q": "y16lwCv49cOqIz9bv0xy6KVo9Xk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online mississippi", "abortion pill cost in mississippi", "abortion pill in mississippi", "abortion pill near me online", "abortion pill online missouri"], "self_loops": [0], "tags": {"i": "abortion pill online mississippi", "q": "y16lwCv49cOqIz9bv0xy6KVo9Xk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does medicaid cover abortion pill", "datetime": "2026-03-12 19:43:30.667513", "source": "google", "data": ["does medicaid cover abortion pill", [["does medicaid cover abortion pill", 0, [512]], ["does medicaid cover abortion pill in virginia", 0, [512]], ["does medicaid cover abortion pills in nc", 0, [512]], ["does medicaid cover abortion pill in colorado", 0, [512]], ["does medicaid cover abortion pill in nj", 0, [512]], ["does medicaid cover abortion pill in ohio", 0, [22, 30]], ["does medicaid cover abortion pill in illinois", 0, [22, 30]], ["does medicaid cover abortion pill in nevada", 0, [22, 30]], ["does medicaid cover abortion pill in florida", 0, [22, 30]], ["does medicaid cover abortion pill in michigan", 0, [22, 30]]], {"i": "does medicaid cover abortion pill", "q": "I8W0O-BtVBmr20X3URs8cBEJeP8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does medicaid cover abortion pill", "does medicaid cover abortion pill in virginia", "does medicaid cover abortion pills in nc", "does medicaid cover abortion pill in colorado", "does medicaid cover abortion pill in nj", "does medicaid cover abortion pill in ohio", "does medicaid cover abortion pill in illinois", "does medicaid cover abortion pill in nevada", "does medicaid cover abortion pill in florida", "does medicaid cover abortion pill in michigan"], "self_loops": [0], "tags": {"i": "does medicaid cover abortion pill", "q": "I8W0O-BtVBmr20X3URs8cBEJeP8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are abortions covered by medicaid", "datetime": "2026-03-12 19:43:32.148634", "source": "google", "data": ["are abortions covered by medicaid", [["are abortions covered by medicaid", 0, [512]], ["are abortions covered by medicaid in michigan", 0, [22, 30]], ["are abortions covered by medicaid in colorado", 0, [22, 30]], ["are abortions covered by medicaid in illinois", 0, [22, 30]], ["are abortions covered by medicaid in nc", 0, [22, 30]], ["are abortions covered by medicaid in pa", 0, [22, 30]], ["are abortions covered by medicaid in virginia", 0, [22, 30]], ["is abortion covered by medicaid in ohio", 0, [22, 30]], ["is abortion covered by medicaid in ny", 0, [22, 30]], ["is abortion covered by medicaid in nevada", 0, [22, 30]]], {"i": "are abortions covered by medicaid", "q": "EFMc7Y2RO7epmLHEo2d08DI1anw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["are abortions covered by medicaid", "are abortions covered by medicaid in michigan", "are abortions covered by medicaid in colorado", "are abortions covered by medicaid in illinois", "are abortions covered by medicaid in nc", "are abortions covered by medicaid in pa", "are abortions covered by medicaid in virginia", "is abortion covered by medicaid in ohio", "is abortion covered by medicaid in ny", "is abortion covered by medicaid in nevada"], "self_loops": [0], "tags": {"i": "are abortions covered by medicaid", "q": "EFMc7Y2RO7epmLHEo2d08DI1anw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill for free", "datetime": "2026-03-12 19:43:32.971229", "source": "google", "data": ["morning after pill for free", [["morning after pill for free", 0, [512]], ["morning after pill for free near me", 0, [512]], ["morning after pill for free boots", 0, [512]], ["morning after pill for free london", 0, [512]], ["morning after pill for free online", 0, [22, 30]], ["morning after pill for free uk", 0, [22, 30]], ["morning after pill for free nhs", 0, [22, 30]], ["morning after pill free for students", 0, [22, 30]], ["day after pill for free", 0, [22, 30]], ["get morning after pill for free", 0, [22, 30]]], {"i": "morning after pill for free", "q": "V31a2SjnH4radeVa01ZFAviqXSI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill for free", "morning after pill for free near me", "morning after pill for free boots", "morning after pill for free london", "morning after pill for free online", "morning after pill for free uk", "morning after pill for free nhs", "morning after pill free for students", "day after pill for free", "get morning after pill for free"], "self_loops": [0], "tags": {"i": "morning after pill for free", "q": "V31a2SjnH4radeVa01ZFAviqXSI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill for free near me", "datetime": "2026-03-12 19:43:33.887388", "source": "google", "data": ["morning after pill for free near me", [["morning after pill for free near me", 0, [512]], ["morning after pill free near me open now", 0, [22, 30]], ["day after pill free near me", 0, [22, 30]], ["where to get morning after pill for free near me", 0, [22, 30]], ["morning after pill free pharmacy near me", 0, [22, 30]], ["free morning after pill near me boots", 0, [22, 30]], ["free morning after pill near me delivery", 0, [22, 30]], ["free morning after pill near me nottingham", 0, [22, 30]], ["free morning after pill near me wales", 0, [22, 30]], ["free morning after pill near me nhs", 0, [22, 30]]], {"i": "morning after pill for free near me", "q": "Ax7zPwKrYEp9yWzPdoeH-0fDkrs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill for free near me", "morning after pill free near me open now", "day after pill free near me", "where to get morning after pill for free near me", "morning after pill free pharmacy near me", "free morning after pill near me boots", "free morning after pill near me delivery", "free morning after pill near me nottingham", "free morning after pill near me wales", "free morning after pill near me nhs"], "self_loops": [0], "tags": {"i": "morning after pill for free near me", "q": "Ax7zPwKrYEp9yWzPdoeH-0fDkrs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill for free london", "datetime": "2026-03-12 19:43:35.028967", "source": "google", "data": ["morning after pill for free london", [["morning after pill for free london", 0, [512]], ["can i get the morning after pill for free uk", 0, [512, 390, 650]], ["is the morning after pill free uk", 0, [512, 390, 650]], ["how to get free morning after pill uk", 0, [512, 390, 650]], ["is the morning after pill free in boots uk", 0, [512, 390, 650]], ["free morning after pill east london", 0, [546, 649]], ["free morning after pill nyc", 0, [751]], ["morning after pill free at planned parenthood", 0, [751]]], {"i": "morning after pill for free london", "q": "gx-47I1iO-KhyJsf8RZvqlHd6ks", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill for free london", "can i get the morning after pill for free uk", "is the morning after pill free uk", "how to get free morning after pill uk", "is the morning after pill free in boots uk", "free morning after pill east london", "free morning after pill nyc", "morning after pill free at planned parenthood"], "self_loops": [0], "tags": {"i": "morning after pill for free london", "q": "gx-47I1iO-KhyJsf8RZvqlHd6ks", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill free online delivery", "datetime": "2026-03-12 19:43:36.011399", "source": "google", "data": ["morning after pill free online delivery", [["morning after pill free online delivery", 0, [22, 30]], ["morning after pill free order online", 0, [22, 30]], ["is morning after pill.free", 0, [512, 390, 650]], ["morning after pill free at planned parenthood", 0, [751]], ["morning after pill on amazon", 0, [512, 546]]], {"i": "morning after pill free online delivery", "q": "-IlGcJYhJMkRv_lRM3kTNwjguVw", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill free online delivery", "morning after pill free order online", "is morning after pill.free", "morning after pill free at planned parenthood", "morning after pill on amazon"], "self_loops": [0], "tags": {"i": "morning after pill free online delivery", "q": "-IlGcJYhJMkRv_lRM3kTNwjguVw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill free for students", "datetime": "2026-03-12 19:43:36.815958", "source": "google", "data": ["morning after pill free for students", [["morning after pill free for students", 0, [22, 30]], ["is the morning after pill free for under 18s", 0, [512, 390, 650]], ["where can i get the morning after pill for free", 0, [512, 390, 650]], ["how old do you have to be to get the morning after pill for free", 0, [512, 390, 650]], ["morning after pill free at planned parenthood", 0, [751]], ["free morning after pills near me", 0, [546, 649]], ["free morning after pill nyc", 0, [751]], ["how to get a morning after pill for free", 0, [512, 546]]], {"i": "morning after pill free for students", "q": "rErERc8GdZuo6JaQaRE8qAtriLU", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill free for students", "is the morning after pill free for under 18s", "where can i get the morning after pill for free", "how old do you have to be to get the morning after pill for free", "morning after pill free at planned parenthood", "free morning after pills near me", "free morning after pill nyc", "how to get a morning after pill for free"], "self_loops": [0], "tags": {"i": "morning after pill free for students", "q": "rErERc8GdZuo6JaQaRE8qAtriLU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can you get morning after pill for free boots", "datetime": "2026-03-12 19:43:38.239215", "source": "google", "data": ["can you get morning after pill for free boots", [["can you get morning after pill for free boots", 0, [22, 30]], ["can i get morning after pill for free boots", 0, [22, 30]], ["does boots give morning after pill free", 0, [512, 390, 650]], ["can you get the morning after pill from boots", 0, [512, 390, 650]], ["boots.morning after.pill", 0, [751]]], {"i": "can you get morning after pill for free boots", "q": "j2MXYS4Fur16eRMKl19cH0cPuEs", "t": {"bpc": false, "tlw": false}}], "suggests": ["can you get morning after pill for free boots", "can i get morning after pill for free boots", "does boots give morning after pill free", "can you get the morning after pill from boots", "boots.morning after.pill"], "self_loops": [0], "tags": {"i": "can you get morning after pill for free boots", "q": "j2MXYS4Fur16eRMKl19cH0cPuEs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "where to get morning after pill for free boots", "datetime": "2026-03-12 19:43:39.066135", "source": "google", "data": ["where to get morning after pill for free boots", [["where to get morning after pill for free boots", 0, [22, 30]], ["morning after pill for free boots", 0, [22, 30]], ["can you get morning after pill for free boots", 0, [22, 30]], ["does boots give morning after pill free", 0, [512, 390, 650]], ["where to get morning after pill walmart", 0, [751]]], {"i": "where to get morning after pill for free boots", "q": "zYd3Nnv5LqhQ45BqVY8C0Axw4pE", "t": {"bpc": false, "tlw": false}}], "suggests": ["where to get morning after pill for free boots", "morning after pill for free boots", "can you get morning after pill for free boots", "does boots give morning after pill free", "where to get morning after pill walmart"], "self_loops": [0], "tags": {"i": "where to get morning after pill for free boots", "q": "zYd3Nnv5LqhQ45BqVY8C0Axw4pE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can i get morning after pill for free boots", "datetime": "2026-03-12 19:43:40.438793", "source": "google", "data": ["can i get morning after pill for free boots", [["can i get morning after pill for free boots", 0, [22, 30]], ["can you get morning after pill for free boots", 0, [22, 30]], ["where to get morning after pill for free boots", 0, [22, 30]], ["does boots give morning after pill free", 0, [512, 390, 650]], ["can i get morning after pill from boots", 0, [512, 546]]], {"i": "can i get morning after pill for free boots", "q": "-8qCiCch6m_DyGIW1cmgQ6AjFXM", "t": {"bpc": false, "tlw": false}}], "suggests": ["can i get morning after pill for free boots", "can you get morning after pill for free boots", "where to get morning after pill for free boots", "does boots give morning after pill free", "can i get morning after pill from boots"], "self_loops": [0], "tags": {"i": "can i get morning after pill for free boots", "q": "-8qCiCch6m_DyGIW1cmgQ6AjFXM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "do boots offer the morning after pill for free", "datetime": "2026-03-12 19:43:41.260755", "source": "google", "data": ["do boots offer the morning after pill for free", [["do boots offer the morning after pill for free", 0, [22, 30]], ["does boots offer the morning after pill for free", 0, [22, 30]], ["does boots give the morning after pill for free", 0, [22, 30]], ["can you get the morning after pill for free at boots", 0, [512, 390, 650]], ["is the morning after pill free at boots", 0, [512, 390, 650]], ["do boots give the morning after pill for free", 0, [512, 546]], ["do boots do the morning after pill for free", 0, [512, 546]]], {"i": "do boots offer the morning after pill for free", "q": "iTMRMJy-Z7C4r4WhPpzmTBuG5Dg", "t": {"bpc": false, "tlw": false}}], "suggests": ["do boots offer the morning after pill for free", "does boots offer the morning after pill for free", "does boots give the morning after pill for free", "can you get the morning after pill for free at boots", "is the morning after pill free at boots", "do boots give the morning after pill for free", "do boots do the morning after pill for free"], "self_loops": [0], "tags": {"i": "do boots offer the morning after pill for free", "q": "iTMRMJy-Z7C4r4WhPpzmTBuG5Dg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does boots give morning after pill free", "datetime": "2026-03-12 19:43:42.376326", "source": "google", "data": ["does boots give morning after pill free", [["does boots give morning after pill free", 0, [512]], ["do boots give morning after pill free", 0, [22, 30]], ["does boots give you the morning after pill for free", 0, [22, 30]], ["does boots pharmacy give free morning after pill", 0, [22, 30]], ["is the morning after pill free at boots", 0, [512, 390, 650]], ["boots.morning after.pill", 0, [751]]], {"i": "does boots give morning after pill free", "q": "wvodq1fdjf20uR6J2Sm95XAfuys", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does boots give morning after pill free", "do boots give morning after pill free", "does boots give you the morning after pill for free", "does boots pharmacy give free morning after pill", "is the morning after pill free at boots", "boots.morning after.pill"], "self_loops": [0], "tags": {"i": "does boots give morning after pill free", "q": "wvodq1fdjf20uR6J2Sm95XAfuys", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill free at planned parenthood", "datetime": "2026-03-12 19:43:43.313895", "source": "google", "data": ["morning after pill free at planned parenthood", [["morning after pill free at planned parenthood", 0, [22, 30]], ["can you get the morning after pill for free at planned parenthood", 0, [22, 30]], ["how much is a morning after pill at planned parenthood", 0, [512, 390, 650]], ["can you get plan b for free from planned parenthood", 0, [512, 390, 650]], ["planned parenthood morning-after pill cost", 0, [751]]], {"i": "morning after pill free at planned parenthood", "q": "ToojUNOzBBRHYMNDlmBm1-oCG_A", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill free at planned parenthood", "can you get the morning after pill for free at planned parenthood", "how much is a morning after pill at planned parenthood", "can you get plan b for free from planned parenthood", "planned parenthood morning-after pill cost"], "self_loops": [0], "tags": {"i": "morning after pill free at planned parenthood", "q": "ToojUNOzBBRHYMNDlmBm1-oCG_A", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "boots.morning after.pill", "datetime": "2026-03-12 19:43:44.662116", "source": "google", "data": ["boots.morning after.pill", [["boots morning after pill", 0, [22, 30]], ["boots morning after pill price", 0, [22, 30]], ["boots morning after pill free", 0, [22, 30]], ["boots morning after pill delivery", 0, [22, 30]], ["boots morning after pill ireland", 0, [22, 30]], ["boots morning after pill order online", 0, [22, 30]], ["boots morning after pill collection", 0, [22, 30]], ["boots morning after pill in store", 0, [22, 30]], ["boots morning after pill pick up", 0, [22, 30]], ["boots morning after pill order", 0, [22, 30]]], {"i": "boots.morning after.pill", "q": "G1iu-WEgXzCJPoSFFo_34j17aFE", "t": {"bpc": false, "tlw": false}}], "suggests": ["boots morning after pill", "boots morning after pill price", "boots morning after pill free", "boots morning after pill delivery", "boots morning after pill ireland", "boots morning after pill order online", "boots morning after pill collection", "boots morning after pill in store", "boots morning after pill pick up", "boots morning after pill order"], "self_loops": [], "tags": {"i": "boots.morning after.pill", "q": "G1iu-WEgXzCJPoSFFo_34j17aFE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is the morning after pill free uk", "datetime": "2026-03-12 19:43:45.662081", "source": "google", "data": ["is the morning after pill free uk", [["is the morning after pill free uk", 0, [512]], ["is the morning after pill free uk boots", 0, [22, 30]], ["is the morning after pill free england", 0, [22, 30]], ["is the morning after pill free nhs", 0, [22, 30]], ["is the morning after pill free now uk", 0, [22, 30]], ["is the morning after pill free in uk pharmacy", 0, [22, 30]], ["is the morning after pill free in england now", 0, [22, 30]], ["is the morning after pill free everywhere in the uk", 0, [22, 30]], ["morning after pill free uk news", 0, [22, 30]], ["how to get free morning after pill uk", 0, [512, 390, 650]]], {"i": "is the morning after pill free uk", "q": "7xGHBd9NA2ywMK1__pPxEmxeLcI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is the morning after pill free uk", "is the morning after pill free uk boots", "is the morning after pill free england", "is the morning after pill free nhs", "is the morning after pill free now uk", "is the morning after pill free in uk pharmacy", "is the morning after pill free in england now", "is the morning after pill free everywhere in the uk", "morning after pill free uk news", "how to get free morning after pill uk"], "self_loops": [0], "tags": {"i": "is the morning after pill free uk", "q": "7xGHBd9NA2ywMK1__pPxEmxeLcI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how to get free morning after pill uk", "datetime": "2026-03-12 19:43:46.896161", "source": "google", "data": ["how to get free morning after pill uk", [["how to get free morning after pill uk", 0, [512]], ["how to get free morning after pill boots", 0, [22, 30]], ["how to get free morning after pill nhs", 0, [22, 30]], ["can you get morning after pill free uk", 0, [22, 10, 30]], ["is the morning after pill free uk", 0, [512, 390, 650]], ["how to get morning after pill prescription", 0, [546, 649]], ["how to get a morning after pill for free", 0, [512, 546]], ["free morning.after pill", 0, [512, 546]]], {"i": "how to get free morning after pill uk", "q": "UPdQFTUimNJUON13vkioqZvXhBo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how to get free morning after pill uk", "how to get free morning after pill boots", "how to get free morning after pill nhs", "can you get morning after pill free uk", "is the morning after pill free uk", "how to get morning after pill prescription", "how to get a morning after pill for free", "free morning.after pill"], "self_loops": [0], "tags": {"i": "how to get free morning after pill uk", "q": "UPdQFTUimNJUON13vkioqZvXhBo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free morning after pill order online", "datetime": "2026-03-12 19:43:47.933730", "source": "google", "data": ["free morning after pill order online", [["free morning after pill order online", 0, [512]], ["where can i get the morning after pill from for free", 0, [512, 390, 650]], ["can i get morning after pill online", 0, [512, 390, 650]], ["how to get the morning after pill free", 0, [512, 390, 650]], ["are morning after pills free", 0, [512, 390, 650]], ["free morning after pill nyc", 0, [751]], ["order morning after pills", 0, [751]]], {"i": "free morning after pill order online", "q": "yODJToL7T54Cfu89i1gv6t7NGfU", "t": {"bpc": false, "tlw": false}}], "suggests": ["free morning after pill order online", "where can i get the morning after pill from for free", "can i get morning after pill online", "how to get the morning after pill free", "are morning after pills free", "free morning after pill nyc", "order morning after pills"], "self_loops": [0], "tags": {"i": "free morning after pill order online", "q": "yODJToL7T54Cfu89i1gv6t7NGfU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free morning after pill online", "datetime": "2026-03-12 19:43:49.067485", "source": "google", "data": ["free morning after pill online", [["free morning after pill online", 0, [512]], ["nhs free morning after pill online", 0, [22, 30]], ["morning after pill free online uk", 0, [22, 30]], ["morning after pill free online delivery", 0, [22, 30]], ["can i get the morning after pill free online", 0, [22, 30]], ["how to get free morning after pill uk", 0, [512, 390, 650]], ["which pharmacies do free morning after pill", 0, [512, 390, 650]], ["morning after pill free at planned parenthood", 0, [751]]], {"i": "free morning after pill online", "q": "rKpHeIRO0VgLaNlW9MfhxNZJGMo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free morning after pill online", "nhs free morning after pill online", "morning after pill free online uk", "morning after pill free online delivery", "can i get the morning after pill free online", "how to get free morning after pill uk", "which pharmacies do free morning after pill", "morning after pill free at planned parenthood"], "self_loops": [0], "tags": {"i": "free morning after pill online", "q": "rKpHeIRO0VgLaNlW9MfhxNZJGMo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free morning after pill pharmacy", "datetime": "2026-03-12 19:43:50.081733", "source": "google", "data": ["free morning after pill pharmacy", [["free morning after pill pharmacy", 0, [512]], ["free morning after pill chemist near me", 0, [22, 30]], ["free morning after pill tesco pharmacy", 0, [22, 30]], ["free morning after pill lloyds pharmacy", 0, [22, 30]], ["free morning after pill manchester pharmacy", 0, [22, 30]], ["free morning after pill uk pharmacies", 0, [22, 30]], ["pharmacy2u free morning after pill", 0, [22, 30]], ["boots pharmacy free morning after pill", 0, [22, 30]], ["asda pharmacy free morning after pill", 0, [22, 30]], ["well pharmacy free morning after pill", 0, [22, 30]]], {"i": "free morning after pill pharmacy", "q": "hsmBHLJT09yq1N-y9WekHMPH6sk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free morning after pill pharmacy", "free morning after pill chemist near me", "free morning after pill tesco pharmacy", "free morning after pill lloyds pharmacy", "free morning after pill manchester pharmacy", "free morning after pill uk pharmacies", "pharmacy2u free morning after pill", "boots pharmacy free morning after pill", "asda pharmacy free morning after pill", "well pharmacy free morning after pill"], "self_loops": [0], "tags": {"i": "free morning after pill pharmacy", "q": "hsmBHLJT09yq1N-y9WekHMPH6sk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill free uk news", "datetime": "2026-03-12 19:43:51.122906", "source": "google", "data": ["morning after pill free uk news", [["morning after pill free uk news", 0, [22, 30]], ["is the morning after pill free uk", 0, [512, 390, 650]], ["can i get the morning after pill for free uk", 0, [512, 390, 650]], ["how much is the morning after pill uk", 0, [512, 390, 650]], ["is morning after pill free on nhs", 0, [512, 390, 650]], ["free morning after pill nyc", 0, [751]], ["free morning.after.pill", 0, [751]], ["morning after pill free at planned parenthood", 0, [751]]], {"i": "morning after pill free uk news", "q": "9EeQuhmv505UkFNV9vQnG4X19B8", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill free uk news", "is the morning after pill free uk", "can i get the morning after pill for free uk", "how much is the morning after pill uk", "is morning after pill free on nhs", "free morning after pill nyc", "free morning.after.pill", "morning after pill free at planned parenthood"], "self_loops": [0], "tags": {"i": "morning after pill free uk news", "q": "9EeQuhmv505UkFNV9vQnG4X19B8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill now free uk", "datetime": "2026-03-12 19:43:52.052215", "source": "google", "data": ["morning after pill now free uk", [["morning after pill now free uk", 0, [512]], ["morning after pill now free in england", 0, [22, 30]], ["is the morning after pill free uk", 0, [512, 390, 650]], ["how to get free morning after pill uk", 0, [512, 390, 650]], ["free morning after pill nhs pharmacy", 0, [751]], ["free morning after pill pharmacies", 0, [512, 546]], ["morning after pill free at planned parenthood", 0, [751]]], {"i": "morning after pill now free uk", "q": "D1s0WuTAzckh9qzswTwxuRQWrsc", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill now free uk", "morning after pill now free in england", "is the morning after pill free uk", "how to get free morning after pill uk", "free morning after pill nhs pharmacy", "free morning after pill pharmacies", "morning after pill free at planned parenthood"], "self_loops": [0], "tags": {"i": "morning after pill now free uk", "q": "D1s0WuTAzckh9qzswTwxuRQWrsc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill free england", "datetime": "2026-03-12 19:43:53.048138", "source": "google", "data": ["morning after pill free england", [["morning after pill free england", 0, [512]], ["morning after pill free uk", 0, [22, 30]], ["morning after pill free uk news", 0, [22, 30]], ["morning after pill free online uk", 0, [22, 30]], ["morning after pill now free uk", 0, [22, 30]], ["day after pill uk free", 0, [22, 30]], ["morning after pill now free in england", 0, [22, 30]], ["is the morning after pill free uk boots", 0, [22, 30]], ["england makes morning after pill free at pharmacies", 0, [22, 30]], ["can you get the morning after pill free in england", 0, [22, 30]]], {"i": "morning after pill free england", "q": "Od0MA0prICFd_dmXt5vC3tJWbJQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill free england", "morning after pill free uk", "morning after pill free uk news", "morning after pill free online uk", "morning after pill now free uk", "day after pill uk free", "morning after pill now free in england", "is the morning after pill free uk boots", "england makes morning after pill free at pharmacies", "can you get the morning after pill free in england"], "self_loops": [0], "tags": {"i": "morning after pill free england", "q": "Od0MA0prICFd_dmXt5vC3tJWbJQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can you get morning after pill free uk", "datetime": "2026-03-12 19:43:54.464966", "source": "google", "data": ["can you get morning after pill free uk", [["can you get morning after pill free uk", 0, [512]], ["can you get the morning after pill free in england", 0, [22, 30]], ["is the morning after pill free uk", 0, [512, 390, 650]], ["is morning after pill free on nhs", 0, [512, 390, 650]], ["can you get morning after pill in america", 0, [751]], ["can you get morning after pill in ohio", 0, [751]]], {"i": "can you get morning after pill free uk", "q": "fK2zI-jv50sLp-XM9k5HF1kqGu8", "t": {"bpc": false, "tlw": false}}], "suggests": ["can you get morning after pill free uk", "can you get the morning after pill free in england", "is the morning after pill free uk", "is morning after pill free on nhs", "can you get morning after pill in america", "can you get morning after pill in ohio"], "self_loops": [0], "tags": {"i": "can you get morning after pill free uk", "q": "fK2zI-jv50sLp-XM9k5HF1kqGu8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "day after pill uk free", "datetime": "2026-03-12 19:43:55.612673", "source": "google", "data": ["day after pill uk free", [["day after pill uk free", 0, [22, 30]], ["morning after pill uk free", 0, [22, 30]], ["morning after pill nhs free", 0, [22, 30]], ["morning after pill boots free", 0, [22, 30]], ["morning after pill england free", 0, [22, 30]], ["morning after pill free uk news", 0, [22, 30]], ["morning after pill now free uk", 0, [22, 30]], ["is the morning after pill free in boots uk", 0, [512, 390, 650]], ["how to get free morning after pill uk", 0, [512, 390, 650]], ["day after pill coupon", 0, [546, 649]]], {"i": "day after pill uk free", "q": "6Ac8aQ-bM1ypv6ZkcYtjG1cK3wQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["day after pill uk free", "morning after pill uk free", "morning after pill nhs free", "morning after pill boots free", "morning after pill england free", "morning after pill free uk news", "morning after pill now free uk", "is the morning after pill free in boots uk", "how to get free morning after pill uk", "day after pill coupon"], "self_loops": [0], "tags": {"i": "day after pill uk free", "q": "6Ac8aQ-bM1ypv6ZkcYtjG1cK3wQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free morning after pill uk pharmacies", "datetime": "2026-03-12 19:43:56.939077", "source": "google", "data": ["free morning after pill uk pharmacies", [["free morning after pill uk pharmacies", 0, [22, 30]], ["free morning after pill nhs pharmacy", 0, [22, 455, 30]], ["which pharmacies do free morning after pill", 0, [512, 390, 650]], ["how to get free morning after pill uk", 0, [512, 390, 650]], ["do pharmacies give free morning after pill", 0, [512, 390, 650]], ["free morning after pill pharmacies", 0, [512, 546]]], {"i": "free morning after pill uk pharmacies", "q": "l8Ar9tm-TLcatpUSrO0i5zbYKEY", "t": {"bpc": false, "tlw": false}}], "suggests": ["free morning after pill uk pharmacies", "free morning after pill nhs pharmacy", "which pharmacies do free morning after pill", "how to get free morning after pill uk", "do pharmacies give free morning after pill", "free morning after pill pharmacies"], "self_loops": [0], "tags": {"i": "free morning after pill uk pharmacies", "q": "l8Ar9tm-TLcatpUSrO0i5zbYKEY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is the morning after pill free uk boots", "datetime": "2026-03-12 19:43:58.373863", "source": "google", "data": ["is the morning after pill free uk boots", [["is the morning after pill free uk boots", 0, [22, 30]], ["is the morning after pill free at boots", 0, [512, 390, 650]], ["does boots give morning after pill free", 0, [512, 390, 650]]], {"i": "is the morning after pill free uk boots", "q": "_SHjGhjchX7QE0VA7qfFmh0iILY", "t": {"bpc": false, "tlw": false}}], "suggests": ["is the morning after pill free uk boots", "is the morning after pill free at boots", "does boots give morning after pill free"], "self_loops": [0], "tags": {"i": "is the morning after pill free uk boots", "q": "_SHjGhjchX7QE0VA7qfFmh0iILY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free morning after pill uk reddit", "datetime": "2026-03-12 19:43:59.392728", "source": "google", "data": ["free morning after pill uk reddit", [["free morning after pill uk reddit", 0, [22, 30]], ["can i get the morning after pill for free uk", 0, [512, 390, 650]], ["is the morning after pill free uk", 0, [512, 390, 650]], ["how to get free morning after pill uk", 0, [512, 390, 650]], ["free morning after pill nyc", 0, [751]], ["free morning after pills near me", 0, [546, 649]], ["best morning after pill reddit", 0, [512, 546]]], {"i": "free morning after pill uk reddit", "q": "mVxbAubhXHXrJ6_jIo-x2lJuO0I", "t": {"bpc": false, "tlw": false}}], "suggests": ["free morning after pill uk reddit", "can i get the morning after pill for free uk", "is the morning after pill free uk", "how to get free morning after pill uk", "free morning after pill nyc", "free morning after pills near me", "best morning after pill reddit"], "self_loops": [0], "tags": {"i": "free morning after pill uk reddit", "q": "mVxbAubhXHXrJ6_jIo-x2lJuO0I", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "nhs makes morning after pill available for free across pharmacies in england", "datetime": "2026-03-12 19:44:00.592452", "source": "google", "data": ["nhs makes morning after pill available for free across pharmacies in england", [["nhs makes morning after pill available for free across pharmacies in england", 0, [30]]], {"i": "nhs makes morning after pill available for free across pharmacies in england", "q": "I9ADXOOxNNtoh_X1AYyl1hq0a7k", "t": {"bpc": false, "tlw": false}}], "suggests": ["nhs makes morning after pill available for free across pharmacies in england"], "self_loops": [0], "tags": {"i": "nhs makes morning after pill available for free across pharmacies in england", "q": "I9ADXOOxNNtoh_X1AYyl1hq0a7k", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free morning after pill nhs pharmacy", "datetime": "2026-03-12 19:44:01.998698", "source": "google", "data": ["free morning after pill nhs pharmacy", [["free morning after pill nhs pharmacy", 0, [22, 455, 30]], ["which pharmacies do free morning after pill", 0, [512, 390, 650]], ["how to get free morning after pill uk", 0, [512, 390, 650]], ["is the morning after pill free uk", 0, [512, 390, 650]]], {"i": "free morning after pill nhs pharmacy", "q": "1F-EFLaDIYL3VxVwvty36TDUBXw", "t": {"bpc": false, "tlw": false}}], "suggests": ["free morning after pill nhs pharmacy", "which pharmacies do free morning after pill", "how to get free morning after pill uk", "is the morning after pill free uk"], "self_loops": [0], "tags": {"i": "free morning after pill nhs pharmacy", "q": "1F-EFLaDIYL3VxVwvty36TDUBXw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online low income", "datetime": "2026-03-12 19:44:02.987670", "source": "google", "data": ["abortion pill online low income", [["abortion pill online low income", 0, [22, 30]], ["abortion pill online low cost", 0, [22, 30]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill online with insurance", 0, [512, 546]]], {"i": "abortion pill online low income", "q": "GX631XIg5lnnw6MsK2pCWC9IoNA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill online low income", "abortion pill online low cost", "abortion pill near me online", "abortion pill online with insurance"], "self_loops": [0], "tags": {"i": "abortion pill online low income", "q": "GX631XIg5lnnw6MsK2pCWC9IoNA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill price clicks online", "datetime": "2026-03-12 19:44:04.166432", "source": "google", "data": ["morning after pill price clicks online", [["morning after pill price clicks online", 0, [512]], ["how much do morning after pill cost at clicks", 0, [512, 390, 650]], ["morning after pill price walgreens", 0, [546, 649]], ["morning after pill price cvs", 0, [512, 546]], ["morning after pill price walmart", 0, [512, 546]], ["morning after pill cost walgreens", 0, [751]]], {"i": "morning after pill price clicks online", "q": "ADPe6ipD0TMidW5tw0CbmqvxzME", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill price clicks online", "how much do morning after pill cost at clicks", "morning after pill price walgreens", "morning after pill price cvs", "morning after pill price walmart", "morning after pill cost walgreens"], "self_loops": [0], "tags": {"i": "morning after pill price clicks online", "q": "ADPe6ipD0TMidW5tw0CbmqvxzME", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much do morning after pill cost at clicks", "datetime": "2026-03-12 19:44:05.369835", "source": "google", "data": ["how much do morning after pill cost at clicks", [["how much do morning after pill cost at clicks", 0, [512]], ["how much does a morning after pill cost at clicks pharmacy", 0, [22, 30]], ["how much do morning after pills cost at dischem", 0, [22, 30]], ["how much is morning after pill at clicks in south africa", 0, [22, 30]], ["how much is morning after pill at clicks in rands", 0, [22, 30]], ["how much is morning after pill at clicks now", 0, [22, 30]], ["how much is morning after pill at clicks 2023", 0, [22, 30]], ["how much does a plan b pill cost at clicks", 0, [22, 30]], ["how much are morning after pills at clicks 2022", 0, [22, 30]], ["how much is morning after pill at click", 0, [22, 30]]], {"i": "how much do morning after pill cost at clicks", "q": "L6Voljooy9PNOUQ2AAfplqQB6ZM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much do morning after pill cost at clicks", "how much does a morning after pill cost at clicks pharmacy", "how much do morning after pills cost at dischem", "how much is morning after pill at clicks in south africa", "how much is morning after pill at clicks in rands", "how much is morning after pill at clicks now", "how much is morning after pill at clicks 2023", "how much does a plan b pill cost at clicks", "how much are morning after pills at clicks 2022", "how much is morning after pill at click"], "self_loops": [0], "tags": {"i": "how much do morning after pill cost at clicks", "q": "L6Voljooy9PNOUQ2AAfplqQB6ZM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much does morning after pills cost at clicks", "datetime": "2026-03-12 19:44:06.766130", "source": "google", "data": ["how much does morning after pills cost at clicks", [["how much does morning after pills cost at clicks", 0, [512]], ["how much does a morning after pill cost at clicks pharmacy", 0, [22, 30]], ["how much are morning after pills at clicks 2025", 0, [22, 30]], ["how much are morning after pills at clicks in south africa", 0, [22, 30]], ["how much are morning after pills at clicks in rands", 0, [22, 30]], ["how much are morning after pills at clicks in sa", 0, [22, 30]], ["how much are morning after pills at clicks 2022", 0, [22, 30]], ["how much does a plan b pill cost at clicks", 0, [22, 30]], ["how much is the cheapest morning after pill at clicks", 0, [22, 30]], ["how much is the 5 day morning after pill at clicks", 0, [22, 30]]], {"i": "how much does morning after pills cost at clicks", "q": "2RTQ-ByTDFMxnHpgZkC7gahgNXM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much does morning after pills cost at clicks", "how much does a morning after pill cost at clicks pharmacy", "how much are morning after pills at clicks 2025", "how much are morning after pills at clicks in south africa", "how much are morning after pills at clicks in rands", "how much are morning after pills at clicks in sa", "how much are morning after pills at clicks 2022", "how much does a plan b pill cost at clicks", "how much is the cheapest morning after pill at clicks", "how much is the 5 day morning after pill at clicks"], "self_loops": [0], "tags": {"i": "how much does morning after pills cost at clicks", "q": "2RTQ-ByTDFMxnHpgZkC7gahgNXM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill price at clicks", "datetime": "2026-03-12 19:44:07.677212", "source": "google", "data": ["morning after pill price at clicks", [["morning after pill price at clicks", 0, [512]], ["morning after pill price at clicks price", 0, [512]], ["morning after pill price at clicks south africa", 0, [512]], ["morning after pill price at clicks in rands", 0, [512]], ["morning after pill price at clicks now", 0, [512]], ["morning after pill price at clicks picture", 0, [512]], ["morning after pill price at clicks 2025 south africa", 0, [22, 30]], ["morning after pill price at clicks 2020", 0, [22, 30]], ["morning after pill price at clicks 2022", 0, [22, 30]], ["morning after pill price at clicks 2023 dis chem", 0, [22, 30]]], {"i": "morning after pill price at clicks", "q": "TbdPyEo61KuIy4VAVycdy2XI4EQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill price at clicks", "morning after pill price at clicks price", "morning after pill price at clicks south africa", "morning after pill price at clicks in rands", "morning after pill price at clicks now", "morning after pill price at clicks picture", "morning after pill price at clicks 2025 south africa", "morning after pill price at clicks 2020", "morning after pill price at clicks 2022", "morning after pill price at clicks 2023 dis chem"], "self_loops": [0], "tags": {"i": "morning after pill price at clicks", "q": "TbdPyEo61KuIy4VAVycdy2XI4EQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill price walgreens", "datetime": "2026-03-12 19:44:08.563395", "source": "google", "data": ["morning after pill price walgreens", [["morning after pill price walgreens", 0, [22, 30]], ["day after pill walgreens price", 0, [22, 30]], ["does walgreens sell morning after pill", 0, [512, 390, 650]], ["how much is the morning after pill at walgreens", 0, [512, 390, 650]], ["how much is generic plan b at walgreens", 0, [512, 390, 650]], ["how much is plan b from walgreens", 0, [512, 390, 650]], ["morning after pill price walmart", 0, [512, 546]], ["morning after pill price cvs", 0, [512, 546]], ["morning after pill cost walgreens", 0, [751]]], {"i": "morning after pill price walgreens", "q": "a2R05_VY1yMt1MRn-Rl2SaPnAN4", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill price walgreens", "day after pill walgreens price", "does walgreens sell morning after pill", "how much is the morning after pill at walgreens", "how much is generic plan b at walgreens", "how much is plan b from walgreens", "morning after pill price walmart", "morning after pill price cvs", "morning after pill cost walgreens"], "self_loops": [0], "tags": {"i": "morning after pill price walgreens", "q": "a2R05_VY1yMt1MRn-Rl2SaPnAN4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill price walmart", "datetime": "2026-03-12 19:44:09.865071", "source": "google", "data": ["morning after pill price walmart", [["morning after pill price walmart", 0, [512]], ["morning after pill at walmart", 0, [22, 30]], ["day after pill at walmart", 0, [22, 30]], ["how much is the morning after pill at walmart", 0, [512, 390, 650]], ["does walmart sell the morning after pill", 0, [512, 390, 650]], ["morning after pill price walgreens", 0, [546, 649]], ["morning after pill cost walmart", 0, [751]]], {"i": "morning after pill price walmart", "q": "900CcjMGQzE5Iq1DhcsuG4W8jOE", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill price walmart", "morning after pill at walmart", "day after pill at walmart", "how much is the morning after pill at walmart", "does walmart sell the morning after pill", "morning after pill price walgreens", "morning after pill cost walmart"], "self_loops": [0], "tags": {"i": "morning after pill price walmart", "q": "900CcjMGQzE5Iq1DhcsuG4W8jOE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill price cvs", "datetime": "2026-03-12 19:44:10.949641", "source": "google", "data": ["morning after pill price cvs", [["morning after pill price cvs", 0, [512]], ["day after pill cvs price", 0, [22, 30]], ["does cvs sell morning after pill", 0, [512, 390, 650]], ["how much is the morning after pill at cvs", 0, [512, 390, 650]], ["morning after pill cost cvs", 0, [512, 546]], ["morning after pill cvs coupon", 0, [751]]], {"i": "morning after pill price cvs", "q": "wNzIq8etFJSLlHhIWOLSTPUZnF8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill price cvs", "day after pill cvs price", "does cvs sell morning after pill", "how much is the morning after pill at cvs", "morning after pill cost cvs", "morning after pill cvs coupon"], "self_loops": [0], "tags": {"i": "morning after pill price cvs", "q": "wNzIq8etFJSLlHhIWOLSTPUZnF8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill cost walgreens", "datetime": "2026-03-12 19:44:12.368994", "source": "google", "data": ["morning after pill cost walgreens", [["morning after pill cost walgreens", 0, [22, 30]], ["how much is the morning after pill at walgreens", 0, [512, 390, 650]], ["does walgreens sell morning after pill", 0, [512, 390, 650]], ["how much is plan b at walgreens", 0, [512, 390, 650]], ["morning after pill cost walmart", 0, [751]], ["morning after pill cost cvs", 0, [512, 546]], ["morning after pill walgreens price", 0, [546, 649]]], {"i": "morning after pill cost walgreens", "q": "nKFJMBjpK3sP5i9JjH5e0mZ4UvQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill cost walgreens", "how much is the morning after pill at walgreens", "does walgreens sell morning after pill", "how much is plan b at walgreens", "morning after pill cost walmart", "morning after pill cost cvs", "morning after pill walgreens price"], "self_loops": [0], "tags": {"i": "morning after pill cost walgreens", "q": "nKFJMBjpK3sP5i9JjH5e0mZ4UvQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill near me over the counter", "datetime": "2026-03-12 19:44:13.336379", "source": "google", "data": ["abortion pill near me over the counter", [["abortion pill near me over the counter", 0, [512]], ["morning after pill near me over the counter", 0, [22, 30]], ["can you buy misoprostol over the counter at walmart", 0, [512, 390, 650]], ["abortion pill near me same day", 0, [512, 546]]], {"i": "abortion pill near me over the counter", "q": "qnMs8QHbOaz3hhFIAiVst3Ipq_0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill near me over the counter", "morning after pill near me over the counter", "can you buy misoprostol over the counter at walmart", "abortion pill near me same day"], "self_loops": [0], "tags": {"i": "abortion pill near me over the counter", "q": "qnMs8QHbOaz3hhFIAiVst3Ipq_0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill near me same day", "datetime": "2026-03-12 19:44:14.426291", "source": "google", "data": ["abortion pill near me same day", [["abortion pill near me same day", 0, [512]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill near me over the counter", 0, [512, 546]]], {"i": "abortion pill near me same day", "q": "SG71lIkzkP5ekNu6hPUy4Wt6MGk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill near me same day", "abortion pill near me online", "abortion pill near me over the counter"], "self_loops": [0], "tags": {"i": "abortion pill near me same day", "q": "SG71lIkzkP5ekNu6hPUy4Wt6MGk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill online prescription", "datetime": "2026-03-12 19:44:15.827573", "source": "google", "data": ["morning after pill online prescription", [["morning after pill online prescription", 0, [22, 30]], ["morning after pill online pharmacy", 0, [22, 455, 30]], ["does morning after pill need prescription", 0, [512, 390, 650]], ["does the morning after pill require a prescription", 0, [512, 390, 650]], ["morning after pill prescription only", 0, [512, 546]], ["morning after pill otc walgreens", 0, [546, 649]], ["morning after pill on amazon", 0, [512, 546]], ["morning after pill otc", 0, [512, 546]]], {"i": "morning after pill online prescription", "q": "XD8ePCv4KeLfNAGsdS8MCUa0Nu0", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill online prescription", "morning after pill online pharmacy", "does morning after pill need prescription", "does the morning after pill require a prescription", "morning after pill prescription only", "morning after pill otc walgreens", "morning after pill on amazon", "morning after pill otc"], "self_loops": [0], "tags": {"i": "morning after pill online prescription", "q": "XD8ePCv4KeLfNAGsdS8MCUa0Nu0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill prescribed online", "datetime": "2026-03-12 19:44:17.001131", "source": "google", "data": ["abortion pill prescribed online", [["abortion pill prescribed online", 0, [512]], ["morning after pill prescription online", 0, [22, 30]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill prescriber", 0, [751]]], {"i": "abortion pill prescribed online", "q": "qqdDu15usgnvSMFUos3aigwc8ik", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill prescribed online", "morning after pill prescription online", "abortion pill near me online", "abortion pill prescriber"], "self_loops": [0], "tags": {"i": "abortion pill prescribed online", "q": "qqdDu15usgnvSMFUos3aigwc8ik", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill online pharmacy", "datetime": "2026-03-12 19:44:18.484696", "source": "google", "data": ["morning after pill online pharmacy", [["morning after pill online pharmacy", 0, [22, 455, 30]], ["boots online pharmacy morning after pill", 0, [22, 30]], ["asda online pharmacy morning after pill", 0, [22, 30]], ["superdrug online pharmacy morning after pill", 0, [22, 30]], ["lloydspharmacy online morning after pill", 0, [22, 10, 30]], ["online pharmacy uk morning after pill", 0, [22, 455, 30]], ["morning after pill otc walgreens", 0, [546, 649]], ["morning after pill on amazon", 0, [512, 546]], ["morning after pill otc", 0, [512, 546]], ["morning after pills over the counter", 0, [512, 546]]], {"i": "morning after pill online pharmacy", "q": "w-ZEaO5nNoJ3KFF2O3576Ke-d2s", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill online pharmacy", "boots online pharmacy morning after pill", "asda online pharmacy morning after pill", "superdrug online pharmacy morning after pill", "lloydspharmacy online morning after pill", "online pharmacy uk morning after pill", "morning after pill otc walgreens", "morning after pill on amazon", "morning after pill otc", "morning after pills over the counter"], "self_loops": [0], "tags": {"i": "morning after pill online pharmacy", "q": "w-ZEaO5nNoJ3KFF2O3576Ke-d2s", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost germany", "datetime": "2026-03-12 19:44:19.521175", "source": "google", "data": ["abortion pill cost germany", [["abortion pill cost germany", 0, [512]], ["morning after pill cost germany", 0, [22, 30]], ["abortion pill in german", 0, [512, 546]]], {"i": "abortion pill cost germany", "q": "GxESiQbgdfQJq6q4YcJohCSIcdQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost germany", "morning after pill cost germany", "abortion pill in german"], "self_loops": [0], "tags": {"i": "abortion pill cost germany", "q": "GxESiQbgdfQJq6q4YcJohCSIcdQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill in german", "datetime": "2026-03-12 19:44:20.765262", "source": "google", "data": ["abortion pill in german", [["abortion pill in german", 0, [512]], ["abortion pill in german meme", 0, [512]], ["abortion pill in german online", 0, [512]], ["abortion pill in german online price", 0, [512]], ["abortion pill in german online near me", 0, [22, 30]], ["abortion pill in german translation", 0, [22, 30]], ["abortion pill in german name", 0, [22, 30]], ["morning after pill in german", 0, [22, 30]], ["abortion options in germany", 0, [22, 30]], ["morning after pill in germany name", 0, [22, 30]]], {"i": "abortion pill in german", "q": "qBNzslg83rXf6pu7WAgn52PjRP8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill in german", "abortion pill in german meme", "abortion pill in german online", "abortion pill in german online price", "abortion pill in german online near me", "abortion pill in german translation", "abortion pill in german name", "morning after pill in german", "abortion options in germany", "morning after pill in germany name"], "self_loops": [0], "tags": {"i": "abortion pill in german", "q": "qBNzslg83rXf6pu7WAgn52PjRP8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost in mississippi", "datetime": "2026-03-12 19:44:21.575859", "source": "google", "data": ["abortion pill cost in mississippi", [["abortion pill cost in mississippi", 0, [512]], ["abortion pill in mississippi", 0, [512, 546]], ["abortion pill in ms", 0, [546, 649]]], {"i": "abortion pill cost in mississippi", "q": "m09h2WMUwONIlgCJSVHtaWtpQvQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cost in mississippi", "abortion pill in mississippi", "abortion pill in ms"], "self_loops": [0], "tags": {"i": "abortion pill cost in mississippi", "q": "m09h2WMUwONIlgCJSVHtaWtpQvQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill in mississippi", "datetime": "2026-03-12 19:44:22.412734", "source": "google", "data": ["abortion pill in mississippi", [["abortion pill in mississippi", 0, [512]], ["abortion clinics in mississippi", 0, [22, 30]], ["abortion options in mississippi", 0, [22, 30]], ["abortion pill cost in mississippi", 0, [22, 30]], ["abortion pill legal in mississippi", 0, [22, 30]], ["abortion pill online mississippi", 0, [22, 30]], ["abortion clinics in jackson mississippi", 0, [22, 30]], ["morning after pill mississippi", 0, [22, 30]], ["how to get abortion pill in mississippi", 0, [22, 30]], ["can you get abortion pill in mississippi", 0, [22, 30]]], {"i": "abortion pill in mississippi", "q": "u3uwmoIC1ezGUKccdc2j_bRqna4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill in mississippi", "abortion clinics in mississippi", "abortion options in mississippi", "abortion pill cost in mississippi", "abortion pill legal in mississippi", "abortion pill online mississippi", "abortion clinics in jackson mississippi", "morning after pill mississippi", "how to get abortion pill in mississippi", "can you get abortion pill in mississippi"], "self_loops": [0], "tags": {"i": "abortion pill in mississippi", "q": "u3uwmoIC1ezGUKccdc2j_bRqna4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill amazon uk", "datetime": "2026-03-12 19:44:23.685795", "source": "google", "data": ["morning after pill amazon uk", [["morning after pill amazon uk", 0, [22, 30]], ["morning after pill for dogs uk price amazon", 0, [22, 30]], ["is the morning after pill free uk", 0, [512, 390, 650]], ["morning after pill amazon", 0, [512, 546]]], {"i": "morning after pill amazon uk", "q": "LtECpCn4bORWbmhrh_fE6DVsNBI", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill amazon uk", "morning after pill for dogs uk price amazon", "is the morning after pill free uk", "morning after pill amazon"], "self_loops": [0], "tags": {"i": "morning after pill amazon uk", "q": "LtECpCn4bORWbmhrh_fE6DVsNBI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill amazon reddit", "datetime": "2026-03-12 19:44:25.098194", "source": "google", "data": ["morning after pill amazon reddit", [["morning after pill amazon reddit", 0, [22, 30]], ["how effective is the morning after pill reddit", 0, [512, 390, 650]], ["amazon plan b reviews", 0, [512, 390, 650]], ["side effects of morning after pill reddit", 0, [512, 390, 650]], ["morning after pill amazon", 0, [512, 546]], ["morning after pill reddit", 0, [512, 546]], ["best morning after pill reddit", 0, [512, 546]], ["morning after reddit", 0, [751]]], {"i": "morning after pill amazon reddit", "q": "j2sMO9lmbA8vURckOgfssRNDWdk", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill amazon reddit", "how effective is the morning after pill reddit", "amazon plan b reviews", "side effects of morning after pill reddit", "morning after pill amazon", "morning after pill reddit", "best morning after pill reddit", "morning after reddit"], "self_loops": [0], "tags": {"i": "morning after pill amazon reddit", "q": "j2sMO9lmbA8vURckOgfssRNDWdk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "day after pill amazon", "datetime": "2026-03-12 19:44:26.249051", "source": "google", "data": ["day after pill amazon", [["day after pill amazon", 0, [22, 30]], ["morning after pill amazon", 0, [22, 30]], ["morning after pill amazon uk", 0, [22, 30]], ["morning after pill amazon reddit", 0, [22, 30]], ["ella morning after pill amazon", 0, [22, 30]], ["when did the day after pill come out", 0, [512, 390, 650]], ["day after pill over the counter", 0, [512, 546]], ["day after pill at walmart", 0, [512, 546]]], {"i": "day after pill amazon", "q": "Mp1fCLbcXHBaXKBteEWMpo3jkyI", "t": {"bpc": false, "tlw": false}}], "suggests": ["day after pill amazon", "morning after pill amazon", "morning after pill amazon uk", "morning after pill amazon reddit", "ella morning after pill amazon", "when did the day after pill come out", "day after pill over the counter", "day after pill at walmart"], "self_loops": [0], "tags": {"i": "day after pill amazon", "q": "Mp1fCLbcXHBaXKBteEWMpo3jkyI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can you buy morning after pill on amazon", "datetime": "2026-03-12 19:44:27.747779", "source": "google", "data": ["can you buy morning after pill on amazon", [["can you buy morning after pill on amazon", 0, [22, 30]], ["can you buy morning after pill from pharmacy", 0, [512, 390, 650]], ["can you buy the morning after pill from boots", 0, [512, 390, 650]], ["can you buy the morning after pill at walmart", 0, [512, 546]], ["can you purchase the morning after pill over the counter", 0, [751]], ["can you buy morning after pill in texas", 0, [546, 649]], ["can you still buy morning after pill", 0, [751]]], {"i": "can you buy morning after pill on amazon", "q": "BTk7x3cFmkkIcfv2SN-eSE-ouOA", "t": {"bpc": false, "tlw": false}}], "suggests": ["can you buy morning after pill on amazon", "can you buy morning after pill from pharmacy", "can you buy the morning after pill from boots", "can you buy the morning after pill at walmart", "can you purchase the morning after pill over the counter", "can you buy morning after pill in texas", "can you still buy morning after pill"], "self_loops": [0], "tags": {"i": "can you buy morning after pill on amazon", "q": "BTk7x3cFmkkIcfv2SN-eSE-ouOA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ella morning after pill amazon", "datetime": "2026-03-12 19:44:28.675344", "source": "google", "data": ["ella morning after pill amazon", [["ella morning after pill amazon", 0, [22, 30]], ["ella morning after pill where to buy", 0, [512, 390, 650]], ["ella and plan b difference", 0, [512, 390, 650]], ["ella plan b near me", 0, [512, 390, 650]], ["ella plan b reviews", 0, [512, 390, 650]], ["ella plan b cost", 0, [512, 390, 650]], ["ella morning-after pill walgreens", 0, [751]], ["ella morning after pill walmart", 0, [751]], ["ella morning after pill over the counter", 0, [751]]], {"i": "ella morning after pill amazon", "q": "C2mtKLbjrmNP5wVjKMfiovt813s", "t": {"bpc": false, "tlw": false}}], "suggests": ["ella morning after pill amazon", "ella morning after pill where to buy", "ella and plan b difference", "ella plan b near me", "ella plan b reviews", "ella plan b cost", "ella morning-after pill walgreens", "ella morning after pill walmart", "ella morning after pill over the counter"], "self_loops": [0], "tags": {"i": "ella morning after pill amazon", "q": "C2mtKLbjrmNP5wVjKMfiovt813s", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "starting the pill after morning after pill", "datetime": "2026-03-12 19:44:30.047052", "source": "google", "data": ["starting the pill after morning after pill", [["starting the pill after morning after pill", 0, [512]], ["taking the pill after morning after pill", 0, [22, 30]], ["can you start the pill after taking the morning after pill", 0, [22, 30]], ["how soon after morning after pill can i start birth control", 0, [512, 390, 650]], ["starting contraception after morning after pill", 0, [512, 390, 650]], ["what does the morning-after pill do", 0, [751]], ["how does the morning-after pill work", 0, [512, 546]], ["the morning-after pill", 0, [512, 546]], ["is the morning-after pill still available", 0, [751]], ["how long does the morning after pill work after i take it", 0, [546, 649]]], {"i": "starting the pill after morning after pill", "q": "jRIs5Mn0YNKxdKezTck6FSxpmes", "t": {"bpc": false, "tlw": false}}], "suggests": ["starting the pill after morning after pill", "taking the pill after morning after pill", "can you start the pill after taking the morning after pill", "how soon after morning after pill can i start birth control", "starting contraception after morning after pill", "what does the morning-after pill do", "how does the morning-after pill work", "the morning-after pill", "is the morning-after pill still available", "how long does the morning after pill work after i take it"], "self_loops": [0], "tags": {"i": "starting the pill after morning after pill", "q": "jRIs5Mn0YNKxdKezTck6FSxpmes", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "when did morning after pill become available", "datetime": "2026-03-12 19:44:31.257690", "source": "google", "data": ["when did morning after pill become available", [["when did morning after pill become available", 0, [512]], ["when did the morning after pill become available in the uk", 0, [22, 30]], ["when did the morning after pill become available over the counter", 0, [22, 30]], ["how long has the morning after pill been around", 0, [512, 390, 650]], ["when did morning after pill come out", 0, [512, 390, 650]], ["when did morning after pill became available", 0, [546, 649]]], {"i": "when did morning after pill become available", "q": "Thy-KFP2pjDFZ_88laP5w4BYlt8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["when did morning after pill become available", "when did the morning after pill become available in the uk", "when did the morning after pill become available over the counter", "how long has the morning after pill been around", "when did morning after pill come out", "when did morning after pill became available"], "self_loops": [0], "tags": {"i": "when did morning after pill become available", "q": "Thy-KFP2pjDFZ_88laP5w4BYlt8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can you take morning after pill once a month", "datetime": "2026-03-12 19:44:32.713672", "source": "google", "data": ["can you take morning after pill once a month", [["can you take morning after pill once a month", 0, [512]], ["can you take morning after pill more than once a month", 0, [22, 30]], ["what happens if you take the morning after pill once a month", 0, [22, 30]], ["can you take morning after pill twice in one month", 0, [22, 30]], ["can you take the morning after pill 3 times in one month", 0, [22, 10, 30]], ["can you take 3 morning after pills in one month", 0, [22, 30]], ["taking morning after pill once a month", 0, [22, 30]], ["can you take more than one morning after pill in a month", 0, [22, 30]], ["can you take plan b once a month", 0, [22, 30]]], {"i": "can you take morning after pill once a month", "q": "E1J3PVLqK9M8IJJroWVyA7CEN98", "t": {"bpc": false, "tlw": false}}], "suggests": ["can you take morning after pill once a month", "can you take morning after pill more than once a month", "what happens if you take the morning after pill once a month", "can you take morning after pill twice in one month", "can you take the morning after pill 3 times in one month", "can you take 3 morning after pills in one month", "taking morning after pill once a month", "can you take more than one morning after pill in a month", "can you take plan b once a month"], "self_loops": [0], "tags": {"i": "can you take morning after pill once a month", "q": "E1J3PVLqK9M8IJJroWVyA7CEN98", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "amazon plan b reviews", "datetime": "2026-03-12 19:44:33.746511", "source": "google", "data": ["amazon plan b reviews", [["amazon plan b reviews", 0, [512]], ["amazon plan b reddit", 0, [512, 546]], ["amazon plan.b", 0, [751]], ["is plan b on amazon legit", 0, [546, 649]]], {"i": "amazon plan b reviews", "q": "-c11WRcS8-JhUjc1eit-FpJHm1o", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["amazon plan b reviews", "amazon plan b reddit", "amazon plan.b", "is plan b on amazon legit"], "self_loops": [0], "tags": {"i": "amazon plan b reviews", "q": "-c11WRcS8-JhUjc1eit-FpJHm1o", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new day plan b reviews", "datetime": "2026-03-12 19:44:35.109620", "source": "google", "data": ["new day plan b reviews", [["new day plan b reviews", 0, [512]], ["new day emergency contraception reviews", 0, [512, 390, 650]], ["is new day as effective as plan b", 0, [512, 390, 650]], ["new day morning after pill", 0, [512, 390, 650]], ["new day after pill reviews", 0, [751]], ["new day plan b pill", 0, [512, 546]], ["is new day a good plan b", 0, [512, 546]]], {"i": "new day plan b reviews", "q": "-y4c-HURS1OWukWFBmZGAGy8L2E", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["new day plan b reviews", "new day emergency contraception reviews", "is new day as effective as plan b", "new day morning after pill", "new day after pill reviews", "new day plan b pill", "is new day a good plan b"], "self_loops": [0], "tags": {"i": "new day plan b reviews", "q": "-y4c-HURS1OWukWFBmZGAGy8L2E", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new day emergency contraception reviews", "datetime": "2026-03-12 19:44:36.021584", "source": "google", "data": ["new day emergency contraception reviews", [["new day emergency contraception reviews", 0, [512]], ["new day emergency contraception side effects", 0, [22, 30]], ["new day morning after pill", 0, [512, 390, 650]], ["new day pill reviews", 0, [512, 390, 650]], ["new day contraceptive reviews", 0, [512, 546]], ["new day emergency contraception", 0, [512, 546]], ["new day emergency contraception weight limit", 0, [512, 546]]], {"i": "new day emergency contraception reviews", "q": "_xEW1MhWqdjxb-wEPgdCQVHnc7s", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["new day emergency contraception reviews", "new day emergency contraception side effects", "new day morning after pill", "new day pill reviews", "new day contraceptive reviews", "new day emergency contraception", "new day emergency contraception weight limit"], "self_loops": [0], "tags": {"i": "new day emergency contraception reviews", "q": "_xEW1MhWqdjxb-wEPgdCQVHnc7s", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "amazon morning after pill", "datetime": "2026-03-12 19:44:37.313563", "source": "google", "data": ["amazon morning after pill", [["amazon morning after pill", 0, [512]], ["amazon day after pill", 0, [22, 30]], ["best amazon morning after pill", 0, [22, 10, 30]], ["morning after pill amazon uk", 0, [22, 30]], ["does amazon sell morning after pill", 0, [22, 30]], ["ella morning after pill amazon", 0, [22, 30]], ["when did morning after pill become available", 0, [512, 390, 650]], ["starting the pill after morning after pill", 0, [512, 390, 650]], ["when did morning after pill come out", 0, [512, 390, 650]], ["amazon plan b reviews", 0, [512, 390, 650]]], {"i": "amazon morning after pill", "q": "qoPCOk82GjnYOi5ih-gHUhKk15Y", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["amazon morning after pill", "amazon day after pill", "best amazon morning after pill", "morning after pill amazon uk", "does amazon sell morning after pill", "ella morning after pill amazon", "when did morning after pill become available", "starting the pill after morning after pill", "when did morning after pill come out", "amazon plan b reviews"], "self_loops": [0], "tags": {"i": "amazon morning after pill", "q": "qoPCOk82GjnYOi5ih-gHUhKk15Y", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "best morning after pill cvs", "datetime": "2026-03-12 19:44:38.236853", "source": "google", "data": ["best morning after pill cvs", [["best morning after pill cvs", 0, [22, 30]], ["does cvs sell morning after pill", 0, [512, 390, 650]], ["does cvs brand plan b work", 0, [512, 390, 650]], ["cvs morning after pill generic", 0, [546, 649]], ["cvs morning after pill cost", 0, [512, 546]], ["cvs morning after pill price", 0, [751]], ["cvs morning after pills", 0, [751]]], {"i": "best morning after pill cvs", "q": "Ex8-fc5KHmPlgxb6BSChUahmtes", "t": {"bpc": false, "tlw": false}}], "suggests": ["best morning after pill cvs", "does cvs sell morning after pill", "does cvs brand plan b work", "cvs morning after pill generic", "cvs morning after pill cost", "cvs morning after pill price", "cvs morning after pills"], "self_loops": [0], "tags": {"i": "best morning after pill cvs", "q": "Ex8-fc5KHmPlgxb6BSChUahmtes", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill amazon pharmacy", "datetime": "2026-03-12 19:44:39.727133", "source": "google", "data": ["abortion pill amazon pharmacy", [["abortion pill amazon pharmacy", 0, [512]], ["abortion pill amazon", 0, [512, 546]], ["abortion pill available at pharmacies", 0, [751]], ["abortion pill available at cvs", 0, [546, 649]]], {"i": "abortion pill amazon pharmacy", "q": "64PruXAzHMlSjOjxTKWb8tpzsf0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill amazon pharmacy", "abortion pill amazon", "abortion pill available at pharmacies", "abortion pill available at cvs"], "self_loops": [0], "tags": {"i": "abortion pill amazon pharmacy", "q": "64PruXAzHMlSjOjxTKWb8tpzsf0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill amazon reddit", "datetime": "2026-03-12 19:44:40.574245", "source": "google", "data": ["abortion pill amazon reddit", [["abortion pill amazon reddit", 0, [22, 30]], ["morning after pill amazon reddit", 0, [22, 30]], ["abortion pill reviews reddit", 0, [512, 390, 650]], ["what does the abortion pill feel like reddit", 0, [512, 390, 650]], ["abortion pill amazon", 0, [512, 546]], ["abortion pill reddit experience", 0, [512, 546]]], {"i": "abortion pill amazon reddit", "q": "5SLBK71py6fUy9oLIccfYFQv2Ew", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill amazon reddit", "morning after pill amazon reddit", "abortion pill reviews reddit", "what does the abortion pill feel like reddit", "abortion pill amazon", "abortion pill reddit experience"], "self_loops": [0], "tags": {"i": "abortion pill amazon reddit", "q": "5SLBK71py6fUy9oLIccfYFQv2Ew", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost amazon", "datetime": "2026-03-12 19:44:41.669693", "source": "google", "data": ["abortion pill cost amazon", [["abortion pill cost amazon", 0, [512]], ["abortion pill cost cvs", 0, [512, 546]], ["abortion pill cost online", 0, [512, 546]], ["abortion pill cost cvs price", 0, [546, 649]]], {"i": "abortion pill cost amazon", "q": "ApchCqkKB88DG7Zo8gUessfaYfY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost amazon", "abortion pill cost cvs", "abortion pill cost online", "abortion pill cost cvs price"], "self_loops": [0], "tags": {"i": "abortion pill cost amazon", "q": "ApchCqkKB88DG7Zo8gUessfaYfY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill name amazon", "datetime": "2026-03-12 19:44:43.073018", "source": "google", "data": ["abortion pill name amazon", [["abortion pill name amazon", 0, [22, 455, 30]], ["abortion pill name and image", 0, [512, 546]], ["abortion pill.name", 0, [512, 546]], ["abortion pill amazon", 0, [512, 546]]], {"i": "abortion pill name amazon", "q": "ZcPXn8u2_D8yHvg6S39TS7u-dU8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill name amazon", "abortion pill name and image", "abortion pill.name", "abortion pill amazon"], "self_loops": [0], "tags": {"i": "abortion pill name amazon", "q": "ZcPXn8u2_D8yHvg6S39TS7u-dU8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill in atlanta ga", "datetime": "2026-03-12 19:44:43.972271", "source": "google", "data": ["abortion pill in atlanta ga", [["abortion pill in atlanta ga", 0, [512]], ["abortion clinics in atlanta ga", 0, [22, 30]], ["abortion pill cost in atlanta ga", 0, [22, 30]], ["abortion pill online atlanta ga", 0, [22, 30]], ["abortion pill in georgia", 0, [512, 390, 650]], ["abortion pill atlanta georgia", 0, [751]]], {"i": "abortion pill in atlanta ga", "q": "xSjMY7LkL-M_2zkQrow0rj3yIM8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill in atlanta ga", "abortion clinics in atlanta ga", "abortion pill cost in atlanta ga", "abortion pill online atlanta ga", "abortion pill in georgia", "abortion pill atlanta georgia"], "self_loops": [0], "tags": {"i": "abortion pill in atlanta ga", "q": "xSjMY7LkL-M_2zkQrow0rj3yIM8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill atlanta georgia", "datetime": "2026-03-12 19:44:45.453947", "source": "google", "data": ["abortion pill atlanta georgia", [["abortion pill atlanta georgia", 0, [22, 30]], ["abortion clinic atlanta georgia", 0, [22, 30]], ["abortion clinics near atlanta georgia", 0, [22, 30]], ["abortion pill online atlanta ga", 0, [22, 30]], ["abortion pill in atlanta ga", 0, [512, 390, 650]], ["abortion pill in georgia", 0, [512, 390, 650]], ["abortion pill atlanta", 0, [512, 546]], ["abortion pill clinic atlanta ga", 0, [751]]], {"i": "abortion pill atlanta georgia", "q": "O6dMROG1G_Kdc1jGxNWq97_RLsA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill atlanta georgia", "abortion clinic atlanta georgia", "abortion clinics near atlanta georgia", "abortion pill online atlanta ga", "abortion pill in atlanta ga", "abortion pill in georgia", "abortion pill atlanta", "abortion pill clinic atlanta ga"], "self_loops": [0], "tags": {"i": "abortion pill atlanta georgia", "q": "O6dMROG1G_Kdc1jGxNWq97_RLsA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics in georgia", "datetime": "2026-03-12 19:44:46.261143", "source": "google", "data": ["abortion clinics in georgia", [["abortion clinics in georgia", 0, [512]], ["abortion clinics in georgia open now", 0, [512]], ["abortion clinic in georgia country", 0, [22, 30]], ["abortion centers in georgia", 0, [22, 30]], ["abortion clinics in atlanta georgia", 0, [22, 30]], ["abortion clinics in augusta georgia", 0, [22, 30]], ["best abortion clinics in georgia", 0, [22, 30]], ["abortion clinics in columbus georgia", 0, [22, 30]], ["abortion clinics in savannah georgia", 0, [22, 30]], ["abortion clinics in marietta georgia", 0, [22, 30]]], {"i": "abortion clinics in georgia", "q": "U_NIdjSSwQDNzdJrV0l9rElqzSg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinics in georgia", "abortion clinics in georgia open now", "abortion clinic in georgia country", "abortion centers in georgia", "abortion clinics in atlanta georgia", "abortion clinics in augusta georgia", "best abortion clinics in georgia", "abortion clinics in columbus georgia", "abortion clinics in savannah georgia", "abortion clinics in marietta georgia"], "self_loops": [0], "tags": {"i": "abortion clinics in georgia", "q": "U_NIdjSSwQDNzdJrV0l9rElqzSg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion options in georgia", "datetime": "2026-03-12 19:44:47.209576", "source": "google", "data": ["abortion options in georgia", [["abortion options in georgia", 0, [22, 30]], ["abortion clinics in georgia", 0, [22, 30]], ["abortion pill in georgia", 0, [22, 30]], ["abortion clinics in georgia open now", 0, [22, 30]], ["abortion clinics in atlanta georgia", 0, [22, 30]], ["abortion pill legal in georgia", 0, [22, 30]], ["abortion pill laws in georgia", 0, [22, 30]], ["abortion clinics in augusta georgia", 0, [22, 30]], ["best abortion clinics in georgia", 0, [22, 30]], ["abortion clinics in columbus georgia", 0, [22, 30]]], {"i": "abortion options in georgia", "q": "mgflrGN1LSPTTioM9EBG0ifYumM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion options in georgia", "abortion clinics in georgia", "abortion pill in georgia", "abortion clinics in georgia open now", "abortion clinics in atlanta georgia", "abortion pill legal in georgia", "abortion pill laws in georgia", "abortion clinics in augusta georgia", "best abortion clinics in georgia", "abortion clinics in columbus georgia"], "self_loops": [0], "tags": {"i": "abortion options in georgia", "q": "mgflrGN1LSPTTioM9EBG0ifYumM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics in georgia open now", "datetime": "2026-03-12 19:44:48.638037", "source": "google", "data": ["abortion clinics in georgia open now", [["abortion clinics in georgia open now", 0, [512]], ["abortion clinic open sunday near me", 0, [512, 390, 650]], ["abortion clinic open near me", 0, [512, 390, 650]], ["abortion clinics in georgia", 0, [512, 546]], ["abortion clinics in ga", 0, [512, 546]]], {"i": "abortion clinics in georgia open now", "q": "R4ralSd0WTRpasiINRnvZ0uHwTs", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics in georgia open now", "abortion clinic open sunday near me", "abortion clinic open near me", "abortion clinics in georgia", "abortion clinics in ga"], "self_loops": [0], "tags": {"i": "abortion clinics in georgia open now", "q": "R4ralSd0WTRpasiINRnvZ0uHwTs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill in georgia", "datetime": "2026-03-12 19:44:49.902403", "source": "google", "data": ["morning after pill in georgia", [], {"i": "morning after pill in georgia", "q": "lHDp-l2yFaF9cH-F93DnwlI12t8", "t": {"bpc": true, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "morning after pill in georgia", "q": "lHDp-l2yFaF9cH-F93DnwlI12t8", "t": {"bpc": true, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill legal in georgia", "datetime": "2026-03-12 19:44:51.362829", "source": "google", "data": ["abortion pill legal in georgia", [["abortion pill legal in georgia", 0, [22, 30]], ["abortion pill law in georgia", 0, [22, 30]], ["is abortion pill illegal in georgia", 0, [22, 30]], ["is morning after pill legal in georgia", 0, [22, 30]], ["are abortion clinics legal in georgia", 0, [22, 30]], ["are abortion pills available in georgia", 0, [22, 30]], ["is medication abortion legal in georgia", 0, [22, 30]], ["is abortion pill illegal in ga", 0, [22, 30]], ["abortion pill in georgia", 0, [512, 390, 650]], ["legal abortion in georgia", 0, [512, 390, 650]]], {"i": "abortion pill legal in georgia", "q": "dKBBqsely5H0a5l2i5LvnipsFAg", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill legal in georgia", "abortion pill law in georgia", "is abortion pill illegal in georgia", "is morning after pill legal in georgia", "are abortion clinics legal in georgia", "are abortion pills available in georgia", "is medication abortion legal in georgia", "is abortion pill illegal in ga", "abortion pill in georgia", "legal abortion in georgia"], "self_loops": [0], "tags": {"i": "abortion pill legal in georgia", "q": "dKBBqsely5H0a5l2i5LvnipsFAg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill laws in georgia", "datetime": "2026-03-12 19:44:52.337018", "source": "google", "data": ["abortion pill laws in georgia", [["abortion pill laws in georgia", 0, [22, 30]], ["abortion pill legal in georgia", 0, [22, 30]], ["is morning after pill legal in georgia", 0, [22, 30]], ["are abortion clinics legal in georgia", 0, [22, 30]], ["abortion law in georgia", 0, [512, 390, 650]], ["abortion pill in georgia", 0, [512, 390, 650]], ["abortion laws in georgia 2021", 0, [751]]], {"i": "abortion pill laws in georgia", "q": "xzQecvUPrJVyGZln-A_t1bbadi0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill laws in georgia", "abortion pill legal in georgia", "is morning after pill legal in georgia", "are abortion clinics legal in georgia", "abortion law in georgia", "abortion pill in georgia", "abortion laws in georgia 2021"], "self_loops": [0], "tags": {"i": "abortion pill laws in georgia", "q": "xzQecvUPrJVyGZln-A_t1bbadi0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill clinic in georgia", "datetime": "2026-03-12 19:44:53.325835", "source": "google", "data": ["abortion pill clinic in georgia", [["abortion pill clinic in georgia", 0, [22, 30]], ["abortion pill in georgia", 0, [512, 390, 650]], ["abortion pill clinic atlanta ga", 0, [751]], ["abortion pill in atlanta ga", 0, [512, 546]]], {"i": "abortion pill clinic in georgia", "q": "zz82kY8M2lkuSOOruPSe_DyiZNk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill clinic in georgia", "abortion pill in georgia", "abortion pill clinic atlanta ga", "abortion pill in atlanta ga"], "self_loops": [0], "tags": {"i": "abortion pill clinic in georgia", "q": "zz82kY8M2lkuSOOruPSe_DyiZNk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill georgia how many weeks", "datetime": "2026-03-12 19:44:54.679229", "source": "google", "data": ["abortion pill georgia how many weeks", [["abortion pill georgia how many weeks", 0, [512]], ["how many weeks to get an abortion in georgia", 0, [512, 390, 650]], ["how long can you get an abortion in georgia", 0, [512, 390, 650]], ["how early can you get an abortion in georgia", 0, [512, 390, 650]], ["how far along do you have to be to get an abortion in georgia", 0, [512, 390, 650]], ["georgia abortion pill law", 0, [512, 546]], ["abortion pill georgia", 0, [512, 546]], ["abortion pill georgia online", 0, [512, 546]]], {"i": "abortion pill georgia how many weeks", "q": "bG3kVUH3_e1dj_zqTYXFjMmVgvU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill georgia how many weeks", "how many weeks to get an abortion in georgia", "how long can you get an abortion in georgia", "how early can you get an abortion in georgia", "how far along do you have to be to get an abortion in georgia", "georgia abortion pill law", "abortion pill georgia", "abortion pill georgia online"], "self_loops": [0], "tags": {"i": "abortion pill georgia how many weeks", "q": "bG3kVUH3_e1dj_zqTYXFjMmVgvU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill georgia tbilisi", "datetime": "2026-03-12 19:44:55.791333", "source": "google", "data": ["abortion pill georgia tbilisi", [["abortion pill georgia tbilisi", 0, [512]], ["abortion pill georgia country price", 0, [22, 30]], ["abortion pill georgia country", 0, [22, 30]], ["abortion in georgia country", 0, [512, 390, 650]], ["is abortions legal in georgia", 0, [512, 390, 650]], ["abortion pill georgia online", 0, [512, 546]], ["abortion pill georgia", 0, [512, 546]]], {"i": "abortion pill georgia tbilisi", "q": "cjqasSWXYh8YXnFJgtU4ej55o_g", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill georgia tbilisi", "abortion pill georgia country price", "abortion pill georgia country", "abortion in georgia country", "is abortions legal in georgia", "abortion pill georgia online", "abortion pill georgia"], "self_loops": [0], "tags": {"i": "abortion pill georgia tbilisi", "q": "cjqasSWXYh8YXnFJgtU4ej55o_g", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "telehealth for abortion pill", "datetime": "2026-03-12 19:44:57.071858", "source": "google", "data": ["telehealth for abortion pill", [["telehealth for abortion pill", 0, [512]], ["telemedicine for abortion pill", 0, [22, 30]], ["telehealth appointment for abortion pill", 0, [22, 30]], ["telehealth visit for abortion pill", 0, [22, 30]], ["telehealth abortion pill florida", 0, [22, 30]], ["telehealth abortion pill north carolina", 0, [22, 30]], ["telehealth abortion pill pennsylvania", 0, [22, 30]], ["telehealth abortion pill ohio", 0, [22, 30]], ["telehealth abortion pill california", 0, [22, 30]], ["telehealth abortion pill texas", 0, [22, 30]]], {"i": "telehealth for abortion pill", "q": "fa927id82GGf8Wo1MQb4lpixHdY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["telehealth for abortion pill", "telemedicine for abortion pill", "telehealth appointment for abortion pill", "telehealth visit for abortion pill", "telehealth abortion pill florida", "telehealth abortion pill north carolina", "telehealth abortion pill pennsylvania", "telehealth abortion pill ohio", "telehealth abortion pill california", "telehealth abortion pill texas"], "self_loops": [0], "tags": {"i": "telehealth for abortion pill", "q": "fa927id82GGf8Wo1MQb4lpixHdY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is telemedicine abortion", "datetime": "2026-03-12 19:44:58.498577", "source": "google", "data": ["what is telemedicine abortion", [["what is telemedicine abortion", 0, [512]], ["what is telemed abortion", 0, [22, 30]], ["what is telehealth abortion", 0, [22, 30]], ["what is telehealth medication abortion", 0, [22, 30]], ["what is a telehealth abortion clinic", 0, [22, 30]]], {"i": "what is telemedicine abortion", "q": "Z0ACMPpNdZ1-ULl-tLKjtuAS3rg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is telemedicine abortion", "what is telemed abortion", "what is telehealth abortion", "what is telehealth medication abortion", "what is a telehealth abortion clinic"], "self_loops": [0], "tags": {"i": "what is telemedicine abortion", "q": "Z0ACMPpNdZ1-ULl-tLKjtuAS3rg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill telemedicine", "datetime": "2026-03-12 19:44:59.548910", "source": "google", "data": ["abortion pill telemedicine", [["abortion pill telemedicine", 0, [512]], ["abortion pill teladoc", 0, [22, 30]], ["abortion pill telehealth", 0, [22, 30]], ["abortion pill telehealth florida", 0, [22, 30]], ["abortion pill telehealth ohio", 0, [22, 30]], ["what is telemedicine abortion", 0, [512, 390, 650]], ["can i get birth control through telehealth", 0, [512, 390, 650]]], {"i": "abortion pill telemedicine", "q": "X6WJwp0rAcFWsUiAIUnm8FsCqt4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill telemedicine", "abortion pill teladoc", "abortion pill telehealth", "abortion pill telehealth florida", "abortion pill telehealth ohio", "what is telemedicine abortion", "can i get birth control through telehealth"], "self_loops": [0], "tags": {"i": "abortion pill telemedicine", "q": "X6WJwp0rAcFWsUiAIUnm8FsCqt4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online planned parenthood", "datetime": "2026-03-12 19:45:00.605217", "source": "google", "data": ["abortion pill online planned parenthood", [["abortion pill online planned parenthood", 0, [512]], ["abortion pill instructions planned parenthood", 0, [512, 390, 650]], ["abortion pill near me online", 0, [512, 390, 650]], ["does planned parenthood do abortions for free", 0, [512, 390, 650]], ["what days does planned parenthood do abortions", 0, [512, 390, 650]], ["abortion pill online plan c", 0, [751]], ["abortion pill online telehealth", 0, [546, 649]], ["abortion pill online prescription", 0, [512, 546]]], {"i": "abortion pill online planned parenthood", "q": "0iZbjvM_BfVZiral9QMLJQklz-c", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online planned parenthood", "abortion pill instructions planned parenthood", "abortion pill near me online", "does planned parenthood do abortions for free", "what days does planned parenthood do abortions", "abortion pill online plan c", "abortion pill online telehealth", "abortion pill online prescription"], "self_loops": [0], "tags": {"i": "abortion pill online planned parenthood", "q": "0iZbjvM_BfVZiral9QMLJQklz-c", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion centers in ohio", "datetime": "2026-03-12 19:45:02.076603", "source": "google", "data": ["abortion centers in ohio", [["abortion centers in ohio", 0, [512]], ["abortion clinics in ohio", 0, [22, 30]], ["abortion services in ohio", 0, [22, 30]], ["abortion clinics in ohio near me", 0, [22, 30]], ["abortion providers in ohio", 0, [22, 30]], ["abortion doctors in ohio", 0, [22, 30]], ["abortion centers in cincinnati ohio", 0, [22, 30]], ["abortion centers columbus ohio", 0, [22, 30]], ["free abortion clinics in ohio", 0, [22, 30]], ["abortion clinic in cincinnati ohio", 0, [22, 30]]], {"i": "abortion centers in ohio", "q": "vj-oaJNPOAZOEMyUfboFXRctuoo", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion centers in ohio", "abortion clinics in ohio", "abortion services in ohio", "abortion clinics in ohio near me", "abortion providers in ohio", "abortion doctors in ohio", "abortion centers in cincinnati ohio", "abortion centers columbus ohio", "free abortion clinics in ohio", "abortion clinic in cincinnati ohio"], "self_loops": [0], "tags": {"i": "abortion centers in ohio", "q": "vj-oaJNPOAZOEMyUfboFXRctuoo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion doctors in ohio", "datetime": "2026-03-12 19:45:03.208645", "source": "google", "data": ["abortion doctors in ohio", [["abortion doctors in ohio", 0, [22, 30]], ["abortion clinics in ohio", 0, [22, 30]], ["abortion services in ohio", 0, [22, 30]], ["abortion clinics in ohio near me", 0, [22, 30]], ["abortion providers in ohio", 0, [22, 30]], ["free abortion clinics in ohio", 0, [22, 30]], ["abortion clinics in columbus ohio", 0, [22, 30]], ["abortion clinic in cincinnati ohio", 0, [22, 30]], ["abortion clinic in cleveland ohio", 0, [22, 30]], ["abortion clinic in dayton ohio", 0, [22, 30]]], {"i": "abortion doctors in ohio", "q": "camLxh4dLG4CIuozythhL5EWEGE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion doctors in ohio", "abortion clinics in ohio", "abortion services in ohio", "abortion clinics in ohio near me", "abortion providers in ohio", "free abortion clinics in ohio", "abortion clinics in columbus ohio", "abortion clinic in cincinnati ohio", "abortion clinic in cleveland ohio", "abortion clinic in dayton ohio"], "self_loops": [0], "tags": {"i": "abortion doctors in ohio", "q": "camLxh4dLG4CIuozythhL5EWEGE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinics in ohio", "datetime": "2026-03-12 19:45:04.194935", "source": "google", "data": ["free abortion clinics in ohio", [["free abortion clinics in ohio", 0, [512]], ["free abortion clinics in columbus ohio", 0, [22, 30]], ["free abortion clinics near me", 0, [512, 390, 650]], ["free abortion centers near me", 0, [512, 390, 650]], ["abortion clinics in ohio near me", 0, [512, 390, 650]], ["free abortion clinics in cleveland ohio", 0, [751]]], {"i": "free abortion clinics in ohio", "q": "2C6VJyaryB9ZusMJ0DNYW_fJ9Mg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free abortion clinics in ohio", "free abortion clinics in columbus ohio", "free abortion clinics near me", "free abortion centers near me", "abortion clinics in ohio near me", "free abortion clinics in cleveland ohio"], "self_loops": [0], "tags": {"i": "free abortion clinics in ohio", "q": "2C6VJyaryB9ZusMJ0DNYW_fJ9Mg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics in columbus ohio", "datetime": "2026-03-12 19:45:05.181661", "source": "google", "data": ["abortion clinics in columbus ohio", [["abortion clinics in columbus ohio", 0, [512]], ["abortion clinic in columbus oh", 0, [22, 30]], ["free abortion clinics in columbus ohio", 0, [22, 30]], ["abortion clinic columbus ohio broad street", 0, [22, 30]], ["abortion clinic near me columbus ohio", 0, [22, 30]], ["abortion clinic cleveland ave columbus ohio", 0, [22, 30]], ["abortion clinics in columbus ga", 0, [546, 649]], ["abortion clinics in columbus georgia", 0, [546, 649]]], {"i": "abortion clinics in columbus ohio", "q": "EnQ_sEgQy8--ocyypCiY6guhFQA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinics in columbus ohio", "abortion clinic in columbus oh", "free abortion clinics in columbus ohio", "abortion clinic columbus ohio broad street", "abortion clinic near me columbus ohio", "abortion clinic cleveland ave columbus ohio", "abortion clinics in columbus ga", "abortion clinics in columbus georgia"], "self_loops": [0], "tags": {"i": "abortion clinics in columbus ohio", "q": "EnQ_sEgQy8--ocyypCiY6guhFQA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics in cincinnati ohio", "datetime": "2026-03-12 19:45:06.247812", "source": "google", "data": ["abortion clinics in cincinnati ohio", [["abortion clinics in cincinnati ohio", 0, [512]], ["abortion centers in cincinnati ohio", 0, [22, 30]], ["abortion clinic near me cincinnati ohio", 0, [22, 30]], ["abortion clinics near cincinnati oh", 0, [22, 30]]], {"i": "abortion clinics in cincinnati ohio", "q": "eMZ2eOA0dDMtOT19MYZQa2-hv60", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinics in cincinnati ohio", "abortion centers in cincinnati ohio", "abortion clinic near me cincinnati ohio", "abortion clinics near cincinnati oh"], "self_loops": [0], "tags": {"i": "abortion clinics in cincinnati ohio", "q": "eMZ2eOA0dDMtOT19MYZQa2-hv60", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics in cleveland ohio", "datetime": "2026-03-12 19:45:07.241289", "source": "google", "data": ["abortion clinics in cleveland ohio", [["abortion clinics in cleveland ohio", 0, [512]], ["abortion clinic cleveland oh", 0, [22, 30]], ["abortion clinic near me cleveland ohio", 0, [22, 30]]], {"i": "abortion clinics in cleveland ohio", "q": "WWrP39WAXQboEtwd1RZv4m7nKo4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinics in cleveland ohio", "abortion clinic cleveland oh", "abortion clinic near me cleveland ohio"], "self_loops": [0], "tags": {"i": "abortion clinics in cleveland ohio", "q": "WWrP39WAXQboEtwd1RZv4m7nKo4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics in dayton ohio", "datetime": "2026-03-12 19:45:08.445323", "source": "google", "data": ["abortion clinics in dayton ohio", [["abortion clinics in dayton ohio", 0, [512]], ["abortion clinic near dayton ohio", 0, [22, 30]], ["women's abortion clinic dayton ohio", 0, [22, 30]], ["abortion centers in dayton ohio", 0, [751]], ["abortion clinic dayton oh", 0, [546, 649]]], {"i": "abortion clinics in dayton ohio", "q": "seTQ1Kq5PBysa6rqYq-xYi6Sn-8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics in dayton ohio", "abortion clinic near dayton ohio", "women's abortion clinic dayton ohio", "abortion centers in dayton ohio", "abortion clinic dayton oh"], "self_loops": [0], "tags": {"i": "abortion clinics in dayton ohio", "q": "seTQ1Kq5PBysa6rqYq-xYi6Sn-8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics in toledo ohio", "datetime": "2026-03-12 19:45:09.386791", "source": "google", "data": ["abortion clinics in toledo ohio", [["abortion clinics in toledo ohio", 0, [512]], ["abortion clinic on sylvania in toledo ohio", 0, [22, 30]], ["abortion clinic toledo oh", 0, [22, 30]], ["abortion clinics in ohio near me", 0, [512, 390, 650]]], {"i": "abortion clinics in toledo ohio", "q": "W1rYWpdVJwuIcf6_7zadr1om-zk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinics in toledo ohio", "abortion clinic on sylvania in toledo ohio", "abortion clinic toledo oh", "abortion clinics in ohio near me"], "self_loops": [0], "tags": {"i": "abortion clinics in toledo ohio", "q": "W1rYWpdVJwuIcf6_7zadr1om-zk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill ohio near me", "datetime": "2026-03-12 19:45:10.196852", "source": "google", "data": ["abortion pill ohio near me", [["abortion pill ohio near me", 0, [512]], ["abortion clinic ohio near me", 0, [22, 30]], ["abortion pill ohio online", 0, [512, 546]], ["abortion pill ohio price", 0, [512, 546]]], {"i": "abortion pill ohio near me", "q": "wxVZ5R9aZntmBLO__d5YvPNSlVc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill ohio near me", "abortion clinic ohio near me", "abortion pill ohio online", "abortion pill ohio price"], "self_loops": [0], "tags": {"i": "abortion pill ohio near me", "q": "wxVZ5R9aZntmBLO__d5YvPNSlVc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill ohio cvs", "datetime": "2026-03-12 19:45:11.007511", "source": "google", "data": ["abortion pill ohio cvs", [["abortion pill ohio cvs", 0, [512]], ["abortion pill cost cvs", 0, [512, 390, 650]], ["abortion pill ohio price", 0, [512, 546]], ["abortion pill ohio online", 0, [512, 546]], ["abortion pill cvs walgreens", 0, [546, 649]]], {"i": "abortion pill ohio cvs", "q": "lbthenEbpJIVTHHwG2zZwgldg1Y", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill ohio cvs", "abortion pill cost cvs", "abortion pill ohio price", "abortion pill ohio online", "abortion pill cvs walgreens"], "self_loops": [0], "tags": {"i": "abortion pill ohio cvs", "q": "lbthenEbpJIVTHHwG2zZwgldg1Y", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill ohio online", "datetime": "2026-03-12 19:45:12.387338", "source": "google", "data": ["abortion pill ohio online", [["abortion pill ohio online", 0, [512]], ["abortion pill near me online", 0, [512, 390, 650]], ["abortion pill ohio price", 0, [512, 546]]], {"i": "abortion pill ohio online", "q": "IRKRxthbcKMTWs-tAgOXNzCDTmo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill ohio online", "abortion pill near me online", "abortion pill ohio price"], "self_loops": [0], "tags": {"i": "abortion pill ohio online", "q": "IRKRxthbcKMTWs-tAgOXNzCDTmo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill ohio free", "datetime": "2026-03-12 19:45:13.671710", "source": "google", "data": ["abortion pill ohio free", [["abortion pill ohio free", 0, [22, 30]], ["free abortion pill columbus ohio", 0, [22, 30]], ["abortion pill ohio online", 0, [512, 546]], ["abortion pill ohio price", 0, [512, 546]]], {"i": "abortion pill ohio free", "q": "hpzNp1RhHFJZmOxQKcNaQ2LNPxE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill ohio free", "free abortion pill columbus ohio", "abortion pill ohio online", "abortion pill ohio price"], "self_loops": [0], "tags": {"i": "abortion pill ohio free", "q": "hpzNp1RhHFJZmOxQKcNaQ2LNPxE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill ohio name", "datetime": "2026-03-12 19:45:14.960636", "source": "google", "data": ["abortion pill ohio name", [["abortion pill ohio name", 0, [22, 30]], ["is abortion legal in ohio", 0, [512, 390, 650]], ["abortion pill ohio online", 0, [512, 546]], ["abortion pill ohio price", 0, [512, 546]], ["abortion pill ohio", 0, [512, 546]]], {"i": "abortion pill ohio name", "q": "Wf09Yb4FNoKZArnks8YNX5OHZUA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill ohio name", "is abortion legal in ohio", "abortion pill ohio online", "abortion pill ohio price", "abortion pill ohio"], "self_loops": [0], "tags": {"i": "abortion pill ohio name", "q": "Wf09Yb4FNoKZArnks8YNX5OHZUA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill ohio reddit", "datetime": "2026-03-12 19:45:16.028319", "source": "google", "data": ["abortion pill ohio reddit", [["abortion pill ohio reddit", 0, [22, 30]], ["are abortions banned in ohio", 0, [512, 390, 650]], ["abortion pill ohio price", 0, [512, 546]], ["abortion pill ohio online", 0, [512, 546]], ["abortion pill ohio", 0, [512, 546]]], {"i": "abortion pill ohio reddit", "q": "6Lb-hinDLwcqz_ZCt-BMX5Qay_Y", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill ohio reddit", "are abortions banned in ohio", "abortion pill ohio price", "abortion pill ohio online", "abortion pill ohio"], "self_loops": [0], "tags": {"i": "abortion pill ohio reddit", "q": "6Lb-hinDLwcqz_ZCt-BMX5Qay_Y", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill ohio side effects", "datetime": "2026-03-12 19:45:16.951239", "source": "google", "data": ["abortion pill ohio side effects", [["abortion pill ohio side effects", 0, [22, 30]], ["abortion rights in ohio", 0, [512, 390, 650]], ["is the abortion pill illegal in ohio", 0, [751]], ["abortion pill side effects reviews", 0, [751]], ["abortion pill ohio price", 0, [512, 546]], ["abortion pill side effects after", 0, [546, 649]]], {"i": "abortion pill ohio side effects", "q": "pvSbzaj9gK4cnQQv4PdcEUTcqZw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill ohio side effects", "abortion rights in ohio", "is the abortion pill illegal in ohio", "abortion pill side effects reviews", "abortion pill ohio price", "abortion pill side effects after"], "self_loops": [0], "tags": {"i": "abortion pill ohio side effects", "q": "pvSbzaj9gK4cnQQv4PdcEUTcqZw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic ohio", "datetime": "2026-03-12 19:45:18.034229", "source": "google", "data": ["abortion clinic ohio", [["abortion clinic ohio", 0, [512]], ["abortion clinic ohio near me", 0, [512]], ["abortion clinic ohio cincinnati", 0, [512]], ["abortion clinic ohio columbus", 0, [22, 30]], ["abortion services ohio", 0, [22, 30]], ["women's clinic ohio", 0, [22, 10, 30]], ["abortion clinic oh", 0, [22, 30]], ["abortion clinic dayton ohio", 0, [22, 30]], ["abortion clinic akron ohio", 0, [22, 30]], ["abortion clinic toledo ohio", 0, [22, 30]]], {"i": "abortion clinic ohio", "q": "OPm-QLzuJ2LE_gH7JD77636sB3M", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic ohio", "abortion clinic ohio near me", "abortion clinic ohio cincinnati", "abortion clinic ohio columbus", "abortion services ohio", "women's clinic ohio", "abortion clinic oh", "abortion clinic dayton ohio", "abortion clinic akron ohio", "abortion clinic toledo ohio"], "self_loops": [0], "tags": {"i": "abortion clinic ohio", "q": "OPm-QLzuJ2LE_gH7JD77636sB3M", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill ohio", "datetime": "2026-03-12 19:45:19.185909", "source": "google", "data": ["morning after pill ohio", [["morning after pill ohio", 0, [512]], ["is the morning after pill legal in ohio", 0, [22, 30]], ["is the morning after pill available in ohio", 0, [22, 30]], ["morning after pill otc", 0, [512, 546]], ["morning after pill on amazon", 0, [512, 546]]], {"i": "morning after pill ohio", "q": "zR6H9T9zmXw7uPM9y1N4n3ErUcc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill ohio", "is the morning after pill legal in ohio", "is the morning after pill available in ohio", "morning after pill otc", "morning after pill on amazon"], "self_loops": [0], "tags": {"i": "morning after pill ohio", "q": "zR6H9T9zmXw7uPM9y1N4n3ErUcc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion pill available in ohio", "datetime": "2026-03-12 19:45:20.218678", "source": "google", "data": ["is abortion pill available in ohio", [["is abortion pill available in ohio", 0, [22, 30]], ["is the morning after pill available in ohio", 0, [22, 30]], ["is abortion pill legal in ohio", 0, [22, 30]], ["is abortion pills illegal in ohio", 0, [22, 30]], ["is abortion legal in ohio", 0, [512, 390, 650]], ["ohio abortion pill laws", 0, [751]]], {"i": "is abortion pill available in ohio", "q": "e_bUGjhJgJBMpnS_cP5dyuCdI6w", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion pill available in ohio", "is the morning after pill available in ohio", "is abortion pill legal in ohio", "is abortion pills illegal in ohio", "is abortion legal in ohio", "ohio abortion pill laws"], "self_loops": [0], "tags": {"i": "is abortion pill available in ohio", "q": "e_bUGjhJgJBMpnS_cP5dyuCdI6w", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are abortion pills illegal in ohio", "datetime": "2026-03-12 19:45:21.131561", "source": "google", "data": ["are abortion pills illegal in ohio", [["are abortion pills illegal in ohio", 0, [22, 30]], ["are abortion pills legal in ohio", 0, [22, 30]], ["is medication abortion legal in ohio", 0, [22, 30]], ["is abortion legal in ohio", 0, [512, 390, 650]], ["are abortions banned in ohio", 0, [512, 390, 650]], ["are abortions illegal in ohio 2022", 0, [751]], ["are abortions illegal in ohio now", 0, [751]], ["is abortion illegal in ohio 2021", 0, [751]]], {"i": "are abortion pills illegal in ohio", "q": "p4A1QSNw-hEim1-AoCIymbQJq78", "t": {"bpc": false, "tlw": false}}], "suggests": ["are abortion pills illegal in ohio", "are abortion pills legal in ohio", "is medication abortion legal in ohio", "is abortion legal in ohio", "are abortions banned in ohio", "are abortions illegal in ohio 2022", "are abortions illegal in ohio now", "is abortion illegal in ohio 2021"], "self_loops": [0], "tags": {"i": "are abortion pills illegal in ohio", "q": "p4A1QSNw-hEim1-AoCIymbQJq78", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is medication abortion legal in ohio", "datetime": "2026-03-12 19:45:22.466144", "source": "google", "data": ["is medication abortion legal in ohio", [["is medication abortion legal in ohio", 0, [22, 30]], ["is pill abortion legal in ohio", 0, [22, 30]], ["is abortion pills illegal in ohio", 0, [22, 30]], ["is abortion legal in ohio", 0, [512, 390, 650]], ["are abortions banned in ohio", 0, [512, 390, 650]], ["abortion rights in ohio", 0, [512, 390, 650]], ["is medication abortion legal in all states", 0, [751]], ["is medication abortion still legal", 0, [751]]], {"i": "is medication abortion legal in ohio", "q": "NE9g35GRJBZ9kUdmf90eOcNreZA", "t": {"bpc": false, "tlw": false}}], "suggests": ["is medication abortion legal in ohio", "is pill abortion legal in ohio", "is abortion pills illegal in ohio", "is abortion legal in ohio", "are abortions banned in ohio", "abortion rights in ohio", "is medication abortion legal in all states", "is medication abortion still legal"], "self_loops": [0], "tags": {"i": "is medication abortion legal in ohio", "q": "NE9g35GRJBZ9kUdmf90eOcNreZA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is the morning after pill legal in ohio", "datetime": "2026-03-12 19:45:23.287071", "source": "google", "data": ["is the morning after pill legal in ohio", [["is the morning after pill legal in ohio", 0, [22, 30]], ["is the morning after pill available in ohio", 0, [22, 30]], ["is the morning after pill legal in all states", 0, [512, 390, 650]], ["is the morning after pill legal in texas", 0, [512, 390, 650]], ["is plan b banned in any states", 0, [512, 390, 650]], ["is the morning after pill illegal in ohio", 0, [751]], ["is the morning after pill still available in ohio", 0, [751]], ["is the morning after pill legal in all 50 states", 0, [751]]], {"i": "is the morning after pill legal in ohio", "q": "VSavlei_mw3c4O55QoHy-58afzI", "t": {"bpc": false, "tlw": false}}], "suggests": ["is the morning after pill legal in ohio", "is the morning after pill available in ohio", "is the morning after pill legal in all states", "is the morning after pill legal in texas", "is plan b banned in any states", "is the morning after pill illegal in ohio", "is the morning after pill still available in ohio", "is the morning after pill legal in all 50 states"], "self_loops": [0], "tags": {"i": "is the morning after pill legal in ohio", "q": "VSavlei_mw3c4O55QoHy-58afzI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion rights in ohio", "datetime": "2026-03-12 19:45:24.521061", "source": "google", "data": ["abortion rights in ohio", [["abortion rights in ohio", 0, [512]], ["abortion rights in ohio 2025", 0, [22, 30]], ["abortion laws in ohio", 0, [22, 30]], ["abortion laws in ohio 2025", 0, [22, 30]], ["abortion legal in ohio", 0, [22, 30]], ["abortion rules in ohio", 0, [22, 30]], ["abortion illegal in ohio", 0, [22, 30]], ["ohio women's rights", 0, [22, 10, 30]], ["reproductive rights in ohio", 0, [22, 30]], ["abortion laws in ohio how many weeks", 0, [22, 30]]], {"i": "abortion rights in ohio", "q": "ilzd23evMPGilQE4EOlkwQJhGfo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion rights in ohio", "abortion rights in ohio 2025", "abortion laws in ohio", "abortion laws in ohio 2025", "abortion legal in ohio", "abortion rules in ohio", "abortion illegal in ohio", "ohio women's rights", "reproductive rights in ohio", "abortion laws in ohio how many weeks"], "self_loops": [0], "tags": {"i": "abortion rights in ohio", "q": "ilzd23evMPGilQE4EOlkwQJhGfo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in ohio", "datetime": "2026-03-12 19:45:25.783076", "source": "google", "data": ["abortion laws in ohio", [["abortion laws in ohio", 0, [512]], ["abortion laws in ohio 2025", 0, [512]], ["abortion laws in ohio 2026", 0, [512]], ["abortion laws in ohio how many weeks", 0, [512]], ["abortion laws in ohio 2024", 0, [22, 30]], ["abortion laws in ohio right now", 0, [22, 30]], ["abortion laws in ohio for minors", 0, [22, 30]], ["abortion legal in ohio", 0, [22, 30]], ["abortion illegal in ohio", 0, [22, 30]], ["abortion limits in ohio", 0, [22, 30]]], {"i": "abortion laws in ohio", "q": "06FlFGlpQsmjQnVInvHtXCdh91Q", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion laws in ohio", "abortion laws in ohio 2025", "abortion laws in ohio 2026", "abortion laws in ohio how many weeks", "abortion laws in ohio 2024", "abortion laws in ohio right now", "abortion laws in ohio for minors", "abortion legal in ohio", "abortion illegal in ohio", "abortion limits in ohio"], "self_loops": [0], "tags": {"i": "abortion laws in ohio", "q": "06FlFGlpQsmjQnVInvHtXCdh91Q", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion legal in ohio", "datetime": "2026-03-12 19:45:26.954842", "source": "google", "data": ["is abortion legal in ohio", [["is abortion legal in ohio", 0, [512]], ["is abortion legal in ohio 2025", 0, [512]], ["is abortion legal in ohio 2026", 0, [512]], ["is abortion legal in ohio 2024", 0, [512]], ["is abortion legal in ohio now", 0, [512]], ["is abortion legal in ohio 2025 exceptions", 0, [22, 30]], ["is abortion legal in ohio 2024 update", 0, [22, 30]], ["is abortion legal in ohio 2023", 0, [22, 30]], ["is abortion legal in ohio still", 0, [22, 30]], ["is abortion legal in ohio 2022", 0, [22, 30]]], {"i": "is abortion legal in ohio", "q": "ZqjxrlbdAXMpjo6VrJR8xHezcFo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion legal in ohio", "is abortion legal in ohio 2025", "is abortion legal in ohio 2026", "is abortion legal in ohio 2024", "is abortion legal in ohio now", "is abortion legal in ohio 2025 exceptions", "is abortion legal in ohio 2024 update", "is abortion legal in ohio 2023", "is abortion legal in ohio still", "is abortion legal in ohio 2022"], "self_loops": [0], "tags": {"i": "is abortion legal in ohio", "q": "ZqjxrlbdAXMpjo6VrJR8xHezcFo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in ohio 2020", "datetime": "2026-03-12 19:45:28.372756", "source": "google", "data": ["abortion laws in ohio 2020", [["abortion laws in ohio 2020-2024", 33, [160], {"a": "abortion laws in ohio ", "b": "2020-2024"}], ["abortion laws in ohio 2020 to present", 33, [160], {"a": "abortion laws in ohio ", "b": "2020 to present"}], ["abortion laws in ohio 2020-2023", 33, [160], {"a": "abortion laws in ohio ", "b": "2020-2023"}], ["abortion laws in ohio 2020", 33, [671], {"a": "abortion laws in ohio ", "b": "2020"}]], {"i": "abortion laws in ohio 2020", "q": "aUgFOuiFiBDAAL-08u2sj55B2KQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in ohio 2020-2024", "abortion laws in ohio 2020 to present", "abortion laws in ohio 2020-2023", "abortion laws in ohio 2020"], "self_loops": [3], "tags": {"i": "abortion laws in ohio 2020", "q": "aUgFOuiFiBDAAL-08u2sj55B2KQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in ohio 2021", "datetime": "2026-03-12 19:45:29.531933", "source": "google", "data": ["abortion laws in ohio 2021", [["abortion laws in ohio 2021 abortion laws", 33, [160], {"a": "abortion laws in ohio ", "b": "2021 abortion laws"}], ["abortion laws in ohio 2021-2024", 33, [160], {"a": "abortion laws in ohio ", "b": "2021-2024"}], ["abortion laws in ohio 2021 abortion", 33, [160], {"a": "abortion laws in ohio ", "b": "2021 abortion"}], ["abortion laws in ohio 2021", 33, [671], {"a": "abortion laws in ohio ", "b": "2021"}]], {"i": "abortion laws in ohio 2021", "q": "k8iCIJQ9W3PbtNDE66ImVgeQHNs", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in ohio 2021 abortion laws", "abortion laws in ohio 2021-2024", "abortion laws in ohio 2021 abortion", "abortion laws in ohio 2021"], "self_loops": [3], "tags": {"i": "abortion laws in ohio 2021", "q": "k8iCIJQ9W3PbtNDE66ImVgeQHNs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill in arizona", "datetime": "2026-03-12 19:45:30.386357", "source": "google", "data": ["abortion pill in arizona", [["abortion pill in arizona", 0, [512]], ["abortion clinics in arizona", 0, [22, 30]], ["abortion options in arizona", 0, [22, 30]], ["abortion pill legal in arizona", 0, [22, 30]], ["abortion pill law in arizona", 0, [22, 30]], ["abortion pill in phoenix", 0, [22, 30]], ["abortion pill arizona free", 0, [22, 30]], ["abortion pill phoenix arizona", 0, [22, 30]], ["abortion pill tucson arizona", 0, [22, 30]], ["abortion clinics in phoenix arizona", 0, [22, 30]]], {"i": "abortion pill in arizona", "q": "E7apum8Go6-MCmQGBY2VolZGSB0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill in arizona", "abortion clinics in arizona", "abortion options in arizona", "abortion pill legal in arizona", "abortion pill law in arizona", "abortion pill in phoenix", "abortion pill arizona free", "abortion pill phoenix arizona", "abortion pill tucson arizona", "abortion clinics in phoenix arizona"], "self_loops": [0], "tags": {"i": "abortion pill in arizona", "q": "E7apum8Go6-MCmQGBY2VolZGSB0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill online purchase", "datetime": "2026-03-12 19:45:31.531423", "source": "google", "data": ["abortion pill online purchase", [["abortion pill online purchase", 0, [512]], ["morning after pill online purchase", 0, [22, 30]], ["abortion pill buy online canada", 0, [22, 30]], ["morning after pill order online free", 0, [22, 30]], ["morning after pill buy online uk", 0, [22, 30]], ["morning after pill buy online australia", 0, [22, 30]], ["morning after pill order online boots", 0, [22, 30]]], {"i": "abortion pill online purchase", "q": "1ubwncmTPMRvTN5RodR_gFRXGc8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill online purchase", "morning after pill online purchase", "abortion pill buy online canada", "morning after pill order online free", "morning after pill buy online uk", "morning after pill buy online australia", "morning after pill order online boots"], "self_loops": [0], "tags": {"i": "abortion pill online purchase", "q": "1ubwncmTPMRvTN5RodR_gFRXGc8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill online purchase", "datetime": "2026-03-12 19:45:32.418096", "source": "google", "data": ["morning after pill online purchase", [["morning after pill online purchase", 0, [22, 30]], ["morning after pill order online free", 0, [22, 30]], ["morning after pill buy online uk", 0, [22, 30]], ["morning after pill buy online australia", 0, [22, 30]], ["morning after pill order online boots", 0, [22, 30]], ["morning after pill ireland order online", 0, [22, 30]], ["morning after pill on amazon", 0, [512, 546]], ["morning after pill otc walgreens", 0, [546, 649]], ["morning after pill otc", 0, [512, 546]]], {"i": "morning after pill online purchase", "q": "CZxTkFYXYxHy0nE_gr5PKfK0eZ0", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill online purchase", "morning after pill order online free", "morning after pill buy online uk", "morning after pill buy online australia", "morning after pill order online boots", "morning after pill ireland order online", "morning after pill on amazon", "morning after pill otc walgreens", "morning after pill otc"], "self_loops": [0], "tags": {"i": "morning after pill online purchase", "q": "CZxTkFYXYxHy0nE_gr5PKfK0eZ0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill online buy", "datetime": "2026-03-12 19:45:33.363011", "source": "google", "data": ["morning after pill online buy", [["morning after pill online buy", 0, [22, 30]], ["morning after pill buy online uk", 0, [22, 30]], ["morning after pill buy online australia", 0, [22, 30]], ["buy morning after pill online south africa", 0, [22, 30]], ["can i buy morning after pill online at clicks", 0, [22, 30]], ["can i buy morning after pill online at dischem", 0, [22, 30]], ["can i buy morning after pill online at clicks south africa", 0, [22, 30]], ["can i buy morning-after pill online at clicks price", 0, [22, 10, 30]], ["how much do morning after pill cost at clicks", 0, [512, 390, 650]], ["morning after pill on amazon", 0, [512, 546]]], {"i": "morning after pill online buy", "q": "pLKGAFMBkyQGhLFFkrCtG1oy9Ac", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill online buy", "morning after pill buy online uk", "morning after pill buy online australia", "buy morning after pill online south africa", "can i buy morning after pill online at clicks", "can i buy morning after pill online at dischem", "can i buy morning after pill online at clicks south africa", "can i buy morning-after pill online at clicks price", "how much do morning after pill cost at clicks", "morning after pill on amazon"], "self_loops": [0], "tags": {"i": "morning after pill online buy", "q": "pLKGAFMBkyQGhLFFkrCtG1oy9Ac", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill buy online uk", "datetime": "2026-03-12 19:45:34.578458", "source": "google", "data": ["morning after pill buy online uk", [["morning after pill buy online uk", 0, [22, 30]], ["morning after pill free online uk", 0, [22, 30]], ["morning after pill to buy online", 0, [512, 546]]], {"i": "morning after pill buy online uk", "q": "cPOqjhEk3R51TEquqLX2auU6Z-4", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill buy online uk", "morning after pill free online uk", "morning after pill to buy online"], "self_loops": [0], "tags": {"i": "morning after pill buy online uk", "q": "cPOqjhEk3R51TEquqLX2auU6Z-4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill buy online australia", "datetime": "2026-03-12 19:45:35.786330", "source": "google", "data": ["morning after pill buy online australia", [["morning after pill buy online australia", 0, [22, 30]], ["can you buy morning after pill from pharmacy", 0, [512, 390, 650]], ["can i get morning after pill online", 0, [512, 390, 650]], ["where to buy morning after pill over the counter", 0, [751]], ["where to buy morning after pill australia", 0, [512, 546]], ["morning after pill where to buy it", 0, [751]]], {"i": "morning after pill buy online australia", "q": "YVwwIgeYYMu4mFvBpzQ3aD8m5T0", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill buy online australia", "can you buy morning after pill from pharmacy", "can i get morning after pill online", "where to buy morning after pill over the counter", "where to buy morning after pill australia", "morning after pill where to buy it"], "self_loops": [0], "tags": {"i": "morning after pill buy online australia", "q": "YVwwIgeYYMu4mFvBpzQ3aD8m5T0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "which pharmacies do free morning after pill", "datetime": "2026-03-12 19:45:37.094725", "source": "google", "data": ["which pharmacies do free morning after pill", [["which pharmacies do free morning after pill", 0, [512]], ["does well pharmacy do free morning after pill", 0, [22, 30]], ["does tesco pharmacy do free morning after pill", 0, [22, 30]], ["does asda pharmacy do free morning after pill", 0, [22, 30]], ["do boots pharmacy do free morning after pill", 0, [22, 30]], ["do pharmacies give free morning after pill", 0, [512, 390, 650]], ["does boots give morning after pill free", 0, [512, 390, 650]], ["which pharmacies offer free morning after pills", 0, [751]]], {"i": "which pharmacies do free morning after pill", "q": "BxgjRBxsAIZH-NgFaQjp5QXK4W8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["which pharmacies do free morning after pill", "does well pharmacy do free morning after pill", "does tesco pharmacy do free morning after pill", "does asda pharmacy do free morning after pill", "do boots pharmacy do free morning after pill", "do pharmacies give free morning after pill", "does boots give morning after pill free", "which pharmacies offer free morning after pills"], "self_loops": [0], "tags": {"i": "which pharmacies do free morning after pill", "q": "BxgjRBxsAIZH-NgFaQjp5QXK4W8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill cheap near me", "datetime": "2026-03-12 19:45:37.958157", "source": "google", "data": ["morning after pill cheap near me", [["morning after pill cheap near me", 0, [512]], ["morning after pill near me", 0, [22, 30]], ["morning after pill near me free", 0, [22, 30]], ["morning after pill near me pharmacy", 0, [22, 30]], ["morning after pill near me delivery", 0, [22, 30]], ["day after pill near me", 0, [22, 30]], ["morning after pill chemist near me", 0, [22, 30]], ["plan b pill cheap near me", 0, [22, 30]], ["morning after pill buy near me", 0, [22, 30]], ["morning after pill ella near me", 0, [22, 30]]], {"i": "morning after pill cheap near me", "q": "rDPa8t8MnPtB2WfnXUNceTM-wMM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill cheap near me", "morning after pill near me", "morning after pill near me free", "morning after pill near me pharmacy", "morning after pill near me delivery", "day after pill near me", "morning after pill chemist near me", "plan b pill cheap near me", "morning after pill buy near me", "morning after pill ella near me"], "self_loops": [0], "tags": {"i": "morning after pill cheap near me", "q": "rDPa8t8MnPtB2WfnXUNceTM-wMM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "cheap morning after pill walgreens", "datetime": "2026-03-12 19:45:39.206573", "source": "google", "data": ["cheap morning after pill walgreens", [["cheap morning after pill walgreens", 0, [22, 30]], ["morning after pill walgreens", 0, [22, 30]], ["morning after pill walgreens near me", 0, [22, 30]], ["morning after pill walgreens coupon", 0, [22, 30]], ["does walgreens sell morning after pill", 0, [512, 390, 650]], ["how much is plan b at walgreens", 0, [512, 390, 650]], ["how much is generic plan b at walgreens", 0, [512, 390, 650]], ["cheap morning after pill cvs", 0, [751]], ["cheap morning after pill near me", 0, [512, 546]], ["cheapest morning after pill near me", 0, [512, 546]]], {"i": "cheap morning after pill walgreens", "q": "b4-Wp22_XV02xyiwkAE0qqiQQys", "t": {"bpc": false, "tlw": false}}], "suggests": ["cheap morning after pill walgreens", "morning after pill walgreens", "morning after pill walgreens near me", "morning after pill walgreens coupon", "does walgreens sell morning after pill", "how much is plan b at walgreens", "how much is generic plan b at walgreens", "cheap morning after pill cvs", "cheap morning after pill near me", "cheapest morning after pill near me"], "self_loops": [0], "tags": {"i": "cheap morning after pill walgreens", "q": "b4-Wp22_XV02xyiwkAE0qqiQQys", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "cheap morning after pill cvs", "datetime": "2026-03-12 19:45:40.635328", "source": "google", "data": ["cheap morning after pill cvs", [["cheap morning after pill cvs", 0, [22, 30]], ["cheapest morning after pill cvs", 0, [22, 30]], ["cost of morning after pill cvs", 0, [22, 30]], ["morning after pill cvs", 0, [22, 30]], ["morning after pill cvs near me", 0, [22, 30]], ["morning after pill cvs pharmacy", 0, [22, 30]], ["morning after pill cvs generic", 0, [22, 30]], ["morning after pill cvs over the counter", 0, [22, 30]], ["morning after pill cvs nearby", 0, [22, 30]], ["morning after pill cvs side effects", 0, [22, 30]]], {"i": "cheap morning after pill cvs", "q": "bYnHp9Z1fyz3YyrJtUTL00ds0O8", "t": {"bpc": false, "tlw": false}}], "suggests": ["cheap morning after pill cvs", "cheapest morning after pill cvs", "cost of morning after pill cvs", "morning after pill cvs", "morning after pill cvs near me", "morning after pill cvs pharmacy", "morning after pill cvs generic", "morning after pill cvs over the counter", "morning after pill cvs nearby", "morning after pill cvs side effects"], "self_loops": [0], "tags": {"i": "cheap morning after pill cvs", "q": "bYnHp9Z1fyz3YyrJtUTL00ds0O8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic in san jose ca", "datetime": "2026-03-12 19:45:41.471627", "source": "google", "data": ["abortion clinic in san jose ca", [["abortion clinics in san jose ca", 0, [22, 30]], ["abortion clinics in san francisco", 0, [512, 390, 650]], ["abortion clinic near me surgical", 0, [512, 390, 650]], ["abortion clinic in san jose", 0, [546, 649]], ["abortion clinic san jose california", 0, [751]]], {"i": "abortion clinic in san jose ca", "q": "4DtB5NQU_si5aT7yK0qN1QYH9_8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics in san jose ca", "abortion clinics in san francisco", "abortion clinic near me surgical", "abortion clinic in san jose", "abortion clinic san jose california"], "self_loops": [], "tags": {"i": "abortion clinic in san jose ca", "q": "4DtB5NQU_si5aT7yK0qN1QYH9_8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health center san jose", "datetime": "2026-03-12 19:45:42.435897", "source": "google", "data": ["women's health center san jose", [["women's health center san jose", 0, [22, 30]], ["women's health center st joseph", 0, [22, 30]], ["women's health clinic san jose", 0, [22, 30]], ["women's health clinic st joseph mo", 0, [22, 30]], ["women's health clinic st joseph", 0, [22, 30]], ["women's health care st joseph", 0, [22, 30]], ["women's health center st joseph hospital", 0, [22, 30]], ["women's health clinic st joseph's saint john", 0, [22, 30]], ["women's health clinic st joseph's hospital hamilton", 0, [22, 30]], ["women's health center of silicon valley san jose", 0, [22, 30]]], {"q": "DAoNyFzXkr1hUWMZ28-A7unbmQ8", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health center san jose", "women's health center st joseph", "women's health clinic san jose", "women's health clinic st joseph mo", "women's health clinic st joseph", "women's health care st joseph", "women's health center st joseph hospital", "women's health clinic st joseph's saint john", "women's health clinic st joseph's hospital hamilton", "women's health center of silicon valley san jose"], "self_loops": [0], "tags": {"q": "DAoNyFzXkr1hUWMZ28-A7unbmQ8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic st joseph's hospital hamilton", "datetime": "2026-03-12 19:45:43.554494", "source": "google", "data": ["women's health clinic st joseph's hospital hamilton", [["women's health clinic st joseph's hospital hamilton", 0, [512]], ["women's health concerns clinic st joseph's healthcare hamilton", 0, [22, 30]], ["women's health clinic st joseph mo", 0, [512, 546]], ["women's health st joseph hospital", 0, [512, 546]], ["st joseph's women's health clinic", 0, [512, 546]], ["st joseph's hospital women's health centre", 0, [512, 546]], ["women's hospital st joseph east", 0, [751]]], {"i": "women's health clinic st joseph's hospital hamilton", "q": "MFRiIf2cw5fUCtg0d7vJMVG8IwE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's health clinic st joseph's hospital hamilton", "women's health concerns clinic st joseph's healthcare hamilton", "women's health clinic st joseph mo", "women's health st joseph hospital", "st joseph's women's health clinic", "st joseph's hospital women's health centre", "women's hospital st joseph east"], "self_loops": [0], "tags": {"i": "women's health clinic st joseph's hospital hamilton", "q": "MFRiIf2cw5fUCtg0d7vJMVG8IwE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic st joseph mo", "datetime": "2026-03-12 19:45:44.570506", "source": "google", "data": ["women's health clinic st joseph mo", [["women's health clinic st joseph mo", 0, [512]], ["women's health st joseph missouri", 0, [512, 546]], ["women's health st joseph hospital", 0, [512, 546]], ["women's health st joseph mo", 0, [512, 546]]], {"i": "women's health clinic st joseph mo", "q": "N91u50au9My6smk3kVCWOuSds8o", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's health clinic st joseph mo", "women's health st joseph missouri", "women's health st joseph hospital", "women's health st joseph mo"], "self_loops": [0], "tags": {"i": "women's health clinic st joseph mo", "q": "N91u50au9My6smk3kVCWOuSds8o", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic st joseph", "datetime": "2026-03-12 19:45:46.021164", "source": "google", "data": ["women's health clinic st joseph", [["women's health clinic st joseph mo", 0, [512]], ["women's health clinic st joseph's hospital hamilton", 0, [512]], ["women's health clinic st joseph", 0, [22, 30]], ["women's health center st joseph", 0, [22, 30]], ["women's health care st joseph", 0, [22, 30]], ["women's health clinic saint joe's", 0, [22, 30]], ["women's health clinic st joseph's saint john", 0, [22, 30]], ["women's health concerns clinic st joseph", 0, [22, 30]], ["women's health center st joseph hospital", 0, [22, 30]], ["south shore women's health care st joseph mi", 0, [22, 30]]], {"i": "women's health clinic st joseph", "q": "9DFnBzYRYI65ZU6rve1IgZ3fwEM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's health clinic st joseph mo", "women's health clinic st joseph's hospital hamilton", "women's health clinic st joseph", "women's health center st joseph", "women's health care st joseph", "women's health clinic saint joe's", "women's health clinic st joseph's saint john", "women's health concerns clinic st joseph", "women's health center st joseph hospital", "south shore women's health care st joseph mi"], "self_loops": [2], "tags": {"i": "women's health clinic st joseph", "q": "9DFnBzYRYI65ZU6rve1IgZ3fwEM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's outpatient clinic st joseph", "datetime": "2026-03-12 19:45:46.874846", "source": "google", "data": ["women's outpatient clinic st joseph", [["women's outpatient clinic st joseph", 0, [22, 30]], ["women outpatient center st joseph", 0, [22, 30]], ["women's outpatient center st joe's", 0, [546, 649]], ["women's outpatient st joseph", 0, [751]], ["women's clinic st joseph", 0, [512, 546]]], {"i": "women's outpatient clinic st joseph", "q": "URyOIlXX1Xdbw-dXFbnbZNV2nWk", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's outpatient clinic st joseph", "women outpatient center st joseph", "women's outpatient center st joe's", "women's outpatient st joseph", "women's clinic st joseph"], "self_loops": [0], "tags": {"i": "women's outpatient clinic st joseph", "q": "URyOIlXX1Xdbw-dXFbnbZNV2nWk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "st joseph women's clinic tacoma", "datetime": "2026-03-12 19:45:47.794524", "source": "google", "data": ["st joseph women's clinic tacoma", [["st joseph women's clinic tacoma", 0, [512]], ["st joseph hospital tacoma women's clinic", 0, [22, 30]], ["st joseph women's health tacoma", 0, [751]], ["st joseph women's clinic", 0, [512, 546]], ["st joseph hospital tacoma obgyn", 0, [546, 649]]], {"i": "st joseph women's clinic tacoma", "q": "SpHRLc5cHkzQWf4157jVXj6Afxg", "t": {"bpc": false, "tlw": false}}], "suggests": ["st joseph women's clinic tacoma", "st joseph hospital tacoma women's clinic", "st joseph women's health tacoma", "st joseph women's clinic", "st joseph hospital tacoma obgyn"], "self_loops": [0], "tags": {"i": "st joseph women's clinic tacoma", "q": "SpHRLc5cHkzQWf4157jVXj6Afxg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "st joseph women's clinic reading pa", "datetime": "2026-03-12 19:45:48.722780", "source": "google", "data": ["st joseph women's clinic reading pa", [["st joseph women's clinic reading pa", 0, [22, 30]], ["st joseph clinic in reading pa", 0, [751]], ["st joseph women's clinic", 0, [512, 546]], ["st joseph hospital reading pa ob gyn", 0, [751]]], {"i": "st joseph women's clinic reading pa", "q": "MTr0HYsmwaYwJ7S942XcZmvHVfo", "t": {"bpc": false, "tlw": false}}], "suggests": ["st joseph women's clinic reading pa", "st joseph clinic in reading pa", "st joseph women's clinic", "st joseph hospital reading pa ob gyn"], "self_loops": [0], "tags": {"i": "st joseph women's clinic reading pa", "q": "MTr0HYsmwaYwJ7S942XcZmvHVfo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "st joseph women's clinic lexington ky", "datetime": "2026-03-12 19:45:49.571918", "source": "google", "data": ["st joseph women's clinic lexington ky", [["st joseph women's clinic lexington ky", 0, [22, 30]], ["st joseph women's hospital lexington ky", 0, [22, 30]], ["chi st joseph women's hospital lexington ky", 0, [22, 30]], ["saint joseph east women's hospital lexington ky", 0, [22, 30]], ["st joseph women's center lexington ky", 0, [751]], ["st joseph women's health lexington ky", 0, [512, 546]], ["st joseph hospital lexington ky women's center", 0, [751]], ["st. joseph women's lexington ky", 0, [751]]], {"i": "st joseph women's clinic lexington ky", "q": "l7Yh_g99uQQlIlRg9WA15Oes30Q", "t": {"bpc": false, "tlw": false}}], "suggests": ["st joseph women's clinic lexington ky", "st joseph women's hospital lexington ky", "chi st joseph women's hospital lexington ky", "saint joseph east women's hospital lexington ky", "st joseph women's center lexington ky", "st joseph women's health lexington ky", "st joseph hospital lexington ky women's center", "st. joseph women's lexington ky"], "self_loops": [0], "tags": {"i": "st joseph women's clinic lexington ky", "q": "l7Yh_g99uQQlIlRg9WA15Oes30Q", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "saint joseph women's hospital", "datetime": "2026-03-12 19:45:50.868644", "source": "google", "data": ["saint joseph women's hospital", [["saint joseph women's hospital", 0, [512]], ["saint joseph women's hospital tampa", 0, [512]], ["saint joseph women's hospital lexington ky", 0, [512]], ["st joseph's women's hospital tampa fl", 0, [22, 10, 30]], ["st joseph's women's hospital reviews", 0, [22, 30]], ["st joseph's women's hospital photos", 0, [22, 30]], ["st joseph's women's hospital labor and delivery", 0, [22, 30]], ["st joseph's women's hospital visiting hours", 0, [22, 30]], ["st joseph's women's hospital careers", 0, [22, 30]], ["st joseph's women's hospital tour", 0, [22, 10, 30]]], {"i": "saint joseph women's hospital", "q": "tNmHZsh5uMUezS-07vRwQbmkeso", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["saint joseph women's hospital", "saint joseph women's hospital tampa", "saint joseph women's hospital lexington ky", "st joseph's women's hospital tampa fl", "st joseph's women's hospital reviews", "st joseph's women's hospital photos", "st joseph's women's hospital labor and delivery", "st joseph's women's hospital visiting hours", "st joseph's women's hospital careers", "st joseph's women's hospital tour"], "self_loops": [0], "tags": {"i": "saint joseph women's hospital", "q": "tNmHZsh5uMUezS-07vRwQbmkeso", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "saint joseph women's hospital tampa", "datetime": "2026-03-12 19:45:52.055592", "source": "google", "data": ["saint joseph women's hospital tampa", [["saint joseph women's hospital tampa", 0, [512]], ["st joseph's women's hospital tampa fl", 0, [22, 10, 30]], ["st joseph's women's hospital tampa labor and delivery", 0, [22, 30]], ["st joseph women's hospital tampa careers", 0, [22, 10, 30]], ["st joseph's women's hospital tampa gift shop", 0, [22, 10, 30]], ["st joseph's women's hospital tampa fl 33607", 0, [22, 10, 30]], ["st joseph's women's hospital tampa nicu", 0, [22, 10, 30]], ["st joseph's women's hospital tampa visiting hours", 0, [22, 10, 30]], ["st joseph's women's hospital breast center tampa fl", 0, [22, 30]], ["hotels near st joseph women's hospital tampa fl", 0, [22, 30]]], {"i": "saint joseph women's hospital tampa", "q": "8TOdwanWkssX7egUybZ4hGwPfc0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["saint joseph women's hospital tampa", "st joseph's women's hospital tampa fl", "st joseph's women's hospital tampa labor and delivery", "st joseph women's hospital tampa careers", "st joseph's women's hospital tampa gift shop", "st joseph's women's hospital tampa fl 33607", "st joseph's women's hospital tampa nicu", "st joseph's women's hospital tampa visiting hours", "st joseph's women's hospital breast center tampa fl", "hotels near st joseph women's hospital tampa fl"], "self_loops": [0], "tags": {"i": "saint joseph women's hospital tampa", "q": "8TOdwanWkssX7egUybZ4hGwPfc0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "saint joseph women's hospital lexington ky", "datetime": "2026-03-12 19:45:53.311450", "source": "google", "data": ["saint joseph women's hospital lexington ky", [["saint joseph women's hospital lexington ky", 0, [512]], ["saint joseph east women's hospital lexington ky", 0, [22, 30]], ["chi st joseph women's hospital lexington ky", 0, [22, 30]], ["chi saint joseph health women's hospital at saint joseph east lexington ky", 0, [22, 30]], ["saint joseph women's health lexington ky", 0, [751]], ["saint joseph hospital lexington ky obgyn", 0, [751]], ["st joseph women's hospital lexington ky", 0, [512, 546]]], {"i": "saint joseph women's hospital lexington ky", "q": "JxafPHXaWamzwDY0k8slWX6RU80", "t": {"bpc": false, "tlw": false}}], "suggests": ["saint joseph women's hospital lexington ky", "saint joseph east women's hospital lexington ky", "chi st joseph women's hospital lexington ky", "chi saint joseph health women's hospital at saint joseph east lexington ky", "saint joseph women's health lexington ky", "saint joseph hospital lexington ky obgyn", "st joseph women's hospital lexington ky"], "self_loops": [0], "tags": {"i": "saint joseph women's hospital lexington ky", "q": "JxafPHXaWamzwDY0k8slWX6RU80", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "saint joseph's women's health center", "datetime": "2026-03-12 19:45:54.384976", "source": "google", "data": ["saint joseph's women's health center", [["saint joseph's women's health center", 0, [512]], ["st joseph women's health center ann arbor", 0, [22, 30]], ["st joseph women's medical center", 0, [22, 30]], ["st joseph women's medical center houston tx", 0, [22, 30]], ["st joseph's women's wellness center", 0, [22, 30]], ["st joseph's women's health clinic", 0, [22, 30]], ["st joseph's women's health centre", 0, [22, 10, 30]], ["st joseph's women & wellness clinic", 0, [22, 30]], ["st joseph mercy hospital women's health center", 0, [22, 30]], ["st joseph's women's health clinic saint john", 0, [22, 30]]], {"i": "saint joseph's women's health center", "q": "tgX_gyBLZdu1Wt36QeHoRqXtdII", "t": {"bpc": false, "tlw": false}}], "suggests": ["saint joseph's women's health center", "st joseph women's health center ann arbor", "st joseph women's medical center", "st joseph women's medical center houston tx", "st joseph's women's wellness center", "st joseph's women's health clinic", "st joseph's women's health centre", "st joseph's women & wellness clinic", "st joseph mercy hospital women's health center", "st joseph's women's health clinic saint john"], "self_loops": [0], "tags": {"i": "saint joseph's women's health center", "q": "tgX_gyBLZdu1Wt36QeHoRqXtdII", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "st joseph's women's hospital tampa fl", "datetime": "2026-03-12 19:45:55.357280", "source": "google", "data": ["st joseph's women's hospital tampa fl", [["st joseph's women's hospital tampa fl", 0, [512]], ["st joseph's women's hospital tampa fl 33607", 0, [22, 30]], ["st joseph's women's hospital breast center tampa fl", 0, [22, 30]], ["hotels near st joseph women's hospital tampa fl", 0, [22, 30]], ["women's care florida in st joseph's women's hospital tampa fl", 0, [22, 30]], ["st joseph's women's hospital in tampa florida", 0, [546, 649]], ["st joseph hospital women's hospital tampa fl", 0, [751]], ["st joseph hospital tampa women's center", 0, [512, 546]]], {"i": "st joseph's women's hospital tampa fl", "q": "B3aw_EEB0vcScJK8BxS7nRzobK8", "t": {"bpc": false, "tlw": false}}], "suggests": ["st joseph's women's hospital tampa fl", "st joseph's women's hospital tampa fl 33607", "st joseph's women's hospital breast center tampa fl", "hotels near st joseph women's hospital tampa fl", "women's care florida in st joseph's women's hospital tampa fl", "st joseph's women's hospital in tampa florida", "st joseph hospital women's hospital tampa fl", "st joseph hospital tampa women's center"], "self_loops": [0], "tags": {"i": "st joseph's women's hospital tampa fl", "q": "B3aw_EEB0vcScJK8BxS7nRzobK8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "st joseph's women's hospital reviews", "datetime": "2026-03-12 19:45:56.613147", "source": "google", "data": ["st joseph's women's hospital reviews", [["st joseph's women's hospital reviews", 0, [512]], ["st joseph east women's hospital reviews", 0, [22, 30]], ["st joseph's women's hospital obstetrics reviews", 0, [22, 30]], ["st joseph's women's hospital maternal fetal medicine tampa reviews", 0, [22, 30]], ["women's care florida st joseph hospital reviews", 0, [22, 30]], ["st joseph's women's hospital neonatal intensive care unit tampa reviews", 0, [22, 30]], ["st joseph hospital orange women's services reviews", 0, [22, 30]], ["st joseph women's health associates reviews", 0, [512, 546]], ["st joseph's hospital women's clinic", 0, [546, 649]], ["st joseph's hospital women's", 0, [751]]], {"i": "st joseph's women's hospital reviews", "q": "b01VDgNfYDl2clPaed1cjPO0vKY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["st joseph's women's hospital reviews", "st joseph east women's hospital reviews", "st joseph's women's hospital obstetrics reviews", "st joseph's women's hospital maternal fetal medicine tampa reviews", "women's care florida st joseph hospital reviews", "st joseph's women's hospital neonatal intensive care unit tampa reviews", "st joseph hospital orange women's services reviews", "st joseph women's health associates reviews", "st joseph's hospital women's clinic", "st joseph's hospital women's"], "self_loops": [0], "tags": {"i": "st joseph's women's hospital reviews", "q": "b01VDgNfYDl2clPaed1cjPO0vKY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "willowbrook women's center st joseph mo", "datetime": "2026-03-12 19:45:57.458655", "source": "google", "data": ["willowbrook women's center st joseph mo", [["willowbrook women's center st joseph mo", 0, [22, 30]], ["willowbrook women's center st joseph mo saint joseph reviews", 0, [22, 30]], ["willowbrook women's center st joseph mo saint joseph photos", 0, [22, 30]], ["willowbrook women's center", 0, [512, 546]], ["willowbrook women's center cameron mo", 0, [512, 546]], ["willowbrook women's clinic", 0, [751]], ["willowbrook women's health", 0, [512, 546]]], {"i": "willowbrook women's center st joseph mo", "q": "qZiHT0ws3VUzrlh9DT0cHexaCDY", "t": {"bpc": false, "tlw": false}}], "suggests": ["willowbrook women's center st joseph mo", "willowbrook women's center st joseph mo saint joseph reviews", "willowbrook women's center st joseph mo saint joseph photos", "willowbrook women's center", "willowbrook women's center cameron mo", "willowbrook women's clinic", "willowbrook women's health"], "self_loops": [0], "tags": {"i": "willowbrook women's center st joseph mo", "q": "qZiHT0ws3VUzrlh9DT0cHexaCDY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic st joseph", "datetime": "2026-03-12 19:45:58.558063", "source": "google", "data": ["women's clinic st joseph", [["women's clinic st joseph", 0, [512]], ["women's clinic st joseph mo", 0, [22, 30]], ["women's clinic st joseph pavilion", 0, [22, 30]], ["women's center st joseph", 0, [22, 30]], ["women's hospital st joseph", 0, [22, 30]], ["women's hospital st joseph east", 0, [22, 30]], ["saint joe's women's clinic", 0, [22, 10, 30]], ["women's health clinic st joseph mo", 0, [22, 30]], ["women's health clinic st joseph", 0, [22, 30]], ["women's outpatient clinic st joseph", 0, [22, 30]]], {"i": "women's clinic st joseph", "q": "L_EBwvzsQWqWT18Xj2NHwmCtC0Y", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic st joseph", "women's clinic st joseph mo", "women's clinic st joseph pavilion", "women's center st joseph", "women's hospital st joseph", "women's hospital st joseph east", "saint joe's women's clinic", "women's health clinic st joseph mo", "women's health clinic st joseph", "women's outpatient clinic st joseph"], "self_loops": [0], "tags": {"i": "women's clinic st joseph", "q": "L_EBwvzsQWqWT18Xj2NHwmCtC0Y", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health st joseph missouri", "datetime": "2026-03-12 19:45:59.756342", "source": "google", "data": ["women's health st joseph missouri", [["women's health st joseph missouri", 0, [512]], ["mosaic women's health st joseph missouri", 0, [22, 10, 30]], ["women's health clinic st joseph mo", 0, [22, 30]], ["women's health st joseph mo", 0, [512, 546]], ["women's health saint joseph missouri", 0, [546, 649]], ["women's health saint joseph mo", 0, [512, 546]]], {"i": "women's health st joseph missouri", "q": "7aeCnDUyXbE3bWYNYNau6-4aeHA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's health st joseph missouri", "mosaic women's health st joseph missouri", "women's health clinic st joseph mo", "women's health st joseph mo", "women's health saint joseph missouri", "women's health saint joseph mo"], "self_loops": [0], "tags": {"i": "women's health st joseph missouri", "q": "7aeCnDUyXbE3bWYNYNau6-4aeHA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "st joseph's women's pavilion", "datetime": "2026-03-12 19:46:00.712258", "source": "google", "data": ["st joseph's women's pavilion", [["st joseph women's pavilion", 0, [22, 10, 30]], ["women's clinic st joseph pavilion", 0, [22, 10, 30]], ["st joseph's pa women's basketball", 0, [751]], ["st joseph's patchogue women's basketball", 0, [512, 546]], ["st joseph women\u2019s center", 0, [751]], ["st joseph's women's center", 0, [512, 546]]], {"i": "st joseph's women's pavilion", "q": "mGzIG8_AbWXfOX61Lvq7xagoPqE", "t": {"bpc": false, "tlw": false}}], "suggests": ["st joseph women's pavilion", "women's clinic st joseph pavilion", "st joseph's pa women's basketball", "st joseph's patchogue women's basketball", "st joseph women\u2019s center", "st joseph's women's center"], "self_loops": [], "tags": {"i": "st joseph's women's pavilion", "q": "mGzIG8_AbWXfOX61Lvq7xagoPqE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's pavilion joplin missouri", "datetime": "2026-03-12 19:46:02.032561", "source": "google", "data": ["women's pavilion joplin missouri", [["women's pavilion joplin missouri", 0, [512]], ["women's pavilion joplin missouri phone number", 0, [22, 30]], ["freeman women's pavilion joplin missouri", 0, [22, 30]], ["women's health pavilion joplin mo", 0, [22, 30]], ["women's pavilion lab joplin mo", 0, [22, 10, 30]], ["women's pavilion joplin mo", 0, [512, 546]], ["women's pavilion joplin", 0, [512, 546]]], {"i": "women's pavilion joplin missouri", "q": "TPK54-dvflz5gKeIEnYtTbEfh2E", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's pavilion joplin missouri", "women's pavilion joplin missouri phone number", "freeman women's pavilion joplin missouri", "women's health pavilion joplin mo", "women's pavilion lab joplin mo", "women's pavilion joplin mo", "women's pavilion joplin"], "self_loops": [0], "tags": {"i": "women's pavilion joplin missouri", "q": "TPK54-dvflz5gKeIEnYtTbEfh2E", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health care st joseph", "datetime": "2026-03-12 19:46:03.504257", "source": "google", "data": ["women's health care st joseph", [["women's health care st joseph", 0, [22, 30]], ["women's health clinic st joseph mo", 0, [22, 30]], ["women's health center st joseph", 0, [22, 30]], ["women's health clinic st joseph", 0, [22, 30]], ["women's health clinic saint joe's", 0, [22, 30]], ["women's health clinic st joseph's hospital hamilton", 0, [22, 30]], ["women's health center st joseph hospital", 0, [22, 30]], ["south shore women's health care st joseph mi", 0, [22, 30]], ["women's health clinic st joseph's saint john", 0, [22, 30]], ["women's health concerns clinic st joseph", 0, [22, 30]]], {"i": "women's health care st joseph", "q": "gt2a6OnZoxdilucJmM0hEILr4PU", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health care st joseph", "women's health clinic st joseph mo", "women's health center st joseph", "women's health clinic st joseph", "women's health clinic saint joe's", "women's health clinic st joseph's hospital hamilton", "women's health center st joseph hospital", "south shore women's health care st joseph mi", "women's health clinic st joseph's saint john", "women's health concerns clinic st joseph"], "self_loops": [0], "tags": {"i": "women's health care st joseph", "q": "gt2a6OnZoxdilucJmM0hEILr4PU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health centre st joseph's hospital", "datetime": "2026-03-12 19:46:04.353784", "source": "google", "data": ["women's health centre st joseph's hospital", [["women's health centre st joseph's hospital", 0, [22, 30]], ["women's health center st joseph hospital", 0, [512, 546]], ["women's health center st joseph", 0, [512, 546]], ["women's health st joseph hospital", 0, [512, 546]], ["women's health center st joe's", 0, [546, 649]]], {"i": "women's health centre st joseph's hospital", "q": "KO3ouggHMb-IixSoMHsGvGMSzw0", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health centre st joseph's hospital", "women's health center st joseph hospital", "women's health center st joseph", "women's health st joseph hospital", "women's health center st joe's"], "self_loops": [0], "tags": {"i": "women's health centre st joseph's hospital", "q": "KO3ouggHMb-IixSoMHsGvGMSzw0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic st joseph's saint john", "datetime": "2026-03-12 19:46:05.204988", "source": "google", "data": ["women's health clinic st joseph's saint john", [["women's health clinic st joseph's saint john", 0, [22, 30]], ["women's health clinic st joseph mo", 0, [512, 546]], ["women's health saint joseph missouri", 0, [546, 649]], ["women's health saint joseph mo", 0, [512, 546]], ["women's health saint joseph", 0, [751]], ["women's health st joseph hospital", 0, [512, 546]]], {"i": "women's health clinic st joseph's saint john", "q": "tV7_89rTDH3O5SoSMZAP6Njxbag", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health clinic st joseph's saint john", "women's health clinic st joseph mo", "women's health saint joseph missouri", "women's health saint joseph mo", "women's health saint joseph", "women's health st joseph hospital"], "self_loops": [0], "tags": {"i": "women's health clinic st joseph's saint john", "q": "tV7_89rTDH3O5SoSMZAP6Njxbag", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health concerns clinic st joseph", "datetime": "2026-03-12 19:46:06.570345", "source": "google", "data": ["women's health concerns clinic st joseph", [["women's health concerns clinic st joseph's healthcare hamilton", 0, [512]], ["women's health concerns clinic st joseph", 0, [22, 30]], ["women's health clinic st joseph mo", 0, [512, 546]], ["women's health center st joseph hospital", 0, [512, 546]], ["women's health center st joe's", 0, [546, 649]], ["women's health center st joseph", 0, [512, 546]], ["women's health st joseph hospital", 0, [512, 546]]], {"i": "women's health concerns clinic st joseph", "q": "bkqBkNd3i6vaeg2_wI6l3DaRblA", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health concerns clinic st joseph's healthcare hamilton", "women's health concerns clinic st joseph", "women's health clinic st joseph mo", "women's health center st joseph hospital", "women's health center st joe's", "women's health center st joseph", "women's health st joseph hospital"], "self_loops": [1], "tags": {"i": "women's health concerns clinic st joseph", "q": "bkqBkNd3i6vaeg2_wI6l3DaRblA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic san jose ca", "datetime": "2026-03-12 19:46:07.483935", "source": "google", "data": ["women's health clinic san jose ca", [["women's health clinic san jose california", 33, [160], {"a": "women's health clinic san jose ", "b": "california"}], ["women's health clinic san jose ca kaiser", 33, [160], {"a": "women's health clinic san jose ", "b": "ca kaiser"}], ["women's health clinic san jose kaiser", 33, [160], {"a": "women's health clinic san jose ", "b": "kaiser"}], ["women's health clinic san jose ca kaiser permanente", 33, [160], {"a": "women's health clinic san jose ", "b": "ca kaiser permanente"}], ["women's health clinic san jose calpers", 33, [160], {"a": "women's health clinic san jose ", "b": "calpers"}], ["women's health clinic san jose ca", 33, [299], {"a": "women's health clinic san jose ", "b": "ca"}], ["women's health clinic san jose ca 95138", 33, [299], {"a": "women's health clinic san jose ", "b": "ca 95138"}]], {"i": "women's health clinic san jose ca", "q": "23z5vExf0Q4Q1t0CzbzB-sPN7TU", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health clinic san jose california", "women's health clinic san jose ca kaiser", "women's health clinic san jose kaiser", "women's health clinic san jose ca kaiser permanente", "women's health clinic san jose calpers", "women's health clinic san jose ca", "women's health clinic san jose ca 95138"], "self_loops": [5], "tags": {"i": "women's health clinic san jose ca", "q": "23z5vExf0Q4Q1t0CzbzB-sPN7TU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic san jacinto", "datetime": "2026-03-12 19:46:08.929275", "source": "google", "data": ["women's health clinic san jacinto", [["women's health clinic san jacinto ca", 33, [160], {"a": "women's health clinic san ", "b": "jacinto ca"}], ["women's health clinic san jacinto california", 33, [160], {"a": "women's health clinic san ", "b": "jacinto california"}], ["women's health clinic san jacinto kaiser", 33, [160], {"a": "women's health clinic san ", "b": "jacinto kaiser"}], ["women's health clinic san jacinto medical center", 33, [160], {"a": "women's health clinic san ", "b": "jacinto medical center"}], ["women's health clinic san jacinto san jose", 33, [160], {"a": "women's health clinic san ", "b": "jacinto san jose"}], ["women's health clinic san jacinto", 33, [299], {"a": "women's health clinic san ", "b": "jacinto"}]], {"i": "women's health clinic san jacinto", "q": "YocvGjA-fgUq8ajK-h6AQ5HhgTg", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health clinic san jacinto ca", "women's health clinic san jacinto california", "women's health clinic san jacinto kaiser", "women's health clinic san jacinto medical center", "women's health clinic san jacinto san jose", "women's health clinic san jacinto"], "self_loops": [5], "tags": {"i": "women's health clinic san jacinto", "q": "YocvGjA-fgUq8ajK-h6AQ5HhgTg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "first abortion clinic in usa", "datetime": "2026-03-12 19:46:09.771787", "source": "google", "data": ["first abortion clinic in usa", [["first abortion clinic in usa", 0, [512]], ["when was the first abortion clinic opened in us", 0, [22, 10, 30]], ["when was the first abortion in the us", 0, [512, 390, 650]], ["first abortion clinic in the us", 0, [546, 649]], ["first legal abortion clinic in the united states", 0, [751]], ["first abortion clinic in new york", 0, [546, 649]]], {"i": "first abortion clinic in usa", "q": "N6Q0f9jxGi_HwCFb4DfInOdJcjY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["first abortion clinic in usa", "when was the first abortion clinic opened in us", "when was the first abortion in the us", "first abortion clinic in the us", "first legal abortion clinic in the united states", "first abortion clinic in new york"], "self_loops": [0], "tags": {"i": "first abortion clinic in usa", "q": "N6Q0f9jxGi_HwCFb4DfInOdJcjY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "where was the first abortion clinic", "datetime": "2026-03-12 19:46:10.591861", "source": "google", "data": ["where was the first abortion clinic", [["where was the first abortion clinic", 0, [512]], ["where was the first abortion clinic opened", 0, [512]], ["when was the first abortion clinic opened in us", 0, [22, 10, 30]], ["when was the first abortion clinic created", 0, [22, 30]], ["where was the first abortion clinic in the world", 0, [22, 30]], ["when did the first abortion clinic open", 0, [22, 30]], ["who started the first abortion clinic", 0, [512, 390, 650]], ["when was the first abortion recorded", 0, [512, 390, 650]], ["where was the first abortion performed", 0, [751]]], {"i": "where was the first abortion clinic", "q": "RzU7VXXbuvf1AjRvbxzAbuiOZR0", "t": {"bpc": false, "tlw": false}}], "suggests": ["where was the first abortion clinic", "where was the first abortion clinic opened", "when was the first abortion clinic opened in us", "when was the first abortion clinic created", "where was the first abortion clinic in the world", "when did the first abortion clinic open", "who started the first abortion clinic", "when was the first abortion recorded", "where was the first abortion performed"], "self_loops": [0], "tags": {"i": "where was the first abortion clinic", "q": "RzU7VXXbuvf1AjRvbxzAbuiOZR0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near st. louis mo", "datetime": "2026-03-12 19:46:11.436353", "source": "google", "data": ["abortion clinic near st. louis mo", [["abortion clinic near st louis mo", 0, [22, 30]], ["va women's clinic near st louis mo", 0, [22, 30]], ["women's clinic st louis mo", 0, [22, 30]], ["closest abortion clinic near me", 0, [512, 390, 650]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic near st louis", 0, [546, 649]]], {"i": "abortion clinic near st. louis mo", "q": "H7LVHm_C76g4uzivRLF-vfCOpg4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near st louis mo", "va women's clinic near st louis mo", "women's clinic st louis mo", "closest abortion clinic near me", "abortion clinic near me now", "abortion clinic near st louis"], "self_loops": [], "tags": {"i": "abortion clinic near st. louis mo", "q": "H7LVHm_C76g4uzivRLF-vfCOpg4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near st. augustine fl", "datetime": "2026-03-12 19:46:12.430632", "source": "google", "data": ["abortion clinic near st. augustine fl", [["abortion clinic near st augustine fl", 0, [22, 30]], ["abortion clinic st augustine", 0, [512, 546]], ["abortion clinic near st. petersburg fl", 0, [751]], ["abortion clinic near coral springs fl", 0, [546, 649]]], {"i": "abortion clinic near st. augustine fl", "q": "am6dp4s84ASl2EdgK2BbtqJvUeg", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near st augustine fl", "abortion clinic st augustine", "abortion clinic near st. petersburg fl", "abortion clinic near coral springs fl"], "self_loops": [], "tags": {"i": "abortion clinic near st. augustine fl", "q": "am6dp4s84ASl2EdgK2BbtqJvUeg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near st paul mn", "datetime": "2026-03-12 19:46:13.668943", "source": "google", "data": ["abortion clinic near st paul mn", [["abortion clinic near st paul mn", 0, [22, 30]], ["women's health clinic near st paul mn", 0, [22, 30]], ["women's clinic st paul mn", 0, [22, 30]], ["closest abortion clinic near me", 0, [512, 390, 650]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic st paul", 0, [512, 546]], ["planned parenthood near st paul mn", 0, [751]], ["abortion clinic near minneapolis mn", 0, [751]], ["abortion clinic near st. petersburg fl", 0, [751]]], {"i": "abortion clinic near st paul mn", "q": "gwJo3cpz5in-XcYiczdvfakjvSs", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near st paul mn", "women's health clinic near st paul mn", "women's clinic st paul mn", "closest abortion clinic near me", "abortion clinic near me now", "abortion clinic st paul", "planned parenthood near st paul mn", "abortion clinic near minneapolis mn", "abortion clinic near st. petersburg fl"], "self_loops": [0], "tags": {"i": "abortion clinic near st paul mn", "q": "gwJo3cpz5in-XcYiczdvfakjvSs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near st. petersburg fl", "datetime": "2026-03-12 19:46:15.002341", "source": "google", "data": ["abortion clinic near st. petersburg fl", [["abortion clinic near st petersburg fl", 0, [22, 30]], ["women's clinic st petersburg fl", 0, [22, 30]], ["abortion clinic st pete fl", 0, [751]], ["abortion st petersburg fl", 0, [512, 546]], ["abortion clinic in st pete", 0, [751]]], {"i": "abortion clinic near st. petersburg fl", "q": "Tz-UYhjW23ouYezEyO2ij-sOTv4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near st petersburg fl", "women's clinic st petersburg fl", "abortion clinic st pete fl", "abortion st petersburg fl", "abortion clinic in st pete"], "self_loops": [], "tags": {"i": "abortion clinic near st. petersburg fl", "q": "Tz-UYhjW23ouYezEyO2ij-sOTv4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near st louis", "datetime": "2026-03-12 19:46:15.954084", "source": "google", "data": ["abortion clinic near st louis", [["abortion clinic near st louis mo", 0, [512]], ["va women's clinic near st louis mo", 0, [22, 30]], ["abortion clinic st louis", 0, [22, 30]], ["abortion clinic st louis illinois", 0, [22, 30]], ["closest abortion clinic near me", 0, [512, 390, 650]], ["abortion clinic near me now", 0, [512, 390, 650]]], {"i": "abortion clinic near st louis", "q": "HYCvdUoNY0B5JkGgRBF7Grgozzg", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near st louis mo", "va women's clinic near st louis mo", "abortion clinic st louis", "abortion clinic st louis illinois", "closest abortion clinic near me", "abortion clinic near me now"], "self_loops": [], "tags": {"i": "abortion clinic near st louis", "q": "HYCvdUoNY0B5JkGgRBF7Grgozzg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "surgical abortion clinics near me open now", "datetime": "2026-03-12 19:46:17.385465", "source": "google", "data": ["surgical abortion clinics near me open now", [["surgical abortion clinics near me open now", 0, [22, 30]], ["surgical abortion clinics near me", 0, [512, 390, 650]], ["open abortion clinics near me", 0, [512, 390, 650]], ["abortion clinic near me now", 0, [512, 390, 650]]], {"i": "surgical abortion clinics near me open now", "q": "LFSS1FBbtaxIA3vAXhjG0DYZJCE", "t": {"bpc": false, "tlw": false}}], "suggests": ["surgical abortion clinics near me open now", "surgical abortion clinics near me", "open abortion clinics near me", "abortion clinic near me now"], "self_loops": [0], "tags": {"i": "surgical abortion clinics near me open now", "q": "LFSS1FBbtaxIA3vAXhjG0DYZJCE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "surgical abortion doctors near me", "datetime": "2026-03-12 19:46:18.713731", "source": "google", "data": ["surgical abortion doctors near me", [["surgical abortion doctors near me", 0, [22, 30]], ["surgical abortion clinics near me", 0, [22, 30]], ["surgical abortion clinics near me open now", 0, [22, 30]], ["private surgical abortion clinic near me", 0, [22, 30]], ["top rated surgical abortion clinics near me", 0, [22, 30]], ["surgical abortion centres near me", 0, [512, 390, 650]]], {"i": "surgical abortion doctors near me", "q": "LKsf1WC5j6fAhQDDI2YGOpFMDzI", "t": {"bpc": false, "tlw": false}}], "suggests": ["surgical abortion doctors near me", "surgical abortion clinics near me", "surgical abortion clinics near me open now", "private surgical abortion clinic near me", "top rated surgical abortion clinics near me", "surgical abortion centres near me"], "self_loops": [0], "tags": {"i": "surgical abortion doctors near me", "q": "LKsf1WC5j6fAhQDDI2YGOpFMDzI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "surgical abortion centers near me", "datetime": "2026-03-12 19:46:19.964330", "source": "google", "data": ["surgical abortion centers near me", [["surgical abortion centers near me", 0, [22, 30]], ["surgical abortion clinics near me", 0, [22, 30]], ["surgical abortion clinics near me open now", 0, [22, 30]], ["private surgical abortion clinic near me", 0, [22, 30]], ["top rated surgical abortion clinics near me", 0, [22, 30]], ["surgical abortion centres near me", 0, [512, 390, 650]]], {"i": "surgical abortion centers near me", "q": "n-QMbIIH2_2eA8_-uMASidbSk44", "t": {"bpc": false, "tlw": false}}], "suggests": ["surgical abortion centers near me", "surgical abortion clinics near me", "surgical abortion clinics near me open now", "private surgical abortion clinic near me", "top rated surgical abortion clinics near me", "surgical abortion centres near me"], "self_loops": [0], "tags": {"i": "surgical abortion centers near me", "q": "n-QMbIIH2_2eA8_-uMASidbSk44", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "private surgical abortion clinic near me", "datetime": "2026-03-12 19:46:21.363860", "source": "google", "data": ["private surgical abortion clinic near me", [["private surgical abortion clinic near me", 0, [512]], ["abortion clinic near me surgical", 0, [512, 390, 650]], ["private abortion clinic near me", 0, [512, 390, 650]], ["private abortion clinic cost", 0, [512, 390, 650]], ["abortion clinic near me open sunday", 0, [751]], ["abortion clinic near me that accept insurance", 0, [751]]], {"i": "private surgical abortion clinic near me", "q": "zqgYXqS1Rot30S5Wc4jE-wu1etg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["private surgical abortion clinic near me", "abortion clinic near me surgical", "private abortion clinic near me", "private abortion clinic cost", "abortion clinic near me open sunday", "abortion clinic near me that accept insurance"], "self_loops": [0], "tags": {"i": "private surgical abortion clinic near me", "q": "zqgYXqS1Rot30S5Wc4jE-wu1etg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "top rated surgical abortion clinics near me", "datetime": "2026-03-12 19:46:22.400195", "source": "google", "data": ["top rated surgical abortion clinics near me", [["top rated surgical abortion clinics near me", 0, [22, 30]], ["abortion clinic near me surgical", 0, [512, 390, 650]], ["top rated abortion clinics near me", 0, [512, 546]], ["top rated abortion clinics in michigan", 0, [751]], ["best rated abortion clinics near me", 0, [751]], ["top abortion clinics near me", 0, [512, 546]]], {"i": "top rated surgical abortion clinics near me", "q": "qBga990juxY8WqsvknFR5G1fMeo", "t": {"bpc": false, "tlw": false}}], "suggests": ["top rated surgical abortion clinics near me", "abortion clinic near me surgical", "top rated abortion clinics near me", "top rated abortion clinics in michigan", "best rated abortion clinics near me", "top abortion clinics near me"], "self_loops": [0], "tags": {"i": "top rated surgical abortion clinics near me", "q": "qBga990juxY8WqsvknFR5G1fMeo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "surgical abortion clinics melbourne", "datetime": "2026-03-12 19:46:23.736201", "source": "google", "data": ["surgical abortion clinics melbourne", [["surgical abortion clinics melbourne", 0, [22, 30]], ["abortion clinic near me surgical", 0, [512, 390, 650]], ["surgical abortion centres near me", 0, [512, 390, 650]]], {"i": "surgical abortion clinics melbourne", "q": "s2-TiasieiObXkM8fZ9u8YdAyEo", "t": {"bpc": false, "tlw": false}}], "suggests": ["surgical abortion clinics melbourne", "abortion clinic near me surgical", "surgical abortion centres near me"], "self_loops": [0], "tags": {"i": "surgical abortion clinics melbourne", "q": "s2-TiasieiObXkM8fZ9u8YdAyEo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "surgical abortion centres near me", "datetime": "2026-03-12 19:46:24.753253", "source": "google", "data": ["surgical abortion centres near me", [["surgical abortion centres near me", 0, [512]], ["surgical abortion clinics near me", 0, [22, 30]], ["surgical abortion clinics near me open now", 0, [22, 30]], ["private surgical abortion clinic near me", 0, [22, 30]], ["top rated surgical abortion clinics near me", 0, [22, 30]]], {"i": "surgical abortion centres near me", "q": "mM_il2FBKDQ3N_NWgAKUt14jgys", "t": {"bpc": false, "tlw": false}}], "suggests": ["surgical abortion centres near me", "surgical abortion clinics near me", "surgical abortion clinics near me open now", "private surgical abortion clinic near me", "top rated surgical abortion clinics near me"], "self_loops": [0], "tags": {"i": "surgical abortion centres near me", "q": "mM_il2FBKDQ3N_NWgAKUt14jgys", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's recovery services santa rosa ca", "datetime": "2026-03-12 19:46:25.623379", "source": "google", "data": ["women's recovery services santa rosa ca", [["women's recovery services santa rosa ca", 0, [22, 30]], ["women's recovery services santa rosa address", 0, [751]], ["women's recovery center santa rosa ca", 0, [512, 546]], ["women's recovery services santa rosa", 0, [512, 546]], ["women's recovery center santa rosa", 0, [512, 546]]], {"i": "women's recovery services santa rosa ca", "q": "3nzpGrStzAV-VOj63DZ0qkXTVe4", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's recovery services santa rosa ca", "women's recovery services santa rosa address", "women's recovery center santa rosa ca", "women's recovery services santa rosa", "women's recovery center santa rosa"], "self_loops": [0], "tags": {"i": "women's recovery services santa rosa ca", "q": "3nzpGrStzAV-VOj63DZ0qkXTVe4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's recovery center santa rosa ca", "datetime": "2026-03-12 19:46:26.555488", "source": "google", "data": ["women's recovery center santa rosa ca", [["women's recovery center santa rosa ca", 0, [512]], ["women's recovery services santa rosa ca", 0, [22, 30]], ["women's recovery center santa rosa", 0, [512, 546]], ["women's recovery services santa rosa address", 0, [751]], ["women's recovery services santa rosa", 0, [512, 546]]], {"i": "women's recovery center santa rosa ca", "q": "TOBgL_zxPkPobJYAe1_2M9fuVpA", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's recovery center santa rosa ca", "women's recovery services santa rosa ca", "women's recovery center santa rosa", "women's recovery services santa rosa address", "women's recovery services santa rosa"], "self_loops": [0], "tags": {"i": "women's recovery center santa rosa ca", "q": "TOBgL_zxPkPobJYAe1_2M9fuVpA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic roseville ca", "datetime": "2026-03-12 19:46:27.617663", "source": "google", "data": ["abortion clinic roseville ca", [["abortion clinic roseville ca", 0, [22, 30]], ["women's clinic roseville ca", 0, [22, 10, 30]], ["abortion clinic open sunday near me", 0, [512, 390, 650]], ["planned parenthood near me abortion clinic", 0, [512, 390, 650]], ["abortion clinic open near me", 0, [512, 390, 650]], ["roseville abortion clinic", 0, [751]], ["abortion clinic coffee rd modesto", 0, [751]], ["abortion clinic redding ca", 0, [512, 546]], ["abortion clinic robbinsdale", 0, [546, 649]]], {"i": "abortion clinic roseville ca", "q": "dC9Y6wpH6d_vRtw3WNlc94lDUM8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic roseville ca", "women's clinic roseville ca", "abortion clinic open sunday near me", "planned parenthood near me abortion clinic", "abortion clinic open near me", "roseville abortion clinic", "abortion clinic coffee rd modesto", "abortion clinic redding ca", "abortion clinic robbinsdale"], "self_loops": [0], "tags": {"i": "abortion clinic roseville ca", "q": "dC9Y6wpH6d_vRtw3WNlc94lDUM8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health center santa rosa", "datetime": "2026-03-12 19:46:28.652230", "source": "google", "data": ["women's health center santa rosa", [["women's health center santa rosa", 0, [22, 30]], ["women's health clinic santa rosa", 0, [22, 30]], ["sutter women's health center santa rosa", 0, [22, 10, 30]], ["sutter women's health center sutter pacific medical foundation santa rosa", 0, [22, 30]], ["women's health santa rosa ca", 0, [751]], ["women's health center santa maria ca", 0, [546, 649]], ["women's health center santa cruz ca", 0, [751]], ["women's health center santa maria", 0, [512, 546]]], {"i": "women's health center santa rosa", "q": "rJ42nivknS-M0f8JVEORoBGPEeE", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health center santa rosa", "women's health clinic santa rosa", "sutter women's health center santa rosa", "sutter women's health center sutter pacific medical foundation santa rosa", "women's health santa rosa ca", "women's health center santa maria ca", "women's health center santa cruz ca", "women's health center santa maria"], "self_loops": [0], "tags": {"i": "women's health center santa rosa", "q": "rJ42nivknS-M0f8JVEORoBGPEeE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic santa cruz", "datetime": "2026-03-12 19:46:29.964726", "source": "google", "data": ["women's clinic santa cruz", [["women's clinic santa cruz", 0, [512]], ["women's health center santa cruz", 0, [22, 30]], ["women's health center santa cruz ca", 0, [22, 10, 30]], ["women's health clinic santa cruz", 0, [22, 30]], ["santa cruz women's health clinic santa cruz ca", 0, [22, 30]], ["women's clinic santa fe", 0, [512, 546]], ["women's clinic santa teresa", 0, [751]], ["women's clinic santa maria", 0, [512, 546]]], {"i": "women's clinic santa cruz", "q": "8Nu2ALQXSYJuFY6Z3Yz4AGpM0sc", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic santa cruz", "women's health center santa cruz", "women's health center santa cruz ca", "women's health clinic santa cruz", "santa cruz women's health clinic santa cruz ca", "women's clinic santa fe", "women's clinic santa teresa", "women's clinic santa maria"], "self_loops": [0], "tags": {"i": "women's clinic santa cruz", "q": "8Nu2ALQXSYJuFY6Z3Yz4AGpM0sc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic santa maria", "datetime": "2026-03-12 19:46:31.035166", "source": "google", "data": ["women's clinic santa maria", [["women's clinic santa maria", 0, [512]], ["women's health center santa maria", 0, [22, 30]], ["women's health center santa maria ca", 0, [22, 30]], ["women's clinic santa marta", 0, [22, 30]], ["women's clinic santa marta photos", 0, [22, 30]], ["women's clinic santa marta reviews", 0, [22, 30]], ["women's health clinic santa maria", 0, [22, 30]], ["women's health clinic santa maria ca", 0, [22, 10, 30]], ["women's clinic santa maria ca", 0, [751]], ["women's clinic santa barbara", 0, [751]]], {"i": "women's clinic santa maria", "q": "k7VnzYj1Nz1iggeZGtZI8pV-rQI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic santa maria", "women's health center santa maria", "women's health center santa maria ca", "women's clinic santa marta", "women's clinic santa marta photos", "women's clinic santa marta reviews", "women's health clinic santa maria", "women's health clinic santa maria ca", "women's clinic santa maria ca", "women's clinic santa barbara"], "self_loops": [0], "tags": {"i": "women's clinic santa maria", "q": "k7VnzYj1Nz1iggeZGtZI8pV-rQI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic santa fe", "datetime": "2026-03-12 19:46:32.349444", "source": "google", "data": ["women's clinic santa fe", [["women's clinic santa fe", 0, [512]], ["women's clinic santa fe nm", 0, [22, 30]], ["women's health center santa fe", 0, [22, 10, 30]], ["women's health clinic santa fe nm", 0, [22, 30]], ["lovelace women's hospital santa fe", 0, [22, 10, 30]], ["women's health clinic santa fe", 0, [546, 649]], ["women's clinic san fernando", 0, [512, 546]], ["women's clinic santa maria", 0, [512, 546]]], {"i": "women's clinic santa fe", "q": "90UD9tiIByJFzgYBCwuCSDLxd8s", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic santa fe", "women's clinic santa fe nm", "women's health center santa fe", "women's health clinic santa fe nm", "lovelace women's hospital santa fe", "women's health clinic santa fe", "women's clinic san fernando", "women's clinic santa maria"], "self_loops": [0], "tags": {"i": "women's clinic santa fe", "q": "90UD9tiIByJFzgYBCwuCSDLxd8s", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic santa barbara", "datetime": "2026-03-12 19:46:33.552129", "source": "google", "data": ["women's clinic santa barbara", [["santa barbara women's clinic", 0, [22, 10, 30], {"za": "santa barbara women's clinic", "zb": "women's clinic santa barbara"}], ["women's health center santa barbara", 0, [22, 30]], ["women's clinic santa monica", 0, [22, 30]], ["women's health clinic santa barbara", 0, [22, 30]], ["women's medical clinic santa barbara", 0, [22, 30]], ["samsung women's clinic santa barbara", 0, [22, 10, 30]], ["sansum clinic santa barbara women", 0, [22, 10, 30]], ["santa monica women's health center", 0, [22, 10, 30]], ["women's free homeless clinic santa barbara", 0, [22, 10, 30]], ["women's health clinic santa monica", 0, [22, 30]]], {"i": "women's clinic santa barbara", "o": "santa barbara women's clinic", "p": "women's clinic santa barbara", "q": "3vt7iuyvkLJ2FNQegIfN1bxwEjg", "t": {"bpc": false, "tlw": false}}], "suggests": ["santa barbara women's clinic", "women's health center santa barbara", "women's clinic santa monica", "women's health clinic santa barbara", "women's medical clinic santa barbara", "samsung women's clinic santa barbara", "sansum clinic santa barbara women", "santa monica women's health center", "women's free homeless clinic santa barbara", "women's health clinic santa monica"], "self_loops": [], "tags": {"i": "women's clinic santa barbara", "o": "santa barbara women's clinic", "p": "women's clinic santa barbara", "q": "3vt7iuyvkLJ2FNQegIfN1bxwEjg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health santa rosa ca", "datetime": "2026-03-12 19:46:34.503007", "source": "google", "data": ["women's health santa rosa ca", [["women's health santa rosa california", 33, [160], {"a": "women's health santa rosa ", "b": "california"}], ["women's health santa rosa ca fax number", 33, [160], {"a": "women's health santa rosa ", "b": "ca fax number"}], ["women's health santa rosa cardiology", 33, [160], {"a": "women's health santa rosa ", "b": "cardiology"}], ["women's health santa rosa ca npi", 33, [160], {"a": "women's health santa rosa ", "b": "ca npi"}], ["women's health santa rosa ca", 33, [299], {"a": "women's health santa rosa ", "b": "ca"}]], {"i": "women's health santa rosa ca", "q": "tGKf1AiE-kl6rZYoHjfJ8bROrT4", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health santa rosa california", "women's health santa rosa ca fax number", "women's health santa rosa cardiology", "women's health santa rosa ca npi", "women's health santa rosa ca"], "self_loops": [4], "tags": {"i": "women's health santa rosa ca", "q": "tGKf1AiE-kl6rZYoHjfJ8bROrT4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic santa cruz", "datetime": "2026-03-12 19:46:35.430851", "source": "google", "data": ["women's health clinic santa cruz", [["women's health clinic santa cruz", 0, [512]], ["santa cruz women's health clinic santa cruz ca", 0, [22, 30]], ["santa cruz women's health clinic photos", 0, [22, 30]], ["women's health center santa cruz ca", 0, [751]], ["women's health santa cruz", 0, [751]], ["women's clinic santa cruz", 0, [512, 546]], ["women's health clinic santa fe nm", 0, [512, 546]]], {"i": "women's health clinic santa cruz", "q": "9Th2FZTtiEZhUBffFmN34Gbc41I", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's health clinic santa cruz", "santa cruz women's health clinic santa cruz ca", "santa cruz women's health clinic photos", "women's health center santa cruz ca", "women's health santa cruz", "women's clinic santa cruz", "women's health clinic santa fe nm"], "self_loops": [0], "tags": {"i": "women's health clinic santa cruz", "q": "9Th2FZTtiEZhUBffFmN34Gbc41I", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic santa fe nm", "datetime": "2026-03-12 19:46:36.446936", "source": "google", "data": ["women's health clinic santa fe nm", [["women's health clinic santa fe nm", 0, [512]], ["women's health center santa fe nm", 0, [22, 30]], ["women's health services santa fe nm", 0, [22, 30]], ["women's health santa fe nm", 0, [512, 546]], ["women's health clinic santa fe", 0, [546, 649]], ["women's health santa fe", 0, [512, 546]]], {"i": "women's health clinic santa fe nm", "q": "3cmA-MjDNKzC0eHKvd28vBjR3YA", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health clinic santa fe nm", "women's health center santa fe nm", "women's health services santa fe nm", "women's health santa fe nm", "women's health clinic santa fe", "women's health santa fe"], "self_loops": [0], "tags": {"i": "women's health clinic santa fe nm", "q": "3cmA-MjDNKzC0eHKvd28vBjR3YA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion hospital near me", "datetime": "2026-03-12 19:46:37.697702", "source": "google", "data": ["free abortion hospital near me", [["free abortion hospital near me", 0, [512]], ["free abortion clinic near me", 0, [22, 30]], ["free abortion clinic near me open now", 0, [22, 30]], ["free abortion clinic near me volunteer", 0, [22, 30]], ["free abortion clinic near me within 5 mi", 0, [22, 30]], ["free abortion clinic near me within 20 mi", 0, [22, 30]], ["free abortion clinic near me within 8.1 km", 0, [22, 30]], ["free abortion at public hospital near me", 0, [22, 30]], ["free government abortion clinic near me", 0, [22, 30]], ["free cat abortion clinic near me", 0, [22, 30]]], {"i": "free abortion hospital near me", "q": "DE6U5lyeA3AIraOZxqRv6jBNqkg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free abortion hospital near me", "free abortion clinic near me", "free abortion clinic near me open now", "free abortion clinic near me volunteer", "free abortion clinic near me within 5 mi", "free abortion clinic near me within 20 mi", "free abortion clinic near me within 8.1 km", "free abortion at public hospital near me", "free government abortion clinic near me", "free cat abortion clinic near me"], "self_loops": [0], "tags": {"i": "free abortion hospital near me", "q": "DE6U5lyeA3AIraOZxqRv6jBNqkg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "planned parenthood near me abortion services", "datetime": "2026-03-12 19:46:38.813652", "source": "google", "data": ["planned parenthood near me abortion services", [["planned parenthood near me abortion services", 0, [512]], ["planned parenthood near me abortion clinic", 0, [22, 30]], ["how much is an abortion cost at planned parenthood", 0, [512, 390, 650]], ["planned parenthood near me schedule appointment", 0, [751]], ["planned parenthood near me phone number", 0, [512, 546]], ["planned parenthood near me open now", 0, [512, 546]]], {"i": "planned parenthood near me abortion services", "q": "ejiV9u27u03YDmHKgnDE-e8V5Ac", "t": {"bpc": false, "tlw": false}}], "suggests": ["planned parenthood near me abortion services", "planned parenthood near me abortion clinic", "how much is an abortion cost at planned parenthood", "planned parenthood near me schedule appointment", "planned parenthood near me phone number", "planned parenthood near me open now"], "self_loops": [0], "tags": {"i": "planned parenthood near me abortion services", "q": "ejiV9u27u03YDmHKgnDE-e8V5Ac", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does planned parenthood do abortions for free", "datetime": "2026-03-12 19:46:40.100596", "source": "google", "data": ["does planned parenthood do abortions for free", [["does planned parenthood do abortions for free", 0, [512]], ["can planned parenthood do abortions for free", 0, [22, 30]], ["does planned parenthood do abortion pills for free", 0, [22, 30]], ["does planned parenthood do free abortions for minors", 0, [22, 30]], ["does planned parenthood do free abortions for teens", 0, [22, 30]], ["will planned parenthood do an abortion for free", 0, [22, 30]], ["does planned parenthood offer free abortions", 0, [512, 390, 650]], ["does planned parenthood do abortions for free reddit", 0, [751]], ["does planned parenthood do abortions for minors", 0, [512, 546]]], {"i": "does planned parenthood do abortions for free", "q": "jqDH_zlHy2rAUDL22HM7KiMjvNo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does planned parenthood do abortions for free", "can planned parenthood do abortions for free", "does planned parenthood do abortion pills for free", "does planned parenthood do free abortions for minors", "does planned parenthood do free abortions for teens", "will planned parenthood do an abortion for free", "does planned parenthood offer free abortions", "does planned parenthood do abortions for free reddit", "does planned parenthood do abortions for minors"], "self_loops": [0], "tags": {"i": "does planned parenthood do abortions for free", "q": "jqDH_zlHy2rAUDL22HM7KiMjvNo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "planned parenthood near me open now", "datetime": "2026-03-12 19:46:41.336223", "source": "google", "data": ["planned parenthood near me open now", [["planned parenthood near me open now", 0, [512]], ["planned parenthood near me open now within 5 mi", 0, [512]], ["planned parenthood near me open now within 20 mi", 0, [22, 30]], ["planned parenthood near me open today", 0, [22, 30]], ["does planned parenthood take walk ins", 0, [512, 390, 650]], ["planned parenthood near me open saturday", 0, [512, 546]], ["planned parenthood near me online appointment", 0, [751]], ["planned parenthood near me schedule appointment", 0, [751]]], {"i": "planned parenthood near me open now", "q": "phYfYQjFigrf0BuBbcr2fMhhKnM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["planned parenthood near me open now", "planned parenthood near me open now within 5 mi", "planned parenthood near me open now within 20 mi", "planned parenthood near me open today", "does planned parenthood take walk ins", "planned parenthood near me open saturday", "planned parenthood near me online appointment", "planned parenthood near me schedule appointment"], "self_loops": [0], "tags": {"i": "planned parenthood near me open now", "q": "phYfYQjFigrf0BuBbcr2fMhhKnM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "planned parenthood near me walk in", "datetime": "2026-03-12 19:46:42.613788", "source": "google", "data": ["planned parenthood near me walk in", [["planned parenthood near me walk in", 0, [512]], ["planned parenthood near me walk in clinic", 0, [22, 30]], ["planned parenthood walk in hours near me", 0, [22, 30]], ["does planned parenthood take walk ins", 0, [512, 390, 650]], ["does planned parenthood do walk ins", 0, [512, 390, 650]], ["planned parenthood walk ins near me", 0, [512, 546]]], {"i": "planned parenthood near me walk in", "q": "4rW7m7ILRgu-yEjh58Bp7TU2rkE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["planned parenthood near me walk in", "planned parenthood near me walk in clinic", "planned parenthood walk in hours near me", "does planned parenthood take walk ins", "does planned parenthood do walk ins", "planned parenthood walk ins near me"], "self_loops": [0], "tags": {"i": "planned parenthood near me walk in", "q": "4rW7m7ILRgu-yEjh58Bp7TU2rkE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion santa rosa ca", "datetime": "2026-03-12 19:46:43.558222", "source": "google", "data": ["abortion santa rosa ca", [["abortion santa rosa ca", 0, [22, 30]], ["abortion clinic santa rosa ca", 0, [22, 30]], ["abortion planned parenthood near me", 0, [512, 390, 650]], ["does planned parenthood support abortion", 0, [512, 390, 650]], ["abortion options in california", 0, [512, 390, 650]], ["abortion santa rosa", 0, [751]], ["santa rosa abortion clinic", 0, [751]], ["santa rosa abortion rights protest", 0, [751]], ["abortion santa barbara", 0, [546, 649]]], {"i": "abortion santa rosa ca", "q": "wYvsxfa_7oV1N4sxS0DN2717xMc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion santa rosa ca", "abortion clinic santa rosa ca", "abortion planned parenthood near me", "does planned parenthood support abortion", "abortion options in california", "abortion santa rosa", "santa rosa abortion clinic", "santa rosa abortion rights protest", "abortion santa barbara"], "self_loops": [0], "tags": {"i": "abortion santa rosa ca", "q": "wYvsxfa_7oV1N4sxS0DN2717xMc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion planned parenthood near me", "datetime": "2026-03-12 19:46:44.729305", "source": "google", "data": ["abortion planned parenthood near me", [["abortion planned parenthood near me", 0, [512]], ["planned parenthood near me abortion clinic", 0, [22, 30]], ["planned parenthood near me abortion services", 0, [22, 30]], ["planned parenthood surgical abortion near me", 0, [22, 30]], ["what days does planned parenthood do abortions", 0, [512, 390, 650]], ["does planned parenthood do abortions for free", 0, [512, 390, 650]], ["does planned parenthood still do abortions", 0, [512, 390, 650]], ["abortion planned parenthood appointment", 0, [546, 649]], ["abortion planned parenthood washington", 0, [751]]], {"i": "abortion planned parenthood near me", "q": "Uls8rnsvj1zRzj7Fpv7qMH-oTjw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion planned parenthood near me", "planned parenthood near me abortion clinic", "planned parenthood near me abortion services", "planned parenthood surgical abortion near me", "what days does planned parenthood do abortions", "does planned parenthood do abortions for free", "does planned parenthood still do abortions", "abortion planned parenthood appointment", "abortion planned parenthood washington"], "self_loops": [0], "tags": {"i": "abortion planned parenthood near me", "q": "Uls8rnsvj1zRzj7Fpv7qMH-oTjw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does planned parenthood support abortion", "datetime": "2026-03-12 19:46:45.813364", "source": "google", "data": ["does planned parenthood support abortion", [["does planned parenthood support abortion", 0, [512]], ["does planned parenthood support abortion rights", 0, [22, 30]], ["does planned parenthood help with abortions", 0, [22, 30]], ["can planned parenthood help with abortion", 0, [22, 30]], ["does planned parenthood help pay for abortion", 0, [22, 30]], ["does planned parenthood insurance cover abortions", 0, [512, 390, 650]], ["does planned parenthood do abortions", 0, [512, 390, 650]], ["does planned parenthood support adoption", 0, [751]]], {"i": "does planned parenthood support abortion", "q": "qGt8x0fHXoiQw__j7fBhNqp1aHA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does planned parenthood support abortion", "does planned parenthood support abortion rights", "does planned parenthood help with abortions", "can planned parenthood help with abortion", "does planned parenthood help pay for abortion", "does planned parenthood insurance cover abortions", "does planned parenthood do abortions", "does planned parenthood support adoption"], "self_loops": [0], "tags": {"i": "does planned parenthood support abortion", "q": "qGt8x0fHXoiQw__j7fBhNqp1aHA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "santa rosa abortion rights protest", "datetime": "2026-03-12 19:46:46.967898", "source": "google", "data": ["santa rosa abortion rights protest", [["santa rosa abortion rights protests", 33, [160], {"a": "santa rosa abortion rights ", "b": "protests"}], ["santa rosa abortion rights protest today", 33, [160], {"a": "santa rosa abortion rights ", "b": "protest today"}], ["santa rosa abortion rights protest 2024", 33, [160], {"a": "santa rosa abortion rights ", "b": "protest 2024"}], ["santa rosa abortion rights protest 2023", 33, [160], {"a": "santa rosa abortion rights ", "b": "protest 2023"}], ["santa rosa abortion rights protest schedule", 33, [671], {"a": "santa rosa abortion rights ", "b": "protest schedule"}]], {"i": "santa rosa abortion rights protest", "q": "Df5JY08MctGsrROFtKhkQKhYf-M", "t": {"bpc": false, "tlw": false}}], "suggests": ["santa rosa abortion rights protests", "santa rosa abortion rights protest today", "santa rosa abortion rights protest 2024", "santa rosa abortion rights protest 2023", "santa rosa abortion rights protest schedule"], "self_loops": [], "tags": {"i": "santa rosa abortion rights protest", "q": "Df5JY08MctGsrROFtKhkQKhYf-M", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion santa barbara", "datetime": "2026-03-12 19:46:48.482071", "source": "google", "data": ["abortion santa barbara", [["abortion santa barbara", 0, [22, 30]], ["abortion clinic santa barbara", 0, [22, 30]], ["abortion options in california", 0, [512, 390, 650]], ["abortion santa rosa", 0, [751]]], {"i": "abortion santa barbara", "q": "k1tswMYTbavP4xp__78prkeBIcY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion santa barbara", "abortion clinic santa barbara", "abortion options in california", "abortion santa rosa"], "self_loops": [0], "tags": {"i": "abortion santa barbara", "q": "k1tswMYTbavP4xp__78prkeBIcY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion santa fe", "datetime": "2026-03-12 19:46:49.950704", "source": "google", "data": ["abortion santa fe", [], {"i": "abortion santa fe", "q": "orJW2hyF-PGuFmVXhZTYZSyInPU", "t": {"bpc": true, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "abortion santa fe", "q": "orJW2hyF-PGuFmVXhZTYZSyInPU", "t": {"bpc": true, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "london women's clinic brentwood", "datetime": "2026-03-12 19:46:51.510079", "source": "google", "data": ["london women's clinic brentwood", [["london women's clinic brentwood", 0, [512]], ["london women's clinic brentwood reviews", 0, [512]], ["london women's clinic brentwood photos", 0, [22, 30]], ["london womens clinic opening hours", 0, [512, 390, 650]], ["london women's clinic locations", 0, [512, 390, 650]], ["london womens clinic success rates", 0, [512, 390, 650]], ["london women's center", 0, [512, 546]], ["london women's clinic london ky", 0, [512, 546]], ["london womens clinic phone number", 0, [512, 546]], ["brentwood women's health", 0, [512, 546]]], {"i": "london women's clinic brentwood", "q": "kK5XA1S6wZCW2bX27WKT1qBdyj4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["london women's clinic brentwood", "london women's clinic brentwood reviews", "london women's clinic brentwood photos", "london womens clinic opening hours", "london women's clinic locations", "london womens clinic success rates", "london women's center", "london women's clinic london ky", "london womens clinic phone number", "brentwood women's health"], "self_loops": [0], "tags": {"i": "london women's clinic brentwood", "q": "kK5XA1S6wZCW2bX27WKT1qBdyj4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "london women's clinic brentwood reviews", "datetime": "2026-03-12 19:46:52.322566", "source": "google", "data": ["london women's clinic brentwood reviews", [["london women's clinic brentwood reviews", 0, [512]], ["london womens clinic review", 0, [512, 390, 650]], ["london women's clinic bristol reviews", 0, [512, 390, 650]], ["london womens clinic opening hours", 0, [512, 390, 650]], ["london women's care reviews", 0, [512, 546]], ["london women's clinic brentwood photos", 0, [751]], ["london women's clinic london ky", 0, [512, 546]]], {"i": "london women's clinic brentwood reviews", "q": "8DPp7Y9iOZgvCfMgUYs54ieRFxs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["london women's clinic brentwood reviews", "london womens clinic review", "london women's clinic bristol reviews", "london womens clinic opening hours", "london women's care reviews", "london women's clinic brentwood photos", "london women's clinic london ky"], "self_loops": [0], "tags": {"i": "london women's clinic brentwood reviews", "q": "8DPp7Y9iOZgvCfMgUYs54ieRFxs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "vanderbilt women's clinic brentwood", "datetime": "2026-03-12 19:46:53.300189", "source": "google", "data": ["vanderbilt women's clinic brentwood", [["vanderbilt women's clinic brentwood", 0, [22, 30]], ["vanderbilt women's health center brentwood", 0, [22, 30]], ["vanderbilt women's health clinic brentwood", 0, [22, 10, 30]], ["vanderbilt women's brentwood", 0, [512, 546]], ["vanderbilt women's health brentwood tn", 0, [751]], ["vanderbilt women's health brentwood", 0, [512, 546]], ["vanderbilt center for women's health brentwood tn", 0, [751]]], {"i": "vanderbilt women's clinic brentwood", "q": "9DuQVFte4Zmuz_QdXEJEP9OMPtY", "t": {"bpc": false, "tlw": false}}], "suggests": ["vanderbilt women's clinic brentwood", "vanderbilt women's health center brentwood", "vanderbilt women's health clinic brentwood", "vanderbilt women's brentwood", "vanderbilt women's health brentwood tn", "vanderbilt women's health brentwood", "vanderbilt center for women's health brentwood tn"], "self_loops": [0], "tags": {"i": "vanderbilt women's clinic brentwood", "q": "9DuQVFte4Zmuz_QdXEJEP9OMPtY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic brentwood", "datetime": "2026-03-12 19:46:54.609170", "source": "google", "data": ["women's health clinic brentwood", [["women's health clinic brentwood", 0, [512]], ["vanderbilt women's health clinic brentwood", 0, [22, 10, 30]], ["spire hartswood gynaecology & women's health clinic brentwood", 0, [22, 30]], ["women's health center brentwood", 0, [751]], ["women's health brentwood", 0, [512, 546]], ["women's care brentwood ny", 0, [512, 546]], ["women's care brentwood", 0, [751]]], {"i": "women's health clinic brentwood", "q": "m1TS6qomdWJEambnEjfNz4UVWr4", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health clinic brentwood", "vanderbilt women's health clinic brentwood", "spire hartswood gynaecology & women's health clinic brentwood", "women's health center brentwood", "women's health brentwood", "women's care brentwood ny", "women's care brentwood"], "self_loops": [0], "tags": {"i": "women's health clinic brentwood", "q": "m1TS6qomdWJEambnEjfNz4UVWr4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's fertility clinic brentwood", "datetime": "2026-03-12 19:46:55.909798", "source": "google", "data": ["women's fertility clinic brentwood", [["women's fertility clinic brentwood", 0, [22, 30]], ["women's health center brentwood", 0, [751]], ["women's fertility clinic", 0, [512, 546]], ["brentwood women's health", 0, [512, 546]], ["women's fertility center fresno", 0, [751]]], {"i": "women's fertility clinic brentwood", "q": "jT2XJOgj2pFEAS-Ov8FH81_Crss", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's fertility clinic brentwood", "women's health center brentwood", "women's fertility clinic", "brentwood women's health", "women's fertility center fresno"], "self_loops": [0], "tags": {"i": "women's fertility clinic brentwood", "q": "jT2XJOgj2pFEAS-Ov8FH81_Crss", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "london women's clinic brentwood photos", "datetime": "2026-03-12 19:46:57.285992", "source": "google", "data": ["london women's clinic brentwood photos", [["london women's clinic brentwood photos", 0, [22, 30]], ["london women's clinic brentwood reviews", 0, [512, 390, 650]], ["london women's clinic locations", 0, [512, 390, 650]], ["london womens clinic opening hours", 0, [512, 390, 650]], ["london womens clinic success rates", 0, [512, 390, 650]], ["london womens clinic price list", 0, [512, 390, 650]], ["london womens clinic phone number", 0, [512, 546]], ["brentwood women's health", 0, [512, 546]], ["london women's center", 0, [512, 546]], ["london women's clinic london ky", 0, [512, 546]]], {"i": "london women's clinic brentwood photos", "q": "M44kOw_6YV0kIziKXNKhP-nN9Y4", "t": {"bpc": false, "tlw": false}}], "suggests": ["london women's clinic brentwood photos", "london women's clinic brentwood reviews", "london women's clinic locations", "london womens clinic opening hours", "london womens clinic success rates", "london womens clinic price list", "london womens clinic phone number", "brentwood women's health", "london women's center", "london women's clinic london ky"], "self_loops": [0], "tags": {"i": "london women's clinic brentwood photos", "q": "M44kOw_6YV0kIziKXNKhP-nN9Y4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "vanderbilt women's health clinic brentwood", "datetime": "2026-03-12 19:46:58.672744", "source": "google", "data": ["vanderbilt women's health clinic brentwood", [["vanderbilt women's health clinic brentwood", 0, [22, 30]], ["vanderbilt women's health brentwood tn", 0, [751]], ["vanderbilt women's clinic brentwood", 0, [546, 649]], ["vanderbilt women's brentwood", 0, [512, 546]], ["vanderbilt women's health brentwood", 0, [512, 546]], ["vanderbilt center for women's health brentwood tn", 0, [751]]], {"i": "vanderbilt women's health clinic brentwood", "q": "QciabiyxaTwmxeJqPyJvp2ZnfCw", "t": {"bpc": false, "tlw": false}}], "suggests": ["vanderbilt women's health clinic brentwood", "vanderbilt women's health brentwood tn", "vanderbilt women's clinic brentwood", "vanderbilt women's brentwood", "vanderbilt women's health brentwood", "vanderbilt center for women's health brentwood tn"], "self_loops": [0], "tags": {"i": "vanderbilt women's health clinic brentwood", "q": "QciabiyxaTwmxeJqPyJvp2ZnfCw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health brentwood", "datetime": "2026-03-12 19:46:59.623764", "source": "google", "data": ["women's health brentwood", [["women's health brentwood", 0, [512]], ["vanderbilt women's health brentwood", 0, [22, 10, 30]], ["women's health clinic brentwood", 0, [22, 30]], ["vanderbilt women's health brentwood tn", 0, [22, 10, 30]], ["jefferson women's health brentwood", 0, [22, 10, 30]], ["women's health partners brentwood", 0, [22, 30]], ["era women's health brentwood", 0, [22, 10, 30]], ["women's health physio brentwood", 0, [22, 30]], ["vanderbilt center for women's health brentwood", 0, [22, 30]], ["vanderbilt center for women's health brentwood photos", 0, [22, 30]]], {"i": "women's health brentwood", "q": "RM0DAU1bouOXozu1OtUzZkgLJtU", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health brentwood", "vanderbilt women's health brentwood", "women's health clinic brentwood", "vanderbilt women's health brentwood tn", "jefferson women's health brentwood", "women's health partners brentwood", "era women's health brentwood", "women's health physio brentwood", "vanderbilt center for women's health brentwood", "vanderbilt center for women's health brentwood photos"], "self_loops": [0], "tags": {"i": "women's health brentwood", "q": "RM0DAU1bouOXozu1OtUzZkgLJtU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health center brentwood", "datetime": "2026-03-12 19:47:00.866659", "source": "google", "data": ["women's health center brentwood", [["women's health clinic brentwood", 0, [22, 30]], ["vanderbilt women's health center brentwood", 0, [22, 30]], ["vanderbilt women's health clinic brentwood", 0, [22, 10, 30]], ["vanderbilt center for women's health brentwood photos", 0, [22, 30]], ["vanderbilt center for women's health brentwood reviews", 0, [22, 30]], ["vanderbilt center for women's health brentwood tn", 0, [22, 10, 30]], ["women's health center brentwood", 0, [751]], ["women's health brentwood", 0, [512, 546]], ["women's care brentwood ny", 0, [512, 546]], ["women's health center boca", 0, [512, 546]]], {"i": "women's health center brentwood", "q": "yJoonVy7CbenZS-Oh6YcvZRy4q0", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health clinic brentwood", "vanderbilt women's health center brentwood", "vanderbilt women's health clinic brentwood", "vanderbilt center for women's health brentwood photos", "vanderbilt center for women's health brentwood reviews", "vanderbilt center for women's health brentwood tn", "women's health center brentwood", "women's health brentwood", "women's care brentwood ny", "women's health center boca"], "self_loops": [6], "tags": {"i": "women's health center brentwood", "q": "yJoonVy7CbenZS-Oh6YcvZRy4q0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion brevard county fl", "datetime": "2026-03-12 19:47:02.152388", "source": "google", "data": ["abortion brevard county fl", [["abortion brevard county florida", 33, [160], {"a": "abortion brevard county ", "b": "florida"}], ["abortion brevard county florida 2024", 33, [160], {"a": "abortion brevard county ", "b": "florida 2024"}], ["abortion brevard county florida 2023", 33, [160], {"a": "abortion brevard county ", "b": "florida 2023"}], ["abortion brevard county fl 2024", 33, [160], {"a": "abortion brevard county ", "b": "fl 2024"}], ["abortion brevard county fl", 33, [299], {"a": "abortion brevard county ", "b": "fl"}]], {"i": "abortion brevard county fl", "q": "TFp59KSGxjYl6Vy3NFMAiYzBKCQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion brevard county florida", "abortion brevard county florida 2024", "abortion brevard county florida 2023", "abortion brevard county fl 2024", "abortion brevard county fl"], "self_loops": [4], "tags": {"i": "abortion brevard county fl", "q": "TFp59KSGxjYl6Vy3NFMAiYzBKCQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic melbourne fl", "datetime": "2026-03-12 19:47:03.189933", "source": "google", "data": ["abortion clinic melbourne fl", [["abortion clinic melbourne fl", 0, [512]], ["abortion clinic melbourne florida", 0, [22, 30]], ["women's clinic melbourne fl", 0, [22, 30]], ["abortion clinic melbourne cost", 0, [512, 390, 650]], ["abortion clinic for free near me", 0, [512, 390, 650]], ["melbourne abortion laws", 0, [512, 390, 650]], ["abortion clinic brevard county", 0, [751]], ["abortion clinic near me florida", 0, [751]]], {"i": "abortion clinic melbourne fl", "q": "LGdg-NeoyZWxaCGldFf_taUPzyQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic melbourne fl", "abortion clinic melbourne florida", "women's clinic melbourne fl", "abortion clinic melbourne cost", "abortion clinic for free near me", "melbourne abortion laws", "abortion clinic brevard county", "abortion clinic near me florida"], "self_loops": [0], "tags": {"i": "abortion clinic melbourne fl", "q": "LGdg-NeoyZWxaCGldFf_taUPzyQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic titusville", "datetime": "2026-03-12 19:47:04.462534", "source": "google", "data": ["abortion clinic titusville", [["abortion clinic titusville fl", 0, [22, 30]], ["abortion clinic near me now", 0, [512, 390, 650]], ["planned parenthood near me abortion clinic", 0, [512, 390, 650]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic near me surgical", 0, [512, 390, 650]], ["abortion clinic titusville", 0, [751]], ["abortion clinic brevard county", 0, [751]], ["titusville pregnancy center", 0, [512, 546]], ["abortion clinic near melbourne fl", 0, [751]]], {"i": "abortion clinic titusville", "q": "vqmvofPOxm10ZkzFGNVCU_FN2i8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic titusville fl", "abortion clinic near me now", "planned parenthood near me abortion clinic", "abortion clinic near me for free", "abortion clinic near me surgical", "abortion clinic titusville", "abortion clinic brevard county", "titusville pregnancy center", "abortion clinic near melbourne fl"], "self_loops": [5], "tags": {"i": "abortion clinic titusville", "q": "vqmvofPOxm10ZkzFGNVCU_FN2i8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic beverly hills", "datetime": "2026-03-12 19:47:05.883262", "source": "google", "data": ["women's clinic beverly hills", [["women's clinic beverly hills", 0, [512]], ["women's center beverly hills", 0, [22, 30]], ["women's health clinic beverly hills", 0, [22, 30]], ["women's health center beverly hills", 0, [22, 10, 30]], ["women's imaging center beverly hills", 0, [22, 30]], ["women's breast center beverly hills", 0, [22, 30]], ["women's care center beverly hills", 0, [22, 10, 30]], ["women's clinic beverly blvd", 0, [512, 546]], ["women's beverly clinic", 0, [751]]], {"i": "women's clinic beverly hills", "q": "iC_aldHixUV5o5uZpVRbFUaFdV0", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic beverly hills", "women's center beverly hills", "women's health clinic beverly hills", "women's health center beverly hills", "women's imaging center beverly hills", "women's breast center beverly hills", "women's care center beverly hills", "women's clinic beverly blvd", "women's beverly clinic"], "self_loops": [0], "tags": {"i": "women's clinic beverly hills", "q": "iC_aldHixUV5o5uZpVRbFUaFdV0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "dupont abortion clinic beverly hills", "datetime": "2026-03-12 19:47:06.805138", "source": "google", "data": ["dupont abortion clinic beverly hills", [["dupont abortion clinic beverly hills", 0, [22, 30]], ["closest abortion clinic near me", 0, [512, 390, 650]], ["safest abortion clinic", 0, [512, 390, 650]], ["dupont clinic los angeles", 0, [546, 649]], ["dupont clinic abortions", 0, [751]], ["dupont abortion clinic dc", 0, [546, 649]], ["dupont abortion clinic washington dc", 0, [512, 546]]], {"i": "dupont abortion clinic beverly hills", "q": "X86t1gn3cLLr1RKJp9cjzsXIIYk", "t": {"bpc": false, "tlw": false}}], "suggests": ["dupont abortion clinic beverly hills", "closest abortion clinic near me", "safest abortion clinic", "dupont clinic los angeles", "dupont clinic abortions", "dupont abortion clinic dc", "dupont abortion clinic washington dc"], "self_loops": [0], "tags": {"i": "dupont abortion clinic beverly hills", "q": "X86t1gn3cLLr1RKJp9cjzsXIIYk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic beverly hills", "datetime": "2026-03-12 19:47:08.185947", "source": "google", "data": ["women's health clinic beverly hills", [["women's health clinic beverly hills", 0, [512]], ["women's health center beverly hills", 0, [22, 10, 30]], ["women's health care beverly hills", 0, [22, 30]], ["rodeo drive women's health center beverly hills ca", 0, [22, 30]], ["women's clinic beverly blvd", 0, [512, 546]], ["women's clinic beverly hills", 0, [512, 546]], ["women's health beverly hills", 0, [512, 546]]], {"i": "women's health clinic beverly hills", "q": "SdcP4i-g8zc2jvkHmXTEcujg6gs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's health clinic beverly hills", "women's health center beverly hills", "women's health care beverly hills", "rodeo drive women's health center beverly hills ca", "women's clinic beverly blvd", "women's clinic beverly hills", "women's health beverly hills"], "self_loops": [0], "tags": {"i": "women's health clinic beverly hills", "q": "SdcP4i-g8zc2jvkHmXTEcujg6gs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "closest abortion clinics", "datetime": "2026-03-12 19:47:09.160618", "source": "google", "data": ["closest abortion clinics", [["closest abortion clinics near me", 0, [512]], ["closest abortion clinics", 0, [512]], ["closest abortion clinics to texas", 0, [22, 30]], ["closest abortion clinics near texas", 0, [22, 30]], ["nearby abortion clinics", 0, [22, 30]], ["nearest abortion clinics newton abbot", 0, [22, 10, 30]], ["closest abortion clinic to dallas texas", 0, [22, 30]], ["closest abortion clinic to memphis tn", 0, [22, 30]], ["closest abortion clinic to houston", 0, [22, 30]], ["closest abortion clinic to kentucky", 0, [22, 30]]], {"i": "closest abortion clinics", "q": "v_BbUw0vVJtLg41Tz1-8gAVn23I", "t": {"bpc": false, "tlw": false}}], "suggests": ["closest abortion clinics near me", "closest abortion clinics", "closest abortion clinics to texas", "closest abortion clinics near texas", "nearby abortion clinics", "nearest abortion clinics newton abbot", "closest abortion clinic to dallas texas", "closest abortion clinic to memphis tn", "closest abortion clinic to houston", "closest abortion clinic to kentucky"], "self_loops": [1], "tags": {"i": "closest abortion clinics", "q": "v_BbUw0vVJtLg41Tz1-8gAVn23I", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic beverly", "datetime": "2026-03-12 19:47:10.132346", "source": "google", "data": ["abortion clinic beverly", [["abortion clinic beverly hills", 0, [512]], ["abortion clinic beverly ma", 0, [512]], ["abortion clinic beverly", 0, [22, 30]], ["women's clinic beverly hills", 0, [22, 30]], ["women's clinic beverly blvd", 0, [22, 30]], ["abortion clinic beverley", 0, [22, 30]], ["dupont abortion clinic beverly hills", 0, [22, 30]], ["first abortion clinic in usa", 0, [512, 390, 650]], ["abortion beverly ma", 0, [546, 649]]], {"i": "abortion clinic beverly", "q": "3-hGLeTUfl7IkXH4KrY8rjcAHIY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic beverly hills", "abortion clinic beverly ma", "abortion clinic beverly", "women's clinic beverly hills", "women's clinic beverly blvd", "abortion clinic beverley", "dupont abortion clinic beverly hills", "first abortion clinic in usa", "abortion beverly ma"], "self_loops": [2], "tags": {"i": "abortion clinic beverly", "q": "3-hGLeTUfl7IkXH4KrY8rjcAHIY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic beverly ma", "datetime": "2026-03-12 19:47:10.944240", "source": "google", "data": ["abortion clinic beverly ma", [["abortion clinic beverly ma", 0, [512]], ["abortion clinic beverly", 0, [751]], ["abortion clinic beverly hills", 0, [512, 546]], ["abortion beverly ma", 0, [546, 649]]], {"i": "abortion clinic beverly ma", "q": "k0FCn3yQHPkZxqxuDwZsYTUXXNI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic beverly ma", "abortion clinic beverly", "abortion clinic beverly hills", "abortion beverly ma"], "self_loops": [0], "tags": {"i": "abortion clinic beverly ma", "q": "k0FCn3yQHPkZxqxuDwZsYTUXXNI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "beverly hills abortion", "datetime": "2026-03-12 19:47:11.736256", "source": "google", "data": ["beverly hills abortion", [["beverly hills abortion clinic", 0, [22, 30]], ["beverly hills abortion", 0, [22, 30]], ["beverly hills 90210 abortion", 0, [22, 30]], ["beverly hills 91210 cast", 0, [512, 390, 650]], ["beverly abortion", 0, [751]], ["beverly abortion clinic", 0, [512, 546]], ["beverly ma abortion clinic", 0, [751]]], {"i": "beverly hills abortion", "q": "Of4oKTZYqGBvIimR_WhTF5Fk8W8", "t": {"bpc": false, "tlw": false}}], "suggests": ["beverly hills abortion clinic", "beverly hills abortion", "beverly hills 90210 abortion", "beverly hills 91210 cast", "beverly abortion", "beverly abortion clinic", "beverly ma abortion clinic"], "self_loops": [1], "tags": {"i": "beverly hills abortion", "q": "Of4oKTZYqGBvIimR_WhTF5Fk8W8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic for abortions near me", "datetime": "2026-03-12 19:47:13.033286", "source": "google", "data": ["women's clinic for abortions near me", [["women's clinic for abortions near me", 0, [512]], ["women's center abortion near me", 0, [22, 30]], ["women's health abortion clinic near me", 0, [22, 10, 30]], ["women's health center abortion near me", 0, [22, 10, 30]], ["woman abortion clinic near me", 0, [22, 30]]], {"i": "women's clinic for abortions near me", "q": "AteFonJh4NGvEOTilXPbZd4h__I", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic for abortions near me", "women's center abortion near me", "women's health abortion clinic near me", "women's health center abortion near me", "woman abortion clinic near me"], "self_loops": [0], "tags": {"i": "women's clinic for abortions near me", "q": "AteFonJh4NGvEOTilXPbZd4h__I", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion bristol tn", "datetime": "2026-03-12 19:47:13.897233", "source": "google", "data": ["abortion bristol tn", [["abortion clinic bristol tn", 0, [22, 30]], ["abortion alternatives bristol tn", 0, [22, 30]], ["bristol tn abortion", 0, [22, 30]], ["how many weeks can you get an abortion in tennessee", 0, [512, 390, 650]], ["abortion bristol va", 0, [546, 649]]], {"i": "abortion bristol tn", "q": "spa1vvmgJ8oOO_5mTG6CVsnJTEI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic bristol tn", "abortion alternatives bristol tn", "bristol tn abortion", "how many weeks can you get an abortion in tennessee", "abortion bristol va"], "self_loops": [], "tags": {"i": "abortion bristol tn", "q": "spa1vvmgJ8oOO_5mTG6CVsnJTEI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic bristol virginia", "datetime": "2026-03-12 19:47:14.885103", "source": "google", "data": ["abortion clinic bristol virginia", [["abortion clinic bristol virginia", 0, [22, 30]], ["women's clinic bristol va", 0, [22, 30]], ["abortion clinic near bristol va", 0, [22, 30]], ["when can you have an abortion in virginia", 0, [512, 390, 650]], ["how early can you get an abortion in va", 0, [512, 390, 650]], ["abortion bristol va", 0, [546, 649]]], {"i": "abortion clinic bristol virginia", "q": "kGEBb2yKjpPQOdFnnMppC5qAjsQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic bristol virginia", "women's clinic bristol va", "abortion clinic near bristol va", "when can you have an abortion in virginia", "how early can you get an abortion in va", "abortion bristol va"], "self_loops": [0], "tags": {"i": "abortion clinic bristol virginia", "q": "kGEBb2yKjpPQOdFnnMppC5qAjsQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic bristol va", "datetime": "2026-03-12 19:47:15.716528", "source": "google", "data": ["abortion clinic bristol va", [["abortion clinic bristol va", 0, [512]], ["women's clinic bristol va", 0, [22, 30]], ["women's health clinic bristol va", 0, [22, 10, 30]], ["abortion clinic volunteer near me", 0, [512, 390, 650]], ["abortion clinic bristol virginia", 0, [546, 649]], ["abortion bristol va", 0, [546, 649]]], {"i": "abortion clinic bristol va", "q": "n9PI9HKvyd61tU_QSV1IlgzLFNk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic bristol va", "women's clinic bristol va", "women's health clinic bristol va", "abortion clinic volunteer near me", "abortion clinic bristol virginia", "abortion bristol va"], "self_loops": [0], "tags": {"i": "abortion clinic bristol va", "q": "n9PI9HKvyd61tU_QSV1IlgzLFNk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic bradenton fl", "datetime": "2026-03-12 19:47:17.181165", "source": "google", "data": ["abortion clinic bradenton fl", [["abortion clinic bradenton fl", 0, [22, 30]], ["women's clinic bradenton fl", 0, [22, 30]], ["free women's clinic bradenton fl", 0, [22, 10, 30]], ["abortion clinic bradenton", 0, [512, 546]], ["abortion clinic brandon fl", 0, [512, 546]]], {"i": "abortion clinic bradenton fl", "q": "3ptro9PkSqEwGuskANDaFpCI-J4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic bradenton fl", "women's clinic bradenton fl", "free women's clinic bradenton fl", "abortion clinic bradenton", "abortion clinic brandon fl"], "self_loops": [0], "tags": {"i": "abortion clinic bradenton fl", "q": "3ptro9PkSqEwGuskANDaFpCI-J4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic bradenton fl", "datetime": "2026-03-12 19:47:18.085048", "source": "google", "data": ["women's clinic bradenton fl", [["women's clinic bradenton fl", 0, [512]], ["women's health center bradenton fl", 0, [22, 30]], ["free women's clinic bradenton fl", 0, [22, 10, 30]], ["women's health bradenton fl", 0, [512, 546]], ["women's center bradenton fl", 0, [512, 546]], ["bradenton women's clinic", 0, [751]]], {"i": "women's clinic bradenton fl", "q": "dxOgxy3un9ry9-I5Xim15m5NqgA", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic bradenton fl", "women's health center bradenton fl", "free women's clinic bradenton fl", "women's health bradenton fl", "women's center bradenton fl", "bradenton women's clinic"], "self_loops": [0], "tags": {"i": "women's clinic bradenton fl", "q": "dxOgxy3un9ry9-I5Xim15m5NqgA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic bradenton", "datetime": "2026-03-12 19:47:19.324285", "source": "google", "data": ["women's clinic bradenton", [["women's clinic bradenton fl", 0, [512]], ["women's clinic bradenton", 0, [22, 30]], ["women's health center bradenton fl", 0, [22, 30]], ["free women's clinic bradenton fl", 0, [22, 10, 30]], ["women's center bradenton fl", 0, [512, 546]], ["women's health bradenton fl", 0, [512, 546]], ["women's center bradenton", 0, [512, 546]]], {"i": "women's clinic bradenton", "q": "FdE0CgJh3-sPTo2AgqijWAHUAVU", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic bradenton fl", "women's clinic bradenton", "women's health center bradenton fl", "free women's clinic bradenton fl", "women's center bradenton fl", "women's health bradenton fl", "women's center bradenton"], "self_loops": [1], "tags": {"i": "women's clinic bradenton", "q": "FdE0CgJh3-sPTo2AgqijWAHUAVU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic brandon fl", "datetime": "2026-03-12 19:47:20.438909", "source": "google", "data": ["abortion clinic brandon fl", [["abortion clinic brandon fl", 0, [512]], ["women's clinic brandon florida", 0, [22, 30]], ["women's care clinic brandon fl", 0, [22, 10, 30]], ["abortion brandon fl", 0, [751]], ["abortion clinic bradenton", 0, [512, 546]], ["abortion clinic near bradenton fl", 0, [751]]], {"i": "abortion clinic brandon fl", "q": "xLajXROcYUFOUUZKJ7hCurjb3Zw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic brandon fl", "women's clinic brandon florida", "women's care clinic brandon fl", "abortion brandon fl", "abortion clinic bradenton", "abortion clinic near bradenton fl"], "self_loops": [0], "tags": {"i": "abortion clinic brandon fl", "q": "xLajXROcYUFOUUZKJ7hCurjb3Zw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics boise idaho", "datetime": "2026-03-12 19:47:21.574908", "source": "google", "data": ["abortion clinics boise idaho", [["abortion clinics boise idaho", 0, [22, 30]], ["abortion clinics in boise", 0, [751]], ["abortion clinics idaho", 0, [751]]], {"i": "abortion clinics boise idaho", "q": "15Yoib4--ezpc-Foi5phzYeKsvE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics boise idaho", "abortion clinics in boise", "abortion clinics idaho"], "self_loops": [0], "tags": {"i": "abortion clinics boise idaho", "q": "15Yoib4--ezpc-Foi5phzYeKsvE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic boise", "datetime": "2026-03-12 19:47:22.786096", "source": "google", "data": ["women's clinic boise", [["women's clinic boise", 0, [512]], ["women's clinic boise st luke's", 0, [512]], ["boise va women's clinic", 0, [22, 10, 30]], ["women's health center boise", 0, [22, 10, 30]], ["women's wellness clinic boise", 0, [22, 30]], ["women's wellness clinic boise reviews", 0, [22, 30]], ["women's health clinic boise idaho", 0, [22, 30]], ["women's wellness clinic boise photos", 0, [22, 30]], ["women's clinic downtown boise", 0, [22, 30]], ["women's hormone clinic boise", 0, [22, 10, 30]]], {"i": "women's clinic boise", "q": "GJ4PszA5Wkg6RCnuUCtgQRZ-0KY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic boise", "women's clinic boise st luke's", "boise va women's clinic", "women's health center boise", "women's wellness clinic boise", "women's wellness clinic boise reviews", "women's health clinic boise idaho", "women's wellness clinic boise photos", "women's clinic downtown boise", "women's hormone clinic boise"], "self_loops": [0], "tags": {"i": "women's clinic boise", "q": "GJ4PszA5Wkg6RCnuUCtgQRZ-0KY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic boise st luke's", "datetime": "2026-03-12 19:47:23.875703", "source": "google", "data": ["women's clinic boise st luke's", [["women's clinic boise st luke's", 0, [512]], ["st luke's women's clinic boise idaho", 0, [22, 10, 30]], ["st luke's women's clinic boise fax number", 0, [22, 10, 30]], ["st luke's women's health clinic boise", 0, [22, 10, 30]], ["st luke's women's clinic downtown boise", 0, [22, 10, 30]], ["women's clinic boise id", 0, [546, 649]], ["women's clinic boise idaho", 0, [512, 546]]], {"i": "women's clinic boise st luke's", "q": "Ivyz7e1tJKeqb27NGdSgQwgbYqc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["women's clinic boise st luke's", "st luke's women's clinic boise idaho", "st luke's women's clinic boise fax number", "st luke's women's health clinic boise", "st luke's women's clinic downtown boise", "women's clinic boise id", "women's clinic boise idaho"], "self_loops": [0], "tags": {"i": "women's clinic boise st luke's", "q": "Ivyz7e1tJKeqb27NGdSgQwgbYqc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic boise id", "datetime": "2026-03-12 19:47:25.195183", "source": "google", "data": ["women's clinic boise id", [["women's clinic boise idaho", 0, [512]], ["women's health center boise id", 0, [22, 30]], ["women's health clinic boise idaho", 0, [22, 30]], ["women's wellness clinic boise id", 0, [22, 10, 30]], ["st luke's women's clinic boise idaho", 0, [22, 10, 30]], ["women's clinic boise id", 0, [546, 649]], ["women's clinic boise", 0, [512, 546]]], {"i": "women's clinic boise id", "q": "aim-mlu5W5Pjrshp7dvLn0oSHvM", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic boise idaho", "women's health center boise id", "women's health clinic boise idaho", "women's wellness clinic boise id", "st luke's women's clinic boise idaho", "women's clinic boise id", "women's clinic boise"], "self_loops": [5], "tags": {"i": "women's clinic boise id", "q": "aim-mlu5W5Pjrshp7dvLn0oSHvM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "boise va women's clinic", "datetime": "2026-03-12 19:47:26.683671", "source": "google", "data": ["boise va women's clinic", [["boise va women's clinic", 0, [512]], ["boise women's clinic", 0, [512, 546]], ["boise women's health", 0, [546, 649]], ["boise women's health associates", 0, [512, 546]], ["women's clinic boise idaho", 0, [512, 546]]], {"i": "boise va women's clinic", "q": "S92rbWQ2K7zVc0NodaohktR9lh4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["boise va women's clinic", "boise women's clinic", "boise women's health", "boise women's health associates", "women's clinic boise idaho"], "self_loops": [0], "tags": {"i": "boise va women's clinic", "q": "S92rbWQ2K7zVc0NodaohktR9lh4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic idaho", "datetime": "2026-03-12 19:47:28.073802", "source": "google", "data": ["abortion clinic idaho", [["abortion clinic idaho", 0, [512]], ["abortion clinic idaho falls", 0, [22, 30]], ["women's clinic idaho falls", 0, [22, 30]], ["women's clinic idaho", 0, [22, 10, 30]], ["abortion clinics boise idaho", 0, [22, 30]], ["abortion clinic for free near me", 0, [512, 390, 650]], ["abortion clinic near me now", 0, [512, 390, 650]]], {"i": "abortion clinic idaho", "q": "v8LS7d_BDLhaE8ckAkB2LrbheZE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic idaho", "abortion clinic idaho falls", "women's clinic idaho falls", "women's clinic idaho", "abortion clinics boise idaho", "abortion clinic for free near me", "abortion clinic near me now"], "self_loops": [0], "tags": {"i": "abortion clinic idaho", "q": "v8LS7d_BDLhaE8ckAkB2LrbheZE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics oakland ca", "datetime": "2026-03-12 19:47:29.356006", "source": "google", "data": ["abortion clinics oakland ca", [["abortion clinics oakland ca", 0, [22, 30]], ["abortion time limit california", 0, [512, 390, 650]], ["abortion options in california", 0, [512, 390, 650]], ["abortion legal in california", 0, [512, 390, 650]], ["abortion clinic oakland county", 0, [751]], ["abortion clinic oakland park", 0, [546, 649]]], {"i": "abortion clinics oakland ca", "q": "hpVn_YpXU84xCea2RiJzho4_TBk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics oakland ca", "abortion time limit california", "abortion options in california", "abortion legal in california", "abortion clinic oakland county", "abortion clinic oakland park"], "self_loops": [0], "tags": {"i": "abortion clinics oakland ca", "q": "hpVn_YpXU84xCea2RiJzho4_TBk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health center oakland", "datetime": "2026-03-12 19:47:30.501773", "source": "google", "data": ["women's health center oakland", [["women's health center oakland", 0, [22, 30]], ["women's health clinic oakland", 0, [22, 30]], ["oakland feminist women's health center", 0, [22, 30]], ["women's health oakland", 0, [546, 649]], ["women's health center oakdale ca", 0, [751]]], {"i": "women's health center oakland", "q": "InZgTDAd4-JxsYptUsQC9bM93PM", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health center oakland", "women's health clinic oakland", "oakland feminist women's health center", "women's health oakland", "women's health center oakdale ca"], "self_loops": [0], "tags": {"i": "women's health center oakland", "q": "InZgTDAd4-JxsYptUsQC9bM93PM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic oakland", "datetime": "2026-03-12 19:47:31.902525", "source": "google", "data": ["women's health clinic oakland", [["women's health clinic oakland", 0, [22, 30]], ["women's health center oakland", 0, [22, 30]], ["women's health oakland", 0, [546, 649]], ["women's clinic oakland", 0, [512, 546]], ["women's health clinic oakdale ca", 0, [751]]], {"i": "women's health clinic oakland", "q": "qYor8dBw6KgBNDZ9see_NvygXCo", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health clinic oakland", "women's health center oakland", "women's health oakland", "women's clinic oakland", "women's health clinic oakdale ca"], "self_loops": [0], "tags": {"i": "women's health clinic oakland", "q": "qYor8dBw6KgBNDZ9see_NvygXCo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "magee womens clinic oakland", "datetime": "2026-03-12 19:47:33.031900", "source": "google", "data": ["magee womens clinic oakland", [["magee womens clinic oakland", 0, [22, 30]], ["magee womens hospital oakland", 0, [22, 30]], ["magee womens hospital oakland pa", 0, [22, 30]], ["upmc magee womens hospital oakland", 0, [22, 30]], ["magee-womens hospital outpatient clinic oakland", 0, [546, 649]], ["magee oakland clinic", 0, [546, 649]]], {"i": "magee womens clinic oakland", "q": "ZsCTyG9WtXUQl6wnw2GaBCzZK5k", "t": {"bpc": false, "tlw": false}}], "suggests": ["magee womens clinic oakland", "magee womens hospital oakland", "magee womens hospital oakland pa", "upmc magee womens hospital oakland", "magee-womens hospital outpatient clinic oakland", "magee oakland clinic"], "self_loops": [0], "tags": {"i": "magee womens clinic oakland", "q": "ZsCTyG9WtXUQl6wnw2GaBCzZK5k", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic oakdale ca", "datetime": "2026-03-12 19:47:34.368739", "source": "google", "data": ["women's clinic oakdale ca", [["women's clinic oakdale ca", 0, [22, 30]], ["women's health center oakdale ca", 0, [22, 30]], ["women's clinic of oakdale", 0, [512, 546]], ["women's health clinic oakdale ca", 0, [751]], ["women's clinic oakdale la", 0, [512, 546]], ["women's clinic of oakdale oakdale la 71463", 0, [751]]], {"i": "women's clinic oakdale ca", "q": "6IoO8VtQZ996iYoJWQjodVLjRf8", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic oakdale ca", "women's health center oakdale ca", "women's clinic of oakdale", "women's health clinic oakdale ca", "women's clinic oakdale la", "women's clinic of oakdale oakdale la 71463"], "self_loops": [0], "tags": {"i": "women's clinic oakdale ca", "q": "6IoO8VtQZ996iYoJWQjodVLjRf8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic oak lawn", "datetime": "2026-03-12 19:47:35.568785", "source": "google", "data": ["women's clinic oak lawn", [["women's clinic oak lawn", 0, [22, 30]], ["women's health center oak lawn", 0, [22, 30]], ["women's health center oak lawn il", 0, [22, 30]], ["women's health clinic oak lawn", 0, [22, 10, 30]], ["women's breast health center oak lawn", 0, [22, 30]], ["advocate women's health center oak lawn", 0, [22, 30]], ["women's clinic oak cliff", 0, [751]], ["women's clinic oakdale la", 0, [512, 546]], ["women's clinic of oakdale", 0, [512, 546]], ["women's health oak lawn il", 0, [546, 649]]], {"i": "women's clinic oak lawn", "q": "mdxTJQCR8FZkZQMI6dsIPSMQpUM", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic oak lawn", "women's health center oak lawn", "women's health center oak lawn il", "women's health clinic oak lawn", "women's breast health center oak lawn", "advocate women's health center oak lawn", "women's clinic oak cliff", "women's clinic oakdale la", "women's clinic of oakdale", "women's health oak lawn il"], "self_loops": [0], "tags": {"i": "women's clinic oak lawn", "q": "mdxTJQCR8FZkZQMI6dsIPSMQpUM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic oakland county ca", "datetime": "2026-03-12 19:47:36.400007", "source": "google", "data": ["abortion clinic oakland county ca", [["abortion clinic oakland county california", 33, [160], {"a": "abortion clinic oakland county ", "b": "california"}], ["abortion clinic oakland county case search", 33, [299], {"a": "abortion clinic oakland county ", "b": "case search"}], ["abortion clinic oakland county case lookup", 33, [299], {"a": "abortion clinic oakland county ", "b": "case lookup"}], ["abortion clinic oakland county case evaluation phone", 33, [299], {"a": "abortion clinic oakland county ", "b": "case evaluation phone"}], ["abortion clinic oakland county case", 33, [671], {"a": "abortion clinic oakland county ", "b": "case"}]], {"i": "abortion clinic oakland county ca", "q": "sdd3887AhAJwQ19TjOtpUrMw7DY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic oakland county california", "abortion clinic oakland county case search", "abortion clinic oakland county case lookup", "abortion clinic oakland county case evaluation phone", "abortion clinic oakland county case"], "self_loops": [], "tags": {"i": "abortion clinic oakland county ca", "q": "sdd3887AhAJwQ19TjOtpUrMw7DY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic oakland county california", "datetime": "2026-03-12 19:47:37.719000", "source": "google", "data": ["abortion clinic oakland county california", [["abortion clinic oakland county california 2024", 33, [160], {"a": "abortion clinic oakland county ", "b": "california 2024"}], ["abortion clinic oakland county california 2023", 33, [160], {"a": "abortion clinic oakland county ", "b": "california 2023"}], ["abortion clinic oakland county california reddit", 33, [160], {"a": "abortion clinic oakland county ", "b": "california reddit"}], ["abortion clinic oakland county california county", 33, [160], {"a": "abortion clinic oakland county ", "b": "california county"}], ["abortion clinic oakland county california medicaid", 33, [160], {"a": "abortion clinic oakland county ", "b": "california medicaid"}]], {"i": "abortion clinic oakland county california", "q": "C6GYFXrPEDiw2PUk0wKRC7plYBs", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic oakland county california 2024", "abortion clinic oakland county california 2023", "abortion clinic oakland county california reddit", "abortion clinic oakland county california county", "abortion clinic oakland county california medicaid"], "self_loops": [], "tags": {"i": "abortion clinic oakland county california", "q": "C6GYFXrPEDiw2PUk0wKRC7plYBs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic oakland county jail", "datetime": "2026-03-12 19:47:38.540562", "source": "google", "data": ["abortion clinic oakland county jail", [["abortion clinic oakland county jails", 33, [160], {"a": "abortion clinic oakland county ", "b": "jails"}], ["abortion clinic oakland county jail inmate search", 33, [160], {"a": "abortion clinic oakland county ", "b": "jail inmate search"}], ["abortion clinic oakland county jail ca", 33, [160], {"a": "abortion clinic oakland county ", "b": "jail ca"}], ["abortion clinic oakland county jail california", 33, [160], {"a": "abortion clinic oakland county ", "b": "jail california"}], ["abortion clinic oakland county jail records", 33, [160], {"a": "abortion clinic oakland county ", "b": "jail records"}], ["abortion clinic oakland county jail inmates", 33, [299], {"a": "abortion clinic oakland county ", "b": "jail inmates"}], ["abortion clinic oakland county jail medical", 33, [671], {"a": "abortion clinic oakland county ", "b": "jail medical"}], ["abortion clinic oakland county jail programs", 33, [671], {"a": "abortion clinic oakland county ", "b": "jail programs"}], ["abortion clinic oakland county jail conditions", 33, [671], {"a": "abortion clinic oakland county ", "b": "jail conditions"}], ["abortion clinic oakland county jail annex", 33, [671], {"a": "abortion clinic oakland county ", "b": "jail annex"}]], {"i": "abortion clinic oakland county jail", "q": "8dLC69leAXtae4NISUlO-K_2_J0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic oakland county jails", "abortion clinic oakland county jail inmate search", "abortion clinic oakland county jail ca", "abortion clinic oakland county jail california", "abortion clinic oakland county jail records", "abortion clinic oakland county jail inmates", "abortion clinic oakland county jail medical", "abortion clinic oakland county jail programs", "abortion clinic oakland county jail conditions", "abortion clinic oakland county jail annex"], "self_loops": [], "tags": {"i": "abortion clinic oakland county jail", "q": "8dLC69leAXtae4NISUlO-K_2_J0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic oakland county michigan", "datetime": "2026-03-12 19:47:39.611081", "source": "google", "data": ["abortion clinic oakland county michigan", [["abortion clinic oakland county michigan 2024", 33, [160], {"a": "abortion clinic oakland county ", "b": "michigan 2024"}], ["abortion clinic oakland county michigan 2023", 33, [160], {"a": "abortion clinic oakland county ", "b": "michigan 2023"}], ["abortion clinic oakland county michigan reddit", 33, [160], {"a": "abortion clinic oakland county ", "b": "michigan reddit"}], ["abortion clinic oakland county michigan abortion clinic", 33, [160], {"a": "abortion clinic oakland county ", "b": "michigan abortion clinic"}], ["abortion clinic oakland county michigan medicaid", 33, [160], {"a": "abortion clinic oakland county ", "b": "michigan medicaid"}], ["abortion clinic oakland county michigan", 33, [299], {"a": "abortion clinic oakland county ", "b": "michigan"}], ["abortion clinic oakland county michigan court records", 33, [299], {"a": "abortion clinic oakland county ", "b": "michigan court records"}]], {"i": "abortion clinic oakland county michigan", "q": "gfQAyvmHZ5tLISuQYT6IWI7pi1U", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic oakland county michigan 2024", "abortion clinic oakland county michigan 2023", "abortion clinic oakland county michigan reddit", "abortion clinic oakland county michigan abortion clinic", "abortion clinic oakland county michigan medicaid", "abortion clinic oakland county michigan", "abortion clinic oakland county michigan court records"], "self_loops": [5], "tags": {"i": "abortion clinic oakland county michigan", "q": "gfQAyvmHZ5tLISuQYT6IWI7pi1U", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic oakland county health", "datetime": "2026-03-12 19:47:40.557389", "source": "google", "data": ["abortion clinic oakland county health", [["abortion clinic oakland county health and human services", 33, [160], {"a": "abortion clinic oakland county ", "b": "health and human services"}], ["abortion clinic oakland county health care", 33, [160], {"a": "abortion clinic oakland county ", "b": "health care"}], ["abortion clinic oakland county health department", 33, [160], {"a": "abortion clinic oakland county ", "b": "health department"}], ["abortion clinic oakland county health center", 33, [160], {"a": "abortion clinic oakland county ", "b": "health center"}], ["abortion clinic oakland county health district", 33, [160], {"a": "abortion clinic oakland county ", "b": "health district"}], ["abortion clinic oakland county health division", 33, [299], {"a": "abortion clinic oakland county ", "b": "health division"}], ["abortion clinic oakland county health", 33, [671], {"a": "abortion clinic oakland county ", "b": "health"}]], {"i": "abortion clinic oakland county health", "q": "H1tnyfvkSmDXocqEmrdNPzvwIFw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic oakland county health and human services", "abortion clinic oakland county health care", "abortion clinic oakland county health department", "abortion clinic oakland county health center", "abortion clinic oakland county health district", "abortion clinic oakland county health division", "abortion clinic oakland county health"], "self_loops": [6], "tags": {"i": "abortion clinic oakland county health", "q": "H1tnyfvkSmDXocqEmrdNPzvwIFw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic oakland county mi", "datetime": "2026-03-12 19:47:41.747517", "source": "google", "data": ["abortion clinic oakland county mi", [["abortion clinic oakland county michigan", 33, [160], {"a": "abortion clinic oakland county ", "b": "michigan"}], ["abortion clinic oakland county missouri", 33, [160], {"a": "abortion clinic oakland county ", "b": "missouri"}], ["abortion clinic oakland county minnesota", 33, [160], {"a": "abortion clinic oakland county ", "b": "minnesota"}], ["abortion clinic oakland county minor", 33, [160], {"a": "abortion clinic oakland county ", "b": "minor"}], ["abortion clinic oakland county mississippi", 33, [160], {"a": "abortion clinic oakland county ", "b": "mississippi"}], ["abortion clinic oakland county mi", 33, [299], {"a": "abortion clinic oakland county ", "b": "mi"}]], {"i": "abortion clinic oakland county mi", "q": "jtBTDP9B5QVkISTz01Du1TKlmRg", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic oakland county michigan", "abortion clinic oakland county missouri", "abortion clinic oakland county minnesota", "abortion clinic oakland county minor", "abortion clinic oakland county mississippi", "abortion clinic oakland county mi"], "self_loops": [5], "tags": {"i": "abortion clinic oakland county mi", "q": "jtBTDP9B5QVkISTz01Du1TKlmRg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic oakland county obstetrics and gynecology", "datetime": "2026-03-12 19:47:43.003538", "source": "google", "data": ["abortion clinic oakland county obstetrics and gynecology", [["abortion clinic oakland county obstetrics and gynecology clinic", 33, [160], {"a": "abortion clinic oakland county obstetrics and ", "b": "gynecology clinic"}], ["abortion clinic oakland county obstetrics and gynecology department", 33, [160], {"a": "abortion clinic oakland county obstetrics and ", "b": "gynecology department"}], ["abortion clinic oakland county obstetrics and gynecology san jose", 33, [160], {"a": "abortion clinic oakland county obstetrics and ", "b": "gynecology san jose"}], ["abortion clinic oakland county obstetrics and gynecology medical group", 33, [160], {"a": "abortion clinic oakland county obstetrics and ", "b": "gynecology medical group"}], ["abortion clinic oakland county obstetrics and gynecology san francisco", 33, [160], {"a": "abortion clinic oakland county obstetrics and ", "b": "gynecology san francisco"}], ["abortion clinic oakland county obstetrics and gynecology", 33, [299], {"a": "abortion clinic oakland county obstetrics and ", "b": "gynecology"}], ["abortion clinic oakland county obstetrics and gynecology associates", 33, [299], {"a": "abortion clinic oakland county obstetrics and ", "b": "gynecology associates"}]], {"i": "abortion clinic oakland county obstetrics and gynecology", "q": "JFHzIxN4uW4vECQSRfhTQvyoK0k", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic oakland county obstetrics and gynecology clinic", "abortion clinic oakland county obstetrics and gynecology department", "abortion clinic oakland county obstetrics and gynecology san jose", "abortion clinic oakland county obstetrics and gynecology medical group", "abortion clinic oakland county obstetrics and gynecology san francisco", "abortion clinic oakland county obstetrics and gynecology", "abortion clinic oakland county obstetrics and gynecology associates"], "self_loops": [5], "tags": {"i": "abortion clinic oakland county obstetrics and gynecology", "q": "JFHzIxN4uW4vECQSRfhTQvyoK0k", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic oakland county obgyn", "datetime": "2026-03-12 19:47:44.438456", "source": "google", "data": ["abortion clinic oakland county obgyn", [["abortion clinic oakland county gyn clinic", 33, [160, 10], {"a": "abortion clinic oakland county ", "b": "gyn clinic"}], ["abortion clinic oakland county gyn bay area", 33, [160, 10], {"a": "abortion clinic oakland county ", "b": "gyn bay area"}], ["abortion clinic oakland county gyne", 33, [160, 10], {"a": "abortion clinic oakland county ", "b": "gyne"}], ["abortion clinic oakland county gyn doctors", 33, [160, 10], {"a": "abortion clinic oakland county ", "b": "gyn doctors"}], ["abortion clinic oakland county gyn san francisco", 33, [160, 10], {"a": "abortion clinic oakland county ", "b": "gyn san francisco"}], ["abortion clinic oakland county ob gyn", 33, [299], {"a": "abortion clinic oakland county ", "b": "ob gyn"}]], {"i": "abortion clinic oakland county obgyn", "o": "abortion clinic oakland county ob gyn", "p": "abortion clinic oakland county obgyn", "q": "_ny55qaBh0c24TGdwNDpupsfHfE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic oakland county gyn clinic", "abortion clinic oakland county gyn bay area", "abortion clinic oakland county gyne", "abortion clinic oakland county gyn doctors", "abortion clinic oakland county gyn san francisco", "abortion clinic oakland county ob gyn"], "self_loops": [], "tags": {"i": "abortion clinic oakland county obgyn", "o": "abortion clinic oakland county ob gyn", "p": "abortion clinic oakland county obgyn", "q": "_ny55qaBh0c24TGdwNDpupsfHfE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "hope clinic illinois abortion cost", "datetime": "2026-03-12 19:47:45.768592", "source": "google", "data": ["hope clinic illinois abortion cost", [["hope clinic illinois abortion cost", 0, [512]], ["hope clinic abortion cost", 0, [512, 390, 650]], ["are abortions free in illinois", 0, [512, 390, 650]], ["hope clinic illinois reviews", 0, [546, 649]], ["hope illinois abortion clinic", 0, [512, 546]], ["hope clinic illinois", 0, [512, 546]]], {"i": "hope clinic illinois abortion cost", "q": "47V3jncrRAVSnH_a0odjkhjsces", "t": {"bpc": false, "tlw": false}}], "suggests": ["hope clinic illinois abortion cost", "hope clinic abortion cost", "are abortions free in illinois", "hope clinic illinois reviews", "hope illinois abortion clinic", "hope clinic illinois"], "self_loops": [0], "tags": {"i": "hope clinic illinois abortion cost", "q": "47V3jncrRAVSnH_a0odjkhjsces", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are abortions free in illinois", "datetime": "2026-03-12 19:47:46.802657", "source": "google", "data": ["are abortions free in illinois", [["are abortions free in illinois", 0, [512]], ["are abortions free in il", 0, [22, 30]], ["are abortion pills free in illinois", 0, [22, 30]], ["are abortions in illinois legal", 0, [751]], ["are abortions illegal in illinois", 0, [512, 546]], ["are abortions illegal now in illinois", 0, [751]]], {"i": "are abortions free in illinois", "q": "h3Y5ABYKgkuz6YF_iMx2mDDOma4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["are abortions free in illinois", "are abortions free in il", "are abortion pills free in illinois", "are abortions in illinois legal", "are abortions illegal in illinois", "are abortions illegal now in illinois"], "self_loops": [0], "tags": {"i": "are abortions free in illinois", "q": "h3Y5ABYKgkuz6YF_iMx2mDDOma4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic chicago cost", "datetime": "2026-03-12 19:47:48.235130", "source": "google", "data": ["abortion clinic chicago cost", [["abortion clinic chicago cost", 0, [512]], ["abortion clinic chicago free", 0, [512, 546]], ["chicago abortion clinics prices", 0, [751]], ["abortion clinic chicago illinois", 0, [512, 546]], ["abortion clinic chicago downtown", 0, [546, 649]]], {"i": "abortion clinic chicago cost", "q": "6qaxxvywiMXsOcTbwtVrYqLT_uM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic chicago cost", "abortion clinic chicago free", "chicago abortion clinics prices", "abortion clinic chicago illinois", "abortion clinic chicago downtown"], "self_loops": [0], "tags": {"i": "abortion clinic chicago cost", "q": "6qaxxvywiMXsOcTbwtVrYqLT_uM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic in chicago illinois", "datetime": "2026-03-12 19:47:49.470663", "source": "google", "data": ["abortion clinic in chicago illinois", [["abortion clinic in chicago illinois", 0, [512]], ["women's clinic in chicago illinois", 0, [22, 30]], ["abortion centers in chicago illinois", 0, [22, 30]], ["abortion clinics in chicago area", 0, [22, 30]], ["abortion clinic.near me. chicago illinois", 0, [22, 10, 30]], ["abortion clinic on washington in chicago il", 0, [22, 30]], ["abortion clinic downtown chicago il", 0, [22, 30]], ["abortion clinic near chicago il", 0, [22, 30]], ["abortion clinic in chicago", 0, [512, 546]]], {"i": "abortion clinic in chicago illinois", "q": "EI14jR5JpWO8Xwj2_5fFoRzBw8I", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic in chicago illinois", "women's clinic in chicago illinois", "abortion centers in chicago illinois", "abortion clinics in chicago area", "abortion clinic.near me. chicago illinois", "abortion clinic on washington in chicago il", "abortion clinic downtown chicago il", "abortion clinic near chicago il", "abortion clinic in chicago"], "self_loops": [0], "tags": {"i": "abortion clinic in chicago illinois", "q": "EI14jR5JpWO8Xwj2_5fFoRzBw8I", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "low cost abortion clinics in illinois", "datetime": "2026-03-12 19:47:50.553594", "source": "google", "data": ["low cost abortion clinics in illinois", [["low cost abortion clinics in illinois 2024", 33, [160], {"a": "low cost abortion clinics in ", "b": "illinois 2024"}], ["low cost abortion clinics in illinois 2023", 33, [160], {"a": "low cost abortion clinics in ", "b": "illinois 2023"}], ["low cost abortion clinics in illinois near me", 33, [160], {"a": "low cost abortion clinics in ", "b": "illinois near me"}], ["low cost abortion clinics in illinois and indiana", 33, [160], {"a": "low cost abortion clinics in ", "b": "illinois and indiana"}], ["low cost abortion clinics in illinois and illinois", 33, [160], {"a": "low cost abortion clinics in ", "b": "illinois and illinois"}], ["low cost abortion clinics in illinois free", 33, [671], {"a": "low cost abortion clinics in ", "b": "illinois free"}], ["low cost abortion clinics in illinois that accept medicaid", 33, [671], {"a": "low cost abortion clinics in ", "b": "illinois that accept medicaid"}], ["low cost abortion clinics in il", 33, [671], {"a": "low cost abortion clinics in ", "b": "il"}], ["low cost abortion clinics in illinois map", 33, [671], {"a": "low cost abortion clinics in ", "b": "illinois map"}], ["low cost abortion clinics in illinois without insurance", 33, [671], {"a": "low cost abortion clinics in ", "b": "illinois without insurance"}]], {"i": "low cost abortion clinics in illinois", "q": "zRnEtzX0gpEqyzIvuzpF6bdgkPk", "t": {"bpc": false, "tlw": false}}], "suggests": ["low cost abortion clinics in illinois 2024", "low cost abortion clinics in illinois 2023", "low cost abortion clinics in illinois near me", "low cost abortion clinics in illinois and indiana", "low cost abortion clinics in illinois and illinois", "low cost abortion clinics in illinois free", "low cost abortion clinics in illinois that accept medicaid", "low cost abortion clinics in il", "low cost abortion clinics in illinois map", "low cost abortion clinics in illinois without insurance"], "self_loops": [], "tags": {"i": "low cost abortion clinics in illinois", "q": "zRnEtzX0gpEqyzIvuzpF6bdgkPk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic carbondale il", "datetime": "2026-03-12 19:47:51.815586", "source": "google", "data": ["abortion clinic carbondale il", [["abortion clinic carbondale illinois", 0, [512]], ["women's clinic carbondale il", 0, [22, 30]], ["choices abortion clinic carbondale il", 0, [22, 30]], ["abortion clinic near carbondale il", 0, [22, 30]], ["alamo women's clinic carbondale il", 0, [22, 10, 30]], ["is there an abortion clinic in carbondale illinois", 0, [22, 30]], ["illinois abortion clinic near me", 0, [512, 390, 650]], ["abortion clinic carbondale", 0, [512, 546]]], {"i": "abortion clinic carbondale il", "q": "U4s_L_wWu792J0HDN9ycosK5wDw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic carbondale illinois", "women's clinic carbondale il", "choices abortion clinic carbondale il", "abortion clinic near carbondale il", "alamo women's clinic carbondale il", "is there an abortion clinic in carbondale illinois", "illinois abortion clinic near me", "abortion clinic carbondale"], "self_loops": [], "tags": {"i": "abortion clinic carbondale il", "q": "U4s_L_wWu792J0HDN9ycosK5wDw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic carbondale il", "datetime": "2026-03-12 19:47:53.138374", "source": "google", "data": ["women's clinic carbondale il", [["women's clinic carbondale il", 0, [512]], ["women's health center carbondale il", 0, [22, 30]], ["alamo women's clinic carbondale il", 0, [22, 10, 30]], ["alamo women's clinic of illinois carbondale reviews", 0, [22, 30]], ["women's health carbondale il", 0, [512, 546]], ["women's health center - carbondale", 0, [546, 649]], ["women's center carbondale illinois", 0, [512, 546]]], {"i": "women's clinic carbondale il", "q": "_XA0pVK2WyEQ2DJ0dwpQSA8hln4", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic carbondale il", "women's health center carbondale il", "alamo women's clinic carbondale il", "alamo women's clinic of illinois carbondale reviews", "women's health carbondale il", "women's health center - carbondale", "women's center carbondale illinois"], "self_loops": [0], "tags": {"i": "women's clinic carbondale il", "q": "_XA0pVK2WyEQ2DJ0dwpQSA8hln4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "choices abortion clinic carbondale il", "datetime": "2026-03-12 19:47:54.101053", "source": "google", "data": ["choices abortion clinic carbondale il", [["choices abortion clinic carbondale il", 0, [22, 30]], ["safest abortion clinic", 0, [512, 390, 650]], ["abortion options in illinois", 0, [512, 390, 650]], ["choices clinic carbondale illinois", 0, [751]], ["choices abortion clinic carbondale", 0, [751]], ["choices carbondale illinois", 0, [512, 546]], ["choices carbondale il", 0, [512, 546]]], {"i": "choices abortion clinic carbondale il", "q": "ikBpOktBbY1upxUAAsTbllCSke0", "t": {"bpc": false, "tlw": false}}], "suggests": ["choices abortion clinic carbondale il", "safest abortion clinic", "abortion options in illinois", "choices clinic carbondale illinois", "choices abortion clinic carbondale", "choices carbondale illinois", "choices carbondale il"], "self_loops": [0], "tags": {"i": "choices abortion clinic carbondale il", "q": "ikBpOktBbY1upxUAAsTbllCSke0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "illinois abortion clinic near me", "datetime": "2026-03-12 19:47:55.556682", "source": "google", "data": ["illinois abortion clinic near me", [["illinois abortion clinic near me", 0, [512]], ["abortion clinic near me il", 0, [22, 30]], ["abortion clinic near metropolis il", 0, [22, 30]], ["abortion clinic.near me. chicago illinois", 0, [22, 10, 30]], ["closest abortion clinic near me in illinois", 0, [22, 30]], ["are abortions free in illinois", 0, [512, 390, 650]], ["illinois abortion clinic locations", 0, [546, 649]]], {"i": "illinois abortion clinic near me", "q": "kCjnjXvmL-UhtGi6w2Bs166W8JE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["illinois abortion clinic near me", "abortion clinic near me il", "abortion clinic near metropolis il", "abortion clinic.near me. chicago illinois", "closest abortion clinic near me in illinois", "are abortions free in illinois", "illinois abortion clinic locations"], "self_loops": [0], "tags": {"i": "illinois abortion clinic near me", "q": "kCjnjXvmL-UhtGi6w2Bs166W8JE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic in carbondale", "datetime": "2026-03-12 19:47:56.670286", "source": "google", "data": ["abortion clinic in carbondale", [["abortion clinic in carbondale illinois", 0, [512]], ["abortion clinic in carbondale", 0, [22, 30]], ["abortion clinic near carbondale il", 0, [22, 30]], ["alamo women's clinic in carbondale illinois", 0, [22, 30]], ["alamo women's clinic carbondale", 0, [22, 10, 30]], ["women's clinic carbondale il", 0, [22, 30]], ["carbondale women's clinic", 0, [22, 10, 30]], ["is there an abortion clinic in carbondale illinois", 0, [22, 30]]], {"i": "abortion clinic in carbondale", "q": "Y79zP3NeuZohqzblkzHtBRU-PmY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic in carbondale illinois", "abortion clinic in carbondale", "abortion clinic near carbondale il", "alamo women's clinic in carbondale illinois", "alamo women's clinic carbondale", "women's clinic carbondale il", "carbondale women's clinic", "is there an abortion clinic in carbondale illinois"], "self_loops": [1], "tags": {"i": "abortion clinic in carbondale", "q": "Y79zP3NeuZohqzblkzHtBRU-PmY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me il", "datetime": "2026-03-12 19:47:58.129910", "source": "google", "data": ["abortion clinic near me il", [["abortion clinic near me illinois", 0, [512]], ["abortion clinic near me ilford", 0, [22, 30]], ["abortion clinic near me chicago il", 0, [22, 30]], ["abortion clinic near illinois", 0, [22, 30]], ["abortion clinic near ilford", 0, [22, 30]], ["abortion clinic near iloilo city iloilo", 0, [22, 30]], ["closest abortion clinic near me in illinois", 0, [22, 30]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic near me and prices", 0, [512, 390, 650]]], {"i": "abortion clinic near me il", "q": "sgxJmrYGb8ch0H1I68gtgf73DtE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic near me illinois", "abortion clinic near me ilford", "abortion clinic near me chicago il", "abortion clinic near illinois", "abortion clinic near ilford", "abortion clinic near iloilo city iloilo", "closest abortion clinic near me in illinois", "abortion clinic near me now", "abortion clinic near me for free", "abortion clinic near me and prices"], "self_loops": [], "tags": {"i": "abortion clinic near me il", "q": "sgxJmrYGb8ch0H1I68gtgf73DtE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near metropolis il", "datetime": "2026-03-12 19:47:59.082758", "source": "google", "data": ["abortion clinic near metropolis il", [["abortion clinic near metropolis il", 0, [22, 30]], ["abortion clinic near me illinois", 0, [512, 546]], ["abortion clinic near me chicago", 0, [512, 546]], ["abortion clinic near chicago il", 0, [751]], ["abortion clinic near matteson il", 0, [751]]], {"i": "abortion clinic near metropolis il", "q": "WHACkxc1PVDYjp73B7qQz-HWWZw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near metropolis il", "abortion clinic near me illinois", "abortion clinic near me chicago", "abortion clinic near chicago il", "abortion clinic near matteson il"], "self_loops": [0], "tags": {"i": "abortion clinic near metropolis il", "q": "WHACkxc1PVDYjp73B7qQz-HWWZw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic.near me. chicago illinois", "datetime": "2026-03-12 19:48:00.366156", "source": "google", "data": ["abortion clinic.near me. chicago illinois", [["abortion clinic.near me. chicago illinois", 0, [22, 30]], ["abortion clinic near chicago il", 0, [22, 30]], ["abortion clinic chicago near me", 0, [512, 546]], ["abortion clinic near me illinois", 0, [512, 546]]], {"i": "abortion clinic.near me. chicago illinois", "q": "6fiJUXmp5crKXmP3QQIDX2FZEms", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic.near me. chicago illinois", "abortion clinic near chicago il", "abortion clinic chicago near me", "abortion clinic near me illinois"], "self_loops": [0], "tags": {"i": "abortion clinic.near me. chicago illinois", "q": "6fiJUXmp5crKXmP3QQIDX2FZEms", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "closest abortion clinic near me in illinois", "datetime": "2026-03-12 19:48:01.496732", "source": "google", "data": ["closest abortion clinic near me in illinois", [["closest abortion clinic near me in illinois", 0, [22, 30]], ["closest abortion clinic near me", 0, [512, 390, 650]], ["illinois abortion clinic near me", 0, [512, 390, 650]], ["nearest abortion clinic in illinois", 0, [546, 649]], ["illinois abortion clinic locations", 0, [546, 649]]], {"i": "closest abortion clinic near me in illinois", "q": "i79Tss6Zwp6zsqMgmpAUXApdw_A", "t": {"bpc": false, "tlw": false}}], "suggests": ["closest abortion clinic near me in illinois", "closest abortion clinic near me", "illinois abortion clinic near me", "nearest abortion clinic in illinois", "illinois abortion clinic locations"], "self_loops": [0], "tags": {"i": "closest abortion clinic near me in illinois", "q": "i79Tss6Zwp6zsqMgmpAUXApdw_A", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near chicago il", "datetime": "2026-03-12 19:48:02.606277", "source": "google", "data": ["abortion clinic near chicago il", [["abortion clinic near chicago il", 0, [22, 30]], ["abortion clinic near downtown chicago il", 0, [22, 30]], ["abortion clinic near me chicago il", 0, [22, 30]], ["abortion clinic chicago illinois", 0, [22, 30]], ["illinois abortion clinic near me", 0, [512, 390, 650]], ["abortion clinic chicago near me", 0, [512, 546]]], {"i": "abortion clinic near chicago il", "q": "Jy4ALNKMkgotPCjdpk5DsNLVg88", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near chicago il", "abortion clinic near downtown chicago il", "abortion clinic near me chicago il", "abortion clinic chicago illinois", "illinois abortion clinic near me", "abortion clinic chicago near me"], "self_loops": [0], "tags": {"i": "abortion clinic near chicago il", "q": "Jy4ALNKMkgotPCjdpk5DsNLVg88", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "illinois abortion clinic locations", "datetime": "2026-03-12 19:48:03.434226", "source": "google", "data": ["illinois abortion clinic locations", [["illinois abortion clinic locations", 0, [22, 30]], ["illinois abortion clinic near me", 0, [512, 390, 650]], ["are abortions free in illinois", 0, [512, 390, 650]], ["illinois abortion clinic closest to me", 0, [751]], ["illinois abortion clinics map", 0, [751]]], {"i": "illinois abortion clinic locations", "q": "RQ1BojJ2WL7iIhoSIrtlgQj8S5A", "t": {"bpc": false, "tlw": false}}], "suggests": ["illinois abortion clinic locations", "illinois abortion clinic near me", "are abortions free in illinois", "illinois abortion clinic closest to me", "illinois abortion clinics map"], "self_loops": [0], "tags": {"i": "illinois abortion clinic locations", "q": "RQ1BojJ2WL7iIhoSIrtlgQj8S5A", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how late can you get an abortion in illinois", "datetime": "2026-03-12 19:48:04.857857", "source": "google", "data": ["how late can you get an abortion in illinois", [["how late can you get an abortion in illinois", 0, [512]], ["how long can you get an abortion in illinois", 0, [22, 30]], ["how late can u get an abortion in illinois", 0, [22, 30]], ["how late can you get an abortion in il", 0, [22, 30]], ["how long can you wait to get an abortion in illinois", 0, [22, 30]], ["how long into pregnancy can you get an abortion in illinois", 0, [22, 30]], ["how long do you have to get an abortion in illinois", 0, [22, 30]], ["how early can you get an abortion in illinois", 0, [22, 30]], ["how soon can you get an abortion in illinois", 0, [22, 30]], ["how far can you get an abortion in illinois", 0, [22, 30]]], {"i": "how late can you get an abortion in illinois", "q": "dX_2JBSIn217uwHrWlZwonrCfSo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how late can you get an abortion in illinois", "how long can you get an abortion in illinois", "how late can u get an abortion in illinois", "how late can you get an abortion in il", "how long can you wait to get an abortion in illinois", "how long into pregnancy can you get an abortion in illinois", "how long do you have to get an abortion in illinois", "how early can you get an abortion in illinois", "how soon can you get an abortion in illinois", "how far can you get an abortion in illinois"], "self_loops": [0], "tags": {"i": "how late can you get an abortion in illinois", "q": "dX_2JBSIn217uwHrWlZwonrCfSo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "illinois abortion clinic closest to me", "datetime": "2026-03-12 19:48:05.964566", "source": "google", "data": ["illinois abortion clinic closest to me", [["illinois abortion clinic near me", 0, [22, 30]], ["abortion clinic illinois closest to me", 0, [22, 30]], ["how much is a medical abortion in illinois", 0, [512, 390, 650]], ["illinois abortion clinic locations", 0, [546, 649]], ["illinois abortion clinics map", 0, [751]]], {"i": "illinois abortion clinic closest to me", "q": "ssC8k5gAd1rdYSpEdkZrFJXs5Dc", "t": {"bpc": false, "tlw": false}}], "suggests": ["illinois abortion clinic near me", "abortion clinic illinois closest to me", "how much is a medical abortion in illinois", "illinois abortion clinic locations", "illinois abortion clinics map"], "self_loops": [], "tags": {"i": "illinois abortion clinic closest to me", "q": "ssC8k5gAd1rdYSpEdkZrFJXs5Dc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic il", "datetime": "2026-03-12 19:48:07.052820", "source": "google", "data": ["abortion clinic il", [["abortion clinic illinois", 0, [512]], ["abortion clinic il", 0, [512]], ["abortion clinic illinois cost", 0, [512]], ["abortion clinic illinois carbondale", 0, [512]], ["abortion clinic illinois near me", 0, [512]], ["abortion clinic iloilo", 0, [512]], ["abortion clinic ilford", 0, [512]], ["abortion clinic ilkeston", 0, [22, 30]], ["abortion clinic illawarra", 0, [22, 30]], ["abortion clinic illinois closest to me", 0, [22, 30]]], {"i": "abortion clinic il", "q": "d-Qoztc6etRfz7ejJemhgn5Yyzg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic illinois", "abortion clinic il", "abortion clinic illinois cost", "abortion clinic illinois carbondale", "abortion clinic illinois near me", "abortion clinic iloilo", "abortion clinic ilford", "abortion clinic ilkeston", "abortion clinic illawarra", "abortion clinic illinois closest to me"], "self_loops": [1], "tags": {"i": "abortion clinic il", "q": "d-Qoztc6etRfz7ejJemhgn5Yyzg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic freeport il", "datetime": "2026-03-12 19:48:08.539791", "source": "google", "data": ["abortion clinic freeport il", [["abortion clinic freeport il", 0, [22, 30]], ["women's clinic freeport il", 0, [22, 30]], ["women's health clinic freeport il", 0, [22, 30]], ["ridgeway women's clinic freeport il", 0, [22, 30]], ["monroe women's clinic freeport il", 0, [22, 30]], ["abortion clinic for free near me", 0, [512, 390, 650]], ["abortion clinic franklin park il", 0, [512, 546]], ["abortion clinic fremont ca", 0, [751]], ["abortion clinic joliet", 0, [512, 546]]], {"i": "abortion clinic freeport il", "q": "gD8gKsKQbTS9Fy4tYLadWtvJN6o", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic freeport il", "women's clinic freeport il", "women's health clinic freeport il", "ridgeway women's clinic freeport il", "monroe women's clinic freeport il", "abortion clinic for free near me", "abortion clinic franklin park il", "abortion clinic fremont ca", "abortion clinic joliet"], "self_loops": [0], "tags": {"i": "abortion clinic freeport il", "q": "gD8gKsKQbTS9Fy4tYLadWtvJN6o", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic freeport il", "datetime": "2026-03-12 19:48:10.018516", "source": "google", "data": ["women's clinic freeport il", [["women's clinic freeport il", 0, [22, 30]], ["women's health clinic freeport il", 0, [22, 30]], ["ridgeway women's clinic freeport il", 0, [22, 30]], ["monroe women's clinic freeport il", 0, [22, 30]], ["monroe clinic women's health freeport il", 0, [22, 30]], ["women's health freeport il", 0, [546, 649]], ["freeport women's clinic", 0, [751]], ["freeport women's health", 0, [512, 546]]], {"i": "women's clinic freeport il", "q": "NONyKjhCFQfHwsavYFlILqN-tEg", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic freeport il", "women's health clinic freeport il", "ridgeway women's clinic freeport il", "monroe women's clinic freeport il", "monroe clinic women's health freeport il", "women's health freeport il", "freeport women's clinic", "freeport women's health"], "self_loops": [0], "tags": {"i": "women's clinic freeport il", "q": "NONyKjhCFQfHwsavYFlILqN-tEg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinic in chicago", "datetime": "2026-03-12 19:48:11.091702", "source": "google", "data": ["free abortion clinic in chicago", [["free abortion clinic in chicago", 0, [22, 30]], ["free abortion clinic chicago no insurance", 0, [22, 30]], ["free women's clinic chicago", 0, [22, 30]], ["free abortion clinic near me", 0, [512, 390, 650]], ["free abortion clinics in illinois", 0, [512, 546]]], {"i": "free abortion clinic in chicago", "q": "60-kXrsOvgC4HpzLVKHvgADeU40", "t": {"bpc": false, "tlw": false}}], "suggests": ["free abortion clinic in chicago", "free abortion clinic chicago no insurance", "free women's clinic chicago", "free abortion clinic near me", "free abortion clinics in illinois"], "self_loops": [0], "tags": {"i": "free abortion clinic in chicago", "q": "60-kXrsOvgC4HpzLVKHvgADeU40", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health center illinois", "datetime": "2026-03-12 19:48:12.454272", "source": "google", "data": ["women's health center illinois", [["women's health center illinois", 0, [512]], ["women's health clinic illinois", 0, [22, 30]], ["women's health care illinois", 0, [22, 30]], ["women's medical center illinois", 0, [22, 10, 30]], ["women's health center rockford illinois", 0, [22, 30]], ["rose women's medical center illinois", 0, [22, 10, 30]], ["women's wellness center effingham illinois", 0, [22, 30]], ["american women's medical center illinois", 0, [22, 30]], ["women's health center peoria il", 0, [22, 30]], ["women's health center jacksonville il", 0, [22, 30]]], {"i": "women's health center illinois", "q": "mKetuGJs2SIZRTmP_CVdS0ZHJz8", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health center illinois", "women's health clinic illinois", "women's health care illinois", "women's medical center illinois", "women's health center rockford illinois", "rose women's medical center illinois", "women's wellness center effingham illinois", "american women's medical center illinois", "women's health center peoria il", "women's health center jacksonville il"], "self_loops": [0], "tags": {"i": "women's health center illinois", "q": "mKetuGJs2SIZRTmP_CVdS0ZHJz8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's medical center illinois", "datetime": "2026-03-12 19:48:13.455405", "source": "google", "data": ["women's medical center illinois", [["women's medical center illinois", 0, [22, 30]], ["women's health center illinois", 0, [22, 30]], ["rose women's medical center illinois", 0, [22, 10, 30]], ["american women's medical center illinois", 0, [22, 30]], ["women's health center rockford illinois", 0, [22, 30]], ["american women medical center il", 0, [22, 30]], ["women's center illinois", 0, [546, 649]], ["women's center chicago il", 0, [751]]], {"i": "women's medical center illinois", "q": "Nx-18McNSgoO1uDAF28GBxeZvtg", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's medical center illinois", "women's health center illinois", "rose women's medical center illinois", "american women's medical center illinois", "women's health center rockford illinois", "american women medical center il", "women's center illinois", "women's center chicago il"], "self_loops": [0], "tags": {"i": "women's medical center illinois", "q": "Nx-18McNSgoO1uDAF28GBxeZvtg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "alamo women's clinic of illinois", "datetime": "2026-03-12 19:48:14.562869", "source": "google", "data": ["alamo women's clinic of illinois", [["alamo women's clinic of illinois", 0, [512]], ["alamo women's clinic of illinois carbondale", 0, [512]], ["alamo women's clinic of illinois carbondale reviews", 0, [512]], ["alamo women's clinic of illinois reviews", 0, [512]], ["alamo women's clinic of illinois photos", 0, [22, 30]], ["alamo women's clinic of illinois by owner", 0, [22, 30]], ["alamo women's clinic of illinois carbondale photos", 0, [546, 649]]], {"i": "alamo women's clinic of illinois", "q": "agX1MrUnzwFAM8XMW56Ed1Axx7E", "t": {"bpc": false, "tlw": false}}], "suggests": ["alamo women's clinic of illinois", "alamo women's clinic of illinois carbondale", "alamo women's clinic of illinois carbondale reviews", "alamo women's clinic of illinois reviews", "alamo women's clinic of illinois photos", "alamo women's clinic of illinois by owner", "alamo women's clinic of illinois carbondale photos"], "self_loops": [0], "tags": {"i": "alamo women's clinic of illinois", "q": "agX1MrUnzwFAM8XMW56Ed1Axx7E", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic illinois", "datetime": "2026-03-12 19:48:15.630106", "source": "google", "data": ["women's health clinic illinois", [["women's health clinic illinois", 0, [22, 30]], ["women's health care illinois", 0, [22, 30]], ["women's health clinic rockford il", 0, [22, 30]], ["women's health clinic freeport il", 0, [22, 30]], ["women's health clinic peoria il", 0, [22, 30]], ["women's health clinic shiloh il", 0, [22, 30]], ["women's health clinic champaign il", 0, [22, 30]], ["women's health clinic mattoon il", 0, [22, 30]], ["women's health clinic jerseyville il", 0, [22, 30]], ["women's health clinic peru il", 0, [22, 30]]], {"i": "women's health clinic illinois", "q": "X5lUM4mcFMHenqiyHFVufNfmc80", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health clinic illinois", "women's health care illinois", "women's health clinic rockford il", "women's health clinic freeport il", "women's health clinic peoria il", "women's health clinic shiloh il", "women's health clinic champaign il", "women's health clinic mattoon il", "women's health clinic jerseyville il", "women's health clinic peru il"], "self_loops": [0], "tags": {"i": "women's health clinic illinois", "q": "X5lUM4mcFMHenqiyHFVufNfmc80", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's abortion clinic illinois", "datetime": "2026-03-12 19:48:16.895665", "source": "google", "data": ["women's abortion clinic illinois", [["women's abortion clinic illinois", 0, [22, 30]], ["women's clinic for abortions near me", 0, [512, 390, 650]], ["women's abortion clinic chicago", 0, [512, 546]], ["women's clinic illinois", 0, [512, 546]], ["women's abortion clinic indianapolis", 0, [751]]], {"i": "women's abortion clinic illinois", "q": "29jBHrD7OaJmBQe6xopjRQC8JeE", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's abortion clinic illinois", "women's clinic for abortions near me", "women's abortion clinic chicago", "women's clinic illinois", "women's abortion clinic indianapolis"], "self_loops": [0], "tags": {"i": "women's abortion clinic illinois", "q": "29jBHrD7OaJmBQe6xopjRQC8JeE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "hope women's clinic illinois", "datetime": "2026-03-12 19:48:18.271889", "source": "google", "data": ["hope women's clinic illinois", [["hope women's clinic illinois", 0, [22, 30]], ["hope women's clinic granite city il", 0, [546, 649]], ["hope women's clinic", 0, [512, 546]], ["hope women's health clinic", 0, [512, 546]]], {"i": "hope women's clinic illinois", "q": "ZRugdUVrb5yckKYUj17z23bn_4E", "t": {"bpc": false, "tlw": false}}], "suggests": ["hope women's clinic illinois", "hope women's clinic granite city il", "hope women's clinic", "hope women's health clinic"], "self_loops": [0], "tags": {"i": "hope women's clinic illinois", "q": "ZRugdUVrb5yckKYUj17z23bn_4E", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic danville illinois", "datetime": "2026-03-12 19:48:19.129457", "source": "google", "data": ["women's clinic danville illinois", [["women's clinic danville illinois", 0, [22, 30]], ["women's care clinic danville illinois", 0, [22, 30]], ["women's health clinic danville il", 0, [22, 10, 30]], ["women's clinic danville il", 0, [512, 546]], ["women's clinic danville va", 0, [512, 546]], ["women's clinic danville ky", 0, [512, 546]], ["danville women's clinic", 0, [512, 546]]], {"i": "women's clinic danville illinois", "q": "sf58ffsj4nPtx7RBcSG8J9CK33I", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic danville illinois", "women's care clinic danville illinois", "women's health clinic danville il", "women's clinic danville il", "women's clinic danville va", "women's clinic danville ky", "danville women's clinic"], "self_loops": [0], "tags": {"i": "women's clinic danville illinois", "q": "sf58ffsj4nPtx7RBcSG8J9CK33I", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic in chicago illinois", "datetime": "2026-03-12 19:48:20.426373", "source": "google", "data": ["women's clinic in chicago illinois", [["women's clinic in chicago illinois", 0, [22, 30]], ["how much is a tummy tuck in illinois", 0, [512, 390, 650]], ["companies in illinois chicago", 0, [512, 390, 650]], ["women's clinic in chicago", 0, [751]], ["women's clinic illinois", 0, [512, 546]], ["women's health clinic illinois", 0, [751]]], {"i": "women's clinic in chicago illinois", "q": "LtwFyfPHcAp9BMFtTWio1OE0L7I", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic in chicago illinois", "how much is a tummy tuck in illinois", "companies in illinois chicago", "women's clinic in chicago", "women's clinic illinois", "women's health clinic illinois"], "self_loops": [0], "tags": {"i": "women's clinic in chicago illinois", "q": "LtwFyfPHcAp9BMFtTWio1OE0L7I", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic in chicago", "datetime": "2026-03-12 19:48:21.243291", "source": "google", "data": ["women's clinic in chicago", [["women's clinic in chicago illinois", 0, [22, 30]], ["chicago women's hospital", 0, [22, 10, 30]], ["chicago women's clinic", 0, [22, 10, 30]], ["women's clinic downtown chicago", 0, [22, 10, 30]], ["prentice women's hospital chicago", 0, [22, 10, 30]], ["best women's hospital in chicago", 0, [22, 30]], ["chicago women's health center", 0, [22, 10, 30]], ["women's health center chicago il", 0, [22, 10, 30]], ["women's health center chicago heights", 0, [22, 10, 30]], ["women's hospital chicago il", 0, [22, 30]]], {"i": "women's clinic in chicago", "q": "vC6Huxcg1a6fqPh08wDsrNj4hkE", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic in chicago illinois", "chicago women's hospital", "chicago women's clinic", "women's clinic downtown chicago", "prentice women's hospital chicago", "best women's hospital in chicago", "chicago women's health center", "women's health center chicago il", "women's health center chicago heights", "women's hospital chicago il"], "self_loops": [], "tags": {"i": "women's clinic in chicago", "q": "vC6Huxcg1a6fqPh08wDsrNj4hkE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion center illinois", "datetime": "2026-03-12 19:48:22.075705", "source": "google", "data": ["abortion center illinois", [["abortion center illinois", 0, [512]], ["abortion clinic illinois", 0, [22, 30]], ["abortion clinic illinois near me", 0, [22, 30]], ["abortion services illinois", 0, [22, 30]], ["abortion clinic illinois carbondale", 0, [22, 30]], ["abortion clinic illinois cost", 0, [22, 30]], ["abortion clinic illinois closest to me", 0, [22, 30]], ["abortion clinic illinois chicago", 0, [22, 30]], ["abortion clinic illinois open now", 0, [22, 30]], ["abortion clinic illinois free", 0, [22, 30]]], {"i": "abortion center illinois", "q": "Z3_-5ef3oqHKWXUMWBgFPO7Akbk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion center illinois", "abortion clinic illinois", "abortion clinic illinois near me", "abortion services illinois", "abortion clinic illinois carbondale", "abortion clinic illinois cost", "abortion clinic illinois closest to me", "abortion clinic illinois chicago", "abortion clinic illinois open now", "abortion clinic illinois free"], "self_loops": [0], "tags": {"i": "abortion center illinois", "q": "Z3_-5ef3oqHKWXUMWBgFPO7Akbk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion care illinois", "datetime": "2026-03-12 19:48:23.330563", "source": "google", "data": ["abortion care illinois", [["abortion care illinois", 0, [512]], ["abortion services illinois", 0, [22, 30]], ["abortion assistance illinois", 0, [22, 30]], ["when can you not get an abortion in illinois", 0, [512, 390, 650]], ["abortion care indiana", 0, [751]], ["abortion carbondale il", 0, [512, 546]]], {"i": "abortion care illinois", "q": "VzlJVWTVsdehQcKL7XKooFq5hVM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion care illinois", "abortion services illinois", "abortion assistance illinois", "when can you not get an abortion in illinois", "abortion care indiana", "abortion carbondale il"], "self_loops": [0], "tags": {"i": "abortion care illinois", "q": "VzlJVWTVsdehQcKL7XKooFq5hVM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion providers illinois", "datetime": "2026-03-12 19:48:24.763698", "source": "google", "data": ["abortion providers illinois", [["abortion providers illinois", 0, [22, 30]], ["abortion clinics illinois", 0, [22, 30]], ["abortion services illinois", 0, [22, 30]], ["abortion clinics illinois near me", 0, [22, 30]], ["is abortion legal in illinois", 0, [512, 390, 650]], ["abortion rights in illinois", 0, [512, 390, 650]], ["abortion providers chicago", 0, [546, 649]], ["abortion process illinois", 0, [546, 649]]], {"i": "abortion providers illinois", "q": "KHtSHRh7l6CejXq3-y5ugzDNpNQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion providers illinois", "abortion clinics illinois", "abortion services illinois", "abortion clinics illinois near me", "is abortion legal in illinois", "abortion rights in illinois", "abortion providers chicago", "abortion process illinois"], "self_loops": [0], "tags": {"i": "abortion providers illinois", "q": "KHtSHRh7l6CejXq3-y5ugzDNpNQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "north carolina abortion clinic charlotte nc", "datetime": "2026-03-12 19:48:26.099696", "source": "google", "data": ["north carolina abortion clinic charlotte nc", [["north carolina abortion clinic charlotte nc", 0, [22, 30]], ["are abortions legal in north carolina", 0, [512, 390, 650]], ["is abortion legal in nc", 0, [512, 390, 650]], ["north carolina charlotte abortion clinic", 0, [751]], ["north carolina abortion clinics", 0, [512, 546]]], {"i": "north carolina abortion clinic charlotte nc", "q": "_u_rV-5ahmWs9mFHRvPmY70OzOc", "t": {"bpc": false, "tlw": false}}], "suggests": ["north carolina abortion clinic charlotte nc", "are abortions legal in north carolina", "is abortion legal in nc", "north carolina charlotte abortion clinic", "north carolina abortion clinics"], "self_loops": [0], "tags": {"i": "north carolina abortion clinic charlotte nc", "q": "_u_rV-5ahmWs9mFHRvPmY70OzOc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are abortions legal in north carolina", "datetime": "2026-03-12 19:48:27.095611", "source": "google", "data": ["are abortions legal in north carolina", [["are abortions legal in north carolina", 0, [512]], ["are abortions legal in north carolina 2025", 0, [512]], ["are abortions legal in south carolina", 0, [22, 30]], ["are abortions illegal in north carolina", 0, [22, 30]], ["are abortions allowed in north carolina", 0, [22, 30]], ["are abortions legal in south carolina 2025", 0, [22, 30]], ["is abortion legal in north carolina 2024", 0, [22, 30]], ["is abortion legal in north carolina for minors", 0, [22, 30]], ["is abortion legal in north carolina now", 0, [22, 30]], ["is abortion legal in n carolina", 0, [22, 30]]], {"i": "are abortions legal in north carolina", "q": "LLWJtKFGbcECJqOEX-2bLOsVRSQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["are abortions legal in north carolina", "are abortions legal in north carolina 2025", "are abortions legal in south carolina", "are abortions illegal in north carolina", "are abortions allowed in north carolina", "are abortions legal in south carolina 2025", "is abortion legal in north carolina 2024", "is abortion legal in north carolina for minors", "is abortion legal in north carolina now", "is abortion legal in n carolina"], "self_loops": [0], "tags": {"i": "are abortions legal in north carolina", "q": "LLWJtKFGbcECJqOEX-2bLOsVRSQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion cost charlotte nc", "datetime": "2026-03-12 19:48:28.496207", "source": "google", "data": ["abortion cost charlotte nc", [["abortion cost charlotte nc", 0, [512]], ["abortion pill cost charlotte nc", 0, [22, 30]], ["planned parenthood abortion cost charlotte nc", 0, [22, 30]], ["abortion clinic charlotte nc cost", 0, [22, 30]], ["abortion clinic charlotte nc price", 0, [751]], ["abortion costs nc", 0, [512, 546]]], {"i": "abortion cost charlotte nc", "q": "PO0aXGCXfbtUoCDi36ep_JgO16o", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion cost charlotte nc", "abortion pill cost charlotte nc", "planned parenthood abortion cost charlotte nc", "abortion clinic charlotte nc cost", "abortion clinic charlotte nc price", "abortion costs nc"], "self_loops": [0], "tags": {"i": "abortion cost charlotte nc", "q": "PO0aXGCXfbtUoCDi36ep_JgO16o", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortions in charlotte", "datetime": "2026-03-12 19:48:29.581161", "source": "google", "data": ["abortions in charlotte", [["abortions in charlotte", 0, [512]], ["abortion in charlottesville", 0, [22, 30]], ["abortions charlottesville va", 0, [22, 30]]], {"i": "abortions in charlotte", "q": "Qe2FJB1YuRFbH1ki2Wp7KU11lzs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortions in charlotte", "abortion in charlottesville", "abortions charlottesville va"], "self_loops": [0], "tags": {"i": "abortions in charlotte", "q": "Qe2FJB1YuRFbH1ki2Wp7KU11lzs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic charlotte nc cost", "datetime": "2026-03-12 19:48:30.416724", "source": "google", "data": ["abortion clinic charlotte nc cost", [["abortion clinic charlotte nc cost", 0, [22, 30]], ["abortion cost charlotte nc", 0, [512, 390, 650]], ["abortion clinic charlotte nc price", 0, [751]], ["abortion clinic charlotte north carolina", 0, [512, 546]], ["abortion clinic near charlotte nc", 0, [751]], ["abortion clinic charlotte", 0, [512, 546]]], {"i": "abortion clinic charlotte nc cost", "q": "josKnM3b55TkK4u27G2rXKX4Wow", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic charlotte nc cost", "abortion cost charlotte nc", "abortion clinic charlotte nc price", "abortion clinic charlotte north carolina", "abortion clinic near charlotte nc", "abortion clinic charlotte"], "self_loops": [0], "tags": {"i": "abortion clinic charlotte nc cost", "q": "josKnM3b55TkK4u27G2rXKX4Wow", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic charlotte nc price", "datetime": "2026-03-12 19:48:31.314010", "source": "google", "data": ["abortion clinic charlotte nc price", [["abortion clinic charlotte nc prices", 0, [22, 30]], ["abortion clinic charlotte nc cost", 0, [751]], ["abortion clinic charlotte north carolina", 0, [512, 546]], ["abortion clinic near charlotte nc", 0, [751]]], {"i": "abortion clinic charlotte nc price", "q": "8O1CQFeerVrVgMJEJkdeKh9Qago", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic charlotte nc prices", "abortion clinic charlotte nc cost", "abortion clinic charlotte north carolina", "abortion clinic near charlotte nc"], "self_loops": [], "tags": {"i": "abortion clinic charlotte nc price", "q": "8O1CQFeerVrVgMJEJkdeKh9Qago", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic raleigh north carolina", "datetime": "2026-03-12 19:48:32.155197", "source": "google", "data": ["abortion clinic raleigh north carolina", [["abortion clinic raleigh north carolina", 0, [22, 30]], ["women's center raleigh north carolina", 0, [22, 30]], ["are abortions legal in north carolina", 0, [512, 390, 650]], ["abortion clinic near raleigh nc", 0, [751]], ["abortion clinic raleigh nc cost", 0, [751]]], {"i": "abortion clinic raleigh north carolina", "q": "kaTLom-7mCZDmn6Z8u6EyTVNlcU", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic raleigh north carolina", "women's center raleigh north carolina", "are abortions legal in north carolina", "abortion clinic near raleigh nc", "abortion clinic raleigh nc cost"], "self_loops": [0], "tags": {"i": "abortion clinic raleigh north carolina", "q": "kaTLom-7mCZDmn6Z8u6EyTVNlcU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic raleigh nc cost", "datetime": "2026-03-12 19:48:33.385089", "source": "google", "data": ["abortion clinic raleigh nc cost", [], {"i": "abortion clinic raleigh nc cost", "q": "L6gBmA_XDxTx4N2tBvUkyMDCWS4", "t": {"bpc": true, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "abortion clinic raleigh nc cost", "q": "L6gBmA_XDxTx4N2tBvUkyMDCWS4", "t": {"bpc": true, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic raleigh nc open now", "datetime": "2026-03-12 19:48:34.413840", "source": "google", "data": ["abortion clinic raleigh nc open now", [["abortion clinic raleigh nc open now", 0, [512]], ["abortion clinic open near me", 0, [512, 390, 650]], ["abortion clinic raleigh north carolina", 0, [546, 649]], ["abortion clinic near raleigh nc", 0, [751]], ["abortion clinic raleigh nc cost", 0, [751]], ["abortion clinic raleigh lake boone trail", 0, [546, 649]]], {"i": "abortion clinic raleigh nc open now", "q": "147mvkDmJc2D4RRws8YxfVuucKc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic raleigh nc open now", "abortion clinic open near me", "abortion clinic raleigh north carolina", "abortion clinic near raleigh nc", "abortion clinic raleigh nc cost", "abortion clinic raleigh lake boone trail"], "self_loops": [0], "tags": {"i": "abortion clinic raleigh nc open now", "q": "147mvkDmJc2D4RRws8YxfVuucKc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how late can you get an abortion in nc", "datetime": "2026-03-12 19:48:35.877672", "source": "google", "data": ["how late can you get an abortion in nc", [["how late can you get an abortion in nc", 0, [512]], ["how long can you get an abortion in nc", 0, [22, 30]], ["how long can you wait to get an abortion in nc", 0, [22, 30]], ["how long until you can get an abortion in nc", 0, [22, 30]], ["how early can you get an abortion in nc", 0, [22, 30]], ["how long do you have to get an abortion in nc", 0, [22, 30]], ["how far can you get an abortion in nc", 0, [22, 30]], ["how long can you wait to get an abortion in north carolina", 0, [22, 30]], ["when can you get an abortion in nc", 0, [22, 30]], ["how many weeks can you get an abortion in nc", 0, [22, 30]]], {"i": "how late can you get an abortion in nc", "q": "eLpy4fO030DA4f91IJ-haLbhROQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how late can you get an abortion in nc", "how long can you get an abortion in nc", "how long can you wait to get an abortion in nc", "how long until you can get an abortion in nc", "how early can you get an abortion in nc", "how long do you have to get an abortion in nc", "how far can you get an abortion in nc", "how long can you wait to get an abortion in north carolina", "when can you get an abortion in nc", "how many weeks can you get an abortion in nc"], "self_loops": [0], "tags": {"i": "how late can you get an abortion in nc", "q": "eLpy4fO030DA4f91IJ-haLbhROQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how many weeks can you get an abortion in nc", "datetime": "2026-03-12 19:48:36.807523", "source": "google", "data": ["how many weeks can you get an abortion in nc", [["how many weeks can you get an abortion in nc", 0, [512]], ["up to how many weeks can you get an abortion in nc", 0, [22, 30]], ["how many weeks do you have to get an abortion in nc", 0, [22, 30]], ["how many weeks until you can get an abortion in north carolina", 0, [22, 30]], ["how many weeks until you can't get an abortion in nc", 0, [22, 10, 30]], ["how early can you get an abortion in nc", 0, [22, 30]], ["how soon can you get an abortion in nc", 0, [22, 30]], ["how far along can you get an abortion in nc", 0, [512, 390, 650]], ["how long can you get an abortion in nc", 0, [512, 390, 650]], ["how many weeks can you have an abortion in north carolina", 0, [512, 546]]], {"i": "how many weeks can you get an abortion in nc", "q": "GyE-KL-1QUMGwyqyUJNx240_5J8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how many weeks can you get an abortion in nc", "up to how many weeks can you get an abortion in nc", "how many weeks do you have to get an abortion in nc", "how many weeks until you can get an abortion in north carolina", "how many weeks until you can't get an abortion in nc", "how early can you get an abortion in nc", "how soon can you get an abortion in nc", "how far along can you get an abortion in nc", "how long can you get an abortion in nc", "how many weeks can you have an abortion in north carolina"], "self_loops": [0], "tags": {"i": "how many weeks can you get an abortion in nc", "q": "GyE-KL-1QUMGwyqyUJNx240_5J8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic charlotte north carolina", "datetime": "2026-03-12 19:48:37.773714", "source": "google", "data": ["abortion clinic charlotte north carolina", [["abortion clinic charlotte north carolina", 0, [512]], ["north carolina abortion clinic charlotte nc", 0, [22, 30]], ["abortions in charlotte", 0, [512, 390, 650]], ["abortion clinic near me charlotte nc", 0, [512, 390, 650]], ["abortion clinic charlotte nc cost", 0, [751]], ["abortion clinic charlotte nc price", 0, [751]]], {"i": "abortion clinic charlotte north carolina", "q": "Y5eNOAxzaKndijiVd21Azxr1BQc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic charlotte north carolina", "north carolina abortion clinic charlotte nc", "abortions in charlotte", "abortion clinic near me charlotte nc", "abortion clinic charlotte nc cost", "abortion clinic charlotte nc price"], "self_loops": [0], "tags": {"i": "abortion clinic charlotte north carolina", "q": "Y5eNOAxzaKndijiVd21Azxr1BQc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion care north carolina", "datetime": "2026-03-12 19:48:38.967466", "source": "google", "data": ["abortion care north carolina", [["abortion care north carolina", 0, [22, 30]], ["abortion services north carolina", 0, [22, 30]], ["abortion cut off nc", 0, [512, 390, 650]], ["abortion options in nc", 0, [512, 390, 650]], ["abortion process in nc", 0, [512, 390, 650]], ["is abortion legal in nc", 0, [512, 390, 650]], ["abortion cary nc", 0, [751]], ["north carolina abortion providers", 0, [751]], ["abortion north carolina", 0, [512, 546]], ["north carolina abortion clinic", 0, [512, 546]]], {"i": "abortion care north carolina", "q": "36aPuorHd3hiY3wojNlLDNqjFNI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion care north carolina", "abortion services north carolina", "abortion cut off nc", "abortion options in nc", "abortion process in nc", "is abortion legal in nc", "abortion cary nc", "north carolina abortion providers", "abortion north carolina", "north carolina abortion clinic"], "self_loops": [0], "tags": {"i": "abortion care north carolina", "q": "36aPuorHd3hiY3wojNlLDNqjFNI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion providers north carolina", "datetime": "2026-03-12 19:48:39.883342", "source": "google", "data": ["abortion providers north carolina", [["abortion providers north carolina", 0, [22, 30]], ["abortion clinics north carolina", 0, [22, 30]], ["abortion services north carolina", 0, [22, 30]], ["abortion clinics charlotte north carolina", 0, [22, 30]], ["abortion clinics raleigh north carolina", 0, [22, 30]], ["is abortion legal in nc", 0, [512, 390, 650]], ["are abortions legal in north carolina", 0, [512, 390, 650]], ["abortion options in nc", 0, [512, 390, 650]], ["abortions in nc", 0, [512, 390, 650]], ["abortion providers in nc", 0, [751]]], {"i": "abortion providers north carolina", "q": "6W8nMJzZxJi7nTyVkME7239E0hI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion providers north carolina", "abortion clinics north carolina", "abortion services north carolina", "abortion clinics charlotte north carolina", "abortion clinics raleigh north carolina", "is abortion legal in nc", "are abortions legal in north carolina", "abortion options in nc", "abortions in nc", "abortion providers in nc"], "self_loops": [0], "tags": {"i": "abortion providers north carolina", "q": "6W8nMJzZxJi7nTyVkME7239E0hI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health center north carolina", "datetime": "2026-03-12 19:48:40.736264", "source": "google", "data": ["women's health center north carolina", [["women's health center north carolina", 0, [512]], ["women's health clinic north carolina", 0, [22, 30]], ["women's wellness center north carolina", 0, [22, 30]], ["preferred women's health center north carolina", 0, [22, 30]], ["women's health center eden north carolina", 0, [22, 30]], ["women's health center laurinburg north carolina", 0, [22, 30]], ["all women's health center north carolina", 0, [22, 10, 30]], ["women's wellness center fayetteville north carolina", 0, [22, 30]], ["a preferred women's health clinic north carolina", 0, [22, 10, 30]], ["women's wellness clinic durham north carolina", 0, [22, 30]]], {"i": "women's health center north carolina", "q": "--qlg4-cJQP9Ff3Cnn-YB7tXdR8", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health center north carolina", "women's health clinic north carolina", "women's wellness center north carolina", "preferred women's health center north carolina", "women's health center eden north carolina", "women's health center laurinburg north carolina", "all women's health center north carolina", "women's wellness center fayetteville north carolina", "a preferred women's health clinic north carolina", "women's wellness clinic durham north carolina"], "self_loops": [0], "tags": {"i": "women's health center north carolina", "q": "--qlg4-cJQP9Ff3Cnn-YB7tXdR8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's hospital north carolina", "datetime": "2026-03-12 19:48:41.908976", "source": "google", "data": ["women's hospital north carolina", [["women's hospital north carolina", 0, [22, 30]], ["women's hospital greensboro north carolina", 0, [22, 30]], ["women's hospital charlotte nc", 0, [546, 649]], ["women's hospital unc", 0, [512, 546]], ["women's hospital raleigh nc", 0, [751]]], {"i": "women's hospital north carolina", "q": "uwj-3XLE8eW50pGBjw8uMwK9rs8", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's hospital north carolina", "women's hospital greensboro north carolina", "women's hospital charlotte nc", "women's hospital unc", "women's hospital raleigh nc"], "self_loops": [0], "tags": {"i": "women's hospital north carolina", "q": "uwj-3XLE8eW50pGBjw8uMwK9rs8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's choice clinic north carolina", "datetime": "2026-03-12 19:48:43.157277", "source": "google", "data": ["women's choice clinic north carolina", [["women's choice clinic north carolina", 0, [22, 30]], ["women's choice north carolina", 0, [751]], ["women's choice clinic charlotte nc", 0, [546, 649]], ["women's clinic north carolina", 0, [546, 649]], ["women's choice clinic raleigh nc", 0, [546, 649]], ["women's choice clinic greensboro nc", 0, [546, 649]]], {"i": "women's choice clinic north carolina", "q": "MoGhXjML2cPtsPfzgT-21A-kUV0", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's choice clinic north carolina", "women's choice north carolina", "women's choice clinic charlotte nc", "women's clinic north carolina", "women's choice clinic raleigh nc", "women's choice clinic greensboro nc"], "self_loops": [0], "tags": {"i": "women's choice clinic north carolina", "q": "MoGhXjML2cPtsPfzgT-21A-kUV0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's health clinic north carolina", "datetime": "2026-03-12 19:48:44.016230", "source": "google", "data": ["women's health clinic north carolina", [["women's health clinic north carolina", 0, [22, 30]], ["women's health center north carolina", 0, [22, 30]], ["women's health care north carolina", 0, [22, 30]], ["preferred women's health center north carolina", 0, [22, 30]], ["women's health center eden north carolina", 0, [22, 30]], ["a preferred women's health clinic north carolina", 0, [22, 10, 30]], ["women's health center laurinburg north carolina", 0, [22, 30]], ["all women's health center north carolina", 0, [22, 10, 30]], ["atrium health women's care north carolina", 0, [22, 10, 30]], ["women's community clinic near me", 0, [512, 390, 650]]], {"i": "women's health clinic north carolina", "q": "BikqL_QfOvII_NEdwXJwpjyWyUk", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's health clinic north carolina", "women's health center north carolina", "women's health care north carolina", "preferred women's health center north carolina", "women's health center eden north carolina", "a preferred women's health clinic north carolina", "women's health center laurinburg north carolina", "all women's health center north carolina", "atrium health women's care north carolina", "women's community clinic near me"], "self_loops": [0], "tags": {"i": "women's health clinic north carolina", "q": "BikqL_QfOvII_NEdwXJwpjyWyUk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "preferred women's clinic north carolina", "datetime": "2026-03-12 19:48:45.005786", "source": "google", "data": ["preferred women's clinic north carolina", [["preferred women's clinic north carolina", 0, [22, 30]], ["preferred women's health center north carolina", 0, [22, 30]], ["a preferred women's health clinic north carolina", 0, [22, 10, 30]], ["preferred women's health clinic charlotte nc", 0, [546, 649]], ["preferred women's health north carolina", 0, [512, 546]], ["preferred women's clinic raleigh nc", 0, [546, 649]], ["preferred women's clinic charlotte nc", 0, [546, 649]]], {"i": "preferred women's clinic north carolina", "q": "EuhPwXSnNd2e2XfsMi4_AVuniHY", "t": {"bpc": false, "tlw": false}}], "suggests": ["preferred women's clinic north carolina", "preferred women's health center north carolina", "a preferred women's health clinic north carolina", "preferred women's health clinic charlotte nc", "preferred women's health north carolina", "preferred women's clinic raleigh nc", "preferred women's clinic charlotte nc"], "self_loops": [0], "tags": {"i": "preferred women's clinic north carolina", "q": "EuhPwXSnNd2e2XfsMi4_AVuniHY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic shelby north carolina", "datetime": "2026-03-12 19:48:46.289076", "source": "google", "data": ["women's clinic shelby north carolina", [["women's clinic shelby north carolina", 0, [22, 30]], ["shelby women's clinic boiling springs north carolina", 0, [22, 10, 30]], ["women's clinic shelby nc", 0, [512, 546]], ["women's clinic shelby", 0, [512, 546]], ["women's health clinic shelby nc", 0, [546, 649]]], {"i": "women's clinic shelby north carolina", "q": "ZwF-_ktqJU4ZC-rZIXoDjjciKh0", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic shelby north carolina", "shelby women's clinic boiling springs north carolina", "women's clinic shelby nc", "women's clinic shelby", "women's health clinic shelby nc"], "self_loops": [0], "tags": {"i": "women's clinic shelby north carolina", "q": "ZwF-_ktqJU4ZC-rZIXoDjjciKh0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's abortion clinic north carolina", "datetime": "2026-03-12 19:48:47.638923", "source": "google", "data": ["women's abortion clinic north carolina", [["women's abortion clinic north carolina", 0, [22, 30]], ["women's clinic north carolina", 0, [22, 30]], ["women's abortion clinic near me", 0, [512, 390, 650]], ["women's abortion laws", 0, [512, 390, 650]], ["women's abortion clinic raleigh nc", 0, [546, 649]], ["women's abortion clinic charlotte nc", 0, [512, 546]]], {"i": "women's abortion clinic north carolina", "q": "VGJUaykghPVGTeeR3uAyu6bT5Qs", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's abortion clinic north carolina", "women's clinic north carolina", "women's abortion clinic near me", "women's abortion laws", "women's abortion clinic raleigh nc", "women's abortion clinic charlotte nc"], "self_loops": [0], "tags": {"i": "women's abortion clinic north carolina", "q": "VGJUaykghPVGTeeR3uAyu6bT5Qs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic jacksonville north carolina", "datetime": "2026-03-12 19:48:48.906784", "source": "google", "data": ["women's clinic jacksonville north carolina", [["women's clinic jacksonville north carolina", 0, [22, 30]], ["women's clinic jacksonville nc", 0, [512, 546]], ["women's clinic jacksonville", 0, [751]], ["women's health clinic jacksonville nc", 0, [512, 546]], ["women's clinic jacksonville fl", 0, [512, 546]]], {"i": "women's clinic jacksonville north carolina", "q": "VRtShXKxYKUYvV-4NYLS8U8MH7U", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic jacksonville north carolina", "women's clinic jacksonville nc", "women's clinic jacksonville", "women's health clinic jacksonville nc", "women's clinic jacksonville fl"], "self_loops": [0], "tags": {"i": "women's clinic jacksonville north carolina", "q": "VRtShXKxYKUYvV-4NYLS8U8MH7U", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic fayetteville north carolina", "datetime": "2026-03-12 19:48:50.279421", "source": "google", "data": ["women's clinic fayetteville north carolina", [["women's clinic fayetteville north carolina", 0, [22, 30]], ["women's clinic fayetteville nc", 0, [512, 546]], ["women's clinic fayetteville", 0, [512, 546]], ["women's clinic fayetteville ga", 0, [546, 649]], ["women's health clinic fayetteville nc", 0, [512, 546]]], {"i": "women's clinic fayetteville north carolina", "q": "d-xDaJUvyGs6skE3OMJB6mDW3OM", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic fayetteville north carolina", "women's clinic fayetteville nc", "women's clinic fayetteville", "women's clinic fayetteville ga", "women's health clinic fayetteville nc"], "self_loops": [0], "tags": {"i": "women's clinic fayetteville north carolina", "q": "d-xDaJUvyGs6skE3OMJB6mDW3OM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinic raleigh nc", "datetime": "2026-03-12 19:48:51.603003", "source": "google", "data": ["free abortion clinic raleigh nc", [["free women's clinic raleigh nc", 0, [22, 30]], ["free abortion clinics in raleigh nc", 0, [22, 30]], ["free abortion clinic near me", 0, [512, 390, 650]], ["free abortion centers near me", 0, [512, 390, 650]], ["free abortion clinics in north carolina", 0, [751]], ["raleigh abortion clinics", 0, [512, 546]], ["free abortion clinic charlotte nc", 0, [512, 546]]], {"i": "free abortion clinic raleigh nc", "q": "RdF9CCe7pEv5WJSulZhH4kpzLq8", "t": {"bpc": false, "tlw": false}}], "suggests": ["free women's clinic raleigh nc", "free abortion clinics in raleigh nc", "free abortion clinic near me", "free abortion centers near me", "free abortion clinics in north carolina", "raleigh abortion clinics", "free abortion clinic charlotte nc"], "self_loops": [], "tags": {"i": "free abortion clinic raleigh nc", "q": "RdF9CCe7pEv5WJSulZhH4kpzLq8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinic charlotte nc", "datetime": "2026-03-12 19:48:53.084648", "source": "google", "data": ["free abortion clinic charlotte nc", [["free abortion clinic charlotte nc", 0, [512]], ["free women's clinic charlotte nc", 0, [22, 30]], ["free abortion clinic near me", 0, [512, 390, 650]], ["free abortion centers near me", 0, [512, 390, 650]], ["free abortion clinics in north carolina", 0, [751]], ["free abortion clinic raleigh nc", 0, [751]]], {"i": "free abortion clinic charlotte nc", "q": "LfRMcnUSQN8lWuVSugo_MruDmmE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["free abortion clinic charlotte nc", "free women's clinic charlotte nc", "free abortion clinic near me", "free abortion centers near me", "free abortion clinics in north carolina", "free abortion clinic raleigh nc"], "self_loops": [0], "tags": {"i": "free abortion clinic charlotte nc", "q": "LfRMcnUSQN8lWuVSugo_MruDmmE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's hospital greensboro north carolina", "datetime": "2026-03-12 19:48:54.281265", "source": "google", "data": ["women's hospital greensboro north carolina", [["women's hospital greensboro north carolina", 0, [22, 30]], ["women's hospital greensboro nc", 0, [512, 546]], ["women's hospital greensboro nc phone number", 0, [751]], ["women's hospital greensboro", 0, [512, 546]]], {"i": "women's hospital greensboro north carolina", "q": "wjalNUCKIhearQF_dsNhUCSC_0A", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's hospital greensboro north carolina", "women's hospital greensboro nc", "women's hospital greensboro nc phone number", "women's hospital greensboro"], "self_loops": [0], "tags": {"i": "women's hospital greensboro north carolina", "q": "wjalNUCKIhearQF_dsNhUCSC_0A", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's center greensboro north carolina", "datetime": "2026-03-12 19:48:55.595952", "source": "google", "data": ["women's center greensboro north carolina", [["women's center greensboro north carolina", 0, [22, 30]], ["women's resource center greensboro north carolina", 0, [22, 30]], ["women's center greensboro nc", 0, [512, 546]], ["women's center greensboro", 0, [512, 546]], ["women's health center in greensboro nc", 0, [546, 649]], ["women's center greenville nc", 0, [512, 546]]], {"i": "women's center greensboro north carolina", "q": "ozwfw985oB_5foStTevjf--hcQg", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's center greensboro north carolina", "women's resource center greensboro north carolina", "women's center greensboro nc", "women's center greensboro", "women's health center in greensboro nc", "women's center greenville nc"], "self_loops": [0], "tags": {"i": "women's center greensboro north carolina", "q": "ozwfw985oB_5foStTevjf--hcQg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's resource center greensboro north carolina", "datetime": "2026-03-12 19:48:56.405363", "source": "google", "data": ["women's resource center greensboro north carolina", [["women's resource center greensboro north carolina", 0, [512]], ["women's resource center greensboro nc", 0, [512, 546]], ["women's resource center greensboro", 0, [512, 546]], ["women\u2019s resource center of greensboro", 0, [512, 546]]], {"i": "women's resource center greensboro north carolina", "q": "Upqfu338kZLO1ou5lfTDiu40pOw", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's resource center greensboro north carolina", "women's resource center greensboro nc", "women's resource center greensboro", "women\u2019s resource center of greensboro"], "self_loops": [0], "tags": {"i": "women's resource center greensboro north carolina", "q": "Upqfu338kZLO1ou5lfTDiu40pOw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long can you get an abortion in nc", "datetime": "2026-03-12 19:48:57.285935", "source": "google", "data": ["how long can you get an abortion in nc", [["how long can you get an abortion in nc", 0, [512]], ["how far can you get an abortion in nc", 0, [22, 30]], ["how soon can you get an abortion in nc", 0, [22, 30]], ["how long can you wait to get an abortion in nc", 0, [22, 30]], ["how far along can you get an abortion in nc", 0, [22, 30]], ["how long do you have to get an abortion in nc", 0, [22, 30]], ["how long can you wait to get an abortion in north carolina", 0, [22, 30]], ["how late can you get an abortion in nc", 0, [22, 30]], ["how early can you get an abortion in nc", 0, [22, 30]], ["how many weeks can you get an abortion in nc", 0, [22, 30]]], {"i": "how long can you get an abortion in nc", "q": "S3I_AL5WtVou9EmM4BLIyYPB7DU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how long can you get an abortion in nc", "how far can you get an abortion in nc", "how soon can you get an abortion in nc", "how long can you wait to get an abortion in nc", "how far along can you get an abortion in nc", "how long do you have to get an abortion in nc", "how long can you wait to get an abortion in north carolina", "how late can you get an abortion in nc", "how early can you get an abortion in nc", "how many weeks can you get an abortion in nc"], "self_loops": [0], "tags": {"i": "how long can you get an abortion in nc", "q": "S3I_AL5WtVou9EmM4BLIyYPB7DU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion options in nc", "datetime": "2026-03-12 19:48:58.621929", "source": "google", "data": ["abortion options in nc", [["abortion options in nc", 0, [512]], ["abortion clinics in nc", 0, [22, 30]], ["abortion pill in nc cost", 0, [22, 30]], ["abortion providers in nc", 0, [22, 30]], ["abortions clinics in nc near me", 0, [22, 30]], ["abortion clinics in charlotte nc", 0, [22, 30]], ["abortion clinics in raleigh nc", 0, [22, 30]], ["abortion clinics in fayetteville nc", 0, [22, 30]], ["abortion clinics in asheville nc", 0, [22, 30]], ["abortion clinics in greensboro nc", 0, [22, 30]]], {"i": "abortion options in nc", "q": "rzN5bFOPH476vnoBiGn-Vr5NRW0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion options in nc", "abortion clinics in nc", "abortion pill in nc cost", "abortion providers in nc", "abortions clinics in nc near me", "abortion clinics in charlotte nc", "abortion clinics in raleigh nc", "abortion clinics in fayetteville nc", "abortion clinics in asheville nc", "abortion clinics in greensboro nc"], "self_loops": [0], "tags": {"i": "abortion options in nc", "q": "rzN5bFOPH476vnoBiGn-Vr5NRW0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion process in nc", "datetime": "2026-03-12 19:48:59.887519", "source": "google", "data": ["abortion process in nc", [["abortion process in nc", 0, [512]], ["abortion pill process in nc", 0, [22, 30]], ["abortion procedure nc", 0, [22, 30]], ["how long can you get an abortion in nc", 0, [512, 390, 650]], ["is abortion legal in nc", 0, [512, 390, 650]], ["nc.abortion", 0, [751]], ["abortion laws in nc 2021", 0, [751]], ["abortion process in nj", 0, [751]]], {"i": "abortion process in nc", "q": "I0g_DXZYgjMosWjEKmAJzfVY-sY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion process in nc", "abortion pill process in nc", "abortion procedure nc", "how long can you get an abortion in nc", "is abortion legal in nc", "nc.abortion", "abortion laws in nc 2021", "abortion process in nj"], "self_loops": [0], "tags": {"i": "abortion process in nc", "q": "I0g_DXZYgjMosWjEKmAJzfVY-sY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near greensboro nc", "datetime": "2026-03-12 19:49:01.333364", "source": "google", "data": ["abortion clinic near greensboro nc", [["abortion clinic near greensboro nc", 0, [22, 30]], ["closest abortion clinic near me", 0, [512, 390, 650]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic near me for free", 0, [512, 390, 650]], ["abortion clinic greensboro north carolina", 0, [512, 546]], ["abortion clinic greensboro", 0, [512, 546]]], {"i": "abortion clinic near greensboro nc", "q": "__Sid-CEF7z7ggCuwYdXwT3NqvM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near greensboro nc", "closest abortion clinic near me", "abortion clinic near me now", "abortion clinic near me for free", "abortion clinic greensboro north carolina", "abortion clinic greensboro"], "self_loops": [0], "tags": {"i": "abortion clinic near greensboro nc", "q": "__Sid-CEF7z7ggCuwYdXwT3NqvM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic greensboro", "datetime": "2026-03-12 19:49:02.509467", "source": "google", "data": ["abortion clinic greensboro", [["abortion clinic greensboro nc", 0, [512]], ["abortion clinic greensboro north carolina", 0, [512]], ["abortion clinic greensboro", 0, [512]], ["women's clinic greensboro nc", 0, [22, 30]], ["greensboro women's clinic", 0, [22, 10, 30]], ["abortion center greensboro", 0, [22, 30]], ["abortion services greensboro nc", 0, [22, 30]], ["abortion clinic near me greensboro", 0, [22, 30]], ["abortion clinic near me now", 0, [512, 390, 650]], ["abortion clinic for free near me", 0, [512, 390, 650]]], {"i": "abortion clinic greensboro", "q": "sRgH5pRB--zHlY4WL5kMMmjsCxo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic greensboro nc", "abortion clinic greensboro north carolina", "abortion clinic greensboro", "women's clinic greensboro nc", "greensboro women's clinic", "abortion center greensboro", "abortion services greensboro nc", "abortion clinic near me greensboro", "abortion clinic near me now", "abortion clinic for free near me"], "self_loops": [2], "tags": {"i": "abortion clinic greensboro", "q": "sRgH5pRB--zHlY4WL5kMMmjsCxo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic chicago il", "datetime": "2026-03-12 19:49:03.476490", "source": "google", "data": ["women's clinic chicago il", [["women's clinic chicago il", 0, [512]], ["women's health center chicago il", 0, [22, 10, 30]], ["women's hospital chicago il", 0, [22, 30]], ["women's health clinic chicago il", 0, [22, 10, 30]], ["prentice women's hospital chicago il", 0, [22, 10, 30]], ["american women's medical center chicago il", 0, [22, 10, 30]], ["northwestern women's hospital chicago il", 0, [22, 10, 30]], ["women's clinic in chicago illinois", 0, [546, 649]], ["women's clinic in chicago", 0, [751]], ["women's health clinic illinois", 0, [751]]], {"i": "women's clinic chicago il", "q": "WPH3hUORdjlujF0ZqRR2-RWu6uU", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic chicago il", "women's health center chicago il", "women's hospital chicago il", "women's health clinic chicago il", "prentice women's hospital chicago il", "american women's medical center chicago il", "northwestern women's hospital chicago il", "women's clinic in chicago illinois", "women's clinic in chicago", "women's health clinic illinois"], "self_loops": [0], "tags": {"i": "women's clinic chicago il", "q": "WPH3hUORdjlujF0ZqRR2-RWu6uU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic downtown chicago il", "datetime": "2026-03-12 19:49:04.279160", "source": "google", "data": ["abortion clinic downtown chicago il", [], {"i": "abortion clinic downtown chicago il", "q": "FXV34rZ3aAZTAytZYQXESoQyX8Q", "t": {"bpc": true, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "abortion clinic downtown chicago il", "q": "FXV34rZ3aAZTAytZYQXESoQyX8Q", "t": {"bpc": true, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinics in chicago area", "datetime": "2026-03-12 19:49:05.526947", "source": "google", "data": ["abortion clinics in chicago area", [["abortion clinics in chicago area", 0, [22, 30]], ["abortion clinics in chicago illinois", 0, [22, 30]], ["abortion centers in chicago illinois", 0, [22, 30]], ["abortion clinics in chicago il", 0, [546, 649]], ["abortion clinics in chicago", 0, [512, 546]]], {"i": "abortion clinics in chicago area", "q": "vDKBdV_PHoWA9gFsL9UxC-n89SI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinics in chicago area", "abortion clinics in chicago illinois", "abortion centers in chicago illinois", "abortion clinics in chicago il", "abortion clinics in chicago"], "self_loops": [0], "tags": {"i": "abortion clinics in chicago area", "q": "vDKBdV_PHoWA9gFsL9UxC-n89SI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "free abortion clinic chicago no insurance", "datetime": "2026-03-12 19:49:06.665917", "source": "google", "data": ["free abortion clinic chicago no insurance", [["free abortion clinic chicago no insurance", 0, [512]], ["free abortion clinic near me", 0, [512, 390, 650]], ["free pregnancy clinics near me no insurance", 0, [512, 390, 650]], ["free abortion clinic in chicago", 0, [546, 649]], ["free abortion clinic illinois", 0, [512, 546]], ["free abortion chicago", 0, [512, 546]]], {"i": "free abortion clinic chicago no insurance", "q": "edriNQHkHmWYg9Q2Ao3hoGF7yfs", "t": {"bpc": false, "tlw": false}}], "suggests": ["free abortion clinic chicago no insurance", "free abortion clinic near me", "free pregnancy clinics near me no insurance", "free abortion clinic in chicago", "free abortion clinic illinois", "free abortion chicago"], "self_loops": [0], "tags": {"i": "free abortion clinic chicago no insurance", "q": "edriNQHkHmWYg9Q2Ao3hoGF7yfs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic chicago il", "datetime": "2026-03-12 19:49:07.461176", "source": "google", "data": ["abortion clinic chicago il", [["abortion clinic chicago illinois", 0, [512]], ["women's clinic chicago il", 0, [22, 30]], ["abortion clinic downtown chicago il", 0, [22, 30]], ["abortion clinic near chicago il", 0, [22, 30]], ["abortion centers in chicago illinois", 0, [22, 30]], ["abortion clinic near me chicago il", 0, [22, 30]], ["women's health clinic chicago il", 0, [22, 10, 30]], ["abortion clinics in chicago area", 0, [22, 30]], ["abortion clinic on washington in chicago il", 0, [22, 30]], ["abortion clinic chicago free", 0, [512, 546]]], {"i": "abortion clinic chicago il", "q": "XHQ6fQ97kk9STm7YczXiiKIeqOY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic chicago illinois", "women's clinic chicago il", "abortion clinic downtown chicago il", "abortion clinic near chicago il", "abortion centers in chicago illinois", "abortion clinic near me chicago il", "women's health clinic chicago il", "abortion clinics in chicago area", "abortion clinic on washington in chicago il", "abortion clinic chicago free"], "self_loops": [], "tags": {"i": "abortion clinic chicago il", "q": "XHQ6fQ97kk9STm7YczXiiKIeqOY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic near me chicago il", "datetime": "2026-03-12 19:49:08.624774", "source": "google", "data": ["abortion clinic near me chicago il", [["abortion clinic near me chicago il", 0, [22, 30]], ["abortion clinic near chicago il", 0, [22, 30]], ["abortion clinic near downtown chicago il", 0, [22, 30]], ["illinois abortion clinic near me", 0, [512, 390, 650]], ["abortion clinic near me chicago", 0, [512, 546]]], {"i": "abortion clinic near me chicago il", "q": "hcyGu_pWbk7nthlZ1-txLYHvE-c", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic near me chicago il", "abortion clinic near chicago il", "abortion clinic near downtown chicago il", "illinois abortion clinic near me", "abortion clinic near me chicago"], "self_loops": [0], "tags": {"i": "abortion clinic near me chicago il", "q": "hcyGu_pWbk7nthlZ1-txLYHvE-c", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic chicago washington blvd", "datetime": "2026-03-12 19:49:09.622108", "source": "google", "data": ["abortion clinic chicago washington blvd", [["abortion clinic chicago washington blvd", 0, [22, 30]], ["abortion clinic chicago washington street", 0, [22, 30]], ["abortion clinic washington st chicago", 0, [512, 546]], ["abortion clinic on washington in chicago il", 0, [512, 546]], ["abortion clinic chicago downtown", 0, [546, 649]], ["abortion clinic on washington blvd", 0, [546, 649]], ["abortion clinic chicago near me", 0, [512, 546]]], {"i": "abortion clinic chicago washington blvd", "q": "1FB5W3BHYTmmA_KCv2CtiGpiO8Y", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic chicago washington blvd", "abortion clinic chicago washington street", "abortion clinic washington st chicago", "abortion clinic on washington in chicago il", "abortion clinic chicago downtown", "abortion clinic on washington blvd", "abortion clinic chicago near me"], "self_loops": [0], "tags": {"i": "abortion clinic chicago washington blvd", "q": "1FB5W3BHYTmmA_KCv2CtiGpiO8Y", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic washington st chicago", "datetime": "2026-03-12 19:49:10.779892", "source": "google", "data": ["abortion clinic washington st chicago", [["abortion clinic washington st chicago", 0, [512]], ["abortion clinic on washington in chicago il", 0, [22, 30]], ["abortion clinic washington state", 0, [512, 546]], ["abortion clinic washington dc", 0, [512, 546]], ["abortion clinic chicago downtown", 0, [546, 649]]], {"i": "abortion clinic washington st chicago", "q": "7oDta8q-PBRD2dowU3Rcf9jvNzg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic washington st chicago", "abortion clinic on washington in chicago il", "abortion clinic washington state", "abortion clinic washington dc", "abortion clinic chicago downtown"], "self_loops": [0], "tags": {"i": "abortion clinic washington st chicago", "q": "7oDta8q-PBRD2dowU3Rcf9jvNzg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic on washington in chicago il", "datetime": "2026-03-12 19:49:12.274926", "source": "google", "data": ["abortion clinic on washington in chicago il", [["abortion clinic on washington in chicago il", 0, [512]], ["abortion clinic washington st chicago", 0, [512, 546]], ["abortion clinic on washington blvd", 0, [546, 649]], ["abortion clinic on western and diversey", 0, [546, 649]], ["abortion clinic on washington", 0, [512, 546]]], {"i": "abortion clinic on washington in chicago il", "q": "gVYhWXmf3U_ld6bOCawBTM65ABc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic on washington in chicago il", "abortion clinic washington st chicago", "abortion clinic on washington blvd", "abortion clinic on western and diversey", "abortion clinic on washington"], "self_loops": [0], "tags": {"i": "abortion clinic on washington in chicago il", "q": "gVYhWXmf3U_ld6bOCawBTM65ABc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "women's clinic downtown chicago", "datetime": "2026-03-12 19:49:13.679706", "source": "google", "data": ["women's clinic downtown chicago", [["women's clinic downtown chicago", 0, [22, 30]], ["women's clinic in chicago illinois", 0, [22, 30]], ["women's hospital downtown chicago", 0, [22, 30]], ["women's health center downtown chicago", 0, [22, 10, 30]], ["chicago women's hospital", 0, [22, 10, 30]], ["women's clinic chicago", 0, [512, 546]], ["women's health clinic downtown", 0, [512, 546]]], {"i": "women's clinic downtown chicago", "q": "aCOiTIL19nFdtpXsH1XIJwSvGPo", "t": {"bpc": false, "tlw": false}}], "suggests": ["women's clinic downtown chicago", "women's clinic in chicago illinois", "women's hospital downtown chicago", "women's health center downtown chicago", "chicago women's hospital", "women's clinic chicago", "women's health clinic downtown"], "self_loops": [0], "tags": {"i": "women's clinic downtown chicago", "q": "aCOiTIL19nFdtpXsH1XIJwSvGPo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in chicago", "datetime": "2026-03-12 19:49:14.710743", "source": "google", "data": ["abortion laws in chicago", [["abortion laws in chicago", 0, [512]], ["abortion laws in chicago illinois", 0, [22, 30]], ["abortion legal in chicago", 0, [22, 30]], ["is abortion illegal in chicago", 0, [22, 30]], ["is abortion legal in chicago 2025", 0, [22, 30]], ["is abortion legal in chicago illinois", 0, [22, 30]], ["is abortion legal in illinois", 0, [512, 390, 650]], ["abortion laws in illinois 2021", 0, [751]], ["is abortion legal in chicago 2022", 0, [751]], ["abortion laws in illinois 2022", 0, [751]]], {"i": "abortion laws in chicago", "q": "yE37E5xF127yE1pR_0r8FGErGNU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion laws in chicago", "abortion laws in chicago illinois", "abortion legal in chicago", "is abortion illegal in chicago", "is abortion legal in chicago 2025", "is abortion legal in chicago illinois", "is abortion legal in illinois", "abortion laws in illinois 2021", "is abortion legal in chicago 2022", "abortion laws in illinois 2022"], "self_loops": [0], "tags": {"i": "abortion laws in chicago", "q": "yE37E5xF127yE1pR_0r8FGErGNU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost cvs price", "datetime": "2026-03-12 19:49:15.755794", "source": "google", "data": ["abortion pill cost cvs price", [["abortion pill cost cvs price", 0, [22, 30]], ["abortion pill cost cvs", 0, [512, 390, 650]], ["abortion pill cvs walgreens", 0, [546, 649]]], {"i": "abortion pill cost cvs price", "q": "FGtAjknOE4bghsXaQHAD-eyI8eQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cost cvs price", "abortion pill cost cvs", "abortion pill cvs walgreens"], "self_loops": [0], "tags": {"i": "abortion pill cost cvs price", "q": "FGtAjknOE4bghsXaQHAD-eyI8eQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cvs walgreens", "datetime": "2026-03-12 19:49:17.216024", "source": "google", "data": ["abortion pill cvs walgreens", [["abortion pill cvs walgreens", 0, [22, 30]], ["abortion pill cost cvs", 0, [512, 390, 650]], ["is the pharmacy at cvs open today", 0, [512, 390, 650]], ["walgreens or cvs near me open", 0, [512, 390, 650]], ["abortion pill cvs", 0, [512, 546]]], {"i": "abortion pill cvs walgreens", "q": "Tx0X54yKoWuuMb-Z6LnX5Pi5UpE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cvs walgreens", "abortion pill cost cvs", "is the pharmacy at cvs open today", "walgreens or cvs near me open", "abortion pill cvs"], "self_loops": [0], "tags": {"i": "abortion pill cvs walgreens", "q": "Tx0X54yKoWuuMb-Z6LnX5Pi5UpE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "cost of abortion pill in california", "datetime": "2026-03-12 19:49:18.648658", "source": "google", "data": ["cost of abortion pill in california", [["cost of abortion pill in california", 0, [512]], ["cost of abortion pill in ca", 0, [22, 30]]], {"i": "cost of abortion pill in california", "q": "JZTXsllJrjc0JpLDx9ylmFEDUls", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["cost of abortion pill in california", "cost of abortion pill in ca"], "self_loops": [0], "tags": {"i": "cost of abortion pill in california", "q": "JZTXsllJrjc0JpLDx9ylmFEDUls", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill texas cvs", "datetime": "2026-03-12 19:49:20.006774", "source": "google", "data": ["abortion pill texas cvs", [["abortion pill texas cvs", 0, [22, 30]], ["abortion pill cost cvs texas", 0, [22, 30]], ["abortion pill cvs walgreens", 0, [546, 649]], ["abortion pill cvs cost", 0, [512, 546]], ["abortion pill cvs", 0, [512, 546]]], {"i": "abortion pill texas cvs", "q": "htLOSiv_cBamvTMGy_nef6Sc6wY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill texas cvs", "abortion pill cost cvs texas", "abortion pill cvs walgreens", "abortion pill cvs cost", "abortion pill cvs"], "self_loops": [0], "tags": {"i": "abortion pill texas cvs", "q": "htLOSiv_cBamvTMGy_nef6Sc6wY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost michigan", "datetime": "2026-03-12 19:49:21.484953", "source": "google", "data": ["abortion pill cost michigan", [["abortion pill cost michigan", 0, [512]], ["abortion pill cost mi", 0, [22, 30]], ["abortion pill cost cvs michigan", 0, [22, 30]], ["how much is the abortion pill at planned parenthood in michigan", 0, [512, 390, 650]]], {"i": "abortion pill cost michigan", "q": "woYDcMIyM-S3NaCYExLqhhp59RE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill cost michigan", "abortion pill cost mi", "abortion pill cost cvs michigan", "how much is the abortion pill at planned parenthood in michigan"], "self_loops": [0], "tags": {"i": "abortion pill cost michigan", "q": "woYDcMIyM-S3NaCYExLqhhp59RE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can you buy misoprostol over the counter at walmart", "datetime": "2026-03-12 19:49:22.393505", "source": "google", "data": ["can you buy misoprostol over the counter at walmart", [["can you buy misoprostol over the counter at walmart", 0, [512]], ["cytotec over the counter walmart", 0, [546, 649]]], {"i": "can you buy misoprostol over the counter at walmart", "q": "NMBIz_04wfDjhgn49mzJqFUvI7Y", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["can you buy misoprostol over the counter at walmart", "cytotec over the counter walmart"], "self_loops": [0], "tags": {"i": "can you buy misoprostol over the counter at walmart", "q": "NMBIz_04wfDjhgn49mzJqFUvI7Y", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "day after pill cvs cost", "datetime": "2026-03-12 19:49:23.409024", "source": "google", "data": ["day after pill cvs cost", [["day after pill cvs cost", 0, [22, 30]], ["morning after pill cvs cost", 0, [22, 30]], ["how much is the day after pill at cvs", 0, [512, 390, 650]], ["how much is the morning after pill at cvs", 0, [512, 390, 650]], ["day after pill cvs", 0, [512, 546]], ["day after pill cost", 0, [512, 546]], ["day after pill costco", 0, [512, 546]]], {"i": "day after pill cvs cost", "q": "cpexSQAWQMSccwI_PhM4BlIg6dk", "t": {"bpc": false, "tlw": false}}], "suggests": ["day after pill cvs cost", "morning after pill cvs cost", "how much is the day after pill at cvs", "how much is the morning after pill at cvs", "day after pill cvs", "day after pill cost", "day after pill costco"], "self_loops": [0], "tags": {"i": "day after pill cvs cost", "q": "cpexSQAWQMSccwI_PhM4BlIg6dk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much is the morning after pill at cvs", "datetime": "2026-03-12 19:49:24.372632", "source": "google", "data": ["how much is the morning after pill at cvs", [["how much is the morning after pill at cvs", 0, [512]], ["how much is the morning after pill at cvs pharmacy", 0, [22, 30]], ["how much is the morning after pill at walgreens", 0, [512, 390, 650]], ["does cvs sell morning after pill", 0, [512, 390, 650]], ["how much is the day after pill at cvs", 0, [512, 390, 650]], ["how much does the morning after pill cost at cvs", 0, [751]], ["how much is the morning after pill at walmart", 0, [512, 546]]], {"i": "how much is the morning after pill at cvs", "q": "MSIKXpf9zMXO7QWzQ_pyGfvFGkY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much is the morning after pill at cvs", "how much is the morning after pill at cvs pharmacy", "how much is the morning after pill at walgreens", "does cvs sell morning after pill", "how much is the day after pill at cvs", "how much does the morning after pill cost at cvs", "how much is the morning after pill at walmart"], "self_loops": [0], "tags": {"i": "how much is the morning after pill at cvs", "q": "MSIKXpf9zMXO7QWzQ_pyGfvFGkY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does cvs sell morning after pill", "datetime": "2026-03-12 19:49:25.276409", "source": "google", "data": ["does cvs sell morning after pill", [["does cvs sell morning after pill", 0, [512]], ["does cvs sell day after pill", 0, [22, 30]], ["cvs sell morning after pill", 0, [22, 30]], ["does cvs sell plan b pills", 0, [22, 30]], ["does walgreens sell morning after pill", 0, [512, 390, 650]], ["does cvs have morning after pill", 0, [512, 546]], ["cvs morning after pill price", 0, [751]]], {"i": "does cvs sell morning after pill", "q": "ORbeXLX4RHzjyu8WuSdb13GyKJs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does cvs sell morning after pill", "does cvs sell day after pill", "cvs sell morning after pill", "does cvs sell plan b pills", "does walgreens sell morning after pill", "does cvs have morning after pill", "cvs morning after pill price"], "self_loops": [0], "tags": {"i": "does cvs sell morning after pill", "q": "ORbeXLX4RHzjyu8WuSdb13GyKJs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill cvs coupon", "datetime": "2026-03-12 19:49:26.589344", "source": "google", "data": ["morning after pill cvs coupon", [["morning after pill coupon cvs", 0, [22, 30]], ["does cvs sell morning after pill", 0, [512, 390, 650]], ["morning after pill cvs free", 0, [751]], ["morning after pill cvs cost", 0, [512, 546]], ["morning after pill cvs price", 0, [546, 649]]], {"i": "morning after pill cvs coupon", "q": "fB9luHiDrDHxylE9t_B7PvnjhUU", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill coupon cvs", "does cvs sell morning after pill", "morning after pill cvs free", "morning after pill cvs cost", "morning after pill cvs price"], "self_loops": [], "tags": {"i": "morning after pill cvs coupon", "q": "fB9luHiDrDHxylE9t_B7PvnjhUU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much does an abortion cost at planned parenthood california", "datetime": "2026-03-12 19:49:28.046858", "source": "google", "data": ["how much does an abortion cost at planned parenthood california", [["how much does an abortion cost at planned parenthood california", 0, [512]], ["how much does an abortion cost at planned parenthood in ca", 0, [22, 30]], ["how much does an abortion cost at planned parenthood in ca with insurance", 0, [22, 30]], ["how much is an abortion at planned parenthood california reddit", 0, [22, 30]], ["how much is an abortion at planned parenthood without insurance california", 0, [22, 30]]], {"i": "how much does an abortion cost at planned parenthood california", "q": "fjBhnRutlktc2JhEHSnNhktw1gA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much does an abortion cost at planned parenthood california", "how much does an abortion cost at planned parenthood in ca", "how much does an abortion cost at planned parenthood in ca with insurance", "how much is an abortion at planned parenthood california reddit", "how much is an abortion at planned parenthood without insurance california"], "self_loops": [0], "tags": {"i": "how much does an abortion cost at planned parenthood california", "q": "fjBhnRutlktc2JhEHSnNhktw1gA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion clinic free", "datetime": "2026-03-12 19:49:28.944084", "source": "google", "data": ["california abortion clinic free", [["california abortion clinic free", 0, [512]], ["how much does an abortion cost at planned parenthood california", 0, [512, 390, 650]], ["free abortion clinics near me", 0, [512, 390, 650]], ["california abortion free", 0, [751]], ["california abortion clinics", 0, [512, 546]]], {"i": "california abortion clinic free", "q": "VBl8o516fLqfTJZFK4Cut8KkiNA", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion clinic free", "how much does an abortion cost at planned parenthood california", "free abortion clinics near me", "california abortion free", "california abortion clinics"], "self_loops": [0], "tags": {"i": "california abortion clinic free", "q": "VBl8o516fLqfTJZFK4Cut8KkiNA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does kaiser cover abortions in california", "datetime": "2026-03-12 19:49:30.161292", "source": "google", "data": ["does kaiser cover abortions in california", [["does kaiser cover abortions in california", 0, [512]], ["does kaiser cover abortions", 0, [512, 390, 650]], ["does kaiser cover abortions at planned parenthood", 0, [512, 390, 650]], ["does kaiser cover abortion cost", 0, [546, 649]], ["does kaiser insurance cover abortions", 0, [512, 546]]], {"i": "does kaiser cover abortions in california", "q": "SigA_pIX0Q6jWXEnbt7aChhOmGA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does kaiser cover abortions in california", "does kaiser cover abortions", "does kaiser cover abortions at planned parenthood", "does kaiser cover abortion cost", "does kaiser insurance cover abortions"], "self_loops": [0], "tags": {"i": "does kaiser cover abortions in california", "q": "SigA_pIX0Q6jWXEnbt7aChhOmGA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much is an abortion at kaiser", "datetime": "2026-03-12 19:49:31.126132", "source": "google", "data": ["how much is an abortion at kaiser", [["how much is an abortion at kaiser", 0, [512]], ["how much is an abortion at kaiser permanente", 0, [512]], ["how much is an abortion at kaiser without insurance", 0, [22, 30]], ["how much is an abortion at kaiser with insurance", 0, [22, 30]], ["how much is an abortion pill at kaiser", 0, [22, 30]], ["how much is an abortion pill at kaiser with insurance", 0, [22, 30]], ["how much is an abortion pill kaiser permanente", 0, [22, 30]], ["how to get an abortion at kaiser", 0, [22, 30]], ["how much is an abortion at planned parenthood with kaiser insurance", 0, [22, 30]], ["how much does an abortion cost kaiser in california", 0, [22, 30]]], {"i": "how much is an abortion at kaiser", "q": "rIySgX98OeZFEnGR_ZnJ58K7iTg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much is an abortion at kaiser", "how much is an abortion at kaiser permanente", "how much is an abortion at kaiser without insurance", "how much is an abortion at kaiser with insurance", "how much is an abortion pill at kaiser", "how much is an abortion pill at kaiser with insurance", "how much is an abortion pill kaiser permanente", "how to get an abortion at kaiser", "how much is an abortion at planned parenthood with kaiser insurance", "how much does an abortion cost kaiser in california"], "self_loops": [0], "tags": {"i": "how much is an abortion at kaiser", "q": "rIySgX98OeZFEnGR_ZnJ58K7iTg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "kaiser abortion pill cost", "datetime": "2026-03-12 19:49:31.939351", "source": "google", "data": ["kaiser abortion pill cost", [["kaiser abortion pill cost", 0, [512]], ["kaiser abortion pill cost in india", 0, [22, 30]], ["kaiser abortion pill cost philippines", 0, [22, 30]], ["kaiser abortion pill cost california", 0, [22, 30]], ["kaiser permanente abortion pill cost", 0, [22, 30]], ["abortion pill cost with kaiser insurance", 0, [22, 30]], ["how much does an abortion cost kaiser", 0, [512, 390, 650]], ["kaiser abortion pills", 0, [546, 649]], ["kaiser abortion copay", 0, [546, 649]]], {"i": "kaiser abortion pill cost", "q": "vT2fQRSmfA_NL96izV4rdVurKOM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["kaiser abortion pill cost", "kaiser abortion pill cost in india", "kaiser abortion pill cost philippines", "kaiser abortion pill cost california", "kaiser permanente abortion pill cost", "abortion pill cost with kaiser insurance", "how much does an abortion cost kaiser", "kaiser abortion pills", "kaiser abortion copay"], "self_loops": [0], "tags": {"i": "kaiser abortion pill cost", "q": "vT2fQRSmfA_NL96izV4rdVurKOM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "kaiser abortion copay", "datetime": "2026-03-12 19:49:32.906642", "source": "google", "data": ["kaiser abortion copay", [["kaiser abortion copay", 0, [22, 30]], ["does kaiser cover abortions", 0, [512, 390, 650]], ["does kaiser cover abortions at planned parenthood", 0, [512, 390, 650]], ["does kaiser cover abortions in california", 0, [512, 390, 650]], ["does kaiser cover planned parenthood", 0, [512, 390, 650]], ["kaiser abortion coverage", 0, [512, 546]], ["kaiser abortion care", 0, [512, 546]], ["kaiser abortion pill cost", 0, [512, 546]]], {"i": "kaiser abortion copay", "q": "WtuucgHb_nObq5QIuw2llpeTGXo", "t": {"bpc": false, "tlw": false}}], "suggests": ["kaiser abortion copay", "does kaiser cover abortions", "does kaiser cover abortions at planned parenthood", "does kaiser cover abortions in california", "does kaiser cover planned parenthood", "kaiser abortion coverage", "kaiser abortion care", "kaiser abortion pill cost"], "self_loops": [0], "tags": {"i": "kaiser abortion copay", "q": "WtuucgHb_nObq5QIuw2llpeTGXo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "kaiser abortion pills", "datetime": "2026-03-12 19:49:33.998598", "source": "google", "data": ["kaiser abortion pills", [["kaiser abortion pills", 0, [22, 30]], ["kaiser abortion pill cost", 0, [22, 30]], ["kaiser abortion pill cost in india", 0, [22, 30]], ["kaiser abortion pill appointment", 0, [22, 30]], ["kaiser abortion pill process", 0, [22, 30]], ["kaiser abortion pill cost philippines", 0, [22, 30]], ["kaiser abortion pill cost california", 0, [22, 30]], ["kaiser abortion medication", 0, [22, 30]], ["kaiser permanente abortion pills", 0, [22, 30]], ["does kaiser offer abortion pills", 0, [22, 30]]], {"i": "kaiser abortion pills", "q": "FnanAl2Du9HhrDCocM1pipXtWcU", "t": {"bpc": false, "tlw": false}}], "suggests": ["kaiser abortion pills", "kaiser abortion pill cost", "kaiser abortion pill cost in india", "kaiser abortion pill appointment", "kaiser abortion pill process", "kaiser abortion pill cost philippines", "kaiser abortion pill cost california", "kaiser abortion medication", "kaiser permanente abortion pills", "does kaiser offer abortion pills"], "self_loops": [0], "tags": {"i": "kaiser abortion pills", "q": "FnanAl2Du9HhrDCocM1pipXtWcU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "jane abortion pill", "datetime": "2026-03-12 19:49:35.248513", "source": "google", "data": ["jane abortion pill", [["jane abortion pills", 0, [512]], ["jane abortion clinic", 0, [22, 30]], ["hey jane abortion pill", 0, [22, 30]], ["hey jane abortion pill cost", 0, [22, 30]], ["hey jane abortion pill reviews", 0, [22, 30]], ["hey jane abortion pill instructions", 0, [22, 30]], ["hey jane abortion pill side effects", 0, [22, 30]], ["mary jane abortion pill", 0, [22, 30]], ["my jane abortion pill", 0, [22, 30]], ["hello jane abortion pill", 0, [22, 30]]], {"i": "jane abortion pill", "q": "IkEQMjEI5FieMN1EkZ0iiBEuRN8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["jane abortion pills", "jane abortion clinic", "hey jane abortion pill", "hey jane abortion pill cost", "hey jane abortion pill reviews", "hey jane abortion pill instructions", "hey jane abortion pill side effects", "mary jane abortion pill", "my jane abortion pill", "hello jane abortion pill"], "self_loops": [], "tags": {"i": "jane abortion pill", "q": "IkEQMjEI5FieMN1EkZ0iiBEuRN8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pills name and price online in india", "datetime": "2026-03-12 19:49:36.438073", "source": "google", "data": ["abortion pills name and price online in india", [["abortion pills name and price online in india", 0, [512]], ["abortion pills online amazon india", 0, [751]]], {"i": "abortion pills name and price online in india", "q": "mwwmXpimg6umpBIy43kfCnB8Id8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pills name and price online in india", "abortion pills online amazon india"], "self_loops": [0], "tags": {"i": "abortion pills name and price online in india", "q": "mwwmXpimg6umpBIy43kfCnB8Id8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill name and price online", "datetime": "2026-03-12 19:49:37.781757", "source": "google", "data": ["abortion pill name and price online", [["abortion pill name and price online", 0, [512]], ["abortion pills name and price online in india", 0, [22, 30]], ["abortion pill name and image", 0, [512, 546]], ["abortion pill nc online", 0, [751]]], {"i": "abortion pill name and price online", "q": "GQipTmhikSOt5roDAVtsfVALJcY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill name and price online", "abortion pills name and price online in india", "abortion pill name and image", "abortion pill nc online"], "self_loops": [0], "tags": {"i": "abortion pill name and price online", "q": "GQipTmhikSOt5roDAVtsfVALJcY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost south dakota", "datetime": "2026-03-12 19:49:38.785418", "source": "google", "data": ["abortion pill cost south dakota", [["abortion pill cost south dakota 2024", 33, [160], {"a": "abortion pill cost south ", "b": "dakota 2024"}], ["abortion pill cost south dakota 2023", 33, [160], {"a": "abortion pill cost south ", "b": "dakota 2023"}], ["abortion pill cost south dakota state", 33, [160], {"a": "abortion pill cost south ", "b": "dakota state"}], ["abortion pill cost south dakota", 33, [299], {"a": "abortion pill cost south ", "b": "dakota"}], ["abortion pill cost south dakota medical", 33, [671], {"a": "abortion pill cost south ", "b": "dakota medical"}]], {"i": "abortion pill cost south dakota", "q": "ZbGQINWk--zVODQ3MnK3uDkk9cM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cost south dakota 2024", "abortion pill cost south dakota 2023", "abortion pill cost south dakota state", "abortion pill cost south dakota", "abortion pill cost south dakota medical"], "self_loops": [3], "tags": {"i": "abortion pill cost south dakota", "q": "ZbGQINWk--zVODQ3MnK3uDkk9cM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost south carolina", "datetime": "2026-03-12 19:49:39.948956", "source": "google", "data": ["abortion pill cost south carolina", [["abortion pill cost south carolina", 0, [22, 30]], ["abortion pill cost sc", 0, [751]], ["abortion pill south carolina", 0, [512, 546]]], {"i": "abortion pill cost south carolina", "q": "1wqYTa_otTiPKCoUOFIcXHYs1dc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cost south carolina", "abortion pill cost sc", "abortion pill south carolina"], "self_loops": [0], "tags": {"i": "abortion pill cost south carolina", "q": "1wqYTa_otTiPKCoUOFIcXHYs1dc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill pharmacies", "datetime": "2026-03-12 19:49:41.229080", "source": "google", "data": ["abortion pill pharmacies", [["morning after pill pharmacies near me", 0, [22, 30]], ["morning after pill pharmacies malta", 0, [22, 30]], ["abortion pill pharmacist", 0, [22, 30]], ["abortion pill pharmacy uk", 0, [22, 30]], ["abortion pill pharmacy price", 0, [22, 30]], ["abortion pill pharmacy pick up", 0, [22, 30]], ["abortion pill chemist price", 0, [22, 30]], ["abortion pill chemist australia", 0, [22, 30]], ["abortion pill pharmacist in malaysia", 0, [22, 455, 30]]], {"i": "abortion pill pharmacies", "q": "oMZIqeUKZJQxU4Eolx0rDUrE7VE", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill pharmacies near me", "morning after pill pharmacies malta", "abortion pill pharmacist", "abortion pill pharmacy uk", "abortion pill pharmacy price", "abortion pill pharmacy pick up", "abortion pill chemist price", "abortion pill chemist australia", "abortion pill pharmacist in malaysia"], "self_loops": [], "tags": {"i": "abortion pill pharmacies", "q": "oMZIqeUKZJQxU4Eolx0rDUrE7VE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost sc", "datetime": "2026-03-12 19:49:42.316869", "source": "google", "data": ["abortion pill cost sc", [["abortion pill cost sc", 0, [22, 30]], ["abortion pill cost scotland", 0, [22, 30]], ["morning after pill cost scotland", 0, [22, 30]], ["abortion pill cost nova scotia", 0, [22, 30]], ["dog abortion pill cost", 0, [512, 390, 650]], ["abortion pill cost south carolina", 0, [546, 649]], ["abortion pill cost kaiser", 0, [512, 546]]], {"i": "abortion pill cost sc", "q": "82KCRGMnKYl0dNNdwqWlqDFTbXw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cost sc", "abortion pill cost scotland", "morning after pill cost scotland", "abortion pill cost nova scotia", "dog abortion pill cost", "abortion pill cost south carolina", "abortion pill cost kaiser"], "self_loops": [0], "tags": {"i": "abortion pill cost sc", "q": "82KCRGMnKYl0dNNdwqWlqDFTbXw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much is mifepristone in pharmacy in kenya", "datetime": "2026-03-12 19:49:43.251984", "source": "google", "data": ["how much is mifepristone in pharmacy in kenya", [["how much is mifepristone in pharmacy in kenya", 0, [512]], ["how much is mifepristone and misoprostol in pharmacy in kenya", 0, [22, 30]], ["how much is mifepristone in pharmacy", 0, [512, 390, 650]], ["how much is mifepristone in lagos", 0, [512, 390, 650]], ["what is the price of mifepristone in nigeria", 0, [512, 390, 650]], ["how much is mifepristone in kenya shillings", 0, [512, 390, 650]], ["how much is mifepristone and misoprostol in naira", 0, [512, 390, 650]], ["mifepristone in pharmacies", 0, [546, 649]], ["how much is mifepristone in kenya", 0, [512, 546]]], {"i": "how much is mifepristone in pharmacy in kenya", "q": "xoyXv3CosoiCxF5gUZUhi4a7Z6w", "t": {"bpc": false, "tlw": false}}], "suggests": ["how much is mifepristone in pharmacy in kenya", "how much is mifepristone and misoprostol in pharmacy in kenya", "how much is mifepristone in pharmacy", "how much is mifepristone in lagos", "what is the price of mifepristone in nigeria", "how much is mifepristone in kenya shillings", "how much is mifepristone and misoprostol in naira", "mifepristone in pharmacies", "how much is mifepristone in kenya"], "self_loops": [0], "tags": {"i": "how much is mifepristone in pharmacy in kenya", "q": "xoyXv3CosoiCxF5gUZUhi4a7Z6w", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill kentucky cost", "datetime": "2026-03-12 19:49:44.107186", "source": "google", "data": ["abortion pill kentucky cost", [["abortion pill cost kentucky", 0, [22, 30]], ["abortion pill kentucky", 0, [512, 546]]], {"i": "abortion pill kentucky cost", "q": "StjeJIuecMyakAVhSyd9g2KybP4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cost kentucky", "abortion pill kentucky"], "self_loops": [], "tags": {"i": "abortion pill kentucky cost", "q": "StjeJIuecMyakAVhSyd9g2KybP4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much is mifepristone in pharmacy", "datetime": "2026-03-12 19:49:44.974660", "source": "google", "data": ["how much is mifepristone in pharmacy", [["how much is mifepristone in pharmacy", 0, [512]], ["how much is mifepristone in pharmacy in ghana", 0, [512]], ["how much is mifepristone in pharmacy in zambia", 0, [512]], ["how much is mifepristone in pharmacy in philippines", 0, [512]], ["how much is mifepristone in pharmacy in kenya", 0, [512]], ["how much is mifepristone in pharmacy in uganda", 0, [512]], ["how much is mifepristone in pharmacy in nigeria", 0, [512]], ["how much is mifepristone in pharmacy in nigeria 2025", 0, [512]], ["how much is mifepristone in pharmacy in south africa", 0, [512]], ["how much is the cost of mifepristone and misoprostol", 0, [512, 390, 650]]], {"q": "HDgZZJTL_TRiMLYZhZhsItQmlZ4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much is mifepristone in pharmacy", "how much is mifepristone in pharmacy in ghana", "how much is mifepristone in pharmacy in zambia", "how much is mifepristone in pharmacy in philippines", "how much is mifepristone in pharmacy in kenya", "how much is mifepristone in pharmacy in uganda", "how much is mifepristone in pharmacy in nigeria", "how much is mifepristone in pharmacy in nigeria 2025", "how much is mifepristone in pharmacy in south africa", "how much is the cost of mifepristone and misoprostol"], "self_loops": [0], "tags": {"q": "HDgZZJTL_TRiMLYZhZhsItQmlZ4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "cost of abortion pill in kenyan shillings", "datetime": "2026-03-12 19:49:46.069141", "source": "google", "data": ["cost of abortion pill in kenyan shillings", [], {"i": "cost of abortion pill in kenyan shillings", "q": "ALaX0itU4uiWEK3vuTkq1FfQMpo", "t": {"bpc": true, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "cost of abortion pill in kenyan shillings", "q": "ALaX0itU4uiWEK3vuTkq1FfQMpo", "t": {"bpc": true, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost in indiana", "datetime": "2026-03-12 19:49:46.905902", "source": "google", "data": ["abortion pill cost in indiana", [], {"i": "abortion pill cost in indiana", "q": "Mv15fNoS-wbGHYFd044VcRmZIvM", "t": {"bpc": true, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "abortion pill cost in indiana", "q": "Mv15fNoS-wbGHYFd044VcRmZIvM", "t": {"bpc": true, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pills price at pharmacy", "datetime": "2026-03-12 19:49:47.938816", "source": "google", "data": ["abortion pills price at pharmacy", [["abortion pills price at pharmacy", 0, [512]], ["abortion pills price at pharmacy in nepal", 0, [512]], ["abortion pill name and price at pharmacy", 0, [22, 30]], ["abortion pills at pharmacy price sa", 0, [22, 30]], ["abortion pills at pharmacy price near me", 0, [22, 455, 30]]], {"i": "abortion pills price at pharmacy", "q": "sncRj4vrBf1elphvyt1W5H4kbxs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pills price at pharmacy", "abortion pills price at pharmacy in nepal", "abortion pill name and price at pharmacy", "abortion pills at pharmacy price sa", "abortion pills at pharmacy price near me"], "self_loops": [0], "tags": {"i": "abortion pills price at pharmacy", "q": "sncRj4vrBf1elphvyt1W5H4kbxs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill price massachusetts", "datetime": "2026-03-12 19:49:48.762866", "source": "google", "data": ["abortion pill price massachusetts", [["abortion pill price massachusetts", 0, [22, 30]], ["abortion pill cost massachusetts", 0, [512, 390, 650]], ["abortion pill in massachusetts", 0, [512, 390, 650]]], {"i": "abortion pill price massachusetts", "q": "XzN2XOWorLSUl3jzY1TR-wbLU08", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill price massachusetts", "abortion pill cost massachusetts", "abortion pill in massachusetts"], "self_loops": [0], "tags": {"i": "abortion pill price massachusetts", "q": "XzN2XOWorLSUl3jzY1TR-wbLU08", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill malaysia pharmacy", "datetime": "2026-03-12 19:49:49.793044", "source": "google", "data": ["abortion pill malaysia pharmacy", [["abortion pill malaysia pharmacy", 0, [512]], ["abortion pill cost pharmacy malaysia", 0, [22, 30]], ["abortion pill cost pharmacy malaysia near me", 0, [22, 30]], ["is abortion pill legal in malaysia", 0, [512, 390, 650]], ["abortion pill pharmacies", 0, [546, 649]], ["abortion pill mail pa", 0, [751]]], {"i": "abortion pill malaysia pharmacy", "q": "xG4KOKG6efu0UXdn9esLb_dFNfE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill malaysia pharmacy", "abortion pill cost pharmacy malaysia", "abortion pill cost pharmacy malaysia near me", "is abortion pill legal in malaysia", "abortion pill pharmacies", "abortion pill mail pa"], "self_loops": [0], "tags": {"i": "abortion pill malaysia pharmacy", "q": "xG4KOKG6efu0UXdn9esLb_dFNfE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic north carolina cost", "datetime": "2026-03-12 19:49:50.942706", "source": "google", "data": ["abortion clinic north carolina cost", [["abortion clinic north carolina cost", 0, [22, 30]], ["are abortions free in nc", 0, [512, 390, 650]], ["abortion clinic charlotte nc cost", 0, [751]], ["abortion clinic charlotte nc price", 0, [751]], ["abortion clinic north carolina", 0, [512, 546]], ["abortion clinic raleigh nc cost", 0, [751]]], {"i": "abortion clinic north carolina cost", "q": "hDOB4JzGZDaIdgSHVojHmsCgdy4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic north carolina cost", "are abortions free in nc", "abortion clinic charlotte nc cost", "abortion clinic charlotte nc price", "abortion clinic north carolina", "abortion clinic raleigh nc cost"], "self_loops": [0], "tags": {"i": "abortion clinic north carolina cost", "q": "hDOB4JzGZDaIdgSHVojHmsCgdy4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill charlotte nc cost", "datetime": "2026-03-12 19:49:52.250414", "source": "google", "data": ["abortion pill charlotte nc cost", [["abortion pill charlotte nc cost", 0, [22, 30]], ["abortion clinic charlotte nc cost", 0, [22, 30]], ["abortion pill nc cost", 0, [512, 390, 650]], ["abortion pill charlotte", 0, [546, 649]], ["abortion pill charlotte nc", 0, [512, 546]], ["abortion pill cost north carolina", 0, [512, 546]]], {"i": "abortion pill charlotte nc cost", "q": "31u_dz_kpnmTIpycksYJ73On5K4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill charlotte nc cost", "abortion clinic charlotte nc cost", "abortion pill nc cost", "abortion pill charlotte", "abortion pill charlotte nc", "abortion pill cost north carolina"], "self_loops": [0], "tags": {"i": "abortion pill charlotte nc cost", "q": "31u_dz_kpnmTIpycksYJ73On5K4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost raleigh nc", "datetime": "2026-03-12 19:49:53.583262", "source": "google", "data": ["abortion pill cost raleigh nc", [["abortion pill cost raleigh nc", 0, [22, 30]], ["abortion pill nc cost", 0, [512, 390, 650]], ["abortion pill raleigh nc", 0, [512, 546]], ["abortion pill raleigh", 0, [546, 649]], ["abortion pill cost in north carolina", 0, [512, 546]]], {"i": "abortion pill cost raleigh nc", "q": "qxXqdukSlmumK5QbbZ4Vkvfv5zY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill cost raleigh nc", "abortion pill nc cost", "abortion pill raleigh nc", "abortion pill raleigh", "abortion pill cost in north carolina"], "self_loops": [0], "tags": {"i": "abortion pill cost raleigh nc", "q": "qxXqdukSlmumK5QbbZ4Vkvfv5zY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill nc", "datetime": "2026-03-12 19:49:54.464686", "source": "google", "data": ["abortion pill nc", [["abortion pill nc", 0, [512]], ["abortion pill nc cost", 0, [512]], ["abortion pill nc reddit", 0, [22, 30]], ["abortion pills nc online", 0, [22, 30]], ["abortion clinic nc", 0, [22, 30]], ["abortion clinic nc charlotte", 0, [22, 30]], ["abortion pill charlotte nc", 0, [22, 30]], ["abortion pill raleigh nc", 0, [22, 30]], ["abortion pill greensboro nc", 0, [22, 30]], ["abortion pill fayetteville nc", 0, [22, 30]]], {"i": "abortion pill nc", "q": "5TrkmhyzHJb3a3z9JlXuwYEX2us", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill nc", "abortion pill nc cost", "abortion pill nc reddit", "abortion pills nc online", "abortion clinic nc", "abortion clinic nc charlotte", "abortion pill charlotte nc", "abortion pill raleigh nc", "abortion pill greensboro nc", "abortion pill fayetteville nc"], "self_loops": [0], "tags": {"i": "abortion pill nc", "q": "5TrkmhyzHJb3a3z9JlXuwYEX2us", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much are abortion pills at planned parenthood with insurance", "datetime": "2026-03-12 19:49:55.892614", "source": "google", "data": ["how much are abortion pills at planned parenthood with insurance", [["how much are abortion pills at planned parenthood with insurance", 0, [512]], ["how much are abortion pills at planned parenthood without insurance", 0, [22, 30]]], {"i": "how much are abortion pills at planned parenthood with insurance", "q": "4UQq8_WZ0ZAfqV7r4nx1sLU1oBQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much are abortion pills at planned parenthood with insurance", "how much are abortion pills at planned parenthood without insurance"], "self_loops": [0], "tags": {"i": "how much are abortion pills at planned parenthood with insurance", "q": "4UQq8_WZ0ZAfqV7r4nx1sLU1oBQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much is an abortion at planned parenthood with insurance in california", "datetime": "2026-03-12 19:49:56.860944", "source": "google", "data": ["how much is an abortion at planned parenthood with insurance in california", [["how much is an abortion at planned parenthood with insurance in california", 0, [512]]], {"i": "how much is an abortion at planned parenthood with insurance in california", "q": "-SSrXT1yDZOSlA4v2cImrPw2BNM", "t": {"bpc": false, "tlw": false}}], "suggests": ["how much is an abortion at planned parenthood with insurance in california"], "self_loops": [0], "tags": {"i": "how much is an abortion at planned parenthood with insurance in california", "q": "-SSrXT1yDZOSlA4v2cImrPw2BNM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much is an abortion at planned parenthood with insurance reddit", "datetime": "2026-03-12 19:49:57.760912", "source": "google", "data": ["how much is an abortion at planned parenthood with insurance reddit", [["how much is an abortion at planned parenthood with insurance reddit", 0, [30]]], {"i": "how much is an abortion at planned parenthood with insurance reddit", "q": "3MegG9lNym0hp30WwQx2YV1OcYM", "t": {"bpc": false, "tlw": false}}], "suggests": ["how much is an abortion at planned parenthood with insurance reddit"], "self_loops": [0], "tags": {"i": "how much is an abortion at planned parenthood with insurance reddit", "q": "3MegG9lNym0hp30WwQx2YV1OcYM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much are abortions at planned parenthood without insurance", "datetime": "2026-03-12 19:49:59.300018", "source": "google", "data": ["how much are abortions at planned parenthood without insurance", [["how much are abortions at planned parenthood without insurance", 0, [512]], ["how much are abortion pills at planned parenthood without insurance", 0, [22, 30]], ["how much is an abortion at planned parenthood without insurance in california", 0, [22, 30]], ["how much is an abortion at planned parenthood without insurance in florida", 0, [22, 30]], ["how much is an abortion at planned parenthood without insurance in ny", 0, [22, 30]], ["how much is an abortion at planned parenthood without insurance in nj", 0, [22, 30]], ["how much is an abortion at planned parenthood without insurance reddit", 0, [22, 30]], ["how much is an abortion at planned parenthood without insurance in ohio", 0, [22, 30]], ["how much is an abortion at planned parenthood without insurance in illinois", 0, [22, 30]], ["how much are abortions at planned parenthood with insurance", 0, [22, 30]]], {"i": "how much are abortions at planned parenthood without insurance", "q": "OL28lUzdgvqozc78yzsOK9vzy6o", "t": {"bpc": false, "tlw": false}}], "suggests": ["how much are abortions at planned parenthood without insurance", "how much are abortion pills at planned parenthood without insurance", "how much is an abortion at planned parenthood without insurance in california", "how much is an abortion at planned parenthood without insurance in florida", "how much is an abortion at planned parenthood without insurance in ny", "how much is an abortion at planned parenthood without insurance in nj", "how much is an abortion at planned parenthood without insurance reddit", "how much is an abortion at planned parenthood without insurance in ohio", "how much is an abortion at planned parenthood without insurance in illinois", "how much are abortions at planned parenthood with insurance"], "self_loops": [0], "tags": {"i": "how much are abortions at planned parenthood without insurance", "q": "OL28lUzdgvqozc78yzsOK9vzy6o", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much is an abortion at planned parenthood with kaiser insurance", "datetime": "2026-03-12 19:50:00.417334", "source": "google", "data": ["how much is an abortion at planned parenthood with kaiser insurance", [["how much is an abortion at planned parenthood with kaiser insurance", 0, [30]]], {"i": "how much is an abortion at planned parenthood with kaiser insurance", "q": "O4P6nPG1fQ1-IEr71-XON5jSpVo", "t": {"bpc": false, "tlw": false}}], "suggests": ["how much is an abortion at planned parenthood with kaiser insurance"], "self_loops": [0], "tags": {"i": "how much is an abortion at planned parenthood with kaiser insurance", "q": "O4P6nPG1fQ1-IEr71-XON5jSpVo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much are abortion pills at planned parenthood without insurance", "datetime": "2026-03-12 19:50:01.376131", "source": "google", "data": ["how much are abortion pills at planned parenthood without insurance", [["how much are abortion pills at planned parenthood without insurance", 0, [512]], ["how much are abortion pills at planned parenthood with insurance", 0, [22, 30]], ["how much is a medical abortion at planned parenthood without insurance", 0, [22, 30]]], {"i": "how much are abortion pills at planned parenthood without insurance", "q": "JRZUSCEz-kLNwRr7MCprNpSTsKY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much are abortion pills at planned parenthood without insurance", "how much are abortion pills at planned parenthood with insurance", "how much is a medical abortion at planned parenthood without insurance"], "self_loops": [0], "tags": {"i": "how much are abortion pills at planned parenthood without insurance", "q": "JRZUSCEz-kLNwRr7MCprNpSTsKY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much is an abortion at planned parenthood in illinois with insurance", "datetime": "2026-03-12 19:50:02.560744", "source": "google", "data": ["how much is an abortion at planned parenthood in illinois with insurance", [["how much is an abortion at planned parenthood in illinois with insurance", 0, [30]]], {"i": "how much is an abortion at planned parenthood in illinois with insurance", "q": "cb0S1QKsKO0_H1Tm2_Tv_6ybfK8", "t": {"bpc": false, "tlw": false}}], "suggests": ["how much is an abortion at planned parenthood in illinois with insurance"], "self_loops": [0], "tags": {"i": "how much is an abortion at planned parenthood in illinois with insurance", "q": "cb0S1QKsKO0_H1Tm2_Tv_6ybfK8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much is an abortion at planned parenthood in ohio with insurance", "datetime": "2026-03-12 19:50:03.688389", "source": "google", "data": ["how much is an abortion at planned parenthood in ohio with insurance", [["how much is an abortion at planned parenthood in ohio with insurance", 0, [512]]], {"i": "how much is an abortion at planned parenthood in ohio with insurance", "q": "07sbLtlkl_d8z-bVUdSfc0cNNaI", "t": {"bpc": false, "tlw": false}}], "suggests": ["how much is an abortion at planned parenthood in ohio with insurance"], "self_loops": [0], "tags": {"i": "how much is an abortion at planned parenthood in ohio with insurance", "q": "07sbLtlkl_d8z-bVUdSfc0cNNaI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much is an abortion at planned parenthood in pa with insurance", "datetime": "2026-03-12 19:50:04.963358", "source": "google", "data": ["how much is an abortion at planned parenthood in pa with insurance", [["how much is an abortion at planned parenthood in pa with insurance", 0, [512]]], {"i": "how much is an abortion at planned parenthood in pa with insurance", "q": "iUwNkprAEohD6_ACZPSA4_py8tE", "t": {"bpc": false, "tlw": false}}], "suggests": ["how much is an abortion at planned parenthood in pa with insurance"], "self_loops": [0], "tags": {"i": "how much is an abortion at planned parenthood in pa with insurance", "q": "iUwNkprAEohD6_ACZPSA4_py8tE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much does an abortion cost at planned parenthood in illinois", "datetime": "2026-03-12 19:50:06.411079", "source": "google", "data": ["how much does an abortion cost at planned parenthood in illinois", [["how much does an abortion cost at planned parenthood in illinois", 0, [512]], ["how much does an abortion cost at planned parenthood in illinois without insurance", 0, [30]], ["how much does an abortion cost at planned parenthood in illinois with insurance", 0, [30]]], {"i": "how much does an abortion cost at planned parenthood in illinois", "q": "c4vznZkli_fRumYzJ_WZqyGJ85U", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much does an abortion cost at planned parenthood in illinois", "how much does an abortion cost at planned parenthood in illinois without insurance", "how much does an abortion cost at planned parenthood in illinois with insurance"], "self_loops": [0], "tags": {"i": "how much does an abortion cost at planned parenthood in illinois", "q": "c4vznZkli_fRumYzJ_WZqyGJ85U", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much does an abortion cost at planned parenthood in ca", "datetime": "2026-03-12 19:50:07.557059", "source": "google", "data": ["how much does an abortion cost at planned parenthood in ca", [["how much does an abortion cost at planned parenthood in ca", 0, [512]], ["how much does an abortion cost at planned parenthood in california", 0, [512]], ["how much does an abortion cost at planned parenthood in ca with insurance", 0, [30]], ["how much does an abortion cost at planned parenthood in north carolina", 0, [8, 30]], ["how much does an abortion cost at planned parenthood in south carolina", 0, [8, 30]], ["how much is an abortion cost at planned parenthood", 0, [512, 390, 650]], ["how much does an abortion cost at planned parenthood without insurance", 0, [512, 390, 650]], ["how much is an abortion at planned parenthood with insurance", 0, [512, 390, 650]], ["how much does an abortion cost at planned parenthood in illinois", 0, [512, 546]]], {"i": "how much does an abortion cost at planned parenthood in ca", "q": "oI9nNVlRaO_yg6sKr_8Z-ybLVjQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much does an abortion cost at planned parenthood in ca", "how much does an abortion cost at planned parenthood in california", "how much does an abortion cost at planned parenthood in ca with insurance", "how much does an abortion cost at planned parenthood in north carolina", "how much does an abortion cost at planned parenthood in south carolina", "how much is an abortion cost at planned parenthood", "how much does an abortion cost at planned parenthood without insurance", "how much is an abortion at planned parenthood with insurance", "how much does an abortion cost at planned parenthood in illinois"], "self_loops": [0], "tags": {"i": "how much does an abortion cost at planned parenthood in ca", "q": "oI9nNVlRaO_yg6sKr_8Z-ybLVjQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much does an abortion cost at planned parenthood pa", "datetime": "2026-03-12 19:50:08.663295", "source": "google", "data": ["how much does an abortion cost at planned parenthood pa", [["how much does an abortion cost at planned parenthood pa", 0, [512]], ["how much is an abortion at planned parenthood pa", 0, [22, 30]], ["how much is an abortion pill at planned parenthood in pa", 0, [22, 30]], ["how much is an abortion cost at planned parenthood", 0, [512, 390, 650]], ["how much does an abortion cost at planned parenthood without insurance", 0, [512, 390, 650]], ["how much are abortions at planned parenthood with insurance", 0, [512, 390, 650]], ["how much does an abortion cost at planned parenthood california", 0, [512, 546]], ["how much does an abortion cost at planned parenthood in texas", 0, [751]], ["how much does an abortion cost at planned parenthood", 0, [512, 546]], ["how much does an abortion cost at planned parenthood in michigan", 0, [512, 546]]], {"i": "how much does an abortion cost at planned parenthood pa", "q": "guvk_SO-ceN2is5NJPAmQ3dDxzo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much does an abortion cost at planned parenthood pa", "how much is an abortion at planned parenthood pa", "how much is an abortion pill at planned parenthood in pa", "how much is an abortion cost at planned parenthood", "how much does an abortion cost at planned parenthood without insurance", "how much are abortions at planned parenthood with insurance", "how much does an abortion cost at planned parenthood california", "how much does an abortion cost at planned parenthood in texas", "how much does an abortion cost at planned parenthood", "how much does an abortion cost at planned parenthood in michigan"], "self_loops": [0], "tags": {"i": "how much does an abortion cost at planned parenthood pa", "q": "guvk_SO-ceN2is5NJPAmQ3dDxzo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much does an abortion cost at planned parenthood in ny", "datetime": "2026-03-12 19:50:09.916319", "source": "google", "data": ["how much does an abortion cost at planned parenthood in ny", [["how much does an abortion cost at planned parenthood in ny", 0, [512]], ["how much does an abortion cost at planned parenthood without insurance", 0, [512, 390, 650]], ["how much is an abortion at planned parenthood without insurance", 0, [512, 390, 650]], ["how much is an abortion cost at planned parenthood", 0, [512, 390, 650]], ["how much is an abortion in ny at planned parenthood", 0, [751]], ["how much does an abortion cost near clifton park ny", 0, [751]]], {"i": "how much does an abortion cost at planned parenthood in ny", "q": "ahVoKKBl7JF14qoHXB8G2P9r3fw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much does an abortion cost at planned parenthood in ny", "how much does an abortion cost at planned parenthood without insurance", "how much is an abortion at planned parenthood without insurance", "how much is an abortion cost at planned parenthood", "how much is an abortion in ny at planned parenthood", "how much does an abortion cost near clifton park ny"], "self_loops": [0], "tags": {"i": "how much does an abortion cost at planned parenthood in ny", "q": "ahVoKKBl7JF14qoHXB8G2P9r3fw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much does an abortion cost at planned parenthood in arizona", "datetime": "2026-03-12 19:50:10.795741", "source": "google", "data": ["how much does an abortion cost at planned parenthood in arizona", [["how much does an abortion cost at planned parenthood in arizona", 0, [512]]], {"i": "how much does an abortion cost at planned parenthood in arizona", "q": "_9H1BLB-WBMLoXgAz1gBFijVAgI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much does an abortion cost at planned parenthood in arizona"], "self_loops": [0], "tags": {"i": "how much does an abortion cost at planned parenthood in arizona", "q": "_9H1BLB-WBMLoXgAz1gBFijVAgI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much does an abortion cost at planned parenthood in michigan", "datetime": "2026-03-12 19:50:11.689413", "source": "google", "data": ["how much does an abortion cost at planned parenthood in michigan", [["how much does an abortion cost at planned parenthood in michigan", 0, [512]]], {"i": "how much does an abortion cost at planned parenthood in michigan", "q": "cPjsXMvlUzLBKy_9MVPqbYufi_0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much does an abortion cost at planned parenthood in michigan"], "self_loops": [0], "tags": {"i": "how much does an abortion cost at planned parenthood in michigan", "q": "cPjsXMvlUzLBKy_9MVPqbYufi_0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much does an abortion cost at planned parenthood in nj", "datetime": "2026-03-12 19:50:12.836219", "source": "google", "data": ["how much does an abortion cost at planned parenthood in nj", [["how much does an abortion cost at planned parenthood in nj", 0, [512]], ["how much does an abortion cost at planned parenthood without insurance", 0, [512, 390, 650]], ["how much is an abortion cost at planned parenthood", 0, [512, 390, 650]], ["how much is an abortion at planned parenthood without insurance", 0, [512, 390, 650]], ["how much is an abortion in nj at planned parenthood", 0, [751]], ["how much does an abortion cost near new jersey", 0, [751]], ["planned parenthood abortion cost near new jersey", 0, [751]]], {"i": "how much does an abortion cost at planned parenthood in nj", "q": "t80GcSA6kTds8cqtiNjs35BMj_s", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much does an abortion cost at planned parenthood in nj", "how much does an abortion cost at planned parenthood without insurance", "how much is an abortion cost at planned parenthood", "how much is an abortion at planned parenthood without insurance", "how much is an abortion in nj at planned parenthood", "how much does an abortion cost near new jersey", "planned parenthood abortion cost near new jersey"], "self_loops": [0], "tags": {"i": "how much does an abortion cost at planned parenthood in nj", "q": "t80GcSA6kTds8cqtiNjs35BMj_s", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much does an abortion cost at planned parenthood in florida", "datetime": "2026-03-12 19:50:13.641244", "source": "google", "data": ["how much does an abortion cost at planned parenthood in florida", [["how much does an abortion cost at planned parenthood in florida", 0, [512]]], {"i": "how much does an abortion cost at planned parenthood in florida", "q": "p8dJEyG878rGPNC1lIlp5DrBmkc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much does an abortion cost at planned parenthood in florida"], "self_loops": [0], "tags": {"i": "how much does an abortion cost at planned parenthood in florida", "q": "p8dJEyG878rGPNC1lIlp5DrBmkc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how much does an abortion cost at planned parenthood in ohio", "datetime": "2026-03-12 19:50:14.952043", "source": "google", "data": ["how much does an abortion cost at planned parenthood in ohio", [["how much does an abortion cost at planned parenthood in ohio", 0, [512]], ["how much does an abortion pill cost at planned parenthood in ohio", 0, [8, 30]], ["how much is an abortion at planned parenthood in ohio", 0, [512, 390, 650]], ["how much is an abortion cost at planned parenthood", 0, [512, 390, 650]], ["how much does an abortion cost at planned parenthood without insurance", 0, [512, 390, 650]], ["how much are abortions at planned parenthood with insurance", 0, [512, 390, 650]], ["how much does an abortion cost at planned parenthood in illinois", 0, [512, 546]], ["how much does an abortion cost at planned parenthood in michigan", 0, [512, 546]]], {"i": "how much does an abortion cost at planned parenthood in ohio", "q": "rL3Si-h6oVUrwRhJX_Iu4Ib2J0k", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how much does an abortion cost at planned parenthood in ohio", "how much does an abortion pill cost at planned parenthood in ohio", "how much is an abortion at planned parenthood in ohio", "how much is an abortion cost at planned parenthood", "how much does an abortion cost at planned parenthood without insurance", "how much are abortions at planned parenthood with insurance", "how much does an abortion cost at planned parenthood in illinois", "how much does an abortion cost at planned parenthood in michigan"], "self_loops": [0], "tags": {"i": "how much does an abortion cost at planned parenthood in ohio", "q": "rL3Si-h6oVUrwRhJX_Iu4Ib2J0k", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "medication abortion planned parenthood reddit", "datetime": "2026-03-12 19:50:15.863584", "source": "google", "data": ["medication abortion planned parenthood reddit", [["medication abortion planned parenthood reddit", 0, [22, 30]], ["abortion pill planned parenthood reddit", 0, [22, 30]], ["abortion pill cost planned parenthood reddit", 0, [22, 30]], ["does planned parenthood take insurance for abortions", 0, [512, 390, 650]], ["does planned parenthood insurance cover abortions", 0, [512, 390, 650]], ["how much are abortions at planned parenthood with insurance", 0, [512, 390, 650]], ["medication abortion pain reddit", 0, [546, 649]], ["medication abortion planned", 0, [751]]], {"i": "medication abortion planned parenthood reddit", "q": "ZbNEeFDVzFrB2sQBZgELGnxwqdo", "t": {"bpc": false, "tlw": false}}], "suggests": ["medication abortion planned parenthood reddit", "abortion pill planned parenthood reddit", "abortion pill cost planned parenthood reddit", "does planned parenthood take insurance for abortions", "does planned parenthood insurance cover abortions", "how much are abortions at planned parenthood with insurance", "medication abortion pain reddit", "medication abortion planned"], "self_loops": [0], "tags": {"i": "medication abortion planned parenthood reddit", "q": "ZbNEeFDVzFrB2sQBZgELGnxwqdo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "in clinic abortion planned parenthood reddit", "datetime": "2026-03-12 19:50:16.851751", "source": "google", "data": ["in clinic abortion planned parenthood reddit", [["in clinic abortion planned parenthood reddit", 0, [22, 30]], ["medical abortion planned parenthood reddit", 0, [22, 30]], ["planned parenthood near me abortion clinic", 0, [512, 390, 650]], ["how much are abortions at planned parenthood with insurance", 0, [512, 390, 650]], ["in clinic abortion procedure reddit", 0, [512, 546]], ["in clinic abortion vs pill reddit", 0, [546, 649]], ["in clinic abortion experience reddit", 0, [512, 546]]], {"i": "in clinic abortion planned parenthood reddit", "q": "MyMElad89KERdEj94FPiKa1UWKQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["in clinic abortion planned parenthood reddit", "medical abortion planned parenthood reddit", "planned parenthood near me abortion clinic", "how much are abortions at planned parenthood with insurance", "in clinic abortion procedure reddit", "in clinic abortion vs pill reddit", "in clinic abortion experience reddit"], "self_loops": [0], "tags": {"i": "in clinic abortion planned parenthood reddit", "q": "MyMElad89KERdEj94FPiKa1UWKQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "planned parenthood abortion pill process reddit", "datetime": "2026-03-12 19:50:17.762256", "source": "google", "data": ["planned parenthood abortion pill process reddit", [["planned parenthood abortion pill process reddit", 0, [512]], ["planned parenthood abortion pill cost reddit", 0, [512, 390, 650]], ["planned parenthood abortion pill reddit", 0, [512, 546]], ["planned parenthood abortion process reddit", 0, [751]]], {"i": "planned parenthood abortion pill process reddit", "q": "MquENLBotyNz_oX2qoPOVPYpOIE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["planned parenthood abortion pill process reddit", "planned parenthood abortion pill cost reddit", "planned parenthood abortion pill reddit", "planned parenthood abortion process reddit"], "self_loops": [0], "tags": {"i": "planned parenthood abortion pill process reddit", "q": "MquENLBotyNz_oX2qoPOVPYpOIE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "planned parenthood abortion pill experience reddit", "datetime": "2026-03-12 19:50:19.010831", "source": "google", "data": ["planned parenthood abortion pill experience reddit", [["planned parenthood abortion pill experience reddit", 0, [512]], ["planned parenthood abortion pill cost reddit", 0, [512, 390, 650]], ["planned parenthood abortion pill reddit", 0, [512, 546]], ["planned parenthood abortion experience reddit", 0, [512, 546]]], {"i": "planned parenthood abortion pill experience reddit", "q": "O5pJazz6sSCWP5Gr9mWg_sqDnMQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["planned parenthood abortion pill experience reddit", "planned parenthood abortion pill cost reddit", "planned parenthood abortion pill reddit", "planned parenthood abortion experience reddit"], "self_loops": [0], "tags": {"i": "planned parenthood abortion pill experience reddit", "q": "O5pJazz6sSCWP5Gr9mWg_sqDnMQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "planned parenthood abortion pill price reddit", "datetime": "2026-03-12 19:50:20.229320", "source": "google", "data": ["planned parenthood abortion pill price reddit", [["planned parenthood abortion pill price reddit", 0, [22, 30]], ["planned parenthood abortion pill cost reddit", 0, [22, 30]], ["how much are abortions at planned parenthood with insurance", 0, [512, 390, 650]], ["how much is an abortion cost at planned parenthood", 0, [512, 390, 650]], ["planned parenthood abortion pill reddit", 0, [512, 546]]], {"i": "planned parenthood abortion pill price reddit", "q": "0bsVNN1lHRyWWWIDvnX6pXpvlTc", "t": {"bpc": false, "tlw": false}}], "suggests": ["planned parenthood abortion pill price reddit", "planned parenthood abortion pill cost reddit", "how much are abortions at planned parenthood with insurance", "how much is an abortion cost at planned parenthood", "planned parenthood abortion pill reddit"], "self_loops": [0], "tags": {"i": "planned parenthood abortion pill price reddit", "q": "0bsVNN1lHRyWWWIDvnX6pXpvlTc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "planned parenthood telehealth abortion pill reddit", "datetime": "2026-03-12 19:50:21.348794", "source": "google", "data": ["planned parenthood telehealth abortion pill reddit", [["planned parenthood telehealth abortion pill reddit", 0, [22, 30]], ["does planned parenthood take insurance for abortions", 0, [512, 390, 650]], ["planned parenthood abortion pill cost reddit", 0, [512, 390, 650]], ["planned parenthood telehealth reddit", 0, [512, 546]], ["planned parenthood telehealth abortion pill", 0, [512, 546]], ["planned parenthood telehealth abortion", 0, [512, 546]], ["planned parenthood telehealth cost", 0, [512, 546]], ["planned parenthood telehealth cost reddit", 0, [546, 649]]], {"i": "planned parenthood telehealth abortion pill reddit", "q": "3LwxMcJZl9QvVvPky6dzYFMyG4Q", "t": {"bpc": false, "tlw": false}}], "suggests": ["planned parenthood telehealth abortion pill reddit", "does planned parenthood take insurance for abortions", "planned parenthood abortion pill cost reddit", "planned parenthood telehealth reddit", "planned parenthood telehealth abortion pill", "planned parenthood telehealth abortion", "planned parenthood telehealth cost", "planned parenthood telehealth cost reddit"], "self_loops": [0], "tags": {"i": "planned parenthood telehealth abortion pill reddit", "q": "3LwxMcJZl9QvVvPky6dzYFMyG4Q", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "planned parenthood direct abortion pill reddit", "datetime": "2026-03-12 19:50:22.591191", "source": "google", "data": ["planned parenthood direct abortion pill reddit", [["planned parenthood direct abortion pill reddit", 0, [22, 30]], ["planned parenthood abortion pill cost reddit", 0, [512, 390, 650]], ["how much is the abortion pill at planned parenthood in washington", 0, [512, 390, 650]], ["does planned parenthood take insurance for abortions", 0, [512, 390, 650]], ["planned parenthood direct reddit", 0, [512, 546]], ["planned parenthood abortion pill reddit", 0, [512, 546]], ["planned parenthood direct reviews", 0, [512, 546]]], {"i": "planned parenthood direct abortion pill reddit", "q": "7auvmB8jtG2eH52miUEULedEfnc", "t": {"bpc": false, "tlw": false}}], "suggests": ["planned parenthood direct abortion pill reddit", "planned parenthood abortion pill cost reddit", "how much is the abortion pill at planned parenthood in washington", "does planned parenthood take insurance for abortions", "planned parenthood direct reddit", "planned parenthood abortion pill reddit", "planned parenthood direct reviews"], "self_loops": [0], "tags": {"i": "planned parenthood direct abortion pill reddit", "q": "7auvmB8jtG2eH52miUEULedEfnc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "planned parenthood abortion pill appointment reddit", "datetime": "2026-03-12 19:50:23.557657", "source": "google", "data": ["planned parenthood abortion pill appointment reddit", [["planned parenthood abortion pill appointment reddit", 0, [22, 30]], ["what days does planned parenthood do abortions", 0, [512, 390, 650]], ["does planned parenthood take walk ins for abortions", 0, [512, 390, 650]], ["what happens at planned parenthood abortion appointment", 0, [512, 390, 650]], ["does planned parenthood do abortions same day", 0, [512, 390, 650]], ["planned parenthood abortion pill cost reddit", 0, [512, 546]], ["planned parenthood abortion pill reddit", 0, [512, 546]], ["planned parenthood abortion pill appointment", 0, [512, 546]]], {"i": "planned parenthood abortion pill appointment reddit", "q": "8M3DFs4A5yrq2K7ZH_bCiOr8nbM", "t": {"bpc": false, "tlw": false}}], "suggests": ["planned parenthood abortion pill appointment reddit", "what days does planned parenthood do abortions", "does planned parenthood take walk ins for abortions", "what happens at planned parenthood abortion appointment", "does planned parenthood do abortions same day", "planned parenthood abortion pill cost reddit", "planned parenthood abortion pill reddit", "planned parenthood abortion pill appointment"], "self_loops": [0], "tags": {"i": "planned parenthood abortion pill appointment reddit", "q": "8M3DFs4A5yrq2K7ZH_bCiOr8nbM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill cost in tallahassee fl", "datetime": "2026-03-12 19:50:24.565695", "source": "google", "data": ["abortion pill cost in tallahassee fl", [], {"i": "abortion pill cost in tallahassee fl", "q": "PCgscEVNDFJhFImHvmkGIRXk09A", "t": {"bpc": true, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "abortion pill cost in tallahassee fl", "q": "PCgscEVNDFJhFImHvmkGIRXk09A", "t": {"bpc": true, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic jacksonville fl cost", "datetime": "2026-03-12 19:50:25.814217", "source": "google", "data": ["abortion clinic jacksonville fl cost", [["abortion clinic jacksonville fl cost", 0, [512]], ["abortion clinic jacksonville florida", 0, [512, 546]], ["abortion clinic jax fl", 0, [512, 546]], ["abortion clinic jacksonville fl", 0, [512, 546]]], {"i": "abortion clinic jacksonville fl cost", "q": "6HC5btl9cKJXKZ1CY6bmAwVjcS0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic jacksonville fl cost", "abortion clinic jacksonville florida", "abortion clinic jax fl", "abortion clinic jacksonville fl"], "self_loops": [0], "tags": {"i": "abortion clinic jacksonville fl cost", "q": "6HC5btl9cKJXKZ1CY6bmAwVjcS0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion cost florida planned parenthood", "datetime": "2026-03-12 19:50:26.640791", "source": "google", "data": ["abortion cost florida planned parenthood", [["abortion cost florida planned parenthood", 0, [512]], ["abortion pill cost planned parenthood florida", 0, [22, 30]], ["abortion cost planned parenthood reddit", 0, [751]]], {"i": "abortion cost florida planned parenthood", "q": "XWibz9BGuQCFl9alkf1RrrOnnLM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion cost florida planned parenthood", "abortion pill cost planned parenthood florida", "abortion cost planned parenthood reddit"], "self_loops": [0], "tags": {"i": "abortion cost florida planned parenthood", "q": "XWibz9BGuQCFl9alkf1RrrOnnLM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion cost fl", "datetime": "2026-03-12 19:50:27.573750", "source": "google", "data": ["abortion cost fl", [["abortion cost florida planned parenthood", 0, [512]], ["abortion cost fl without insurance", 0, [22, 30]], ["abortion pill cost florida", 0, [22, 30]], ["abortion pill cost fl", 0, [22, 30]], ["abortion cost in florida with insurance", 0, [22, 30]], ["abortion clinic florida cost", 0, [22, 30]], ["abortion clinic jacksonville fl cost", 0, [22, 30]], ["abortion laws in florida cost", 0, [22, 30]], ["abortion pill cost cvs florida", 0, [22, 30]]], {"i": "abortion cost fl", "q": "bFtMgnePjhd2ahgaemm4pIt-1_o", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion cost florida planned parenthood", "abortion cost fl without insurance", "abortion pill cost florida", "abortion pill cost fl", "abortion cost in florida with insurance", "abortion clinic florida cost", "abortion clinic jacksonville fl cost", "abortion laws in florida cost", "abortion pill cost cvs florida"], "self_loops": [], "tags": {"i": "abortion cost fl", "q": "bFtMgnePjhd2ahgaemm4pIt-1_o", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic florida", "datetime": "2026-03-12 19:50:28.380951", "source": "google", "data": ["abortion clinic florida", [["abortion clinic florida", 0, [512]], ["abortion clinic florida near me", 0, [512]], ["abortion clinic florida price", 0, [22, 30]], ["abortion clinic florida miami", 0, [22, 30]], ["abortion clinic florida open now", 0, [22, 30]], ["abortion clinic florida tampa", 0, [22, 30]], ["abortion services florida", 0, [22, 30]], ["abortion cost florida planned parenthood", 0, [22, 30]], ["abortion center florida", 0, [22, 30]], ["florida women's clinic", 0, [22, 10, 30]]], {"i": "abortion clinic florida", "q": "yAK07K0xb3L4rgNwW_FwMlAUPYk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion clinic florida", "abortion clinic florida near me", "abortion clinic florida price", "abortion clinic florida miami", "abortion clinic florida open now", "abortion clinic florida tampa", "abortion services florida", "abortion cost florida planned parenthood", "abortion center florida", "florida women's clinic"], "self_loops": [0], "tags": {"i": "abortion clinic florida", "q": "yAK07K0xb3L4rgNwW_FwMlAUPYk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "planned parenthood abortion cost florida", "datetime": "2026-03-12 19:50:29.772445", "source": "google", "data": ["planned parenthood abortion cost florida", [["planned parenthood abortion cost florida", 0, [512]], ["planned parenthood abortion pill cost florida", 0, [22, 30]], ["planned parenthood abortion cost tallahassee fl", 0, [22, 30]], ["how much is an abortion cost at planned parenthood", 0, [512, 390, 650]], ["how much does an abortion cost at planned parenthood california", 0, [512, 390, 650]], ["planned parenthood abortion cost near orlando fl", 0, [751]], ["planned parenthood abortion cost near tampa fl", 0, [751]]], {"i": "planned parenthood abortion cost florida", "q": "2rHAVijEWlhFrW2HHjslL94BPTo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["planned parenthood abortion cost florida", "planned parenthood abortion pill cost florida", "planned parenthood abortion cost tallahassee fl", "how much is an abortion cost at planned parenthood", "how much does an abortion cost at planned parenthood california", "planned parenthood abortion cost near orlando fl", "planned parenthood abortion cost near tampa fl"], "self_loops": [0], "tags": {"i": "planned parenthood abortion cost florida", "q": "2rHAVijEWlhFrW2HHjslL94BPTo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are abortions free at planned parenthood", "datetime": "2026-03-12 19:50:31.056763", "source": "google", "data": ["are abortions free at planned parenthood", [["are abortions free at planned parenthood", 0, [512]], ["are abortions free at planned parenthood for minors", 0, [512]], ["are abortions free at planned parenthood california", 0, [512]], ["are abortions free at planned parenthood with insurance", 0, [22, 30]], ["are abortions free at planned parenthood with medical", 0, [22, 30]], ["are abortions free at planned parenthood for teens", 0, [22, 30]], ["is abortion free at planned parenthood nyc", 0, [22, 30]], ["does planned parenthood do free abortions", 0, [512, 390, 650]], ["how much does an abortion cost at planned parenthood without insurance", 0, [512, 390, 650]], ["does planned parenthood offer free abortions", 0, [512, 390, 650]]], {"i": "are abortions free at planned parenthood", "q": "o2b9GjsOc3ltVNlk6rRmB9uk0qQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["are abortions free at planned parenthood", "are abortions free at planned parenthood for minors", "are abortions free at planned parenthood california", "are abortions free at planned parenthood with insurance", "are abortions free at planned parenthood with medical", "are abortions free at planned parenthood for teens", "is abortion free at planned parenthood nyc", "does planned parenthood do free abortions", "how much does an abortion cost at planned parenthood without insurance", "does planned parenthood offer free abortions"], "self_loops": [0], "tags": {"i": "are abortions free at planned parenthood", "q": "o2b9GjsOc3ltVNlk6rRmB9uk0qQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is abortion according to who", "datetime": "2026-03-12 19:50:32.411406", "source": "google", "data": ["what is abortion according to who", [["what is abortion according to who", 0, [512]], ["what is abortion according to who pdf", 0, [22, 30]], ["what is abortion according to who 2022", 0, [22, 30]], ["what is abortion definition according to who", 0, [22, 30]], ["what is unsafe abortion according to who", 0, [22, 30]], ["what is safe abortion according to who", 0, [22, 30]], ["what is abortion in pregnancy according to who", 0, [22, 30]], ["what is the meaning of abortion according to who", 0, [22, 30]], ["what is post abortion care according to who", 0, [22, 30]], ["what is abortion according to world health organization", 0, [512, 390, 650]]], {"i": "what is abortion according to who", "q": "R-AAsDAtlHA8qhwu245aqBNdB3c", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is abortion according to who", "what is abortion according to who pdf", "what is abortion according to who 2022", "what is abortion definition according to who", "what is unsafe abortion according to who", "what is safe abortion according to who", "what is abortion in pregnancy according to who", "what is the meaning of abortion according to who", "what is post abortion care according to who", "what is abortion according to world health organization"], "self_loops": [0], "tags": {"i": "what is abortion according to who", "q": "R-AAsDAtlHA8qhwu245aqBNdB3c", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "types of abortion according to who", "datetime": "2026-03-12 19:50:33.296987", "source": "google", "data": ["types of abortion according to who", [["types of abortion according to who", 0, [512]], ["types of abortion definition according to who", 0, [22, 30]], ["what are the different types of abortion", 0, [512, 390, 650]], ["types of abortion", 0, [512, 390, 650]], ["types of abortion chart", 0, [512, 546]], ["types of abortion acog", 0, [512, 546]], ["types of abortions pdf", 0, [512, 546]], ["types of abortion percentages", 0, [751]]], {"i": "types of abortion according to who", "q": "IpFsstVFw8I9bS7rpmVNF2k8mrA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["types of abortion according to who", "types of abortion definition according to who", "what are the different types of abortion", "types of abortion", "types of abortion chart", "types of abortion acog", "types of abortions pdf", "types of abortion percentages"], "self_loops": [0], "tags": {"i": "types of abortion according to who", "q": "IpFsstVFw8I9bS7rpmVNF2k8mrA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "who definition of abortion", "datetime": "2026-03-12 19:50:34.096102", "source": "google", "data": ["who definition of abortion", [["who definition of abortion", 0, [512]], ["who definition of abortion pdf", 0, [22, 30]], ["who definition of abortion wikipedia", 0, [22, 30]], ["world health organisation definition of abortion", 0, [22, 30]], ["who definition of unsafe abortion", 0, [22, 30]], ["who definition of spontaneous abortion", 0, [22, 30]], ["who definition of threatened abortion", 0, [22, 30]], ["who definition of post abortion care", 0, [22, 30]], ["who definition of safe abortion", 0, [22, 30]], ["who definition of missed abortion", 0, [22, 30]]], {"i": "who definition of abortion", "q": "D3YvYrRxCg3Megc-2vzgtSo9Ttc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["who definition of abortion", "who definition of abortion pdf", "who definition of abortion wikipedia", "world health organisation definition of abortion", "who definition of unsafe abortion", "who definition of spontaneous abortion", "who definition of threatened abortion", "who definition of post abortion care", "who definition of safe abortion", "who definition of missed abortion"], "self_loops": [0], "tags": {"i": "who definition of abortion", "q": "D3YvYrRxCg3Megc-2vzgtSo9Ttc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is the definition of abortion according to world health organization", "datetime": "2026-03-12 19:50:35.477733", "source": "google", "data": ["what is the definition of abortion according to world health organization", [], {"i": "what is the definition of abortion according to world health organization", "q": "Jarq7pCV5Se2okOcBfDQ8srKqo4", "t": {"bpc": false, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "what is the definition of abortion according to world health organization", "q": "Jarq7pCV5Se2okOcBfDQ8srKqo4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition world health organisation", "datetime": "2026-03-12 19:50:36.384213", "source": "google", "data": ["abortion definition world health organisation", [["abortion definition world health organization", 0, [22, 30]], ["what is abortion according to world health organization", 0, [512, 390, 650]], ["who definition of abortion", 0, [512, 390, 650]], ["what is abortion according to who", 0, [512, 390, 650]], ["abortion definition world health organisation", 0, [751]], ["what is the definition of abortion according to world health organization", 0, [751]], ["abortion world health organization", 0, [512, 546]]], {"i": "abortion definition world health organisation", "q": "ov_WKXzyIJsCv331ycnudPWmhcs", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition world health organization", "what is abortion according to world health organization", "who definition of abortion", "what is abortion according to who", "abortion definition world health organisation", "what is the definition of abortion according to world health organization", "abortion world health organization"], "self_loops": [4], "tags": {"i": "abortion definition world health organisation", "q": "ov_WKXzyIJsCv331ycnudPWmhcs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition by world health organization", "datetime": "2026-03-12 19:50:37.353606", "source": "google", "data": ["abortion definition by world health organization", [["abortion definition world health organization", 0, [22, 30]], ["what is abortion according to world health organization", 0, [512, 390, 650]], ["what is abortion according to who", 0, [512, 390, 650]], ["who definition of abortion", 0, [512, 390, 650]], ["abortion definition world health organisation", 0, [751]], ["what is the definition of abortion according to world health organization", 0, [751]], ["abortion world health organization", 0, [512, 546]]], {"i": "abortion definition by world health organization", "q": "eupX81xFpwvqRjjxF9z-z3e7oVU", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition world health organization", "what is abortion according to world health organization", "what is abortion according to who", "who definition of abortion", "abortion definition world health organisation", "what is the definition of abortion according to world health organization", "abortion world health organization"], "self_loops": [], "tags": {"i": "abortion definition by world health organization", "q": "eupX81xFpwvqRjjxF9z-z3e7oVU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is abortion pdf", "datetime": "2026-03-12 19:50:38.297630", "source": "google", "data": ["what is abortion pdf", [["what is abortion pdf", 0, [512]], ["what is abortion pdf notes", 0, [22, 30]], ["what is unsafe abortion pdf", 0, [22, 30]], ["what is safe abortion pdf", 0, [22, 30]], ["what is abortion according to who pdf", 0, [22, 30]], ["what is post abortion care pdf", 0, [22, 30]], ["what is safe abortion class 8 pdf", 0, [22, 30]], ["what is safe abortion short answer pdf", 0, [22, 30]], ["what states is abortion legal in 2025 pdf", 0, [22, 30]], ["types of abortion pdf", 0, [512, 390, 650]]], {"i": "what is abortion pdf", "q": "BqALkhU1sESgMR58Iqrzr-4leDI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is abortion pdf", "what is abortion pdf notes", "what is unsafe abortion pdf", "what is safe abortion pdf", "what is abortion according to who pdf", "what is post abortion care pdf", "what is safe abortion class 8 pdf", "what is safe abortion short answer pdf", "what states is abortion legal in 2025 pdf", "types of abortion pdf"], "self_loops": [0], "tags": {"i": "what is abortion pdf", "q": "BqALkhU1sESgMR58Iqrzr-4leDI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "types of abortion pdf", "datetime": "2026-03-12 19:50:39.601868", "source": "google", "data": ["types of abortion pdf", [["types of abortion pdf", 0, [512]], ["types of abortion pdf notes", 0, [512]], ["types of abortion pdf download", 0, [22, 30]], ["types of abortion pdf slideshare", 0, [22, 30]], ["types of abortion pdf free download", 0, [22, 30]], ["7 types of abortion pdf", 0, [22, 30]], ["types of abortion nursing pdf", 0, [22, 30]], ["7 types of abortion pdf notes", 0, [22, 30]], ["7 types of abortion pdf free download", 0, [22, 30]], ["7 types of abortion pdf slideshare", 0, [22, 30]]], {"i": "types of abortion pdf", "q": "E0aKoDiQzsMMCymgwk6C6tQmjVk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["types of abortion pdf", "types of abortion pdf notes", "types of abortion pdf download", "types of abortion pdf slideshare", "types of abortion pdf free download", "7 types of abortion pdf", "types of abortion nursing pdf", "7 types of abortion pdf notes", "7 types of abortion pdf free download", "7 types of abortion pdf slideshare"], "self_loops": [0], "tags": {"i": "types of abortion pdf", "q": "E0aKoDiQzsMMCymgwk6C6tQmjVk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition ap gov", "datetime": "2026-03-12 19:50:40.825233", "source": "google", "data": ["abortion definition ap gov", [["hyde amendment definition ap gov", 0, [22, 30]], ["executive order ap gov definition", 0, [512, 390, 650]], ["is abortion federal or state", 0, [512, 390, 650]], ["abortion definition ap gov", 0, [751]], ["appropriate definition ap gov", 0, [546, 649]]], {"i": "abortion definition ap gov", "q": "o-np34vVvt2JmFaj0nUHsmd8xCs", "t": {"bpc": false, "tlw": false}}], "suggests": ["hyde amendment definition ap gov", "executive order ap gov definition", "is abortion federal or state", "abortion definition ap gov", "appropriate definition ap gov"], "self_loops": [3], "tags": {"i": "abortion definition ap gov", "q": "o-np34vVvt2JmFaj0nUHsmd8xCs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition according to who ppt", "datetime": "2026-03-12 19:50:42.170474", "source": "google", "data": ["abortion definition according to who ppt", [["abortion definition according to who ppt", 0, [22, 30]], ["what is abortion ppt", 0, [512, 390, 650]], ["types of abortion according to who", 0, [512, 390, 650]], ["types of abortion ppt", 0, [512, 390, 650]], ["what is abortion according to who", 0, [512, 390, 650]], ["abortion definition according to who", 0, [512, 546]], ["what is the definition of abortion according to world health organization", 0, [751]], ["abortion definition world health organisation", 0, [751]], ["abortion definition ap gov", 0, [751]], ["abortion definition webster dictionary", 0, [751]]], {"i": "abortion definition according to who ppt", "q": "21eLkePLmvi26MWGPA2iIdiaz6M", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition according to who ppt", "what is abortion ppt", "types of abortion according to who", "types of abortion ppt", "what is abortion according to who", "abortion definition according to who", "what is the definition of abortion according to world health organization", "abortion definition world health organisation", "abortion definition ap gov", "abortion definition webster dictionary"], "self_loops": [0], "tags": {"i": "abortion definition according to who ppt", "q": "21eLkePLmvi26MWGPA2iIdiaz6M", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition according to who in hindi", "datetime": "2026-03-12 19:50:43.616913", "source": "google", "data": ["abortion definition according to who in hindi", [["abortion definition according to who in hindi", 0, [22, 30]], ["what is abortion according to who", 0, [512, 390, 650]], ["abortion meaning in hindi definition", 0, [512, 390, 650]], ["abortion definition according to who", 0, [512, 546]], ["what is the definition of abortion according to world health organization", 0, [751]], ["abortion definition webster dictionary", 0, [751]], ["abortion definition dictionary", 0, [512, 546]], ["abortion definition webster", 0, [512, 546]]], {"i": "abortion definition according to who in hindi", "q": "UpDsUp_zYS3tTy3WHkS9_5SASSA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition according to who in hindi", "what is abortion according to who", "abortion meaning in hindi definition", "abortion definition according to who", "what is the definition of abortion according to world health organization", "abortion definition webster dictionary", "abortion definition dictionary", "abortion definition webster"], "self_loops": [0], "tags": {"i": "abortion definition according to who in hindi", "q": "UpDsUp_zYS3tTy3WHkS9_5SASSA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does the term medical abortion describe", "datetime": "2026-03-12 19:50:44.523634", "source": "google", "data": ["what does the term medical abortion describe", [["what does the term medical abortion describe", 0, [512]], ["what does the term medical abortion describe quizlet", 0, [22, 30]], ["what does the term abortion mean", 0, [512, 546]], ["what does the medical term a mean", 0, [546, 649]]], {"i": "what does the term medical abortion describe", "q": "5P1vmZvqsYsBgtR6m9ABaSB6Bqw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what does the term medical abortion describe", "what does the term medical abortion describe quizlet", "what does the term abortion mean", "what does the medical term a mean"], "self_loops": [0], "tags": {"i": "what does the term medical abortion describe", "q": "5P1vmZvqsYsBgtR6m9ABaSB6Bqw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what are the types of medical abortion", "datetime": "2026-03-12 19:50:45.993221", "source": "google", "data": ["what are the types of medical abortion", [["what are the types of medical abortion", 0, [512]], ["what kind of medical abortion", 0, [22, 30]], ["what are the different types of abortion", 0, [512, 390, 650]], ["types of abortion table", 0, [512, 390, 650]], ["what are the 2 types of medical abortions", 0, [751]], ["what are the types of abortions", 0, [512, 546]], ["different types of medical abortion", 0, [512, 546]]], {"i": "what are the types of medical abortion", "q": "G4Ln6HIcOAIkvh-eFBUaxkaplNQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what are the types of medical abortion", "what kind of medical abortion", "what are the different types of abortion", "types of abortion table", "what are the 2 types of medical abortions", "what are the types of abortions", "different types of medical abortion"], "self_loops": [0], "tags": {"i": "what are the types of medical abortion", "q": "G4Ln6HIcOAIkvh-eFBUaxkaplNQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "medical abortion defined", "datetime": "2026-03-12 19:50:47.154442", "source": "google", "data": ["medical abortion defined", [["medical abortion definition", 0, [22, 30]], ["medical abortion definition weeks", 0, [22, 30]], ["medical abortion definition and types", 0, [22, 30]], ["medical abortion definition according to who", 0, [22, 30]], ["medical abortion definition in hindi", 0, [22, 30]], ["medical abortion definition pdf", 0, [22, 30]], ["medical abortion meaning in hindi", 0, [22, 30]], ["medical abortion meaning in english", 0, [22, 30]], ["medical abortion meaning in nepali", 0, [22, 30]], ["medical abortion meaning in punjabi", 0, [22, 30]]], {"i": "medical abortion defined", "q": "oj9i6ZnL6fKHNlf9Kqez0z0EkMI", "t": {"bpc": false, "tlw": false}}], "suggests": ["medical abortion definition", "medical abortion definition weeks", "medical abortion definition and types", "medical abortion definition according to who", "medical abortion definition in hindi", "medical abortion definition pdf", "medical abortion meaning in hindi", "medical abortion meaning in english", "medical abortion meaning in nepali", "medical abortion meaning in punjabi"], "self_loops": [], "tags": {"i": "medical abortion defined", "q": "oj9i6ZnL6fKHNlf9Kqez0z0EkMI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "unsafe abortion definition according to who", "datetime": "2026-03-12 19:50:48.180472", "source": "google", "data": ["unsafe abortion definition according to who", [["unsafe abortion definition according to who", 0, [512]], ["illegal abortion definition according to who", 0, [22, 30]], ["unsafe abortion definition who", 0, [22, 30]], ["unsafe abortion definition world health organization", 0, [751]], ["unsafe abortion types", 0, [751]], ["unsafe abortions vs safe abortions", 0, [751]], ["unsafe abortion examples", 0, [512, 546]]], {"i": "unsafe abortion definition according to who", "q": "AitNFACb3JJvSlZ_heqGQ2b6TVE", "t": {"bpc": false, "tlw": false}}], "suggests": ["unsafe abortion definition according to who", "illegal abortion definition according to who", "unsafe abortion definition who", "unsafe abortion definition world health organization", "unsafe abortion types", "unsafe abortions vs safe abortions", "unsafe abortion examples"], "self_loops": [0], "tags": {"i": "unsafe abortion definition according to who", "q": "AitNFACb3JJvSlZ_heqGQ2b6TVE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what type of abortion is illegal", "datetime": "2026-03-12 19:50:49.535193", "source": "google", "data": ["what type of abortion is illegal", [["what type of abortion is illegal", 0, [512]], ["what states abortion is illegal", 0, [512, 390, 650]], ["what type of abortion is banned", 0, [751]], ["what type of abortion is legal", 0, [751]], ["what type of abortion is legal in texas", 0, [751]]], {"i": "what type of abortion is illegal", "q": "UMDlgl8cVtTHWd4mKGx99rgc2Ig", "t": {"bpc": false, "tlw": false}}], "suggests": ["what type of abortion is illegal", "what states abortion is illegal", "what type of abortion is banned", "what type of abortion is legal", "what type of abortion is legal in texas"], "self_loops": [0], "tags": {"i": "what type of abortion is illegal", "q": "UMDlgl8cVtTHWd4mKGx99rgc2Ig", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "unlawful abortion definition", "datetime": "2026-03-12 19:50:50.352561", "source": "google", "data": ["unlawful abortion definition", [["illegal abortion definition in medical", 0, [22, 30]], ["illegal abortion definition in hindi", 0, [22, 30]], ["illegal abortion definition in english", 0, [22, 30]], ["illegal abortion definition according to who", 0, [22, 30]], ["unsafe abortion definition", 0, [512, 390, 650]], ["unlawful abortion definition", 0, [751]], ["unlawful termination of a pregnancy", 0, [512, 546]], ["unlawful abortion", 0, [512, 546]], ["outlaw abortion define", 0, [751]]], {"i": "unlawful abortion definition", "q": "o_VBqMjqJMGxFtxGHiO1wUKY2jQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["illegal abortion definition in medical", "illegal abortion definition in hindi", "illegal abortion definition in english", "illegal abortion definition according to who", "unsafe abortion definition", "unlawful abortion definition", "unlawful termination of a pregnancy", "unlawful abortion", "outlaw abortion define"], "self_loops": [5], "tags": {"i": "unlawful abortion definition", "q": "o_VBqMjqJMGxFtxGHiO1wUKY2jQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "induced abortion definition according to who", "datetime": "2026-03-12 19:50:51.833749", "source": "google", "data": ["induced abortion definition according to who", [["induced abortion definition according to who", 0, [22, 30]], ["spontaneous abortion definition according to who", 0, [22, 30]], ["induced abortion definition who", 0, [22, 30]], ["what is abortion according to who", 0, [512, 390, 650]], ["what is induced abortion class 12", 0, [512, 390, 650]], ["who definition of abortion", 0, [512, 390, 650]], ["induced abortion definition dictionary", 0, [546, 649]], ["induced abortion def", 0, [546, 649]], ["induced abortion medical definition", 0, [512, 546]], ["induced abortions meaning", 0, [546, 649]]], {"i": "induced abortion definition according to who", "q": "rEkYd0GPWbs06QQ-szalTIJRTuo", "t": {"bpc": false, "tlw": false}}], "suggests": ["induced abortion definition according to who", "spontaneous abortion definition according to who", "induced abortion definition who", "what is abortion according to who", "what is induced abortion class 12", "who definition of abortion", "induced abortion definition dictionary", "induced abortion def", "induced abortion medical definition", "induced abortions meaning"], "self_loops": [0], "tags": {"i": "induced abortion definition according to who", "q": "rEkYd0GPWbs06QQ-szalTIJRTuo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "miscarriage definition according to who", "datetime": "2026-03-12 19:50:53.324804", "source": "google", "data": ["miscarriage definition according to who", [["miscarriage definition according to who", 0, [512]], ["abortion definition according to who", 0, [22, 30]], ["abortion definition according to who 2022", 0, [22, 30]], ["abortion definition according to who pdf", 0, [22, 30]], ["abortion definition according to who ppt", 0, [22, 30]], ["abortion definition acc to who", 0, [22, 30]], ["medical abortion definition according to who", 0, [22, 30]], ["illegal abortion definition according to who", 0, [22, 30]], ["spontaneous abortion definition according to who", 0, [22, 30]], ["criminal abortion definition according to who", 0, [22, 30]]], {"i": "miscarriage definition according to who", "q": "ix_6ziHTuMN5vXt7G4kRMUtz-94", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["miscarriage definition according to who", "abortion definition according to who", "abortion definition according to who 2022", "abortion definition according to who pdf", "abortion definition according to who ppt", "abortion definition acc to who", "medical abortion definition according to who", "illegal abortion definition according to who", "spontaneous abortion definition according to who", "criminal abortion definition according to who"], "self_loops": [0], "tags": {"i": "miscarriage definition according to who", "q": "ix_6ziHTuMN5vXt7G4kRMUtz-94", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion definition who", "datetime": "2026-03-12 19:50:54.602534", "source": "google", "data": ["spontaneous abortion definition who", [["spontaneous abortion definition who", 0, [22, 30]], ["induced abortion definition who", 0, [22, 30]], ["spontaneous abortion definition according to who", 0, [22, 30]], ["what is a spontaneous abortion mean", 0, [512, 390, 650]], ["what does a spontaneous abortion mean", 0, [512, 390, 650]], ["spontaneous abortion def", 0, [751]], ["spontaneous abortion medical definition", 0, [512, 546]], ["spontaneous abortion or miscarriage definition", 0, [546, 649]]], {"i": "spontaneous abortion definition who", "q": "KpvYyLkiIYru17eA1O6HYULDavQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["spontaneous abortion definition who", "induced abortion definition who", "spontaneous abortion definition according to who", "what is a spontaneous abortion mean", "what does a spontaneous abortion mean", "spontaneous abortion def", "spontaneous abortion medical definition", "spontaneous abortion or miscarriage definition"], "self_loops": [0], "tags": {"i": "spontaneous abortion definition who", "q": "KpvYyLkiIYru17eA1O6HYULDavQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is a spontaneous abortion mean", "datetime": "2026-03-12 19:50:55.939245", "source": "google", "data": ["what is a spontaneous abortion mean", [["what is a spontaneous abortion mean", 0, [512]], ["what is a spontaneous abortion definition", 0, [22, 30]], ["what is induced abortion meaning", 0, [22, 30]], ["what does a spontaneous miscarriage mean", 0, [22, 30]], ["what does incomplete spontaneous abortion mean", 0, [22, 30]], ["what does a spontaneous abortion mean", 0, [512, 390, 650]], ["a spontaneous abortion is defined as", 0, [512, 390, 650]], ["what is a spontaneous abortion miscarriage", 0, [546, 649]], ["what is a spontaneous abortion", 0, [512, 546]]], {"i": "what is a spontaneous abortion mean", "q": "eBcbceRnKfoTsAIX1SzQHJ2KkB0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is a spontaneous abortion mean", "what is a spontaneous abortion definition", "what is induced abortion meaning", "what does a spontaneous miscarriage mean", "what does incomplete spontaneous abortion mean", "what does a spontaneous abortion mean", "a spontaneous abortion is defined as", "what is a spontaneous abortion miscarriage", "what is a spontaneous abortion"], "self_loops": [0], "tags": {"i": "what is a spontaneous abortion mean", "q": "eBcbceRnKfoTsAIX1SzQHJ2KkB0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is abortion spontaneous", "datetime": "2026-03-12 19:50:57.315167", "source": "google", "data": ["what is abortion spontaneous", [["what is abortion spontaneous", 0, [512]], ["what is spontaneous abortion mean", 0, [22, 30]], ["what is spontaneous abortion definition", 0, [22, 30]], ["what is spontaneous abortion vs miscarriage", 0, [22, 30]], ["what is spontaneous abortion explain", 0, [22, 30]], ["what is spontaneous abortion in hindi", 0, [22, 30]], ["what is spontaneous abortion miscarriage", 0, [22, 30]], ["what is spontaneous abortion in pregnancy", 0, [22, 30]], ["what is spontaneous abortion in tagalog", 0, [22, 30]], ["what is incomplete spontaneous abortion", 0, [22, 30]]], {"i": "what is abortion spontaneous", "q": "PW3WLj4SmxFUFGiLLic3PNYyhdk", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is abortion spontaneous", "what is spontaneous abortion mean", "what is spontaneous abortion definition", "what is spontaneous abortion vs miscarriage", "what is spontaneous abortion explain", "what is spontaneous abortion in hindi", "what is spontaneous abortion miscarriage", "what is spontaneous abortion in pregnancy", "what is spontaneous abortion in tagalog", "what is incomplete spontaneous abortion"], "self_loops": [0], "tags": {"i": "what is abortion spontaneous", "q": "PW3WLj4SmxFUFGiLLic3PNYyhdk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion acronym", "datetime": "2026-03-12 19:50:58.377438", "source": "google", "data": ["spontaneous abortion acronym", [["spontaneous abortion acronym", 0, [22, 30]], ["spontaneous abortion meaning", 0, [22, 30]], ["spontaneous abortion meaning in hindi", 0, [22, 30]], ["spontaneous abortion abbreviation", 0, [22, 30]], ["spontaneous abortion meaning in bengali", 0, [22, 30]], ["spontaneous abortion meaning in english", 0, [22, 30]], ["spontaneous abortion meaning in hindi and examples", 0, [22, 30]], ["spontaneous abortion meaning in tagalog", 0, [22, 30]], ["spontaneous abortion meaning in hindi pdf", 0, [22, 30]], ["spontaneous abortion meaning in arabic", 0, [22, 30]]], {"i": "spontaneous abortion acronym", "q": "LpQHPoLonvTdVuOO8YNW5EYihUs", "t": {"bpc": false, "tlw": false}}], "suggests": ["spontaneous abortion acronym", "spontaneous abortion meaning", "spontaneous abortion meaning in hindi", "spontaneous abortion abbreviation", "spontaneous abortion meaning in bengali", "spontaneous abortion meaning in english", "spontaneous abortion meaning in hindi and examples", "spontaneous abortion meaning in tagalog", "spontaneous abortion meaning in hindi pdf", "spontaneous abortion meaning in arabic"], "self_loops": [0], "tags": {"i": "spontaneous abortion acronym", "q": "LpQHPoLonvTdVuOO8YNW5EYihUs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion def", "datetime": "2026-03-12 19:50:59.770184", "source": "google", "data": ["spontaneous abortion def", [["spontaneous abortion definition", 0, [512]], ["spontaneous abortion definition according to who", 0, [512]], ["spontaneous abortion definition in hindi", 0, [512]], ["spontaneous abortion definition ppt", 0, [512]], ["spontaneous abortion definition acog", 0, [22, 30]], ["spontaneous abortion definition in obg", 0, [22, 30]], ["spontaneous abortion definition simple", 0, [22, 30]], ["induced abortion definition", 0, [22, 30]], ["natural abortion definition", 0, [22, 30]], ["induced abortion definition in hindi", 0, [22, 30]]], {"i": "spontaneous abortion def", "q": "bHkkvWtm_1KyUfXhbNSZGuYw1Cc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["spontaneous abortion definition", "spontaneous abortion definition according to who", "spontaneous abortion definition in hindi", "spontaneous abortion definition ppt", "spontaneous abortion definition acog", "spontaneous abortion definition in obg", "spontaneous abortion definition simple", "induced abortion definition", "natural abortion definition", "induced abortion definition in hindi"], "self_loops": [], "tags": {"i": "spontaneous abortion def", "q": "bHkkvWtm_1KyUfXhbNSZGuYw1Cc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion medical definition", "datetime": "2026-03-12 19:51:01.056507", "source": "google", "data": ["spontaneous abortion medical definition", [["spontaneous abortion medical definition", 0, [512]], ["induced abortion medical definition", 0, [22, 30]], ["spontaneous abortion medical term", 0, [22, 30]], ["spontaneous abortion medical abbreviation", 0, [22, 30]], ["natural abortion medical term", 0, [22, 30]], ["induced abortion medical term", 0, [22, 30]], ["induced abortion medical abbreviation", 0, [22, 30]], ["spontaneous miscarriage medical term", 0, [22, 30]], ["what is a spontaneous abortion mean", 0, [512, 390, 650]], ["what does a spontaneous abortion mean", 0, [512, 390, 650]]], {"i": "spontaneous abortion medical definition", "q": "Uypszw3ztCUCU_s0G8tEcY4Mqwc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["spontaneous abortion medical definition", "induced abortion medical definition", "spontaneous abortion medical term", "spontaneous abortion medical abbreviation", "natural abortion medical term", "induced abortion medical term", "induced abortion medical abbreviation", "spontaneous miscarriage medical term", "what is a spontaneous abortion mean", "what does a spontaneous abortion mean"], "self_loops": [0], "tags": {"i": "spontaneous abortion medical definition", "q": "Uypszw3ztCUCU_s0G8tEcY4Mqwc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is criminal abortion", "datetime": "2026-03-12 19:51:02.563696", "source": "google", "data": ["what is criminal abortion", [["what is criminal abortion", 0, [512]], ["what is illegal abortion definition", 0, [22, 30]], ["what is illegal abortion in india", 0, [22, 30]], ["what crime is abortion", 0, [22, 30]], ["what states is illegal abortion", 0, [22, 30]], ["what is the meaning of criminal abortion", 0, [22, 30]], ["what does criminalizing abortion mean", 0, [751]], ["abortion criminal charges", 0, [751]], ["abortion criminal offence", 0, [751]], ["is abortion a criminal offense", 0, [546, 649]]], {"i": "what is criminal abortion", "q": "CnwdRch0bCuMNmJc-1LIIQ7SMIQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is criminal abortion", "what is illegal abortion definition", "what is illegal abortion in india", "what crime is abortion", "what states is illegal abortion", "what is the meaning of criminal abortion", "what does criminalizing abortion mean", "abortion criminal charges", "abortion criminal offence", "is abortion a criminal offense"], "self_loops": [0], "tags": {"i": "what is criminal abortion", "q": "CnwdRch0bCuMNmJc-1LIIQ7SMIQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "criminal abortion california", "datetime": "2026-03-12 19:51:03.797419", "source": "google", "data": ["criminal abortion california", [["abortion illegal california", 0, [22, 30]], ["what is criminal abortion", 0, [512, 390, 650]], ["is abortion legal in california", 0, [512, 390, 650]], ["criminal abortion california", 0, [751]], ["criminal abortion cases", 0, [512, 546]], ["criminal abortion laws", 0, [546, 649]], ["criminal abortion sentence", 0, [751]]], {"i": "criminal abortion california", "q": "jCdv3owEFONuL5oJQkNx8M_3ToU", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion illegal california", "what is criminal abortion", "is abortion legal in california", "criminal abortion california", "criminal abortion cases", "criminal abortion laws", "criminal abortion sentence"], "self_loops": [3], "tags": {"i": "criminal abortion california", "q": "jCdv3owEFONuL5oJQkNx8M_3ToU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "criminal abortion definition", "datetime": "2026-03-12 19:51:04.711749", "source": "google", "data": ["criminal abortion definition", [["criminal abortion definition", 0, [512]], ["criminal abortion definition according to who", 0, [512]], ["illegal abortion definition in medical", 0, [22, 30]], ["illegal abortion definition in hindi", 0, [22, 30]], ["illegal abortion definition in english", 0, [22, 30]], ["illegal abortion definition according to who", 0, [22, 30]], ["criminal abortion meaning in hindi", 0, [22, 30]], ["criminal abortion meaning in law", 0, [22, 30]], ["criminal abortion meaning in marathi", 0, [22, 455, 30]], ["what is criminal abortion", 0, [512, 390, 650]]], {"i": "criminal abortion definition", "q": "pN3x1Ud8Bey1cXNbY2efHPq-MnM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["criminal abortion definition", "criminal abortion definition according to who", "illegal abortion definition in medical", "illegal abortion definition in hindi", "illegal abortion definition in english", "illegal abortion definition according to who", "criminal abortion meaning in hindi", "criminal abortion meaning in law", "criminal abortion meaning in marathi", "what is criminal abortion"], "self_loops": [0], "tags": {"i": "criminal abortion definition", "q": "pN3x1Ud8Bey1cXNbY2efHPq-MnM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "define criminal abortion", "datetime": "2026-03-12 19:51:06.122984", "source": "google", "data": ["define criminal abortion", [["define criminal abortion", 0, [512]], ["explain criminal abortion", 0, [22, 30]], ["what is criminal abortion wikipedia", 0, [22, 30]], ["definition of criminal abortion", 0, [22, 30]], ["what is criminal abortion", 0, [512, 390, 650]], ["meaning of criminal abortion", 0, [512, 390, 650]], ["abortion criminal offence", 0, [751]], ["abortion criminal defense", 0, [751]], ["what does criminalizing abortion mean", 0, [751]], ["abortion criminal penalties", 0, [751]]], {"i": "define criminal abortion", "q": "fElO05nRSzxYQ5cB2dVodlI5Y2I", "t": {"bpc": false, "tlw": false}}], "suggests": ["define criminal abortion", "explain criminal abortion", "what is criminal abortion wikipedia", "definition of criminal abortion", "what is criminal abortion", "meaning of criminal abortion", "abortion criminal offence", "abortion criminal defense", "what does criminalizing abortion mean", "abortion criminal penalties"], "self_loops": [0], "tags": {"i": "define criminal abortion", "q": "fElO05nRSzxYQ5cB2dVodlI5Y2I", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable abortion definition according to who", "datetime": "2026-03-12 19:51:07.584192", "source": "google", "data": ["inevitable abortion definition according to who", [["inevitable abortion definition according to who", 0, [22, 30]], ["threatened abortion definition according to who", 0, [22, 30]], ["incomplete abortion definition according to who", 0, [22, 30]], ["missed abortion definition according to who", 0, [22, 30]], ["inevitable abortion definition", 0, [512, 390, 650]], ["inevitable.abortion", 0, [512, 546]], ["inevitable definition in your own words", 0, [751]], ["inevitable abortion vs threatened abortion", 0, [512, 546]]], {"i": "inevitable abortion definition according to who", "q": "ZJbecUIbmuhSO9tuFiNo8LwxkB8", "t": {"bpc": false, "tlw": false}}], "suggests": ["inevitable abortion definition according to who", "threatened abortion definition according to who", "incomplete abortion definition according to who", "missed abortion definition according to who", "inevitable abortion definition", "inevitable.abortion", "inevitable definition in your own words", "inevitable abortion vs threatened abortion"], "self_loops": [0], "tags": {"i": "inevitable abortion definition according to who", "q": "ZJbecUIbmuhSO9tuFiNo8LwxkB8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "types of abortion threatened", "datetime": "2026-03-12 19:51:08.793287", "source": "google", "data": ["types of abortion threatened", [["types of abortion threatened", 0, [512]], ["types of abortion threatened inevitable", 0, [512]], ["types of abortion threatened missed", 0, [22, 30]], ["types of abortion threatened incomplete", 0, [22, 30]], ["what are the 7 types of abortion threatened", 0, [22, 30]], ["threatened abortion vs miscarriage", 0, [512, 546]], ["threatened abortion definition", 0, [512, 546]], ["threatened abortion vs threatened miscarriage", 0, [512, 546]], ["threatened abortion risk of miscarriage", 0, [751]]], {"i": "types of abortion threatened", "q": "3tMKToG88t9MeSLOCQAVc8HzQMg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["types of abortion threatened", "types of abortion threatened inevitable", "types of abortion threatened missed", "types of abortion threatened incomplete", "what are the 7 types of abortion threatened", "threatened abortion vs miscarriage", "threatened abortion definition", "threatened abortion vs threatened miscarriage", "threatened abortion risk of miscarriage"], "self_loops": [0], "tags": {"i": "types of abortion threatened", "q": "3tMKToG88t9MeSLOCQAVc8HzQMg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what do you mean by threatened abortion", "datetime": "2026-03-12 19:51:09.904304", "source": "google", "data": ["what do you mean by threatened abortion", [["what do you mean by threatened abortion", 0, [512]], ["what does it mean by threatened abortion", 0, [22, 30]], ["what is threatened abortion", 0, [512, 390, 650]], ["what is threatened abortion in pregnancy", 0, [512, 390, 650]], ["types of abortion threatened", 0, [512, 390, 650]], ["what does it mean by threatened miscarriage", 0, [512, 546]], ["threatened abortion definition", 0, [512, 546]], ["what does threatened abortion in early pregnancy mean", 0, [512, 546]]], {"i": "what do you mean by threatened abortion", "q": "w6--RxS4V0t6SZhMCG-1DXWsZio", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what do you mean by threatened abortion", "what does it mean by threatened abortion", "what is threatened abortion", "what is threatened abortion in pregnancy", "types of abortion threatened", "what does it mean by threatened miscarriage", "threatened abortion definition", "what does threatened abortion in early pregnancy mean"], "self_loops": [0], "tags": {"i": "what do you mean by threatened abortion", "q": "w6--RxS4V0t6SZhMCG-1DXWsZio", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is threatened abortion", "datetime": "2026-03-12 19:51:10.936362", "source": "google", "data": ["what is threatened abortion", [["what is threatened abortion", 0, [512]], ["what is threatened abortion mean", 0, [512]], ["what is threatened abortion in pregnancy", 0, [512]], ["what is threatened abortion in hindi", 0, [512]], ["what is threatened abortion definition", 0, [22, 30]], ["what is threatened abortion diagnosis", 0, [22, 30]], ["threatened abortion", 0, [22, 10, 30]], ["what is inevitable abortion", 0, [22, 30]], ["what is inevitable abortion in pregnancy", 0, [22, 30]], ["what is inevitable abortion in hindi", 0, [22, 30]]], {"i": "what is threatened abortion", "q": "kDN6fWp6OPoOwulF7OtPgDAmQVY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is threatened abortion", "what is threatened abortion mean", "what is threatened abortion in pregnancy", "what is threatened abortion in hindi", "what is threatened abortion definition", "what is threatened abortion diagnosis", "threatened abortion", "what is inevitable abortion", "what is inevitable abortion in pregnancy", "what is inevitable abortion in hindi"], "self_loops": [0], "tags": {"i": "what is threatened abortion", "q": "kDN6fWp6OPoOwulF7OtPgDAmQVY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "types of abortion threatened inevitable", "datetime": "2026-03-12 19:51:12.369219", "source": "google", "data": ["types of abortion threatened inevitable", [["types of abortion threatened inevitable", 0, [512]], ["types of abortion complete incomplete threatened inevitable etc", 0, [22, 30]], ["types of abortion threatened", 0, [512, 390, 650]], ["inevitable vs threatened abortion", 0, [512, 390, 650]], ["types of abortion missed threatened", 0, [512, 390, 650]], ["threatened abortion vs inevitable abortion", 0, [512, 546]], ["threatened abortion vs threatened miscarriage", 0, [512, 546]]], {"i": "types of abortion threatened inevitable", "q": "HLUGuA1LF7-0HdmaptRc_pSyCVE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["types of abortion threatened inevitable", "types of abortion complete incomplete threatened inevitable etc", "types of abortion threatened", "inevitable vs threatened abortion", "types of abortion missed threatened", "threatened abortion vs inevitable abortion", "threatened abortion vs threatened miscarriage"], "self_loops": [0], "tags": {"i": "types of abortion threatened inevitable", "q": "HLUGuA1LF7-0HdmaptRc_pSyCVE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is threatened abortion in pregnancy", "datetime": "2026-03-12 19:51:13.669521", "source": "google", "data": ["what is threatened abortion in pregnancy", [["what is threatened abortion in pregnancy", 0, [512]], ["what is inevitable abortion in pregnancy", 0, [22, 30]], ["what causes threatened abortion in pregnancy", 0, [22, 30]], ["what is threatened miscarriage in early pregnancy", 0, [22, 30]], ["what does threatened abortion in early pregnancy mean", 0, [22, 30]], ["what is threatened abortion", 0, [512, 390, 650]], ["what is considered a threatened miscarriage", 0, [512, 390, 650]], ["what is a threatened miscarriage", 0, [512, 390, 650]], ["what is a threatened pregnancy", 0, [512, 390, 650]], ["what is threatened abortion definition", 0, [546, 649]]], {"i": "what is threatened abortion in pregnancy", "q": "8xoE-NYlPUWPJzxXtTKIFOCZUcI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is threatened abortion in pregnancy", "what is inevitable abortion in pregnancy", "what causes threatened abortion in pregnancy", "what is threatened miscarriage in early pregnancy", "what does threatened abortion in early pregnancy mean", "what is threatened abortion", "what is considered a threatened miscarriage", "what is a threatened miscarriage", "what is a threatened pregnancy", "what is threatened abortion definition"], "self_loops": [0], "tags": {"i": "what is threatened abortion in pregnancy", "q": "8xoE-NYlPUWPJzxXtTKIFOCZUcI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion quizlet", "datetime": "2026-03-12 19:51:15.149233", "source": "google", "data": ["threatened abortion quizlet", [["threatened abortion quizlet", 0, [22, 30]], ["threatened abortion icd 10 quizlet", 0, [22, 30]], ["what do you mean by threatened abortion", 0, [512, 390, 650]], ["types of abortion threatened", 0, [512, 390, 650]], ["types of abortion missed threatened", 0, [512, 390, 650]], ["what is threatened abortion", 0, [512, 390, 650]], ["threatened abortion definition", 0, [512, 546]], ["threatened abortion treatment", 0, [512, 546]], ["threatened abortion medical term", 0, [512, 546]], ["threatened abortion vs threatened miscarriage", 0, [512, 546]]], {"i": "threatened abortion quizlet", "q": "UPTKThiMoxURztTPm5uCrfXQfXo", "t": {"bpc": false, "tlw": false}}], "suggests": ["threatened abortion quizlet", "threatened abortion icd 10 quizlet", "what do you mean by threatened abortion", "types of abortion threatened", "types of abortion missed threatened", "what is threatened abortion", "threatened abortion definition", "threatened abortion treatment", "threatened abortion medical term", "threatened abortion vs threatened miscarriage"], "self_loops": [0], "tags": {"i": "threatened abortion quizlet", "q": "UPTKThiMoxURztTPm5uCrfXQfXo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened definition biology", "datetime": "2026-03-12 19:51:16.244113", "source": "google", "data": ["threatened definition biology", [["threatened definition biology", 0, [22, 30]], ["extinct definition biology", 0, [22, 30]], ["vulnerable definition biology", 0, [22, 30]], ["extinct definition biology simple", 0, [22, 30]], ["extinct definition biology example", 0, [22, 30]], ["threat meaning biology", 0, [22, 30]], ["threatened species definition biology", 0, [22, 30]], ["threatened meaning in biology", 0, [512, 390, 650]], ["threatened definition", 0, [512, 390, 650]], ["threatened definition science", 0, [751]]], {"i": "threatened definition biology", "q": "I7Za6YbeafsMXiVReIPoXOU605w", "t": {"bpc": false, "tlw": false}}], "suggests": ["threatened definition biology", "extinct definition biology", "vulnerable definition biology", "extinct definition biology simple", "extinct definition biology example", "threat meaning biology", "threatened species definition biology", "threatened meaning in biology", "threatened definition", "threatened definition science"], "self_loops": [0], "tags": {"i": "threatened definition biology", "q": "I7Za6YbeafsMXiVReIPoXOU605w", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition dictionary", "datetime": "2026-03-12 19:51:17.369919", "source": "google", "data": ["abortion definition dictionary", [["abortion definition dictionary", 0, [512]], ["abortion definition oxford dictionary", 0, [22, 30]], ["abortion definition webster dictionary", 0, [22, 30]], ["abortion dictionary meaning", 0, [512, 390, 650]], ["types of abortion definition", 0, [512, 390, 650]], ["abortion dictionary", 0, [512, 546]]], {"i": "abortion definition dictionary", "q": "tMGGI-KjSyRFYE1zURsFZ3wGrSQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition dictionary", "abortion definition oxford dictionary", "abortion definition webster dictionary", "abortion dictionary meaning", "types of abortion definition", "abortion dictionary"], "self_loops": [0], "tags": {"i": "abortion definition dictionary", "q": "tMGGI-KjSyRFYE1zURsFZ3wGrSQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion dictionary meaning", "datetime": "2026-03-12 19:51:18.659451", "source": "google", "data": ["abortion dictionary meaning", [["abortion dictionary meaning", 0, [512]], ["miscarriage meaning dictionary", 0, [22, 30]], ["what does the word abortion mean", 0, [512, 390, 650]], ["what is the meaning of abortion in english", 0, [512, 390, 650]], ["abortion definition dictionary", 0, [512, 390, 650]], ["abortion dictionary", 0, [512, 546]], ["abortion medical dictionary", 0, [751]]], {"i": "abortion dictionary meaning", "q": "lVcQm9QgzTsZFOHbWU5BFmc1N8c", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion dictionary meaning", "miscarriage meaning dictionary", "what does the word abortion mean", "what is the meaning of abortion in english", "abortion definition dictionary", "abortion dictionary", "abortion medical dictionary"], "self_loops": [0], "tags": {"i": "abortion dictionary meaning", "q": "lVcQm9QgzTsZFOHbWU5BFmc1N8c", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "oxford dictionary abortion", "datetime": "2026-03-12 19:51:19.759642", "source": "google", "data": ["oxford dictionary abortion", [["oxford dictionary abortion", 0, [512]], ["oxford dictionary abortion definition", 0, [22, 30]], ["oxford english dictionary abortion", 0, [22, 30]], ["abortion definition oxford", 0, [512, 390, 650]], ["abortion dictionary meaning", 0, [512, 390, 650]]], {"i": "oxford dictionary abortion", "q": "-ZGafbRXwB4trrpATvdCqwZK7zQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["oxford dictionary abortion", "oxford dictionary abortion definition", "oxford english dictionary abortion", "abortion definition oxford", "abortion dictionary meaning"], "self_loops": [0], "tags": {"i": "oxford dictionary abortion", "q": "-ZGafbRXwB4trrpATvdCqwZK7zQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion root word", "datetime": "2026-03-12 19:51:20.844650", "source": "google", "data": ["abortion root word", [["abortion root word", 0, [512]], ["abortion origin word", 0, [22, 30]], ["miscarriage root word", 0, [22, 30]], ["abortion root word origin", 0, [22, 30]], ["when was the word abortion first used", 0, [512, 390, 650]], ["abortion definition oxford", 0, [512, 390, 650]], ["abor root word", 0, [546, 649]], ["abortion root word meaning", 0, [751]]], {"i": "abortion root word", "q": "IxLeaXZXBpnojuLNbNwfeRYB34M", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion root word", "abortion origin word", "miscarriage root word", "abortion root word origin", "when was the word abortion first used", "abortion definition oxford", "abor root word", "abortion root word meaning"], "self_loops": [0], "tags": {"i": "abortion root word", "q": "IxLeaXZXBpnojuLNbNwfeRYB34M", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is abortion article", "datetime": "2026-03-12 19:51:21.955377", "source": "google", "data": ["what is abortion article", [["what is abortion article", 0, [512]], ["what is abortion scholarly articles", 0, [22, 30]], ["what is abortion peer reviewed articles", 0, [22, 30]], ["what is paper abortion", 0, [22, 30]], ["what article is abortion in rpc", 0, [22, 30]], ["what article is abortion in philippines", 0, [22, 30]], ["what is article 258 abortion", 0, [22, 30]], ["what article is intentional abortion", 0, [22, 30]], ["what is abortion and why is it important", 0, [512, 390, 650]], ["what is artificial abortion", 0, [512, 546]]], {"i": "what is abortion article", "q": "n9-vII3k3g_YvQzCAct2dhk7DRk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is abortion article", "what is abortion scholarly articles", "what is abortion peer reviewed articles", "what is paper abortion", "what article is abortion in rpc", "what article is abortion in philippines", "what is article 258 abortion", "what article is intentional abortion", "what is abortion and why is it important", "what is artificial abortion"], "self_loops": [0], "tags": {"i": "what is abortion article", "q": "n9-vII3k3g_YvQzCAct2dhk7DRk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "miscarriage definition cdc", "datetime": "2026-03-12 19:51:22.970976", "source": "google", "data": ["miscarriage definition cdc", [["miscarriage definition cdc", 0, [22, 30]], ["abortion definition cdc", 0, [22, 30]], ["what is a d c procedure miscarriage", 0, [512, 390, 650]], ["what is a dc after miscarriage", 0, [512, 390, 650]], ["miscarriage definition medical", 0, [512, 546]], ["miscarriage definition pregnancy", 0, [546, 649]], ["miscarriage cdc", 0, [546, 649]]], {"i": "miscarriage definition cdc", "q": "FUYDwjgCgv0DxPd36OIuDM5AAV4", "t": {"bpc": false, "tlw": false}}], "suggests": ["miscarriage definition cdc", "abortion definition cdc", "what is a d c procedure miscarriage", "what is a dc after miscarriage", "miscarriage definition medical", "miscarriage definition pregnancy", "miscarriage cdc"], "self_loops": [0], "tags": {"i": "miscarriage definition cdc", "q": "FUYDwjgCgv0DxPd36OIuDM5AAV4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "complete abortion definition", "datetime": "2026-03-12 19:51:23.913165", "source": "google", "data": ["complete abortion definition", [["complete abortion definition", 0, [512]], ["complete abortion definition in hindi", 0, [512]], ["complete abortion definition ppt", 0, [22, 30]], ["spontaneous abortion definition", 0, [22, 30]], ["spontaneous abortion definition in hindi", 0, [22, 30]], ["spontaneous abortion definition according to who", 0, [22, 30]], ["spontaneous abortion definition acog", 0, [22, 30]], ["spontaneous abortion definition ppt", 0, [22, 30]], ["spontaneous abortion definition simple", 0, [22, 30]], ["complete abortion meaning in pregnancy", 0, [22, 30]]], {"i": "complete abortion definition", "q": "0NMtclyylLhgJC6YjOsDd8nV-mA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["complete abortion definition", "complete abortion definition in hindi", "complete abortion definition ppt", "spontaneous abortion definition", "spontaneous abortion definition in hindi", "spontaneous abortion definition according to who", "spontaneous abortion definition acog", "spontaneous abortion definition ppt", "spontaneous abortion definition simple", "complete abortion meaning in pregnancy"], "self_loops": [0], "tags": {"i": "complete abortion definition", "q": "0NMtclyylLhgJC6YjOsDd8nV-mA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "define abortion medical", "datetime": "2026-03-12 19:51:25.326466", "source": "google", "data": ["define abortion medical", [["define abortion medically", 0, [512]], ["define abortion medical term", 0, [22, 30]], ["what is abortion medically", 0, [22, 30]], ["what is abortion medical term", 0, [22, 30]], ["abortion definition medical according to who", 0, [22, 30]], ["what is medical abortion and how does it work", 0, [22, 30]], ["what is medical abortion called", 0, [22, 30]], ["what is medical abortion procedure", 0, [22, 30]], ["what is medical abortion like reddit", 0, [22, 30]], ["what is medical.abortion pain like", 0, [22, 10, 30]]], {"i": "define abortion medical", "q": "iyy_wwPhSBeXt30HWC8bm2TbCCg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["define abortion medically", "define abortion medical term", "what is abortion medically", "what is abortion medical term", "abortion definition medical according to who", "what is medical abortion and how does it work", "what is medical abortion called", "what is medical abortion procedure", "what is medical abortion like reddit", "what is medical.abortion pain like"], "self_loops": [], "tags": {"i": "define abortion medical", "q": "iyy_wwPhSBeXt30HWC8bm2TbCCg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "definition of abortion cdc", "datetime": "2026-03-12 19:51:26.530713", "source": "google", "data": ["definition of abortion cdc", [["definition of abortion cdc", 0, [512]], ["define abortion cdc", 0, [22, 30]], ["cdc definition of abortion 2022", 0, [22, 30]], ["cdc definition of abortion pdf", 0, [22, 30]], ["types of abortion definition", 0, [512, 390, 650]], ["definition of abortion who", 0, [512, 546]]], {"i": "definition of abortion cdc", "q": "ppwvQHp20QTiMBNC3S03h9-4htY", "t": {"bpc": false, "tlw": false}}], "suggests": ["definition of abortion cdc", "define abortion cdc", "cdc definition of abortion 2022", "cdc definition of abortion pdf", "types of abortion definition", "definition of abortion who"], "self_loops": [0], "tags": {"i": "definition of abortion cdc", "q": "ppwvQHp20QTiMBNC3S03h9-4htY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "types of abortion definition", "datetime": "2026-03-12 19:51:27.727347", "source": "google", "data": ["types of abortion definition", [["types of abortion definition", 0, [512]], ["types of abortion definition according to who", 0, [512]], ["types of abortion definition pdf", 0, [512]], ["types of abortion definition ppt", 0, [22, 30]], ["types of abortion definition in nursing", 0, [22, 30]], ["types of spontaneous abortion definition", 0, [22, 30]], ["types of abortion and their definition", 0, [22, 30]], ["5 types of abortion and its definition", 0, [22, 30]], ["definition of different types of abortion", 0, [22, 30]], ["what are the different types of abortion", 0, [512, 390, 650]]], {"i": "types of abortion definition", "q": "ey-mtG3R2y5qXOZCFqcHHxKo8P8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["types of abortion definition", "types of abortion definition according to who", "types of abortion definition pdf", "types of abortion definition ppt", "types of abortion definition in nursing", "types of spontaneous abortion definition", "types of abortion and their definition", "5 types of abortion and its definition", "definition of different types of abortion", "what are the different types of abortion"], "self_loops": [0], "tags": {"i": "types of abortion definition", "q": "ey-mtG3R2y5qXOZCFqcHHxKo8P8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion a crime in the philippines", "datetime": "2026-03-12 19:51:28.785797", "source": "google", "data": ["is abortion a crime in the philippines", [["is abortion a crime in the philippines", 0, [512]], ["is abortion legal in the philippines", 0, [22, 30]], ["is abortion illegal in the philippines", 0, [22, 30]], ["is abortion legal in the philippines 2024", 0, [22, 30]], ["is abortion legal in the philippines 2025", 0, [22, 30]], ["is abortion legal in the philippines 2024 update", 0, [22, 30]], ["is abortion legal in the philippines tagalog", 0, [22, 30]], ["is abortion illegal in the philippines reddit", 0, [22, 30]], ["is abortion legal in the philippines brainly", 0, [22, 30]], ["is abortion legal in the philippines 2022", 0, [22, 30]]], {"i": "is abortion a crime in the philippines", "q": "6xZJddGkB5rxf4yhcbsQw-Y7L2o", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion a crime in the philippines", "is abortion legal in the philippines", "is abortion illegal in the philippines", "is abortion legal in the philippines 2024", "is abortion legal in the philippines 2025", "is abortion legal in the philippines 2024 update", "is abortion legal in the philippines tagalog", "is abortion illegal in the philippines reddit", "is abortion legal in the philippines brainly", "is abortion legal in the philippines 2022"], "self_loops": [0], "tags": {"i": "is abortion a crime in the philippines", "q": "6xZJddGkB5rxf4yhcbsQw-Y7L2o", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion is legal in philippines", "datetime": "2026-03-12 19:51:29.986740", "source": "google", "data": ["is abortion is legal in philippines", [["is abortion is legal in philippines", 0, [512]], ["is abortion is illegal in philippines", 0, [22, 30]], ["is abortion pill is legal in philippines", 0, [22, 30]], ["is abortion legal in philippines 2024", 0, [22, 30]], ["is abortion legal in philippines 2025", 0, [22, 30]], ["is abortion legal in philippines reddit", 0, [22, 30]], ["is abortion legal in philippines tagalog", 0, [22, 30]], ["is abortion legal in philippines 2024 update", 0, [22, 30]], ["is abortion legal in philippines now", 0, [22, 30]], ["is abortion legal in philippines for foreigners", 0, [22, 30]]], {"i": "is abortion is legal in philippines", "q": "ZH6JlvwV6sBXyp5AF6N_rknxnL8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion is legal in philippines", "is abortion is illegal in philippines", "is abortion pill is legal in philippines", "is abortion legal in philippines 2024", "is abortion legal in philippines 2025", "is abortion legal in philippines reddit", "is abortion legal in philippines tagalog", "is abortion legal in philippines 2024 update", "is abortion legal in philippines now", "is abortion legal in philippines for foreigners"], "self_loops": [0], "tags": {"i": "is abortion is legal in philippines", "q": "ZH6JlvwV6sBXyp5AF6N_rknxnL8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion illegal in philippines", "datetime": "2026-03-12 19:51:31.345590", "source": "google", "data": ["is abortion illegal in philippines", [["is abortion illegal in philippines", 0, [512]], ["is abortion illegal in philippines 2025", 0, [512]], ["is abortion illegal in philippines 2024", 0, [22, 30]], ["is abortion illegal in philippines 2024 update", 0, [22, 30]], ["is abortion illegal in philippines reddit", 0, [22, 455, 30]], ["is abortion legal in philippines", 0, [22, 30]], ["is abortion legal in philippines 2024", 0, [22, 30]], ["is abortion allowed in philippines", 0, [22, 30]], ["is abortion banned in philippines", 0, [22, 30]], ["is abortion legal in philippines reddit", 0, [22, 30]]], {"i": "is abortion illegal in philippines", "q": "Z2PVQpM0UsVpCczp5vlakm7kmuw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion illegal in philippines", "is abortion illegal in philippines 2025", "is abortion illegal in philippines 2024", "is abortion illegal in philippines 2024 update", "is abortion illegal in philippines reddit", "is abortion legal in philippines", "is abortion legal in philippines 2024", "is abortion allowed in philippines", "is abortion banned in philippines", "is abortion legal in philippines reddit"], "self_loops": [0], "tags": {"i": "is abortion illegal in philippines", "q": "Z2PVQpM0UsVpCczp5vlakm7kmuw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in philippines", "datetime": "2026-03-12 19:51:32.623319", "source": "google", "data": ["abortion laws in philippines", [["abortion laws in philippines", 0, [512]], ["abortion legal in philippines", 0, [22, 30]], ["abortion illegal in philippines", 0, [22, 30]], ["child abortion law in philippines", 0, [22, 30]], ["anti abortion law in philippines", 0, [22, 30]], ["abortion law philippines republic act", 0, [22, 30]], ["abortion law philippines republic act summary", 0, [22, 30]], ["abortion law philippines republic act tagalog", 0, [22, 30]], ["abortion law philippines article", 0, [22, 30]], ["abortion law philippines republic act pdf", 0, [22, 30]]], {"i": "abortion laws in philippines", "q": "h-I-2O_lNAlQWlHCg6jnRSF424g", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion laws in philippines", "abortion legal in philippines", "abortion illegal in philippines", "child abortion law in philippines", "anti abortion law in philippines", "abortion law philippines republic act", "abortion law philippines republic act summary", "abortion law philippines republic act tagalog", "abortion law philippines article", "abortion law philippines republic act pdf"], "self_loops": [0], "tags": {"i": "abortion laws in philippines", "q": "h-I-2O_lNAlQWlHCg6jnRSF424g", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion legal in the philippines 2020", "datetime": "2026-03-12 19:51:33.700089", "source": "google", "data": ["is abortion legal in the philippines 2020", [["is abortion legal in the philippines 20204", 33, [160], {"a": "is abortion legal in the philippines ", "b": "20204"}], ["is abortion legal in the philippines 2020 to present", 33, [160], {"a": "is abortion legal in the philippines ", "b": "2020 to present"}], ["is abortion legal in the philippines 2020-2024", 33, [160], {"a": "is abortion legal in the philippines ", "b": "2020-2024"}], ["is abortion legal in the philippines 2020 and now", 33, [160], {"a": "is abortion legal in the philippines ", "b": "2020 and now"}], ["is abortion legal in the philippines 2020", 33, [671], {"a": "is abortion legal in the philippines ", "b": "2020"}]], {"i": "is abortion legal in the philippines 2020", "q": "HfwZHW42sheg0C1Mx4Mp03p68e8", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion legal in the philippines 20204", "is abortion legal in the philippines 2020 to present", "is abortion legal in the philippines 2020-2024", "is abortion legal in the philippines 2020 and now", "is abortion legal in the philippines 2020"], "self_loops": [4], "tags": {"i": "is abortion legal in the philippines 2020", "q": "HfwZHW42sheg0C1Mx4Mp03p68e8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion legal meaning", "datetime": "2026-03-12 19:51:34.731444", "source": "google", "data": ["abortion legal meaning", [["abortion legal meaning", 0, [22, 30]], ["abortion law meaning", 0, [22, 30]], ["legal abortion meaning in hindi", 0, [22, 30]], ["miscarriage legal meaning", 0, [22, 30]], ["abortion legal term", 0, [22, 30]], ["legal abortion term uk", 0, [22, 30]], ["legal abortion term australia", 0, [22, 30]], ["abortion legal until viability meaning", 0, [22, 30]], ["abortion legal before viability meaning", 0, [22, 30]], ["abortion legal at any stage meaning", 0, [22, 30]]], {"i": "abortion legal meaning", "q": "yhTxJOlGHyiH_zF3dQl_lH68uxQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion legal meaning", "abortion law meaning", "legal abortion meaning in hindi", "miscarriage legal meaning", "abortion legal term", "legal abortion term uk", "legal abortion term australia", "abortion legal until viability meaning", "abortion legal before viability meaning", "abortion legal at any stage meaning"], "self_loops": [0], "tags": {"i": "abortion legal meaning", "q": "yhTxJOlGHyiH_zF3dQl_lH68uxQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "legal abortion definition in hindi", "datetime": "2026-03-12 19:51:36.092177", "source": "google", "data": ["legal abortion definition in hindi", [["legal abortion definition in hindi", 0, [22, 30]], ["legal abortion definition", 0, [512, 546]], ["legal definition of abortion in texas", 0, [546, 649]], ["legal definition of abortion in the united states", 0, [512, 546]]], {"i": "legal abortion definition in hindi", "q": "2LmFuRcce-ixFmnmKuUhRgEc0zg", "t": {"bpc": false, "tlw": false}}], "suggests": ["legal abortion definition in hindi", "legal abortion definition", "legal definition of abortion in texas", "legal definition of abortion in the united states"], "self_loops": [0], "tags": {"i": "legal abortion definition in hindi", "q": "2LmFuRcce-ixFmnmKuUhRgEc0zg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "legal abortion definition according to who", "datetime": "2026-03-12 19:51:37.030484", "source": "google", "data": ["legal abortion definition according to who", [["legal abortion definition according to who", 0, [22, 30]], ["what is abortion according to who", 0, [512, 390, 650]], ["legal definition abortion", 0, [546, 649]], ["legal definition of abortion in the united states", 0, [512, 546]], ["abortion definition according to who", 0, [512, 546]]], {"i": "legal abortion definition according to who", "q": "oW72M2R_4N8dyouTJVKcDoYsj3U", "t": {"bpc": false, "tlw": false}}], "suggests": ["legal abortion definition according to who", "what is abortion according to who", "legal definition abortion", "legal definition of abortion in the united states", "abortion definition according to who"], "self_loops": [0], "tags": {"i": "legal abortion definition according to who", "q": "oW72M2R_4N8dyouTJVKcDoYsj3U", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "legal abortion definition in india", "datetime": "2026-03-12 19:51:38.064159", "source": "google", "data": ["legal abortion definition in india", [["legal abortion definition in india", 0, [22, 30]], ["legal period for abortion in india", 0, [512, 390, 650]], ["legal limit for abortion in india", 0, [512, 390, 650]], ["what is legal abortion", 0, [512, 390, 650]], ["legal abortion indiana", 0, [751]], ["what are abortion laws in india", 0, [512, 546]], ["is abortion legal in indian", 0, [546, 649]]], {"i": "legal abortion definition in india", "q": "d-oRarqlzMomaAKS9aLXZI1EDcw", "t": {"bpc": false, "tlw": false}}], "suggests": ["legal abortion definition in india", "legal period for abortion in india", "legal limit for abortion in india", "what is legal abortion", "legal abortion indiana", "what are abortion laws in india", "is abortion legal in indian"], "self_loops": [0], "tags": {"i": "legal abortion definition in india", "q": "d-oRarqlzMomaAKS9aLXZI1EDcw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in england", "datetime": "2026-03-12 19:51:39.359462", "source": "google", "data": ["abortion laws in england", [["abortion laws in england", 0, [512]], ["abortion laws in england and wales", 0, [22, 30]], ["abortion laws in england and france", 0, [22, 30]], ["abortion laws in england 2024", 0, [22, 30]], ["abortion laws in england 2025", 0, [22, 30]], ["abortion law in england 2022", 0, [22, 30]], ["abortion legal in england", 0, [22, 30]], ["abortion act in england", 0, [22, 30]], ["abortion illegal in england and wales", 0, [22, 30]], ["abortion limits in england", 0, [22, 30]]], {"i": "abortion laws in england", "q": "Vswqz2em_cFL9gOHI8wIrs-KHMM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion laws in england", "abortion laws in england and wales", "abortion laws in england and france", "abortion laws in england 2024", "abortion laws in england 2025", "abortion law in england 2022", "abortion legal in england", "abortion act in england", "abortion illegal in england and wales", "abortion limits in england"], "self_loops": [0], "tags": {"i": "abortion laws in england", "q": "Vswqz2em_cFL9gOHI8wIrs-KHMM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is the current uk law on abortion", "datetime": "2026-03-12 19:51:40.579973", "source": "google", "data": ["what is the current uk law on abortion", [["what is the current uk law on abortion", 0, [512]], ["is abortion legal in the uk", 0, [512, 390, 650]], ["is abortion legal in the united kingdom", 0, [512, 390, 650]], ["is abortion legal in england", 0, [512, 390, 650]], ["what is the uk stance on abortion", 0, [751]], ["what is the current law on abortion", 0, [512, 546]]], {"i": "what is the current uk law on abortion", "q": "7KHjP_J6oe_g1g2k2hkH88j4U5o", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is the current uk law on abortion", "is abortion legal in the uk", "is abortion legal in the united kingdom", "is abortion legal in england", "what is the uk stance on abortion", "what is the current law on abortion"], "self_loops": [0], "tags": {"i": "what is the current uk law on abortion", "q": "7KHjP_J6oe_g1g2k2hkH88j4U5o", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law united kingdom", "datetime": "2026-03-12 19:51:41.417626", "source": "google", "data": ["abortion law united kingdom", [["abortion law united kingdom", 0, [22, 30]], ["abortion legal in united kingdom", 0, [22, 30]], ["abortion laws in england", 0, [512, 390, 650]], ["abortion rights in uk", 0, [512, 390, 650]], ["united kingdom abortion laws 2022", 0, [546, 649]]], {"i": "abortion law united kingdom", "q": "hXZ7GVM60lf9kRZHyF9XmoYbcFU", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion law united kingdom", "abortion legal in united kingdom", "abortion laws in england", "abortion rights in uk", "united kingdom abortion laws 2022"], "self_loops": [0], "tags": {"i": "abortion law united kingdom", "q": "hXZ7GVM60lf9kRZHyF9XmoYbcFU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws uk vs us", "datetime": "2026-03-12 19:51:42.405626", "source": "google", "data": ["abortion laws uk vs us", [["abortion laws uk vs us", 0, [22, 30]], ["abortion rights uk vs us", 0, [751]], ["abortion uk vs us", 0, [751]], ["abortion laws us vs europe", 0, [751]]], {"i": "abortion laws uk vs us", "q": "6FkOFbJaOFMw5ya1PMfPYajaTKk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws uk vs us", "abortion rights uk vs us", "abortion uk vs us", "abortion laws us vs europe"], "self_loops": [0], "tags": {"i": "abortion laws uk vs us", "q": "6FkOFbJaOFMw5ya1PMfPYajaTKk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion legal definition", "datetime": "2026-03-12 19:51:43.278834", "source": "google", "data": ["abortion legal definition", [["abortion legal definition", 0, [512]], ["abortion law definition", 0, [22, 30]], ["legal abortion definition in hindi", 0, [22, 30]], ["legal abortion definition according to who", 0, [22, 30]], ["legal abortion definition in india", 0, [22, 30]], ["miscarriage legal definition", 0, [22, 30]], ["abortion legal term", 0, [22, 30]], ["legal abortion term uk", 0, [22, 30]], ["legal abortion term australia", 0, [22, 30]], ["abortion legal meaning", 0, [751]]], {"i": "abortion legal definition", "q": "djM9VqKErFJInSF8ASYLoBk_2D4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion legal definition", "abortion law definition", "legal abortion definition in hindi", "legal abortion definition according to who", "legal abortion definition in india", "miscarriage legal definition", "abortion legal term", "legal abortion term uk", "legal abortion term australia", "abortion legal meaning"], "self_loops": [0], "tags": {"i": "abortion legal definition", "q": "djM9VqKErFJInSF8ASYLoBk_2D4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law definition", "datetime": "2026-03-12 19:51:44.258085", "source": "google", "data": ["abortion law definition", [["abortion law definition", 0, [22, 30]], ["abortion legal definition", 0, [22, 30]], ["abortion right definition", 0, [22, 30]], ["abortion act definition", 0, [22, 30]], ["legal abortion definition in hindi", 0, [22, 30]], ["legal abortion definition according to who", 0, [22, 30]], ["legal abortion definition in india", 0, [22, 30]], ["illegal abortion definition in medical", 0, [22, 30]], ["illegal abortion definition in hindi", 0, [22, 30]], ["illegal abortion definition in english", 0, [22, 30]]], {"i": "abortion law definition", "q": "02KQK1VQXrmiFsa5zKRA_-8sxSY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion law definition", "abortion legal definition", "abortion right definition", "abortion act definition", "legal abortion definition in hindi", "legal abortion definition according to who", "legal abortion definition in india", "illegal abortion definition in medical", "illegal abortion definition in hindi", "illegal abortion definition in english"], "self_loops": [0], "tags": {"i": "abortion law definition", "q": "02KQK1VQXrmiFsa5zKRA_-8sxSY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "act abortion laws", "datetime": "2026-03-12 19:51:45.331053", "source": "google", "data": ["act abortion laws", [["act abortion laws", 0, [512]], ["act abortion legislation", 0, [22, 30]], ["abortion act 2022", 0, [546, 649]], ["abortion acts", 0, [512, 546]], ["abortion act congress", 0, [751]], ["abortion act of 1967", 0, [512, 546]]], {"i": "act abortion laws", "q": "pIVvSwaF0nHtYUPS3iivr0FH-m8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["act abortion laws", "act abortion legislation", "abortion act 2022", "abortion acts", "abortion act congress", "abortion act of 1967"], "self_loops": [0], "tags": {"i": "act abortion laws", "q": "pIVvSwaF0nHtYUPS3iivr0FH-m8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is the abortion act", "datetime": "2026-03-12 19:51:46.620795", "source": "google", "data": ["what is the abortion act", [["what is the abortion act", 0, [512]], ["what is the abortion act 1967", 0, [512]], ["what is the abortion act uk", 0, [22, 30]], ["what is the actual abortion procedure", 0, [22, 30]], ["what is abortion action missouri", 0, [22, 30]], ["what is the abortion law in florida", 0, [22, 30]], ["what is the abortion law in texas", 0, [22, 30]], ["what is the abortion law in georgia", 0, [22, 30]], ["what is the abortion law in florida in 2024", 0, [22, 30]], ["what is the abortion law in uk", 0, [22, 30]]], {"i": "what is the abortion act", "q": "FzVEoQfkB4B5RfP5nYaUtt85Kzg", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is the abortion act", "what is the abortion act 1967", "what is the abortion act uk", "what is the actual abortion procedure", "what is abortion action missouri", "what is the abortion law in florida", "what is the abortion law in texas", "what is the abortion law in georgia", "what is the abortion law in florida in 2024", "what is the abortion law in uk"], "self_loops": [0], "tags": {"i": "what is the abortion act", "q": "FzVEoQfkB4B5RfP5nYaUtt85Kzg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion act in india", "datetime": "2026-03-12 19:51:48.020956", "source": "google", "data": ["abortion act in india", [["abortion act in india", 0, [512]], ["abortion act in india pdf", 0, [22, 30]], ["abortion legal in india", 0, [22, 30]], ["abortion law in india", 0, [22, 30]], ["abortion illegal in india", 0, [22, 30]], ["abortion law in indiana", 0, [22, 30]], ["abortion legal in indiana", 0, [22, 30]], ["abortion legal in india for unmarried", 0, [22, 30]], ["abortion legal in india for married", 0, [22, 30]], ["abortion illegal in indiana", 0, [22, 30]]], {"i": "abortion act in india", "q": "mRy8bZMCDnz8hkgz8vxVyaY9hrw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion act in india", "abortion act in india pdf", "abortion legal in india", "abortion law in india", "abortion illegal in india", "abortion law in indiana", "abortion legal in indiana", "abortion legal in india for unmarried", "abortion legal in india for married", "abortion illegal in indiana"], "self_loops": [0], "tags": {"i": "abortion act in india", "q": "mRy8bZMCDnz8hkgz8vxVyaY9hrw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning law", "datetime": "2026-03-12 19:51:49.228434", "source": "google", "data": ["abortion meaning law", [["abortion meaning law", 0, [22, 30]], ["abortion term laws by state", 0, [22, 30]], ["abortion term laws", 0, [22, 30]], ["abortion meaning in law philippines", 0, [22, 30]], ["abortion legal meaning", 0, [22, 30]], ["criminal abortion meaning in law", 0, [22, 30]], ["what is the legal definition of an abortion", 0, [512, 390, 650]]], {"i": "abortion meaning law", "q": "nTS2OFoKNSbD3Wqe9kCsithN8H0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning law", "abortion term laws by state", "abortion term laws", "abortion meaning in law philippines", "abortion legal meaning", "criminal abortion meaning in law", "what is the legal definition of an abortion"], "self_loops": [0], "tags": {"i": "abortion meaning law", "q": "nTS2OFoKNSbD3Wqe9kCsithN8H0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is considered an abortion by law", "datetime": "2026-03-12 19:51:50.505405", "source": "google", "data": ["what is considered an abortion by law", [["what is considered an abortion by law", 0, [512]], ["what is an abortion by law", 0, [22, 30]], ["what is the legal definition of an abortion", 0, [512, 390, 650]], ["what is considered an abortion in texas", 0, [751]], ["what is considered a legal abortion", 0, [751]], ["what is considered an abortion roe v wade", 0, [751]]], {"i": "what is considered an abortion by law", "q": "eXImuTwx8l108QvnQj97V7iFS_A", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is considered an abortion by law", "what is an abortion by law", "what is the legal definition of an abortion", "what is considered an abortion in texas", "what is considered a legal abortion", "what is considered an abortion roe v wade"], "self_loops": [0], "tags": {"i": "what is considered an abortion by law", "q": "eXImuTwx8l108QvnQj97V7iFS_A", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "define abortion legal", "datetime": "2026-03-12 19:51:51.906249", "source": "google", "data": ["define abortion legal", [["define abortion legal", 0, [22, 30]], ["what is abortion legal", 0, [22, 30]], ["what is legal abortion in uk", 0, [22, 30]], ["what is legal abortion age", 0, [22, 30]], ["what is legal abortion time", 0, [22, 30]], ["what is legal abortion in the united states", 0, [22, 30]], ["what is legal abortion limit uk", 0, [22, 30]], ["what is legal abortion in india", 0, [22, 30]], ["what is legal abortion in florida", 0, [22, 30]], ["what is legal abortion limit", 0, [22, 30]]], {"i": "define abortion legal", "q": "U-QfOeJ6puSBXCpfK_knx2qLCZk", "t": {"bpc": false, "tlw": false}}], "suggests": ["define abortion legal", "what is abortion legal", "what is legal abortion in uk", "what is legal abortion age", "what is legal abortion time", "what is legal abortion in the united states", "what is legal abortion limit uk", "what is legal abortion in india", "what is legal abortion in florida", "what is legal abortion limit"], "self_loops": [0], "tags": {"i": "define abortion legal", "q": "U-QfOeJ6puSBXCpfK_knx2qLCZk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "laws on abortion", "datetime": "2026-03-12 19:51:53.395699", "source": "google", "data": ["laws on abortion", [["laws on abortion", 0, [512]], ["laws on abortion in the united states", 0, [512]], ["laws on abortion in north carolina", 0, [512]], ["laws on abortion in texas", 0, [512]], ["laws on abortion in florida", 0, [512]], ["laws on abortion in ohio", 0, [512]], ["laws on abortion in california", 0, [512]], ["laws on abortion in kentucky", 0, [512]], ["laws on abortion in tennessee", 0, [512]], ["laws on abortion uk", 0, [512]]], {"q": "WtxR9d0e2rVxve4ISOS5vMjy_E0", "t": {"bpc": false, "tlw": false}}], "suggests": ["laws on abortion", "laws on abortion in the united states", "laws on abortion in north carolina", "laws on abortion in texas", "laws on abortion in florida", "laws on abortion in ohio", "laws on abortion in california", "laws on abortion in kentucky", "laws on abortion in tennessee", "laws on abortion uk"], "self_loops": [0], "tags": {"q": "WtxR9d0e2rVxve4ISOS5vMjy_E0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "miscarriage merriam webster", "datetime": "2026-03-12 19:51:54.736465", "source": "google", "data": ["miscarriage merriam webster", [["miscarriage merriam webster", 0, [22, 30]], ["abortion merriam webster", 0, [22, 30]], ["miscarriage definition merriam webster", 0, [22, 30]], ["what does a miscarriage mean in the bible", 0, [512, 390, 650]], ["miscarriage word origin", 0, [512, 390, 650]], ["what does the word miscarriage mean", 0, [512, 390, 650]], ["what miscarriage mean", 0, [512, 390, 650]], ["miscarriage medical definition", 0, [512, 546]], ["miscarriage meaning in simple words", 0, [512, 546]]], {"i": "miscarriage merriam webster", "q": "Z4Tj_UeAma5cf-nrmi8NA2OoaKs", "t": {"bpc": false, "tlw": false}}], "suggests": ["miscarriage merriam webster", "abortion merriam webster", "miscarriage definition merriam webster", "what does a miscarriage mean in the bible", "miscarriage word origin", "what does the word miscarriage mean", "what miscarriage mean", "miscarriage medical definition", "miscarriage meaning in simple words"], "self_loops": [0], "tags": {"i": "miscarriage merriam webster", "q": "Z4Tj_UeAma5cf-nrmi8NA2OoaKs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion webster dictionary", "datetime": "2026-03-12 19:51:55.792055", "source": "google", "data": ["abortion webster dictionary", [["abortion webster's dictionary", 0, [22, 30]], ["miscarriage webster's dictionary", 0, [22, 30]], ["abortion definition webster dictionary", 0, [22, 30]], ["abortion definition webster", 0, [512, 390, 650]], ["what is abortion article", 0, [512, 390, 650]], ["is abortion a bad word", 0, [512, 390, 650]], ["abortion dictionary meaning", 0, [512, 390, 650]], ["abortion webster", 0, [751]]], {"i": "abortion webster dictionary", "q": "Kicak9dJTASiRGJSY-xtW8AE_so", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion webster's dictionary", "miscarriage webster's dictionary", "abortion definition webster dictionary", "abortion definition webster", "what is abortion article", "is abortion a bad word", "abortion dictionary meaning", "abortion webster"], "self_loops": [], "tags": {"i": "abortion webster dictionary", "q": "Kicak9dJTASiRGJSY-xtW8AE_so", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "define abortion webster's dictionary", "datetime": "2026-03-12 19:51:56.662224", "source": "google", "data": ["define abortion webster's dictionary", [["abortion definition webster dictionary", 0, [22, 30]], ["abortion definition webster", 0, [512, 390, 650]], ["abortion definition dictionary", 0, [512, 390, 650]], ["abortion dictionary meaning", 0, [512, 390, 650]], ["define abortion webster's dictionary", 0, [751]], ["abortion webster's dictionary", 0, [512, 546]]], {"i": "define abortion webster's dictionary", "q": "RuK05Dbtq9TAfd27hcgpz5KiMog", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition webster dictionary", "abortion definition webster", "abortion definition dictionary", "abortion dictionary meaning", "define abortion webster's dictionary", "abortion webster's dictionary"], "self_loops": [4], "tags": {"i": "define abortion webster's dictionary", "q": "RuK05Dbtq9TAfd27hcgpz5KiMog", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "miscarriage webster's dictionary", "datetime": "2026-03-12 19:51:57.499195", "source": "google", "data": ["miscarriage webster's dictionary", [["miscarriage webster's dictionary", 0, [22, 30]], ["abortion webster's dictionary", 0, [22, 30]], ["what does a miscarriage mean in the bible", 0, [512, 390, 650]], ["is miscarriage a medical term", 0, [512, 390, 650]], ["what do doctors call a miscarriage", 0, [512, 390, 650]], ["miscarriage definition merriam webster", 0, [751]], ["miscarriage dictionary", 0, [512, 546]], ["miscarriage merriam webster", 0, [751]], ["miscarriage medical definition", 0, [512, 546]]], {"i": "miscarriage webster's dictionary", "q": "Kz-FewnkfLR88IkhbC9MtnPW5DQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["miscarriage webster's dictionary", "abortion webster's dictionary", "what does a miscarriage mean in the bible", "is miscarriage a medical term", "what do doctors call a miscarriage", "miscarriage definition merriam webster", "miscarriage dictionary", "miscarriage merriam webster", "miscarriage medical definition"], "self_loops": [0], "tags": {"i": "miscarriage webster's dictionary", "q": "Kz-FewnkfLR88IkhbC9MtnPW5DQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion webster", "datetime": "2026-03-12 19:51:58.699062", "source": "google", "data": ["abortion webster", [["abortion webster's dictionary", 0, [512]], ["abortion webster", 0, [22, 30]], ["webster abortion case", 0, [22, 30]], ["abortion definition webster", 0, [22, 30]], ["abortion definition merriam webster", 0, [22, 30]], ["what is abortion article", 0, [512, 390, 650]], ["history of abortion in texas", 0, [512, 390, 650]], ["abortion past tense", 0, [512, 390, 650]]], {"i": "abortion webster", "q": "Oe8cQWMXIr_p91ChQYLYqDJ58OI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion webster's dictionary", "abortion webster", "webster abortion case", "abortion definition webster", "abortion definition merriam webster", "what is abortion article", "history of abortion in texas", "abortion past tense"], "self_loops": [1], "tags": {"i": "abortion webster", "q": "Oe8cQWMXIr_p91ChQYLYqDJ58OI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable abortion definition easy", "datetime": "2026-03-12 19:51:59.634332", "source": "google", "data": ["inevitable abortion definition easy", [["inevitable abortion definition easy", 0, [22, 30]], ["missed abortion simple definition", 0, [22, 30]], ["inevitable abortion definition", 0, [512, 390, 650]], ["inevitable abortion treatment", 0, [512, 390, 650]], ["inevitable.abortion", 0, [512, 546]], ["inevitable definition easy", 0, [751]], ["inevitable abortion vs complete abortion", 0, [512, 546]]], {"i": "inevitable abortion definition easy", "q": "hp3Rqrp5r_Us82RzCPfa9cWRUJE", "t": {"bpc": false, "tlw": false}}], "suggests": ["inevitable abortion definition easy", "missed abortion simple definition", "inevitable abortion definition", "inevitable abortion treatment", "inevitable.abortion", "inevitable definition easy", "inevitable abortion vs complete abortion"], "self_loops": [0], "tags": {"i": "inevitable abortion definition easy", "q": "hp3Rqrp5r_Us82RzCPfa9cWRUJE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition types", "datetime": "2026-03-12 19:52:00.598607", "source": "google", "data": ["abortion definition types", [["abortion definition types", 0, [512]], ["abortion definition types management", 0, [512]], ["abortion and its types", 0, [22, 30]], ["abortion and its types ppt", 0, [22, 30]], ["abortion and its types slideshare", 0, [22, 30]], ["abortion meaning types", 0, [22, 30]], ["abortion and its types pdf", 0, [22, 30]], ["abortion definition and types pdf", 0, [22, 30]], ["medical abortion definition and types", 0, [22, 30]], ["types of abortion australia", 0, [512, 390, 650]]], {"i": "abortion definition types", "q": "c7UM2rVckvQYbXJSM4pTPF-XNl8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion definition types", "abortion definition types management", "abortion and its types", "abortion and its types ppt", "abortion and its types slideshare", "abortion meaning types", "abortion and its types pdf", "abortion definition and types pdf", "medical abortion definition and types", "types of abortion australia"], "self_loops": [0], "tags": {"i": "abortion definition types", "q": "c7UM2rVckvQYbXJSM4pTPF-XNl8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic abortion means", "datetime": "2026-03-12 19:52:01.492510", "source": "google", "data": ["septic abortion means", [["septic abortion means", 0, [512]], ["septic abortion meaning in hindi", 0, [22, 30]], ["septic abortion meaning in english", 0, [22, 30]], ["septic abortion meaning in pregnancy", 0, [22, 30]], ["septic abortion definition in obg", 0, [22, 30]], ["septic abortion definition simple", 0, [22, 30]], ["septic abortion definition ppt", 0, [22, 30]], ["septic abortion definition acog", 0, [22, 30]], ["sepsis abortion meaning", 0, [22, 30]], ["septic abortion meaning in urdu", 0, [22, 455, 30]]], {"i": "septic abortion means", "q": "-rdnfbhXREqSWqKC5dwk7NTl7D0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["septic abortion means", "septic abortion meaning in hindi", "septic abortion meaning in english", "septic abortion meaning in pregnancy", "septic abortion definition in obg", "septic abortion definition simple", "septic abortion definition ppt", "septic abortion definition acog", "sepsis abortion meaning", "septic abortion meaning in urdu"], "self_loops": [0], "tags": {"i": "septic abortion means", "q": "-rdnfbhXREqSWqKC5dwk7NTl7D0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic abortion organisms", "datetime": "2026-03-12 19:52:02.991861", "source": "google", "data": ["septic abortion organisms", [["septic abortion organisms", 0, [512]], ["septic abortion causative organisms", 0, [22, 30]], ["types of septic abortion", 0, [512, 390, 650]], ["septic abortion antibiotics", 0, [512, 390, 650]], ["what is septic abortion", 0, [512, 390, 650]], ["septic abortion treatment", 0, [512, 546]], ["septic abortion complications", 0, [512, 546]], ["septic abortion symptoms", 0, [512, 546]]], {"i": "septic abortion organisms", "q": "MVEVHw4jarIjxdNvsr6rlq4CRfM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["septic abortion organisms", "septic abortion causative organisms", "types of septic abortion", "septic abortion antibiotics", "what is septic abortion", "septic abortion treatment", "septic abortion complications", "septic abortion symptoms"], "self_loops": [0], "tags": {"i": "septic abortion organisms", "q": "MVEVHw4jarIjxdNvsr6rlq4CRfM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is septic abortion", "datetime": "2026-03-12 19:52:04.437658", "source": "google", "data": ["what is septic abortion", [["what is septic abortion", 0, [512]], ["what is septic abortion mean", 0, [512]], ["what is septic abortion in hindi", 0, [22, 30]], ["what is septic abortion definition", 0, [22, 30]], ["what is septic abortion symptoms", 0, [22, 30]], ["what is septic abortion ppt", 0, [22, 30]], ["what is sepsis abortion", 0, [22, 30]], ["what is septic incomplete abortion", 0, [22, 30]], ["what is septic miscarriage", 0, [22, 30]], ["what is sepsis after abortion", 0, [22, 30]]], {"i": "what is septic abortion", "q": "R-vFJD0KGxIcLd3SGWzWcvuYRhs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is septic abortion", "what is septic abortion mean", "what is septic abortion in hindi", "what is septic abortion definition", "what is septic abortion symptoms", "what is septic abortion ppt", "what is sepsis abortion", "what is septic incomplete abortion", "what is septic miscarriage", "what is sepsis after abortion"], "self_loops": [0], "tags": {"i": "what is septic abortion", "q": "R-vFJD0KGxIcLd3SGWzWcvuYRhs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic abortion icd 10", "datetime": "2026-03-12 19:52:05.544165", "source": "google", "data": ["septic abortion icd 10", [["septic abortion icd 10", 0, [512]], ["sepsis abortion icd 10", 0, [22, 30]], ["septic miscarriage icd 10", 0, [22, 30]], ["septic incomplete abortion icd 10", 0, [22, 30]], ["septic induced abortion icd 10", 0, [22, 30]], ["septic missed abortion icd 10", 0, [22, 30]], ["septic spontaneous abortion icd 10", 0, [22, 30]], ["sepsis following abortion icd 10", 0, [22, 30]], ["septic incomplete miscarriage icd 10", 0, [22, 30]], ["history of septic abortion icd 10", 0, [22, 30]]], {"i": "septic abortion icd 10", "q": "U4hQK9q6fSV3M7IqdD_Q1ON_xj4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["septic abortion icd 10", "sepsis abortion icd 10", "septic miscarriage icd 10", "septic incomplete abortion icd 10", "septic induced abortion icd 10", "septic missed abortion icd 10", "septic spontaneous abortion icd 10", "sepsis following abortion icd 10", "septic incomplete miscarriage icd 10", "history of septic abortion icd 10"], "self_loops": [0], "tags": {"i": "septic abortion icd 10", "q": "U4hQK9q6fSV3M7IqdD_Q1ON_xj4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic abortion symptoms", "datetime": "2026-03-12 19:52:06.665290", "source": "google", "data": ["septic abortion symptoms", [["septic abortion symptoms", 0, [512]], ["sepsis abortion symptoms", 0, [22, 30]], ["septic miscarriage symptoms", 0, [22, 30]], ["septic miscarriage symptoms reddit", 0, [22, 30]], ["septic abortion signs", 0, [22, 30]], ["sepsis miscarriage symptoms", 0, [22, 30]], ["sepsis after abortion symptoms", 0, [22, 30]], ["septic abortion signs and symptoms", 0, [22, 30]], ["septic shock after abortion symptoms", 0, [22, 30]], ["signs of sepsis after abortion", 0, [512, 390, 650]]], {"i": "septic abortion symptoms", "q": "119q6vylZL82RXa2zKqB-RBczmc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["septic abortion symptoms", "sepsis abortion symptoms", "septic miscarriage symptoms", "septic miscarriage symptoms reddit", "septic abortion signs", "sepsis miscarriage symptoms", "sepsis after abortion symptoms", "septic abortion signs and symptoms", "septic shock after abortion symptoms", "signs of sepsis after abortion"], "self_loops": [0], "tags": {"i": "septic abortion symptoms", "q": "119q6vylZL82RXa2zKqB-RBczmc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic abortion wikem", "datetime": "2026-03-12 19:52:08.107454", "source": "google", "data": ["septic abortion wikem", [["septic abortion wikem", 0, [512, 546]], ["septic abortion ward history", 0, [751]], ["septic abortion ward", 0, [512, 546]], ["septic abortion ward chicago", 0, [751]], ["septic abortion unit", 0, [751]]], {"i": "septic abortion wikem", "q": "chMapLvylkynkCCNgm3o6jtIOjo", "t": {"bpc": false, "tlw": false}}], "suggests": ["septic abortion wikem", "septic abortion ward history", "septic abortion ward", "septic abortion ward chicago", "septic abortion unit"], "self_loops": [0], "tags": {"i": "septic abortion wikem", "q": "chMapLvylkynkCCNgm3o6jtIOjo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic abortion treatment", "datetime": "2026-03-12 19:52:09.350848", "source": "google", "data": ["septic abortion treatment", [["septic abortion treatment", 0, [512]], ["septic abortion treatment acog", 0, [512]], ["septic abortion treatment antibiotics", 0, [512]], ["septic abortion treatment guidelines", 0, [512]], ["septic abortion treatment uptodate", 0, [22, 30]], ["septic abortion treatment duration", 0, [22, 30]], ["septic abortion treatment cdc", 0, [22, 30]], ["septic miscarriage treatment", 0, [22, 30]], ["septic abortion management", 0, [22, 30]], ["septic abortion management pdf", 0, [22, 30]]], {"i": "septic abortion treatment", "q": "OsXOgrXbws9y9Y4rTu-_mITXph4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["septic abortion treatment", "septic abortion treatment acog", "septic abortion treatment antibiotics", "septic abortion treatment guidelines", "septic abortion treatment uptodate", "septic abortion treatment duration", "septic abortion treatment cdc", "septic miscarriage treatment", "septic abortion management", "septic abortion management pdf"], "self_loops": [0], "tags": {"i": "septic abortion treatment", "q": "OsXOgrXbws9y9Y4rTu-_mITXph4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic abortion unit", "datetime": "2026-03-12 19:52:10.648795", "source": "google", "data": ["septic abortion unit", [["septic abortion united states", 33, [160], {"a": "septic abortion ", "b": "united states"}], ["septic abortion units", 33, [160], {"a": "septic abortion ", "b": "units"}], ["septic abortion united nations", 33, [160], {"a": "septic abortion ", "b": "united nations"}], ["septic abortion unit california", 33, [160], {"a": "septic abortion ", "b": "unit california"}], ["septic abortion unity", 33, [160], {"a": "septic abortion ", "b": "unity"}]], {"i": "septic abortion unit", "q": "MRfRPNvBImdlMeD_5a_XzLs06TY", "t": {"bpc": false, "tlw": false}}], "suggests": ["septic abortion united states", "septic abortion units", "septic abortion united nations", "septic abortion unit california", "septic abortion unity"], "self_loops": [], "tags": {"i": "septic abortion unit", "q": "MRfRPNvBImdlMeD_5a_XzLs06TY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is the definition of spontaneous abortion", "datetime": "2026-03-12 19:52:11.612042", "source": "google", "data": ["what is the definition of spontaneous abortion", [["what is the definition of spontaneous abortion", 0, [512]], ["what is the definition of spontaneous abortion quizlet", 0, [22, 30]], ["what is the meaning of spontaneous abortion", 0, [22, 30]], ["what is the definition of induced abortion", 0, [22, 30]], ["which statement is included in the definition of spontaneous abortion", 0, [22, 30]], ["which statement is included in the definition of spontaneous abortion quizlet", 0, [22, 30]], ["what does a spontaneous abortion mean", 0, [512, 390, 650]], ["what is abortion spontaneous", 0, [512, 390, 650]], ["what is the difference between a spontaneous abortion and an induced abortion", 0, [512, 546]], ["what is the difference between spontaneous and elective abortion", 0, [751]]], {"i": "what is the definition of spontaneous abortion", "q": "cNSD5DGdWe4XE7DgHbGRsloCjxw", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is the definition of spontaneous abortion", "what is the definition of spontaneous abortion quizlet", "what is the meaning of spontaneous abortion", "what is the definition of induced abortion", "which statement is included in the definition of spontaneous abortion", "which statement is included in the definition of spontaneous abortion quizlet", "what does a spontaneous abortion mean", "what is abortion spontaneous", "what is the difference between a spontaneous abortion and an induced abortion", "what is the difference between spontaneous and elective abortion"], "self_loops": [0], "tags": {"i": "what is the definition of spontaneous abortion", "q": "cNSD5DGdWe4XE7DgHbGRsloCjxw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does a spontaneous abortion mean", "datetime": "2026-03-12 19:52:12.850818", "source": "google", "data": ["what does a spontaneous abortion mean", [["what does a spontaneous abortion mean", 0, [512]], ["what does a spontaneous miscarriage mean", 0, [22, 30]], ["what does incomplete spontaneous abortion mean", 0, [22, 30]], ["what does induced abortion mean", 0, [22, 30]], ["what does induced miscarriage mean", 0, [22, 30]], ["what does a miscarriage mean", 0, [22, 30]], ["what does a miscarriage mean spiritually", 0, [22, 30]], ["what does a miscarriage mean in the bible", 0, [22, 30]], ["what does a miscarriage mean in islam", 0, [22, 30]], ["what does a miscarriage mean for future pregnancies", 0, [22, 30]]], {"i": "what does a spontaneous abortion mean", "q": "oedhCUcKBvQd8tI2_VJHEA5wRYk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what does a spontaneous abortion mean", "what does a spontaneous miscarriage mean", "what does incomplete spontaneous abortion mean", "what does induced abortion mean", "what does induced miscarriage mean", "what does a miscarriage mean", "what does a miscarriage mean spiritually", "what does a miscarriage mean in the bible", "what does a miscarriage mean in islam", "what does a miscarriage mean for future pregnancies"], "self_loops": [0], "tags": {"i": "what does a spontaneous abortion mean", "q": "oedhCUcKBvQd8tI2_VJHEA5wRYk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion synonyms", "datetime": "2026-03-12 19:52:13.808123", "source": "google", "data": ["spontaneous abortion synonyms", [["spontaneous abortion synonyms", 0, [22, 30]], ["what is a spontaneous abortion mean", 0, [512, 390, 650]], ["what does a spontaneous abortion mean", 0, [512, 390, 650]], ["another word for spontaneous abortion is", 0, [512, 546]], ["spontaneous abortion acronym", 0, [751]], ["spontaneous abortion terminology", 0, [751]], ["spontaneous abortion def", 0, [751]]], {"i": "spontaneous abortion synonyms", "q": "TV2PyXMaWz0PELBOsDqZySgIWK4", "t": {"bpc": false, "tlw": false}}], "suggests": ["spontaneous abortion synonyms", "what is a spontaneous abortion mean", "what does a spontaneous abortion mean", "another word for spontaneous abortion is", "spontaneous abortion acronym", "spontaneous abortion terminology", "spontaneous abortion def"], "self_loops": [0], "tags": {"i": "spontaneous abortion synonyms", "q": "TV2PyXMaWz0PELBOsDqZySgIWK4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is the meaning of complete abortion", "datetime": "2026-03-12 19:52:15.027295", "source": "google", "data": ["what is the meaning of complete abortion", [["what is the meaning of complete abortion", 0, [512]], ["what is the meaning of spontaneous abortion", 0, [22, 30]], ["what is the meaning of complete miscarriage", 0, [22, 30]], ["what is the definition of spontaneous abortion", 0, [22, 30]], ["what is the definition of spontaneous abortion quizlet", 0, [22, 30]], ["what is the meaning of abortion", 0, [22, 30]], ["what is the meaning of abortion in hindi", 0, [22, 30]], ["what is the meaning of abortion in pregnancy", 0, [22, 30]], ["what is the meaning of abortion in english", 0, [22, 30]], ["what is the meaning of abortion pill", 0, [22, 30]]], {"i": "what is the meaning of complete abortion", "q": "3olRpE9FnozxiM-p_5qkvwhbyuo", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is the meaning of complete abortion", "what is the meaning of spontaneous abortion", "what is the meaning of complete miscarriage", "what is the definition of spontaneous abortion", "what is the definition of spontaneous abortion quizlet", "what is the meaning of abortion", "what is the meaning of abortion in hindi", "what is the meaning of abortion in pregnancy", "what is the meaning of abortion in english", "what is the meaning of abortion pill"], "self_loops": [0], "tags": {"i": "what is the meaning of complete abortion", "q": "3olRpE9FnozxiM-p_5qkvwhbyuo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "complete abortion treatment", "datetime": "2026-03-12 19:52:16.109734", "source": "google", "data": ["complete abortion treatment", [["complete abortion treatment", 0, [512]], ["spontaneous abortion treatment", 0, [22, 30]], ["complete miscarriage treatment", 0, [22, 30]], ["spontaneous abortion treatment drugs", 0, [22, 30]], ["complete abortion management", 0, [22, 30]], ["complete abortion definition", 0, [512, 390, 650]], ["complete abortion sign and symptoms", 0, [512, 390, 650]], ["complete abortion laws", 0, [751]], ["complete. abortion", 0, [751]]], {"i": "complete abortion treatment", "q": "JjLv_xwmiRCFYXht1wby5apdH28", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["complete abortion treatment", "spontaneous abortion treatment", "complete miscarriage treatment", "spontaneous abortion treatment drugs", "complete abortion management", "complete abortion definition", "complete abortion sign and symptoms", "complete abortion laws", "complete. abortion"], "self_loops": [0], "tags": {"i": "complete abortion treatment", "q": "JjLv_xwmiRCFYXht1wby5apdH28", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "complete abortion vs missed abortion", "datetime": "2026-03-12 19:52:17.480977", "source": "google", "data": ["complete abortion vs missed abortion", [["complete abortion vs missed abortion", 0, [512]], ["complete abortion vs incomplete abortion", 0, [22, 30]], ["complete abortion vs incomplete abortion symptoms", 0, [22, 30]], ["complete abortion vs incomplete abortion ultrasound", 0, [22, 30]], ["complete abortion and incomplete abortion difference between", 0, [22, 30]], ["complete abortion and incomplete abortion", 0, [22, 30]], ["complete abortion and incomplete abortion difference between ppt", 0, [22, 30]], ["complete miscarriage vs missed miscarriage", 0, [22, 30]], ["missed abortion vs spontaneous abortion", 0, [22, 30]], ["missed vs complete abortion", 0, [512, 390, 650]]], {"i": "complete abortion vs missed abortion", "q": "DT1o0LspJItLwjl1hn7zC-OMgJ8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["complete abortion vs missed abortion", "complete abortion vs incomplete abortion", "complete abortion vs incomplete abortion symptoms", "complete abortion vs incomplete abortion ultrasound", "complete abortion and incomplete abortion difference between", "complete abortion and incomplete abortion", "complete abortion and incomplete abortion difference between ppt", "complete miscarriage vs missed miscarriage", "missed abortion vs spontaneous abortion", "missed vs complete abortion"], "self_loops": [0], "tags": {"i": "complete abortion vs missed abortion", "q": "DT1o0LspJItLwjl1hn7zC-OMgJ8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion definition", "datetime": "2026-03-12 19:52:18.540483", "source": "google", "data": ["threatened abortion definition", [["threatened abortion definition", 0, [512]], ["threatened abortion definition in obg", 0, [512]], ["threatened abortion definition in hindi", 0, [512]], ["threatened abortion definition in malayalam", 0, [512]], ["threatened abortion definition according to who", 0, [512]], ["threatened abortion definition ppt", 0, [22, 30]], ["threatened abortion definition in marathi", 0, [22, 30]], ["threatened abortion definition in malayalam wikipedia", 0, [22, 30]], ["threatened abortion definition acog", 0, [22, 30]], ["threatened abortion definition dc dutta", 0, [22, 30]]], {"i": "threatened abortion definition", "q": "YxYz3-X0yEjp-NSjaYWuqH53bls", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["threatened abortion definition", "threatened abortion definition in obg", "threatened abortion definition in hindi", "threatened abortion definition in malayalam", "threatened abortion definition according to who", "threatened abortion definition ppt", "threatened abortion definition in marathi", "threatened abortion definition in malayalam wikipedia", "threatened abortion definition acog", "threatened abortion definition dc dutta"], "self_loops": [0], "tags": {"i": "threatened abortion definition", "q": "YxYz3-X0yEjp-NSjaYWuqH53bls", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion medical term", "datetime": "2026-03-12 19:52:19.686490", "source": "google", "data": ["threatened abortion medical term", [["threatened abortion medical term", 0, [512]], ["threatened miscarriage medical term", 0, [22, 30]], ["inevitable abortion medical term", 0, [22, 30]], ["threatened abortion medical definition", 0, [22, 30]], ["inevitable abortion medical definition", 0, [22, 30]], ["what do you mean by threatened abortion", 0, [512, 390, 650]], ["what is threatened abortion", 0, [512, 390, 650]], ["what is threatened abortion in pregnancy", 0, [512, 390, 650]], ["threatened abortion definition", 0, [512, 546]], ["threatened abortion mdm", 0, [546, 649]]], {"i": "threatened abortion medical term", "q": "NE1cfwVTlHjEHpBCNrYxUdfhaGE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["threatened abortion medical term", "threatened miscarriage medical term", "inevitable abortion medical term", "threatened abortion medical definition", "inevitable abortion medical definition", "what do you mean by threatened abortion", "what is threatened abortion", "what is threatened abortion in pregnancy", "threatened abortion definition", "threatened abortion mdm"], "self_loops": [0], "tags": {"i": "threatened abortion medical term", "q": "NE1cfwVTlHjEHpBCNrYxUdfhaGE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion vs spontaneous abortion", "datetime": "2026-03-12 19:52:20.681619", "source": "google", "data": ["threatened abortion vs spontaneous abortion", [["threatened abortion vs spontaneous abortion", 0, [512]], ["inevitable abortion vs spontaneous abortion", 0, [22, 30]], ["threatened abortion vs induced abortion", 0, [22, 30]], ["threatened abortion and spontaneous abortion", 0, [22, 30]], ["threatened abortion and induced abortion", 0, [22, 30]], ["threatened miscarriage vs spontaneous miscarriage", 0, [22, 30]], ["threatened abortion vs spontaneous", 0, [512, 390, 650]], ["difference between miscarriage and threatened abortion", 0, [512, 390, 650]], ["threatened abortion vs missed abortion", 0, [512, 390, 650]], ["threatened spontaneous abortion definition", 0, [546, 649]]], {"i": "threatened abortion vs spontaneous abortion", "q": "4ndDm6Oz3UmLYJqniS_ZusG3m50", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["threatened abortion vs spontaneous abortion", "inevitable abortion vs spontaneous abortion", "threatened abortion vs induced abortion", "threatened abortion and spontaneous abortion", "threatened abortion and induced abortion", "threatened miscarriage vs spontaneous miscarriage", "threatened abortion vs spontaneous", "difference between miscarriage and threatened abortion", "threatened abortion vs missed abortion", "threatened spontaneous abortion definition"], "self_loops": [0], "tags": {"i": "threatened abortion vs spontaneous abortion", "q": "4ndDm6Oz3UmLYJqniS_ZusG3m50", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion vs inevitable abortion", "datetime": "2026-03-12 19:52:21.980612", "source": "google", "data": ["threatened abortion vs inevitable abortion", [["threatened abortion vs inevitable abortion", 0, [512]], ["threatened abortion and inevitable abortion difference", 0, [22, 30]], ["threatened abortion vs missed abortion", 0, [22, 30]], ["threatened abortion vs incomplete abortion", 0, [22, 30]], ["threatened abortion and inevitable abortion", 0, [22, 30]], ["threatened abortion vs imminent abortion", 0, [22, 30]], ["threatened abortion and inevitable abortion difference ppt", 0, [22, 30]], ["threatened abortion and missed abortion", 0, [22, 30]], ["threatened abortion and incomplete abortion", 0, [22, 30]], ["threatened abortion and imminent abortion", 0, [22, 30]]], {"i": "threatened abortion vs inevitable abortion", "q": "l_2WaoYo815lUQtr_jWkkOpiyDQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["threatened abortion vs inevitable abortion", "threatened abortion and inevitable abortion difference", "threatened abortion vs missed abortion", "threatened abortion vs incomplete abortion", "threatened abortion and inevitable abortion", "threatened abortion vs imminent abortion", "threatened abortion and inevitable abortion difference ppt", "threatened abortion and missed abortion", "threatened abortion and incomplete abortion", "threatened abortion and imminent abortion"], "self_loops": [0], "tags": {"i": "threatened abortion vs inevitable abortion", "q": "l_2WaoYo815lUQtr_jWkkOpiyDQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable abortion definition", "datetime": "2026-03-12 19:52:22.773110", "source": "google", "data": ["inevitable abortion definition", [["inevitable abortion definition", 0, [512]], ["inevitable abortion definition in hindi", 0, [512]], ["inevitable abortion definition in obg", 0, [512]], ["inevitable abortion definition acog", 0, [22, 30]], ["inevitable abortion definition easy", 0, [22, 30]], ["inevitable abortion definition according to who", 0, [22, 30]], ["threatened abortion definition", 0, [22, 30]], ["missed abortion definition", 0, [22, 30]], ["incomplete abortion definition", 0, [22, 30]], ["inevitable miscarriage definition", 0, [22, 30]]], {"i": "inevitable abortion definition", "q": "3aCplnp6kJ1D-sJRfckSX7g8pI8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["inevitable abortion definition", "inevitable abortion definition in hindi", "inevitable abortion definition in obg", "inevitable abortion definition acog", "inevitable abortion definition easy", "inevitable abortion definition according to who", "threatened abortion definition", "missed abortion definition", "incomplete abortion definition", "inevitable miscarriage definition"], "self_loops": [0], "tags": {"i": "inevitable abortion definition", "q": "3aCplnp6kJ1D-sJRfckSX7g8pI8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable abortion causes", "datetime": "2026-03-12 19:52:23.947714", "source": "google", "data": ["inevitable abortion causes", [["inevitable abortion causes", 0, [512]], ["missed abortion causes", 0, [22, 30]], ["threatened abortion causes", 0, [22, 30]], ["incomplete abortion causes", 0, [22, 30]], ["inevitable miscarriage causes", 0, [22, 30]], ["complete abortion causes", 0, [22, 30]], ["missed abortion causes in hindi", 0, [22, 30]], ["threatened abortion causes and treatment", 0, [22, 30]], ["incomplete abortion causes ppt", 0, [22, 30]], ["threatened abortion causes in hindi", 0, [22, 30]]], {"i": "inevitable abortion causes", "q": "I8ADwDsQNtv68Wz2K9nfsqsPGLg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["inevitable abortion causes", "missed abortion causes", "threatened abortion causes", "incomplete abortion causes", "inevitable miscarriage causes", "complete abortion causes", "missed abortion causes in hindi", "threatened abortion causes and treatment", "incomplete abortion causes ppt", "threatened abortion causes in hindi"], "self_loops": [0], "tags": {"i": "inevitable abortion causes", "q": "I8ADwDsQNtv68Wz2K9nfsqsPGLg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable abortion treatment", "datetime": "2026-03-12 19:52:24.860114", "source": "google", "data": ["inevitable abortion treatment", [["inevitable abortion treatment", 0, [512]], ["inevitable abortion treatment guidelines", 0, [22, 30]], ["incomplete abortion treatment", 0, [22, 30]], ["missed abortion treatment", 0, [22, 30]], ["threatened abortion treatment", 0, [22, 30]], ["missed abortion treatment in hindi", 0, [22, 30]], ["threatened abortion treatment guidelines", 0, [22, 30]], ["complete abortion treatment", 0, [22, 30]], ["threatened abortion treatment guidelines pdf", 0, [22, 30]], ["incomplete abortion treatment in hindi", 0, [22, 30]]], {"i": "inevitable abortion treatment", "q": "K3bULLQLKuTUKwp0AOoZX2J1aFE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["inevitable abortion treatment", "inevitable abortion treatment guidelines", "incomplete abortion treatment", "missed abortion treatment", "threatened abortion treatment", "missed abortion treatment in hindi", "threatened abortion treatment guidelines", "complete abortion treatment", "threatened abortion treatment guidelines pdf", "incomplete abortion treatment in hindi"], "self_loops": [0], "tags": {"i": "inevitable abortion treatment", "q": "K3bULLQLKuTUKwp0AOoZX2J1aFE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable.abortion", "datetime": "2026-03-12 19:52:25.718896", "source": "google", "data": ["inevitable.abortion", [["inevitable.abortion", 0, [512]], ["inevitable abortion definition", 0, [30]], ["inevitable abortion icd 10", 0, [30]], ["inevitable abortion treatment", 0, [30]], ["inevitable abortion radiology", 0, [30]], ["inevitable abortion ultrasound", 0, [30]], ["inevitable abortion vs threatened abortion", 0, [30]], ["inevitable abortion in hindi", 0, [30]], ["inevitable abortion meaning in hindi", 0, [30]], ["inevitable abortion management", 0, [30]]], {"i": "inevitable.abortion", "q": "8C7uT7jIpP1MUiB4FgbjXYd0BeY", "t": {"bpc": false, "tlw": false}}], "suggests": ["inevitable.abortion", "inevitable abortion definition", "inevitable abortion icd 10", "inevitable abortion treatment", "inevitable abortion radiology", "inevitable abortion ultrasound", "inevitable abortion vs threatened abortion", "inevitable abortion in hindi", "inevitable abortion meaning in hindi", "inevitable abortion management"], "self_loops": [0], "tags": {"i": "inevitable.abortion", "q": "8C7uT7jIpP1MUiB4FgbjXYd0BeY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable sab", "datetime": "2026-03-12 19:52:27.010507", "source": "google", "data": ["inevitable sab", [["inevitable sab", 0, [512]], ["inevitable example", 0, [512, 390, 650]], ["is sinning inevitable", 0, [512, 390, 650]], ["inevitable samo", 0, [546, 649]], ["inevitable sy", 0, [546, 649]], ["inevitable spanish", 0, [512, 546]], ["inevitable sub", 0, [751]], ["inevitable spanish meaning", 0, [512, 546]]], {"i": "inevitable sab", "q": "hy30Gqi6jtSCyjCKdQMCBp0j5eM", "t": {"bpc": false, "tlw": false}}], "suggests": ["inevitable sab", "inevitable example", "is sinning inevitable", "inevitable samo", "inevitable sy", "inevitable spanish", "inevitable sub", "inevitable spanish meaning"], "self_loops": [0], "tags": {"i": "inevitable sab", "q": "hy30Gqi6jtSCyjCKdQMCBp0j5eM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable abortion vs complete abortion", "datetime": "2026-03-12 19:52:27.836086", "source": "google", "data": ["inevitable abortion vs complete abortion", [["inevitable abortion vs complete abortion", 0, [512]], ["missed abortion vs complete abortion", 0, [22, 30]], ["incomplete abortion vs complete abortion", 0, [22, 30]], ["missed abortion vs spontaneous abortion", 0, [22, 30]], ["inevitable abortion vs missed abortion", 0, [512, 390, 650]], ["inevitable abortion vs threatened abortion", 0, [512, 390, 650]], ["missed abortion vs abortion", 0, [512, 390, 650]], ["threatened vs complete abortion", 0, [512, 390, 650]], ["inevitable abortion vs incomplete abortion", 0, [512, 546]], ["inevitable vs incomplete abortion", 0, [512, 546]]], {"i": "inevitable abortion vs complete abortion", "q": "xpxCujsF1Ta_hytYbCxbb1JLDBY", "t": {"bpc": false, "tlw": false}}], "suggests": ["inevitable abortion vs complete abortion", "missed abortion vs complete abortion", "incomplete abortion vs complete abortion", "missed abortion vs spontaneous abortion", "inevitable abortion vs missed abortion", "inevitable abortion vs threatened abortion", "missed abortion vs abortion", "threatened vs complete abortion", "inevitable abortion vs incomplete abortion", "inevitable vs incomplete abortion"], "self_loops": [0], "tags": {"i": "inevitable abortion vs complete abortion", "q": "xpxCujsF1Ta_hytYbCxbb1JLDBY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion simple definition", "datetime": "2026-03-12 19:52:28.660676", "source": "google", "data": ["spontaneous abortion simple definition", [["spontaneous abortion simple definition", 0, [22, 30]], ["induced abortion simple definition", 0, [22, 30]], ["what is a spontaneous abortion mean", 0, [512, 390, 650]], ["what is the definition of spontaneous abortion", 0, [512, 390, 650]], ["what does a spontaneous abortion mean", 0, [512, 390, 650]], ["spontaneous abortion synonyms", 0, [546, 649]], ["spontaneous abortion def", 0, [751]], ["spontaneous abortion medical definition", 0, [512, 546]], ["spontaneous abortion acronym", 0, [751]]], {"i": "spontaneous abortion simple definition", "q": "UoQKZRWo8n9HpN5RxTumbUdSGuM", "t": {"bpc": false, "tlw": false}}], "suggests": ["spontaneous abortion simple definition", "induced abortion simple definition", "what is a spontaneous abortion mean", "what is the definition of spontaneous abortion", "what does a spontaneous abortion mean", "spontaneous abortion synonyms", "spontaneous abortion def", "spontaneous abortion medical definition", "spontaneous abortion acronym"], "self_loops": [0], "tags": {"i": "spontaneous abortion simple definition", "q": "UoQKZRWo8n9HpN5RxTumbUdSGuM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion definition", "datetime": "2026-03-12 19:52:29.469128", "source": "google", "data": ["missed abortion definition", [["missed abortion definition", 0, [512]], ["missed abortion definition acog", 0, [512]], ["missed abortion definition in obg", 0, [512]], ["missed abortion definition in hindi", 0, [512]], ["missed abortion definition weeks", 0, [512]], ["missed abortion definition ultrasound", 0, [22, 30]], ["missed abortion definition radiology", 0, [22, 30]], ["missed abortion definition ppt", 0, [22, 30]], ["missed abortion definition pregnancy", 0, [22, 30]], ["missed abortion definition medical", 0, [22, 30]]], {"i": "missed abortion definition", "q": "rATDKaj13_A08oDZVDBkkf8_pS8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["missed abortion definition", "missed abortion definition acog", "missed abortion definition in obg", "missed abortion definition in hindi", "missed abortion definition weeks", "missed abortion definition ultrasound", "missed abortion definition radiology", "missed abortion definition ppt", "missed abortion definition pregnancy", "missed abortion definition medical"], "self_loops": [0], "tags": {"i": "missed abortion definition", "q": "rATDKaj13_A08oDZVDBkkf8_pS8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "explain missed abortion", "datetime": "2026-03-12 19:52:30.600996", "source": "google", "data": ["explain missed abortion", [["explain missed abortion", 0, [512]], ["what is missed abortion", 0, [22, 30]], ["define missed abortion", 0, [22, 30]], ["what is missed abortion in pregnancy", 0, [22, 30]], ["what is missed abortion in ultrasound report", 0, [22, 30]], ["what is missed abortion at 6 weeks", 0, [22, 30]], ["what is missed abortion treatment", 0, [22, 30]], ["explain spontaneous abortion", 0, [22, 30]], ["what is missed abortion in hindi", 0, [22, 30]], ["explain incomplete abortion", 0, [22, 30]]], {"i": "explain missed abortion", "q": "_3w-bnozkURoKUImrI5aT7xjprk", "t": {"bpc": false, "tlw": false}}], "suggests": ["explain missed abortion", "what is missed abortion", "define missed abortion", "what is missed abortion in pregnancy", "what is missed abortion in ultrasound report", "what is missed abortion at 6 weeks", "what is missed abortion treatment", "explain spontaneous abortion", "what is missed abortion in hindi", "explain incomplete abortion"], "self_loops": [0], "tags": {"i": "explain missed abortion", "q": "_3w-bnozkURoKUImrI5aT7xjprk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is mean by missed abortion", "datetime": "2026-03-12 19:52:32.100282", "source": "google", "data": ["what is mean by missed abortion", [["what is mean by missed abortion", 0, [512]], ["what is mean by spontaneous abortion", 0, [22, 30]], ["what is mean by incomplete abortion", 0, [22, 30]], ["what is the meaning of missed abortion in hindi", 0, [22, 30]], ["what do you mean by spontaneous abortion", 0, [22, 30]], ["explain missed abortion", 0, [512, 390, 650]], ["what does missed abortion mean in pregnancy", 0, [512, 390, 650]], ["what does it mean by missed abortion", 0, [512, 390, 650]], ["what is meant by missed abortion", 0, [512, 546]], ["what is missed ab", 0, [512, 546]]], {"i": "what is mean by missed abortion", "q": "UhOhJbkbAvCDut7U-pEzLcZEIns", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is mean by missed abortion", "what is mean by spontaneous abortion", "what is mean by incomplete abortion", "what is the meaning of missed abortion in hindi", "what do you mean by spontaneous abortion", "explain missed abortion", "what does missed abortion mean in pregnancy", "what does it mean by missed abortion", "what is meant by missed abortion", "what is missed ab"], "self_loops": [0], "tags": {"i": "what is mean by missed abortion", "q": "UhOhJbkbAvCDut7U-pEzLcZEIns", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does it mean by missed abortion", "datetime": "2026-03-12 19:52:33.261713", "source": "google", "data": ["what does it mean by missed abortion", [["what does it mean by missed abortion", 0, [512]], ["what does it mean by incomplete abortion", 0, [22, 30]], ["what does it mean by missed miscarriage", 0, [22, 30]], ["what does it mean by incomplete miscarriage", 0, [22, 30]], ["what does it mean spontaneous abortion", 0, [22, 30]], ["what does missed abortion mean in pregnancy", 0, [512, 390, 650]], ["is missed abortion dangerous", 0, [512, 390, 650]], ["what does it mean by missed period", 0, [512, 546]], ["what is meant by missed abortion", 0, [512, 546]]], {"i": "what does it mean by missed abortion", "q": "4GiqoQMG4KPHGPtjlLnSaf4a71Y", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does it mean by missed abortion", "what does it mean by incomplete abortion", "what does it mean by missed miscarriage", "what does it mean by incomplete miscarriage", "what does it mean spontaneous abortion", "what does missed abortion mean in pregnancy", "is missed abortion dangerous", "what does it mean by missed period", "what is meant by missed abortion"], "self_loops": [0], "tags": {"i": "what does it mean by missed abortion", "q": "4GiqoQMG4KPHGPtjlLnSaf4a71Y", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion medical definition", "datetime": "2026-03-12 19:52:34.456656", "source": "google", "data": ["missed abortion medical definition", [["missed abortion medical definition", 0, [512]], ["spontaneous abortion medical definition", 0, [22, 30]], ["missed miscarriage medical definition", 0, [22, 30]], ["incomplete abortion medical definition", 0, [22, 30]], ["missed abortion medical term", 0, [22, 30]], ["missed abortion medical abbreviation", 0, [22, 30]], ["missed ab medical abbreviation", 0, [22, 30]], ["missed ab medical term", 0, [22, 30]], ["missed ab medical meaning", 0, [22, 30]], ["spontaneous abortion medical term", 0, [22, 30]]], {"i": "missed abortion medical definition", "q": "xflrbxvRmgbrcsaUTDCmtr4Vx_M", "t": {"bpc": false, "tlw": false}}], "suggests": ["missed abortion medical definition", "spontaneous abortion medical definition", "missed miscarriage medical definition", "incomplete abortion medical definition", "missed abortion medical term", "missed abortion medical abbreviation", "missed ab medical abbreviation", "missed ab medical term", "missed ab medical meaning", "spontaneous abortion medical term"], "self_loops": [0], "tags": {"i": "missed abortion medical definition", "q": "xflrbxvRmgbrcsaUTDCmtr4Vx_M", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion def", "datetime": "2026-03-12 19:52:35.350063", "source": "google", "data": ["missed abortion def", [["missed abortion definition", 0, [512]], ["missed abortion definition acog", 0, [512]], ["missed abortion definition in obg", 0, [512]], ["missed abortion definition in hindi", 0, [512]], ["missed abortion definition weeks", 0, [512]], ["missed abortion definition ultrasound", 0, [22, 30]], ["missed abortion definition radiology", 0, [22, 30]], ["missed abortion definition ppt", 0, [22, 30]], ["missed abortion definition pregnancy", 0, [22, 30]], ["missed abortion definition medical", 0, [22, 30]]], {"i": "missed abortion def", "q": "UwI7qJexCmxmcQxDz7KM3Q_nwy4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["missed abortion definition", "missed abortion definition acog", "missed abortion definition in obg", "missed abortion definition in hindi", "missed abortion definition weeks", "missed abortion definition ultrasound", "missed abortion definition radiology", "missed abortion definition ppt", "missed abortion definition pregnancy", "missed abortion definition medical"], "self_loops": [], "tags": {"i": "missed abortion def", "q": "UwI7qJexCmxmcQxDz7KM3Q_nwy4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion signs", "datetime": "2026-03-12 19:52:36.250985", "source": "google", "data": ["missed abortion signs", [["missed abortion signs and symptoms", 0, [512]], ["missed abortion signs", 0, [512]], ["missed miscarriage signs", 0, [22, 30]], ["incomplete abortion signs", 0, [22, 30]], ["missed miscarriage signs reddit", 0, [22, 30]], ["missed miscarriage signs at 8 weeks", 0, [22, 30]], ["missed miscarriage signs of infection", 0, [22, 30]], ["spontaneous abortion signs", 0, [22, 30]], ["missed miscarriage signs mumsnet", 0, [22, 30]], ["missed miscarriage signs 13 weeks", 0, [22, 30]]], {"i": "missed abortion signs", "q": "Gyz2pAa-dGYnUQJaSKZVAeRepg4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["missed abortion signs and symptoms", "missed abortion signs", "missed miscarriage signs", "incomplete abortion signs", "missed miscarriage signs reddit", "missed miscarriage signs at 8 weeks", "missed miscarriage signs of infection", "spontaneous abortion signs", "missed miscarriage signs mumsnet", "missed miscarriage signs 13 weeks"], "self_loops": [1], "tags": {"i": "missed abortion signs", "q": "Gyz2pAa-dGYnUQJaSKZVAeRepg4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion medical term", "datetime": "2026-03-12 19:52:37.366808", "source": "google", "data": ["missed abortion medical term", [["missed abortion medical term", 0, [512]], ["missed ab medical term", 0, [22, 30]], ["spontaneous abortion medical term", 0, [22, 30]], ["missed miscarriage medical term", 0, [22, 30]], ["incomplete abortion medical term", 0, [22, 30]], ["missed abortion medical definition", 0, [22, 30]], ["incomplete miscarriage medical term", 0, [22, 30]], ["spontaneous abortion medical definition", 0, [22, 30]], ["incomplete abortion medical definition", 0, [22, 30]], ["missed abortion definition", 0, [512, 390, 650]]], {"i": "missed abortion medical term", "q": "fL9-iVZqQVgGD1wX8vQfsXmZ6_Q", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["missed abortion medical term", "missed ab medical term", "spontaneous abortion medical term", "missed miscarriage medical term", "incomplete abortion medical term", "missed abortion medical definition", "incomplete miscarriage medical term", "spontaneous abortion medical definition", "incomplete abortion medical definition", "missed abortion definition"], "self_loops": [0], "tags": {"i": "missed abortion medical term", "q": "fL9-iVZqQVgGD1wX8vQfsXmZ6_Q", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is induced abortion class 12", "datetime": "2026-03-12 19:52:38.319957", "source": "google", "data": ["what is induced abortion class 12", [["what is induced abortion class 12", 0, [512]], ["induced abortion meaning in english", 0, [512, 390, 650]], ["what is induced abortion meaning", 0, [546, 649]], ["what is induced abortion definition", 0, [751]], ["what is induced termination of pregnancy", 0, [512, 546]], ["what is a induced abortion", 0, [512, 546]]], {"i": "what is induced abortion class 12", "q": "5zreqr8Eyb_CPlhx6L1D7ggFSDs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is induced abortion class 12", "induced abortion meaning in english", "what is induced abortion meaning", "what is induced abortion definition", "what is induced termination of pregnancy", "what is a induced abortion"], "self_loops": [0], "tags": {"i": "what is induced abortion class 12", "q": "5zreqr8Eyb_CPlhx6L1D7ggFSDs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is the difference between spontaneous and induced abortion", "datetime": "2026-03-12 19:52:39.325335", "source": "google", "data": ["what is the difference between spontaneous and induced abortion", [["what is the difference between spontaneous and induced abortion", 0, [512]], ["what is abortion write the difference between spontaneous and induced abortion", 0, [22, 30]], ["what is the difference between a spontaneous abortion and an induced abortion quizlet", 0, [22, 30]], ["what is abortion compare spontaneous and induced abortion", 0, [22, 30]]], {"i": "what is the difference between spontaneous and induced abortion", "q": "sMs1yxqq2iE7SlNpZidurVirrKU", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is the difference between spontaneous and induced abortion", "what is abortion write the difference between spontaneous and induced abortion", "what is the difference between a spontaneous abortion and an induced abortion quizlet", "what is abortion compare spontaneous and induced abortion"], "self_loops": [0], "tags": {"i": "what is the difference between spontaneous and induced abortion", "q": "sMs1yxqq2iE7SlNpZidurVirrKU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "induced abortion medical definition", "datetime": "2026-03-12 19:52:40.241229", "source": "google", "data": ["induced abortion medical definition", [["induced abortion medical definition", 0, [512]], ["spontaneous abortion medical definition", 0, [22, 30]], ["induced abortion medical term", 0, [22, 30]], ["induced abortion medical abbreviation", 0, [22, 30]], ["spontaneous abortion medical term", 0, [22, 30]], ["spontaneous abortion medical abbreviation", 0, [22, 30]], ["induced abortion meaning in english", 0, [512, 390, 650]], ["what is induced abortion class 12", 0, [512, 390, 650]], ["induced abortion meaning", 0, [512, 390, 650]], ["induced abortion definition dictionary", 0, [546, 649]]], {"i": "induced abortion medical definition", "q": "e4f0Zkjvb2WF3mzo9xS1o3Xfqfk", "t": {"bpc": false, "tlw": false}}], "suggests": ["induced abortion medical definition", "spontaneous abortion medical definition", "induced abortion medical term", "induced abortion medical abbreviation", "spontaneous abortion medical term", "spontaneous abortion medical abbreviation", "induced abortion meaning in english", "what is induced abortion class 12", "induced abortion meaning", "induced abortion definition dictionary"], "self_loops": [0], "tags": {"i": "induced abortion medical definition", "q": "e4f0Zkjvb2WF3mzo9xS1o3Xfqfk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "induced abortion definition", "datetime": "2026-03-12 19:52:41.455489", "source": "google", "data": ["induced abortion definition", [["induced abortion definition", 0, [512]], ["induced abortion definition in hindi", 0, [22, 30]], ["induced abortion definition according to who", 0, [22, 30]], ["induced abortion definition ppt", 0, [22, 30]], ["induced abortion definition in obg", 0, [22, 30]], ["spontaneous abortion definition", 0, [22, 30]], ["spontaneous abortion definition in hindi", 0, [22, 30]], ["spontaneous abortion definition according to who", 0, [22, 30]], ["spontaneous abortion definition acog", 0, [22, 30]], ["spontaneous abortion definition ppt", 0, [22, 30]]], {"i": "induced abortion definition", "q": "43CCCeuASiQ5OlA0V1uYaVFCcMM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["induced abortion definition", "induced abortion definition in hindi", "induced abortion definition according to who", "induced abortion definition ppt", "induced abortion definition in obg", "spontaneous abortion definition", "spontaneous abortion definition in hindi", "spontaneous abortion definition according to who", "spontaneous abortion definition acog", "spontaneous abortion definition ppt"], "self_loops": [0], "tags": {"i": "induced abortion definition", "q": "43CCCeuASiQ5OlA0V1uYaVFCcMM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "induced abortion definition dictionary", "datetime": "2026-03-12 19:52:42.843339", "source": "google", "data": ["induced abortion definition dictionary", [["induced abortion definition dictionary definition", 33, [160], {"a": "induced abortion definition ", "b": "dictionary definition"}], ["induced abortion definition dictionary.com", 33, [160], {"a": "induced abortion definition ", "b": "dictionary.com"}], ["induced abortion definition dictionary meaning", 33, [160], {"a": "induced abortion definition ", "b": "dictionary meaning"}], ["induced abortion definition dictionary.org", 33, [160], {"a": "induced abortion definition ", "b": "dictionary.org"}], ["induced abortion definition dictionary dictionary.com", 33, [160], {"a": "induced abortion definition ", "b": "dictionary dictionary.com"}]], {"i": "induced abortion definition dictionary", "q": "vj21VFZiye1FxhtNGPmUdwx-epw", "t": {"bpc": false, "tlw": false}}], "suggests": ["induced abortion definition dictionary definition", "induced abortion definition dictionary.com", "induced abortion definition dictionary meaning", "induced abortion definition dictionary.org", "induced abortion definition dictionary dictionary.com"], "self_loops": [], "tags": {"i": "induced abortion definition dictionary", "q": "vj21VFZiye1FxhtNGPmUdwx-epw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "induced abortions meaning", "datetime": "2026-03-12 19:52:44.343792", "source": "google", "data": ["induced abortions meaning", [["induced abortion meaning", 0, [22, 10, 30], {"za": "induced abortion meaning", "zb": "induced abortions meaning"}], ["induced abortion meaning in hindi", 0, [22, 30]], ["induced abortion meaning in bengali", 0, [22, 30]], ["induced abortion meaning in english", 0, [22, 30]], ["induced abortion meaning in bengali with example", 0, [22, 30]], ["induced abortion meaning in tagalog", 0, [22, 30]], ["induced abortion meaning in hindi and examples", 0, [22, 30]], ["induced abortion meaning in medical terms", 0, [22, 30]], ["induced abortion meaning in pregnancy", 0, [22, 30]], ["induced abortion meaning in hindi pdf", 0, [22, 30]]], {"i": "induced abortions meaning", "o": "induced abortion meaning", "p": "induced abortions meaning", "q": "nkLLiihX3-vz6hTDc9XJtQKEM7U", "t": {"bpc": false, "tlw": false}}], "suggests": ["induced abortion meaning", "induced abortion meaning in hindi", "induced abortion meaning in bengali", "induced abortion meaning in english", "induced abortion meaning in bengali with example", "induced abortion meaning in tagalog", "induced abortion meaning in hindi and examples", "induced abortion meaning in medical terms", "induced abortion meaning in pregnancy", "induced abortion meaning in hindi pdf"], "self_loops": [], "tags": {"i": "induced abortions meaning", "o": "induced abortion meaning", "p": "induced abortions meaning", "q": "nkLLiihX3-vz6hTDc9XJtQKEM7U", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "induced abortion def", "datetime": "2026-03-12 19:52:45.688222", "source": "google", "data": ["induced abortion def", [["induced abortion definition", 0, [512]], ["induced abortion definition in hindi", 0, [22, 30]], ["induced abortion definition according to who", 0, [22, 30]], ["induced abortion definition ppt", 0, [22, 30]], ["induced abortion definition in obg", 0, [22, 30]], ["induction abortion definition", 0, [22, 30]], ["spontaneous abortion definition", 0, [22, 30]], ["spontaneous abortion definition in hindi", 0, [22, 30]], ["spontaneous abortion definition according to who", 0, [22, 30]], ["spontaneous abortion definition acog", 0, [22, 30]]], {"i": "induced abortion def", "q": "0qPIE5ANi4Z5pd-wv4_39GVkvuo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["induced abortion definition", "induced abortion definition in hindi", "induced abortion definition according to who", "induced abortion definition ppt", "induced abortion definition in obg", "induction abortion definition", "spontaneous abortion definition", "spontaneous abortion definition in hindi", "spontaneous abortion definition according to who", "spontaneous abortion definition acog"], "self_loops": [], "tags": {"i": "induced abortion def", "q": "0qPIE5ANi4Z5pd-wv4_39GVkvuo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "recurrent abortion definition", "datetime": "2026-03-12 19:52:46.507759", "source": "google", "data": ["recurrent abortion definition", [["recurrent abortion definition", 0, [512]], ["recurrent abortion definition in hindi", 0, [22, 30]], ["recurrent abortion definition in obg", 0, [22, 30]], ["habitual abortion definition", 0, [22, 30]], ["recurrent pregnancy loss definition", 0, [22, 30]], ["recurrent pregnancy loss definition acog", 0, [22, 30]], ["habitual abortion definition in obg", 0, [22, 30]], ["habitual abortion definition in marathi", 0, [22, 30]], ["recurrent pregnancy loss definition asrm", 0, [22, 30]], ["recurrent pregnancy loss definition rcog", 0, [22, 30]]], {"i": "recurrent abortion definition", "q": "T2uL3YeF_UgwXMLkYe2GpVil2GM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["recurrent abortion definition", "recurrent abortion definition in hindi", "recurrent abortion definition in obg", "habitual abortion definition", "recurrent pregnancy loss definition", "recurrent pregnancy loss definition acog", "habitual abortion definition in obg", "habitual abortion definition in marathi", "recurrent pregnancy loss definition asrm", "recurrent pregnancy loss definition rcog"], "self_loops": [0], "tags": {"i": "recurrent abortion definition", "q": "T2uL3YeF_UgwXMLkYe2GpVil2GM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "causes of recurrent abortion", "datetime": "2026-03-12 19:52:47.894917", "source": "google", "data": ["causes of recurrent abortion", [["causes of recurrent abortion", 0, [512]], ["causes of recurrent abortion in first trimester", 0, [512]], ["causes of recurrent abortion in second trimester", 0, [512]], ["causes of recurrent abortion ppt", 0, [22, 30]], ["causes of habitual abortion", 0, [22, 30]], ["causes of frequent abortion", 0, [22, 30]], ["causes of persistent abortion", 0, [22, 30]], ["causes of recurrent missed abortion", 0, [22, 30]], ["causes of recurrent spontaneous abortion", 0, [22, 30]], ["genetic causes of recurrent abortion", 0, [22, 30]]], {"i": "causes of recurrent abortion", "q": "LIBxwlNjk6xukEGWmxB6ubn5IFA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["causes of recurrent abortion", "causes of recurrent abortion in first trimester", "causes of recurrent abortion in second trimester", "causes of recurrent abortion ppt", "causes of habitual abortion", "causes of frequent abortion", "causes of persistent abortion", "causes of recurrent missed abortion", "causes of recurrent spontaneous abortion", "genetic causes of recurrent abortion"], "self_loops": [0], "tags": {"i": "causes of recurrent abortion", "q": "LIBxwlNjk6xukEGWmxB6ubn5IFA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "recurrent abortion treatment", "datetime": "2026-03-12 19:52:49.372971", "source": "google", "data": ["recurrent abortion treatment", [["recurrent abortion treatment", 0, [512]], ["recurrent abortion treatment in pratap nagar", 0, [22, 30]], ["recurrent miscarriage treatment", 0, [22, 30]], ["habitual abortion treatment", 0, [22, 30]], ["recurrent pregnancy loss treatment", 0, [22, 30]], ["recurrent pregnancy loss treatment in london", 0, [22, 30]], ["recurrent pregnancy loss treatment in pune", 0, [22, 30]], ["recurrent miscarriage treatment nhs", 0, [22, 30]], ["repeated abortion treatment", 0, [22, 30]], ["recurrent miscarriage treatment reddit", 0, [22, 30]]], {"i": "recurrent abortion treatment", "q": "Rp5lCl9DQM8F4sStw0mtQymNodo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["recurrent abortion treatment", "recurrent abortion treatment in pratap nagar", "recurrent miscarriage treatment", "habitual abortion treatment", "recurrent pregnancy loss treatment", "recurrent pregnancy loss treatment in london", "recurrent pregnancy loss treatment in pune", "recurrent miscarriage treatment nhs", "repeated abortion treatment", "recurrent miscarriage treatment reddit"], "self_loops": [0], "tags": {"i": "recurrent abortion treatment", "q": "Rp5lCl9DQM8F4sStw0mtQymNodo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "most common cause of recurrent abortion", "datetime": "2026-03-12 19:52:50.541028", "source": "google", "data": ["most common cause of recurrent abortion", [["most common cause of recurrent abortion", 0, [512]], ["most common cause of recurrent abortion in first trimester", 0, [512]], ["most common cause of recurrent abortion in second trimester", 0, [512]], ["most common cause of habitual abortion", 0, [22, 30]], ["most common cause of recurrent miscarriage", 0, [22, 30]], ["most common cause of recurrent pregnancy loss", 0, [22, 30]], ["most common cause of recurrent miscarriage in first trimester", 0, [22, 30]], ["most common cause of recurrent early miscarriage", 0, [22, 30]], ["most common cause of recurrent pregnancy loss in first trimester", 0, [22, 30]], ["single most common cause of recurrent pregnancy loss", 0, [22, 30]]], {"i": "most common cause of recurrent abortion", "q": "YgJ8adb3QBO-V5w97ULYH3K8tC8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["most common cause of recurrent abortion", "most common cause of recurrent abortion in first trimester", "most common cause of recurrent abortion in second trimester", "most common cause of habitual abortion", "most common cause of recurrent miscarriage", "most common cause of recurrent pregnancy loss", "most common cause of recurrent miscarriage in first trimester", "most common cause of recurrent early miscarriage", "most common cause of recurrent pregnancy loss in first trimester", "single most common cause of recurrent pregnancy loss"], "self_loops": [0], "tags": {"i": "most common cause of recurrent abortion", "q": "YgJ8adb3QBO-V5w97ULYH3K8tC8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "recurrent abortion reasons", "datetime": "2026-03-12 19:52:51.950827", "source": "google", "data": ["recurrent abortion reasons", [["recurrent pregnancy loss reasons", 0, [22, 30]], ["recurrent miscarriages reasons", 0, [22, 30]], ["recurrent abortion reason", 0, [22, 30]], ["recurrent abortion causes", 0, [22, 30]], ["most common cause of recurrent abortion", 0, [512, 390, 650]], ["reason for frequent abortions", 0, [512, 390, 650]], ["recurrent abortion definition", 0, [512, 390, 650]], ["recurrent abortion workup", 0, [512, 546]], ["recurrent abortion labs", 0, [751]], ["recurrent spontaneous abortion", 0, [512, 546]]], {"i": "recurrent abortion reasons", "q": "Jjkl-kDsDfzNB8jceFaM5jOlHAI", "t": {"bpc": false, "tlw": false}}], "suggests": ["recurrent pregnancy loss reasons", "recurrent miscarriages reasons", "recurrent abortion reason", "recurrent abortion causes", "most common cause of recurrent abortion", "reason for frequent abortions", "recurrent abortion definition", "recurrent abortion workup", "recurrent abortion labs", "recurrent spontaneous abortion"], "self_loops": [], "tags": {"i": "recurrent abortion reasons", "q": "Jjkl-kDsDfzNB8jceFaM5jOlHAI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "recurrent abortion workup", "datetime": "2026-03-12 19:52:53.190687", "source": "google", "data": ["recurrent abortion workup", [["recurrent abortion workup", 0, [512]], ["recurrent pregnancy loss workup", 0, [22, 30]], ["recurrent miscarriage workup", 0, [22, 30]], ["recurrent pregnancy loss workup acog", 0, [22, 30]], ["recurrent miscarriage workup acog", 0, [22, 30]], ["recurrent pregnancy loss workup algorithm", 0, [22, 30]], ["recurrent pregnancy loss workup asrm", 0, [22, 30]], ["habitual abortion workup", 0, [22, 30]], ["recurrent spontaneous abortion workup", 0, [22, 30]], ["most common cause of recurrent abortion", 0, [512, 390, 650]]], {"i": "recurrent abortion workup", "q": "jBg4v8gWnpFcOwV2KLrzm4V2OGc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["recurrent abortion workup", "recurrent pregnancy loss workup", "recurrent miscarriage workup", "recurrent pregnancy loss workup acog", "recurrent miscarriage workup acog", "recurrent pregnancy loss workup algorithm", "recurrent pregnancy loss workup asrm", "habitual abortion workup", "recurrent spontaneous abortion workup", "most common cause of recurrent abortion"], "self_loops": [0], "tags": {"i": "recurrent abortion workup", "q": "jBg4v8gWnpFcOwV2KLrzm4V2OGc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "recurrent spontaneous abortion", "datetime": "2026-03-12 19:52:54.338274", "source": "google", "data": ["recurrent spontaneous abortion", [["recurrent spontaneous abortion", 0, [512]], ["recurrent spontaneous abortion icd 10", 0, [512]], ["recurrent spontaneous abortion causes", 0, [512]], ["recurrent spontaneous abortion definition", 0, [22, 30]], ["recurrent spontaneous abortion rsa", 0, [22, 30]], ["repeated spontaneous abortions", 0, [22, 30]], ["recurrent spontaneous miscarriage", 0, [22, 30]], ["most common causes of spontaneous abortion", 0, [512, 390, 650]], ["most common cause of recurrent abortion", 0, [512, 390, 650]], ["recurrent spontaneous abortion workup", 0, [751]]], {"i": "recurrent spontaneous abortion", "q": "meTbcvfzAtwpNizaiqFDMtnh0hI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["recurrent spontaneous abortion", "recurrent spontaneous abortion icd 10", "recurrent spontaneous abortion causes", "recurrent spontaneous abortion definition", "recurrent spontaneous abortion rsa", "repeated spontaneous abortions", "recurrent spontaneous miscarriage", "most common causes of spontaneous abortion", "most common cause of recurrent abortion", "recurrent spontaneous abortion workup"], "self_loops": [0], "tags": {"i": "recurrent spontaneous abortion", "q": "meTbcvfzAtwpNizaiqFDMtnh0hI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "recurrent spontaneous abortion workup", "datetime": "2026-03-12 19:52:55.395262", "source": "google", "data": ["recurrent spontaneous abortion workup", [["recurrent spontaneous abortion workup", 0, [22, 30]], ["recurrent spontaneous abortion icd 10", 0, [512, 390, 650]], ["causes of recurrent spontaneous abortion", 0, [512, 390, 650]], ["diagnosis of spontaneous abortion", 0, [512, 390, 650]], ["recurrent spontaneous abortion", 0, [512, 546]], ["recurrent abortion workup", 0, [512, 546]], ["spontaneous abortion workup", 0, [751]], ["recurrent abortion reasons", 0, [751]]], {"i": "recurrent spontaneous abortion workup", "q": "8BwdNvWQPfijfBG3o_y57GlOFqY", "t": {"bpc": false, "tlw": false}}], "suggests": ["recurrent spontaneous abortion workup", "recurrent spontaneous abortion icd 10", "causes of recurrent spontaneous abortion", "diagnosis of spontaneous abortion", "recurrent spontaneous abortion", "recurrent abortion workup", "spontaneous abortion workup", "recurrent abortion reasons"], "self_loops": [0], "tags": {"i": "recurrent spontaneous abortion workup", "q": "8BwdNvWQPfijfBG3o_y57GlOFqY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "acog missed abortion criteria", "datetime": "2026-03-12 19:52:56.914128", "source": "google", "data": ["acog missed abortion criteria", [["acog missed abortion criteria", 0, [512]], ["acog missed ab criteria", 0, [22, 30]], ["acog spontaneous abortion guidelines", 0, [22, 30]], ["missed abortion definition acog", 0, [512, 390, 650]], ["acog abortion guidelines", 0, [512, 390, 650]], ["acog missed abortion", 0, [512, 546]], ["acog missed ab", 0, [512, 546]], ["acog missed miscarriage", 0, [512, 546]], ["acog misoprostol missed abortion", 0, [512, 546]]], {"i": "acog missed abortion criteria", "q": "OFGstGVr1BqeBRhP3w9iOOuYWY4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["acog missed abortion criteria", "acog missed ab criteria", "acog spontaneous abortion guidelines", "missed abortion definition acog", "acog abortion guidelines", "acog missed abortion", "acog missed ab", "acog missed miscarriage", "acog misoprostol missed abortion"], "self_loops": [0], "tags": {"i": "acog missed abortion criteria", "q": "OFGstGVr1BqeBRhP3w9iOOuYWY4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion vs inevitable", "datetime": "2026-03-12 19:52:57.907003", "source": "google", "data": ["missed abortion vs inevitable", [["missed abortion vs inevitable", 0, [512]], ["missed miscarriage vs inevitable", 0, [22, 30]], ["incomplete abortion vs inevitable", 0, [22, 30]], ["incomplete miscarriage vs inevitable", 0, [22, 30]], ["spontaneous abortion vs inevitable abortion", 0, [22, 30]], ["missed vs threatened vs inevitable abortion", 0, [22, 30]], ["missed abortion vs missed miscarriage", 0, [512, 390, 650]], ["missed abortion vs incomplete spontaneous abortion", 0, [512, 390, 650]], ["missed abortion vs incomplete", 0, [512, 546]], ["missed abortion vs incomplete abortion", 0, [512, 546]]], {"i": "missed abortion vs inevitable", "q": "RXH6ynlP20YsfCWF1eJMvWxnZac", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["missed abortion vs inevitable", "missed miscarriage vs inevitable", "incomplete abortion vs inevitable", "incomplete miscarriage vs inevitable", "spontaneous abortion vs inevitable abortion", "missed vs threatened vs inevitable abortion", "missed abortion vs missed miscarriage", "missed abortion vs incomplete spontaneous abortion", "missed abortion vs incomplete", "missed abortion vs incomplete abortion"], "self_loops": [0], "tags": {"i": "missed abortion vs inevitable", "q": "RXH6ynlP20YsfCWF1eJMvWxnZac", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion acog", "datetime": "2026-03-12 19:52:58.932707", "source": "google", "data": ["missed abortion acog", [["missed abortion acog", 0, [512]], ["missed abortion acog criteria", 0, [22, 30]], ["missed ab acog", 0, [22, 30]], ["spontaneous abortion acog", 0, [22, 30]], ["incomplete abortion acog", 0, [22, 30]], ["missed miscarriage acog", 0, [22, 30]], ["missed abortion definition acog", 0, [22, 30]], ["missed abortion management acog", 0, [22, 30]], ["misoprostol for missed abortion acog", 0, [22, 30]], ["types of abortion acog", 0, [512, 390, 650]]], {"i": "missed abortion acog", "q": "ucoo0iyp7kmODwXgY8KbglNw60I", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["missed abortion acog", "missed abortion acog criteria", "missed ab acog", "spontaneous abortion acog", "incomplete abortion acog", "missed miscarriage acog", "missed abortion definition acog", "missed abortion management acog", "misoprostol for missed abortion acog", "types of abortion acog"], "self_loops": [0], "tags": {"i": "missed abortion acog", "q": "ucoo0iyp7kmODwXgY8KbglNw60I", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion management acog", "datetime": "2026-03-12 19:53:00.035270", "source": "google", "data": ["missed abortion management acog", [["missed abortion management acog", 0, [512]], ["incomplete abortion management acog", 0, [22, 30]], ["missed abortion definition acog", 0, [512, 390, 650]], ["acog criteria for missed abortion", 0, [512, 390, 650]], ["missed abortion acog", 0, [512, 546]], ["missed miscarriage acog", 0, [512, 546]], ["acog medical management of missed abortion", 0, [512, 546]]], {"i": "missed abortion management acog", "q": "G1Y3jLgYSPd5-pBkenZDsrrcBwg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["missed abortion management acog", "incomplete abortion management acog", "missed abortion definition acog", "acog criteria for missed abortion", "missed abortion acog", "missed miscarriage acog", "acog medical management of missed abortion"], "self_loops": [0], "tags": {"i": "missed abortion management acog", "q": "G1Y3jLgYSPd5-pBkenZDsrrcBwg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "acog spontaneous abortion guidelines", "datetime": "2026-03-12 19:53:00.976928", "source": "google", "data": ["acog spontaneous abortion guidelines", [["acog spontaneous abortion guidelines", 0, [512]], ["acog abortion guidelines", 0, [512, 390, 650]], ["acog abortion policy", 0, [512, 390, 650]], ["acog spontaneous abortion", 0, [512, 546]], ["acog abortion guidelines pdf", 0, [512, 546]]], {"i": "acog spontaneous abortion guidelines", "q": "DmuyCuWVzYswEAA0hkzWPnV5w3I", "t": {"bpc": false, "tlw": false}}], "suggests": ["acog spontaneous abortion guidelines", "acog abortion guidelines", "acog abortion policy", "acog spontaneous abortion", "acog abortion guidelines pdf"], "self_loops": [0], "tags": {"i": "acog spontaneous abortion guidelines", "q": "DmuyCuWVzYswEAA0hkzWPnV5w3I", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "acog definition of abortion", "datetime": "2026-03-12 19:53:01.799877", "source": "google", "data": ["acog definition of abortion", [["acog definition of abortion", 0, [512]], ["acog definition of missed abortion", 0, [22, 30]], ["acog definition of spontaneous abortion", 0, [22, 30]], ["acog definition of miscarriage", 0, [22, 30]], ["types of abortion acog", 0, [512, 390, 650]], ["acog abortion policy", 0, [512, 390, 650]], ["acog definition of fetus", 0, [751]], ["acog definition of pregnancy", 0, [546, 649]]], {"i": "acog definition of abortion", "q": "LpTR8qTjq74SRRW5nGNgmgxZGl0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["acog definition of abortion", "acog definition of missed abortion", "acog definition of spontaneous abortion", "acog definition of miscarriage", "types of abortion acog", "acog abortion policy", "acog definition of fetus", "acog definition of pregnancy"], "self_loops": [0], "tags": {"i": "acog definition of abortion", "q": "LpTR8qTjq74SRRW5nGNgmgxZGl0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion acog", "datetime": "2026-03-12 19:53:03.046497", "source": "google", "data": ["spontaneous abortion acog", [["spontaneous abortion acog", 0, [512]], ["induced abortion acog", 0, [22, 30]], ["spontaneous abortion definition acog", 0, [22, 30]], ["acog spontaneous abortion guidelines", 0, [22, 30]], ["types of abortion acog", 0, [512, 390, 650]], ["acog missed abortion criteria", 0, [512, 390, 650]], ["spontaneous abortion acronym", 0, [751]], ["spontaneous abortion aafp", 0, [546, 649]], ["spontaneous abortion treatment", 0, [512, 546]]], {"i": "spontaneous abortion acog", "q": "JMEjetir9LBmpLVZbjtOrOopsqs", "t": {"bpc": false, "tlw": false}}], "suggests": ["spontaneous abortion acog", "induced abortion acog", "spontaneous abortion definition acog", "acog spontaneous abortion guidelines", "types of abortion acog", "acog missed abortion criteria", "spontaneous abortion acronym", "spontaneous abortion aafp", "spontaneous abortion treatment"], "self_loops": [0], "tags": {"i": "spontaneous abortion acog", "q": "JMEjetir9LBmpLVZbjtOrOopsqs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion definition", "datetime": "2026-03-12 19:53:04.059682", "source": "google", "data": ["spontaneous abortion definition", [["spontaneous abortion definition", 0, [512]], ["spontaneous abortion definition according to who", 0, [512]], ["spontaneous abortion definition in hindi", 0, [512]], ["spontaneous abortion definition ppt", 0, [512]], ["spontaneous abortion definition acog", 0, [22, 30]], ["spontaneous abortion definition in obg", 0, [22, 30]], ["spontaneous abortion definition simple", 0, [22, 30]], ["induced abortion definition", 0, [22, 30]], ["spontaneous miscarriage definition", 0, [22, 30]], ["natural abortion definition", 0, [22, 30]]], {"i": "spontaneous abortion definition", "q": "esf9oW-HMiYLgcHEts8Tgyv6BiY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["spontaneous abortion definition", "spontaneous abortion definition according to who", "spontaneous abortion definition in hindi", "spontaneous abortion definition ppt", "spontaneous abortion definition acog", "spontaneous abortion definition in obg", "spontaneous abortion definition simple", "induced abortion definition", "spontaneous miscarriage definition", "natural abortion definition"], "self_loops": [0], "tags": {"i": "spontaneous abortion definition", "q": "esf9oW-HMiYLgcHEts8Tgyv6BiY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "acog abortion guidelines", "datetime": "2026-03-12 19:53:04.884030", "source": "google", "data": ["acog abortion guidelines", [["acog abortion guidelines pdf", 0, [512]], ["acog abortion guidelines", 0, [512]], ["acog medical abortion guidelines", 0, [22, 30]], ["acog septic abortion guidelines", 0, [22, 30]], ["acog spontaneous abortion guidelines", 0, [22, 30]], ["types of abortion acog", 0, [512, 390, 650]], ["acog abortion policy", 0, [512, 390, 650]], ["acog abortion 2022", 0, [751]], ["acog abortion access", 0, [751]]], {"i": "acog abortion guidelines", "q": "gsLj5W7WPMYykeS9tisZnvjzUQo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["acog abortion guidelines pdf", "acog abortion guidelines", "acog medical abortion guidelines", "acog septic abortion guidelines", "acog spontaneous abortion guidelines", "types of abortion acog", "acog abortion policy", "acog abortion 2022", "acog abortion access"], "self_loops": [1], "tags": {"i": "acog abortion guidelines", "q": "gsLj5W7WPMYykeS9tisZnvjzUQo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "acog medical abortion guidelines", "datetime": "2026-03-12 19:53:05.708041", "source": "google", "data": ["acog medical abortion guidelines", [["acog medical abortion guidelines", 0, [22, 30]], ["acog abortion guidelines", 0, [512, 390, 650]], ["acog abortion policy", 0, [512, 390, 650]], ["types of abortion acog", 0, [512, 390, 650]], ["acog medical abortion", 0, [512, 546]], ["acog abortion medically necessary", 0, [751]], ["acog abortion guidelines pdf", 0, [512, 546]]], {"i": "acog medical abortion guidelines", "q": "0xARRxEZLsxXs8V2FamsX7Ec8As", "t": {"bpc": false, "tlw": false}}], "suggests": ["acog medical abortion guidelines", "acog abortion guidelines", "acog abortion policy", "types of abortion acog", "acog medical abortion", "acog abortion medically necessary", "acog abortion guidelines pdf"], "self_loops": [0], "tags": {"i": "acog medical abortion guidelines", "q": "0xARRxEZLsxXs8V2FamsX7Ec8As", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "acog medical abortion", "datetime": "2026-03-12 19:53:06.708195", "source": "google", "data": ["acog medical abortion", [["acog medical abortion", 0, [512]], ["acog medical abortion guidelines", 0, [22, 30]], ["acog medication abortion practice bulletin", 0, [22, 30]], ["acog medical termination of pregnancy", 0, [22, 30]], ["acog medical management of missed abortion", 0, [22, 30]], ["acog abortion guidelines", 0, [512, 390, 650]], ["types of abortion acog", 0, [512, 390, 650]], ["acog abortion policy", 0, [512, 390, 650]], ["acog abortion medically necessary", 0, [751]]], {"i": "acog medical abortion", "q": "scqE9ELhhy6dRsmWKWkArtm00-0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["acog medical abortion", "acog medical abortion guidelines", "acog medication abortion practice bulletin", "acog medical termination of pregnancy", "acog medical management of missed abortion", "acog abortion guidelines", "types of abortion acog", "acog abortion policy", "acog abortion medically necessary"], "self_loops": [0], "tags": {"i": "acog medical abortion", "q": "scqE9ELhhy6dRsmWKWkArtm00-0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion acog", "datetime": "2026-03-12 19:53:07.550264", "source": "google", "data": ["threatened abortion acog", [["threatened abortion acog", 0, [512]], ["threatened miscarriage acog", 0, [22, 30]], ["inevitable abortion acog", 0, [22, 30]], ["threatened abortion management acog", 0, [22, 30]], ["threatened abortion definition acog", 0, [22, 30]], ["types of abortion acog", 0, [512, 390, 650]], ["abortion acog guidelines", 0, [512, 390, 650]], ["acog definition of abortion", 0, [512, 390, 650]], ["acog abortion policy", 0, [512, 390, 650]], ["threatened abortion aafp", 0, [546, 649]]], {"i": "threatened abortion acog", "q": "TVEIeu82W_N28g4k3sJ5W01WeGU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["threatened abortion acog", "threatened miscarriage acog", "inevitable abortion acog", "threatened abortion management acog", "threatened abortion definition acog", "types of abortion acog", "abortion acog guidelines", "acog definition of abortion", "acog abortion policy", "threatened abortion aafp"], "self_loops": [0], "tags": {"i": "threatened abortion acog", "q": "TVEIeu82W_N28g4k3sJ5W01WeGU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion management acog", "datetime": "2026-03-12 19:53:08.504342", "source": "google", "data": ["threatened abortion management acog", [["threatened abortion management acog", 0, [512]], ["what are the management of threatened abortion", 0, [512, 390, 650]], ["types of abortion acog", 0, [512, 390, 650]], ["abortion acog guidelines", 0, [512, 390, 650]], ["acog abortion policy", 0, [512, 390, 650]], ["threatened abortion acog", 0, [512, 546]], ["threatened miscarriage acog", 0, [751]], ["threatened abortion aafp", 0, [546, 649]]], {"i": "threatened abortion management acog", "q": "UTm6WVWPh1xM5rBpMb3wzOi0XwU", "t": {"bpc": false, "tlw": false}}], "suggests": ["threatened abortion management acog", "what are the management of threatened abortion", "types of abortion acog", "abortion acog guidelines", "acog abortion policy", "threatened abortion acog", "threatened miscarriage acog", "threatened abortion aafp"], "self_loops": [0], "tags": {"i": "threatened abortion management acog", "q": "UTm6WVWPh1xM5rBpMb3wzOi0XwU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion diagnosis", "datetime": "2026-03-12 19:53:09.506611", "source": "google", "data": ["threatened abortion diagnosis", [["threatened abortion diagnosis", 0, [512]], ["threatened abortion diagnosis code", 0, [22, 30]], ["threatened abortion diagnosis meaning", 0, [22, 30]], ["threatened miscarriage diagnosis", 0, [22, 30]], ["inevitable abortion diagnosis", 0, [22, 30]], ["threatened miscarriage diagnosis code", 0, [22, 30]], ["threatened abortion diagnostic test", 0, [22, 30]], ["threatened abortion diagnostic evaluation", 0, [22, 30]], ["threatened abortion diagnostic.criteria", 0, [22, 10, 30]], ["threatened abortion nursing diagnosis", 0, [22, 30]]], {"i": "threatened abortion diagnosis", "q": "oN9YVlsDk0hIs3-7Dr3qncOysqs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["threatened abortion diagnosis", "threatened abortion diagnosis code", "threatened abortion diagnosis meaning", "threatened miscarriage diagnosis", "inevitable abortion diagnosis", "threatened miscarriage diagnosis code", "threatened abortion diagnostic test", "threatened abortion diagnostic evaluation", "threatened abortion diagnostic.criteria", "threatened abortion nursing diagnosis"], "self_loops": [0], "tags": {"i": "threatened abortion diagnosis", "q": "oN9YVlsDk0hIs3-7Dr3qncOysqs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion aafp", "datetime": "2026-03-12 19:53:10.548274", "source": "google", "data": ["threatened abortion aafp", [["threatened abortion aafp", 0, [22, 30]], ["threatened miscarriage aafp", 0, [22, 30]], ["what is threatened abortion", 0, [512, 390, 650]], ["types of abortion threatened", 0, [512, 390, 650]], ["apa itu threatened abortion", 0, [512, 390, 650]], ["what do you mean by threatened abortion", 0, [512, 390, 650]], ["threatened abortion acog", 0, [512, 546]], ["threatened abortion management acog", 0, [512, 546]], ["threatened abortion antepartum", 0, [512, 546]]], {"i": "threatened abortion aafp", "q": "dC04HG-NiaPWzxdsVOEX2jte950", "t": {"bpc": false, "tlw": false}}], "suggests": ["threatened abortion aafp", "threatened miscarriage aafp", "what is threatened abortion", "types of abortion threatened", "apa itu threatened abortion", "what do you mean by threatened abortion", "threatened abortion acog", "threatened abortion management acog", "threatened abortion antepartum"], "self_loops": [0], "tags": {"i": "threatened abortion aafp", "q": "dC04HG-NiaPWzxdsVOEX2jte950", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable ab", "datetime": "2026-03-12 19:53:11.808245", "source": "google", "data": ["inevitable ab", [["inevitable abortion", 0, [512, 433]], ["inevitable abortion definition", 0, [512]], ["inevitable abortion icd 10", 0, [512]], ["inevitable abortion vs incomplete abortion", 0, [512]], ["inevitable abortion treatment", 0, [512]], ["inevitable ab", 0, [512]], ["inevitable abortion radiology", 0, [512]], ["inevitable abortion vs missed abortion", 0, [512]], ["inevitable abortion ultrasound", 0, [512]], ["inevitable abortion vs threatened abortion", 0, [512]]], {"q": "aB6n74Lp0PLzPxnInkhSb_-1xKw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["inevitable abortion", "inevitable abortion definition", "inevitable abortion icd 10", "inevitable abortion vs incomplete abortion", "inevitable abortion treatment", "inevitable ab", "inevitable abortion radiology", "inevitable abortion vs missed abortion", "inevitable abortion ultrasound", "inevitable abortion vs threatened abortion"], "self_loops": [5], "tags": {"q": "aB6n74Lp0PLzPxnInkhSb_-1xKw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable abortion icd-10", "datetime": "2026-03-12 19:53:13.056277", "source": "google", "data": ["inevitable abortion icd-10", [["inevitable abortion icd-10", 0, [512]], ["missed abortion icd 10", 0, [22, 30]], ["incomplete abortion icd 10", 0, [22, 30]], ["threatened abortion icd 10", 0, [22, 30]], ["inevitable miscarriage icd 10", 0, [22, 30]], ["imminent abortion icd 10", 0, [22, 30]], ["threatened abortion icd 10 o20 0", 0, [22, 30]], ["missed abortion icd 10 pcs", 0, [22, 30]], ["missed abortion icd 10 o02 1", 0, [22, 30]], ["threatened abortion icd 10 quizlet", 0, [22, 30]]], {"i": "inevitable abortion icd-10", "q": "H3kWLH0EVItkkCtsxVeo7xceINE", "t": {"bpc": false, "tlw": false}}], "suggests": ["inevitable abortion icd-10", "missed abortion icd 10", "incomplete abortion icd 10", "threatened abortion icd 10", "inevitable miscarriage icd 10", "imminent abortion icd 10", "threatened abortion icd 10 o20 0", "missed abortion icd 10 pcs", "missed abortion icd 10 o02 1", "threatened abortion icd 10 quizlet"], "self_loops": [0], "tags": {"i": "inevitable abortion icd-10", "q": "H3kWLH0EVItkkCtsxVeo7xceINE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable abortion wikem", "datetime": "2026-03-12 19:53:14.040285", "source": "google", "data": ["inevitable abortion wikem", [["inevitable abortion wikem", 33, [671], {"a": "inevitable abortion ", "b": "wikem"}]], {"i": "inevitable abortion wikem", "q": "7PIZK2g0bMBU9amGNm0xQyuznnE", "t": {"bpc": false, "tlw": false}}], "suggests": ["inevitable abortion wikem"], "self_loops": [0], "tags": {"i": "inevitable abortion wikem", "q": "7PIZK2g0bMBU9amGNm0xQyuznnE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic abortion acog", "datetime": "2026-03-12 19:53:14.892596", "source": "google", "data": ["septic abortion acog", [["septic abortion acog", 0, [512]], ["septic abortion antibiotics acog", 0, [22, 30]], ["septic abortion treatment acog", 0, [22, 30]], ["septic abortion definition acog", 0, [22, 30]], ["acog septic abortion guidelines", 0, [22, 30]], ["abortion acog guidelines", 0, [512, 390, 650]], ["types of abortion acog", 0, [512, 390, 650]], ["acog abortion policy", 0, [512, 390, 650]], ["acog spontaneous abortion guidelines", 0, [512, 390, 650]], ["septic abortion treatment", 0, [512, 546]]], {"i": "septic abortion acog", "q": "uhIwTD0b4kAaEfjyE-WHogz4iO0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["septic abortion acog", "septic abortion antibiotics acog", "septic abortion treatment acog", "septic abortion definition acog", "acog septic abortion guidelines", "abortion acog guidelines", "types of abortion acog", "acog abortion policy", "acog spontaneous abortion guidelines", "septic abortion treatment"], "self_loops": [0], "tags": {"i": "septic abortion acog", "q": "uhIwTD0b4kAaEfjyE-WHogz4iO0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic abortion treatment acog", "datetime": "2026-03-12 19:53:16.301955", "source": "google", "data": ["septic abortion treatment acog", [["septic abortion treatment acog", 0, [512]], ["abortion treatment guidelines", 0, [512, 390, 650]], ["threatened abortion treatment guidelines rcog", 0, [512, 390, 650]], ["types of abortion acog", 0, [512, 390, 650]], ["acog abortion guidelines", 0, [512, 390, 650]], ["septic abortion acog", 0, [512, 546]], ["septic abortion antibiotics acog", 0, [512, 546]], ["septic abortion treatment", 0, [512, 546]]], {"i": "septic abortion treatment acog", "q": "oDHmGt2L6FKLUBUJ8IyFbOOdeIY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["septic abortion treatment acog", "abortion treatment guidelines", "threatened abortion treatment guidelines rcog", "types of abortion acog", "acog abortion guidelines", "septic abortion acog", "septic abortion antibiotics acog", "septic abortion treatment"], "self_loops": [0], "tags": {"i": "septic abortion treatment acog", "q": "oDHmGt2L6FKLUBUJ8IyFbOOdeIY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic abortion antibiotics acog", "datetime": "2026-03-12 19:53:17.581268", "source": "google", "data": ["septic abortion antibiotics acog", [["septic abortion antibiotics acog", 0, [512]], ["septic abortion antibiotics", 0, [512, 390, 650]], ["antibiotics during abortion", 0, [512, 390, 650]], ["septic abortion treatment acog", 0, [512, 546]], ["septic abortion acog", 0, [512, 546]], ["septic abortion treatment", 0, [512, 546]]], {"i": "septic abortion antibiotics acog", "q": "9Dc9-q_vgWN-TB_qR0-Gmlpppak", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["septic abortion antibiotics acog", "septic abortion antibiotics", "antibiotics during abortion", "septic abortion treatment acog", "septic abortion acog", "septic abortion treatment"], "self_loops": [0], "tags": {"i": "septic abortion antibiotics acog", "q": "9Dc9-q_vgWN-TB_qR0-Gmlpppak", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "incomplete abortion acog", "datetime": "2026-03-12 19:53:18.694367", "source": "google", "data": ["incomplete abortion acog", [["incomplete abortion acog", 0, [512]], ["missed abortion acog", 0, [22, 30]], ["spontaneous abortion acog", 0, [22, 30]], ["inevitable abortion acog", 0, [22, 30]], ["missed abortion acog criteria", 0, [22, 30]], ["incomplete abortion management acog", 0, [22, 30]], ["incomplete abortion definition acog", 0, [22, 30]], ["types of abortion acog", 0, [512, 390, 650]], ["missed abortion definition acog", 0, [512, 390, 650]], ["acog abortion policy", 0, [512, 390, 650]]], {"i": "incomplete abortion acog", "q": "cxjiIBtibsR4ba6IWrfuEAEHcrc", "t": {"bpc": false, "tlw": false}}], "suggests": ["incomplete abortion acog", "missed abortion acog", "spontaneous abortion acog", "inevitable abortion acog", "missed abortion acog criteria", "incomplete abortion management acog", "incomplete abortion definition acog", "types of abortion acog", "missed abortion definition acog", "acog abortion policy"], "self_loops": [0], "tags": {"i": "incomplete abortion acog", "q": "cxjiIBtibsR4ba6IWrfuEAEHcrc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "incomplete abortion definition", "datetime": "2026-03-12 19:53:19.813475", "source": "google", "data": ["incomplete abortion definition", [["incomplete abortion definition", 0, [512]], ["incomplete abortion definition in hindi", 0, [512]], ["incomplete abortion definition in obg", 0, [512]], ["incomplete abortion definition according to who", 0, [22, 30]], ["incomplete abortion definition ppt", 0, [22, 30]], ["incomplete abortion definition ultrasound", 0, [22, 30]], ["incomplete abortion definition acog", 0, [22, 30]], ["missed abortion definition", 0, [22, 30]], ["spontaneous abortion definition", 0, [22, 30]], ["inevitable abortion definition", 0, [22, 30]]], {"i": "incomplete abortion definition", "q": "DgisV0LMVoqcD46mwegYQilJlPM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["incomplete abortion definition", "incomplete abortion definition in hindi", "incomplete abortion definition in obg", "incomplete abortion definition according to who", "incomplete abortion definition ppt", "incomplete abortion definition ultrasound", "incomplete abortion definition acog", "missed abortion definition", "spontaneous abortion definition", "inevitable abortion definition"], "self_loops": [0], "tags": {"i": "incomplete abortion definition", "q": "DgisV0LMVoqcD46mwegYQilJlPM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "incomplete abortion d&c", "datetime": "2026-03-12 19:53:21.058685", "source": "google", "data": ["incomplete abortion d&c", [["incomplete abortion d&c", 0, [512]], ["missed abortion d&c", 0, [22, 30]], ["incomplete miscarriage d&c", 0, [22, 30]], ["missed abortion d&c procedure", 0, [22, 30]], ["spontaneous abortion d&c", 0, [22, 30]], ["incomplete abortion d&c cpt code", 0, [22, 30]], ["incomplete abortion after d&c", 0, [22, 30]], ["incomplete abortion d&c cpt", 0, [22, 30]], ["missed abortion d&c cpt", 0, [22, 30]], ["incomplete miscarriage after d&c", 0, [22, 30]]], {"i": "incomplete abortion d&c", "q": "qrl3lr4umJs2sW2J3vnbxszpcwY", "t": {"bpc": false, "tlw": false}}], "suggests": ["incomplete abortion d&c", "missed abortion d&c", "incomplete miscarriage d&c", "missed abortion d&c procedure", "spontaneous abortion d&c", "incomplete abortion d&c cpt code", "incomplete abortion after d&c", "incomplete abortion d&c cpt", "missed abortion d&c cpt", "incomplete miscarriage after d&c"], "self_loops": [0], "tags": {"i": "incomplete abortion d&c", "q": "qrl3lr4umJs2sW2J3vnbxszpcwY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "types of acog", "datetime": "2026-03-12 19:53:22.347985", "source": "google", "data": ["types of acog", [["types of acog scopes", 0, [512]], ["types of acogs", 0, [22, 30]], ["types of acog sights", 0, [22, 30]], ["types of acog reticles", 0, [22, 30]], ["types of abortion acog", 0, [22, 30]], ["types of miscarriage acog", 0, [22, 30]], ["types of hysterectomy acog", 0, [22, 30]], ["types of placenta previa acog", 0, [22, 30]], ["types of ovarian cysts acog", 0, [22, 30]], ["acog types of birth control", 0, [22, 30]]], {"i": "types of acog", "q": "cYPjPhqK-UFPShQZz0CIHgokCwI", "t": {"bpc": false, "tlw": false}}], "suggests": ["types of acog scopes", "types of acogs", "types of acog sights", "types of acog reticles", "types of abortion acog", "types of miscarriage acog", "types of hysterectomy acog", "types of placenta previa acog", "types of ovarian cysts acog", "acog types of birth control"], "self_loops": [], "tags": {"i": "types of acog", "q": "cYPjPhqK-UFPShQZz0CIHgokCwI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "acog abortion access", "datetime": "2026-03-12 19:53:23.605108", "source": "google", "data": ["acog abortion access", [["acog abortion access 2024", 33, [160], {"a": "acog abortion ", "b": "access 2024"}], ["acog abortion accessibility", 33, [160], {"a": "acog abortion ", "b": "accessibility"}], ["acog abortion access policy", 33, [160], {"a": "acog abortion ", "b": "access policy"}], ["acog abortion access guidelines", 33, [160], {"a": "acog abortion ", "b": "access guidelines"}], ["acog abortion access 2023", 33, [160], {"a": "acog abortion ", "b": "access 2023"}], ["acog abortion accessories", 33, [671], {"a": "acog abortion ", "b": "accessories"}], ["acog abortion access to contraception", 33, [671], {"a": "acog abortion ", "b": "access to contraception"}]], {"i": "acog abortion access", "q": "iQ683_E-Rve-OYiEtmOdGISZWC4", "t": {"bpc": false, "tlw": false}}], "suggests": ["acog abortion access 2024", "acog abortion accessibility", "acog abortion access policy", "acog abortion access guidelines", "acog abortion access 2023", "acog abortion accessories", "acog abortion access to contraception"], "self_loops": [], "tags": {"i": "acog abortion access", "q": "iQ683_E-Rve-OYiEtmOdGISZWC4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "acog abortion guidelines pdf", "datetime": "2026-03-12 19:53:24.456911", "source": "google", "data": ["acog abortion guidelines pdf", [["acog abortion guidelines pdf", 0, [512]], ["acog abortion guidelines", 0, [512, 390, 650]], ["acog pregnancy guidelines", 0, [512, 390, 650]], ["acog abortion practice bulletin", 0, [546, 649]], ["acog abortion policy", 0, [512, 546]]], {"i": "acog abortion guidelines pdf", "q": "MHdSVlWMZ36wQv3LnWFx3bd213w", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["acog abortion guidelines pdf", "acog abortion guidelines", "acog pregnancy guidelines", "acog abortion practice bulletin", "acog abortion policy"], "self_loops": [0], "tags": {"i": "acog abortion guidelines pdf", "q": "MHdSVlWMZ36wQv3LnWFx3bd213w", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "acog abortion", "datetime": "2026-03-12 19:53:25.400725", "source": "google", "data": ["acog abortion", [["acog abortion", 0, [512]], ["acog abortion guidelines pdf", 0, [512]], ["acog abortion definition", 0, [512]], ["acog abortion guidelines", 0, [512]], ["acog abortion policy", 0, [512]], ["acog abortion is healthcare", 0, [512]], ["acog abortion language", 0, [22, 30]], ["acog abortion terminology", 0, [22, 30]], ["acog abortion practice bulletin", 0, [22, 30]], ["acog abortion care", 0, [22, 30]]], {"i": "acog abortion", "q": "MLqe7ZwarT3d_e9QHpqej8ISSuY", "t": {"bpc": false, "tlw": false}}], "suggests": ["acog abortion", "acog abortion guidelines pdf", "acog abortion definition", "acog abortion guidelines", "acog abortion policy", "acog abortion is healthcare", "acog abortion language", "acog abortion terminology", "acog abortion practice bulletin", "acog abortion care"], "self_loops": [0], "tags": {"i": "acog abortion", "q": "MLqe7ZwarT3d_e9QHpqej8ISSuY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is abortion ppt", "datetime": "2026-03-12 19:53:26.792825", "source": "google", "data": ["what is abortion ppt", [["what is abortion ppt", 0, [512]], ["what is abortion slideshare", 0, [22, 30]], ["what is induced abortion ppt", 0, [22, 30]], ["what is septic abortion ppt", 0, [22, 30]], ["what is safe abortion class 8 ppt", 0, [22, 30]], ["what is the difference between miscarriage and abortion ppt", 0, [22, 30]], ["types of abortion ppt", 0, [512, 390, 650]], ["explain abortion in detail", 0, [512, 390, 650]], ["power point presentation on abortion", 0, [751]], ["what is ppt abbreviation", 0, [546, 649]]], {"i": "what is abortion ppt", "q": "tNCy2aioF-FuQn_QKUksNoiWUcg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is abortion ppt", "what is abortion slideshare", "what is induced abortion ppt", "what is septic abortion ppt", "what is safe abortion class 8 ppt", "what is the difference between miscarriage and abortion ppt", "types of abortion ppt", "explain abortion in detail", "power point presentation on abortion", "what is ppt abbreviation"], "self_loops": [0], "tags": {"i": "what is abortion ppt", "q": "tNCy2aioF-FuQn_QKUksNoiWUcg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is ppt in nursing", "datetime": "2026-03-12 19:53:27.599599", "source": "google", "data": ["what is ppt in nursing", [["what is ppt in nursing", 0, [512]], ["what is ethics in nursing ppt", 0, [22, 30]], ["what is code of ethics in nursing ppt", 0, [22, 30]], ["what is the importance of microbiology in nursing ppt", 0, [22, 30]], ["what is ppt in health care", 0, [512, 390, 650]], ["what is ppt in medical", 0, [512, 390, 650]], ["what is ppt in medical terms", 0, [512, 546]], ["what is ptt nursing", 0, [751]]], {"i": "what is ppt in nursing", "q": "ULB4Fit3TccLXSLNQBubJccfemc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is ppt in nursing", "what is ethics in nursing ppt", "what is code of ethics in nursing ppt", "what is the importance of microbiology in nursing ppt", "what is ppt in health care", "what is ppt in medical", "what is ppt in medical terms", "what is ptt nursing"], "self_loops": [0], "tags": {"i": "what is ppt in nursing", "q": "ULB4Fit3TccLXSLNQBubJccfemc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "types of abortion ppt", "datetime": "2026-03-12 19:53:28.890995", "source": "google", "data": ["types of abortion ppt", [["types of abortion ppt", 0, [512]], ["types of abortion ppt for nursing students", 0, [512]], ["types of abortion ppt free download", 0, [512]], ["types of abortion ppt in hindi", 0, [22, 30]], ["types of abortion ppt nursing", 0, [22, 30]], ["types of abortion ppt 2021", 0, [22, 30]], ["procedure of abortion ppt", 0, [22, 30]], ["types of abortion slideshare", 0, [22, 30]], ["types of abortion slideshare nursing", 0, [22, 30]], ["7 types of abortion ppt", 0, [22, 30]]], {"i": "types of abortion ppt", "q": "flZhHvaxOYvcf7UtyrVRJWUkJV0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["types of abortion ppt", "types of abortion ppt for nursing students", "types of abortion ppt free download", "types of abortion ppt in hindi", "types of abortion ppt nursing", "types of abortion ppt 2021", "procedure of abortion ppt", "types of abortion slideshare", "types of abortion slideshare nursing", "7 types of abortion ppt"], "self_loops": [0], "tags": {"i": "types of abortion ppt", "q": "flZhHvaxOYvcf7UtyrVRJWUkJV0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "definition abortion nursing", "datetime": "2026-03-12 19:53:30.365061", "source": "google", "data": ["definition abortion nursing", [["abortion definition nursing", 0, [22, 30]], ["abortion definition in nursing ppt", 0, [22, 30]], ["abortion definition in nursing according to who", 0, [22, 30]], ["abortion definition in nursing pdf", 0, [22, 30]], ["abortion definition in nursing in hindi", 0, [22, 30]], ["definition of abortion in nursing wikipedia", 0, [22, 30]], ["definition of abortion in nursing slideshare", 0, [22, 30]], ["what is abortion in nursing", 0, [512, 390, 650]], ["types of abortion nursing", 0, [512, 390, 650]], ["types of abortion and its nursing management", 0, [512, 390, 650]]], {"i": "definition abortion nursing", "q": "_0MOWQwN5JYDV9Jf7qG6KYdVi_k", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition nursing", "abortion definition in nursing ppt", "abortion definition in nursing according to who", "abortion definition in nursing pdf", "abortion definition in nursing in hindi", "definition of abortion in nursing wikipedia", "definition of abortion in nursing slideshare", "what is abortion in nursing", "types of abortion nursing", "types of abortion and its nursing management"], "self_loops": [], "tags": {"i": "definition abortion nursing", "q": "_0MOWQwN5JYDV9Jf7qG6KYdVi_k", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in nursing lecture", "datetime": "2026-03-12 19:53:31.856522", "source": "google", "data": ["abortion in nursing lecture", [["abortion in nursing lectures", 33, [160], {"a": "abortion in nursing ", "b": "lectures"}], ["abortion in nursing lecture notes", 33, [160], {"a": "abortion in nursing ", "b": "lecture notes"}], ["abortion in nursing lecture video", 33, [160], {"a": "abortion in nursing ", "b": "lecture video"}], ["abortion in nursing lecture notes pdf", 33, [160], {"a": "abortion in nursing ", "b": "lecture notes pdf"}], ["abortion in nursing lecture series", 33, [160], {"a": "abortion in nursing ", "b": "lecture series"}], ["abortion in nursing lecture english", 33, [671], {"a": "abortion in nursing ", "b": "lecture english"}], ["abortion in nursing lecture gnm 3rd year", 33, [671], {"a": "abortion in nursing ", "b": "lecture gnm 3rd year"}]], {"i": "abortion in nursing lecture", "q": "itPzD4gbulw3rJwdqM6Z23T_25U", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in nursing lectures", "abortion in nursing lecture notes", "abortion in nursing lecture video", "abortion in nursing lecture notes pdf", "abortion in nursing lecture series", "abortion in nursing lecture english", "abortion in nursing lecture gnm 3rd year"], "self_loops": [], "tags": {"i": "abortion in nursing lecture", "q": "itPzD4gbulw3rJwdqM6Z23T_25U", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in nursing ppt", "datetime": "2026-03-12 19:53:33.251807", "source": "google", "data": ["abortion in nursing ppt", [["abortion in nursing ppt", 0, [22, 30]], ["abortion definition in nursing ppt", 0, [22, 30]], ["abortion obg nursing ppt", 0, [22, 30]], ["what is abortion in nursing", 0, [512, 390, 650]], ["what is abortion ppt", 0, [512, 390, 650]], ["types of abortion ppt", 0, [512, 390, 650]], ["types of abortion nursing", 0, [512, 390, 650]], ["abortion in nursing lecture", 0, [751]]], {"i": "abortion in nursing ppt", "q": "1RYlpRGidbCyw3CGxvgLy9Ov0c8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in nursing ppt", "abortion definition in nursing ppt", "abortion obg nursing ppt", "what is abortion in nursing", "what is abortion ppt", "types of abortion ppt", "types of abortion nursing", "abortion in nursing lecture"], "self_loops": [0], "tags": {"i": "abortion in nursing ppt", "q": "1RYlpRGidbCyw3CGxvgLy9Ov0c8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "explain abortion in detail", "datetime": "2026-03-12 19:53:34.060794", "source": "google", "data": ["explain abortion in detail", [["explain abortion in detail", 0, [512]], ["explain about abortion", 0, [512, 390, 650]], ["explain types of abortion", 0, [512, 390, 650]], ["what is abortion and why is it important", 0, [512, 390, 650]], ["explain abortion procedure", 0, [751]], ["describe abortion in detail", 0, [512, 546]], ["explain abortion law", 0, [751]], ["explanation of abortion", 0, [512, 546]]], {"i": "explain abortion in detail", "q": "lxD7fHm0V1r__u39sP8a_PWZBac", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["explain abortion in detail", "explain about abortion", "explain types of abortion", "what is abortion and why is it important", "explain abortion procedure", "describe abortion in detail", "explain abortion law", "explanation of abortion"], "self_loops": [0], "tags": {"i": "explain abortion in detail", "q": "lxD7fHm0V1r__u39sP8a_PWZBac", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in nursing", "datetime": "2026-03-12 19:53:34.894834", "source": "google", "data": ["abortion in nursing", [["abortion in nursing", 0, [512]], ["abortion in nursing ppt", 0, [22, 30]], ["abortion in nursing school", 0, [22, 30]], ["abortion in nursing ethics", 0, [22, 30]], ["abortion definition in nursing", 0, [22, 30]], ["abortion types in nursing", 0, [22, 30]], ["abortion definition in nursing ppt", 0, [22, 30]], ["abortion in obg nursing", 0, [22, 30]], ["explain abortion in nursing", 0, [22, 30]], ["abortion definition in nursing according to who", 0, [22, 30]]], {"i": "abortion in nursing", "q": "HC91CcW2K2BUcyJb8GrLM3kAxY8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion in nursing", "abortion in nursing ppt", "abortion in nursing school", "abortion in nursing ethics", "abortion definition in nursing", "abortion types in nursing", "abortion definition in nursing ppt", "abortion in obg nursing", "explain abortion in nursing", "abortion definition in nursing according to who"], "self_loops": [0], "tags": {"i": "abortion in nursing", "q": "HC91CcW2K2BUcyJb8GrLM3kAxY8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion nursing lecture in hindi", "datetime": "2026-03-12 19:53:35.872628", "source": "google", "data": ["abortion nursing lecture in hindi", [["abortion nursing lecture in hindi pdf", 33, [160], {"a": "abortion nursing lecture in ", "b": "hindi pdf"}], ["abortion nursing lecture in hindi youtube", 33, [160], {"a": "abortion nursing lecture in ", "b": "hindi youtube"}], ["abortion nursing lecture in hindi language", 33, [160], {"a": "abortion nursing lecture in ", "b": "hindi language"}], ["abortion nursing lecture in hindi pdf free download", 33, [160], {"a": "abortion nursing lecture in ", "b": "hindi pdf free download"}], ["abortion nursing lecture in hindi youtube video", 33, [160], {"a": "abortion nursing lecture in ", "b": "hindi youtube video"}], ["abortion nursing lecture in hindi", 33, [299], {"a": "abortion nursing lecture in ", "b": "hindi"}]], {"i": "abortion nursing lecture in hindi", "q": "eiAmELUG3HTU4NVHiwkpckf6ans", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion nursing lecture in hindi pdf", "abortion nursing lecture in hindi youtube", "abortion nursing lecture in hindi language", "abortion nursing lecture in hindi pdf free download", "abortion nursing lecture in hindi youtube video", "abortion nursing lecture in hindi"], "self_loops": [5], "tags": {"i": "abortion nursing lecture in hindi", "q": "eiAmELUG3HTU4NVHiwkpckf6ans", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition nursing", "datetime": "2026-03-12 19:53:36.794460", "source": "google", "data": ["abortion definition nursing", [["abortion definition nursing", 0, [512]], ["abortion definition in nursing ppt", 0, [22, 30]], ["abortion definition in nursing according to who", 0, [22, 30]], ["abortion definition in nursing pdf", 0, [22, 30]], ["abortion definition in nursing in hindi", 0, [22, 30]], ["abortion definition in community health nursing", 0, [22, 30]], ["what is abortion in nursing", 0, [512, 390, 650]], ["types of abortion nursing", 0, [512, 390, 650]], ["types of abortion and its nursing management", 0, [512, 390, 650]], ["abortion definition types", 0, [512, 390, 650]]], {"i": "abortion definition nursing", "q": "R2HSQQkeIp4ZDXaLXrVSyBVJxtM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion definition nursing", "abortion definition in nursing ppt", "abortion definition in nursing according to who", "abortion definition in nursing pdf", "abortion definition in nursing in hindi", "abortion definition in community health nursing", "what is abortion in nursing", "types of abortion nursing", "types of abortion and its nursing management", "abortion definition types"], "self_loops": [0], "tags": {"i": "abortion definition nursing", "q": "R2HSQQkeIp4ZDXaLXrVSyBVJxtM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion nursing lecture in english", "datetime": "2026-03-12 19:53:38.277148", "source": "google", "data": ["abortion nursing lecture in english", [["abortion nursing lecture in english pdf", 33, [160], {"a": "abortion nursing lecture in ", "b": "english pdf"}], ["abortion nursing lecture in english and spanish", 33, [160], {"a": "abortion nursing lecture in ", "b": "english and spanish"}], ["abortion nursing lecture in english youtube", 33, [160], {"a": "abortion nursing lecture in ", "b": "english youtube"}], ["abortion nursing lecture in english translation", 33, [160], {"a": "abortion nursing lecture in ", "b": "english translation"}], ["abortion nursing lecture in english language", 33, [160], {"a": "abortion nursing lecture in ", "b": "english language"}], ["abortion nursing lecture in english", 33, [299], {"a": "abortion nursing lecture in ", "b": "english"}]], {"i": "abortion nursing lecture in english", "q": "MCKSt-j9-1F_OCX-UtB8WskKYvo", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion nursing lecture in english pdf", "abortion nursing lecture in english and spanish", "abortion nursing lecture in english youtube", "abortion nursing lecture in english translation", "abortion nursing lecture in english language", "abortion nursing lecture in english"], "self_loops": [5], "tags": {"i": "abortion nursing lecture in english", "q": "MCKSt-j9-1F_OCX-UtB8WskKYvo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "define the community health nursing", "datetime": "2026-03-12 19:53:39.201651", "source": "google", "data": ["define the community health nursing", [["define the community health nursing", 0, [512]], ["what is the community health nursing", 0, [22, 30]], ["explain the community health nursing process", 0, [22, 30]], ["explain the community health nursing", 0, [22, 30]], ["what is the community health nursing process", 0, [22, 30]], ["define community health nursing ppt", 0, [22, 30]], ["define community health nursing according to who", 0, [22, 30]], ["define community health nursing process", 0, [22, 30]], ["define community health nursing in hindi", 0, [22, 30]], ["define community health nursing slideshare", 0, [22, 30]]], {"i": "define the community health nursing", "q": "MzzNuiYsLZhmQOnPj4yGOVygJMA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["define the community health nursing", "what is the community health nursing", "explain the community health nursing process", "explain the community health nursing", "what is the community health nursing process", "define community health nursing ppt", "define community health nursing according to who", "define community health nursing process", "define community health nursing in hindi", "define community health nursing slideshare"], "self_loops": [0], "tags": {"i": "define the community health nursing", "q": "MzzNuiYsLZhmQOnPj4yGOVygJMA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "explain the concept of community health nursing", "datetime": "2026-03-12 19:53:40.069274", "source": "google", "data": ["explain the concept of community health nursing", [["explain the concept of community health nursing", 0, [512]], ["what is the concept of community health nursing", 0, [22, 30]], ["what is the meaning of community health nursing", 0, [22, 30]], ["what is the definition of community health nursing", 0, [22, 30]], ["what is the definition of community health nursing according to who", 0, [22, 30]], ["explain the concept and scope of community health nursing", 0, [22, 30]], ["what are the 5 concepts of community health nursing", 0, [22, 30]], ["explain the concept of health care in community health nursing", 0, [22, 30]], ["describe the concept and importance of community health nursing", 0, [22, 30]], ["what is the best definition of community health nursing", 0, [22, 30]]], {"i": "explain the concept of community health nursing", "q": "Vm5YFLnd6LjinIJ89OoH2ene7rU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["explain the concept of community health nursing", "what is the concept of community health nursing", "what is the meaning of community health nursing", "what is the definition of community health nursing", "what is the definition of community health nursing according to who", "explain the concept and scope of community health nursing", "what are the 5 concepts of community health nursing", "explain the concept of health care in community health nursing", "describe the concept and importance of community health nursing", "what is the best definition of community health nursing"], "self_loops": [0], "tags": {"i": "explain the concept of community health nursing", "q": "Vm5YFLnd6LjinIJ89OoH2ene7rU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what do you mean by community health nursing", "datetime": "2026-03-12 19:53:41.257112", "source": "google", "data": ["what do you mean by community health nursing", [["what do you mean by community health nursing", 0, [512]], ["what is the meaning of community health nursing", 0, [512, 390, 650]], ["what is community health nursing", 0, [512, 390, 650]], ["define the community health nursing", 0, [512, 390, 650]], ["what is the community health nursing definition of health", 0, [512, 546]], ["what do community health nurses do", 0, [512, 546]], ["what is community/public health nursing", 0, [751]], ["what is community health nursing class", 0, [751]]], {"i": "what do you mean by community health nursing", "q": "7gIF1wqIqhGFLttq88wzn8hHBnM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what do you mean by community health nursing", "what is the meaning of community health nursing", "what is community health nursing", "define the community health nursing", "what is the community health nursing definition of health", "what do community health nurses do", "what is community/public health nursing", "what is community health nursing class"], "self_loops": [0], "tags": {"i": "what do you mean by community health nursing", "q": "7gIF1wqIqhGFLttq88wzn8hHBnM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "examples of community health nursing", "datetime": "2026-03-12 19:53:43.361683", "source": "google", "data": ["examples of community health nursing", [["examples of community health nursing", 0, [512]], ["examples of community health nursing diagnosis", 0, [512]], ["examples of community health nursing jobs", 0, [22, 30]], ["examples of community health nursing interventions", 0, [22, 30]], ["example of community health nursing process", 0, [22, 30]], ["example of community health nursing diagnosis statement", 0, [22, 30]], ["examples of community based nursing", 0, [22, 30]], ["example of community nursing care plan", 0, [22, 30]], ["sample paper of community health nursing", 0, [22, 30]], ["examples of appropriate technology in community health nursing", 0, [22, 30]]], {"i": "examples of community health nursing", "q": "qovcgY39-7b0AHUWPYQMm7LjwyU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["examples of community health nursing", "examples of community health nursing diagnosis", "examples of community health nursing jobs", "examples of community health nursing interventions", "example of community health nursing process", "example of community health nursing diagnosis statement", "examples of community based nursing", "example of community nursing care plan", "sample paper of community health nursing", "examples of appropriate technology in community health nursing"], "self_loops": [0], "tags": {"i": "examples of community health nursing", "q": "qovcgY39-7b0AHUWPYQMm7LjwyU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does abortion is health care mean", "datetime": "2026-03-12 19:53:44.490937", "source": "google", "data": ["what does abortion is health care mean", [["what does abortion is health care mean", 0, [512]], ["why abortion is healthcare", 0, [512, 390, 650]], ["abortion care is healthcare", 0, [512, 546]]], {"i": "what does abortion is health care mean", "q": "vXACCobaZflTO5DVzRVMTuxSSvY", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does abortion is health care mean", "why abortion is healthcare", "abortion care is healthcare"], "self_loops": [0], "tags": {"i": "what does abortion is health care mean", "q": "vXACCobaZflTO5DVzRVMTuxSSvY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "types of abortion nursing", "datetime": "2026-03-12 19:53:45.389437", "source": "google", "data": ["types of abortion nursing", [["types of abortion nursing", 0, [512]], ["types of abortion nursing pdf", 0, [512]], ["types of abortion nursing ppt", 0, [22, 30]], ["types of abortion nursing pdf free download", 0, [22, 30]], ["types of abortion nursing in hindi", 0, [22, 30]], ["types of spontaneous abortion nursing", 0, [22, 30]], ["types of abortion slideshare nursing", 0, [22, 30]], ["types of abortion ppt for nursing students", 0, [22, 30]], ["types of abortion and its nursing management", 0, [22, 30]], ["types of abortion definition in nursing", 0, [22, 30]]], {"i": "types of abortion nursing", "q": "NF6nt3jSVSe8qUR3UnhjlmPovGY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["types of abortion nursing", "types of abortion nursing pdf", "types of abortion nursing ppt", "types of abortion nursing pdf free download", "types of abortion nursing in hindi", "types of spontaneous abortion nursing", "types of abortion slideshare nursing", "types of abortion ppt for nursing students", "types of abortion and its nursing management", "types of abortion definition in nursing"], "self_loops": [0], "tags": {"i": "types of abortion nursing", "q": "NF6nt3jSVSe8qUR3UnhjlmPovGY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "explain types of abortion", "datetime": "2026-03-12 19:53:46.542665", "source": "google", "data": ["explain types of abortion", [["explain types of abortion", 0, [512]], ["define types of abortion", 0, [22, 30]], ["explain types of spontaneous abortion", 0, [22, 30]], ["explain two types of abortion", 0, [22, 30]], ["list and explain types of abortion", 0, [22, 30]], ["explain the process of abortion", 0, [22, 30]], ["define 10 types of abortion", 0, [22, 30]], ["what are the different types of abortion", 0, [512, 390, 650]], ["types of abortion definition", 0, [512, 390, 650]], ["types of abortion", 0, [512, 390, 650]]], {"i": "explain types of abortion", "q": "C6sSoWrnPEeQE9eID3zK1Sw-rT0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["explain types of abortion", "define types of abortion", "explain types of spontaneous abortion", "explain two types of abortion", "list and explain types of abortion", "explain the process of abortion", "define 10 types of abortion", "what are the different types of abortion", "types of abortion definition", "types of abortion"], "self_loops": [0], "tags": {"i": "explain types of abortion", "q": "C6sSoWrnPEeQE9eID3zK1Sw-rT0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "types of abortion and its nursing management", "datetime": "2026-03-12 19:53:47.401985", "source": "google", "data": ["types of abortion and its nursing management", [["types of abortion and its nursing management", 0, [512]], ["types of abortion and its management", 0, [512, 390, 650]], ["types of abortion and management pdf", 0, [512, 390, 650]], ["types of abortions nursing", 0, [546, 649]], ["types of abortion acog", 0, [512, 546]]], {"i": "types of abortion and its nursing management", "q": "osO37jZ7mb6xjB8YzNDP85pPQ3E", "t": {"bpc": false, "tlw": false}}], "suggests": ["types of abortion and its nursing management", "types of abortion and its management", "types of abortion and management pdf", "types of abortions nursing", "types of abortion acog"], "self_loops": [0], "tags": {"i": "types of abortion and its nursing management", "q": "osO37jZ7mb6xjB8YzNDP85pPQ3E", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "types of abortion methods", "datetime": "2026-03-12 19:53:48.322062", "source": "google", "data": ["types of abortion methods", [["types of abortion methods", 0, [512]], ["types of abortion procedure ppt", 0, [22, 30]], ["types of abortion procedure slideshare", 0, [22, 30]], ["types of abortion", 0, [512, 390, 650]], ["what are the different types of abortion", 0, [512, 390, 650]], ["types of abortion medical term", 0, [512, 546]], ["methods of abortion include", 0, [512, 546]]], {"i": "types of abortion methods", "q": "LkRAiHWTjUSCuw7ZGEMJDmbbX3I", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["types of abortion methods", "types of abortion procedure ppt", "types of abortion procedure slideshare", "types of abortion", "what are the different types of abortion", "types of abortion medical term", "methods of abortion include"], "self_loops": [0], "tags": {"i": "types of abortion methods", "q": "LkRAiHWTjUSCuw7ZGEMJDmbbX3I", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "types of abortions pdf", "datetime": "2026-03-12 19:53:49.353167", "source": "google", "data": ["types of abortions pdf", [["types of abortions pdf", 0, [512]], ["types of abortion pdf notes", 0, [22, 30]], ["types of abortion pdf download", 0, [22, 30]], ["types of abortion pdf slideshare", 0, [22, 30]], ["types of abortion pdf free download", 0, [22, 30]], ["types of miscarriage pdf", 0, [22, 30]], ["7 types of abortion pdf", 0, [22, 30]], ["types of abortion nursing pdf", 0, [22, 30]], ["7 types of abortion pdf notes", 0, [22, 30]], ["7 types of abortion pdf free download", 0, [22, 30]]], {"i": "types of abortions pdf", "q": "iodbNg_lXPC2SlNPp_5v8W-jT-Y", "t": {"bpc": false, "tlw": false}}], "suggests": ["types of abortions pdf", "types of abortion pdf notes", "types of abortion pdf download", "types of abortion pdf slideshare", "types of abortion pdf free download", "types of miscarriage pdf", "7 types of abortion pdf", "types of abortion nursing pdf", "7 types of abortion pdf notes", "7 types of abortion pdf free download"], "self_loops": [0], "tags": {"i": "types of abortions pdf", "q": "iodbNg_lXPC2SlNPp_5v8W-jT-Y", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "nursing definition of abortion", "datetime": "2026-03-12 19:53:50.558353", "source": "google", "data": ["nursing definition of abortion", [["definition of abortion in nursing", 0, [22, 30]], ["definition of abortion ppt nursing", 0, [22, 30]], ["definition of abortion in nursing wikipedia", 0, [22, 30]], ["definition of abortion in nursing slideshare", 0, [22, 30]], ["what is abortion in nursing", 0, [512, 390, 650]], ["types of abortion nursing", 0, [512, 390, 650]], ["types of abortion and its nursing management", 0, [512, 390, 650]], ["nursing definition of autonomy", 0, [546, 649]]], {"i": "nursing definition of abortion", "q": "h54RcuS107VVIQZjvTET0pSgi2o", "t": {"bpc": false, "tlw": false}}], "suggests": ["definition of abortion in nursing", "definition of abortion ppt nursing", "definition of abortion in nursing wikipedia", "definition of abortion in nursing slideshare", "what is abortion in nursing", "types of abortion nursing", "types of abortion and its nursing management", "nursing definition of autonomy"], "self_loops": [], "tags": {"i": "nursing definition of abortion", "q": "h54RcuS107VVIQZjvTET0pSgi2o", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "definition of nursing intervention", "datetime": "2026-03-12 19:53:51.412692", "source": "google", "data": ["definition of nursing intervention", [["definition of nursing interventions", 0, [512]], ["definition of nursing interventions for pain control", 0, [22, 30]], ["meaning of nursing interventions", 0, [22, 30]], ["meaning of nursing intervention in hindi", 0, [22, 30]], ["definition of nursing care plan", 0, [22, 30]], ["definition of nursing care", 0, [22, 30]], ["definition of nursing diagnosis according to nanda", 0, [22, 30]], ["definition of nursing care delivery system", 0, [22, 30]], ["definition of nursing care process", 0, [22, 30]], ["definition of nursing care plan according to nanda", 0, [22, 30]]], {"i": "definition of nursing intervention", "q": "J_OzAwu-RO4L0cIScdgyXWjfsN8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["definition of nursing interventions", "definition of nursing interventions for pain control", "meaning of nursing interventions", "meaning of nursing intervention in hindi", "definition of nursing care plan", "definition of nursing care", "definition of nursing diagnosis according to nanda", "definition of nursing care delivery system", "definition of nursing care process", "definition of nursing care plan according to nanda"], "self_loops": [], "tags": {"i": "definition of nursing intervention", "q": "J_OzAwu-RO4L0cIScdgyXWjfsN8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "definition of abortion ppt nursing", "datetime": "2026-03-12 19:53:52.323090", "source": "google", "data": ["definition of abortion ppt nursing", [["definition of abortion ppt nursing", 0, [512]], ["definition of abortion in nursing slideshare", 0, [22, 30]], ["what is abortion ppt", 0, [512, 390, 650]], ["types of abortion ppt", 0, [512, 390, 650]], ["what is abortion in nursing", 0, [512, 390, 650]], ["types of abortion and its nursing management", 0, [512, 390, 650]], ["abortion ppt for nursing students", 0, [512, 546]], ["different types of abortion ppt", 0, [512, 546]], ["definition of abortion medical", 0, [512, 546]]], {"i": "definition of abortion ppt nursing", "q": "71zs8pjN4n74A4NvC0hP2v1-5kE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["definition of abortion ppt nursing", "definition of abortion in nursing slideshare", "what is abortion ppt", "types of abortion ppt", "what is abortion in nursing", "types of abortion and its nursing management", "abortion ppt for nursing students", "different types of abortion ppt", "definition of abortion medical"], "self_loops": [0], "tags": {"i": "definition of abortion ppt nursing", "q": "71zs8pjN4n74A4NvC0hP2v1-5kE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is abortion definition in nursing", "datetime": "2026-03-12 19:53:53.676873", "source": "google", "data": ["what is abortion definition in nursing", [["what is abortion definition in nursing", 0, [512]], ["what is abortion in nursing", 0, [512, 390, 650]], ["what is abortion according to who", 0, [512, 390, 650]], ["types of abortion nursing", 0, [512, 390, 650]], ["what is abortion defined as", 0, [546, 649]], ["what is abortion in detail", 0, [546, 649]]], {"i": "what is abortion definition in nursing", "q": "TAhOJGirlivlpb8k8x04hDn0aE0", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is abortion definition in nursing", "what is abortion in nursing", "what is abortion according to who", "types of abortion nursing", "what is abortion defined as", "what is abortion in detail"], "self_loops": [0], "tags": {"i": "what is abortion definition in nursing", "q": "TAhOJGirlivlpb8k8x04hDn0aE0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is an incomplete abortion in nursing diagnosis", "datetime": "2026-03-12 19:53:54.991447", "source": "google", "data": ["what is an incomplete abortion in nursing diagnosis", [["what is an incomplete abortion in nursing diagnosis", 0, [22, 30]], ["nursing diagnosis for complete abortion", 0, [512, 390, 650]], ["differential diagnosis for incomplete abortion", 0, [512, 390, 650]], ["nursing diagnosis for incomplete miscarriage", 0, [512, 390, 650]], ["what is a incomplete abortion", 0, [512, 390, 650]], ["what is an incomplete abortion and what causes it", 0, [751]], ["incomplete abortion nursing intervention", 0, [751]], ["what does an incomplete abortion look like", 0, [512, 546]], ["incomplete abortion nurseslabs", 0, [751]]], {"i": "what is an incomplete abortion in nursing diagnosis", "q": "9lhT976vxAfzwXhQAVD5PJZgq_U", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is an incomplete abortion in nursing diagnosis", "nursing diagnosis for complete abortion", "differential diagnosis for incomplete abortion", "nursing diagnosis for incomplete miscarriage", "what is a incomplete abortion", "what is an incomplete abortion and what causes it", "incomplete abortion nursing intervention", "what does an incomplete abortion look like", "incomplete abortion nurseslabs"], "self_loops": [0], "tags": {"i": "what is an incomplete abortion in nursing diagnosis", "q": "9lhT976vxAfzwXhQAVD5PJZgq_U", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "nursing care in abortions", "datetime": "2026-03-12 19:53:56.057856", "source": "google", "data": ["nursing care in abortions", [["nursing care in abortion", 0, [22, 30]], ["nursing care plan in abortion", 0, [22, 30]], ["nursing management of complete abortion", 0, [512, 390, 650]], ["what is abortion in nursing", 0, [512, 390, 650]], ["types of post abortion care", 0, [512, 390, 650]], ["nice abortion care guidelines", 0, [512, 390, 650]], ["nurses role in abortion", 0, [512, 546]]], {"i": "nursing care in abortions", "q": "QUD9F2-53yCMYcyGRFpUfsIA8yE", "t": {"bpc": false, "tlw": false}}], "suggests": ["nursing care in abortion", "nursing care plan in abortion", "nursing management of complete abortion", "what is abortion in nursing", "types of post abortion care", "nice abortion care guidelines", "nurses role in abortion"], "self_loops": [], "tags": {"i": "nursing care in abortions", "q": "QUD9F2-53yCMYcyGRFpUfsIA8yE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is abandonment in nursing", "datetime": "2026-03-12 19:53:57.260113", "source": "google", "data": ["what is abandonment in nursing", [["what is abandonment in nursing", 0, [512]], ["what is patient abandonment in nursing", 0, [22, 30]], ["what is considered abandonment in nursing", 0, [22, 30]], ["what is job abandonment in nursing", 0, [22, 30]], ["what is abandonment in a nursing home", 0, [22, 30]], ["what is considered patient abandonment in nursing", 0, [22, 30]], ["what is considered abandonment in a nursing home", 0, [22, 30]], ["what is the definition of abandonment in nursing", 0, [22, 30]], ["what constitutes patient abandonment in nursing", 0, [512, 390, 650]]], {"i": "what is abandonment in nursing", "q": "IdXmIoGHfz-9-TDHWQKBFhsSgsQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is abandonment in nursing", "what is patient abandonment in nursing", "what is considered abandonment in nursing", "what is job abandonment in nursing", "what is abandonment in a nursing home", "what is considered patient abandonment in nursing", "what is considered abandonment in a nursing home", "what is the definition of abandonment in nursing", "what constitutes patient abandonment in nursing"], "self_loops": [0], "tags": {"i": "what is abandonment in nursing", "q": "IdXmIoGHfz-9-TDHWQKBFhsSgsQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is a nursing interventions", "datetime": "2026-03-12 19:53:58.618065", "source": "google", "data": ["what is a nursing interventions", [["what is a nursing interventions", 0, [22, 30]], ["what is a nursing intervention for hypertension", 0, [22, 30]], ["what is a nursing intervention for constipation", 0, [22, 30]], ["what is a nursing intervention for pain", 0, [22, 30]], ["what is a nursing intervention for pneumonia", 0, [22, 30]], ["what is a nursing intervention for anxiety", 0, [22, 30]], ["what is nursing interventions classification", 0, [22, 30]], ["what is a nursing diagnosis", 0, [22, 30]], ["what is a nursing care plan", 0, [22, 30]], ["what is a nursing diagnosis for hypertension", 0, [22, 30]]], {"i": "what is a nursing interventions", "q": "AFA84M2c3kKWw31uRdfj7cKdxM0", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is a nursing interventions", "what is a nursing intervention for hypertension", "what is a nursing intervention for constipation", "what is a nursing intervention for pain", "what is a nursing intervention for pneumonia", "what is a nursing intervention for anxiety", "what is nursing interventions classification", "what is a nursing diagnosis", "what is a nursing care plan", "what is a nursing diagnosis for hypertension"], "self_loops": [0], "tags": {"i": "what is a nursing interventions", "q": "AFA84M2c3kKWw31uRdfj7cKdxM0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects long-term", "datetime": "2026-03-12 19:53:59.425356", "source": "google", "data": ["abortion pill side effects long-term", [["abortion pill side effects long-term", 0, [512]], ["abortion pill side effects long term reddit", 0, [22, 30]], ["morning after pill side effects long term reddit", 0, [22, 30]], ["morning after pill effects long term", 0, [22, 30]], ["morning after pill effects long term several times", 0, [22, 30]], ["does abortion pill have long term side effects", 0, [22, 30]], ["what are the long term effects of the abortion pill", 0, [512, 390, 650]], ["long term effects of medical abortion", 0, [512, 390, 650]]], {"i": "abortion pill side effects long-term", "q": "8R4q445yqueRHJQCvH0RzOn1TJk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill side effects long-term", "abortion pill side effects long term reddit", "morning after pill side effects long term reddit", "morning after pill effects long term", "morning after pill effects long term several times", "does abortion pill have long term side effects", "what are the long term effects of the abortion pill", "long term effects of medical abortion"], "self_loops": [0], "tags": {"i": "abortion pill side effects long-term", "q": "8R4q445yqueRHJQCvH0RzOn1TJk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill symptoms reddit", "datetime": "2026-03-12 19:54:00.637613", "source": "google", "data": ["abortion pill symptoms reddit", [["abortion pill symptoms reddit", 0, [512]], ["abortion pill effects reddit", 0, [22, 30]], ["abortion pill risks reddit", 0, [22, 30]], ["abortion pill side effects reddit", 0, [22, 30]], ["abortion pill after effects reddit", 0, [22, 30]], ["symptoms after abortion pill reddit", 0, [22, 30]], ["abortion pill vs surgery reddit", 0, [512, 390, 650]], ["abortion pill reviews reddit", 0, [512, 390, 650]], ["what does the abortion pill feel like reddit", 0, [512, 390, 650]], ["abortion pill reddit pain", 0, [512, 546]]], {"i": "abortion pill symptoms reddit", "q": "IpKN1dn3PDgQtkDqjgA0cd8U_HU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill symptoms reddit", "abortion pill effects reddit", "abortion pill risks reddit", "abortion pill side effects reddit", "abortion pill after effects reddit", "symptoms after abortion pill reddit", "abortion pill vs surgery reddit", "abortion pill reviews reddit", "what does the abortion pill feel like reddit", "abortion pill reddit pain"], "self_loops": [0], "tags": {"i": "abortion pill symptoms reddit", "q": "IpKN1dn3PDgQtkDqjgA0cd8U_HU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion side effects reddit", "datetime": "2026-03-12 19:54:02.055084", "source": "google", "data": ["abortion side effects reddit", [["abortion side effects reddit", 0, [512]], ["abortion after effects reddit", 0, [22, 30]], ["abortion pill side effects reddit", 0, [22, 30]], ["medical abortion side effects reddit", 0, [22, 30]], ["surgical abortion side effects reddit", 0, [22, 30]], ["abortion pill after effects reddit", 0, [22, 30]], ["surgical.abortion after effects reddit", 0, [22, 10, 30]], ["medical abortion after effects reddit", 0, [22, 30]], ["abortion pill long term side effects reddit", 0, [22, 30]], ["first abortion pill side effects reddit", 0, [22, 30]]], {"i": "abortion side effects reddit", "q": "kkjsxBmh0HMN2mt8URhosfkNO6A", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion side effects reddit", "abortion after effects reddit", "abortion pill side effects reddit", "medical abortion side effects reddit", "surgical abortion side effects reddit", "abortion pill after effects reddit", "surgical.abortion after effects reddit", "medical abortion after effects reddit", "abortion pill long term side effects reddit", "first abortion pill side effects reddit"], "self_loops": [0], "tags": {"i": "abortion side effects reddit", "q": "kkjsxBmh0HMN2mt8URhosfkNO6A", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill effects reddit", "datetime": "2026-03-12 19:54:03.076558", "source": "google", "data": ["abortion pill effects reddit", [["abortion pill effects reddit", 0, [512]], ["abortion pill experience reddit", 0, [22, 30]], ["abortion side effects reddit", 0, [22, 30]], ["abortion pill experience reddit 4 weeks", 0, [22, 30]], ["abortion pill experience reddit india", 0, [22, 30]], ["abortion pill side effects reddit", 0, [22, 30]], ["abortion pill after effects reddit", 0, [22, 30]], ["miscarriage pill experience reddit", 0, [22, 30]], ["morning after pill side effects reddit", 0, [22, 30]], ["medical abortion side effects reddit", 0, [22, 30]]], {"i": "abortion pill effects reddit", "q": "nNMDyNduZCYnO-NQ51yEGBeA6P8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill effects reddit", "abortion pill experience reddit", "abortion side effects reddit", "abortion pill experience reddit 4 weeks", "abortion pill experience reddit india", "abortion pill side effects reddit", "abortion pill after effects reddit", "miscarriage pill experience reddit", "morning after pill side effects reddit", "medical abortion side effects reddit"], "self_loops": [0], "tags": {"i": "abortion pill effects reddit", "q": "nNMDyNduZCYnO-NQ51yEGBeA6P8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does the morning after pill have long term effects", "datetime": "2026-03-12 19:54:03.915319", "source": "google", "data": ["does the morning after pill have long term effects", [["does the morning after pill have long term effects", 0, [512]], ["can the morning after pill have long term effects", 0, [22, 30]], ["does taking the morning after pill have long term effects", 0, [22, 30]], ["does the morning after pill have any long lasting side effects", 0, [22, 30]], ["does morning after pill have long term side effects", 0, [512, 390, 650]], ["how long can side effects of the morning after pill last", 0, [512, 390, 650]], ["can the morning after pill cause permanent damage", 0, [512, 390, 650]], ["can the morning after pill cause long term effects", 0, [546, 649]], ["long term side effects of morning-after pill", 0, [751]], ["does the morning after pill affect your period", 0, [512, 546]]], {"i": "does the morning after pill have long term effects", "q": "W74gT6KB9fHdNxPeTM325PUUvIo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does the morning after pill have long term effects", "can the morning after pill have long term effects", "does taking the morning after pill have long term effects", "does the morning after pill have any long lasting side effects", "does morning after pill have long term side effects", "how long can side effects of the morning after pill last", "can the morning after pill cause permanent damage", "can the morning after pill cause long term effects", "long term side effects of morning-after pill", "does the morning after pill affect your period"], "self_loops": [0], "tags": {"i": "does the morning after pill have long term effects", "q": "W74gT6KB9fHdNxPeTM325PUUvIo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "long term effects of plan b reddit", "datetime": "2026-03-12 19:54:04.732486", "source": "google", "data": ["long term effects of plan b reddit", [["long term effects of plan b reddit", 0, [512]], ["long term side effects of plan b reddit", 0, [22, 30]], ["common side effects of plan b reddit", 0, [22, 30]], ["emotional side effects of plan b reddit", 0, [22, 30]], ["does plan b have long term effects", 0, [512, 390, 650]], ["how does plan b affect you long term", 0, [512, 390, 650]], ["what does plan b do to your body long term", 0, [512, 390, 650]], ["long term effects of.plan b", 0, [751]]], {"i": "long term effects of plan b reddit", "q": "C3M3v9bEfeI1iydTQJC8MNUD3ss", "t": {"bpc": false, "tlw": false}}], "suggests": ["long term effects of plan b reddit", "long term side effects of plan b reddit", "common side effects of plan b reddit", "emotional side effects of plan b reddit", "does plan b have long term effects", "how does plan b affect you long term", "what does plan b do to your body long term", "long term effects of.plan b"], "self_loops": [0], "tags": {"i": "long term effects of plan b reddit", "q": "C3M3v9bEfeI1iydTQJC8MNUD3ss", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "plan b side effects long-term reddit", "datetime": "2026-03-12 19:54:05.827021", "source": "google", "data": ["plan b side effects long-term reddit", [["plan b side effects long term reddit", 0, [22, 30]], ["morning after pill side effects long term reddit", 0, [22, 30]], ["long term effects of plan b reddit", 0, [512, 390, 650]], ["does plan b have long term effects", 0, [512, 390, 650]], ["can plan b have side effects a week later", 0, [512, 390, 650]], ["how does plan b affect you long term", 0, [512, 390, 650]], ["plan b side effects how long reddit", 0, [512, 546]], ["plan b long-term side effects in fertility reddit", 0, [751]], ["plan b side effects months later reddit", 0, [512, 546]]], {"i": "plan b side effects long-term reddit", "q": "VGaW2xxTsOaMAD7G86MIjKgI6Jc", "t": {"bpc": false, "tlw": false}}], "suggests": ["plan b side effects long term reddit", "morning after pill side effects long term reddit", "long term effects of plan b reddit", "does plan b have long term effects", "can plan b have side effects a week later", "how does plan b affect you long term", "plan b side effects how long reddit", "plan b long-term side effects in fertility reddit", "plan b side effects months later reddit"], "self_loops": [], "tags": {"i": "plan b side effects long-term reddit", "q": "VGaW2xxTsOaMAD7G86MIjKgI6Jc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "metformin side effects long-term reddit", "datetime": "2026-03-12 19:54:06.799725", "source": "google", "data": ["metformin side effects long-term reddit", [["metformin side effects long term reddit", 0, [22, 30]], ["metformin side effects in women long term reddit", 0, [22, 30]], ["is metformin bad for you long term", 0, [512, 390, 650]], ["is metformin safe to take long term", 0, [512, 390, 650]], ["does metformin have long term side effects", 0, [512, 390, 650]], ["is taking metformin long term dangerous", 0, [512, 390, 650]], ["metformin side effects long term use", 0, [512, 546]], ["metformin side effects reddit", 0, [512, 546]], ["metformin side effects long-term", 0, [512, 546]]], {"i": "metformin side effects long-term reddit", "q": "qq5GGqEdMnAVDbZw7IVjNZd-Upc", "t": {"bpc": false, "tlw": false}}], "suggests": ["metformin side effects long term reddit", "metformin side effects in women long term reddit", "is metformin bad for you long term", "is metformin safe to take long term", "does metformin have long term side effects", "is taking metformin long term dangerous", "metformin side effects long term use", "metformin side effects reddit", "metformin side effects long-term"], "self_loops": [], "tags": {"i": "metformin side effects long-term reddit", "q": "qq5GGqEdMnAVDbZw7IVjNZd-Upc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "moringa side effects reddit", "datetime": "2026-03-12 19:54:07.663993", "source": "google", "data": ["moringa side effects reddit", [["moringa side effects reddit", 0, [512]], ["moringa powder side effects reddit", 0, [22, 30]], ["moringa tea side effects reddit", 0, [22, 30]], ["does moringa have side effects", 0, [512, 390, 650]], ["does moringa leaf have side effects", 0, [512, 390, 650]], ["does moringa leaves have side effects", 0, [512, 390, 650]], ["can moringa be harmful", 0, [512, 390, 650]], ["side effects of consuming moringa", 0, [512, 390, 650]], ["moringa side effects diarrhea", 0, [546, 649]], ["moringa side effects on skin", 0, [512, 546]]], {"i": "moringa side effects reddit", "q": "q3WLNnBhlfUpHnUikxnvoyM-_XU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["moringa side effects reddit", "moringa powder side effects reddit", "moringa tea side effects reddit", "does moringa have side effects", "does moringa leaf have side effects", "does moringa leaves have side effects", "can moringa be harmful", "side effects of consuming moringa", "moringa side effects diarrhea", "moringa side effects on skin"], "self_loops": [0], "tags": {"i": "moringa side effects reddit", "q": "q3WLNnBhlfUpHnUikxnvoyM-_XU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is it bad to take morning after pill multiple times", "datetime": "2026-03-12 19:54:09.114880", "source": "google", "data": ["is it bad to take morning after pill multiple times", [["is it bad to take morning after pill multiple times", 0, [22, 30]], ["is it safe to take the morning after pill multiple times", 0, [22, 30]], ["is it bad to take morning after pill too many times", 0, [22, 30]], ["is it dangerous to take the morning after pill multiple.times", 0, [22, 10, 30]], ["can you take morning after pill multiple times", 0, [22, 30]], ["how many times is it safe to take morning after pill", 0, [22, 30]], ["is it bad to take morning after pill too often", 0, [512, 390, 650]], ["is it bad to take morning after pill frequently", 0, [751]], ["is it bad to take multiple pills at once", 0, [512, 546]], ["is it bad to take plan b multiple times in a month", 0, [512, 546]]], {"i": "is it bad to take morning after pill multiple times", "q": "xzSKxkwK3MmbZrn8mp2fHZjWhY4", "t": {"bpc": false, "tlw": false}}], "suggests": ["is it bad to take morning after pill multiple times", "is it safe to take the morning after pill multiple times", "is it bad to take morning after pill too many times", "is it dangerous to take the morning after pill multiple.times", "can you take morning after pill multiple times", "how many times is it safe to take morning after pill", "is it bad to take morning after pill too often", "is it bad to take morning after pill frequently", "is it bad to take multiple pills at once", "is it bad to take plan b multiple times in a month"], "self_loops": [0], "tags": {"i": "is it bad to take morning after pill multiple times", "q": "xzSKxkwK3MmbZrn8mp2fHZjWhY4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can taking too many morning after pills be harmful", "datetime": "2026-03-12 19:54:10.407479", "source": "google", "data": ["can taking too many morning after pills be harmful", [["can taking too many plan b pills be harmful", 0, [22, 30]], ["is taking too much morning after pills be harmful", 0, [22, 30]], ["can taking too many plan b pills be bad", 0, [22, 30]], ["what happens if you take morning after pill too much", 0, [512, 390, 650]], ["is it bad to take morning after pill too often", 0, [512, 390, 650]], ["can taking too many plan b pills affect you", 0, [512, 546]], ["can taking too many plan b pills hurt you", 0, [751]]], {"i": "can taking too many morning after pills be harmful", "q": "010TPHEJleT9zc1BBp2kKjLz-zM", "t": {"bpc": false, "tlw": false}}], "suggests": ["can taking too many plan b pills be harmful", "is taking too much morning after pills be harmful", "can taking too many plan b pills be bad", "what happens if you take morning after pill too much", "is it bad to take morning after pill too often", "can taking too many plan b pills affect you", "can taking too many plan b pills hurt you"], "self_loops": [], "tags": {"i": "can taking too many morning after pills be harmful", "q": "010TPHEJleT9zc1BBp2kKjLz-zM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "long term side effects of morning-after pill", "datetime": "2026-03-12 19:54:11.327508", "source": "google", "data": ["long term side effects of morning-after pill", [["long term side effects of plan b morning after pill", 0, [22, 30]], ["are there long term side effects of morning after pill", 0, [22, 30]], ["long term side effects of plan b pill", 0, [22, 30]], ["long term side effects of emergency pills", 0, [22, 30]], ["long term side effects of emergency contraceptive pills", 0, [22, 30]], ["does the morning after pill have long term effects", 0, [512, 390, 650]], ["long term use of morning after pill", 0, [512, 390, 650]], ["can the morning after pill cause long term effects", 0, [546, 649]]], {"i": "long term side effects of morning-after pill", "q": "PJoo-X2XLsPmEq4wf1C3cEzKn2E", "t": {"bpc": false, "tlw": false}}], "suggests": ["long term side effects of plan b morning after pill", "are there long term side effects of morning after pill", "long term side effects of plan b pill", "long term side effects of emergency pills", "long term side effects of emergency contraceptive pills", "does the morning after pill have long term effects", "long term use of morning after pill", "can the morning after pill cause long term effects"], "self_loops": [], "tags": {"i": "long term side effects of morning-after pill", "q": "PJoo-X2XLsPmEq4wf1C3cEzKn2E", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects a week later", "datetime": "2026-03-12 19:54:12.484086", "source": "google", "data": ["morning after pill side effects a week later", [["morning after pill side effects a week later", 0, [512]], ["morning after pill side effects 1 week later", 0, [22, 30]], ["morning after pill side effects bleeding week later", 0, [22, 30]], ["morning after pill side effects 2 weeks later", 0, [22, 30]], ["morning after pill side effects 3 weeks later", 0, [22, 30]], ["can plan b have side effects a week later", 0, [512, 390, 650]], ["can plan b give you side effects a week later", 0, [512, 390, 650]], ["can the morning after pill make you feel sick a week later", 0, [512, 390, 650]], ["morning after pill symptoms a week later", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]]], {"i": "morning after pill side effects a week later", "q": "hxrWX_Qu5vcWdfTokXT39LUARAo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill side effects a week later", "morning after pill side effects 1 week later", "morning after pill side effects bleeding week later", "morning after pill side effects 2 weeks later", "morning after pill side effects 3 weeks later", "can plan b have side effects a week later", "can plan b give you side effects a week later", "can the morning after pill make you feel sick a week later", "morning after pill symptoms a week later", "morning after pill side effects menstrual cycle"], "self_loops": [0], "tags": {"i": "morning after pill side effects a week later", "q": "hxrWX_Qu5vcWdfTokXT39LUARAo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning-after pills works after how long", "datetime": "2026-03-12 19:54:13.485607", "source": "google", "data": ["morning-after pills works after how long", [["morning after pills works after how long", 0, [22, 30]], ["morning after pills works after how many hours", 0, [22, 30]], ["morning after pills works after how many days", 0, [22, 30]], ["day after pill works for how long", 0, [22, 30]], ["how many days does it take for the morning after pill to work", 0, [512, 390, 650]], ["how effective is the morning after pill after 3 days", 0, [512, 390, 650]], ["does the morning after pill work the day after", 0, [512, 390, 650]], ["can you still take the morning after pill after 3 days", 0, [512, 390, 650]], ["how effective is the morning after pill after 4 days", 0, [512, 390, 650]], ["morning after pill how long does it work", 0, [512, 546]]], {"i": "morning-after pills works after how long", "q": "-qWNmFQ1KSzqoLDR4R75jco_sEg", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pills works after how long", "morning after pills works after how many hours", "morning after pills works after how many days", "day after pill works for how long", "how many days does it take for the morning after pill to work", "how effective is the morning after pill after 3 days", "does the morning after pill work the day after", "can you still take the morning after pill after 3 days", "how effective is the morning after pill after 4 days", "morning after pill how long does it work"], "self_loops": [], "tags": {"i": "morning-after pills works after how long", "q": "-qWNmFQ1KSzqoLDR4R75jco_sEg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill cause longer period", "datetime": "2026-03-12 19:54:14.313919", "source": "google", "data": ["morning after pill cause longer period", [["morning after pill cause longer period", 0, [22, 30]], ["morning after pill causing long period", 0, [22, 30]], ["morning after pill side effects long period", 0, [22, 30]], ["can morning after pill cause longer period", 0, [22, 30]], ["can morning after pill cause long periods", 0, [22, 30]], ["can morning after pill cause prolonged periods", 0, [22, 30]], ["can taking the morning after pill make your period longer", 0, [512, 390, 650]], ["can the morning after pill make your period longer", 0, [512, 390, 650]], ["morning after pill makes period early", 0, [512, 546]], ["morning after pill change cycle", 0, [546, 649]]], {"i": "morning after pill cause longer period", "q": "RjcWIq8ec_ynhsEZEvN3J0nwsMs", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill cause longer period", "morning after pill causing long period", "morning after pill side effects long period", "can morning after pill cause longer period", "can morning after pill cause long periods", "can morning after pill cause prolonged periods", "can taking the morning after pill make your period longer", "can the morning after pill make your period longer", "morning after pill makes period early", "morning after pill change cycle"], "self_loops": [0], "tags": {"i": "morning after pill cause longer period", "q": "RjcWIq8ec_ynhsEZEvN3J0nwsMs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does the morning after pill have any long lasting side effects", "datetime": "2026-03-12 19:54:15.525309", "source": "google", "data": ["does the morning after pill have any long lasting side effects", [["does the morning after pill have any long lasting side effects", 0, [30]]], {"i": "does the morning after pill have any long lasting side effects", "q": "BqApRIUeUopptNq2XcHmJQ9OLzY", "t": {"bpc": false, "tlw": false}}], "suggests": ["does the morning after pill have any long lasting side effects"], "self_loops": [0], "tags": {"i": "does the morning after pill have any long lasting side effects", "q": "BqApRIUeUopptNq2XcHmJQ9OLzY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what are the long term side effects of abortion pills", "datetime": "2026-03-12 19:54:16.626500", "source": "google", "data": ["what are the long term side effects of abortion pills", [["what are the long term side effects of abortion pills", 0, [512]], ["what are the long term side effects of taking abortion pill", 0, [22, 30]], ["long term side effects of abortion pills procedures", 0, [22, 30]], ["long term side effects of abortion pill reddit", 0, [22, 30]], ["are there any long term side effects of abortion pills", 0, [22, 30]], ["what are the long term effects of the abortion pill", 0, [512, 390, 650]], ["what are long term side effects of abortion", 0, [512, 390, 650]], ["what are the long term effects of an abortion", 0, [512, 546]], ["long term effects of abortion pill on the body", 0, [751]]], {"i": "what are the long term side effects of abortion pills", "q": "sip1cbYZSe0L7yZ0NCpJPdBevp8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what are the long term side effects of abortion pills", "what are the long term side effects of taking abortion pill", "long term side effects of abortion pills procedures", "long term side effects of abortion pill reddit", "are there any long term side effects of abortion pills", "what are the long term effects of the abortion pill", "what are long term side effects of abortion", "what are the long term effects of an abortion", "long term effects of abortion pill on the body"], "self_loops": [0], "tags": {"i": "what are the long term side effects of abortion pills", "q": "sip1cbYZSe0L7yZ0NCpJPdBevp8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does abortion pill have side effects", "datetime": "2026-03-12 19:54:17.655137", "source": "google", "data": ["does abortion pill have side effects", [["does abortion pill have side effects", 0, [512]], ["does morning after pill have side effects", 0, [22, 30]], ["can abortion pill have side effects", 0, [22, 30]], ["do morning after pill have side effects", 0, [22, 30]], ["does first abortion pill have side effects", 0, [22, 30]], ["does abortion pill have bad side effects", 0, [22, 30]], ["what are the long term side effects of abortion pills", 0, [512, 390, 650]], ["what are the long term effects of the abortion pill", 0, [512, 390, 650]], ["does abortion have side effects", 0, [512, 546]], ["does abortion pill make you sick", 0, [512, 546]]], {"i": "does abortion pill have side effects", "q": "hns-USfzLf2gGBddbUsZcGdq4nQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does abortion pill have side effects", "does morning after pill have side effects", "can abortion pill have side effects", "do morning after pill have side effects", "does first abortion pill have side effects", "does abortion pill have bad side effects", "what are the long term side effects of abortion pills", "what are the long term effects of the abortion pill", "does abortion have side effects", "does abortion pill make you sick"], "self_loops": [0], "tags": {"i": "does abortion pill have side effects", "q": "hns-USfzLf2gGBddbUsZcGdq4nQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "long term effects of abortion pill on the body", "datetime": "2026-03-12 19:54:19.043955", "source": "google", "data": ["long term effects of abortion pill on the body", [["long term effects of abortion pill on the body", 0, [22, 30]], ["long term effects of a medical abortion", 0, [512, 390, 650]], ["long term effects of abortion on the body", 0, [512, 390, 650]], ["long term effects of abortion", 0, [512, 390, 650]], ["long term effects of the abortion pill", 0, [512, 546]]], {"i": "long term effects of abortion pill on the body", "q": "IrLRil6ZQRnfNzZvnna0zWBTAf4", "t": {"bpc": false, "tlw": false}}], "suggests": ["long term effects of abortion pill on the body", "long term effects of a medical abortion", "long term effects of abortion on the body", "long term effects of abortion", "long term effects of the abortion pill"], "self_loops": [0], "tags": {"i": "long term effects of abortion pill on the body", "q": "IrLRil6ZQRnfNzZvnna0zWBTAf4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what are the long term effects of the morning after pill", "datetime": "2026-03-12 19:54:19.980330", "source": "google", "data": ["what are the long term effects of the morning after pill", [["what are the long term effects of the morning after pill", 0, [30]], ["what are the long term side effects of the morning after pill", 0, [8, 30]], ["does the morning after pill have long term effects", 0, [512, 390, 650]], ["what are the long term effects of plan b", 0, [512, 546]]], {"i": "what are the long term effects of the morning after pill", "q": "gOi13UkbrVDBrvI2opOMcuCvztk", "t": {"bpc": false, "tlw": false}}], "suggests": ["what are the long term effects of the morning after pill", "what are the long term side effects of the morning after pill", "does the morning after pill have long term effects", "what are the long term effects of plan b"], "self_loops": [0], "tags": {"i": "what are the long term effects of the morning after pill", "q": "gOi13UkbrVDBrvI2opOMcuCvztk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what are the long term side effects of the abortion pill", "datetime": "2026-03-12 19:54:21.149964", "source": "google", "data": ["what are the long term side effects of the abortion pill", [["what are the long term side effects of the abortion pill", 0, [512]], ["what are the long term effects of the abortion pill", 0, [512, 390, 650]], ["what are long term side effects of abortion", 0, [512, 390, 650]], ["what are the long term effects of an abortion", 0, [512, 546]], ["long term effects of abortion pill on the body", 0, [751]]], {"i": "what are the long term side effects of the abortion pill", "q": "y-loiIBw7IN0j50cCVqQsTxzhA8", "t": {"bpc": false, "tlw": false}}], "suggests": ["what are the long term side effects of the abortion pill", "what are the long term effects of the abortion pill", "what are long term side effects of abortion", "what are the long term effects of an abortion", "long term effects of abortion pill on the body"], "self_loops": [0], "tags": {"i": "what are the long term side effects of the abortion pill", "q": "y-loiIBw7IN0j50cCVqQsTxzhA8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what are the long term effects of taking the abortion pill", "datetime": "2026-03-12 19:54:22.236471", "source": "google", "data": ["what are the long term effects of taking the abortion pill", [["what are the long term effects of taking the abortion pill", 0, [512]], ["what are the long term effects of the abortion pill", 0, [512, 390, 650]], ["what are the long term side effects of abortion pills", 0, [512, 390, 650]], ["long term effects of a medical abortion", 0, [512, 390, 650]], ["what are the long term effects of an abortion", 0, [512, 546]], ["long term effects of abortion pill on the body", 0, [751]]], {"i": "what are the long term effects of taking the abortion pill", "q": "gIPGQnTB6jRwWIbLC9BUXbKkXjc", "t": {"bpc": false, "tlw": false}}], "suggests": ["what are the long term effects of taking the abortion pill", "what are the long term effects of the abortion pill", "what are the long term side effects of abortion pills", "long term effects of a medical abortion", "what are the long term effects of an abortion", "long term effects of abortion pill on the body"], "self_loops": [0], "tags": {"i": "what are the long term effects of taking the abortion pill", "q": "gIPGQnTB6jRwWIbLC9BUXbKkXjc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what are the long term side effects of the morning after pill", "datetime": "2026-03-12 19:54:23.335026", "source": "google", "data": ["what are the long term side effects of the morning after pill", [["what are the long term side effects of the morning after pill", 0, [30]]], {"i": "what are the long term side effects of the morning after pill", "q": "pEfF6XGwfuClYQ2ljrUhLgCE92E", "t": {"bpc": false, "tlw": false}}], "suggests": ["what are the long term side effects of the morning after pill"], "self_loops": [0], "tags": {"i": "what are the long term side effects of the morning after pill", "q": "pEfF6XGwfuClYQ2ljrUhLgCE92E", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what are the side effects of the morning after pill", "datetime": "2026-03-12 19:54:24.408314", "source": "google", "data": ["what are the side effects of the morning after pill", [["what are the side effects of the morning after pill", 0, [512]], ["what are the side effects of the morning after pill and how long does it last", 0, [512]], ["what are the side effects of the morning after pill long term", 0, [22, 30]], ["what are the side effects of the day after pill", 0, [22, 30]], ["what are the side effects of taking the morning after pill too often", 0, [22, 30]], ["what are the negative side effects of the morning after pill", 0, [22, 30]], ["what are the worst side effects of the morning after pill", 0, [22, 30]], ["what are the side effects of the ellaone morning after pill", 0, [22, 30]], ["what are the most common side effects of the morning after pill", 0, [22, 30]], ["what are the side effects of norlevo morning after pill", 0, [22, 30]]], {"i": "what are the side effects of the morning after pill", "q": "5kFkahkYi6L1pHTAwbKaFCy3_8M", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what are the side effects of the morning after pill", "what are the side effects of the morning after pill and how long does it last", "what are the side effects of the morning after pill long term", "what are the side effects of the day after pill", "what are the side effects of taking the morning after pill too often", "what are the negative side effects of the morning after pill", "what are the worst side effects of the morning after pill", "what are the side effects of the ellaone morning after pill", "what are the most common side effects of the morning after pill", "what are the side effects of norlevo morning after pill"], "self_loops": [0], "tags": {"i": "what are the side effects of the morning after pill", "q": "5kFkahkYi6L1pHTAwbKaFCy3_8M", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are there long term effects of the abortion pill", "datetime": "2026-03-12 19:54:25.656280", "source": "google", "data": ["are there long term effects of the abortion pill", [["are there long term effects of the abortion pill", 0, [22, 30]], ["are there long term effects of the morning after pill", 0, [22, 30]], ["are there long term side effects of the abortion pill", 0, [22, 30]], ["are there any long term side effects of the morning after pill", 0, [22, 30]], ["are there side effects of the abortion pill", 0, [22, 30]], ["are there side effects of the morning after pill", 0, [22, 30]], ["what are the long term effects of the abortion pill", 0, [22, 30]], ["long term effects of abortion", 0, [512, 390, 650]], ["does abortion have long term effects", 0, [512, 390, 650]]], {"i": "are there long term effects of the abortion pill", "q": "FoqqQgLgxnqdU1JQKMNNYUezSjk", "t": {"bpc": false, "tlw": false}}], "suggests": ["are there long term effects of the abortion pill", "are there long term effects of the morning after pill", "are there long term side effects of the abortion pill", "are there any long term side effects of the morning after pill", "are there side effects of the abortion pill", "are there side effects of the morning after pill", "what are the long term effects of the abortion pill", "long term effects of abortion", "does abortion have long term effects"], "self_loops": [0], "tags": {"i": "are there long term effects of the abortion pill", "q": "FoqqQgLgxnqdU1JQKMNNYUezSjk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what are the side effects of the first abortion pill", "datetime": "2026-03-12 19:54:27.131630", "source": "google", "data": ["what are the side effects of the first abortion pill", [["what are the side effects of the first abortion pill", 0, [512]], ["what are the symptoms of the first abortion pill", 0, [22, 30]], ["how does first abortion pill make you feel", 0, [512, 390, 650]]], {"i": "what are the side effects of the first abortion pill", "q": "rXXYczhYjB9kJcIHR2SxnMUtS2Y", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what are the side effects of the first abortion pill", "what are the symptoms of the first abortion pill", "how does first abortion pill make you feel"], "self_loops": [0], "tags": {"i": "what are the side effects of the first abortion pill", "q": "rXXYczhYjB9kJcIHR2SxnMUtS2Y", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what are the side effects of the morning after pill and how long does it last", "datetime": "2026-03-12 19:54:28.321267", "source": "google", "data": ["what are the side effects of the morning after pill and how long does it last", [["what are the side effects of the morning after pill and how long does it last", 0, [512]]], {"i": "what are the side effects of the morning after pill and how long does it last", "q": "tmBfzt_XGZe9j2vIECMRi-eMRC4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what are the side effects of the morning after pill and how long does it last"], "self_loops": [0], "tags": {"i": "what are the side effects of the morning after pill and how long does it last", "q": "tmBfzt_XGZe9j2vIECMRi-eMRC4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what are the negative side effects of the morning after pill", "datetime": "2026-03-12 19:54:29.119319", "source": "google", "data": ["what are the negative side effects of the morning after pill", [["what are the negative side effects of the morning after pill", 0, [512]], ["negative impact of morning after pill", 0, [512, 390, 650]], ["does the morning after pill have long term effects", 0, [512, 390, 650]], ["what are side effects of the morning after pill", 0, [512, 546]]], {"i": "what are the negative side effects of the morning after pill", "q": "LWa3vF7sbinZZRA7vknNPWvdSzI", "t": {"bpc": false, "tlw": false}}], "suggests": ["what are the negative side effects of the morning after pill", "negative impact of morning after pill", "does the morning after pill have long term effects", "what are side effects of the morning after pill"], "self_loops": [0], "tags": {"i": "what are the negative side effects of the morning after pill", "q": "LWa3vF7sbinZZRA7vknNPWvdSzI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "long term risks of medical abortion", "datetime": "2026-03-12 19:54:30.421523", "source": "google", "data": ["long term risks of medical abortion", [["long term risks of medical abortion", 0, [22, 30]], ["long term effects of medical abortion", 0, [22, 30]], ["long term complications of medical abortion", 0, [22, 30]], ["long term side effects of medical abortion", 0, [22, 30]], ["long term side effects of abortion medicine", 0, [22, 30]], ["long term risks of abortion", 0, [546, 649]], ["long term risks of abortion pill", 0, [512, 546]]], {"i": "long term risks of medical abortion", "q": "a3fV-pDU6EdEqcnkHNHQtSu6T8I", "t": {"bpc": false, "tlw": false}}], "suggests": ["long term risks of medical abortion", "long term effects of medical abortion", "long term complications of medical abortion", "long term side effects of medical abortion", "long term side effects of abortion medicine", "long term risks of abortion", "long term risks of abortion pill"], "self_loops": [0], "tags": {"i": "long term risks of medical abortion", "q": "a3fV-pDU6EdEqcnkHNHQtSu6T8I", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "long term side effects of medical abortion", "datetime": "2026-03-12 19:54:31.334123", "source": "google", "data": ["long term side effects of medical abortion", [["long term side effects of medical abortion", 0, [512]], ["long term side effects of abortion medicine", 0, [22, 30]], ["are there long term side effects of medical abortion", 0, [22, 30]], ["long term complications of medical abortion", 0, [22, 30]], ["long term effects of a medical abortion", 0, [512, 390, 650]], ["long-term side effects of abortion procedures", 0, [512, 546]]], {"i": "long term side effects of medical abortion", "q": "ZHaVJBR0elrUZ935EjCUewR9yts", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["long term side effects of medical abortion", "long term side effects of abortion medicine", "are there long term side effects of medical abortion", "long term complications of medical abortion", "long term effects of a medical abortion", "long-term side effects of abortion procedures"], "self_loops": [0], "tags": {"i": "long term side effects of medical abortion", "q": "ZHaVJBR0elrUZ935EjCUewR9yts", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "long term side effects of abortion medicine", "datetime": "2026-03-12 19:54:32.473291", "source": "google", "data": ["long term side effects of abortion medicine", [["long term side effects of abortion medicine", 0, [22, 30]], ["long term side effects of abortion pill reddit", 0, [22, 30]], ["long term side effects of medical abortion procedures", 0, [22, 30]], ["any long term side effects of abortion pill", 0, [22, 30]], ["are there long term side effects of medical abortion", 0, [22, 30]], ["long term effects of a medical abortion", 0, [512, 390, 650]], ["long term effects of abortion", 0, [512, 390, 650]], ["long-term side effects of abortion procedures", 0, [512, 546]]], {"i": "long term side effects of abortion medicine", "q": "oOmAdFixxYc8otv8bxw4_R3BSH8", "t": {"bpc": false, "tlw": false}}], "suggests": ["long term side effects of abortion medicine", "long term side effects of abortion pill reddit", "long term side effects of medical abortion procedures", "any long term side effects of abortion pill", "are there long term side effects of medical abortion", "long term effects of a medical abortion", "long term effects of abortion", "long-term side effects of abortion procedures"], "self_loops": [0], "tags": {"i": "long term side effects of abortion medicine", "q": "oOmAdFixxYc8otv8bxw4_R3BSH8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are there long term side effects of medical abortion", "datetime": "2026-03-12 19:54:33.843594", "source": "google", "data": ["are there long term side effects of medical abortion", [["are there long term side effects of medical abortion", 0, [22, 30]], ["what are the long term side effects of medical abortion", 0, [22, 30]], ["long term effects of a medical abortion", 0, [512, 390, 650]], ["does abortion have long term effects", 0, [512, 390, 650]], ["what are the long term effects of an abortion", 0, [512, 546]]], {"i": "are there long term side effects of medical abortion", "q": "2wtER9w7XxIR5KU1Fwn2k_Ibqfc", "t": {"bpc": false, "tlw": false}}], "suggests": ["are there long term side effects of medical abortion", "what are the long term side effects of medical abortion", "long term effects of a medical abortion", "does abortion have long term effects", "what are the long term effects of an abortion"], "self_loops": [0], "tags": {"i": "are there long term side effects of medical abortion", "q": "2wtER9w7XxIR5KU1Fwn2k_Ibqfc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "are there long term effects of a medical abortion", "datetime": "2026-03-12 19:54:34.688023", "source": "google", "data": ["are there long term effects of a medical abortion", [["are there long term effects of a medical abortion", 0, [22, 30]], ["are there long term side effects of medical abortion", 0, [22, 30]], ["are there long term effects of abortion pill", 0, [22, 30]], ["are there long term side effects of having a pill abortion", 0, [22, 30]], ["what are the long term effects of a medical abortion", 0, [22, 30]], ["are there side effects of medical abortion", 0, [22, 30]], ["does abortion have long term effects", 0, [512, 390, 650]], ["what are the long term effects of an abortion", 0, [512, 546]]], {"i": "are there long term effects of a medical abortion", "q": "5y2i43mu3LlYdKe75h6Y5Ir53_o", "t": {"bpc": false, "tlw": false}}], "suggests": ["are there long term effects of a medical abortion", "are there long term side effects of medical abortion", "are there long term effects of abortion pill", "are there long term side effects of having a pill abortion", "what are the long term effects of a medical abortion", "are there side effects of medical abortion", "does abortion have long term effects", "what are the long term effects of an abortion"], "self_loops": [0], "tags": {"i": "are there long term effects of a medical abortion", "q": "5y2i43mu3LlYdKe75h6Y5Ir53_o", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long do side effects of medical abortion last", "datetime": "2026-03-12 19:54:36.084506", "source": "google", "data": ["how long do side effects of medical abortion last", [["how long do side effects of medical abortion last", 0, [512]], ["how long do symptoms of medical abortion last", 0, [22, 30]], ["how long does the bleeding after abortion last", 0, [512, 390, 650]], ["how long does pain after medical abortion last", 0, [512, 390, 650]], ["how long pain after abortion", 0, [512, 390, 650]], ["how long do side effects of abortion last", 0, [546, 649]]], {"i": "how long do side effects of medical abortion last", "q": "HLbI5cFlXAcSakAp1yaGi1hgUh0", "t": {"bpc": false, "tlw": false}}], "suggests": ["how long do side effects of medical abortion last", "how long do symptoms of medical abortion last", "how long does the bleeding after abortion last", "how long does pain after medical abortion last", "how long pain after abortion", "how long do side effects of abortion last"], "self_loops": [0], "tags": {"i": "how long do side effects of medical abortion last", "q": "HLbI5cFlXAcSakAp1yaGi1hgUh0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effects of medical abortion", "datetime": "2026-03-12 19:54:37.528449", "source": "google", "data": ["side effects of medical abortion", [["side effects of medical abortion", 0, [512]], ["side effects of medical abortion in future pregnancy", 0, [512]], ["side effects of medical abortion pill", 0, [512]], ["side effects of medical abortion procedures", 0, [512]], ["side effects of medical abortion at 6 weeks", 0, [512]], ["side effects of medical abortion long term", 0, [512]], ["side effects of medical abortion in future", 0, [22, 30]], ["side effects of medical abortion marie stopes", 0, [22, 30]], ["side effects of medical abortion reddit", 0, [22, 30]], ["side effects of medical abortion at 4 weeks", 0, [22, 30]]], {"i": "side effects of medical abortion", "q": "T8hr3nFP-Ad4UNDjNDuxI-h231Q", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["side effects of medical abortion", "side effects of medical abortion in future pregnancy", "side effects of medical abortion pill", "side effects of medical abortion procedures", "side effects of medical abortion at 6 weeks", "side effects of medical abortion long term", "side effects of medical abortion in future", "side effects of medical abortion marie stopes", "side effects of medical abortion reddit", "side effects of medical abortion at 4 weeks"], "self_loops": [0], "tags": {"i": "side effects of medical abortion", "q": "T8hr3nFP-Ad4UNDjNDuxI-h231Q", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effects of medical abortion in future pregnancy", "datetime": "2026-03-12 19:54:38.396214", "source": "google", "data": ["side effects of medical abortion in future pregnancy", [["side effects of medical abortion in future pregnancy", 0, [512]], ["does medical abortion affect future pregnancy", 0, [512, 390, 650]], ["do medical abortion affect future pregnancies", 0, [512, 390, 650]], ["long term effects of medical abortion", 0, [512, 390, 650]], ["side effects of medical abortion procedures", 0, [512, 546]], ["side effects of abortion pill for future pregnancy", 0, [512, 546]]], {"i": "side effects of medical abortion in future pregnancy", "q": "MNaVOD7FnUxW-oSOKjaLwYGIm9M", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["side effects of medical abortion in future pregnancy", "does medical abortion affect future pregnancy", "do medical abortion affect future pregnancies", "long term effects of medical abortion", "side effects of medical abortion procedures", "side effects of abortion pill for future pregnancy"], "self_loops": [0], "tags": {"i": "side effects of medical abortion in future pregnancy", "q": "MNaVOD7FnUxW-oSOKjaLwYGIm9M", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effects of medical abortion pill", "datetime": "2026-03-12 19:54:39.268642", "source": "google", "data": ["side effects of medical abortion pill", [["side effects of medical abortion pill", 0, [512]], ["side effects of first medical abortion pill", 0, [22, 30]], ["side effects of termination pill", 0, [22, 30]], ["symptoms of medical abortion pill", 0, [22, 30]], ["how long do side effects of misoprostol last", 0, [512, 390, 650]], ["how long do the side effects of medical abortion last", 0, [512, 390, 650]], ["side effects of misoprostol after abortion", 0, [512, 390, 650]], ["side effects of medical abortion procedures", 0, [512, 546]], ["side effects of medical abortion", 0, [512, 546]]], {"i": "side effects of medical abortion pill", "q": "25JVQCmCRds1N4tJIGmn42PT8xI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["side effects of medical abortion pill", "side effects of first medical abortion pill", "side effects of termination pill", "symptoms of medical abortion pill", "how long do side effects of misoprostol last", "how long do the side effects of medical abortion last", "side effects of misoprostol after abortion", "side effects of medical abortion procedures", "side effects of medical abortion"], "self_loops": [0], "tags": {"i": "side effects of medical abortion pill", "q": "25JVQCmCRds1N4tJIGmn42PT8xI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "day after pill side effects reddit", "datetime": "2026-03-12 19:54:40.468425", "source": "google", "data": ["day after pill side effects reddit", [["day after pill side effects reddit", 0, [512]], ["morning after pill side effects reddit", 0, [22, 30]], ["ella morning after pill side effects reddit", 0, [22, 30]], ["morning after pill emotional side effects reddit", 0, [22, 30]], ["morning after pill long term side effects reddit", 0, [22, 30]], ["morning after pill side effects menstrual cycle reddit", 0, [22, 30]], ["day after pill side effects", 0, [512, 390, 650]], ["side effect of next day pill", 0, [512, 390, 650]], ["day after pill side effects period", 0, [546, 649]], ["day after pill side effects long term", 0, [512, 546]]], {"i": "day after pill side effects reddit", "q": "aVNmsH2f6D3Erv-EHTRUqIfvPPM", "t": {"bpc": false, "tlw": false}}], "suggests": ["day after pill side effects reddit", "morning after pill side effects reddit", "ella morning after pill side effects reddit", "morning after pill emotional side effects reddit", "morning after pill long term side effects reddit", "morning after pill side effects menstrual cycle reddit", "day after pill side effects", "side effect of next day pill", "day after pill side effects period", "day after pill side effects long term"], "self_loops": [0], "tags": {"i": "day after pill side effects reddit", "q": "aVNmsH2f6D3Erv-EHTRUqIfvPPM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does the morning after pill cause side effects", "datetime": "2026-03-12 19:54:41.380733", "source": "google", "data": ["does the morning after pill cause side effects", [["does the morning after pill cause side effects", 0, [512]], ["does the day after pill have side effects", 0, [22, 30]], ["does the morning after pill have negative side effects", 0, [22, 30]], ["does the morning after pill always have side effects", 0, [22, 30]], ["does the morning after pill have long term side effects", 0, [22, 30]], ["how long does the morning after pill have side effects", 0, [22, 30]], ["does the morning after pill have any long lasting side effects", 0, [22, 30]], ["do morning after pills have any side effects", 0, [22, 30]]], {"i": "does the morning after pill cause side effects", "q": "3JmY0Avb7ErseOTbeXp34Fhm-d4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does the morning after pill cause side effects", "does the day after pill have side effects", "does the morning after pill have negative side effects", "does the morning after pill always have side effects", "does the morning after pill have long term side effects", "how long does the morning after pill have side effects", "does the morning after pill have any long lasting side effects", "do morning after pills have any side effects"], "self_loops": [0], "tags": {"i": "does the morning after pill cause side effects", "q": "3JmY0Avb7ErseOTbeXp34Fhm-d4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects bleeding", "datetime": "2026-03-12 19:54:42.720296", "source": "google", "data": ["morning after pill side effects bleeding", [["morning after pill side effects bleeding", 0, [512]], ["morning after pill side effects bleeding between periods", 0, [22, 30]], ["morning after pill side effects bleeding week later", 0, [22, 30]], ["morning after pill side effects spotting", 0, [22, 30]], ["morning after pill side effects blood clots", 0, [22, 30]], ["morning after pill side effects heavy bleeding", 0, [22, 30]], ["morning after pill side effects light bleeding", 0, [22, 30]], ["plan b morning after pill side effects bleeding", 0, [22, 30]], ["plan b pill side effects bleeding", 0, [22, 30]], ["emergency pill side effects bleeding", 0, [22, 30]]], {"i": "morning after pill side effects bleeding", "q": "58Y_N50yJAyajJLNTQstOEJ_dnA", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects bleeding", "morning after pill side effects bleeding between periods", "morning after pill side effects bleeding week later", "morning after pill side effects spotting", "morning after pill side effects blood clots", "morning after pill side effects heavy bleeding", "morning after pill side effects light bleeding", "plan b morning after pill side effects bleeding", "plan b pill side effects bleeding", "emergency pill side effects bleeding"], "self_loops": [0], "tags": {"i": "morning after pill side effects bleeding", "q": "58Y_N50yJAyajJLNTQstOEJ_dnA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill long term effects reddit", "datetime": "2026-03-12 19:54:44.033062", "source": "google", "data": ["abortion pill long term effects reddit", [["abortion pill long term effects reddit", 0, [22, 30]], ["abortion pill long term side effects reddit", 0, [22, 30]], ["abortion pill reviews reddit", 0, [512, 390, 650]], ["long term effects of a medical abortion", 0, [512, 390, 650]], ["abortion pill 3 weeks reddit", 0, [512, 546]], ["abortion pill timeline reddit", 0, [512, 546]], ["abortion pill long term side effects", 0, [512, 546]], ["abortion pill pain level reddit", 0, [512, 546]], ["abortion pill effects reddit", 0, [512, 546]]], {"i": "abortion pill long term effects reddit", "q": "1E4mFhvQ4XHhOpA9kviikVaXfIE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill long term effects reddit", "abortion pill long term side effects reddit", "abortion pill reviews reddit", "long term effects of a medical abortion", "abortion pill 3 weeks reddit", "abortion pill timeline reddit", "abortion pill long term side effects", "abortion pill pain level reddit", "abortion pill effects reddit"], "self_loops": [0], "tags": {"i": "abortion pill long term effects reddit", "q": "1E4mFhvQ4XHhOpA9kviikVaXfIE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion after effects", "datetime": "2026-03-12 19:54:45.237098", "source": "google", "data": ["abortion after effects", [["abortion after effects", 0, [512]], ["abortion after effects on body", 0, [512]], ["abortion after effects malayalam", 0, [512]], ["abortion after effects symptoms", 0, [512]], ["abortion after effects mentally", 0, [22, 30]], ["abortion after effects reddit", 0, [22, 30]], ["abortion effects after 4 weeks", 0, [22, 30]], ["abortion side effects", 0, [22, 30]], ["miscarriage after effects", 0, [22, 30]], ["abortion side effects long term", 0, [22, 30]]], {"i": "abortion after effects", "q": "10__qGwf5Hiduwc63wYEnbV9Kas", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion after effects", "abortion after effects on body", "abortion after effects malayalam", "abortion after effects symptoms", "abortion after effects mentally", "abortion after effects reddit", "abortion effects after 4 weeks", "abortion side effects", "miscarriage after effects", "abortion side effects long term"], "self_loops": [0], "tags": {"i": "abortion after effects", "q": "10__qGwf5Hiduwc63wYEnbV9Kas", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion after effects on body", "datetime": "2026-03-12 19:54:46.589208", "source": "google", "data": ["abortion after effects on body", [["abortion after effects on body", 0, [512]], ["abortion side effects on body", 0, [22, 30]], ["abortion pill side effects on body", 0, [22, 30]], ["miscarriage after effects body", 0, [22, 30]], ["abortion after effects", 0, [512, 390, 650]], ["abortion after effects symptoms", 0, [512, 390, 650]], ["what happens to a woman's body after an abortion", 0, [512, 546]]], {"i": "abortion after effects on body", "q": "0t6rFUzJ2JNNRIzm02dn2myMerA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion after effects on body", "abortion side effects on body", "abortion pill side effects on body", "miscarriage after effects body", "abortion after effects", "abortion after effects symptoms", "what happens to a woman's body after an abortion"], "self_loops": [0], "tags": {"i": "abortion after effects on body", "q": "0t6rFUzJ2JNNRIzm02dn2myMerA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "first abortion side effects", "datetime": "2026-03-12 19:54:47.535177", "source": "google", "data": ["first abortion side effects", [["first abortion side effects", 0, [512]], ["first abortion side effects in hindi", 0, [512]], ["early abortion side effects", 0, [22, 30]], ["first abortion pill side effects", 0, [22, 30]], ["first pregnancy abortion side effects", 0, [22, 30]], ["first month abortion side effects", 0, [22, 30]], ["first trimester abortion side effects", 0, [22, 30]], ["first abortion pill side effects reddit", 0, [22, 30]], ["early pregnancy abortion side effects", 0, [22, 30]], ["early medical abortion side effects", 0, [22, 30]]], {"i": "first abortion side effects", "q": "TmcfHYdiCX8ungsDkWoEvDVlB_A", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["first abortion side effects", "first abortion side effects in hindi", "early abortion side effects", "first abortion pill side effects", "first pregnancy abortion side effects", "first month abortion side effects", "first trimester abortion side effects", "first abortion pill side effects reddit", "early pregnancy abortion side effects", "early medical abortion side effects"], "self_loops": [0], "tags": {"i": "first abortion side effects", "q": "TmcfHYdiCX8ungsDkWoEvDVlB_A", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how does first abortion pill make you feel", "datetime": "2026-03-12 19:54:48.531284", "source": "google", "data": ["how does first abortion pill make you feel", [["how does first abortion pill make you feel", 0, [512]], ["does the first abortion pill make you feel sick", 0, [22, 30]], ["does the first abortion pill make you feel anything", 0, [22, 30]], ["does the first abortion pill make you feel bad", 0, [22, 30]], ["how long does it take to feel normal after abortion pill", 0, [512, 390, 650]], ["how do i know the first abortion pill worked", 0, [512, 390, 650]], ["how does the first abortion pill make u feel", 0, [512, 546]]], {"i": "how does first abortion pill make you feel", "q": "aj2xI8ssmH5GRDx-hBO78tb7haQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["how does first abortion pill make you feel", "does the first abortion pill make you feel sick", "does the first abortion pill make you feel anything", "does the first abortion pill make you feel bad", "how long does it take to feel normal after abortion pill", "how do i know the first abortion pill worked", "how does the first abortion pill make u feel"], "self_loops": [0], "tags": {"i": "how does first abortion pill make you feel", "q": "aj2xI8ssmH5GRDx-hBO78tb7haQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "first abortion pill symptoms", "datetime": "2026-03-12 19:54:49.757331", "source": "google", "data": ["first abortion pill symptoms", [["first abortion pill symptoms", 0, [512]], ["early abortion pill symptoms", 0, [22, 30]], ["first abortion pill effects", 0, [22, 30]], ["medical abortion first pill symptoms", 0, [22, 30]], ["first abortion pill side effects", 0, [22, 30]], ["first abortion pill side effects reddit", 0, [22, 30]], ["symptoms after first abortion pill", 0, [22, 30]], ["does the first abortion pill cause symptoms", 0, [22, 30]], ["does the first abortion pill stop pregnancy symptoms", 0, [22, 30]], ["does the first abortion pill cause any symptoms", 0, [22, 30]]], {"i": "first abortion pill symptoms", "q": "ojtSdmTu9ZKf83x0CCKbcSz1edI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["first abortion pill symptoms", "early abortion pill symptoms", "first abortion pill effects", "medical abortion first pill symptoms", "first abortion pill side effects", "first abortion pill side effects reddit", "symptoms after first abortion pill", "does the first abortion pill cause symptoms", "does the first abortion pill stop pregnancy symptoms", "does the first abortion pill cause any symptoms"], "self_loops": [0], "tags": {"i": "first abortion pill symptoms", "q": "ojtSdmTu9ZKf83x0CCKbcSz1edI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "first abortion pill effects", "datetime": "2026-03-12 19:54:50.828334", "source": "google", "data": ["first abortion pill effects", [["first abortion pill effects", 0, [512]], ["first abortion side effects", 0, [22, 30]], ["first abortion pill side effects", 0, [22, 30]], ["early abortion side effects", 0, [22, 30]], ["first abortion pill side effects reddit", 0, [22, 30]], ["first pregnancy abortion side effects", 0, [22, 30]], ["first month abortion side effects", 0, [22, 30]], ["first abortion pill mumsnet side effects", 0, [22, 30]], ["first trimester abortion side effects", 0, [22, 30]], ["does first abortion pill have side effects", 0, [22, 30]]], {"i": "first abortion pill effects", "q": "Dru5ND88TWSkpVuy0otHcdhQIkI", "t": {"bpc": false, "tlw": false}}], "suggests": ["first abortion pill effects", "first abortion side effects", "first abortion pill side effects", "early abortion side effects", "first abortion pill side effects reddit", "first pregnancy abortion side effects", "first month abortion side effects", "first abortion pill mumsnet side effects", "first trimester abortion side effects", "does first abortion pill have side effects"], "self_loops": [0], "tags": {"i": "first abortion pill effects", "q": "Dru5ND88TWSkpVuy0otHcdhQIkI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does abortion pill feel like reddit", "datetime": "2026-03-12 19:54:51.853760", "source": "google", "data": ["what does abortion pill feel like reddit", [["what does abortion pill feel like reddit", 0, [512]], ["what does taking an abortion pill feel like reddit", 0, [22, 30]], ["what is an abortion like reddit", 0, [512, 390, 650]], ["abortion pill reviews reddit", 0, [512, 390, 650]], ["abortion pill vs surgery reddit", 0, [512, 390, 650]], ["what does abortion feel like reddit", 0, [512, 546]], ["what does a medical abortion feel like reddit", 0, [512, 546]]], {"i": "what does abortion pill feel like reddit", "q": "D_yVZ2wBuZs_tDcd328DqvFvXXs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what does abortion pill feel like reddit", "what does taking an abortion pill feel like reddit", "what is an abortion like reddit", "abortion pill reviews reddit", "abortion pill vs surgery reddit", "what does abortion feel like reddit", "what does a medical abortion feel like reddit"], "self_loops": [0], "tags": {"i": "what does abortion pill feel like reddit", "q": "D_yVZ2wBuZs_tDcd328DqvFvXXs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effects of abortion pill reddit", "datetime": "2026-03-12 19:54:52.813282", "source": "google", "data": ["side effects of abortion pill reddit", [["side effects of abortion pill reddit", 0, [512]], ["long term side effects of abortion pill reddit", 0, [22, 30]], ["symptoms of abortion pill reddit", 0, [22, 30]], ["abortion pill reviews reddit", 0, [512, 390, 650]], ["side effects of abortion pill diarrhea", 0, [751]], ["side effects of abortion pill after", 0, [512, 546]], ["what does the abortion pill feel like reddit", 0, [512, 546]]], {"i": "side effects of abortion pill reddit", "q": "PkcRNQweJHay97lbNfarZQNJu5o", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["side effects of abortion pill reddit", "long term side effects of abortion pill reddit", "symptoms of abortion pill reddit", "abortion pill reviews reddit", "side effects of abortion pill diarrhea", "side effects of abortion pill after", "what does the abortion pill feel like reddit"], "self_loops": [0], "tags": {"i": "side effects of abortion pill reddit", "q": "PkcRNQweJHay97lbNfarZQNJu5o", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill long term side effects", "datetime": "2026-03-12 19:54:54.040674", "source": "google", "data": ["abortion pill long term side effects", [["abortion pill long term side effects", 0, [512]], ["abortion pill long term side effects reddit", 0, [22, 30]], ["morning after pill long term side effects fertility", 0, [22, 30]], ["morning after pill long term side effects reddit", 0, [22, 30]], ["medication abortion long term side effects", 0, [22, 30]], ["does abortion pill have long term side effects", 0, [22, 30]], ["what are the long term effects of the abortion pill", 0, [512, 390, 650]], ["long term effects of medical abortion", 0, [512, 390, 650]], ["abortion pill long term", 0, [546, 649]]], {"i": "abortion pill long term side effects", "q": "rMCGnVQUWzCUOqqY7fZ0cDqtlNk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill long term side effects", "abortion pill long term side effects reddit", "morning after pill long term side effects fertility", "morning after pill long term side effects reddit", "medication abortion long term side effects", "does abortion pill have long term side effects", "what are the long term effects of the abortion pill", "long term effects of medical abortion", "abortion pill long term"], "self_loops": [0], "tags": {"i": "abortion pill long term side effects", "q": "rMCGnVQUWzCUOqqY7fZ0cDqtlNk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill pain level reddit", "datetime": "2026-03-12 19:54:55.014031", "source": "google", "data": ["abortion pill pain level reddit", [["abortion pill pain level reddit", 0, [512]], ["abortion pill pain level reviews", 0, [512, 390, 650]], ["abortion pill pain level", 0, [512, 390, 650]], ["abortion pill pain vs labor pain", 0, [512, 390, 650]], ["abortion pill pain reddit", 0, [512, 546]]], {"i": "abortion pill pain level reddit", "q": "u1lGPqhJVFfbmwd2lOfh0X7RvmY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill pain level reddit", "abortion pill pain level reviews", "abortion pill pain level", "abortion pill pain vs labor pain", "abortion pill pain reddit"], "self_loops": [0], "tags": {"i": "abortion pill pain level reddit", "q": "u1lGPqhJVFfbmwd2lOfh0X7RvmY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill 3 weeks reddit", "datetime": "2026-03-12 19:54:56.215050", "source": "google", "data": ["abortion pill 3 weeks reddit", [["abortion pill 3 weeks reddit", 0, [512]], ["abortion pill vs surgery reddit", 0, [512, 390, 650]], ["abortion pill reviews reddit", 0, [512, 390, 650]], ["abortion pill 4 weeks reddit", 0, [512, 546]], ["abortion pill 5 weeks reddit", 0, [512, 546]], ["abortion pill 6 weeks reddit", 0, [512, 546]]], {"i": "abortion pill 3 weeks reddit", "q": "sqyU9BrjTntkH4jNltXJacs1o8w", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill 3 weeks reddit", "abortion pill vs surgery reddit", "abortion pill reviews reddit", "abortion pill 4 weeks reddit", "abortion pill 5 weeks reddit", "abortion pill 6 weeks reddit"], "self_loops": [0], "tags": {"i": "abortion pill 3 weeks reddit", "q": "sqyU9BrjTntkH4jNltXJacs1o8w", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ella morning after pill side effects", "datetime": "2026-03-12 19:54:57.400024", "source": "google", "data": ["ella morning after pill side effects", [["ella morning after pill side effects", 0, [512]], ["ella morning after pill side effects reddit", 0, [22, 30]], ["ella day after pill side effects", 0, [22, 30]], ["ellaone morning after pill side effects", 0, [22, 10, 30]], ["ella plan b pill side effects", 0, [22, 30]], ["ella emergency pill side effects", 0, [22, 30]], ["plan b ella side effects", 0, [512, 390, 650]], ["does ellaone have side effects", 0, [512, 390, 650]], ["ella morning after pill reviews", 0, [546, 649]], ["ella morning after pill after ovulation", 0, [751]]], {"i": "ella morning after pill side effects", "q": "eOEBqKuyfTvhvtnfkTypK1lcuyI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["ella morning after pill side effects", "ella morning after pill side effects reddit", "ella day after pill side effects", "ellaone morning after pill side effects", "ella plan b pill side effects", "ella emergency pill side effects", "plan b ella side effects", "does ellaone have side effects", "ella morning after pill reviews", "ella morning after pill after ovulation"], "self_loops": [0], "tags": {"i": "ella morning after pill side effects", "q": "eOEBqKuyfTvhvtnfkTypK1lcuyI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "plan b ella side effects", "datetime": "2026-03-12 19:54:58.588414", "source": "google", "data": ["plan b ella side effects", [["plan b ella side effects", 0, [512]], ["plan b vs ella side effects", 0, [22, 30]], ["plan b vs ella side effects reddit", 0, [22, 30]], ["ella plan b side effects reddit", 0, [22, 30]], ["ella plan b pill side effects", 0, [22, 30]], ["does ella or plan b have more side effects", 0, [22, 30]], ["does ella or plan b have worse side effects", 0, [22, 30]], ["plan b vs ella", 0, [512, 390, 650]], ["plan b side effects pregnancy", 0, [512, 546]], ["plan b side effects bad", 0, [512, 546]]], {"i": "plan b ella side effects", "q": "SoE14LYYSnJGeHYskHsajjciCdI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["plan b ella side effects", "plan b vs ella side effects", "plan b vs ella side effects reddit", "ella plan b side effects reddit", "ella plan b pill side effects", "does ella or plan b have more side effects", "does ella or plan b have worse side effects", "plan b vs ella", "plan b side effects pregnancy", "plan b side effects bad"], "self_loops": [0], "tags": {"i": "plan b ella side effects", "q": "SoE14LYYSnJGeHYskHsajjciCdI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does ellaone have side effects", "datetime": "2026-03-12 19:54:59.581959", "source": "google", "data": ["does ellaone have side effects", [["does ellaone have side effects", 0, [512]], ["does ella one have fewer side effects", 0, [22, 30]], ["what does ellaone do to your body", 0, [512, 390, 650]], ["how long does ellaone stay in your system", 0, [512, 390, 650]], ["how long do ellaone side effects last", 0, [512, 390, 650]], ["is ellaone bad for you", 0, [512, 390, 650]], ["does ella have side effects", 0, [512, 546]], ["how long does ella side effects last", 0, [512, 546]], ["does ella have hormones", 0, [751]], ["does ella work after implantation", 0, [512, 546]]], {"i": "does ellaone have side effects", "q": "F8aPkbs5QoQnLWDwEYuCVXjGTr4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does ellaone have side effects", "does ella one have fewer side effects", "what does ellaone do to your body", "how long does ellaone stay in your system", "how long do ellaone side effects last", "is ellaone bad for you", "does ella have side effects", "how long does ella side effects last", "does ella have hormones", "does ella work after implantation"], "self_loops": [0], "tags": {"i": "does ellaone have side effects", "q": "F8aPkbs5QoQnLWDwEYuCVXjGTr4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ella morning after pill reddit", "datetime": "2026-03-12 19:55:00.749243", "source": "google", "data": ["ella morning after pill reddit", [["ella morning after pill reddit", 0, [22, 30]], ["ella morning after pill side effects reddit", 0, [22, 30]], ["ella morning after pill reviews", 0, [546, 649]], ["ella morning after pill walgreens", 0, [512, 546]], ["ella morning after pill cvs", 0, [512, 546]]], {"i": "ella morning after pill reddit", "q": "Nv2hkDRDmPctJ-UPhGbAzanWQMM", "t": {"bpc": false, "tlw": false}}], "suggests": ["ella morning after pill reddit", "ella morning after pill side effects reddit", "ella morning after pill reviews", "ella morning after pill walgreens", "ella morning after pill cvs"], "self_loops": [0], "tags": {"i": "ella morning after pill reddit", "q": "Nv2hkDRDmPctJ-UPhGbAzanWQMM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ella pill side effects reddit", "datetime": "2026-03-12 19:55:01.770892", "source": "google", "data": ["ella pill side effects reddit", [["ella pill side effects reddit", 0, [512]], ["ella morning after pill side effects reddit", 0, [22, 30]], ["ella side effects reddit", 0, [512, 546]], ["ella pill side effects reviews", 0, [512, 546]], ["ella pill side effects bleeding", 0, [751]], ["ella pill reddit", 0, [512, 546]]], {"i": "ella pill side effects reddit", "q": "viU60rS17pHUrfHYgj3YdxB6Gkg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["ella pill side effects reddit", "ella morning after pill side effects reddit", "ella side effects reddit", "ella pill side effects reviews", "ella pill side effects bleeding", "ella pill reddit"], "self_loops": [0], "tags": {"i": "ella pill side effects reddit", "q": "viU60rS17pHUrfHYgj3YdxB6Gkg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ella side effects reddit", "datetime": "2026-03-12 19:55:02.931186", "source": "google", "data": ["ella side effects reddit", [["ella side effects reddit", 0, [512]], ["ella pill side effects reddit", 0, [22, 30]], ["ellaone side effects reddit", 0, [22, 10, 30]], ["ella plan b side effects reddit", 0, [22, 30]], ["ella vs plan b side effects reddit", 0, [22, 30]], ["ella morning after pill side effects reddit", 0, [22, 30]], ["how long do ella side effects last reddit", 0, [22, 30]], ["ella side effects mood", 0, [546, 649]], ["ella.side effects", 0, [546, 649]]], {"i": "ella side effects reddit", "q": "6IFjUiyU-fvDa1owHx8-DJNCp3c", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["ella side effects reddit", "ella pill side effects reddit", "ellaone side effects reddit", "ella plan b side effects reddit", "ella vs plan b side effects reddit", "ella morning after pill side effects reddit", "how long do ella side effects last reddit", "ella side effects mood", "ella.side effects"], "self_loops": [0], "tags": {"i": "ella side effects reddit", "q": "6IFjUiyU-fvDa1owHx8-DJNCp3c", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ella morning after pill reviews", "datetime": "2026-03-12 19:55:04.467359", "source": "google", "data": ["ella morning after pill reviews", [["ella morning after pill reviews", 0, [22, 30]], ["ella plan b reviews", 0, [512, 390, 650]], ["is ella or plan b better", 0, [512, 390, 650]], ["ella morning after pill where to buy", 0, [512, 390, 650]], ["plan b ella side effects", 0, [512, 390, 650]], ["how effective is ella plan b", 0, [512, 390, 650]], ["ella morning after pill reddit", 0, [751]], ["ella morning-after pill walgreens", 0, [751]], ["ella morning after pill vs plan b", 0, [512, 546]], ["ella morning after pill prescription", 0, [751]]], {"i": "ella morning after pill reviews", "q": "aBuSbqRKRu6K5ovJxEhY8tryo6k", "t": {"bpc": false, "tlw": false}}], "suggests": ["ella morning after pill reviews", "ella plan b reviews", "is ella or plan b better", "ella morning after pill where to buy", "plan b ella side effects", "how effective is ella plan b", "ella morning after pill reddit", "ella morning-after pill walgreens", "ella morning after pill vs plan b", "ella morning after pill prescription"], "self_loops": [0], "tags": {"i": "ella morning after pill reviews", "q": "aBuSbqRKRu6K5ovJxEhY8tryo6k", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill emotional side effects", "datetime": "2026-03-12 19:55:05.708358", "source": "google", "data": ["morning after pill emotional side effects", [["morning after pill emotional side effects", 0, [512]], ["morning after pill emotional side effects reddit", 0, [22, 30]], ["morning after pill mental side effects", 0, [22, 30]], ["morning after pill mood side effects", 0, [22, 30]], ["morning after pill psychological side effects", 0, [22, 30]], ["morning after pill side effects mood swings", 0, [22, 30]], ["plan b pill emotional side effects", 0, [22, 30]], ["morning after pill side effects depression", 0, [22, 30]], ["does the morning after pill make you emotional", 0, [512, 390, 650]], ["can the morning after pill cause mood swings", 0, [512, 390, 650]]], {"i": "morning after pill emotional side effects", "q": "GZEirxDI0yAoMZpXg0erwHcGmX0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill emotional side effects", "morning after pill emotional side effects reddit", "morning after pill mental side effects", "morning after pill mood side effects", "morning after pill psychological side effects", "morning after pill side effects mood swings", "plan b pill emotional side effects", "morning after pill side effects depression", "does the morning after pill make you emotional", "can the morning after pill cause mood swings"], "self_loops": [0], "tags": {"i": "morning after pill emotional side effects", "q": "GZEirxDI0yAoMZpXg0erwHcGmX0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does the morning after pill make you emotional", "datetime": "2026-03-12 19:55:07.028435", "source": "google", "data": ["does the morning after pill make you emotional", [["does the morning after pill make you emotional", 0, [512]], ["does the day after pill make you emotional", 0, [22, 30]], ["does the morning after pill make you moody", 0, [22, 30]], ["does the morning after pill make you sad", 0, [22, 30]], ["does the morning after pill make you more emotional", 0, [22, 30]], ["can the morning after pill make you sad", 0, [22, 30]], ["can the morning after pill cause you to be emotional", 0, [22, 30]], ["morning after pill make you emotional", 0, [22, 30]], ["morning after pill make you sad", 0, [22, 30]], ["can the morning after pill cause mood swings", 0, [512, 390, 650]]], {"i": "does the morning after pill make you emotional", "q": "iF5zp42hO7pVyi6-mTwHFZuZ0No", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does the morning after pill make you emotional", "does the day after pill make you emotional", "does the morning after pill make you moody", "does the morning after pill make you sad", "does the morning after pill make you more emotional", "can the morning after pill make you sad", "can the morning after pill cause you to be emotional", "morning after pill make you emotional", "morning after pill make you sad", "can the morning after pill cause mood swings"], "self_loops": [0], "tags": {"i": "does the morning after pill make you emotional", "q": "iF5zp42hO7pVyi6-mTwHFZuZ0No", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can the morning after pill cause mood swings", "datetime": "2026-03-12 19:55:08.199266", "source": "google", "data": ["can the morning after pill cause mood swings", [["can the morning after pill cause mood swings", 0, [512]], ["morning after pill cause mood swings", 0, [22, 30]], ["morning after pill side effects mood swings", 0, [22, 30]], ["morning after pill and mood swings", 0, [22, 30]], ["can emergency pill cause mood swings", 0, [22, 30]], ["can the morning after pill make you moody", 0, [512, 390, 650]], ["can the morning after pill make you irritable", 0, [512, 390, 650]], ["does the morning after pill make you emotional", 0, [512, 390, 650]], ["can the morning after pill cause menopause", 0, [546, 649]], ["can the morning after pill make you sleepy", 0, [512, 546]]], {"i": "can the morning after pill cause mood swings", "q": "NVS8LKjrUJH8VXmARpzEinJtWSw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["can the morning after pill cause mood swings", "morning after pill cause mood swings", "morning after pill side effects mood swings", "morning after pill and mood swings", "can emergency pill cause mood swings", "can the morning after pill make you moody", "can the morning after pill make you irritable", "does the morning after pill make you emotional", "can the morning after pill cause menopause", "can the morning after pill make you sleepy"], "self_loops": [0], "tags": {"i": "can the morning after pill cause mood swings", "q": "NVS8LKjrUJH8VXmARpzEinJtWSw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does plan b make you emotional reddit", "datetime": "2026-03-12 19:55:09.444575", "source": "google", "data": ["does plan b make you emotional reddit", [["does plan b make you emotional reddit", 0, [512]], ["does plan b make you moody reddit", 0, [22, 30]], ["does plan b make you emotional", 0, [512, 390, 650]], ["does plan b cause mood swings", 0, [512, 390, 650]], ["how long does plan b make you emotional", 0, [512, 390, 650]], ["does plan b have emotional side effects", 0, [512, 390, 650]], ["does plan b make you more emotional", 0, [512, 546]], ["does plan b make u emotional", 0, [512, 546]]], {"i": "does plan b make you emotional reddit", "q": "uv3rYr75AClZdaLkIEnxr589WTY", "t": {"bpc": false, "tlw": false}}], "suggests": ["does plan b make you emotional reddit", "does plan b make you moody reddit", "does plan b make you emotional", "does plan b cause mood swings", "how long does plan b make you emotional", "does plan b have emotional side effects", "does plan b make you more emotional", "does plan b make u emotional"], "self_loops": [0], "tags": {"i": "does plan b make you emotional reddit", "q": "uv3rYr75AClZdaLkIEnxr589WTY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can the morning after pill affect your mood", "datetime": "2026-03-12 19:55:10.615943", "source": "google", "data": ["can the morning after pill affect your mood", [["can the morning after pill affect your mood", 0, [512]], ["can the morning after pill affect your emotions", 0, [22, 30]], ["how long can the morning after pill affect your mood", 0, [22, 30]], ["does the morning after pill affect your cycle and mood", 0, [22, 30]], ["morning after pill affect your mood", 0, [22, 30]], ["can the morning after pill cause mood swings", 0, [512, 390, 650]], ["can the morning after pill make you moody", 0, [512, 390, 650]], ["how does the morning after pill affect your mood", 0, [512, 390, 650]], ["can the morning after pill make you depressed", 0, [512, 390, 650]], ["can the morning after pill make you sleepy", 0, [512, 546]]], {"i": "can the morning after pill affect your mood", "q": "b3xYbHfmfRH4d6utl-0pFDLlcwo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["can the morning after pill affect your mood", "can the morning after pill affect your emotions", "how long can the morning after pill affect your mood", "does the morning after pill affect your cycle and mood", "morning after pill affect your mood", "can the morning after pill cause mood swings", "can the morning after pill make you moody", "how does the morning after pill affect your mood", "can the morning after pill make you depressed", "can the morning after pill make you sleepy"], "self_loops": [0], "tags": {"i": "can the morning after pill affect your mood", "q": "b3xYbHfmfRH4d6utl-0pFDLlcwo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill depression reddit", "datetime": "2026-03-12 19:55:11.998670", "source": "google", "data": ["morning after pill depression reddit", [["morning after pill depression reddit", 0, [22, 30]], ["morning after pill depression", 0, [512, 390, 650]], ["morning after pill depression how long", 0, [512, 390, 650]], ["morning after pill side effects depression", 0, [512, 390, 650]], ["morning after pill depression anxiety", 0, [546, 649]], ["morning depression and anxiety reddit", 0, [512, 546]], ["morning depression reddit", 0, [512, 546]]], {"i": "morning after pill depression reddit", "q": "rDMpOWIGBjNTh-ZP4Hsvi8vOwWE", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill depression reddit", "morning after pill depression", "morning after pill depression how long", "morning after pill side effects depression", "morning after pill depression anxiety", "morning depression and anxiety reddit", "morning depression reddit"], "self_loops": [0], "tags": {"i": "morning after pill depression reddit", "q": "rDMpOWIGBjNTh-ZP4Hsvi8vOwWE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "emotional after plan b reddit", "datetime": "2026-03-12 19:55:13.228555", "source": "google", "data": ["emotional after plan b reddit", [["emotional after plan b reddit", 0, [22, 30]], ["does plan b make you emotional reddit", 0, [512, 390, 650]], ["does plan b make you emotional", 0, [512, 390, 650]], ["how long does plan b make you emotional", 0, [512, 390, 650]], ["can a plan b make you emotional", 0, [512, 390, 650]], ["emotional after plan b", 0, [512, 546]], ["emotional after taking plan b", 0, [512, 546]], ["plan b emotional side effects reddit", 0, [512, 546]]], {"i": "emotional after plan b reddit", "q": "auw7ARGZNeKpIjrE8sblodLHxNY", "t": {"bpc": false, "tlw": false}}], "suggests": ["emotional after plan b reddit", "does plan b make you emotional reddit", "does plan b make you emotional", "how long does plan b make you emotional", "can a plan b make you emotional", "emotional after plan b", "emotional after taking plan b", "plan b emotional side effects reddit"], "self_loops": [0], "tags": {"i": "emotional after plan b reddit", "q": "auw7ARGZNeKpIjrE8sblodLHxNY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "modafinil long term side effects reddit", "datetime": "2026-03-12 19:55:14.432206", "source": "google", "data": ["modafinil long term side effects reddit", [["modafinil long term side effects reddit", 0, [22, 455, 30]], ["modafinil long term effects reddit", 0, [512, 390, 650]], ["is modafinil safe long term", 0, [512, 390, 650]], ["modafinil long term effects", 0, [512, 390, 650]], ["modafinil long term reddit", 0, [512, 546]], ["modafinil long term side effects", 0, [512, 546]]], {"i": "modafinil long term side effects reddit", "q": "ryi5TSq3KlpJ9lMOUMhi6di7s6Q", "t": {"bpc": false, "tlw": false}}], "suggests": ["modafinil long term side effects reddit", "modafinil long term effects reddit", "is modafinil safe long term", "modafinil long term effects", "modafinil long term reddit", "modafinil long term side effects"], "self_loops": [0], "tags": {"i": "modafinil long term side effects reddit", "q": "ryi5TSq3KlpJ9lMOUMhi6di7s6Q", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning-after pill bleeding 1 week later reddit", "datetime": "2026-03-12 19:55:15.907743", "source": "google", "data": ["morning-after pill bleeding 1 week later reddit", [["morning after pill bleeding 1 week later reddit", 0, [22, 30]], ["morning after pill bleeding 1 week later", 0, [512, 390, 650]], ["light bleeding a week after morning after pill", 0, [512, 390, 650]], ["is bleeding a week after taking the morning after pill normal", 0, [512, 390, 650]], ["can the morning after pill cause spotting a week later", 0, [512, 390, 650]], ["morning after pill bleeding for 2 weeks reddit", 0, [751]]], {"i": "morning-after pill bleeding 1 week later reddit", "q": "croU8n85i_JV6HNshdQDmuFdAac", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill bleeding 1 week later reddit", "morning after pill bleeding 1 week later", "light bleeding a week after morning after pill", "is bleeding a week after taking the morning after pill normal", "can the morning after pill cause spotting a week later", "morning after pill bleeding for 2 weeks reddit"], "self_loops": [], "tags": {"i": "morning-after pill bleeding 1 week later reddit", "q": "croU8n85i_JV6HNshdQDmuFdAac", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long can morning after pill affect your cycle", "datetime": "2026-03-12 19:55:16.956735", "source": "google", "data": ["how long can morning after pill affect your cycle", [["how long can morning after pill affect your cycle", 0, [512]], ["how long can morning after pill affect your period", 0, [22, 30]], ["how does morning after pill affect your cycle", 0, [22, 30]], ["how can morning after pill affect your period", 0, [22, 30]], ["how long can a plan b pill affect your period", 0, [22, 30]], ["can morning after pill change your cycle", 0, [22, 30]], ["can morning after pill affect menstrual cycle", 0, [22, 30]], ["can the morning after pill affect your period", 0, [22, 10, 30]], ["can morning after pill affect your period start", 0, [22, 30]], ["how long does the plan b pill affect your period", 0, [22, 30]]], {"i": "how long can morning after pill affect your cycle", "q": "H9juKHNc7rgO5BajwOWm9dWTpHQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how long can morning after pill affect your cycle", "how long can morning after pill affect your period", "how does morning after pill affect your cycle", "how can morning after pill affect your period", "how long can a plan b pill affect your period", "can morning after pill change your cycle", "can morning after pill affect menstrual cycle", "can the morning after pill affect your period", "can morning after pill affect your period start", "how long does the plan b pill affect your period"], "self_loops": [0], "tags": {"i": "how long can morning after pill affect your cycle", "q": "H9juKHNc7rgO5BajwOWm9dWTpHQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects menstrual cycle", "datetime": "2026-03-12 19:55:17.815425", "source": "google", "data": ["morning after pill side effects menstrual cycle", [["morning after pill side effects menstrual cycle", 0, [512]], ["morning after pill side effects menstrual cycle reddit", 0, [22, 30]], ["morning after pill affect menstrual cycle", 0, [22, 30]], ["how long can the morning after pill affect your period", 0, [512, 390, 650]], ["can taking the morning after pill make your period longer", 0, [512, 390, 650]], ["can the morning after pill make your period longer", 0, [512, 390, 650]], ["does the morning after pill affect your period", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill side effects bleeding", 0, [512, 546]], ["side effects of morning after pill before period", 0, [751]]], {"i": "morning after pill side effects menstrual cycle", "q": "kDbW2d5K2r1oUKHJGI64NFC1gus", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill side effects menstrual cycle", "morning after pill side effects menstrual cycle reddit", "morning after pill affect menstrual cycle", "how long can the morning after pill affect your period", "can taking the morning after pill make your period longer", "can the morning after pill make your period longer", "does the morning after pill affect your period", "morning after pill side effects a week later", "morning after pill side effects bleeding", "side effects of morning after pill before period"], "self_loops": [0], "tags": {"i": "morning after pill side effects menstrual cycle", "q": "kDbW2d5K2r1oUKHJGI64NFC1gus", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long can the morning after pill affect your period", "datetime": "2026-03-12 19:55:18.888867", "source": "google", "data": ["how long can the morning after pill affect your period", [["how long can the morning after pill affect your period", 0, [512]], ["how long can the morning after pill delay your period", 0, [22, 30]], ["how long can the morning after pill affect your cycle", 0, [22, 30]], ["how long does the morning after pill delay your period", 0, [22, 30]], ["how many days can the morning after pill delay your period", 0, [22, 30]], ["how long does the day after pill delay your period", 0, [22, 30]], ["how can the morning after pill affect your period", 0, [22, 30]], ["how long does the morning after pill delay your next period", 0, [22, 30]], ["can the morning after pill delay your period for 2 months", 0, [512, 390, 650]], ["how does the morning after pill affect your period", 0, [512, 546]]], {"i": "how long can the morning after pill affect your period", "q": "xeLRCSLF2iaTfl73BtplbcepmzQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how long can the morning after pill affect your period", "how long can the morning after pill delay your period", "how long can the morning after pill affect your cycle", "how long does the morning after pill delay your period", "how many days can the morning after pill delay your period", "how long does the day after pill delay your period", "how can the morning after pill affect your period", "how long does the morning after pill delay your next period", "can the morning after pill delay your period for 2 months", "how does the morning after pill affect your period"], "self_loops": [0], "tags": {"i": "how long can the morning after pill affect your period", "q": "xeLRCSLF2iaTfl73BtplbcepmzQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can taking the morning after pill make your period longer", "datetime": "2026-03-12 19:55:20.079260", "source": "google", "data": ["can taking the morning after pill make your period longer", [["can taking the morning after pill make your period longer", 0, [512]], ["can taking the morning after pill make your period more painful", 0, [22, 30]], ["can taking the morning after pill make your period heavier", 0, [22, 30]], ["does taking the morning after pill make your period heavier", 0, [22, 30]], ["can the morning after pill make your period last longer", 0, [22, 30]], ["does the morning after pill make your cycle longer", 0, [22, 30]], ["does the morning after pill make your period last longer", 0, [22, 30]], ["morning after pill make your period longer", 0, [22, 30]], ["can the morning after pill make your period longer", 0, [512, 390, 650]], ["can plan b make your period longer", 0, [512, 390, 650]]], {"i": "can taking the morning after pill make your period longer", "q": "NsGSJjo2I1rCtuljlbw8FaXPGY8", "t": {"bpc": false, "tlw": false}}], "suggests": ["can taking the morning after pill make your period longer", "can taking the morning after pill make your period more painful", "can taking the morning after pill make your period heavier", "does taking the morning after pill make your period heavier", "can the morning after pill make your period last longer", "does the morning after pill make your cycle longer", "does the morning after pill make your period last longer", "morning after pill make your period longer", "can the morning after pill make your period longer", "can plan b make your period longer"], "self_loops": [0], "tags": {"i": "can taking the morning after pill make your period longer", "q": "NsGSJjo2I1rCtuljlbw8FaXPGY8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill mess with cycle", "datetime": "2026-03-12 19:55:21.411696", "source": "google", "data": ["morning after pill mess with cycle", [["morning after pill mess with cycle", 0, [22, 30]], ["morning after pill messing with period", 0, [22, 30]], ["morning after pill mess up cycle", 0, [22, 30]], ["morning after pill messed up cycle for months", 0, [22, 30]], ["does the morning after pill mess with period", 0, [22, 10, 30]], ["can morning after pill mess with period", 0, [22, 30]], ["does morning after pill mess with your cycle", 0, [22, 30]], ["can the morning after pill.mess with your cycle", 0, [22, 10, 30]], ["morning after pill messed up my cycle", 0, [22, 30]], ["morning after pill mess up period", 0, [22, 30]]], {"i": "morning after pill mess with cycle", "q": "ksm_9Ifp4RVtir0j27x2HftaYE8", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill mess with cycle", "morning after pill messing with period", "morning after pill mess up cycle", "morning after pill messed up cycle for months", "does the morning after pill mess with period", "can morning after pill mess with period", "does morning after pill mess with your cycle", "can the morning after pill.mess with your cycle", "morning after pill messed up my cycle", "morning after pill mess up period"], "self_loops": [0], "tags": {"i": "morning after pill mess with cycle", "q": "ksm_9Ifp4RVtir0j27x2HftaYE8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abuzz abortion pills reviews reddit", "datetime": "2026-03-12 19:55:22.474713", "source": "google", "data": ["abuzz abortion pills reviews reddit", [["abuzz abortion pills reviews reddit", 0, [22, 30]], ["abortion pill reviews reddit", 0, [512, 390, 650]], ["how does abortion pill work reddit", 0, [512, 390, 650]], ["what does the abortion pill feel like reddit", 0, [512, 390, 650]], ["abortion pill reviews 2021", 0, [751]], ["abortion pill reviews usa", 0, [751]]], {"i": "abuzz abortion pills reviews reddit", "q": "BhSGD8x72IY6t5xq_kxeRTP1n64", "t": {"bpc": false, "tlw": false}}], "suggests": ["abuzz abortion pills reviews reddit", "abortion pill reviews reddit", "how does abortion pill work reddit", "what does the abortion pill feel like reddit", "abortion pill reviews 2021", "abortion pill reviews usa"], "self_loops": [0], "tags": {"i": "abuzz abortion pills reviews reddit", "q": "BhSGD8x72IY6t5xq_kxeRTP1n64", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "carafem abortion pill review reddit", "datetime": "2026-03-12 19:55:23.849787", "source": "google", "data": ["carafem abortion pill review reddit", [["carafem abortion pill review reddit", 0, [22, 30]], ["abortion pill reviews reddit", 0, [512, 390, 650]], ["what does the abortion pill feel like reddit", 0, [512, 390, 650]], ["carafem abortion pill reviews", 0, [512, 390, 650]], ["how does abortion pill work reddit", 0, [512, 390, 650]], ["carafem abortion reddit", 0, [546, 649]], ["carafem reviews reddit", 0, [512, 546]], ["carafem reddit", 0, [512, 546]]], {"i": "carafem abortion pill review reddit", "q": "nTg6ekrcIIvswFagOL49SYWCCsY", "t": {"bpc": false, "tlw": false}}], "suggests": ["carafem abortion pill review reddit", "abortion pill reviews reddit", "what does the abortion pill feel like reddit", "carafem abortion pill reviews", "how does abortion pill work reddit", "carafem abortion reddit", "carafem reviews reddit", "carafem reddit"], "self_loops": [0], "tags": {"i": "carafem abortion pill review reddit", "q": "nTg6ekrcIIvswFagOL49SYWCCsY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "aid access abortion pill reviews reddit", "datetime": "2026-03-12 19:55:25.120815", "source": "google", "data": ["aid access abortion pill reviews reddit", [["aid access abortion pill reviews reddit", 0, [512]], ["aid access abortion pill reviews", 0, [512, 390, 650]], ["abortion pill reviews reddit", 0, [512, 390, 650]], ["aid access reviews reddit", 0, [512, 546]], ["aid access abortion pill reddit", 0, [512, 546]]], {"i": "aid access abortion pill reviews reddit", "q": "dW15ayKCRltSlLWXuD1SW8m8vdQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["aid access abortion pill reviews reddit", "aid access abortion pill reviews", "abortion pill reviews reddit", "aid access reviews reddit", "aid access abortion pill reddit"], "self_loops": [0], "tags": {"i": "aid access abortion pill reviews reddit", "q": "dW15ayKCRltSlLWXuD1SW8m8vdQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "hey jane abortion pill reviews reddit", "datetime": "2026-03-12 19:55:26.527879", "source": "google", "data": ["hey jane abortion pill reviews reddit", [["hey jane abortion pill reviews reddit", 0, [512]], ["hey jane abortion reviews", 0, [512, 390, 650]], ["abortion pill reviews reddit", 0, [512, 390, 650]], ["how does abortion pill work reddit", 0, [512, 390, 650]], ["hey jane abortion reviews reddit", 0, [512, 546]], ["hey jane reviews reddit", 0, [512, 546]]], {"i": "hey jane abortion pill reviews reddit", "q": "rm1AXi5MZm5hP0ZaQTUAA3LS0Qw", "t": {"bpc": false, "tlw": false}}], "suggests": ["hey jane abortion pill reviews reddit", "hey jane abortion reviews", "abortion pill reviews reddit", "how does abortion pill work reddit", "hey jane abortion reviews reddit", "hey jane reviews reddit"], "self_loops": [0], "tags": {"i": "hey jane abortion pill reviews reddit", "q": "rm1AXi5MZm5hP0ZaQTUAA3LS0Qw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill reddit experience", "datetime": "2026-03-12 19:55:27.348090", "source": "google", "data": ["abortion pill reddit experience", [["abortion pill reddit experience", 0, [512]], ["abortion pill experience reddit 4 weeks", 0, [22, 30]], ["abortion pill experience reddit india", 0, [22, 30]], ["miscarriage pill experience reddit", 0, [22, 30]], ["medical abortion pill experience reddit", 0, [22, 30]], ["abortion pill positive experience reddit", 0, [22, 30]], ["my abortion pill experience reddit", 0, [22, 30]], ["abortion pill good experience reddit", 0, [22, 30]], ["planned parenthood abortion pill experience reddit", 0, [22, 30]], ["aid access abortion pill experience reddit", 0, [22, 30]]], {"i": "abortion pill reddit experience", "q": "OoxGUJczXf6qNfvculescln6oc4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill reddit experience", "abortion pill experience reddit 4 weeks", "abortion pill experience reddit india", "miscarriage pill experience reddit", "medical abortion pill experience reddit", "abortion pill positive experience reddit", "my abortion pill experience reddit", "abortion pill good experience reddit", "planned parenthood abortion pill experience reddit", "aid access abortion pill experience reddit"], "self_loops": [0], "tags": {"i": "abortion pill reddit experience", "q": "OoxGUJczXf6qNfvculescln6oc4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill reviews 2021", "datetime": "2026-03-12 19:55:28.199069", "source": "google", "data": ["abortion pill reviews 2021", [], {"i": "abortion pill reviews 2021", "q": "RNqGqNRtAb2SZIzioiOuQJyh-wE", "t": {"bpc": false, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "abortion pill reviews 2021", "q": "RNqGqNRtAb2SZIzioiOuQJyh-wE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects how long does it last", "datetime": "2026-03-12 19:55:29.320803", "source": "google", "data": ["morning after pill side effects how long does it last", [["morning after pill side effects how long does it last", 0, [22, 30]], ["morning after pill side effects and how long they last", 0, [22, 30]], ["plan b pill side effects how long do they last", 0, [22, 30]], ["how long can side effects of the morning after pill last", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill how long does it stay in your system", 0, [512, 546]], ["morning after pill how it works side effects", 0, [512, 546]], ["morning after pill how long does it work", 0, [512, 546]], ["morning-after pills works after how long", 0, [751]]], {"i": "morning after pill side effects how long does it last", "q": "-nIcQLn-tusk-gFuCpPdCwhEv-I", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects how long does it last", "morning after pill side effects and how long they last", "plan b pill side effects how long do they last", "how long can side effects of the morning after pill last", "morning after pill side effects a week later", "morning after pill how long does it stay in your system", "morning after pill how it works side effects", "morning after pill how long does it work", "morning-after pills works after how long"], "self_loops": [0], "tags": {"i": "morning after pill side effects how long does it last", "q": "-nIcQLn-tusk-gFuCpPdCwhEv-I", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long can side effects of the morning after pill last", "datetime": "2026-03-12 19:55:30.569931", "source": "google", "data": ["how long can side effects of the morning after pill last", [], {"i": "how long can side effects of the morning after pill last", "q": "9kpvSJaHJU8ngVg5qOeDEtvANB8", "t": {"bpc": true, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "how long can side effects of the morning after pill last", "q": "9kpvSJaHJU8ngVg5qOeDEtvANB8", "t": {"bpc": true, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how many days do morning after pill side effects last", "datetime": "2026-03-12 19:55:31.862615", "source": "google", "data": ["how many days do morning after pill side effects last", [["how many days do morning after pill side effects last", 0, [512]], ["how many days does emergency pill side effects last", 0, [22, 30]], ["how long do day after pill side effects last", 0, [22, 30]], ["how long does the morning after pill side effects last in your system", 0, [22, 30]], ["how long does morning after pills side effects last", 0, [512, 390, 650]], ["how many days does the morning after pill last", 0, [512, 546]], ["how long does morning after pill work after taking", 0, [512, 546]], ["how long does the morning after pill effects last", 0, [512, 546]], ["how many days do plan b side effects last", 0, [512, 546]]], {"i": "how many days do morning after pill side effects last", "q": "I3NH43wV-L6g3b2ujQ6ICUHe-t4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how many days do morning after pill side effects last", "how many days does emergency pill side effects last", "how long do day after pill side effects last", "how long does the morning after pill side effects last in your system", "how long does morning after pills side effects last", "how many days does the morning after pill last", "how long does morning after pill work after taking", "how long does the morning after pill effects last", "how many days do plan b side effects last"], "self_loops": [0], "tags": {"i": "how many days do morning after pill side effects last", "q": "I3NH43wV-L6g3b2ujQ6ICUHe-t4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill how it works side effects", "datetime": "2026-03-12 19:55:32.886816", "source": "google", "data": ["morning after pill how it works side effects", [["morning after pill how it works side effects", 0, [512]], ["how long does morning after pills side effects last", 0, [512, 390, 650]], ["does the morning after pill cause side effects", 0, [512, 390, 650]], ["how long after taking morning after pill does it work", 0, [512, 390, 650]], ["morning-after pills works after how long", 0, [751]], ["morning after pill how it works", 0, [512, 546]]], {"i": "morning after pill how it works side effects", "q": "paa8u_92KsbXfCemxjsJWbd0ff8", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill how it works side effects", "how long does morning after pills side effects last", "does the morning after pill cause side effects", "how long after taking morning after pill does it work", "morning-after pills works after how long", "morning after pill how it works"], "self_loops": [0], "tags": {"i": "morning after pill how it works side effects", "q": "paa8u_92KsbXfCemxjsJWbd0ff8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill how long does it stay in your system", "datetime": "2026-03-12 19:55:33.706539", "source": "google", "data": ["morning after pill how long does it stay in your system", [["morning after pill how long does it stay in your system", 0, [512]], ["how long does it take for the morning after pill to leave your system", 0, [512, 390, 650]], ["how long does a morning after stay in your system", 0, [512, 390, 650]], ["how long does morning after pill last in the system", 0, [512, 390, 650]], ["morning after pill how long does it work", 0, [512, 546]], ["morning-after pills works after how long", 0, [751]], ["morning after pill how it works side effects", 0, [512, 546]]], {"i": "morning after pill how long does it stay in your system", "q": "n9EM08O3hMAuG8XDGMc6dI7q_2E", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill how long does it stay in your system", "how long does it take for the morning after pill to leave your system", "how long does a morning after stay in your system", "how long does morning after pill last in the system", "morning after pill how long does it work", "morning-after pills works after how long", "morning after pill how it works side effects"], "self_loops": [0], "tags": {"i": "morning after pill how long does it stay in your system", "q": "n9EM08O3hMAuG8XDGMc6dI7q_2E", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long do you get side effects from the morning after pill", "datetime": "2026-03-12 19:55:34.785796", "source": "google", "data": ["how long do you get side effects from the morning after pill", [["how long do you get side effects from the morning after pill", 0, [512]], ["how long does morning after pills side effects last", 0, [512, 390, 650]], ["how long does the morning after pill effects last", 0, [512, 546]], ["how long do you feel the side effects of plan b", 0, [512, 546]], ["morning after pill side effects a week later", 0, [512, 546]], ["how long does the morning after pill stay in your body", 0, [512, 546]]], {"i": "how long do you get side effects from the morning after pill", "q": "rXy9CHumPD6BwEEBNyU4mXvT_wo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how long do you get side effects from the morning after pill", "how long does morning after pills side effects last", "how long does the morning after pill effects last", "how long do you feel the side effects of plan b", "morning after pill side effects a week later", "how long does the morning after pill stay in your body"], "self_loops": [0], "tags": {"i": "how long do you get side effects from the morning after pill", "q": "rXy9CHumPD6BwEEBNyU4mXvT_wo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects how long do they last", "datetime": "2026-03-12 19:55:36.252698", "source": "google", "data": ["morning after pill side effects how long do they last", [["morning after pill side effects how long do they last", 0, [512]], ["plan b pill side effects how long do they last", 0, [22, 30]], ["morning after pill side effects and how long they last", 0, [22, 30]], ["how long can side effects of the morning after pill last", 0, [512, 390, 650]], ["how long does morning after pills side effects last", 0, [512, 390, 650]], ["how long does it take for the morning after pill to leave your system", 0, [512, 390, 650]], ["morning after pill how long does it stay in your system", 0, [512, 546]], ["morning after pill how long does it work", 0, [512, 546]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill how it works side effects", 0, [512, 546]]], {"i": "morning after pill side effects how long do they last", "q": "H-NE2cGCuJp2w2htjlx07y5atoE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill side effects how long do they last", "plan b pill side effects how long do they last", "morning after pill side effects and how long they last", "how long can side effects of the morning after pill last", "how long does morning after pills side effects last", "how long does it take for the morning after pill to leave your system", "morning after pill how long does it stay in your system", "morning after pill how long does it work", "morning after pill side effects a week later", "morning after pill how it works side effects"], "self_loops": [0], "tags": {"i": "morning after pill side effects how long do they last", "q": "H-NE2cGCuJp2w2htjlx07y5atoE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects how long", "datetime": "2026-03-12 19:55:37.214904", "source": "google", "data": ["morning after pill side effects how long", [["morning after pill side effects how long do they last", 0, [512]], ["morning after pill side effects how long", 0, [512]], ["day after pill side effects how long", 0, [22, 30]], ["morning after pill side effects how many days", 0, [22, 30]], ["morning after pill side effects how soon", 0, [22, 30]], ["morning after pill side effects and how long they last", 0, [22, 30]], ["morning after pill side effects long term", 0, [22, 30]], ["morning after pill side effects long period", 0, [22, 30]], ["morning after pill side effects long term reddit", 0, [22, 30]], ["day after pill side effects long term", 0, [22, 30]]], {"i": "morning after pill side effects how long", "q": "Jt56fPo_Zxn4NXdU0vi1LLIdtJ0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill side effects how long do they last", "morning after pill side effects how long", "day after pill side effects how long", "morning after pill side effects how many days", "morning after pill side effects how soon", "morning after pill side effects and how long they last", "morning after pill side effects long term", "morning after pill side effects long period", "morning after pill side effects long term reddit", "day after pill side effects long term"], "self_loops": [1], "tags": {"i": "morning after pill side effects how long", "q": "Jt56fPo_Zxn4NXdU0vi1LLIdtJ0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects long term", "datetime": "2026-03-12 19:55:38.550294", "source": "google", "data": ["morning after pill side effects long term", [["morning after pill side effects long term reddit", 0, [22, 30]], ["day after pill side effects long term", 0, [22, 30]], ["plan b pill side effects long term", 0, [22, 30]], ["emergency pill side effects long term", 0, [22, 30]], ["morning after pill long term side effects fertility", 0, [22, 30]], ["does the morning after pill have long term effects", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]]], {"i": "morning after pill side effects long term", "q": "tDufOE_5GX7TCHAE4loOj_pzJs0", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects long term reddit", "day after pill side effects long term", "plan b pill side effects long term", "emergency pill side effects long term", "morning after pill long term side effects fertility", "does the morning after pill have long term effects", "morning after pill side effects a week later", "morning after pill side effects menstrual cycle"], "self_loops": [], "tags": {"i": "morning after pill side effects long term", "q": "tDufOE_5GX7TCHAE4loOj_pzJs0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "day after pill side effects long term", "datetime": "2026-03-12 19:55:39.450332", "source": "google", "data": ["day after pill side effects long term", [["day after pill side effects long term", 0, [512]], ["morning after pill side effects long term reddit", 0, [22, 30]], ["morning pill side effects long term", 0, [22, 30]], ["does the morning after pill have long term effects", 0, [512, 390, 650]], ["how long does the side effect of post pill last", 0, [512, 390, 650]], ["how many days do morning after pill side effects last", 0, [512, 390, 650]], ["how long do side effects of contraceptive pills last", 0, [512, 390, 650]], ["day after pill side effects period", 0, [546, 649]], ["day after pill affect your period", 0, [546, 649]], ["day after pill side effects", 0, [512, 546]]], {"i": "day after pill side effects long term", "q": "IHDKGgO5C5b4QSlK8p5oCV3RHug", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["day after pill side effects long term", "morning after pill side effects long term reddit", "morning pill side effects long term", "does the morning after pill have long term effects", "how long does the side effect of post pill last", "how many days do morning after pill side effects last", "how long do side effects of contraceptive pills last", "day after pill side effects period", "day after pill affect your period", "day after pill side effects"], "self_loops": [0], "tags": {"i": "day after pill side effects long term", "q": "IHDKGgO5C5b4QSlK8p5oCV3RHug", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long does morning after pill side effects take", "datetime": "2026-03-12 19:55:40.720574", "source": "google", "data": ["how long does morning after pill side effects take", [["how long does morning after pill side effects take", 0, [22, 30]], ["how long does it take for morning after pill side effects to kick in", 0, [22, 30]], ["how long after taking the morning after pill do side effects occur", 0, [22, 30]], ["how long does morning after pills side effects last", 0, [512, 390, 650]], ["side effects of morning after pills and how long they last", 0, [512, 390, 650]], ["how long does morning after pill work after taking", 0, [512, 546]], ["how long does the morning after pill effects last", 0, [512, 546]], ["how long does morning after pill delay period", 0, [512, 546]]], {"i": "how long does morning after pill side effects take", "q": "3HYt04GH68a-c1MZpmVFj_7zj58", "t": {"bpc": false, "tlw": false}}], "suggests": ["how long does morning after pill side effects take", "how long does it take for morning after pill side effects to kick in", "how long after taking the morning after pill do side effects occur", "how long does morning after pills side effects last", "side effects of morning after pills and how long they last", "how long does morning after pill work after taking", "how long does the morning after pill effects last", "how long does morning after pill delay period"], "self_loops": [0], "tags": {"i": "how long does morning after pill side effects take", "q": "3HYt04GH68a-c1MZpmVFj_7zj58", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long does morning after pills side effects last", "datetime": "2026-03-12 19:55:41.929388", "source": "google", "data": ["how long does morning after pills side effects last", [["how long does morning after pills side effects last", 0, [512]], ["how long do day after pill side effects last", 0, [22, 30]], ["how long does the morning after pill side effects last in your system", 0, [22, 30]], ["how long does plan b pill side effects last", 0, [22, 30]], ["how long does emergency contraceptive pill side effects last", 0, [22, 30]], ["can morning after pill side effects last a week", 0, [22, 30]], ["can morning after pill side effects last for 2 weeks", 0, [22, 30]], ["side effects of morning after pills and how long they last", 0, [512, 390, 650]], ["how long does morning after pill work after taking", 0, [512, 546]], ["how long does the morning after pill effects last", 0, [512, 546]]], {"i": "how long does morning after pills side effects last", "q": "j-aIkEFz47zYEZUNN6WnGa7LaBE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how long does morning after pills side effects last", "how long do day after pill side effects last", "how long does the morning after pill side effects last in your system", "how long does plan b pill side effects last", "how long does emergency contraceptive pill side effects last", "can morning after pill side effects last a week", "can morning after pill side effects last for 2 weeks", "side effects of morning after pills and how long they last", "how long does morning after pill work after taking", "how long does the morning after pill effects last"], "self_loops": [0], "tags": {"i": "how long does morning after pills side effects last", "q": "j-aIkEFz47zYEZUNN6WnGa7LaBE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how effective is the morning after pill 48 hours later", "datetime": "2026-03-12 19:55:43.396015", "source": "google", "data": ["how effective is the morning after pill 48 hours later", [["how effective is the morning after pill 48 hours later", 0, [512]], ["how effective is the morning after pill after 48 hours", 0, [512, 390, 650]], ["how effective is the morning after pill after 3 days", 0, [512, 390, 650]], ["how effective is the morning after pill after 4 days", 0, [512, 390, 650]], ["how effective is the morning after pill within 24 hours", 0, [512, 546]], ["how effective is the morning after pill after 1 day", 0, [512, 546]], ["how effective is the morning after pill the next day", 0, [751]], ["how effective is the morning after pill with birth control", 0, [546, 649]]], {"i": "how effective is the morning after pill 48 hours later", "q": "EA44J2oZq0o5FyAvDtXAuGxWfg4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how effective is the morning after pill 48 hours later", "how effective is the morning after pill after 48 hours", "how effective is the morning after pill after 3 days", "how effective is the morning after pill after 4 days", "how effective is the morning after pill within 24 hours", "how effective is the morning after pill after 1 day", "how effective is the morning after pill the next day", "how effective is the morning after pill with birth control"], "self_loops": [0], "tags": {"i": "how effective is the morning after pill 48 hours later", "q": "EA44J2oZq0o5FyAvDtXAuGxWfg4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how soon after an abortion can i start the pill", "datetime": "2026-03-12 19:55:44.456389", "source": "google", "data": ["how soon after an abortion can i start the pill", [["how soon after an abortion can i start the pill", 0, [512]], ["how long after an abortion can you start the pill", 0, [512, 390, 650]], ["how long after an abortion can you start taking the pill", 0, [512, 390, 650]], ["how soon after an abortion can i start birth control", 0, [512, 546]], ["how soon after an abortion can you take birth control", 0, [512, 546]]], {"i": "how soon after an abortion can i start the pill", "q": "CJKCydbFrFQb1YCTB_MJGo8ZqX8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how soon after an abortion can i start the pill", "how long after an abortion can you start the pill", "how long after an abortion can you start taking the pill", "how soon after an abortion can i start birth control", "how soon after an abortion can you take birth control"], "self_loops": [0], "tags": {"i": "how soon after an abortion can i start the pill", "q": "CJKCydbFrFQb1YCTB_MJGo8ZqX8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how soon after abortion pill can i get pregnant", "datetime": "2026-03-12 19:55:45.840048", "source": "google", "data": ["how soon after abortion pill can i get pregnant", [["how soon after abortion pill can i get pregnant", 0, [512]], ["how long after abortion pill can i get pregnant", 0, [22, 30]], ["how long after the morning after pill can i get pregnant", 0, [22, 10, 30]], ["how soon after abortion pill can i take pregnancy test", 0, [22, 30]], ["how soon after abortion pill can you get pregnant again", 0, [22, 30]], ["how long after abortion pill should i take pregnancy test", 0, [22, 30]], ["how soon after termination can i get pregnant", 0, [22, 30]], ["how soon after morning after pill can i take a pregnancy test", 0, [22, 30]], ["how long after termination can i get pregnant", 0, [22, 30]], ["can you get pregnant a week after abortion pill", 0, [512, 390, 650]]], {"i": "how soon after abortion pill can i get pregnant", "q": "AeKWmyvsdSfRb9UdEI7J-THY_1Q", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how soon after abortion pill can i get pregnant", "how long after abortion pill can i get pregnant", "how long after the morning after pill can i get pregnant", "how soon after abortion pill can i take pregnancy test", "how soon after abortion pill can you get pregnant again", "how long after abortion pill should i take pregnancy test", "how soon after termination can i get pregnant", "how soon after morning after pill can i take a pregnancy test", "how long after termination can i get pregnant", "can you get pregnant a week after abortion pill"], "self_loops": [0], "tags": {"i": "how soon after abortion pill can i get pregnant", "q": "AeKWmyvsdSfRb9UdEI7J-THY_1Q", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how soon after taking abortion pill can i get pregnant", "datetime": "2026-03-12 19:55:46.823722", "source": "google", "data": ["how soon after taking abortion pill can i get pregnant", [["how soon after taking abortion pill can i get pregnant", 0, [22, 30]], ["how soon after abortion pill can i get pregnant", 0, [22, 30]], ["how long after taking abortion pill can you get pregnant again", 0, [22, 30]], ["how long after taking abortion pill should i take pregnancy test", 0, [22, 30]], ["how long after taking abortion pill can i take a pregnancy test", 0, [22, 30]], ["after taking abortion pill can i get pregnant again", 0, [22, 30]], ["can you get pregnant a week after abortion pill", 0, [512, 390, 650]], ["how long after an abortion pill can you get pregnant", 0, [512, 390, 650]]], {"i": "how soon after taking abortion pill can i get pregnant", "q": "OK_0cN3REg1s2r8JmsgABrDhUAw", "t": {"bpc": false, "tlw": false}}], "suggests": ["how soon after taking abortion pill can i get pregnant", "how soon after abortion pill can i get pregnant", "how long after taking abortion pill can you get pregnant again", "how long after taking abortion pill should i take pregnancy test", "how long after taking abortion pill can i take a pregnancy test", "after taking abortion pill can i get pregnant again", "can you get pregnant a week after abortion pill", "how long after an abortion pill can you get pregnant"], "self_loops": [0], "tags": {"i": "how soon after taking abortion pill can i get pregnant", "q": "OK_0cN3REg1s2r8JmsgABrDhUAw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how soon after abortion can you take birth control", "datetime": "2026-03-12 19:55:48.121203", "source": "google", "data": ["how soon after abortion can you take birth control", [["how soon after abortion can you take birth control", 0, [512]], ["how soon after abortion can you get birth control", 0, [22, 30]], ["how soon after abortion pill can you take birth control", 0, [22, 30]], ["how long after medical abortion can you take birth control", 0, [22, 30]], ["how soon after abortion can you go on birth control", 0, [22, 30]], ["how soon after abortion can i take the pill", 0, [512, 390, 650]], ["can you take birth control after an abortion", 0, [512, 390, 650]], ["how soon after an abortion can i start the pill", 0, [512, 390, 650]], ["how soon after abortion can you start birth control", 0, [512, 546]]], {"i": "how soon after abortion can you take birth control", "q": "B-81YWfT1d8nfybbFCNaPiC9N1k", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how soon after abortion can you take birth control", "how soon after abortion can you get birth control", "how soon after abortion pill can you take birth control", "how long after medical abortion can you take birth control", "how soon after abortion can you go on birth control", "how soon after abortion can i take the pill", "can you take birth control after an abortion", "how soon after an abortion can i start the pill", "how soon after abortion can you start birth control"], "self_loops": [0], "tags": {"i": "how soon after abortion can you take birth control", "q": "B-81YWfT1d8nfybbFCNaPiC9N1k", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long after an abortion can you start birth control", "datetime": "2026-03-12 19:55:49.540700", "source": "google", "data": ["how long after an abortion can you start birth control", [["how long after an abortion can you start birth control", 0, [512]], ["how soon after an abortion can you start birth control pills", 0, [22, 30]], ["how long after medical abortion can you start birth control", 0, [22, 30]], ["how long after abortion pill can you start birth control", 0, [22, 30]], ["how long after an abortion can you go on birth control", 0, [22, 30]], ["how soon after an abortion can you take birth control pills", 0, [22, 30]], ["how soon after an abortion can i start the pill", 0, [512, 390, 650]], ["how long after an abortion can you start the pill", 0, [512, 390, 650]], ["how long after an abortion can you start taking the pill", 0, [512, 390, 650]], ["how long after an abortion can you get birth control", 0, [512, 546]]], {"i": "how long after an abortion can you start birth control", "q": "l1xTqlDdu_GC3UdEVML1DnR7bqI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how long after an abortion can you start birth control", "how soon after an abortion can you start birth control pills", "how long after medical abortion can you start birth control", "how long after abortion pill can you start birth control", "how long after an abortion can you go on birth control", "how soon after an abortion can you take birth control pills", "how soon after an abortion can i start the pill", "how long after an abortion can you start the pill", "how long after an abortion can you start taking the pill", "how long after an abortion can you get birth control"], "self_loops": [0], "tags": {"i": "how long after an abortion can you start birth control", "q": "l1xTqlDdu_GC3UdEVML1DnR7bqI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long after an abortion can you take a plan b pill", "datetime": "2026-03-12 19:55:50.858604", "source": "google", "data": ["how long after an abortion can you take a plan b pill", [["how long after an abortion can you take a plan b pills", 33, [160], {"a": "how long after an abortion can you take a plan b ", "b": "pills"}], ["how long after an abortion can you take a plan b pill in california", 33, [160], {"a": "how long after an abortion can you take a plan b ", "b": "pill in california"}], ["how long after an abortion can you take a plan b pill for dogs", 33, [160], {"a": "how long after an abortion can you take a plan b ", "b": "pill for dogs"}], ["how long after an abortion can you take a plan b pill work", 33, [299], {"a": "how long after an abortion can you take a plan b ", "b": "pill work"}]], {"i": "how long after an abortion can you take a plan b pill", "q": "4XO1vY0fIeSHwrFsf7dQfiQsC5U", "t": {"bpc": false, "tlw": false}}], "suggests": ["how long after an abortion can you take a plan b pills", "how long after an abortion can you take a plan b pill in california", "how long after an abortion can you take a plan b pill for dogs", "how long after an abortion can you take a plan b pill work"], "self_loops": [], "tags": {"i": "how long after an abortion can you take a plan b pill", "q": "4XO1vY0fIeSHwrFsf7dQfiQsC5U", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long after an abortion can you take birth control", "datetime": "2026-03-12 19:55:51.695379", "source": "google", "data": ["how long after an abortion can you take birth control", [["how long after an abortion can you take birth control", 0, [512]], ["how long after an abortion can you get birth control", 0, [22, 30]], ["how soon after an abortion can you take birth control pills", 0, [22, 30]], ["how long after medical abortion can you take birth control", 0, [22, 30]], ["how long after abortion pill can you take birth control", 0, [22, 30]], ["how long after an abortion can you go on birth control", 0, [22, 30]], ["can you take birth control after an abortion", 0, [512, 390, 650]], ["how soon after abortion can i take the pill", 0, [512, 390, 650]], ["how long after an abortion can you start birth control", 0, [512, 546]]], {"i": "how long after an abortion can you take birth control", "q": "454OIavePXuDRnmz5o5fgIbPQuc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how long after an abortion can you take birth control", "how long after an abortion can you get birth control", "how soon after an abortion can you take birth control pills", "how long after medical abortion can you take birth control", "how long after abortion pill can you take birth control", "how long after an abortion can you go on birth control", "can you take birth control after an abortion", "how soon after abortion can i take the pill", "how long after an abortion can you start birth control"], "self_loops": [0], "tags": {"i": "how long after an abortion can you take birth control", "q": "454OIavePXuDRnmz5o5fgIbPQuc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long after an abortion pill can you get pregnant", "datetime": "2026-03-12 19:55:52.744229", "source": "google", "data": ["how long after an abortion pill can you get pregnant", [["how long after an abortion pill can you get pregnant", 0, [512]], ["how long after an abortion pill can you get pregnant again", 0, [22, 30]], ["how long after medication abortion can you get pregnant again", 0, [22, 30]], ["how long after abortion pill do you get a negative pregnancy test", 0, [22, 30]], ["how soon after abortion pill can i get pregnant", 0, [22, 30]], ["how soon after an abortion can you get pregnant", 0, [512, 390, 650]], ["how soon can you get an abortion after getting pregnant", 0, [512, 390, 650]], ["can you get pregnant a week after abortion pill", 0, [512, 390, 650]], ["can you get pregnant a week after a medical abortion", 0, [512, 390, 650]]], {"i": "how long after an abortion pill can you get pregnant", "q": "8GPZGp6tooivlm3zxvRKVppaimU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how long after an abortion pill can you get pregnant", "how long after an abortion pill can you get pregnant again", "how long after medication abortion can you get pregnant again", "how long after abortion pill do you get a negative pregnancy test", "how soon after abortion pill can i get pregnant", "how soon after an abortion can you get pregnant", "how soon can you get an abortion after getting pregnant", "can you get pregnant a week after abortion pill", "can you get pregnant a week after a medical abortion"], "self_loops": [0], "tags": {"i": "how long after an abortion pill can you get pregnant", "q": "8GPZGp6tooivlm3zxvRKVppaimU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "first abortion pill mumsnet side effects", "datetime": "2026-03-12 19:55:53.577029", "source": "google", "data": ["first abortion pill mumsnet side effects", [["first abortion pill mumsnet side effects", 0, [22, 30]], ["4 days after abortion pill", 0, [512, 390, 650]], ["first abortion pill symptoms", 0, [512, 546]], ["first abortion pill mumsnet", 0, [546, 649]], ["first abortion pill effects", 0, [512, 546]], ["abortion pill mumsnet", 0, [512, 546]]], {"i": "first abortion pill mumsnet side effects", "q": "kpZ95ZKeGm4d9fqPaX43Vl-VHs8", "t": {"bpc": false, "tlw": false}}], "suggests": ["first abortion pill mumsnet side effects", "4 days after abortion pill", "first abortion pill symptoms", "first abortion pill mumsnet", "first abortion pill effects", "abortion pill mumsnet"], "self_loops": [0], "tags": {"i": "first abortion pill mumsnet side effects", "q": "kpZ95ZKeGm4d9fqPaX43Vl-VHs8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does first abortion pill have side effects", "datetime": "2026-03-12 19:55:54.460354", "source": "google", "data": ["does first abortion pill have side effects", [["does first abortion pill have side effects", 0, [512]], ["how does first abortion pill make you feel", 0, [512, 390, 650]], ["abortion first pill side effects", 0, [512, 546]], ["does the first abortion pill cause bleeding", 0, [512, 546]]], {"i": "does first abortion pill have side effects", "q": "pbQeKeB9fAIgTsWW9WK5JbigMcg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does first abortion pill have side effects", "how does first abortion pill make you feel", "abortion first pill side effects", "does the first abortion pill cause bleeding"], "self_loops": [0], "tags": {"i": "does first abortion pill have side effects", "q": "pbQeKeB9fAIgTsWW9WK5JbigMcg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill take action side effects", "datetime": "2026-03-12 19:55:55.368519", "source": "google", "data": ["morning after pill take action side effects", [["morning after pill take action side effects", 0, [22, 30]], ["side effects of plan b take action", 0, [512, 390, 650]], ["does the morning after pill cause side effects", 0, [512, 390, 650]], ["how long does morning after pills side effects last", 0, [512, 390, 650]], ["take action pill side effects last", 0, [546, 649]], ["side effects after taking take action pill", 0, [512, 546]], ["morning after pill take action", 0, [512, 546]]], {"i": "morning after pill take action side effects", "q": "7w4FvZfh0KcaCoB0RkHE4dGORrk", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill take action side effects", "side effects of plan b take action", "does the morning after pill cause side effects", "how long does morning after pills side effects last", "take action pill side effects last", "side effects after taking take action pill", "morning after pill take action"], "self_loops": [0], "tags": {"i": "morning after pill take action side effects", "q": "7w4FvZfh0KcaCoB0RkHE4dGORrk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning-after pill side effects", "datetime": "2026-03-12 19:55:56.433518", "source": "google", "data": ["morning-after pill side effects", [["morning-after pill side effects", 0, [512]], ["morning after pill side effects menstrual cycle", 0, [22, 30]], ["morning after pill side effects reddit", 0, [22, 30]], ["morning after pill side effects emotional", 0, [22, 30]], ["morning after pill side effects mood", 0, [22, 30]], ["morning after pill side effects a week later", 0, [22, 30]], ["morning after pill side effects in hindi", 0, [22, 30]], ["morning after pill side effects on period", 0, [22, 30]], ["morning after pill side effects diarrhea", 0, [22, 30]], ["morning after pill side effects future pregnancy", 0, [22, 30]]], {"i": "morning-after pill side effects", "q": "Q_LOaCtTvc5CSezPIrzShqIVifY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning-after pill side effects", "morning after pill side effects menstrual cycle", "morning after pill side effects reddit", "morning after pill side effects emotional", "morning after pill side effects mood", "morning after pill side effects a week later", "morning after pill side effects in hindi", "morning after pill side effects on period", "morning after pill side effects diarrhea", "morning after pill side effects future pregnancy"], "self_loops": [0], "tags": {"i": "morning-after pill side effects", "q": "Q_LOaCtTvc5CSezPIrzShqIVifY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long does pain last after abortion pills", "datetime": "2026-03-12 19:55:57.502253", "source": "google", "data": ["how long does pain last after abortion pills", [["how long does pain last after abortion pills", 0, [512]], ["how long does abortion pill pain last", 0, [22, 10, 30]], ["how long does pain last after pill abortion reddit", 0, [22, 30]], ["how long does pain last after medication abortion", 0, [22, 30]], ["how long does pain last after second abortion pill", 0, [22, 30]], ["how long does severe pain last after abortion pill", 0, [22, 30]], ["how long does pain and bleeding last after abortion pill", 0, [22, 30]], ["how long does pain last during abortion pill", 0, [22, 30]], ["how long does pain last medication abortion", 0, [22, 30]]], {"i": "how long does pain last after abortion pills", "q": "yKRAKOR9xUhinqDL3xN0jahsqNo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how long does pain last after abortion pills", "how long does abortion pill pain last", "how long does pain last after pill abortion reddit", "how long does pain last after medication abortion", "how long does pain last after second abortion pill", "how long does severe pain last after abortion pill", "how long does pain and bleeding last after abortion pill", "how long does pain last during abortion pill", "how long does pain last medication abortion"], "self_loops": [0], "tags": {"i": "how long does pain last after abortion pills", "q": "yKRAKOR9xUhinqDL3xN0jahsqNo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long pain after abortion", "datetime": "2026-03-12 19:55:58.345132", "source": "google", "data": ["how long pain after abortion", [["how long pain after abortion pill", 0, [512]], ["how long pain after abortion", 0, [512]], ["how many days pain after abortion", 0, [22, 30]], ["how many days pain after abortion pill", 0, [22, 30]], ["how many days breast pain after abortion", 0, [22, 30]], ["how many days pain after medical abortion", 0, [22, 30]], ["how long cramps after medical abortion", 0, [22, 30]], ["how long does pain after medical abortion last", 0, [22, 30]], ["how long should pain last after abortion", 0, [22, 30]], ["how long do you hurt after abortion pill", 0, [22, 30]]], {"i": "how long pain after abortion", "q": "FFRjir6s7uTII5JPntkc_PDevDE", "t": {"bpc": false, "tlw": false}}], "suggests": ["how long pain after abortion pill", "how long pain after abortion", "how many days pain after abortion", "how many days pain after abortion pill", "how many days breast pain after abortion", "how many days pain after medical abortion", "how long cramps after medical abortion", "how long does pain after medical abortion last", "how long should pain last after abortion", "how long do you hurt after abortion pill"], "self_loops": [1], "tags": {"i": "how long pain after abortion", "q": "FFRjir6s7uTII5JPntkc_PDevDE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effects months after abortion", "datetime": "2026-03-12 19:55:59.192285", "source": "google", "data": ["side effects months after abortion", [["side effects months after abortion", 0, [512]], ["side effects of abortion after 2 months", 0, [22, 30]], ["side effects of abortion after 3 months", 0, [22, 30]], ["side effects of abortion after 4 months", 0, [22, 30]], ["side effects of abortion after 6 months", 0, [22, 30]], ["side effects of abortion after 5 months", 0, [22, 30]], ["side effects of abortion after 1 month", 0, [22, 10, 30]], ["side effects of abortion pills after 2 months", 0, [22, 30]], ["long term effects after abortion", 0, [512, 390, 650]], ["side effects after abortion", 0, [512, 390, 650]]], {"i": "side effects months after abortion", "q": "9tQcRTFKngVpePqKuFhY0CLmAQI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["side effects months after abortion", "side effects of abortion after 2 months", "side effects of abortion after 3 months", "side effects of abortion after 4 months", "side effects of abortion after 6 months", "side effects of abortion after 5 months", "side effects of abortion after 1 month", "side effects of abortion pills after 2 months", "long term effects after abortion", "side effects after abortion"], "self_loops": [0], "tags": {"i": "side effects months after abortion", "q": "9tQcRTFKngVpePqKuFhY0CLmAQI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effects of 3 weeks abortion", "datetime": "2026-03-12 19:56:00.514168", "source": "google", "data": ["side effects of 3 weeks abortion", [["side effects of 3 weeks abortion", 0, [512]], ["side effects 3 weeks after abortion", 0, [22, 30]], ["side effects of abortion pill at 3 weeks", 0, [22, 30]], ["side effects of abortion after 2 weeks", 0, [512, 390, 650]], ["side effects of abortion after 3 months", 0, [512, 390, 650]], ["side effects of abortion at 15 weeks", 0, [512, 546]], ["side effects of abortion pill long term", 0, [512, 546]], ["side effects of abortion long term", 0, [512, 546]], ["side effects of a surgical abortion", 0, [512, 546]]], {"i": "side effects of 3 weeks abortion", "q": "TGfsuoL7vJQ-ddHvzULiiNgB_fQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["side effects of 3 weeks abortion", "side effects 3 weeks after abortion", "side effects of abortion pill at 3 weeks", "side effects of abortion after 2 weeks", "side effects of abortion after 3 months", "side effects of abortion at 15 weeks", "side effects of abortion pill long term", "side effects of abortion long term", "side effects of a surgical abortion"], "self_loops": [0], "tags": {"i": "side effects of 3 weeks abortion", "q": "TGfsuoL7vJQ-ddHvzULiiNgB_fQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "long term effects after abortion", "datetime": "2026-03-12 19:56:01.678523", "source": "google", "data": ["long term effects after abortion", [["long term effects after abortion", 0, [512]], ["long term effects after abortion pill", 0, [22, 30]], ["long term effects of abortion", 0, [22, 30]], ["long term effects of abortion on the body", 0, [22, 30]], ["long term effects of abortion on women", 0, [22, 30]], ["long term effects of abortion pill reddit", 0, [22, 30]], ["long term effects of abortion on students", 0, [22, 30]], ["long term complications after abortion", 0, [22, 30]], ["long term effects of abortion reddit", 0, [22, 30]], ["long term effects of abortion medication", 0, [22, 30]]], {"i": "long term effects after abortion", "q": "QWBbGXLIlkBuvRTAMcXHzQf6-QQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["long term effects after abortion", "long term effects after abortion pill", "long term effects of abortion", "long term effects of abortion on the body", "long term effects of abortion on women", "long term effects of abortion pill reddit", "long term effects of abortion on students", "long term complications after abortion", "long term effects of abortion reddit", "long term effects of abortion medication"], "self_loops": [0], "tags": {"i": "long term effects after abortion", "q": "QWBbGXLIlkBuvRTAMcXHzQf6-QQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "positive pregnancy 3 weeks after abortion", "datetime": "2026-03-12 19:56:02.958163", "source": "google", "data": ["positive pregnancy 3 weeks after abortion", [["positive pregnancy 3 weeks after abortion", 0, [22, 30]], ["positive pregnancy test 3 weeks after abortion", 0, [22, 30]], ["positive pregnancy test 3 weeks after abortion pill", 0, [22, 30]], ["positive pregnancy test 3 weeks after abortion reddit", 0, [22, 30]], ["strong positive pregnancy test 3 weeks after abortion", 0, [22, 30]], ["faint positive pregnancy test 3 weeks after abortion", 0, [22, 30]], ["strong positive pregnancy test 3 weeks after abortion mumsnet", 0, [22, 30]], ["positive pregnancy test 3 weeks after medical abortion", 0, [22, 30]], ["positive pregnancy test 3 weeks after surgical abortion", 0, [22, 30]], ["faint positive pregnancy test 3 weeks after abortion forum", 0, [22, 30]]], {"i": "positive pregnancy 3 weeks after abortion", "q": "FmZNx_VJEIfeL3-YfMBc8XlpV3o", "t": {"bpc": false, "tlw": false}}], "suggests": ["positive pregnancy 3 weeks after abortion", "positive pregnancy test 3 weeks after abortion", "positive pregnancy test 3 weeks after abortion pill", "positive pregnancy test 3 weeks after abortion reddit", "strong positive pregnancy test 3 weeks after abortion", "faint positive pregnancy test 3 weeks after abortion", "strong positive pregnancy test 3 weeks after abortion mumsnet", "positive pregnancy test 3 weeks after medical abortion", "positive pregnancy test 3 weeks after surgical abortion", "faint positive pregnancy test 3 weeks after abortion forum"], "self_loops": [0], "tags": {"i": "positive pregnancy 3 weeks after abortion", "q": "FmZNx_VJEIfeL3-YfMBc8XlpV3o", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effects of abortion at 15 weeks", "datetime": "2026-03-12 19:56:04.061328", "source": "google", "data": ["side effects of abortion at 15 weeks", [["side effects of abortion at 15 weeks", 0, [512]], ["is it safe to abort at 15 weeks", 0, [512, 390, 650]], ["can you still have an abortion at 15 weeks", 0, [512, 390, 650]], ["side effects of abortion pill long term", 0, [512, 546]], ["15 weeks abortion pain", 0, [751]], ["abortion 15 weeks", 0, [512, 546]]], {"i": "side effects of abortion at 15 weeks", "q": "Mu57pdR41tmZklJFjh6rq54K6LI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["side effects of abortion at 15 weeks", "is it safe to abort at 15 weeks", "can you still have an abortion at 15 weeks", "side effects of abortion pill long term", "15 weeks abortion pain", "abortion 15 weeks"], "self_loops": [0], "tags": {"i": "side effects of abortion at 15 weeks", "q": "Mu57pdR41tmZklJFjh6rq54K6LI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "pain 4 days after abortion pill", "datetime": "2026-03-12 19:56:05.292346", "source": "google", "data": ["pain 4 days after abortion pill", [["pain 4 days after abortion pill", 0, [512]], ["cramps 4 days after morning after pill", 0, [22, 30]], ["abdominal pain 4 days after morning after pill", 0, [22, 30]], ["cramping 4 days after medication abortion", 0, [22, 30]], ["3 days after abortion pain", 0, [512, 390, 650]], ["pain 5 days after abortion pill", 0, [512, 390, 650]], ["medical abortion pain 3 days later", 0, [512, 390, 650]], ["pain 4 days after misoprostol", 0, [512, 546]], ["pain days after abortion pill", 0, [512, 546]], ["pain 3 days after abortion pill", 0, [512, 546]]], {"i": "pain 4 days after abortion pill", "q": "kIYis0QlJfREWQ9Pi1kKlfwCfj8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["pain 4 days after abortion pill", "cramps 4 days after morning after pill", "abdominal pain 4 days after morning after pill", "cramping 4 days after medication abortion", "3 days after abortion pain", "pain 5 days after abortion pill", "medical abortion pain 3 days later", "pain 4 days after misoprostol", "pain days after abortion pill", "pain 3 days after abortion pill"], "self_loops": [0], "tags": {"i": "pain 4 days after abortion pill", "q": "kIYis0QlJfREWQ9Pi1kKlfwCfj8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "bleeding 4 days after abortion pill", "datetime": "2026-03-12 19:56:06.245270", "source": "google", "data": ["bleeding 4 days after abortion pill", [["bleeding 4 days after abortion pill", 0, [512]], ["bleeding 4 days after morning after pill", 0, [22, 30]], ["heavy bleeding 4 days after abortion pill", 0, [22, 30]], ["spotting 4 days after morning after pill", 0, [22, 30]], ["still bleeding 4 days after abortion pill", 0, [22, 30]], ["bleeding for days after morning after pill", 0, [22, 30]], ["heavy bleeding 4 days after morning after pill", 0, [22, 30]], ["bleeding for 10 days after abortion pill", 0, [22, 30]], ["light bleeding 4 days after morning after pill", 0, [22, 30]], ["bleeding for 10 days after morning after pill", 0, [22, 30]]], {"i": "bleeding 4 days after abortion pill", "q": "4TAkRsDTgE_-noTt8iSecuZo_nk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["bleeding 4 days after abortion pill", "bleeding 4 days after morning after pill", "heavy bleeding 4 days after abortion pill", "spotting 4 days after morning after pill", "still bleeding 4 days after abortion pill", "bleeding for days after morning after pill", "heavy bleeding 4 days after morning after pill", "bleeding for 10 days after abortion pill", "light bleeding 4 days after morning after pill", "bleeding for 10 days after morning after pill"], "self_loops": [0], "tags": {"i": "bleeding 4 days after abortion pill", "q": "4TAkRsDTgE_-noTt8iSecuZo_nk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "clots 4 days after abortion pill", "datetime": "2026-03-12 19:56:07.342785", "source": "google", "data": ["clots 4 days after abortion pill", [["clots 4 days after abortion pill", 0, [512]], ["blood clots 4 days after misoprostol", 0, [512, 546]], ["clots 4 days after miscarriage", 0, [512, 546]], ["clots after abortion pill", 0, [512, 546]], ["clots 4 days after abortion", 0, [751]]], {"i": "clots 4 days after abortion pill", "q": "G4-gh2AT6hc9KNEs6_KQZK9H3jY", "t": {"bpc": false, "tlw": false}}], "suggests": ["clots 4 days after abortion pill", "blood clots 4 days after misoprostol", "clots 4 days after miscarriage", "clots after abortion pill", "clots 4 days after abortion"], "self_loops": [0], "tags": {"i": "clots 4 days after abortion pill", "q": "G4-gh2AT6hc9KNEs6_KQZK9H3jY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "bleeding 4 days after morning after pill", "datetime": "2026-03-12 19:56:08.563816", "source": "google", "data": ["bleeding 4 days after morning after pill", [["bleeding 4 days after morning after pill", 0, [512]], ["spotting 4 days after morning after pill", 0, [22, 30]], ["bleeding for days after morning after pill", 0, [22, 30]], ["heavy bleeding 4 days after morning after pill", 0, [22, 30]], ["light bleeding 4 days after morning after pill", 0, [22, 30]], ["bleeding for 10 days after morning after pill", 0, [22, 30]], ["bleeding for 3 days after morning after pill", 0, [22, 30]], ["bleeding for 5 days after morning after pill", 0, [22, 30]], ["bleeding for 8 days after morning after pill", 0, [22, 30]], ["bleeding for 11 days after morning after pill", 0, [22, 30]]], {"i": "bleeding 4 days after morning after pill", "q": "Dtbi_KQGk3ESZHVww8GjdaTFZf4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["bleeding 4 days after morning after pill", "spotting 4 days after morning after pill", "bleeding for days after morning after pill", "heavy bleeding 4 days after morning after pill", "light bleeding 4 days after morning after pill", "bleeding for 10 days after morning after pill", "bleeding for 3 days after morning after pill", "bleeding for 5 days after morning after pill", "bleeding for 8 days after morning after pill", "bleeding for 11 days after morning after pill"], "self_loops": [0], "tags": {"i": "bleeding 4 days after morning after pill", "q": "Dtbi_KQGk3ESZHVww8GjdaTFZf4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "heavy bleeding 4 days after abortion pill", "datetime": "2026-03-12 19:56:09.432500", "source": "google", "data": ["heavy bleeding 4 days after abortion pill", [["heavy bleeding 4 days after abortion pill", 0, [512]], ["heavy bleeding 4 days after morning after pill", 0, [22, 30]], ["bleeding heavy 4 days after abortion", 0, [512, 390, 650]], ["bleeding day 4 after abortion", 0, [512, 390, 650]], ["heavy bleeding 4 weeks after abortion pill", 0, [512, 390, 650]], ["heavy bleeding 4 days after misoprostol", 0, [512, 546]], ["heavy bleeding days after abortion pill", 0, [512, 546]]], {"i": "heavy bleeding 4 days after abortion pill", "q": "o37-BaS87xMmWO7FY3pkMNXIifY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["heavy bleeding 4 days after abortion pill", "heavy bleeding 4 days after morning after pill", "bleeding heavy 4 days after abortion", "bleeding day 4 after abortion", "heavy bleeding 4 weeks after abortion pill", "heavy bleeding 4 days after misoprostol", "heavy bleeding days after abortion pill"], "self_loops": [0], "tags": {"i": "heavy bleeding 4 days after abortion pill", "q": "o37-BaS87xMmWO7FY3pkMNXIifY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spotting 4 days after morning after pill", "datetime": "2026-03-12 19:56:10.242890", "source": "google", "data": ["spotting 4 days after morning after pill", [["spotting 4 days after morning after pill", 0, [512]], ["bleeding 4 days after morning after pill", 0, [22, 30]], ["bleeding for days after morning after pill", 0, [22, 30]], ["heavy bleeding 4 days after morning after pill", 0, [22, 30]], ["brown discharge 4 days after morning after pill", 0, [22, 30]], ["light bleeding 4 days after morning after pill", 0, [22, 30]], ["bleeding for 10 days after morning after pill", 0, [22, 30]], ["bleeding for 3 days after morning after pill", 0, [22, 30]], ["bleeding for 5 days after morning after pill", 0, [22, 30]], ["bleeding for 8 days after morning after pill", 0, [22, 30]]], {"i": "spotting 4 days after morning after pill", "q": "-vfwipcoqqVoc-xG63a6ls8yz5w", "t": {"bpc": false, "tlw": false}}], "suggests": ["spotting 4 days after morning after pill", "bleeding 4 days after morning after pill", "bleeding for days after morning after pill", "heavy bleeding 4 days after morning after pill", "brown discharge 4 days after morning after pill", "light bleeding 4 days after morning after pill", "bleeding for 10 days after morning after pill", "bleeding for 3 days after morning after pill", "bleeding for 5 days after morning after pill", "bleeding for 8 days after morning after pill"], "self_loops": [0], "tags": {"i": "spotting 4 days after morning after pill", "q": "-vfwipcoqqVoc-xG63a6ls8yz5w", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "still bleeding 4 days after abortion pill", "datetime": "2026-03-12 19:56:11.523968", "source": "google", "data": ["still bleeding 4 days after abortion pill", [["still bleeding 4 days after abortion pill", 0, [512]], ["bleeding 4 days after abortion pill", 0, [22, 30]], ["bleeding 4 days after morning after pill", 0, [22, 30]], ["heavy bleeding 4 days after abortion pill", 0, [22, 30]], ["spotting 4 days after morning after pill", 0, [22, 30]], ["heavy bleeding 4 days after morning after pill", 0, [22, 30]], ["bleeding for days after morning after pill", 0, [22, 30]], ["light bleeding 4 days after morning after pill", 0, [22, 30]], ["is it normal to bleed 5 days after abortion", 0, [512, 390, 650]], ["4 weeks after abortion still bleeding", 0, [512, 390, 650]]], {"i": "still bleeding 4 days after abortion pill", "q": "ZMOjkhyZx5CxTrn9yYqvJXgxeC4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["still bleeding 4 days after abortion pill", "bleeding 4 days after abortion pill", "bleeding 4 days after morning after pill", "heavy bleeding 4 days after abortion pill", "spotting 4 days after morning after pill", "heavy bleeding 4 days after morning after pill", "bleeding for days after morning after pill", "light bleeding 4 days after morning after pill", "is it normal to bleed 5 days after abortion", "4 weeks after abortion still bleeding"], "self_loops": [0], "tags": {"i": "still bleeding 4 days after abortion pill", "q": "ZMOjkhyZx5CxTrn9yYqvJXgxeC4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "cramps 4 days after morning after pill", "datetime": "2026-03-12 19:56:12.822253", "source": "google", "data": ["cramps 4 days after morning after pill", [["cramps 4 days after morning after pill", 0, [512]], ["abdominal pain 4 days after morning after pill", 0, [22, 30]], ["cramps 5 days after morning after pill", 0, [512, 390, 650]], ["cramps 3 days after morning after pill", 0, [512, 390, 650]], ["cramps day after morning after pill", 0, [512, 390, 650]], ["cramps 4 days after taking plan b", 0, [546, 649]], ["cramps 4 days after plan b", 0, [512, 546]]], {"i": "cramps 4 days after morning after pill", "q": "8DOLwBUt7eCn3uwZ8Q8bu8JDp_Y", "t": {"bpc": false, "tlw": false}}], "suggests": ["cramps 4 days after morning after pill", "abdominal pain 4 days after morning after pill", "cramps 5 days after morning after pill", "cramps 3 days after morning after pill", "cramps day after morning after pill", "cramps 4 days after taking plan b", "cramps 4 days after plan b"], "self_loops": [0], "tags": {"i": "cramps 4 days after morning after pill", "q": "8DOLwBUt7eCn3uwZ8Q8bu8JDp_Y", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "period 4 days after morning after pill", "datetime": "2026-03-12 19:56:13.806125", "source": "google", "data": ["period 4 days after morning after pill", [["period 4 days after morning after pill", 0, [22, 30]], ["period 4 days late after morning after pill", 0, [22, 30]], ["period 5 days after morning after pill", 0, [512, 390, 650]], ["period 4 days after taking plan b", 0, [546, 649]], ["period 4 days after plan b", 0, [512, 546]], ["period 4 days early after plan b", 0, [751]], ["period 4 days after stopping birth control", 0, [512, 546]], ["period 4 days early on the pill", 0, [546, 649]]], {"i": "period 4 days after morning after pill", "q": "q2imvznG2Jzk42mYOtTigEnvlNk", "t": {"bpc": false, "tlw": false}}], "suggests": ["period 4 days after morning after pill", "period 4 days late after morning after pill", "period 5 days after morning after pill", "period 4 days after taking plan b", "period 4 days after plan b", "period 4 days early after plan b", "period 4 days after stopping birth control", "period 4 days early on the pill"], "self_loops": [0], "tags": {"i": "period 4 days after morning after pill", "q": "q2imvznG2Jzk42mYOtTigEnvlNk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects last for how long", "datetime": "2026-03-12 19:56:14.795081", "source": "google", "data": ["abortion pill side effects last for how long", [["abortion pill side effects last for how long", 0, [512]], ["abortion pill side effects for how long", 0, [22, 30]], ["abortion pill side effects long term", 0, [22, 30]], ["abortion pill side effects long term reddit", 0, [22, 30]], ["how long pain after abortion", 0, [512, 390, 650]], ["how long do the side effects of medical abortion last", 0, [512, 390, 650]], ["how long does abortion side effects last", 0, [512, 390, 650]], ["how long does pain last after abortion pills", 0, [512, 390, 650]], ["how long after abortion does pain stop", 0, [512, 390, 650]], ["how long do side effects last from abortion pill", 0, [512, 546]]], {"i": "abortion pill side effects last for how long", "q": "eYcC3B89i673maiAfPl4wldvpTE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill side effects last for how long", "abortion pill side effects for how long", "abortion pill side effects long term", "abortion pill side effects long term reddit", "how long pain after abortion", "how long do the side effects of medical abortion last", "how long does abortion side effects last", "how long does pain last after abortion pills", "how long after abortion does pain stop", "how long do side effects last from abortion pill"], "self_loops": [0], "tags": {"i": "abortion pill side effects last for how long", "q": "eYcC3B89i673maiAfPl4wldvpTE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can morning after pill side effects last a week", "datetime": "2026-03-12 19:56:15.933052", "source": "google", "data": ["can morning after pill side effects last a week", [["can morning after pill side effects last a week", 0, [512]], ["can morning after pill side effects last for 2 weeks", 0, [22, 30]], ["morning after pill side effects a week later", 0, [22, 30]], ["how many days do morning after pill side effects last", 0, [512, 390, 650]], ["can the morning after pill cause long term effects", 0, [546, 649]], ["the morning after pill side effects long term", 0, [512, 546]], ["can morning after pill cause fever", 0, [512, 546]]], {"i": "can morning after pill side effects last a week", "q": "Bt-bOQuFGlkdrVYWLQwLviFwhxA", "t": {"bpc": false, "tlw": false}}], "suggests": ["can morning after pill side effects last a week", "can morning after pill side effects last for 2 weeks", "morning after pill side effects a week later", "how many days do morning after pill side effects last", "can the morning after pill cause long term effects", "the morning after pill side effects long term", "can morning after pill cause fever"], "self_loops": [0], "tags": {"i": "can morning after pill side effects last a week", "q": "Bt-bOQuFGlkdrVYWLQwLviFwhxA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can morning after pill side effects last for 2 weeks", "datetime": "2026-03-12 19:56:16.995201", "source": "google", "data": ["can morning after pill side effects last for 2 weeks", [["can morning after pill side effects last for 2 weeks", 0, [512]], ["how many days do morning after pill side effects last", 0, [512, 390, 650]], ["morning after pill side effects 2 weeks later", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["side effects of morning after pill long term", 0, [512, 546]], ["can morning after pill affect pregnancy", 0, [512, 546]], ["side effects of morning-after pill if pregnant", 0, [512, 546]]], {"i": "can morning after pill side effects last for 2 weeks", "q": "Nv3hj4JaH0enDyzcXD1UGcJJX5Y", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["can morning after pill side effects last for 2 weeks", "how many days do morning after pill side effects last", "morning after pill side effects 2 weeks later", "morning after pill side effects a week later", "side effects of morning after pill long term", "can morning after pill affect pregnancy", "side effects of morning-after pill if pregnant"], "self_loops": [0], "tags": {"i": "can morning after pill side effects last for 2 weeks", "q": "Nv3hj4JaH0enDyzcXD1UGcJJX5Y", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "pregnancy symptoms after abortion pill", "datetime": "2026-03-12 19:56:17.954705", "source": "google", "data": ["pregnancy symptoms after abortion pill", [["pregnancy symptoms after abortion pill", 0, [512]], ["pregnancy symptoms after morning after pill", 0, [22, 30]], ["ectopic pregnancy symptoms after abortion pill", 0, [22, 30]], ["early pregnancy symptoms after morning after pill", 0, [22, 30]], ["ectopic pregnancy symptoms after morning after pill", 0, [22, 30]], ["when do pregnancy symptoms stop after abortion pill", 0, [22, 30]], ["can you still have pregnancy symptoms after abortion pill", 0, [22, 30]], ["do pregnancy symptoms go away after abortion pill", 0, [22, 30]], ["how long do pregnancy symptoms last after abortion pill", 0, [22, 30]], ["do pregnancy symptoms stop after first abortion pill", 0, [22, 30]]], {"i": "pregnancy symptoms after abortion pill", "q": "lqpz2gS8KLEzPzhxZJy7lm81EQA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["pregnancy symptoms after abortion pill", "pregnancy symptoms after morning after pill", "ectopic pregnancy symptoms after abortion pill", "early pregnancy symptoms after morning after pill", "ectopic pregnancy symptoms after morning after pill", "when do pregnancy symptoms stop after abortion pill", "can you still have pregnancy symptoms after abortion pill", "do pregnancy symptoms go away after abortion pill", "how long do pregnancy symptoms last after abortion pill", "do pregnancy symptoms stop after first abortion pill"], "self_loops": [0], "tags": {"i": "pregnancy symptoms after abortion pill", "q": "lqpz2gS8KLEzPzhxZJy7lm81EQA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long do pregnancy symptoms last after abortion pill", "datetime": "2026-03-12 19:56:19.145877", "source": "google", "data": ["how long do pregnancy symptoms last after abortion pill", [["how long do pregnancy symptoms last after abortion pill", 0, [512]], ["how long do you have pregnancy symptoms after abortion pill", 0, [22, 30]], ["how long do pregnancy symptoms last after abortion", 0, [512, 390, 650]], ["how long does it take for pregnancy symptoms to end after abortion", 0, [512, 390, 650]], ["how long does it take for pregnancy symptoms to leave after abortion", 0, [512, 390, 650]], ["is it possible to still have pregnancy symptoms after abortion", 0, [512, 390, 650]], ["how long do pregnancy symptoms last after medical abortion", 0, [512, 546]], ["how long do pregnancy symptoms last after surgical abortion", 0, [512, 546]], ["how long do pregnancy symptoms go away after abortion", 0, [512, 546]]], {"i": "how long do pregnancy symptoms last after abortion pill", "q": "77FwlGTRH1BysfmAAEXHcyowPqU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how long do pregnancy symptoms last after abortion pill", "how long do you have pregnancy symptoms after abortion pill", "how long do pregnancy symptoms last after abortion", "how long does it take for pregnancy symptoms to end after abortion", "how long does it take for pregnancy symptoms to leave after abortion", "is it possible to still have pregnancy symptoms after abortion", "how long do pregnancy symptoms last after medical abortion", "how long do pregnancy symptoms last after surgical abortion", "how long do pregnancy symptoms go away after abortion"], "self_loops": [0], "tags": {"i": "how long do pregnancy symptoms last after abortion pill", "q": "77FwlGTRH1BysfmAAEXHcyowPqU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long do side effects last from abortion pill", "datetime": "2026-03-12 19:56:19.955271", "source": "google", "data": ["how long do side effects last from abortion pill", [["how long do side effects last from abortion pill", 0, [512]], ["how long do side effects last from morning after pill", 0, [22, 30]], ["how long do symptoms last from abortion pill", 0, [22, 30]], ["how long do symptoms last from morning after pill", 0, [22, 30]], ["how long do symptoms last after abortion pill", 0, [22, 30]], ["how long do pregnancy symptoms last after abortion pill", 0, [22, 30]], ["how long does the morning after pill side effects last in your system", 0, [22, 30]], ["how long does abortion side effects last", 0, [512, 390, 650]], ["how long do side effects of misoprostol last", 0, [512, 390, 650]], ["how long do the side effects of medical abortion last", 0, [512, 390, 650]]], {"i": "how long do side effects last from abortion pill", "q": "5AH6Wekq2MRP2jqO3YYfc-cJ17E", "t": {"bpc": false, "tlw": false}}], "suggests": ["how long do side effects last from abortion pill", "how long do side effects last from morning after pill", "how long do symptoms last from abortion pill", "how long do symptoms last from morning after pill", "how long do symptoms last after abortion pill", "how long do pregnancy symptoms last after abortion pill", "how long does the morning after pill side effects last in your system", "how long does abortion side effects last", "how long do side effects of misoprostol last", "how long do the side effects of medical abortion last"], "self_loops": [0], "tags": {"i": "how long do side effects last from abortion pill", "q": "5AH6Wekq2MRP2jqO3YYfc-cJ17E", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects after 2 weeks", "datetime": "2026-03-12 19:56:20.878734", "source": "google", "data": ["morning after pill side effects after 2 weeks", [["morning after pill side effects after 2 weeks", 0, [512]], ["can morning after pill side effects last for 2 weeks", 0, [22, 30]], ["morning after pill symptoms after 2 weeks", 0, [22, 30]], ["morning after pill side effects 2 weeks later", 0, [512, 390, 650]], ["how many days do morning after pill side effects last", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill symptoms a week later", 0, [512, 546]], ["morning after pill side effects bleeding", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]], ["plan b pill side effects 2 weeks later", 0, [546, 649]]], {"i": "morning after pill side effects after 2 weeks", "q": "SeP4wdg4bt3QMttLg7BUlQKzs8Q", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill side effects after 2 weeks", "can morning after pill side effects last for 2 weeks", "morning after pill symptoms after 2 weeks", "morning after pill side effects 2 weeks later", "how many days do morning after pill side effects last", "morning after pill side effects a week later", "morning after pill symptoms a week later", "morning after pill side effects bleeding", "morning after pill side effects menstrual cycle", "plan b pill side effects 2 weeks later"], "self_loops": [0], "tags": {"i": "morning after pill side effects after 2 weeks", "q": "SeP4wdg4bt3QMttLg7BUlQKzs8Q", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects after a week", "datetime": "2026-03-12 19:56:22.281215", "source": "google", "data": ["morning after pill side effects after a week", [["morning after pill side effects after a week", 0, [512]], ["morning after pill side effects after 2 weeks", 0, [22, 30]], ["morning after pill side effects after 3 weeks", 0, [22, 30]], ["morning after pill side effects after 1 week", 0, [22, 30]], ["morning after pill symptoms after a week", 0, [22, 30]], ["plan b pill side effects after a week", 0, [22, 30]], ["morning after pill side effects bleeding week later", 0, [22, 30]], ["can morning after pill side effects last a week", 0, [22, 30]], ["morning after pill symptoms after 2 weeks", 0, [22, 30]], ["how many days do morning after pill side effects last", 0, [512, 390, 650]]], {"i": "morning after pill side effects after a week", "q": "BwprevGPYfV-EXpBZkLin4q2r0A", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill side effects after a week", "morning after pill side effects after 2 weeks", "morning after pill side effects after 3 weeks", "morning after pill side effects after 1 week", "morning after pill symptoms after a week", "plan b pill side effects after a week", "morning after pill side effects bleeding week later", "can morning after pill side effects last a week", "morning after pill symptoms after 2 weeks", "how many days do morning after pill side effects last"], "self_loops": [0], "tags": {"i": "morning after pill side effects after a week", "q": "BwprevGPYfV-EXpBZkLin4q2r0A", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects after 5 days", "datetime": "2026-03-12 19:56:23.364091", "source": "google", "data": ["morning after pill side effects after 5 days", [["morning after pill side effects after 5 days", 0, [22, 30]], ["morning after pill symptoms after 5 days", 0, [22, 30]], ["how many days do morning after pill side effects last", 0, [512, 390, 650]], ["can the morning after pill make you bleed 5 days later", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]], ["morning-after pill side effects", 0, [512, 546]], ["plan b pill side effects 5 days later", 0, [546, 649]]], {"i": "morning after pill side effects after 5 days", "q": "8ktBKhakETRsWCKtkhn7p8YXf4Q", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects after 5 days", "morning after pill symptoms after 5 days", "how many days do morning after pill side effects last", "can the morning after pill make you bleed 5 days later", "morning after pill side effects a week later", "morning after pill side effects menstrual cycle", "morning-after pill side effects", "plan b pill side effects 5 days later"], "self_loops": [0], "tags": {"i": "morning after pill side effects after 5 days", "q": "8ktBKhakETRsWCKtkhn7p8YXf4Q", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects after 1 week", "datetime": "2026-03-12 19:56:24.480985", "source": "google", "data": ["morning after pill side effects after 1 week", [["morning after pill side effects after 1 week", 0, [512]], ["how many days do morning after pill side effects last", 0, [512, 390, 650]], ["how long does morning after pills side effects last", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill side effects bleeding", 0, [512, 546]], ["morning after pill symptoms a week later", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]], ["morning after pill plan b side effects", 0, [512, 546]]], {"i": "morning after pill side effects after 1 week", "q": "Og__2dK3TD2o40oA5npGAbLqNmg", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects after 1 week", "how many days do morning after pill side effects last", "how long does morning after pills side effects last", "morning after pill side effects a week later", "morning after pill side effects bleeding", "morning after pill symptoms a week later", "morning after pill side effects menstrual cycle", "morning after pill plan b side effects"], "self_loops": [0], "tags": {"i": "morning after pill side effects after 1 week", "q": "Og__2dK3TD2o40oA5npGAbLqNmg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects after a month", "datetime": "2026-03-12 19:56:25.343827", "source": "google", "data": ["morning after pill side effects after a month", [["morning after pill side effects after a month", 0, [512]], ["how long does morning after pills side effects last", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]], ["morning after pill side effects bleeding", 0, [512, 546]], ["morning after pill plan b side effects", 0, [512, 546]]], {"i": "morning after pill side effects after a month", "q": "OtcsWY24y4W8mLUL27DIgsgC1Aw", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects after a month", "how long does morning after pills side effects last", "morning after pill side effects a week later", "morning after pill side effects menstrual cycle", "morning after pill side effects bleeding", "morning after pill plan b side effects"], "self_loops": [0], "tags": {"i": "morning after pill side effects after a month", "q": "OtcsWY24y4W8mLUL27DIgsgC1Aw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects after 3 weeks", "datetime": "2026-03-12 19:56:26.192164", "source": "google", "data": ["morning after pill side effects after 3 weeks", [["morning after pill side effects after 3 weeks", 0, [22, 30]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill plan b side effects", 0, [512, 546]], ["morning after pill symptoms a week later", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]], ["morning after pill side effects bleeding", 0, [512, 546]]], {"i": "morning after pill side effects after 3 weeks", "q": "bJ1IucSs44KIWds59H78n3AKZhY", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects after 3 weeks", "morning after pill side effects a week later", "morning after pill plan b side effects", "morning after pill symptoms a week later", "morning after pill side effects menstrual cycle", "morning after pill side effects bleeding"], "self_loops": [0], "tags": {"i": "morning after pill side effects after 3 weeks", "q": "bJ1IucSs44KIWds59H78n3AKZhY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill vs abortion pill side effects", "datetime": "2026-03-12 19:56:27.137950", "source": "google", "data": ["morning after pill vs abortion pill side effects", [["morning after pill vs abortion pill side effects", 0, [22, 30]], ["can you take plan b 3 weeks after an abortion", 0, [512, 390, 650]], ["morning after pill vs abortion", 0, [512, 546]], ["morning after pill vs medical abortion", 0, [512, 546]]], {"i": "morning after pill vs abortion pill side effects", "q": "uyUYVPp42bLNATuQfQarDTz8xO0", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill vs abortion pill side effects", "can you take plan b 3 weeks after an abortion", "morning after pill vs abortion", "morning after pill vs medical abortion"], "self_loops": [0], "tags": {"i": "morning after pill vs abortion pill side effects", "q": "uyUYVPp42bLNATuQfQarDTz8xO0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effect of abortion in future", "datetime": "2026-03-12 19:56:28.506543", "source": "google", "data": ["side effect of abortion in future", [["side effect of abortion in future", 0, [512]], ["side effects of medical abortion in future pregnancy", 0, [22, 30]], ["side effects of abortion pills in future", 0, [22, 30]], ["side effects of medical abortion in future", 0, [22, 30]], ["side effects of abortion pills in future pregnancy", 0, [22, 30]], ["side effects of abortion on future pregnancy", 0, [22, 30]], ["does abortion affect future pregnancy", 0, [512, 390, 650]], ["long term effects of abortion", 0, [512, 390, 650]], ["effect of abortion on future pregnancy", 0, [512, 390, 650]], ["can medical abortion effect on future pregnancy", 0, [751]]], {"i": "side effect of abortion in future", "q": "5xCwvNFJxzscBgVeTV7A6fQcQig", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["side effect of abortion in future", "side effects of medical abortion in future pregnancy", "side effects of abortion pills in future", "side effects of medical abortion in future", "side effects of abortion pills in future pregnancy", "side effects of abortion on future pregnancy", "does abortion affect future pregnancy", "long term effects of abortion", "effect of abortion on future pregnancy", "can medical abortion effect on future pregnancy"], "self_loops": [0], "tags": {"i": "side effect of abortion in future", "q": "5xCwvNFJxzscBgVeTV7A6fQcQig", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion side effects future pregnancy in hindi", "datetime": "2026-03-12 19:56:29.784221", "source": "google", "data": ["abortion side effects future pregnancy in hindi", [["abortion side effects future pregnancy in hindi", 0, [512]], ["abortion pill side effects future pregnancy in hindi", 0, [22, 455, 30]], ["side effect of abortion in future", 0, [512, 390, 650]], ["effect of abortion on future pregnancy", 0, [512, 390, 650]], ["does abortion affect future pregnancy", 0, [512, 390, 650]], ["does abortion impact future pregnancy", 0, [512, 390, 650]], ["abortion side effects in future pregnancy", 0, [512, 546]], ["abortion pill side effects future pregnancy", 0, [512, 546]]], {"i": "abortion side effects future pregnancy in hindi", "q": "54hfZOi_9kEy7rWrLoCshL-zmjw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion side effects future pregnancy in hindi", "abortion pill side effects future pregnancy in hindi", "side effect of abortion in future", "effect of abortion on future pregnancy", "does abortion affect future pregnancy", "does abortion impact future pregnancy", "abortion side effects in future pregnancy", "abortion pill side effects future pregnancy"], "self_loops": [0], "tags": {"i": "abortion side effects future pregnancy in hindi", "q": "54hfZOi_9kEy7rWrLoCshL-zmjw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does morning after pill affect future pregnancy", "datetime": "2026-03-12 19:56:30.778177", "source": "google", "data": ["does morning after pill affect future pregnancy", [["does morning after pill affect future pregnancy", 0, [512]], ["does morning after pill affect future fertility", 0, [22, 30]], ["morning after pill affect future pregnancy", 0, [22, 30]], ["does plan b pill affect future pregnancy", 0, [22, 30]], ["can morning after pill affect pregnancy", 0, [512, 390, 650]], ["side effects of morning-after pill if pregnant", 0, [512, 390, 650]], ["does morning after pill prevent fertilization or implantation", 0, [512, 546]], ["does morning after pill prevent implantation", 0, [512, 546]], ["does morning after pill cause birth defects", 0, [512, 546]]], {"i": "does morning after pill affect future pregnancy", "q": "ZU6Ix_HWOjk2L0DmzEsy90V1pf0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does morning after pill affect future pregnancy", "does morning after pill affect future fertility", "morning after pill affect future pregnancy", "does plan b pill affect future pregnancy", "can morning after pill affect pregnancy", "side effects of morning-after pill if pregnant", "does morning after pill prevent fertilization or implantation", "does morning after pill prevent implantation", "does morning after pill cause birth defects"], "self_loops": [0], "tags": {"i": "does morning after pill affect future pregnancy", "q": "ZU6Ix_HWOjk2L0DmzEsy90V1pf0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effects of morning-after pill if pregnant", "datetime": "2026-03-12 19:56:31.888663", "source": "google", "data": ["side effects of morning-after pill if pregnant", [["side effects of morning-after pill if pregnant", 0, [512]], ["side effects of morning after pill if not pregnant", 0, [22, 30]], ["side effects of plan b pill if not pregnant", 0, [22, 30]], ["side effects of morning after pill before period", 0, [751]], ["side effects of morning after pill long term", 0, [512, 546]]], {"i": "side effects of morning-after pill if pregnant", "q": "z474JTwfPJBtVA8z1jOQVsDX9Dk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["side effects of morning-after pill if pregnant", "side effects of morning after pill if not pregnant", "side effects of plan b pill if not pregnant", "side effects of morning after pill before period", "side effects of morning after pill long term"], "self_loops": [0], "tags": {"i": "side effects of morning-after pill if pregnant", "q": "z474JTwfPJBtVA8z1jOQVsDX9Dk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can plan b harm future pregnancy", "datetime": "2026-03-12 19:56:33.281383", "source": "google", "data": ["can plan b harm future pregnancy", [["can plan b harm future pregnancy", 0, [512]], ["can plan b harm a fetus", 0, [512, 390, 650]], ["can plan b cause birth defects", 0, [512, 390, 650]], ["is plan b bad for future pregnancy", 0, [512, 390, 650]], ["can plan b harm future fertility", 0, [751]], ["can plan b harm your baby", 0, [546, 649]]], {"i": "can plan b harm future pregnancy", "q": "jPdsPLe2DYyRTE_3NzGtJBdbutg", "t": {"bpc": false, "tlw": false}}], "suggests": ["can plan b harm future pregnancy", "can plan b harm a fetus", "can plan b cause birth defects", "is plan b bad for future pregnancy", "can plan b harm future fertility", "can plan b harm your baby"], "self_loops": [0], "tags": {"i": "can plan b harm future pregnancy", "q": "jPdsPLe2DYyRTE_3NzGtJBdbutg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can morning after pill affect pregnancy", "datetime": "2026-03-12 19:56:34.448852", "source": "google", "data": ["can morning after pill affect pregnancy", [["can morning after pill affect pregnancy test", 0, [512]], ["can morning after pill affect pregnancy", 0, [512]], ["does morning after pill affect pregnancy", 0, [22, 30]], ["can morning after pill cause pregnancy symptoms", 0, [22, 30]], ["does morning after pill affect pregnancy in future", 0, [22, 30]], ["can morning after pill affect early pregnancy", 0, [22, 30]], ["can morning after pill cause ectopic pregnancy", 0, [22, 30]], ["can morning after pill cause cryptic pregnancy", 0, [22, 30]], ["can morning after pill affect getting pregnant", 0, [22, 30]], ["can morning after pill cause false positive pregnancy test", 0, [22, 30]]], {"i": "can morning after pill affect pregnancy", "q": "4yD4zeMN9LMiHV1mi5fgXi88D5k", "t": {"bpc": false, "tlw": false}}], "suggests": ["can morning after pill affect pregnancy test", "can morning after pill affect pregnancy", "does morning after pill affect pregnancy", "can morning after pill cause pregnancy symptoms", "does morning after pill affect pregnancy in future", "can morning after pill affect early pregnancy", "can morning after pill cause ectopic pregnancy", "can morning after pill cause cryptic pregnancy", "can morning after pill affect getting pregnant", "can morning after pill cause false positive pregnancy test"], "self_loops": [1], "tags": {"i": "can morning after pill affect pregnancy", "q": "4yD4zeMN9LMiHV1mi5fgXi88D5k", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "plan b side effects future pregnancies", "datetime": "2026-03-12 19:56:35.803538", "source": "google", "data": ["plan b side effects future pregnancies", [["plan b side effects future pregnancies", 0, [512]], ["does plan b affect future pregnancy", 0, [512, 390, 650]], ["can plan b harm future pregnancy", 0, [512, 390, 650]], ["plan b effects on future pregnancy", 0, [546, 649]], ["plan b future side effects", 0, [546, 649]], ["plan b effects on future fertility", 0, [751]], ["plan b affect future pregnancy", 0, [512, 546]]], {"i": "plan b side effects future pregnancies", "q": "RlLi_dizoPFusiZr6yr529DhnUM", "t": {"bpc": false, "tlw": false}}], "suggests": ["plan b side effects future pregnancies", "does plan b affect future pregnancy", "can plan b harm future pregnancy", "plan b effects on future pregnancy", "plan b future side effects", "plan b effects on future fertility", "plan b affect future pregnancy"], "self_loops": [0], "tags": {"i": "plan b side effects future pregnancies", "q": "RlLi_dizoPFusiZr6yr529DhnUM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill plan b side effects", "datetime": "2026-03-12 19:56:36.710401", "source": "google", "data": ["morning after pill plan b side effects", [["morning after pill plan b side effects", 0, [512]], ["emergency pill plan b side effects", 0, [22, 30]], ["plan b morning after pill side effects bleeding", 0, [22, 30]], ["long term side effects of plan b morning after pill", 0, [512, 390, 650]], ["are plan b and the morning after pill the same", 0, [512, 390, 650]], ["can plan b cause side effects", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill side effects bleeding", 0, [512, 546]], ["plan b pill side effects after a week", 0, [546, 649]]], {"i": "morning after pill plan b side effects", "q": "rCmMg1hLlMrgZ73o6Lg1OLm3fVA", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill plan b side effects", "emergency pill plan b side effects", "plan b morning after pill side effects bleeding", "long term side effects of plan b morning after pill", "are plan b and the morning after pill the same", "can plan b cause side effects", "morning after pill side effects a week later", "morning after pill side effects bleeding", "plan b pill side effects after a week"], "self_loops": [0], "tags": {"i": "morning after pill plan b side effects", "q": "rCmMg1hLlMrgZ73o6Lg1OLm3fVA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does surgical abortion affect future pregnancy", "datetime": "2026-03-12 19:56:37.686217", "source": "google", "data": ["does surgical abortion affect future pregnancy", [["does surgical abortion affect future pregnancy", 0, [512]], ["does medical abortion affect future pregnancy", 0, [22, 30]], ["does medical.abortion affect future pregnancy reddit", 0, [22, 10, 30]], ["does surgical abortion affect future fertility", 0, [22, 30]], ["can medical abortion affect future pregnancy", 0, [22, 30]], ["does medical abortion affect next pregnancy", 0, [22, 30]], ["does medical abortion affect future fertility", 0, [22, 30]], ["does multiple medical abortion affect future pregnancy", 0, [22, 30]], ["how long does surgical abortion affect future pregnancy", 0, [22, 30]], ["can a surgical abortion make you infertile", 0, [512, 390, 650]]], {"i": "does surgical abortion affect future pregnancy", "q": "0SWP0lbdWCxrUdIF81c_9E59kWw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does surgical abortion affect future pregnancy", "does medical abortion affect future pregnancy", "does medical.abortion affect future pregnancy reddit", "does surgical abortion affect future fertility", "can medical abortion affect future pregnancy", "does medical abortion affect next pregnancy", "does medical abortion affect future fertility", "does multiple medical abortion affect future pregnancy", "how long does surgical abortion affect future pregnancy", "can a surgical abortion make you infertile"], "self_loops": [0], "tags": {"i": "does surgical abortion affect future pregnancy", "q": "0SWP0lbdWCxrUdIF81c_9E59kWw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how can an abortion affect future pregnancy", "datetime": "2026-03-12 19:56:38.512991", "source": "google", "data": ["how can an abortion affect future pregnancy", [["how can an abortion affect future pregnancy", 0, [512]], ["how long does an abortion affect future pregnancy", 0, [22, 30]], ["how does medical abortion affect future pregnancy", 0, [22, 30]], ["how does abortion affect next pregnancy", 0, [22, 30]], ["how long does an abortion affect future fertility", 0, [22, 30]], ["how does abortion affect future fertility", 0, [22, 30]], ["can an abortion affect future fertility", 0, [22, 30]], ["can having an abortion affect future pregnancy", 0, [22, 30]], ["can getting an abortion affect future pregnancy", 0, [22, 30]], ["how long does surgical abortion affect future pregnancy", 0, [22, 30]]], {"i": "how can an abortion affect future pregnancy", "q": "ASz8eR2cykvsVD6wQRDUwHS6_NI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how can an abortion affect future pregnancy", "how long does an abortion affect future pregnancy", "how does medical abortion affect future pregnancy", "how does abortion affect next pregnancy", "how long does an abortion affect future fertility", "how does abortion affect future fertility", "can an abortion affect future fertility", "can having an abortion affect future pregnancy", "can getting an abortion affect future pregnancy", "how long does surgical abortion affect future pregnancy"], "self_loops": [0], "tags": {"i": "how can an abortion affect future pregnancy", "q": "ASz8eR2cykvsVD6wQRDUwHS6_NI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion affect future pregnancy", "datetime": "2026-03-12 19:56:39.681131", "source": "google", "data": ["abortion affect future pregnancy", [["abortion affect future pregnancy", 0, [512]], ["miscarriage affect future pregnancy", 0, [22, 30]], ["abortion affect next pregnancy", 0, [22, 30]], ["abortion impact future pregnancy", 0, [22, 30]], ["abortion affect future fertility", 0, [22, 30]], ["does abortion affect future pregnancy", 0, [22, 30]], ["abortion pill affect future pregnancy", 0, [22, 30]], ["surgical abortion affect future pregnancy", 0, [22, 30]], ["does abortion affect future pregnancy reddit", 0, [22, 30]], ["medical abortion affect future pregnancy", 0, [22, 30]]], {"i": "abortion affect future pregnancy", "q": "9wj5Lc5ounqME1Rqc5W3wLt4JWI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion affect future pregnancy", "miscarriage affect future pregnancy", "abortion affect next pregnancy", "abortion impact future pregnancy", "abortion affect future fertility", "does abortion affect future pregnancy", "abortion pill affect future pregnancy", "surgical abortion affect future pregnancy", "does abortion affect future pregnancy reddit", "medical abortion affect future pregnancy"], "self_loops": [0], "tags": {"i": "abortion affect future pregnancy", "q": "9wj5Lc5ounqME1Rqc5W3wLt4JWI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill effects future pregnancy", "datetime": "2026-03-12 19:56:40.997436", "source": "google", "data": ["abortion pill effects future pregnancy", [["abortion pill effects future pregnancy", 0, [512]], ["abortion side effects future pregnancy", 0, [22, 30]], ["abortion side effects future pregnancy in hindi", 0, [22, 30]], ["abortion pill side effects future pregnancy", 0, [22, 30]], ["abortion pill side effects future pregnancy in english", 0, [22, 30]], ["does abortion pill affect future pregnancy", 0, [22, 10, 30]], ["morning after pill side effects future pregnancy", 0, [22, 30]], ["morning after pill effects on future pregnancy", 0, [22, 30]], ["abortion pill side effects future pregnancy in hindi", 0, [22, 455, 30]], ["does abortion affect future pregnancy", 0, [512, 390, 650]]], {"i": "abortion pill effects future pregnancy", "q": "7zULTppsJ9RPdFrCWWXfWx7W4pA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion pill effects future pregnancy", "abortion side effects future pregnancy", "abortion side effects future pregnancy in hindi", "abortion pill side effects future pregnancy", "abortion pill side effects future pregnancy in english", "does abortion pill affect future pregnancy", "morning after pill side effects future pregnancy", "morning after pill effects on future pregnancy", "abortion pill side effects future pregnancy in hindi", "does abortion affect future pregnancy"], "self_loops": [0], "tags": {"i": "abortion pill effects future pregnancy", "q": "7zULTppsJ9RPdFrCWWXfWx7W4pA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill affect future pregnancy", "datetime": "2026-03-12 19:56:42.372691", "source": "google", "data": ["morning after pill affect future pregnancy", [["morning after pill affect future pregnancy", 0, [512]], ["morning after pill affect future fertility", 0, [22, 30]], ["will morning after pill affect future pregnancy", 0, [22, 30]], ["morning after pill side effects future pregnancy", 0, [22, 30]], ["plan b pill affect future pregnancy", 0, [22, 30]], ["does morning after pill affect future pregnancy", 0, [512, 390, 650]], ["can morning after pill affect pregnancy", 0, [512, 390, 650]], ["does plan b pill affect future pregnancy", 0, [512, 546]], ["morning after pill cause birth defects", 0, [751]]], {"i": "morning after pill affect future pregnancy", "q": "s59k27swSBs2oTnXfQ2R79ixtHg", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill affect future pregnancy", "morning after pill affect future fertility", "will morning after pill affect future pregnancy", "morning after pill side effects future pregnancy", "plan b pill affect future pregnancy", "does morning after pill affect future pregnancy", "can morning after pill affect pregnancy", "does plan b pill affect future pregnancy", "morning after pill cause birth defects"], "self_loops": [0], "tags": {"i": "morning after pill affect future pregnancy", "q": "s59k27swSBs2oTnXfQ2R79ixtHg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does abortion pill affect future pregnancy", "datetime": "2026-03-12 19:56:43.627881", "source": "google", "data": ["does abortion pill affect future pregnancy", [["does abortion pill affect future pregnancy", 0, [512]], ["does abortion pill affect future pregnancy quora", 0, [22, 30]], ["will abortion pill affect future pregnancy", 0, [22, 30]], ["does morning after pill affect future pregnancy", 0, [22, 30]], ["does abortion pill prevent future pregnancy", 0, [22, 30]], ["does abortion pill affect next pregnancy", 0, [22, 30]], ["does abortion pill affect future fertility", 0, [22, 30]], ["does abortion affect future pregnancy", 0, [512, 390, 650]], ["how can an abortion affect future pregnancy", 0, [512, 390, 650]], ["can abortion pill affect future pregnancy", 0, [512, 546]]], {"i": "does abortion pill affect future pregnancy", "q": "_2iOzHCj0YgL8f3hJMJjeBP-_FY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does abortion pill affect future pregnancy", "does abortion pill affect future pregnancy quora", "will abortion pill affect future pregnancy", "does morning after pill affect future pregnancy", "does abortion pill prevent future pregnancy", "does abortion pill affect next pregnancy", "does abortion pill affect future fertility", "does abortion affect future pregnancy", "how can an abortion affect future pregnancy", "can abortion pill affect future pregnancy"], "self_loops": [0], "tags": {"i": "does abortion pill affect future pregnancy", "q": "_2iOzHCj0YgL8f3hJMJjeBP-_FY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "will abortion pill affect future pregnancy", "datetime": "2026-03-12 19:56:44.956540", "source": "google", "data": ["will abortion pill affect future pregnancy", [["will abortion pill affect future pregnancy", 0, [512]], ["does abortion pill affect future pregnancy", 0, [22, 30]], ["will morning after pill affect future pregnancy", 0, [22, 30]], ["does abortion pill affect future pregnancy quora", 0, [22, 30]], ["does abortion pill prevent future pregnancy", 0, [22, 30]], ["does abortion pill affect next pregnancy", 0, [22, 30]], ["does abortion pill affect future fertility", 0, [22, 30]], ["does morning after pill affect future fertility", 0, [22, 30]], ["does medication abortion affect future fertility", 0, [22, 30]]], {"i": "will abortion pill affect future pregnancy", "q": "JtYD22mI7cFwzT4spzsOwMHMdTU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["will abortion pill affect future pregnancy", "does abortion pill affect future pregnancy", "will morning after pill affect future pregnancy", "does abortion pill affect future pregnancy quora", "does abortion pill prevent future pregnancy", "does abortion pill affect next pregnancy", "does abortion pill affect future fertility", "does morning after pill affect future fertility", "does medication abortion affect future fertility"], "self_loops": [0], "tags": {"i": "will abortion pill affect future pregnancy", "q": "JtYD22mI7cFwzT4spzsOwMHMdTU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does abortion pill prevent future pregnancy", "datetime": "2026-03-12 19:56:45.837070", "source": "google", "data": ["does abortion pill prevent future pregnancy", [["does abortion pill prevent future pregnancy", 0, [512]], ["does abortion pill affect future pregnancy", 0, [22, 30]], ["does abortion pill affect future pregnancy quora", 0, [22, 30]], ["will abortion pill affect future pregnancy", 0, [22, 30]], ["does morning after pill affect future pregnancy", 0, [22, 30]], ["does abortion pill affect next pregnancy", 0, [22, 30]], ["is abortion pill safe for future pregnancy", 0, [512, 390, 650]], ["can abortions prevent future pregnancy", 0, [512, 390, 650]], ["does abortion pill prevent pregnancy", 0, [751]]], {"i": "does abortion pill prevent future pregnancy", "q": "O7_HF6fFBsHzDayAvuZxVSnzhjs", "t": {"bpc": false, "tlw": false}}], "suggests": ["does abortion pill prevent future pregnancy", "does abortion pill affect future pregnancy", "does abortion pill affect future pregnancy quora", "will abortion pill affect future pregnancy", "does morning after pill affect future pregnancy", "does abortion pill affect next pregnancy", "is abortion pill safe for future pregnancy", "can abortions prevent future pregnancy", "does abortion pill prevent pregnancy"], "self_loops": [0], "tags": {"i": "does abortion pill prevent future pregnancy", "q": "O7_HF6fFBsHzDayAvuZxVSnzhjs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does abortion pill harm future pregnancy", "datetime": "2026-03-12 19:56:47.231615", "source": "google", "data": ["does abortion pill harm future pregnancy", [["does abortion pill harm future pregnancy", 0, [512]], ["does abortion affect future pregnancy", 0, [512, 390, 650]], ["does abortion affect pregnancy", 0, [512, 390, 650]], ["does surgical abortion affect future pregnancy", 0, [512, 390, 650]], ["does medical abortion affect future pregnancy", 0, [512, 390, 650]], ["does abortion pill affect future pregnancies", 0, [546, 649]], ["will abortion pill affect future pregnancy", 0, [512, 546]], ["can abortion pill effects on future pregnancy", 0, [751]]], {"i": "does abortion pill harm future pregnancy", "q": "A2byD0FJxjR1isSosOOB0rWZLaI", "t": {"bpc": false, "tlw": false}}], "suggests": ["does abortion pill harm future pregnancy", "does abortion affect future pregnancy", "does abortion affect pregnancy", "does surgical abortion affect future pregnancy", "does medical abortion affect future pregnancy", "does abortion pill affect future pregnancies", "will abortion pill affect future pregnancy", "can abortion pill effects on future pregnancy"], "self_loops": [0], "tags": {"i": "does abortion pill harm future pregnancy", "q": "A2byD0FJxjR1isSosOOB0rWZLaI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effects of getting pregnant after miscarriage", "datetime": "2026-03-12 19:56:48.690043", "source": "google", "data": ["side effects of getting pregnant after miscarriage", [["side effects of getting pregnant after miscarriage", 0, [512]], ["is it bad to get pregnant right after miscarriage", 0, [512, 390, 650]], ["what happens if you get pregnant immediately after miscarriage", 0, [512, 390, 650]], ["how soon after a miscarriage is it safe to try again", 0, [512, 390, 650]], ["dangers of getting pregnant after miscarriage", 0, [751]], ["risks of getting pregnant immediately after miscarriage", 0, [512, 546]], ["what are the risks of getting pregnant right after a miscarriage", 0, [546, 649]]], {"i": "side effects of getting pregnant after miscarriage", "q": "HoZpn9vFPrX9lgniBiZ8QD4DvA8", "t": {"bpc": false, "tlw": false}}], "suggests": ["side effects of getting pregnant after miscarriage", "is it bad to get pregnant right after miscarriage", "what happens if you get pregnant immediately after miscarriage", "how soon after a miscarriage is it safe to try again", "dangers of getting pregnant after miscarriage", "risks of getting pregnant immediately after miscarriage", "what are the risks of getting pregnant right after a miscarriage"], "self_loops": [0], "tags": {"i": "side effects of getting pregnant after miscarriage", "q": "HoZpn9vFPrX9lgniBiZ8QD4DvA8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effects of pregnancy abortion", "datetime": "2026-03-12 19:56:50.131650", "source": "google", "data": ["side effects of pregnancy abortion", [["side effects of pregnancy abortion", 0, [512]], ["side effects of pregnancy after abortion", 0, [22, 30]], ["side effects of early pregnancy abortion", 0, [22, 30]], ["side effects of first pregnancy abortion", 0, [22, 30]], ["side effects of one month pregnancy abortion", 0, [22, 30]], ["side effects of 2 weeks pregnancy abortion", 0, [22, 30]], ["side effects of early pregnancy miscarriage", 0, [22, 30]], ["side effects of abortion on future pregnancy", 0, [22, 30]], ["side effects of abortion on next pregnancy", 0, [22, 30]], ["side effects of abortion pill for future pregnancy", 0, [22, 30]]], {"i": "side effects of pregnancy abortion", "q": "AYH03O67yNIk_Zw7hU2wgdFpRlo", "t": {"bpc": false, "tlw": false}}], "suggests": ["side effects of pregnancy abortion", "side effects of pregnancy after abortion", "side effects of early pregnancy abortion", "side effects of first pregnancy abortion", "side effects of one month pregnancy abortion", "side effects of 2 weeks pregnancy abortion", "side effects of early pregnancy miscarriage", "side effects of abortion on future pregnancy", "side effects of abortion on next pregnancy", "side effects of abortion pill for future pregnancy"], "self_loops": [0], "tags": {"i": "side effects of pregnancy abortion", "q": "AYH03O67yNIk_Zw7hU2wgdFpRlo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "signs of pregnancy after abortion", "datetime": "2026-03-12 19:56:51.303199", "source": "google", "data": ["signs of pregnancy after abortion", [["signs of pregnancy after abortion", 0, [512]], ["signs of pregnancy after abortion pill", 0, [512]], ["signs of pregnancy after abortion discharge", 0, [512]], ["signs of pregnancy after abortion at 4 weeks", 0, [512]], ["signs of pregnancy after abortion mumsnet", 0, [512]], ["signs of pregnancy after abortion at 6 weeks", 0, [22, 30]], ["signs of pregnancy after abortion nhs", 0, [22, 30]], ["signs of pregnancy after abortion reddit", 0, [22, 30]], ["signs of pregnancy after abortion discharge forum", 0, [22, 30]], ["signs of pregnancy after abortion time", 0, [22, 30]]], {"i": "signs of pregnancy after abortion", "q": "Hn-vkHOtMyCIZdBHwyvXoeLQlb8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["signs of pregnancy after abortion", "signs of pregnancy after abortion pill", "signs of pregnancy after abortion discharge", "signs of pregnancy after abortion at 4 weeks", "signs of pregnancy after abortion mumsnet", "signs of pregnancy after abortion at 6 weeks", "signs of pregnancy after abortion nhs", "signs of pregnancy after abortion reddit", "signs of pregnancy after abortion discharge forum", "signs of pregnancy after abortion time"], "self_loops": [0], "tags": {"i": "signs of pregnancy after abortion", "q": "Hn-vkHOtMyCIZdBHwyvXoeLQlb8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "signs of pregnancy after abortion pill", "datetime": "2026-03-12 19:56:52.474534", "source": "google", "data": ["signs of pregnancy after abortion pill", [["signs of pregnancy after abortion pill", 0, [512]], ["symptoms of pregnancy after abortion pill", 0, [22, 30]], ["signs of ectopic pregnancy after abortion pill", 0, [22, 30]], ["early signs of pregnancy after morning after pill", 0, [22, 30]], ["signs your still pregnant after abortion pill", 0, [22, 30]], ["how long will i feel pregnant after abortion", 0, [512, 390, 650]], ["how long do pregnancy symptoms last after abortion pill", 0, [512, 390, 650]], ["how long after an abortion can you take a pregnancy test", 0, [512, 390, 650]], ["signs of pregnancy after surgical abortion", 0, [512, 546]], ["signs of pregnancy after abortion reddit", 0, [546, 649]]], {"i": "signs of pregnancy after abortion pill", "q": "0J3yjB5tXMGr32j4QZmtvJH63_s", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["signs of pregnancy after abortion pill", "symptoms of pregnancy after abortion pill", "signs of ectopic pregnancy after abortion pill", "early signs of pregnancy after morning after pill", "signs your still pregnant after abortion pill", "how long will i feel pregnant after abortion", "how long do pregnancy symptoms last after abortion pill", "how long after an abortion can you take a pregnancy test", "signs of pregnancy after surgical abortion", "signs of pregnancy after abortion reddit"], "self_loops": [0], "tags": {"i": "signs of pregnancy after abortion pill", "q": "0J3yjB5tXMGr32j4QZmtvJH63_s", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "signs of pregnancy after abortion discharge", "datetime": "2026-03-12 19:56:53.483121", "source": "google", "data": ["signs of pregnancy after abortion discharge", [["signs of pregnancy after abortion discharge", 0, [512]], ["signs of pregnancy after abortion discharge forum", 0, [22, 30]], ["signs of pregnancy after miscarriage before period discharge", 0, [22, 30]], ["signs of pregnancy after miscarriage first trimester discharge", 0, [22, 30]], ["how do you know if your pregnant after an abortion", 0, [512, 390, 650]], ["how long do pregnancy symptoms last after abortion", 0, [512, 390, 650]], ["how long will i feel pregnant after abortion", 0, [512, 390, 650]], ["is it normal to have discharge after abortion", 0, [512, 390, 650]], ["signs of pregnancy after surgical abortion", 0, [512, 546]], ["signs of pregnancy after abortion pill", 0, [512, 546]]], {"i": "signs of pregnancy after abortion discharge", "q": "L3QsznF-945ujRIJ1BkvnLeSrbQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["signs of pregnancy after abortion discharge", "signs of pregnancy after abortion discharge forum", "signs of pregnancy after miscarriage before period discharge", "signs of pregnancy after miscarriage first trimester discharge", "how do you know if your pregnant after an abortion", "how long do pregnancy symptoms last after abortion", "how long will i feel pregnant after abortion", "is it normal to have discharge after abortion", "signs of pregnancy after surgical abortion", "signs of pregnancy after abortion pill"], "self_loops": [0], "tags": {"i": "signs of pregnancy after abortion discharge", "q": "L3QsznF-945ujRIJ1BkvnLeSrbQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "signs of pregnancy after abortion mumsnet", "datetime": "2026-03-12 19:56:54.972151", "source": "google", "data": ["signs of pregnancy after abortion mumsnet", [["signs of pregnancy after abortion mumsnet", 0, [512]], ["early signs of pregnancy after abortion mumsnet", 0, [22, 30]], ["how do you know if you're pregnant again after an abortion", 0, [512, 390, 650]], ["how do you know if your pregnant after an abortion", 0, [512, 390, 650]], ["how long will i feel pregnant after abortion", 0, [512, 390, 650]], ["can you still be pregnant after having an abortion", 0, [512, 390, 650]], ["signs of pregnancy after abortion reddit", 0, [546, 649]], ["signs of pregnancy after surgical abortion", 0, [512, 546]], ["signs of pregnancy after abortion pill", 0, [512, 546]], ["signs of pregnancy after a miscarriage", 0, [512, 546]]], {"i": "signs of pregnancy after abortion mumsnet", "q": "NUkMGmAk9pHnLi_AIiQKIzEW8pc", "t": {"bpc": false, "tlw": false}}], "suggests": ["signs of pregnancy after abortion mumsnet", "early signs of pregnancy after abortion mumsnet", "how do you know if you're pregnant again after an abortion", "how do you know if your pregnant after an abortion", "how long will i feel pregnant after abortion", "can you still be pregnant after having an abortion", "signs of pregnancy after abortion reddit", "signs of pregnancy after surgical abortion", "signs of pregnancy after abortion pill", "signs of pregnancy after a miscarriage"], "self_loops": [0], "tags": {"i": "signs of pregnancy after abortion mumsnet", "q": "NUkMGmAk9pHnLi_AIiQKIzEW8pc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "signs of pregnancy after abortion at 4 weeks", "datetime": "2026-03-12 19:56:55.876609", "source": "google", "data": ["signs of pregnancy after abortion at 4 weeks", [["signs of pregnancy after abortion at 4 weeks", 0, [512]], ["pregnancy symptoms 4 weeks after abortion", 0, [512, 390, 650]], ["how do you know if you're pregnant again after an abortion", 0, [512, 390, 650]], ["how do you know if your pregnant after an abortion", 0, [512, 390, 650]], ["how long will i feel pregnant after abortion", 0, [512, 390, 650]], ["signs of pregnancy after 4 weeks", 0, [512, 546]], ["signs of pregnancy after abortion pill", 0, [512, 546]], ["signs of pregnancy 4 weeks after conception", 0, [512, 546]], ["positive pregnancy 4 weeks after abortion", 0, [546, 649]], ["4 weeks after abortion pregnancy test positive", 0, [512, 546]]], {"i": "signs of pregnancy after abortion at 4 weeks", "q": "CnedYygXbF92APcsCNoCep5sUMU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["signs of pregnancy after abortion at 4 weeks", "pregnancy symptoms 4 weeks after abortion", "how do you know if you're pregnant again after an abortion", "how do you know if your pregnant after an abortion", "how long will i feel pregnant after abortion", "signs of pregnancy after 4 weeks", "signs of pregnancy after abortion pill", "signs of pregnancy 4 weeks after conception", "positive pregnancy 4 weeks after abortion", "4 weeks after abortion pregnancy test positive"], "self_loops": [0], "tags": {"i": "signs of pregnancy after abortion at 4 weeks", "q": "CnedYygXbF92APcsCNoCep5sUMU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "symptoms of pregnancy after abortion pill", "datetime": "2026-03-12 19:56:57.053820", "source": "google", "data": ["symptoms of pregnancy after abortion pill", [["symptoms of pregnancy after abortion pill", 0, [512]], ["symptoms of ectopic pregnancy after abortion pill", 0, [22, 30]], ["early signs of pregnancy after morning after pill", 0, [22, 30]], ["symptoms of pregnancy after taking morning after pill", 0, [22, 30]], ["how long do pregnancy symptoms last after abortion pill", 0, [512, 390, 650]], ["how long do pregnancy symptoms last after abortion", 0, [512, 390, 650]], ["can you still feel pregnancy symptoms after abortion", 0, [512, 390, 650]], ["signs of pregnancy after abortion pill", 0, [512, 546]], ["symptoms of pregnancy after taking plan b", 0, [512, 546]], ["symptoms of pregnancy after plan b", 0, [512, 546]]], {"i": "symptoms of pregnancy after abortion pill", "q": "u7qsZSj4GqeSJx1e0fGlz0xynl4", "t": {"bpc": false, "tlw": false}}], "suggests": ["symptoms of pregnancy after abortion pill", "symptoms of ectopic pregnancy after abortion pill", "early signs of pregnancy after morning after pill", "symptoms of pregnancy after taking morning after pill", "how long do pregnancy symptoms last after abortion pill", "how long do pregnancy symptoms last after abortion", "can you still feel pregnancy symptoms after abortion", "signs of pregnancy after abortion pill", "symptoms of pregnancy after taking plan b", "symptoms of pregnancy after plan b"], "self_loops": [0], "tags": {"i": "symptoms of pregnancy after abortion pill", "q": "u7qsZSj4GqeSJx1e0fGlz0xynl4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "signs of pregnancy after abortion at 6 weeks", "datetime": "2026-03-12 19:56:58.401976", "source": "google", "data": ["signs of pregnancy after abortion at 6 weeks", [["signs of pregnancy after abortion at 6 weeks", 0, [22, 30]], ["signs of pregnancy after miscarriage at 6 weeks", 0, [22, 30]], ["can you get pregnant 6 weeks after abortion", 0, [512, 390, 650]], ["how do you know if you're pregnant again after an abortion", 0, [512, 390, 650]], ["can you have a positive pregnancy test 6 weeks after abortion", 0, [512, 390, 650]], ["signs of pregnancy after 6 weeks", 0, [512, 546]], ["6 weeks after abortion positive pregnancy test", 0, [512, 546]], ["signs of pregnancy 6 weeks after giving birth", 0, [512, 546]]], {"i": "signs of pregnancy after abortion at 6 weeks", "q": "eJs5p_RQGTWASVgMCR5fd-DGI3M", "t": {"bpc": false, "tlw": false}}], "suggests": ["signs of pregnancy after abortion at 6 weeks", "signs of pregnancy after miscarriage at 6 weeks", "can you get pregnant 6 weeks after abortion", "how do you know if you're pregnant again after an abortion", "can you have a positive pregnancy test 6 weeks after abortion", "signs of pregnancy after 6 weeks", "6 weeks after abortion positive pregnancy test", "signs of pregnancy 6 weeks after giving birth"], "self_loops": [0], "tags": {"i": "signs of pregnancy after abortion at 6 weeks", "q": "eJs5p_RQGTWASVgMCR5fd-DGI3M", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does abortion affect future pregnancy reddit", "datetime": "2026-03-12 19:56:59.683650", "source": "google", "data": ["does abortion affect future pregnancy reddit", [["does abortion affect future pregnancy reddit", 0, [512]], ["does abortion affect future.fertility reddit", 0, [22, 10, 30]], ["does medical.abortion affect future pregnancy reddit", 0, [22, 10, 30]], ["does abortion affect future pregnancy", 0, [512, 390, 650]], ["can having an abortion cause problems with future pregnancies", 0, [512, 390, 650]], ["does surgical abortion affect future pregnancy", 0, [512, 390, 650]], ["does abortion affect fertility reddit", 0, [512, 546]], ["does abortion affect future fertility", 0, [512, 546]]], {"i": "does abortion affect future pregnancy reddit", "q": "SE3D9aojB1o093h7HQrOFdlwNzc", "t": {"bpc": false, "tlw": false}}], "suggests": ["does abortion affect future pregnancy reddit", "does abortion affect future.fertility reddit", "does medical.abortion affect future pregnancy reddit", "does abortion affect future pregnancy", "can having an abortion cause problems with future pregnancies", "does surgical abortion affect future pregnancy", "does abortion affect fertility reddit", "does abortion affect future fertility"], "self_loops": [0], "tags": {"i": "does abortion affect future pregnancy reddit", "q": "SE3D9aojB1o093h7HQrOFdlwNzc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does abortion affect future pregnancy nhs", "datetime": "2026-03-12 19:57:01.049073", "source": "google", "data": ["does abortion affect future pregnancy nhs", [["does abortion affect future pregnancy nhs", 0, [22, 30]], ["does abortion affect future pregnancy", 0, [512, 390, 650]], ["can having an abortion cause problems with future pregnancies", 0, [512, 390, 650]], ["does surgical abortion affect future pregnancy", 0, [512, 390, 650]], ["does abortion affect future fertility", 0, [512, 546]]], {"i": "does abortion affect future pregnancy nhs", "q": "3BQ85wcwiFHEGNEo6FbpCFa_YrA", "t": {"bpc": false, "tlw": false}}], "suggests": ["does abortion affect future pregnancy nhs", "does abortion affect future pregnancy", "can having an abortion cause problems with future pregnancies", "does surgical abortion affect future pregnancy", "does abortion affect future fertility"], "self_loops": [0], "tags": {"i": "does abortion affect future pregnancy nhs", "q": "3BQ85wcwiFHEGNEo6FbpCFa_YrA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does abortion affect future pregnancy chances", "datetime": "2026-03-12 19:57:02.149974", "source": "google", "data": ["does abortion affect future pregnancy chances", [["does abortion affect future pregnancy chances", 0, [22, 30]], ["does abortion affect future pregnancy", 0, [512, 390, 650]], ["does abortion affect future fertility", 0, [512, 390, 650]], ["will abortion affect future pregnancy", 0, [512, 546]]], {"i": "does abortion affect future pregnancy chances", "q": "p9DIslU-F6tD5RZQxzegXqgPb6M", "t": {"bpc": false, "tlw": false}}], "suggests": ["does abortion affect future pregnancy chances", "does abortion affect future pregnancy", "does abortion affect future fertility", "will abortion affect future pregnancy"], "self_loops": [0], "tags": {"i": "does abortion affect future pregnancy chances", "q": "p9DIslU-F6tD5RZQxzegXqgPb6M", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does abortion affect next pregnancy", "datetime": "2026-03-12 19:57:03.233014", "source": "google", "data": ["does abortion affect next pregnancy", [["does abortion affect next pregnancy", 0, [512]], ["does abortion affect future pregnancy", 0, [22, 30]], ["does abortion affect future pregnancy reddit", 0, [22, 30]], ["does abortion affect second pregnancy", 0, [22, 30]], ["does abortion affect future pregnancy nhs", 0, [22, 30]], ["does abortion affect future pregnancy chances", 0, [22, 30]], ["does abortion pill affect next pregnancy", 0, [22, 30]], ["does medical abortion affect next pregnancy", 0, [22, 30]], ["can abortion affect future pregnancy forum", 0, [22, 30]], ["do abortions impact future pregnancy", 0, [22, 30]]], {"i": "does abortion affect next pregnancy", "q": "pYMItAYfmdf1snR6d2LTMPcZn7U", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does abortion affect next pregnancy", "does abortion affect future pregnancy", "does abortion affect future pregnancy reddit", "does abortion affect second pregnancy", "does abortion affect future pregnancy nhs", "does abortion affect future pregnancy chances", "does abortion pill affect next pregnancy", "does medical abortion affect next pregnancy", "can abortion affect future pregnancy forum", "do abortions impact future pregnancy"], "self_loops": [0], "tags": {"i": "does abortion affect next pregnancy", "q": "pYMItAYfmdf1snR6d2LTMPcZn7U", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does abortion affect further pregnancy", "datetime": "2026-03-12 19:57:04.608924", "source": "google", "data": ["does abortion affect further pregnancy", [["does abortion affect further pregnancy", 0, [22, 30]], ["does abortion affect future pregnancy", 0, [22, 30]], ["does abortion affect future pregnancy reddit", 0, [22, 30]], ["does abortion affect second pregnancy", 0, [22, 30]], ["does abortion affect future pregnancy nhs", 0, [22, 30]], ["does abortion affect future pregnancy chances", 0, [22, 30]], ["can abortion affect future pregnancy forum", 0, [22, 30]], ["do abortions impact future pregnancy", 0, [22, 30]], ["does abortion pill affect future pregnancy", 0, [22, 30]], ["does medical abortion affect future pregnancy", 0, [22, 30]]], {"i": "does abortion affect further pregnancy", "q": "7moAjTAUNR9kcX6HfWxIKZunQ_4", "t": {"bpc": false, "tlw": false}}], "suggests": ["does abortion affect further pregnancy", "does abortion affect future pregnancy", "does abortion affect future pregnancy reddit", "does abortion affect second pregnancy", "does abortion affect future pregnancy nhs", "does abortion affect future pregnancy chances", "can abortion affect future pregnancy forum", "do abortions impact future pregnancy", "does abortion pill affect future pregnancy", "does medical abortion affect future pregnancy"], "self_loops": [0], "tags": {"i": "does abortion affect further pregnancy", "q": "7moAjTAUNR9kcX6HfWxIKZunQ_4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "can abortion affect future pregnancy forum", "datetime": "2026-03-12 19:57:06.042116", "source": "google", "data": ["can abortion affect future pregnancy forum", [["can abortion affect future pregnancy forum", 0, [22, 30]], ["does having 2 abortions affect future pregnancy forum", 0, [22, 30]], ["does abortion affect future pregnancy", 0, [512, 390, 650]], ["can having an abortion cause problems with future pregnancies", 0, [512, 390, 650]], ["how can an abortion affect future pregnancy", 0, [512, 390, 650]], ["can abortion affect future conception", 0, [751]]], {"i": "can abortion affect future pregnancy forum", "q": "ucakvNYz1yAAjakbbIWJOBv9BZo", "t": {"bpc": false, "tlw": false}}], "suggests": ["can abortion affect future pregnancy forum", "does having 2 abortions affect future pregnancy forum", "does abortion affect future pregnancy", "can having an abortion cause problems with future pregnancies", "how can an abortion affect future pregnancy", "can abortion affect future conception"], "self_loops": [0], "tags": {"i": "can abortion affect future pregnancy forum", "q": "ucakvNYz1yAAjakbbIWJOBv9BZo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "do abortions impact future pregnancy", "datetime": "2026-03-12 19:57:07.176192", "source": "google", "data": ["do abortions impact future pregnancy", [["do abortions impact future pregnancy", 0, [22, 30]], ["does abortion impact future pregnancy", 0, [22, 30]], ["can abortion impact future pregnancy", 0, [22, 30]], ["does abortion affect future pregnancy reddit", 0, [22, 30]], ["does abortion affect future pregnancy nhs", 0, [22, 30]], ["does abortion affect future pregnancy chances", 0, [22, 30]], ["can abortion affect future pregnancy forum", 0, [22, 30]], ["does abortion affect next pregnancy", 0, [22, 30]], ["does abortion affect further pregnancy", 0, [22, 30]], ["does medical abortion impact future pregnancy", 0, [22, 30]]], {"i": "do abortions impact future pregnancy", "q": "2nosJ3FiX-myX3FYFmrty7O50aE", "t": {"bpc": false, "tlw": false}}], "suggests": ["do abortions impact future pregnancy", "does abortion impact future pregnancy", "can abortion impact future pregnancy", "does abortion affect future pregnancy reddit", "does abortion affect future pregnancy nhs", "does abortion affect future pregnancy chances", "can abortion affect future pregnancy forum", "does abortion affect next pregnancy", "does abortion affect further pregnancy", "does medical abortion impact future pregnancy"], "self_loops": [0], "tags": {"i": "do abortions impact future pregnancy", "q": "2nosJ3FiX-myX3FYFmrty7O50aE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does abortion affect future fertility", "datetime": "2026-03-12 19:57:08.604663", "source": "google", "data": ["does abortion affect future fertility", [["does abortion affect future fertility", 0, [512]], ["does abortion affect future.fertility reddit", 0, [22, 10, 30], {"za": "does abortion affect future.fertility reddit", "zb": "does abortion affect future fertility reddit"}], ["do abortions affect future fertility", 0, [22, 30]], ["does abortion impact future fertility", 0, [22, 30]], ["does abortion affect future pregnancy", 0, [22, 30]], ["does abortion affect future pregnancy reddit", 0, [22, 30]], ["does abortion affect future pregnancy nhs", 0, [22, 30]], ["does abortion affect future pregnancy chances", 0, [22, 30]], ["does medication abortion affect future fertility", 0, [22, 30]], ["does surgical abortion affect future fertility", 0, [22, 30]]], {"i": "does abortion affect future fertility", "q": "IZ4N8-AinWx010ETMziHncy59nw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does abortion affect future fertility", "does abortion affect future.fertility reddit", "do abortions affect future fertility", "does abortion impact future fertility", "does abortion affect future pregnancy", "does abortion affect future pregnancy reddit", "does abortion affect future pregnancy nhs", "does abortion affect future pregnancy chances", "does medication abortion affect future fertility", "does surgical abortion affect future fertility"], "self_loops": [0], "tags": {"i": "does abortion affect future fertility", "q": "IZ4N8-AinWx010ETMziHncy59nw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does abortion affect future.fertility reddit", "datetime": "2026-03-12 19:57:09.597722", "source": "google", "data": ["does abortion affect future.fertility reddit", [["does abortion affect future.fertility reddit", 0, [22, 30]], ["does abortion affect future pregnancy reddit", 0, [22, 30]], ["does medical.abortion affect future pregnancy reddit", 0, [22, 10, 30]], ["does abortion affect future fertility", 0, [512, 390, 650]], ["does abortion affect future pregnancy", 0, [512, 390, 650]], ["does abortion affect fertility", 0, [512, 390, 650]], ["does abortion affect fertility reddit", 0, [512, 546]], ["will abortion affect future fertility", 0, [751]]], {"i": "does abortion affect future.fertility reddit", "q": "C9GR7lk4UTye95XUcfRAGKtJmy0", "t": {"bpc": false, "tlw": false}}], "suggests": ["does abortion affect future.fertility reddit", "does abortion affect future pregnancy reddit", "does medical.abortion affect future pregnancy reddit", "does abortion affect future fertility", "does abortion affect future pregnancy", "does abortion affect fertility", "does abortion affect fertility reddit", "will abortion affect future fertility"], "self_loops": [0], "tags": {"i": "does abortion affect future.fertility reddit", "q": "C9GR7lk4UTye95XUcfRAGKtJmy0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill effects on future pregnancy", "datetime": "2026-03-12 19:57:10.772710", "source": "google", "data": ["morning after pill effects on future pregnancy", [["morning after pill effects on future pregnancy", 0, [22, 30]], ["morning after pill side effects future pregnancy", 0, [22, 30]], ["will morning after pill affect future pregnancy", 0, [22, 30]], ["does morning after pill affect future pregnancy", 0, [512, 390, 650]], ["can morning after pill affect pregnancy", 0, [512, 390, 650]], ["side effects of morning-after pill if pregnant", 0, [512, 390, 650]]], {"i": "morning after pill effects on future pregnancy", "q": "aUGmk1Liu0SqEIVmOcUmi6t4Rno", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill effects on future pregnancy", "morning after pill side effects future pregnancy", "will morning after pill affect future pregnancy", "does morning after pill affect future pregnancy", "can morning after pill affect pregnancy", "side effects of morning-after pill if pregnant"], "self_loops": [0], "tags": {"i": "morning after pill effects on future pregnancy", "q": "aUGmk1Liu0SqEIVmOcUmi6t4Rno", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion side effects on future pregnancy", "datetime": "2026-03-12 19:57:11.734160", "source": "google", "data": ["abortion side effects on future pregnancy", [["abortion side effects on future pregnancy", 0, [22, 30]], ["abortion side effects future pregnancy in hindi", 0, [22, 30]], ["abortion pill side effects future pregnancy", 0, [22, 30]], ["abortion pill side effects future pregnancy in english", 0, [22, 30]], ["is there any side effects of abortion on future pregnancy", 0, [22, 30]], ["abortion pill side effects future pregnancy in hindi", 0, [22, 455, 30]], ["does abortion affect future pregnancy", 0, [512, 390, 650]], ["how can an abortion affect future pregnancy", 0, [512, 390, 650]], ["does surgical abortion affect future pregnancy", 0, [512, 390, 650]], ["does abortion impact future pregnancy", 0, [512, 390, 650]]], {"i": "abortion side effects on future pregnancy", "q": "UId31uV9YPCaVJam-M5RaGSRrOw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion side effects on future pregnancy", "abortion side effects future pregnancy in hindi", "abortion pill side effects future pregnancy", "abortion pill side effects future pregnancy in english", "is there any side effects of abortion on future pregnancy", "abortion pill side effects future pregnancy in hindi", "does abortion affect future pregnancy", "how can an abortion affect future pregnancy", "does surgical abortion affect future pregnancy", "does abortion impact future pregnancy"], "self_loops": [0], "tags": {"i": "abortion side effects on future pregnancy", "q": "UId31uV9YPCaVJam-M5RaGSRrOw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does the abortion pill effects on future pregnancy", "datetime": "2026-03-12 19:57:12.837856", "source": "google", "data": ["does the abortion pill effects on future pregnancy", [["does the abortion pill effects on future pregnancy", 0, [512]], ["does the abortion pill affect future pregnancy", 0, [22, 30]], ["does the morning after pill affect future pregnancy", 0, [22, 30]], ["does abortion pill affect future pregnancy quora", 0, [22, 30]], ["abortion pill effects on future pregnancy", 0, [22, 30]], ["does abortion pill affect next pregnancy", 0, [22, 30]], ["morning after pill effects on future pregnancy", 0, [22, 30]], ["abortion side effects on future pregnancy", 0, [22, 30]], ["does abortion affect future pregnancy", 0, [512, 390, 650]], ["does medical abortion affect future pregnancy", 0, [512, 390, 650]]], {"i": "does the abortion pill effects on future pregnancy", "q": "an6WVHnZPLT3QCO9HyYpdtZC3tM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["does the abortion pill effects on future pregnancy", "does the abortion pill affect future pregnancy", "does the morning after pill affect future pregnancy", "does abortion pill affect future pregnancy quora", "abortion pill effects on future pregnancy", "does abortion pill affect next pregnancy", "morning after pill effects on future pregnancy", "abortion side effects on future pregnancy", "does abortion affect future pregnancy", "does medical abortion affect future pregnancy"], "self_loops": [0], "tags": {"i": "does the abortion pill effects on future pregnancy", "q": "an6WVHnZPLT3QCO9HyYpdtZC3tM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "does abortion pill affect future pregnancy quora", "datetime": "2026-03-12 19:57:13.680196", "source": "google", "data": ["does abortion pill affect future pregnancy quora", [["does abortion pill affect future pregnancy quora", 0, [22, 30]], ["does abortion affect future pregnancy", 0, [512, 390, 650]], ["does medical abortion affect future pregnancy", 0, [512, 390, 650]], ["do medical abortion affect future pregnancies", 0, [512, 390, 650]], ["does abortion pill affect future pregnancies", 0, [546, 649]], ["will abortion pill affect future pregnancy", 0, [512, 546]], ["does the abortion pill affect future fertility", 0, [512, 546]]], {"i": "does abortion pill affect future pregnancy quora", "q": "yJtkzgA3XrHXGdI5688mRMDoZBE", "t": {"bpc": false, "tlw": false}}], "suggests": ["does abortion pill affect future pregnancy quora", "does abortion affect future pregnancy", "does medical abortion affect future pregnancy", "do medical abortion affect future pregnancies", "does abortion pill affect future pregnancies", "will abortion pill affect future pregnancy", "does the abortion pill affect future fertility"], "self_loops": [0], "tags": {"i": "does abortion pill affect future pregnancy quora", "q": "yJtkzgA3XrHXGdI5688mRMDoZBE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill affect future fertility", "datetime": "2026-03-12 19:57:14.522003", "source": "google", "data": ["morning after pill affect future fertility", [["morning after pill affect future fertility", 0, [22, 30]], ["morning after pill affect future pregnancy", 0, [22, 30]], ["will morning after pill affect future pregnancy", 0, [22, 30]], ["morning after pill side effects future pregnancy", 0, [22, 30]], ["can morning after pill cause infertility", 0, [512, 390, 650]], ["does the morning after pill affect long term fertility", 0, [512, 390, 650]], ["long term effects of morning after pill on fertility", 0, [512, 390, 650]], ["does taking a lot of morning after pill affect fertility", 0, [512, 390, 650]], ["levonorgestrel affect future pregnancy", 0, [512, 546]], ["does day after pill affect fertility", 0, [512, 546]]], {"i": "morning after pill affect future fertility", "q": "gNgZ9g27Ntvl4KdBYwgcSMrzn3M", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill affect future fertility", "morning after pill affect future pregnancy", "will morning after pill affect future pregnancy", "morning after pill side effects future pregnancy", "can morning after pill cause infertility", "does the morning after pill affect long term fertility", "long term effects of morning after pill on fertility", "does taking a lot of morning after pill affect fertility", "levonorgestrel affect future pregnancy", "does day after pill affect fertility"], "self_loops": [0], "tags": {"i": "morning after pill affect future fertility", "q": "gNgZ9g27Ntvl4KdBYwgcSMrzn3M", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "will morning after pill affect future pregnancy", "datetime": "2026-03-12 19:57:15.948354", "source": "google", "data": ["will morning after pill affect future pregnancy", [["will morning after pill affect future pregnancy", 0, [512]], ["does morning after pill affect future fertility", 0, [22, 30]], ["morning after pill affect future pregnancy", 0, [22, 30]], ["does plan b pill affect future pregnancy", 0, [22, 30]], ["does morning after pill affect future pregnancy", 0, [512, 390, 650]], ["can plan b harm future pregnancy", 0, [512, 390, 650]], ["can morning after pill affect pregnancy", 0, [512, 390, 650]], ["can the morning after pill stop you getting pregnant in the future", 0, [512, 390, 650]], ["will morning after pill affect my period", 0, [512, 546]], ["will the morning after pill prevent pregnancy", 0, [512, 546]]], {"i": "will morning after pill affect future pregnancy", "q": "Z27iNjdqX-uJKmwOGVxO2rPZIGA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["will morning after pill affect future pregnancy", "does morning after pill affect future fertility", "morning after pill affect future pregnancy", "does plan b pill affect future pregnancy", "does morning after pill affect future pregnancy", "can plan b harm future pregnancy", "can morning after pill affect pregnancy", "can the morning after pill stop you getting pregnant in the future", "will morning after pill affect my period", "will the morning after pill prevent pregnancy"], "self_loops": [0], "tags": {"i": "will morning after pill affect future pregnancy", "q": "Z27iNjdqX-uJKmwOGVxO2rPZIGA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill psychological side effects", "datetime": "2026-03-12 19:57:17.235248", "source": "google", "data": ["morning after pill psychological side effects", [["morning after pill psychological side effects", 0, [512]], ["morning after pill emotional side effects", 0, [22, 30]], ["morning after pill mental side effects", 0, [22, 30]], ["morning after pill mood side effects", 0, [22, 30]], ["morning after pill emotional side effects reddit", 0, [22, 30]], ["morning after pill side effects mood swings", 0, [22, 30]], ["morning after pill side effects depression", 0, [22, 30]], ["does the morning after pill cause side effects", 0, [512, 390, 650]], ["how long does morning after pills side effects last", 0, [512, 390, 650]], ["morning-after pill side effects", 0, [512, 546]]], {"i": "morning after pill psychological side effects", "q": "zSecOcegKnTkPsAH_ZPSmKaG0hk", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill psychological side effects", "morning after pill emotional side effects", "morning after pill mental side effects", "morning after pill mood side effects", "morning after pill emotional side effects reddit", "morning after pill side effects mood swings", "morning after pill side effects depression", "does the morning after pill cause side effects", "how long does morning after pills side effects last", "morning-after pill side effects"], "self_loops": [0], "tags": {"i": "morning after pill psychological side effects", "q": "zSecOcegKnTkPsAH_ZPSmKaG0hk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effects of plan b mentally", "datetime": "2026-03-12 19:57:18.440356", "source": "google", "data": ["side effects of plan b mentally", [["side effects of plan b mentally", 0, [512]], ["side effects of plan b emotionally", 0, [22, 30]], ["can plan b affect your mental health", 0, [512, 390, 650]], ["can plan b cause serious side effects", 0, [512, 390, 650]], ["does plan b cause mood swings", 0, [512, 390, 650]], ["side effects of plan b depression", 0, [546, 649]], ["side effects of plan b anxiety", 0, [751]], ["side effects of plan b mood swings", 0, [512, 546]]], {"i": "side effects of plan b mentally", "q": "W66w7aP1dgYLyb3mJKviBWZ3bsA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["side effects of plan b mentally", "side effects of plan b emotionally", "can plan b affect your mental health", "can plan b cause serious side effects", "does plan b cause mood swings", "side effects of plan b depression", "side effects of plan b anxiety", "side effects of plan b mood swings"], "self_loops": [0], "tags": {"i": "side effects of plan b mentally", "q": "W66w7aP1dgYLyb3mJKviBWZ3bsA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill depression anxiety", "datetime": "2026-03-12 19:57:19.922855", "source": "google", "data": ["morning after pill depression anxiety", [["morning after pill depression anxiety", 0, [22, 30]], ["morning after pill and anxiety", 0, [22, 30]], ["can morning after pill cause anxiety", 0, [512, 390, 650]], ["morning after pill depression", 0, [512, 390, 650]], ["morning after pill depression reddit", 0, [546, 649]], ["morning after pill depression how long", 0, [512, 546]], ["morning depression and anxiety treatment", 0, [512, 546]], ["morning depression and anxiety reddit", 0, [512, 546]]], {"i": "morning after pill depression anxiety", "q": "fPWXz0frSWLHKzRPoAlJFOTLmRo", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill depression anxiety", "morning after pill and anxiety", "can morning after pill cause anxiety", "morning after pill depression", "morning after pill depression reddit", "morning after pill depression how long", "morning depression and anxiety treatment", "morning depression and anxiety reddit"], "self_loops": [0], "tags": {"i": "morning after pill depression anxiety", "q": "fPWXz0frSWLHKzRPoAlJFOTLmRo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion pill side effects mood", "datetime": "2026-03-12 19:57:20.952825", "source": "google", "data": ["abortion pill side effects mood", [["abortion pill side effects mood", 0, [22, 30]], ["morning after pill side effects mood", 0, [22, 30]], ["morning after pill side effects mood swings", 0, [22, 30]], ["morning after pill side effects low mood", 0, [22, 30]], ["abortion pill side effects future pregnancy", 0, [512, 390, 650]], ["does abortion pill affect menstrual cycle", 0, [512, 390, 650]], ["abortion side effects future pregnancy", 0, [512, 390, 650]], ["abortion pill side effects emotional", 0, [751]], ["abortion pill mood swings", 0, [512, 546]], ["abortion pill side effects after", 0, [546, 649]]], {"i": "abortion pill side effects mood", "q": "GIw868hZ51ux60oOJpFCXUZT1Rk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion pill side effects mood", "morning after pill side effects mood", "morning after pill side effects mood swings", "morning after pill side effects low mood", "abortion pill side effects future pregnancy", "does abortion pill affect menstrual cycle", "abortion side effects future pregnancy", "abortion pill side effects emotional", "abortion pill mood swings", "abortion pill side effects after"], "self_loops": [0], "tags": {"i": "abortion pill side effects mood", "q": "GIw868hZ51ux60oOJpFCXUZT1Rk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects mood", "datetime": "2026-03-12 19:57:22.282073", "source": "google", "data": ["morning after pill side effects mood", [["morning after pill side effects mood", 0, [512]], ["morning after pill side effects mood swings", 0, [512]], ["morning after pill side effects low mood", 0, [22, 30]], ["morning after pill cause mood swings", 0, [22, 30]], ["plan b pill side effects mood swings", 0, [22, 30]], ["plan b pill side effects mood", 0, [22, 30]], ["can the morning after pill affect your mood", 0, [512, 390, 650]], ["can the morning after pill cause mood swings", 0, [512, 390, 650]], ["how does the morning after pill affect your mood", 0, [512, 390, 650]], ["can the morning after pill make you moody", 0, [512, 390, 650]]], {"i": "morning after pill side effects mood", "q": "nCO40A8vXUpRaMYrqDmkPwCMpcQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects mood", "morning after pill side effects mood swings", "morning after pill side effects low mood", "morning after pill cause mood swings", "plan b pill side effects mood swings", "plan b pill side effects mood", "can the morning after pill affect your mood", "can the morning after pill cause mood swings", "how does the morning after pill affect your mood", "can the morning after pill make you moody"], "self_loops": [0], "tags": {"i": "morning after pill side effects mood", "q": "nCO40A8vXUpRaMYrqDmkPwCMpcQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects mood swings", "datetime": "2026-03-12 19:57:23.224576", "source": "google", "data": ["morning after pill side effects mood swings", [["morning after pill side effects mood swings", 0, [512]], ["morning after pill cause mood swings", 0, [22, 30]], ["plan b pill side effects mood swings", 0, [22, 30]], ["can the morning after pill cause mood swings", 0, [512, 390, 650]], ["can the morning after pill make you moody", 0, [512, 390, 650]], ["is mood swings a side effect of plan b", 0, [512, 390, 650]], ["morning after pill side effects menstrual cycle", 0, [512, 546]], ["morning after pill side effects a week later", 0, [512, 546]], ["mood swings after taking plan b", 0, [512, 546]], ["birth control pill side effects mood swings", 0, [751]]], {"i": "morning after pill side effects mood swings", "q": "E2P9KAtB935O9yw8perbonACKL0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["morning after pill side effects mood swings", "morning after pill cause mood swings", "plan b pill side effects mood swings", "can the morning after pill cause mood swings", "can the morning after pill make you moody", "is mood swings a side effect of plan b", "morning after pill side effects menstrual cycle", "morning after pill side effects a week later", "mood swings after taking plan b", "birth control pill side effects mood swings"], "self_loops": [0], "tags": {"i": "morning after pill side effects mood swings", "q": "E2P9KAtB935O9yw8perbonACKL0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects depression", "datetime": "2026-03-12 19:57:24.644939", "source": "google", "data": ["morning after pill side effects depression", [["morning after pill side effects depression", 0, [512]], ["plan b pill side effects depression", 0, [22, 30]], ["can the morning after pill make you depressed", 0, [512, 390, 650]], ["can the morning after pill affect your mood", 0, [512, 390, 650]], ["morning after pill depression anxiety", 0, [546, 649]], ["morning after pill depression how long", 0, [512, 546]], ["morning after pill depression reddit", 0, [546, 649]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]]], {"i": "morning after pill side effects depression", "q": "8odNyPapsXZSiF_iy9epsk2AAf8", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects depression", "plan b pill side effects depression", "can the morning after pill make you depressed", "can the morning after pill affect your mood", "morning after pill depression anxiety", "morning after pill depression how long", "morning after pill depression reddit", "morning after pill side effects a week later", "morning after pill side effects menstrual cycle"], "self_loops": [0], "tags": {"i": "morning after pill side effects depression", "q": "8odNyPapsXZSiF_iy9epsk2AAf8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects mental health", "datetime": "2026-03-12 19:57:25.760328", "source": "google", "data": ["morning after pill side effects mental health", [["morning after pill side effects mental health", 0, [22, 30]], ["morning after pill side effects depression", 0, [512, 390, 650]], ["can the morning after pill make you depressed", 0, [512, 390, 650]], ["morning after pill emotional side effects", 0, [512, 390, 650]], ["morning after pill depression anxiety", 0, [546, 649]], ["morning after pill side effects mentally", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]], ["mental side effects of plan b", 0, [512, 546]]], {"i": "morning after pill side effects mental health", "q": "WqSpaIzANl5m039glStsOqxIRp4", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects mental health", "morning after pill side effects depression", "can the morning after pill make you depressed", "morning after pill emotional side effects", "morning after pill depression anxiety", "morning after pill side effects mentally", "morning after pill side effects menstrual cycle", "mental side effects of plan b"], "self_loops": [0], "tags": {"i": "morning after pill side effects mental health", "q": "WqSpaIzANl5m039glStsOqxIRp4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects low mood", "datetime": "2026-03-12 19:57:26.666571", "source": "google", "data": ["morning after pill side effects low mood", [["morning after pill side effects low mood", 0, [22, 30]], ["low mood after morning after pill", 0, [512, 390, 650]], ["side effects morning after pill mood", 0, [512, 390, 650]], ["can the morning after pill make you moody", 0, [512, 390, 650]], ["can the morning after pill cause mood swings", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]], ["side effects of morning after pill long term", 0, [512, 546]], ["morning after pill side effects bleeding", 0, [512, 546]]], {"i": "morning after pill side effects low mood", "q": "HxlvhZsyWeXL2fX9SvdLLyESTR4", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects low mood", "low mood after morning after pill", "side effects morning after pill mood", "can the morning after pill make you moody", "can the morning after pill cause mood swings", "morning after pill side effects a week later", "morning after pill side effects menstrual cycle", "side effects of morning after pill long term", "morning after pill side effects bleeding"], "self_loops": [0], "tags": {"i": "morning after pill side effects low mood", "q": "HxlvhZsyWeXL2fX9SvdLLyESTR4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "plan b pill side effects emotional", "datetime": "2026-03-12 19:57:27.524322", "source": "google", "data": ["plan b pill side effects emotional", [["plan b pill side effects emotional", 0, [22, 30]], ["plan b pill side effects mood swings", 0, [22, 30]], ["plan b pill side effects mood", 0, [22, 30]], ["plan b pill side effects depression", 0, [22, 30]], ["plan b pill side effects mental", 0, [22, 30]], ["morning after pill side effects emotional", 0, [22, 30]], ["plan b side effects emotional", 0, [512, 390, 650]], ["does plan b make you emotional", 0, [512, 390, 650]], ["plan b emotional side effects reddit", 0, [512, 546]]], {"i": "plan b pill side effects emotional", "q": "dQryuUr0_kSMHyVw8Lfxk8Y4RQA", "t": {"bpc": false, "tlw": false}}], "suggests": ["plan b pill side effects emotional", "plan b pill side effects mood swings", "plan b pill side effects mood", "plan b pill side effects depression", "plan b pill side effects mental", "morning after pill side effects emotional", "plan b side effects emotional", "does plan b make you emotional", "plan b emotional side effects reddit"], "self_loops": [0], "tags": {"i": "plan b pill side effects emotional", "q": "dQryuUr0_kSMHyVw8Lfxk8Y4RQA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "negative mental health effects of abortion", "datetime": "2026-03-12 19:57:28.650613", "source": "google", "data": ["negative mental health effects of abortion", [["negative mental health effects of abortion", 0, [22, 30]], ["negative mental health effects", 0, [512, 390, 650]], ["negative mental health examples", 0, [512, 390, 650]], ["negative effects of abortion", 0, [512, 390, 650]], ["negative psychological effects of abortion", 0, [751]], ["mental health effects of an abortion", 0, [751]], ["what are the mental effects of abortion", 0, [546, 649]]], {"i": "negative mental health effects of abortion", "q": "qntoEI0EiCvDa6lF7SgtEJJB4LI", "t": {"bpc": false, "tlw": false}}], "suggests": ["negative mental health effects of abortion", "negative mental health effects", "negative mental health examples", "negative effects of abortion", "negative psychological effects of abortion", "mental health effects of an abortion", "what are the mental effects of abortion"], "self_loops": [0], "tags": {"i": "negative mental health effects of abortion", "q": "qntoEI0EiCvDa6lF7SgtEJJB4LI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "psychological side effects of abortion", "datetime": "2026-03-12 19:57:29.623255", "source": "google", "data": ["psychological side effects of abortion", [["psychological side effects of abortion", 0, [22, 30]], ["mental side effects of abortion", 0, [22, 30]], ["emotional side effects of abortion", 0, [22, 30]], ["negative psychological effects of abortion", 0, [22, 30]], ["mental side effects of miscarriage", 0, [22, 30]], ["emotional side effects of miscarriage", 0, [22, 30]], ["mental health side effects of abortion", 0, [22, 30]], ["emotional side effects of medical abortion", 0, [22, 30]], ["after abortion psychological effects", 0, [512, 390, 650]], ["psychological effects of medical abortion", 0, [512, 390, 650]]], {"i": "psychological side effects of abortion", "q": "Io2RRMRxBHN7SWn63vjg-V_0dWU", "t": {"bpc": false, "tlw": false}}], "suggests": ["psychological side effects of abortion", "mental side effects of abortion", "emotional side effects of abortion", "negative psychological effects of abortion", "mental side effects of miscarriage", "emotional side effects of miscarriage", "mental health side effects of abortion", "emotional side effects of medical abortion", "after abortion psychological effects", "psychological effects of medical abortion"], "self_loops": [0], "tags": {"i": "psychological side effects of abortion", "q": "Io2RRMRxBHN7SWn63vjg-V_0dWU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "mental health risks of abortion", "datetime": "2026-03-12 19:57:30.850938", "source": "google", "data": ["mental health risks of abortion", [["mental health risks of abortion", 0, [22, 30]], ["mental health effects of abortion", 0, [22, 30]], ["mental health effects of abortion on women", 0, [22, 30]], ["mental health side effects of abortion", 0, [22, 30]], ["negative mental health effects of abortion", 0, [22, 30]], ["mental health issues after abortion", 0, [22, 30]], ["mental health effects after abortion", 0, [22, 30]], ["abortion health risks", 0, [512, 390, 650]], ["risks of unsafe abortion", 0, [512, 390, 650]], ["mental health impacts of abortion", 0, [751]]], {"i": "mental health risks of abortion", "q": "zg8_2YMNswkZXnPE1aBUF_1t_8g", "t": {"bpc": false, "tlw": false}}], "suggests": ["mental health risks of abortion", "mental health effects of abortion", "mental health effects of abortion on women", "mental health side effects of abortion", "negative mental health effects of abortion", "mental health issues after abortion", "mental health effects after abortion", "abortion health risks", "risks of unsafe abortion", "mental health impacts of abortion"], "self_loops": [0], "tags": {"i": "mental health risks of abortion", "q": "zg8_2YMNswkZXnPE1aBUF_1t_8g", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "mental health affects of abortion", "datetime": "2026-03-12 19:57:32.236591", "source": "google", "data": ["mental health affects of abortion", [["mental health effects of abortion", 0, [512, 13]], ["mental health affects of abortion", 0, [22, 30]], ["mental health risks of abortion", 0, [22, 30]], ["mental health effects of abortion on women", 0, [22, 30]], ["mental health side effects of abortion", 0, [22, 30]], ["negative mental health effects of abortion", 0, [22, 30]], ["mental health problems after abortion", 0, [22, 30]], ["mental health effects after abortion", 0, [22, 30]], ["effects of abortion on students", 0, [512, 390, 650]], ["long term effects of abortion", 0, [512, 390, 650]]], {"i": "mental health affects of abortion", "o": "mental health effects of abortion", "p": "mental health affects of abortion", "q": "9zzcwUkadFMd73fLyRNq-sTnDtg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["mental health effects of abortion", "mental health affects of abortion", "mental health risks of abortion", "mental health effects of abortion on women", "mental health side effects of abortion", "negative mental health effects of abortion", "mental health problems after abortion", "mental health effects after abortion", "effects of abortion on students", "long term effects of abortion"], "self_loops": [1], "tags": {"i": "mental health affects of abortion", "o": "mental health effects of abortion", "p": "mental health affects of abortion", "q": "9zzcwUkadFMd73fLyRNq-sTnDtg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "long term effects of abortion", "datetime": "2026-03-12 19:57:33.657855", "source": "google", "data": ["long term effects of abortion", [["long term effects of abortion", 0, [512]], ["long term effects of abortion pill", 0, [512]], ["long term effects of abortion pill reddit", 0, [512]], ["long term effects of abortion on women", 0, [512]], ["long term effects of abortion on the body", 0, [512]], ["long term effects of abortion on students", 0, [22, 30]], ["long term effects of abortion reddit", 0, [22, 30]], ["long term effects of abortion medication", 0, [22, 30]], ["long term effects of abortion pill on the body", 0, [22, 30]], ["long term consequences of abortion", 0, [22, 30]]], {"i": "long term effects of abortion", "q": "EwyLvdsL97w2t-_kPwz_DpiXmXY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["long term effects of abortion", "long term effects of abortion pill", "long term effects of abortion pill reddit", "long term effects of abortion on women", "long term effects of abortion on the body", "long term effects of abortion on students", "long term effects of abortion reddit", "long term effects of abortion medication", "long term effects of abortion pill on the body", "long term consequences of abortion"], "self_loops": [0], "tags": {"i": "long term effects of abortion", "q": "EwyLvdsL97w2t-_kPwz_DpiXmXY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion effects on health", "datetime": "2026-03-12 19:57:35.055205", "source": "google", "data": ["abortion effects on health", [["abortion effects on health", 0, [512]], ["abortion impact on health", 0, [22, 30]], ["abortion effects on mental health", 0, [22, 30]], ["abortion effects on women's health", 0, [22, 30]], ["abortion effects on body", 0, [22, 30]], ["abortion effects on women's mental health", 0, [22, 30]], ["abortion impact on mental health", 0, [22, 30]], ["abortion affect on mental health", 0, [22, 30]], ["abortion side effects on mental health", 0, [22, 30]], ["does abortion affect health", 0, [512, 390, 650]]], {"i": "abortion effects on health", "q": "YmZ9s8LDcPnHrBCVD0P-onUdJdg", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion effects on health", "abortion impact on health", "abortion effects on mental health", "abortion effects on women's health", "abortion effects on body", "abortion effects on women's mental health", "abortion impact on mental health", "abortion affect on mental health", "abortion side effects on mental health", "does abortion affect health"], "self_loops": [0], "tags": {"i": "abortion effects on health", "q": "YmZ9s8LDcPnHrBCVD0P-onUdJdg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "mental side effects of abortion", "datetime": "2026-03-12 19:57:35.859498", "source": "google", "data": ["mental side effects of abortion", [["mental side effects of abortion", 0, [512]], ["emotional side effects of abortion", 0, [22, 30]], ["psychological side effects of abortion", 0, [22, 30]], ["mental side effects of miscarriage", 0, [22, 30]], ["mental health side effects of abortion", 0, [22, 30]], ["negative mental effects of abortion", 0, [22, 30]], ["emotional side effects of miscarriage", 0, [22, 30]], ["emotional side effects of medical abortion", 0, [22, 30]], ["negative mental health effects of abortion", 0, [22, 30]]], {"i": "mental side effects of abortion", "q": "uCR-uWY-N0XaS7k8M5xTusFyykc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["mental side effects of abortion", "emotional side effects of abortion", "psychological side effects of abortion", "mental side effects of miscarriage", "mental health side effects of abortion", "negative mental effects of abortion", "emotional side effects of miscarriage", "emotional side effects of medical abortion", "negative mental health effects of abortion"], "self_loops": [0], "tags": {"i": "mental side effects of abortion", "q": "uCR-uWY-N0XaS7k8M5xTusFyykc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion after effects mentally", "datetime": "2026-03-12 19:57:37.275292", "source": "google", "data": ["abortion after effects mentally", [["abortion after effects mentally", 0, [22, 30]], ["abortion side effects mentally", 0, [22, 30]], ["miscarriage after effects mentally", 0, [22, 30]], ["abortion side effects mental health", 0, [22, 30]], ["abortion side effects emotionally", 0, [22, 30]], ["abortion pill side effects mentally", 0, [22, 30]], ["after abortion psychological effects", 0, [22, 30]], ["abortion after effects", 0, [512, 390, 650]], ["abortion after effects on body", 0, [512, 390, 650]], ["after abortion mental health", 0, [512, 546]]], {"i": "abortion after effects mentally", "q": "GCcZd_3jcdCyFEoxqHjBlj6ChXw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion after effects mentally", "abortion side effects mentally", "miscarriage after effects mentally", "abortion side effects mental health", "abortion side effects emotionally", "abortion pill side effects mentally", "after abortion psychological effects", "abortion after effects", "abortion after effects on body", "after abortion mental health"], "self_loops": [0], "tags": {"i": "abortion after effects mentally", "q": "GCcZd_3jcdCyFEoxqHjBlj6ChXw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion side effects mental health", "datetime": "2026-03-12 19:57:38.153787", "source": "google", "data": ["abortion side effects mental health", [["abortion side effects mental health", 0, [512]], ["post abortion side effects on mental health", 0, [22, 30]], ["abortion effects on health", 0, [512, 390, 650]], ["long term effects of abortion", 0, [512, 390, 650]], ["abortion side effects future pregnancy", 0, [512, 390, 650]], ["abortion side effects mentally", 0, [546, 649]]], {"i": "abortion side effects mental health", "q": "tCm_AZ4KAuBtQypn-poAgBaO6cw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion side effects mental health", "post abortion side effects on mental health", "abortion effects on health", "long term effects of abortion", "abortion side effects future pregnancy", "abortion side effects mentally"], "self_loops": [0], "tags": {"i": "abortion side effects mental health", "q": "tCm_AZ4KAuBtQypn-poAgBaO6cw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion side effects emotionally", "datetime": "2026-03-12 19:57:39.635115", "source": "google", "data": ["abortion side effects emotionally", [["abortion side effects emotionally", 0, [512]], ["abortion side effects mentally", 0, [22, 30]], ["abortion side effects mental health", 0, [22, 30]], ["abortion after effects mentally", 0, [22, 30]], ["abortion pill side effects emotional", 0, [22, 30]], ["abortion pill side effects mentally", 0, [22, 30]], ["emotional changes after abortion", 0, [512, 390, 650]]], {"i": "abortion side effects emotionally", "q": "44fojfiuAFb516uFr5wMWM1B39Q", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion side effects emotionally", "abortion side effects mentally", "abortion side effects mental health", "abortion after effects mentally", "abortion pill side effects emotional", "abortion pill side effects mentally", "emotional changes after abortion"], "self_loops": [0], "tags": {"i": "abortion side effects emotionally", "q": "44fojfiuAFb516uFr5wMWM1B39Q", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "after abortion psychological effects", "datetime": "2026-03-12 19:57:41.028998", "source": "google", "data": ["after abortion psychological effects", [["after abortion psychological effects", 0, [512]], ["how did you feel after abortion reddit", 0, [512, 390, 650]], ["effects after abortion", 0, [512, 390, 650]], ["psychology after abortion", 0, [751]], ["psychological responses after abortion", 0, [546, 649]], ["after abortion mental health", 0, [512, 546]]], {"i": "after abortion psychological effects", "q": "eCpHidwilDaYCQRKsMTojsNquH4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["after abortion psychological effects", "how did you feel after abortion reddit", "effects after abortion", "psychology after abortion", "psychological responses after abortion", "after abortion mental health"], "self_loops": [0], "tags": {"i": "after abortion psychological effects", "q": "eCpHidwilDaYCQRKsMTojsNquH4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects weeks later", "datetime": "2026-03-12 19:57:42.308121", "source": "google", "data": ["morning after pill side effects weeks later", [["morning after pill side effects weeks later", 0, [22, 30]], ["morning after pill side effects 2 weeks later", 0, [22, 30]], ["morning after pill side effects 3 weeks later", 0, [22, 30]], ["morning after pill side effects 1 week later", 0, [22, 30]], ["morning after pill side effects bleeding week later", 0, [22, 30]], ["how many days do morning after pill side effects last", 0, [512, 390, 650]], ["morning after pill symptoms a week later", 0, [512, 546]], ["morning after pill side effects bleeding", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]], ["morning after pill plan b side effects", 0, [512, 546]]], {"i": "morning after pill side effects weeks later", "q": "Aef6bKMbNk2rrCZcSGnyVgH1nhk", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects weeks later", "morning after pill side effects 2 weeks later", "morning after pill side effects 3 weeks later", "morning after pill side effects 1 week later", "morning after pill side effects bleeding week later", "how many days do morning after pill side effects last", "morning after pill symptoms a week later", "morning after pill side effects bleeding", "morning after pill side effects menstrual cycle", "morning after pill plan b side effects"], "self_loops": [0], "tags": {"i": "morning after pill side effects weeks later", "q": "Aef6bKMbNk2rrCZcSGnyVgH1nhk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects 3 days later", "datetime": "2026-03-12 19:57:43.328710", "source": "google", "data": ["morning after pill side effects 3 days later", [["morning after pill side effects 3 days later", 0, [512]], ["morning after pill side effects 3 weeks later", 0, [22, 30]], ["can you get the morning after pill 3 days later", 0, [512, 390, 650]], ["how many days do morning after pill side effects last", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]], ["morning after pill plan b side effects", 0, [512, 546]], ["morning-after pill side effects", 0, [512, 546]], ["plan b side effects 3 days later", 0, [512, 546]]], {"i": "morning after pill side effects 3 days later", "q": "m-yVYlTALXn8jHYQWeG03bnZ2Zc", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects 3 days later", "morning after pill side effects 3 weeks later", "can you get the morning after pill 3 days later", "how many days do morning after pill side effects last", "morning after pill side effects a week later", "morning after pill side effects menstrual cycle", "morning after pill plan b side effects", "morning-after pill side effects", "plan b side effects 3 days later"], "self_loops": [0], "tags": {"i": "morning after pill side effects 3 days later", "q": "m-yVYlTALXn8jHYQWeG03bnZ2Zc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects 2 days later", "datetime": "2026-03-12 19:57:44.748251", "source": "google", "data": ["morning after pill side effects 2 days later", [["morning after pill side effects 2 days later", 0, [22, 30]], ["morning after pill side effects 2 weeks later", 0, [22, 30]], ["plan b pill side effects 2 weeks later", 0, [22, 30]], ["morning after pill two days later", 0, [512, 390, 650]], ["can you use the morning after pill 2 days later", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]], ["morning after pill dangerous side effects", 0, [512, 546]], ["day after pill side effects long term", 0, [512, 546]], ["morning after pill side effects bleeding", 0, [512, 546]]], {"i": "morning after pill side effects 2 days later", "q": "CSiufqzADb9bADTVn_WOgXry1x0", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects 2 days later", "morning after pill side effects 2 weeks later", "plan b pill side effects 2 weeks later", "morning after pill two days later", "can you use the morning after pill 2 days later", "morning after pill side effects a week later", "morning after pill side effects menstrual cycle", "morning after pill dangerous side effects", "day after pill side effects long term", "morning after pill side effects bleeding"], "self_loops": [0], "tags": {"i": "morning after pill side effects 2 days later", "q": "CSiufqzADb9bADTVn_WOgXry1x0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects 4 days later", "datetime": "2026-03-12 19:57:46.080211", "source": "google", "data": ["morning after pill side effects 4 days later", [["morning after pill side effects 4 days later", 0, [512]], ["how many days do morning after pill side effects last", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]], ["day after pill side effects long term", 0, [512, 546]], ["morning after pill side effects bleeding", 0, [512, 546]], ["plan b side effects 4 days later", 0, [512, 546]]], {"i": "morning after pill side effects 4 days later", "q": "CeIxeun_T2lANTQyy_wogUfSMvU", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects 4 days later", "how many days do morning after pill side effects last", "morning after pill side effects a week later", "morning after pill side effects menstrual cycle", "day after pill side effects long term", "morning after pill side effects bleeding", "plan b side effects 4 days later"], "self_loops": [0], "tags": {"i": "morning after pill side effects 4 days later", "q": "CeIxeun_T2lANTQyy_wogUfSMvU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects 2 weeks later", "datetime": "2026-03-12 19:57:47.084151", "source": "google", "data": ["morning after pill side effects 2 weeks later", [["morning after pill side effects 2 weeks later", 0, [512]], ["morning after pill side effects 1 week later", 0, [22, 30]], ["morning after pill side effects 4 days later", 0, [22, 30]], ["plan b pill side effects 2 weeks later", 0, [22, 30]], ["how many days do morning after pill side effects last", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill symptoms a week later", 0, [512, 546]], ["morning after pill side effects bleeding", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]]], {"i": "morning after pill side effects 2 weeks later", "q": "uq5kOgxSCBztt-OgEuBdIl431T0", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects 2 weeks later", "morning after pill side effects 1 week later", "morning after pill side effects 4 days later", "plan b pill side effects 2 weeks later", "how many days do morning after pill side effects last", "morning after pill side effects a week later", "morning after pill symptoms a week later", "morning after pill side effects bleeding", "morning after pill side effects menstrual cycle"], "self_loops": [0], "tags": {"i": "morning after pill side effects 2 weeks later", "q": "uq5kOgxSCBztt-OgEuBdIl431T0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects 3 weeks later", "datetime": "2026-03-12 19:57:48.017721", "source": "google", "data": ["morning after pill side effects 3 weeks later", [["morning after pill side effects 3 weeks later", 0, [22, 30]], ["morning after pill side effects 1 week later", 0, [22, 30]], ["morning after pill side effects 2 weeks later", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill symptoms a week later", 0, [512, 546]], ["morning after pill plan b side effects", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]]], {"i": "morning after pill side effects 3 weeks later", "q": "kJ6e9Bl_Xu8X6I3Bq1ham9YsfV4", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects 3 weeks later", "morning after pill side effects 1 week later", "morning after pill side effects 2 weeks later", "morning after pill side effects a week later", "morning after pill symptoms a week later", "morning after pill plan b side effects", "morning after pill side effects menstrual cycle"], "self_loops": [0], "tags": {"i": "morning after pill side effects 3 weeks later", "q": "kJ6e9Bl_Xu8X6I3Bq1ham9YsfV4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "side effects of morning after pill 5 days later", "datetime": "2026-03-12 19:57:48.896115", "source": "google", "data": ["side effects of morning after pill 5 days later", [["side effects of morning after pill 5 days later", 0, [512]], ["symptoms of morning after pill 5 days later", 0, [22, 30]], ["can the morning after pill make you bleed 5 days later", 0, [512, 390, 650]], ["side effects of morning after pill long term", 0, [512, 546]], ["side effects of morning after pill before period", 0, [751]], ["side effects of morning-after pill if pregnant", 0, [512, 546]], ["side effects 5 days after plan b", 0, [751]]], {"i": "side effects of morning after pill 5 days later", "q": "9QK51SYJ2p_auiWxTD4c0nRTugM", "t": {"bpc": false, "tlw": false}}], "suggests": ["side effects of morning after pill 5 days later", "symptoms of morning after pill 5 days later", "can the morning after pill make you bleed 5 days later", "side effects of morning after pill long term", "side effects of morning after pill before period", "side effects of morning-after pill if pregnant", "side effects 5 days after plan b"], "self_loops": [0], "tags": {"i": "side effects of morning after pill 5 days later", "q": "9QK51SYJ2p_auiWxTD4c0nRTugM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects day 2", "datetime": "2026-03-12 19:57:50.008904", "source": "google", "data": ["morning after pill side effects day 2", [["morning after pill side effects day 2", 0, [22, 30]], ["morning after pill side effects 2 days later", 0, [22, 30]], ["how many days do morning after pill side effects last", 0, [512, 390, 650]], ["how long does morning after pills side effects last", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]], ["morning after pill dangerous side effects", 0, [512, 546]], ["morning after pill side effects menstrual cycle", 0, [512, 546]], ["day after pill side effects long term", 0, [512, 546]], ["morning after pill side effects bleeding", 0, [512, 546]]], {"i": "morning after pill side effects day 2", "q": "G2DoOBZIJBOFEU_ejwOIC2v7N48", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects day 2", "morning after pill side effects 2 days later", "how many days do morning after pill side effects last", "how long does morning after pills side effects last", "morning after pill side effects a week later", "morning after pill dangerous side effects", "morning after pill side effects menstrual cycle", "day after pill side effects long term", "morning after pill side effects bleeding"], "self_loops": [0], "tags": {"i": "morning after pill side effects day 2", "q": "G2DoOBZIJBOFEU_ejwOIC2v7N48", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "morning after pill side effects next day", "datetime": "2026-03-12 19:57:51.315372", "source": "google", "data": ["morning after pill side effects next day", [["morning after pill side effects next day", 0, [22, 30]], ["morning after pill side effects days later", 0, [22, 30]], ["morning after pill side effects days", 0, [22, 10, 30]], ["morning after pill side effects day 2", 0, [22, 30]], ["morning after pill side effects 3 days later", 0, [22, 30]], ["morning after pill side effects 2 days later", 0, [22, 30]], ["morning after pill side effects 4 days later", 0, [22, 30]], ["morning after pill side effects after 5 days", 0, [22, 30]], ["how long does morning after pills side effects last", 0, [512, 390, 650]], ["morning after pill side effects a week later", 0, [512, 546]]], {"i": "morning after pill side effects next day", "q": "fHKrsefZeZtBXFWJ5Tkt7UBKSgE", "t": {"bpc": false, "tlw": false}}], "suggests": ["morning after pill side effects next day", "morning after pill side effects days later", "morning after pill side effects days", "morning after pill side effects day 2", "morning after pill side effects 3 days later", "morning after pill side effects 2 days later", "morning after pill side effects 4 days later", "morning after pill side effects after 5 days", "how long does morning after pills side effects last", "morning after pill side effects a week later"], "self_loops": [0], "tags": {"i": "morning after pill side effects next day", "q": "fHKrsefZeZtBXFWJ5Tkt7UBKSgE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long do symptoms of abortion pills last", "datetime": "2026-03-12 19:57:52.368810", "source": "google", "data": ["how long do symptoms of abortion pills last", [["how long do symptoms of abortion pill last", 0, [22, 30]], ["how long do side effects of abortion pills last", 0, [22, 30]], ["how long do symptoms last after abortion pill", 0, [22, 30]], ["how long does effects of abortion pill last", 0, [22, 30]], ["how long does the pain of abortion last", 0, [512, 390, 650]], ["how long does the bleeding after abortion last", 0, [512, 390, 650]], ["how long do pregnancy symptoms last after abortion pill", 0, [512, 546]], ["how long do symptoms last after abortion", 0, [546, 649]]], {"i": "how long do symptoms of abortion pills last", "q": "clvahAdHkd_oTAaXrRvfe669T2o", "t": {"bpc": false, "tlw": false}}], "suggests": ["how long do symptoms of abortion pill last", "how long do side effects of abortion pills last", "how long do symptoms last after abortion pill", "how long does effects of abortion pill last", "how long does the pain of abortion last", "how long does the bleeding after abortion last", "how long do pregnancy symptoms last after abortion pill", "how long do symptoms last after abortion"], "self_loops": [], "tags": {"i": "how long do symptoms of abortion pills last", "q": "clvahAdHkd_oTAaXrRvfe669T2o", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "still bleeding 5 weeks after abortion pill", "datetime": "2026-03-12 19:57:53.535283", "source": "google", "data": ["still bleeding 5 weeks after abortion pill", [["still bleeding 5 weeks after abortion pill", 0, [512]], ["bleeding 5 weeks after abortion pill", 0, [22, 30]], ["heavy bleeding 5 weeks after abortion pill", 0, [22, 30]], ["bleeding 5 weeks after abortion", 0, [512, 390, 650]], ["is it normal to bleed 5 days after abortion", 0, [512, 390, 650]], ["4 weeks after abortion still bleeding", 0, [512, 390, 650]], ["still bleeding 5 weeks after medical abortion", 0, [512, 390, 650]], ["is it normal to stop bleeding 5 days after an abortion", 0, [512, 390, 650]], ["still bleeding 5 weeks after abortion", 0, [512, 546]], ["why am i still bleeding 5 weeks after abortion", 0, [512, 546]]], {"i": "still bleeding 5 weeks after abortion pill", "q": "wU50UpebJnvWeVAsk0WbioPqEK4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["still bleeding 5 weeks after abortion pill", "bleeding 5 weeks after abortion pill", "heavy bleeding 5 weeks after abortion pill", "bleeding 5 weeks after abortion", "is it normal to bleed 5 days after abortion", "4 weeks after abortion still bleeding", "still bleeding 5 weeks after medical abortion", "is it normal to stop bleeding 5 days after an abortion", "still bleeding 5 weeks after abortion", "why am i still bleeding 5 weeks after abortion"], "self_loops": [0], "tags": {"i": "still bleeding 5 weeks after abortion pill", "q": "wU50UpebJnvWeVAsk0WbioPqEK4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "heavy bleeding 5 weeks after abortion pill", "datetime": "2026-03-12 19:57:54.644691", "source": "google", "data": ["heavy bleeding 5 weeks after abortion pill", [["heavy bleeding 5 weeks after abortion pill", 0, [22, 30]], ["bleeding 5 weeks after abortion", 0, [512, 390, 650]], ["bleeding 5 weeks after abortion pill", 0, [512, 390, 650]], ["is it normal to bleed heavy 4 weeks after abortion", 0, [512, 390, 650]], ["heavy bleeding weeks after abortion", 0, [512, 390, 650]], ["heavy bleeding 5 days after abortion pill", 0, [512, 546]], ["heavy bleeding 5 days after misoprostol", 0, [512, 546]], ["heavy bleeding weeks after abortion pill", 0, [512, 546]], ["heavy bleeding 4 weeks after abortion pill", 0, [512, 546]]], {"i": "heavy bleeding 5 weeks after abortion pill", "q": "bhXOLxlxMz-GZgcfyxsAi3h5TOg", "t": {"bpc": false, "tlw": false}}], "suggests": ["heavy bleeding 5 weeks after abortion pill", "bleeding 5 weeks after abortion", "bleeding 5 weeks after abortion pill", "is it normal to bleed heavy 4 weeks after abortion", "heavy bleeding weeks after abortion", "heavy bleeding 5 days after abortion pill", "heavy bleeding 5 days after misoprostol", "heavy bleeding weeks after abortion pill", "heavy bleeding 4 weeks after abortion pill"], "self_loops": [0], "tags": {"i": "heavy bleeding 5 weeks after abortion pill", "q": "bhXOLxlxMz-GZgcfyxsAi3h5TOg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is it normal to bleed 5 weeks after abortion pill", "datetime": "2026-03-12 19:57:55.745818", "source": "google", "data": ["is it normal to bleed 5 weeks after abortion pill", [["is it normal to bleed 5 weeks after abortion pill", 0, [22, 30]], ["is it normal to bleed 5 days after abortion", 0, [512, 390, 650]], ["is it normal to bleed 4 weeks after abortion", 0, [512, 390, 650]], ["bleeding 5 weeks after abortion", 0, [512, 390, 650]], ["is it normal to bleed 5 weeks after abortion", 0, [512, 546]], ["is it normal to bleed for 5 weeks after miscarriage", 0, [512, 546]], ["is it normal to bleed a week after abortion", 0, [512, 546]], ["is it normal to bleed 5 weeks into pregnancy", 0, [546, 649]], ["is it normal to bleed while pregnant at 5 weeks", 0, [512, 546]]], {"i": "is it normal to bleed 5 weeks after abortion pill", "q": "I5Fao-m8FCqu_qPlGhLGzV-glhA", "t": {"bpc": false, "tlw": false}}], "suggests": ["is it normal to bleed 5 weeks after abortion pill", "is it normal to bleed 5 days after abortion", "is it normal to bleed 4 weeks after abortion", "bleeding 5 weeks after abortion", "is it normal to bleed 5 weeks after abortion", "is it normal to bleed for 5 weeks after miscarriage", "is it normal to bleed a week after abortion", "is it normal to bleed 5 weeks into pregnancy", "is it normal to bleed while pregnant at 5 weeks"], "self_loops": [0], "tags": {"i": "is it normal to bleed 5 weeks after abortion pill", "q": "I5Fao-m8FCqu_qPlGhLGzV-glhA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "bleeding 5 weeks after abortion", "datetime": "2026-03-12 19:57:56.985514", "source": "google", "data": ["bleeding 5 weeks after abortion", [["bleeding 5 weeks after abortion", 0, [512]], ["bleeding 5 weeks after abortion reddit", 0, [512]], ["bleeding 5 weeks after abortion pill", 0, [512]], ["spotting 5 weeks after abortion", 0, [22, 30]], ["still bleeding 5 weeks after abortion", 0, [22, 30]], ["bleeding 5 weeks after medical abortion", 0, [22, 30]], ["heavy bleeding 5 weeks after abortion", 0, [22, 30]], ["still bleeding 5 weeks after abortion pill", 0, [22, 30]], ["light bleeding 5 weeks after abortion", 0, [22, 30]], ["still bleeding 5 weeks after abortion mumsnet", 0, [22, 30]]], {"i": "bleeding 5 weeks after abortion", "q": "6F1ttuue6xdm2-QnBwCUwKVBrNA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["bleeding 5 weeks after abortion", "bleeding 5 weeks after abortion reddit", "bleeding 5 weeks after abortion pill", "spotting 5 weeks after abortion", "still bleeding 5 weeks after abortion", "bleeding 5 weeks after medical abortion", "heavy bleeding 5 weeks after abortion", "still bleeding 5 weeks after abortion pill", "light bleeding 5 weeks after abortion", "still bleeding 5 weeks after abortion mumsnet"], "self_loops": [0], "tags": {"i": "bleeding 5 weeks after abortion", "q": "6F1ttuue6xdm2-QnBwCUwKVBrNA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spotting 5 weeks after abortion", "datetime": "2026-03-12 19:57:58.294726", "source": "google", "data": ["spotting 5 weeks after abortion", [["spotting 5 weeks after abortion", 0, [512]], ["bleeding 5 weeks after abortion", 0, [22, 30]], ["bleeding 5 weeks after abortion pill", 0, [22, 30]], ["bleeding 5 weeks after abortion reddit", 0, [22, 30]], ["spotting 5 weeks after medical abortion", 0, [22, 30]], ["still spotting 5 weeks after abortion", 0, [22, 30]], ["brown spotting 5 weeks after abortion", 0, [22, 30]], ["light spotting 5 weeks after abortion", 0, [22, 30]], ["spotting 5 weeks after surgical abortion", 0, [22, 30]], ["still bleeding 5 weeks after abortion", 0, [22, 30]]], {"i": "spotting 5 weeks after abortion", "q": "I8oCa6vYnaFW5LQpY4Q1l52odhI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["spotting 5 weeks after abortion", "bleeding 5 weeks after abortion", "bleeding 5 weeks after abortion pill", "bleeding 5 weeks after abortion reddit", "spotting 5 weeks after medical abortion", "still spotting 5 weeks after abortion", "brown spotting 5 weeks after abortion", "light spotting 5 weeks after abortion", "spotting 5 weeks after surgical abortion", "still bleeding 5 weeks after abortion"], "self_loops": [0], "tags": {"i": "spotting 5 weeks after abortion", "q": "I8oCa6vYnaFW5LQpY4Q1l52odhI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "bleeding 5 weeks after misoprostol", "datetime": "2026-03-12 19:57:59.254290", "source": "google", "data": ["bleeding 5 weeks after misoprostol", [["bleeding 5 weeks after misoprostol", 0, [512]], ["bleeding 5 weeks after abortion", 0, [22, 30]], ["bleeding 5 weeks after abortion pill", 0, [22, 30]], ["bleeding 5 weeks after abortion reddit", 0, [22, 30]], ["spotting 5 weeks after abortion", 0, [22, 30]], ["still bleeding 5 weeks after abortion", 0, [22, 30]], ["bleeding 5 weeks after medical abortion", 0, [22, 30]], ["heavy bleeding 5 weeks after abortion", 0, [22, 30]], ["still bleeding 5 weeks after abortion pill", 0, [22, 30]], ["light bleeding 5 weeks after abortion", 0, [22, 30]]], {"i": "bleeding 5 weeks after misoprostol", "q": "JkVNOTHGd2qMDeo6x_pQiAEmubg", "t": {"bpc": false, "tlw": false}}], "suggests": ["bleeding 5 weeks after misoprostol", "bleeding 5 weeks after abortion", "bleeding 5 weeks after abortion pill", "bleeding 5 weeks after abortion reddit", "spotting 5 weeks after abortion", "still bleeding 5 weeks after abortion", "bleeding 5 weeks after medical abortion", "heavy bleeding 5 weeks after abortion", "still bleeding 5 weeks after abortion pill", "light bleeding 5 weeks after abortion"], "self_loops": [0], "tags": {"i": "bleeding 5 weeks after misoprostol", "q": "JkVNOTHGd2qMDeo6x_pQiAEmubg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "bleeding 5 days after abortion", "datetime": "2026-03-12 19:58:00.513843", "source": "google", "data": ["bleeding 5 days after abortion", [["bleeding 5 days after abortion", 0, [512]], ["bleeding 5 days after abortion pill", 0, [512]], ["spotting 5 days after abortion", 0, [22, 30]], ["heavy bleeding 5 days after abortion", 0, [22, 30]], ["bleeding 5 days after surgical abortion", 0, [22, 30]], ["heavy bleeding 5 days after abortion pill", 0, [22, 30]], ["still bleeding 5 days after abortion", 0, [22, 30]], ["bleeding 5 days after medical abortion", 0, [22, 30]], ["stopped bleeding 5 days after abortion", 0, [22, 30]], ["still bleeding 5 days after abortion pill", 0, [22, 30]]], {"i": "bleeding 5 days after abortion", "q": "Gvg8X1ddYCjk4DHfDxPZIaW002U", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["bleeding 5 days after abortion", "bleeding 5 days after abortion pill", "spotting 5 days after abortion", "heavy bleeding 5 days after abortion", "bleeding 5 days after surgical abortion", "heavy bleeding 5 days after abortion pill", "still bleeding 5 days after abortion", "bleeding 5 days after medical abortion", "stopped bleeding 5 days after abortion", "still bleeding 5 days after abortion pill"], "self_loops": [0], "tags": {"i": "bleeding 5 days after abortion", "q": "Gvg8X1ddYCjk4DHfDxPZIaW002U", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "bleeding 5 days after misoprostol", "datetime": "2026-03-12 19:58:01.357294", "source": "google", "data": ["bleeding 5 days after misoprostol", [["bleeding 5 days after misoprostol", 0, [512]], ["bleeding 5 days after abortion", 0, [22, 30]], ["bleeding 5 days after abortion pill", 0, [22, 30]], ["heavy bleeding 5 days after misoprostol", 0, [22, 30]], ["still bleeding 5 days after misoprostol", 0, [22, 30]], ["spotting 5 days after abortion", 0, [22, 30]], ["blood clots 5 days after misoprostol", 0, [22, 30]], ["heavy bleeding 5 days after abortion", 0, [22, 30]], ["bleeding 5 days after surgical abortion", 0, [22, 30]], ["heavy bleeding 5 days after abortion pill", 0, [22, 30]]], {"i": "bleeding 5 days after misoprostol", "q": "retnkTg2iFU1EwSg7m8evgG2a54", "t": {"bpc": false, "tlw": false}}], "suggests": ["bleeding 5 days after misoprostol", "bleeding 5 days after abortion", "bleeding 5 days after abortion pill", "heavy bleeding 5 days after misoprostol", "still bleeding 5 days after misoprostol", "spotting 5 days after abortion", "blood clots 5 days after misoprostol", "heavy bleeding 5 days after abortion", "bleeding 5 days after surgical abortion", "heavy bleeding 5 days after abortion pill"], "self_loops": [0], "tags": {"i": "bleeding 5 days after misoprostol", "q": "retnkTg2iFU1EwSg7m8evgG2a54", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "bleeding 5 days after morning after pill", "datetime": "2026-03-12 19:58:02.218105", "source": "google", "data": ["bleeding 5 days after morning after pill", [["bleeding 5 days after morning after pill", 0, [512]], ["spotting 5 days after morning after pill", 0, [22, 30]], ["light bleeding 5 days after morning after pill", 0, [22, 30]], ["heavy bleeding 5 days after morning after pill", 0, [22, 30]], ["brown blood 5 days after morning after pill", 0, [22, 30]], ["why am i bleeding 5 days after morning after pill", 0, [22, 30]], ["bleeding 1 week after morning after pill", 0, [22, 30]], ["bleeding 2 weeks after morning after pill", 0, [22, 30]], ["bleeding 5 days after plan b pill", 0, [22, 30]], ["is it normal to bleed 5 days after morning after pill", 0, [22, 30]]], {"i": "bleeding 5 days after morning after pill", "q": "Qxu87WQkTFXCkgcahesCQLN-wwk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["bleeding 5 days after morning after pill", "spotting 5 days after morning after pill", "light bleeding 5 days after morning after pill", "heavy bleeding 5 days after morning after pill", "brown blood 5 days after morning after pill", "why am i bleeding 5 days after morning after pill", "bleeding 1 week after morning after pill", "bleeding 2 weeks after morning after pill", "bleeding 5 days after plan b pill", "is it normal to bleed 5 days after morning after pill"], "self_loops": [0], "tags": {"i": "bleeding 5 days after morning after pill", "q": "Qxu87WQkTFXCkgcahesCQLN-wwk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spotting 5 days after morning after pill", "datetime": "2026-03-12 19:58:03.212307", "source": "google", "data": ["spotting 5 days after morning after pill", [["spotting 5 days after morning after pill", 0, [512]], ["bleeding 5 days after morning after pill", 0, [22, 30]], ["light bleeding 5 days after morning after pill", 0, [22, 30]], ["heavy bleeding 5 days after morning after pill", 0, [22, 30]], ["brown discharge 5 days after morning after pill", 0, [22, 30]], ["spotting 2 weeks after morning after pill", 0, [22, 30]], ["spotting 1 week after morning after pill", 0, [22, 30]], ["why am i bleeding 5 days after morning after pill", 0, [22, 30]], ["spotting 5 days after plan b pill", 0, [22, 30]], ["bleeding 1 week after morning after pill", 0, [22, 30]]], {"i": "spotting 5 days after morning after pill", "q": "T-ZZZRDXJ076N7edHMqqqJNjouI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["spotting 5 days after morning after pill", "bleeding 5 days after morning after pill", "light bleeding 5 days after morning after pill", "heavy bleeding 5 days after morning after pill", "brown discharge 5 days after morning after pill", "spotting 2 weeks after morning after pill", "spotting 1 week after morning after pill", "why am i bleeding 5 days after morning after pill", "spotting 5 days after plan b pill", "bleeding 1 week after morning after pill"], "self_loops": [0], "tags": {"i": "spotting 5 days after morning after pill", "q": "T-ZZZRDXJ076N7edHMqqqJNjouI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "heavy bleeding 5 days after abortion pill", "datetime": "2026-03-12 19:58:04.286852", "source": "google", "data": ["heavy bleeding 5 days after abortion pill", [["heavy bleeding 5 days after abortion pill", 0, [512]], ["heavy bleeding 5 days after morning after pill", 0, [22, 30]], ["heavy bleeding 1 week after abortion pill", 0, [22, 30]], ["heavy bleeding 1 week after morning after pill", 0, [22, 30]], ["bleeding heavy 4 days after abortion", 0, [512, 390, 650]], ["is it normal to bleed 5 days after abortion", 0, [512, 390, 650]], ["heavy bleeding 5 days after misoprostol", 0, [512, 546]], ["heavy bleeding days after abortion pill", 0, [512, 546]], ["heavy bleeding after pill abortion", 0, [546, 649]]], {"i": "heavy bleeding 5 days after abortion pill", "q": "-lz9FWT6TXmN637puF3ph9-Q7Xo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["heavy bleeding 5 days after abortion pill", "heavy bleeding 5 days after morning after pill", "heavy bleeding 1 week after abortion pill", "heavy bleeding 1 week after morning after pill", "bleeding heavy 4 days after abortion", "is it normal to bleed 5 days after abortion", "heavy bleeding 5 days after misoprostol", "heavy bleeding days after abortion pill", "heavy bleeding after pill abortion"], "self_loops": [0], "tags": {"i": "heavy bleeding 5 days after abortion pill", "q": "-lz9FWT6TXmN637puF3ph9-Q7Xo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "still bleeding 5 days after abortion pill", "datetime": "2026-03-12 19:58:05.098364", "source": "google", "data": ["still bleeding 5 days after abortion pill", [["still bleeding 5 days after abortion pill", 0, [512]], ["bleeding 5 days after abortion pill", 0, [22, 30]], ["bleeding 5 days after morning after pill", 0, [22, 30]], ["heavy bleeding 5 days after abortion pill", 0, [22, 30]], ["spotting 5 days after morning after pill", 0, [22, 30]], ["light bleeding 5 days after morning after pill", 0, [22, 30]], ["heavy bleeding 5 days after morning after pill", 0, [22, 30]], ["is it normal to bleed 5 days after abortion", 0, [512, 390, 650]], ["is it normal to stop bleeding 5 days after an abortion", 0, [512, 390, 650]], ["is it normal to bleed for 6 days after abortion", 0, [512, 390, 650]]], {"i": "still bleeding 5 days after abortion pill", "q": "QkjRVoNzqUfDPYKATC065JivPxk", "t": {"bpc": false, "tlw": false}}], "suggests": ["still bleeding 5 days after abortion pill", "bleeding 5 days after abortion pill", "bleeding 5 days after morning after pill", "heavy bleeding 5 days after abortion pill", "spotting 5 days after morning after pill", "light bleeding 5 days after morning after pill", "heavy bleeding 5 days after morning after pill", "is it normal to bleed 5 days after abortion", "is it normal to stop bleeding 5 days after an abortion", "is it normal to bleed for 6 days after abortion"], "self_loops": [0], "tags": {"i": "still bleeding 5 days after abortion pill", "q": "QkjRVoNzqUfDPYKATC065JivPxk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "light bleeding 5 days after morning after pill", "datetime": "2026-03-12 19:58:06.458271", "source": "google", "data": ["light bleeding 5 days after morning after pill", [["light bleeding 5 days after morning after pill", 0, [512]], ["light bleeding 2 weeks after morning after pill", 0, [22, 30]], ["light bleeding 1 week after taking morning after pill", 0, [22, 30]], ["light bleeding a week after morning after pill", 0, [512, 390, 650]], ["light bleeding after morning after pill", 0, [512, 390, 650]], ["is it normal to bleed 5 days after morning after pill", 0, [512, 390, 650]], ["light bleeding 5 days after taking plan b", 0, [512, 546]], ["light bleeding 5 days after plan b", 0, [512, 546]], ["light period 5 days after plan b", 0, [751]], ["light bleeding 4 days after plan b", 0, [546, 649]]], {"i": "light bleeding 5 days after morning after pill", "q": "sstgZRsCkYtvU4AKJD5kCRvdS-4", "t": {"bpc": false, "tlw": false}}], "suggests": ["light bleeding 5 days after morning after pill", "light bleeding 2 weeks after morning after pill", "light bleeding 1 week after taking morning after pill", "light bleeding a week after morning after pill", "light bleeding after morning after pill", "is it normal to bleed 5 days after morning after pill", "light bleeding 5 days after taking plan b", "light bleeding 5 days after plan b", "light period 5 days after plan b", "light bleeding 4 days after plan b"], "self_loops": [0], "tags": {"i": "light bleeding 5 days after morning after pill", "q": "sstgZRsCkYtvU4AKJD5kCRvdS-4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "heavy bleeding 5 days after morning after pill", "datetime": "2026-03-12 19:58:07.409092", "source": "google", "data": ["heavy bleeding 5 days after morning after pill", [["heavy bleeding 5 days after morning after pill", 0, [512]], ["heavy bleeding 1 week after morning after pill", 0, [22, 30]], ["heavy bleeding 2 weeks after morning after pill", 0, [22, 30]], ["is it normal to bleed 5 days after morning after pill", 0, [512, 390, 650]], ["heavy bleeding 4 days after morning after pill", 0, [512, 390, 650]], ["can the morning after pill make you bleed 5 days later", 0, [512, 390, 650]], ["heavy bleeding 5 days after taking plan b", 0, [512, 546]], ["heavy bleeding 5 days after plan b", 0, [512, 546]], ["heavy period 5 days after plan b", 0, [546, 649]], ["heavy bleeding 5 days after abortion pill", 0, [512, 546]]], {"i": "heavy bleeding 5 days after morning after pill", "q": "gVUWa5XwQwJ8HWie2DKvAelY1tE", "t": {"bpc": false, "tlw": false}}], "suggests": ["heavy bleeding 5 days after morning after pill", "heavy bleeding 1 week after morning after pill", "heavy bleeding 2 weeks after morning after pill", "is it normal to bleed 5 days after morning after pill", "heavy bleeding 4 days after morning after pill", "can the morning after pill make you bleed 5 days later", "heavy bleeding 5 days after taking plan b", "heavy bleeding 5 days after plan b", "heavy period 5 days after plan b", "heavy bleeding 5 days after abortion pill"], "self_loops": [0], "tags": {"i": "heavy bleeding 5 days after morning after pill", "q": "gVUWa5XwQwJ8HWie2DKvAelY1tE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "brown blood 5 days after morning after pill", "datetime": "2026-03-12 19:58:08.259445", "source": "google", "data": ["brown blood 5 days after morning after pill", [["brown blood 5 days after morning after pill", 0, [22, 30]], ["brown discharge 2 weeks after morning after pill", 0, [22, 30]], ["brown discharge 1 week after morning after pill", 0, [22, 30]], ["can the morning after pill cause spotting a week later", 0, [512, 390, 650]], ["light bleeding 5 days after morning after pill", 0, [512, 390, 650]], ["brown blood 5 days after plan b", 0, [512, 546]], ["brown bleeding 5 days after plan b", 0, [546, 649]], ["brown spotting 5 days after plan b", 0, [512, 546]], ["brown discharge 5 days after taking plan b", 0, [512, 546]]], {"i": "brown blood 5 days after morning after pill", "q": "ZCUJjF7tMHNuB1kBlwWCHGMnDDk", "t": {"bpc": false, "tlw": false}}], "suggests": ["brown blood 5 days after morning after pill", "brown discharge 2 weeks after morning after pill", "brown discharge 1 week after morning after pill", "can the morning after pill cause spotting a week later", "light bleeding 5 days after morning after pill", "brown blood 5 days after plan b", "brown bleeding 5 days after plan b", "brown spotting 5 days after plan b", "brown discharge 5 days after taking plan b"], "self_loops": [0], "tags": {"i": "brown blood 5 days after morning after pill", "q": "ZCUJjF7tMHNuB1kBlwWCHGMnDDk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "why am i bleeding 5 days after morning after pill", "datetime": "2026-03-12 19:58:09.176253", "source": "google", "data": ["why am i bleeding 5 days after morning after pill", [["why am i bleeding 5 days after morning after pill", 0, [512]], ["why am i still bleeding 2 weeks after morning after pill", 0, [22, 30]], ["is it normal to bleed 5 days after morning after pill", 0, [512, 390, 650]], ["light bleeding 5 days after morning after pill", 0, [512, 390, 650]], ["can the morning after pill cause spotting a week later", 0, [512, 390, 650]], ["can the morning after pill make you bleed 5 days later", 0, [512, 390, 650]], ["why am i bleeding 5 days after taking a plan b", 0, [512, 546]], ["why am i bleeding five days after taking plan b", 0, [546, 649]], ["why am i spotting 5 days after plan b", 0, [546, 649]]], {"i": "why am i bleeding 5 days after morning after pill", "q": "gI7MLc8I3KVsrOCv0M-COi6LilY", "t": {"bpc": false, "tlw": false}}], "suggests": ["why am i bleeding 5 days after morning after pill", "why am i still bleeding 2 weeks after morning after pill", "is it normal to bleed 5 days after morning after pill", "light bleeding 5 days after morning after pill", "can the morning after pill cause spotting a week later", "can the morning after pill make you bleed 5 days later", "why am i bleeding 5 days after taking a plan b", "why am i bleeding five days after taking plan b", "why am i spotting 5 days after plan b"], "self_loops": [0], "tags": {"i": "why am i bleeding 5 days after morning after pill", "q": "gI7MLc8I3KVsrOCv0M-COi6LilY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is it normal to stop bleeding 5 days after abortion pill", "datetime": "2026-03-12 19:58:10.504527", "source": "google", "data": ["is it normal to stop bleeding 5 days after abortion pill", [["is it normal to stop bleeding 5 days after abortion pill", 0, [512]], ["is it normal to stop bleeding 5 days after an abortion", 0, [512, 390, 650]], ["is it normal to bleed 5 days after abortion", 0, [512, 390, 650]], ["is it normal to bleed for 6 days after abortion", 0, [512, 390, 650]], ["stopped bleeding a week after abortion", 0, [512, 390, 650]], ["is it normal to stop bleeding after abortion", 0, [512, 390, 650]], ["is it normal to bleed 5 weeks after abortion", 0, [512, 546]], ["is it normal to stop bleeding after abortion pill", 0, [512, 546]], ["is it normal to stop bleeding 5 days after miscarriage", 0, [512, 546]], ["is it normal to stop bleeding day after abortion", 0, [512, 546]]], {"i": "is it normal to stop bleeding 5 days after abortion pill", "q": "wRRDa_4F9l9nPbHGSczniwprxTo", "t": {"bpc": false, "tlw": false}}], "suggests": ["is it normal to stop bleeding 5 days after abortion pill", "is it normal to stop bleeding 5 days after an abortion", "is it normal to bleed 5 days after abortion", "is it normal to bleed for 6 days after abortion", "stopped bleeding a week after abortion", "is it normal to stop bleeding after abortion", "is it normal to bleed 5 weeks after abortion", "is it normal to stop bleeding after abortion pill", "is it normal to stop bleeding 5 days after miscarriage", "is it normal to stop bleeding day after abortion"], "self_loops": [0], "tags": {"i": "is it normal to stop bleeding 5 days after abortion pill", "q": "wRRDa_4F9l9nPbHGSczniwprxTo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition in obstetrics", "datetime": "2026-03-12 19:58:11.654583", "source": "google", "data": ["abortion definition in obstetrics", [["abortion definition in obstetrics", 0, [512]], ["abortion definition in obstetrics ppt", 0, [22, 30]], ["abortion definition in gynaecology", 0, [22, 30]], ["abortion definition in pregnancy", 0, [22, 30]], ["types of abortion in obstetrics", 0, [512, 390, 650]], ["define abortion in obg", 0, [512, 390, 650]], ["abortion definition acog", 0, [512, 546]], ["definition obstetrics and gynecology", 0, [751]]], {"i": "abortion definition in obstetrics", "q": "eeTKBakRvwxYwWGu4EJIKAgEbVs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion definition in obstetrics", "abortion definition in obstetrics ppt", "abortion definition in gynaecology", "abortion definition in pregnancy", "types of abortion in obstetrics", "define abortion in obg", "abortion definition acog", "definition obstetrics and gynecology"], "self_loops": [0], "tags": {"i": "abortion definition in obstetrics", "q": "eeTKBakRvwxYwWGu4EJIKAgEbVs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in telugu", "datetime": "2026-03-12 19:58:13.040263", "source": "google", "data": ["abortion meaning in telugu", [["abortion meaning in telugu", 0, [512]], ["abortion meaning in telugu wikipedia", 0, [512]], ["missed abortion meaning in telugu pregnancy", 0, [22, 30]], ["missed abortion meaning in telugu wikipedia", 0, [22, 30]], ["user abort meaning in telugu", 0, [22, 30]], ["abortion definition in telugu", 0, [22, 455, 30]], ["threatened abortion meaning in telugu", 0, [22, 455, 30]], ["induced abortion meaning in telugu", 0, [22, 455, 30]], ["missed abortion meaning in telugu", 0, [22, 455, 30]], ["spontaneous abortion meaning in telugu", 0, [22, 455, 30]]], {"i": "abortion meaning in telugu", "q": "V48YmF9FpLrireX_wNIWibAFqAw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion meaning in telugu", "abortion meaning in telugu wikipedia", "missed abortion meaning in telugu pregnancy", "missed abortion meaning in telugu wikipedia", "user abort meaning in telugu", "abortion definition in telugu", "threatened abortion meaning in telugu", "induced abortion meaning in telugu", "missed abortion meaning in telugu", "spontaneous abortion meaning in telugu"], "self_loops": [0], "tags": {"i": "abortion meaning in telugu", "q": "V48YmF9FpLrireX_wNIWibAFqAw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in sinhala", "datetime": "2026-03-12 19:58:13.910226", "source": "google", "data": ["abortion meaning in sinhala", [["abortion meaning in sinhala", 0, [512]], ["termination meaning in sinhala", 0, [512, 390, 650]], ["abortion meaning in farsi", 0, [546, 649]], ["abortion translate sinhala", 0, [751]], ["meaning of abort in english", 0, [512, 546]], ["abortion meaning in hebrew", 0, [512, 546]]], {"i": "abortion meaning in sinhala", "q": "Y9Wy15Noi_hJR7sVqYh0Yq1XMOI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion meaning in sinhala", "termination meaning in sinhala", "abortion meaning in farsi", "abortion translate sinhala", "meaning of abort in english", "abortion meaning in hebrew"], "self_loops": [0], "tags": {"i": "abortion meaning in sinhala", "q": "Y9Wy15Noi_hJR7sVqYh0Yq1XMOI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion matra kannada", "datetime": "2026-03-12 19:58:15.179629", "source": "google", "data": ["abortion matra kannada", [["abortion matra kannada pdf", 33, [160], {"a": "abortion matra ", "b": "kannada pdf"}], ["abortion matra kannada movie", 33, [160], {"a": "abortion matra ", "b": "kannada movie"}], ["abortion matra kannada meaning", 33, [160], {"a": "abortion matra ", "b": "kannada meaning"}], ["abortion matra kannada book", 33, [160], {"a": "abortion matra ", "b": "kannada book"}], ["abortion matra kannada pdf download", 33, [160], {"a": "abortion matra ", "b": "kannada pdf download"}], ["abortion matra kannada", 33, [671], {"a": "abortion matra ", "b": "kannada"}]], {"i": "abortion matra kannada", "q": "CoeqNPfHg1aB1hJgCdNUcC0-8G8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion matra kannada pdf", "abortion matra kannada movie", "abortion matra kannada meaning", "abortion matra kannada book", "abortion matra kannada pdf download", "abortion matra kannada"], "self_loops": [5], "tags": {"i": "abortion matra kannada", "q": "CoeqNPfHg1aB1hJgCdNUcC0-8G8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion meaning in marathi pregnancy", "datetime": "2026-03-12 19:58:16.536206", "source": "google", "data": ["missed abortion meaning in marathi pregnancy", [["missed abortion meaning in marathi pregnancy", 0, [512]], ["miscarriage meaning in marathi pregnancy", 0, [22, 30]], ["what does missed abortion mean in pregnancy", 0, [512, 390, 650]], ["how late in pregnancy can you get an abortion in canada", 0, [512, 390, 650]], ["explain missed abortion", 0, [512, 390, 650]], ["meaning of missed abortion in pregnancy", 0, [512, 390, 650]], ["missed abortion", 0, [512, 546]], ["missed abortion medical definition", 0, [512, 546]], ["missed abortion marathi meaning", 0, [751]], ["missed abortion experience", 0, [751]]], {"i": "missed abortion meaning in marathi pregnancy", "q": "6vZXQTuw4--fmOx93IdbNdYAh94", "t": {"bpc": false, "tlw": false}}], "suggests": ["missed abortion meaning in marathi pregnancy", "miscarriage meaning in marathi pregnancy", "what does missed abortion mean in pregnancy", "how late in pregnancy can you get an abortion in canada", "explain missed abortion", "meaning of missed abortion in pregnancy", "missed abortion", "missed abortion medical definition", "missed abortion marathi meaning", "missed abortion experience"], "self_loops": [0], "tags": {"i": "missed abortion meaning in marathi pregnancy", "q": "6vZXQTuw4--fmOx93IdbNdYAh94", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in marathi", "datetime": "2026-03-12 19:58:17.478315", "source": "google", "data": ["abortion meaning in marathi", [["abortion meaning in marathi", 0, [512]], ["abortion meaning in marathi pregnancy", 0, [512]], ["abortion meaning in marathi wikipedia", 0, [22, 455, 30]], ["abort meaning in marathi with example", 0, [22, 30]], ["missed abortion meaning in marathi pregnancy", 0, [22, 30]], ["threatened abortion meaning in marathi ppt", 0, [22, 30]], ["complete abortion meaning in marathi", 0, [22, 30]], ["mission abort meaning in marathi", 0, [22, 30]], ["abort transaction meaning in marathi", 0, [22, 30]], ["user abort meaning in marathi", 0, [22, 30]]], {"i": "abortion meaning in marathi", "q": "HLaZ7h_xxht06z6uOHeIa0vuxSA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion meaning in marathi", "abortion meaning in marathi pregnancy", "abortion meaning in marathi wikipedia", "abort meaning in marathi with example", "missed abortion meaning in marathi pregnancy", "threatened abortion meaning in marathi ppt", "complete abortion meaning in marathi", "mission abort meaning in marathi", "abort transaction meaning in marathi", "user abort meaning in marathi"], "self_loops": [0], "tags": {"i": "abortion meaning in marathi", "q": "HLaZ7h_xxht06z6uOHeIa0vuxSA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition in india", "datetime": "2026-03-12 19:58:18.534235", "source": "google", "data": ["abortion definition in india", [["abortion definition in india", 0, [512]], ["legal abortion definition in india", 0, [22, 30]], ["incarcerated abortion meaning in india", 0, [22, 30]], ["why is abortion legal in india", 0, [512, 390, 650]], ["indiana definition of abortion", 0, [751]], ["abortion in indiana law", 0, [751]]], {"i": "abortion definition in india", "q": "ZlqAcb-16wYg312Pl8QHC1v0EDs", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion definition in india", "legal abortion definition in india", "incarcerated abortion meaning in india", "why is abortion legal in india", "indiana definition of abortion", "abortion in indiana law"], "self_loops": [0], "tags": {"i": "abortion definition in india", "q": "ZlqAcb-16wYg312Pl8QHC1v0EDs", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "meaning of abortion in pregnancy", "datetime": "2026-03-12 19:58:19.546794", "source": "google", "data": ["meaning of abortion in pregnancy", [["meaning of abortion in pregnancy", 0, [512]], ["meaning of miscarriage in pregnancy", 0, [22, 30]], ["meaning of missed abortion in pregnancy", 0, [22, 30]], ["definition of spontaneous abortion in pregnancy", 0, [22, 30]], ["what is threatened abortion in pregnancy", 0, [512, 390, 650]], ["does abortion affect pregnancy", 0, [512, 390, 650]], ["what is abortion and miscarriage", 0, [512, 390, 650]], ["meaning of abortion in a dream", 0, [512, 546]], ["meaning of having an abortion in a dream", 0, [512, 546]], ["meaning of pregnancy in dreams", 0, [512, 546]]], {"i": "meaning of abortion in pregnancy", "q": "YkIYxM9QOq-TTn-7TvS8U4Bcr-4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["meaning of abortion in pregnancy", "meaning of miscarriage in pregnancy", "meaning of missed abortion in pregnancy", "definition of spontaneous abortion in pregnancy", "what is threatened abortion in pregnancy", "does abortion affect pregnancy", "what is abortion and miscarriage", "meaning of abortion in a dream", "meaning of having an abortion in a dream", "meaning of pregnancy in dreams"], "self_loops": [0], "tags": {"i": "meaning of abortion in pregnancy", "q": "YkIYxM9QOq-TTn-7TvS8U4Bcr-4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in marathi translation", "datetime": "2026-03-12 19:58:20.747998", "source": "google", "data": ["abortion meaning in marathi translation", [["abortion meaning in marathi translation in english", 33, [160], {"a": "abortion meaning in marathi ", "b": "translation in english"}], ["abortion meaning in marathi translation pdf", 33, [160], {"a": "abortion meaning in marathi ", "b": "translation pdf"}], ["abortion meaning in marathi translation in marathi", 33, [160], {"a": "abortion meaning in marathi ", "b": "translation in marathi"}], ["abortion meaning in marathi translation", 33, [299], {"a": "abortion meaning in marathi ", "b": "translation"}], ["abortion meaning in marathi translate vietnamese", 33, [671], {"a": "abortion meaning in marathi ", "b": "translate vietnamese"}]], {"i": "abortion meaning in marathi translation", "q": "yQCQaJ0xPRck25Upmgisv7mpQhA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in marathi translation in english", "abortion meaning in marathi translation pdf", "abortion meaning in marathi translation in marathi", "abortion meaning in marathi translation", "abortion meaning in marathi translate vietnamese"], "self_loops": [3], "tags": {"i": "abortion meaning in marathi translation", "q": "yQCQaJ0xPRck25Upmgisv7mpQhA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in marathi translation", "datetime": "2026-03-12 19:58:22.157219", "source": "google", "data": ["abortion in marathi translation", [["abortion in marathi translation", 0, [22, 30]], ["abortion meaning in marathi", 0, [512, 390, 650]], ["abortion meaning in tamil", 0, [512, 390, 650]], ["baby abortion meaning in tamil", 0, [512, 390, 650]], ["meaning of abort in english", 0, [512, 390, 650]], ["abortion in matamoros", 0, [751]], ["abortion in mexicali", 0, [751]], ["abortion meaning in marathi translation", 0, [751]]], {"i": "abortion in marathi translation", "q": "chhV1TON6l4Y34vX-xwjiKKwXZk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in marathi translation", "abortion meaning in marathi", "abortion meaning in tamil", "baby abortion meaning in tamil", "meaning of abort in english", "abortion in matamoros", "abortion in mexicali", "abortion meaning in marathi translation"], "self_loops": [0], "tags": {"i": "abortion in marathi translation", "q": "chhV1TON6l4Y34vX-xwjiKKwXZk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what are signs of a complete abortion", "datetime": "2026-03-12 19:58:23.259117", "source": "google", "data": ["what are signs of a complete abortion", [["what are signs of a complete abortion", 0, [512]], ["what are signs of a incomplete abortion", 0, [22, 30]], ["what are the symptoms of a complete abortion", 0, [22, 30]], ["what are the warning signs of a spontaneous abortion", 0, [22, 30]], ["what are the symptoms of a spontaneous abortion", 0, [22, 30]], ["what are the signs of spontaneous abortion", 0, [22, 30]], ["what are signs of incomplete medical abortion", 0, [22, 30]], ["what are signs of a failed abortion", 0, [22, 30]], ["what are signs of a successful abortion", 0, [22, 30]], ["what are signs of a missed abortion", 0, [22, 30]]], {"i": "what are signs of a complete abortion", "q": "q-FqSKd5SL1hJ34MSjuckhsSftk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what are signs of a complete abortion", "what are signs of a incomplete abortion", "what are the symptoms of a complete abortion", "what are the warning signs of a spontaneous abortion", "what are the symptoms of a spontaneous abortion", "what are the signs of spontaneous abortion", "what are signs of incomplete medical abortion", "what are signs of a failed abortion", "what are signs of a successful abortion", "what are signs of a missed abortion"], "self_loops": [0], "tags": {"i": "what are signs of a complete abortion", "q": "q-FqSKd5SL1hJ34MSjuckhsSftk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "complete abortion laws", "datetime": "2026-03-12 19:58:24.175060", "source": "google", "data": ["complete abortion laws", [["complete abortion laws by state", 33, [160], {"a": "complete abortion ", "b": "laws by state"}], ["complete abortion laws in california", 33, [160], {"a": "complete abortion ", "b": "laws in california"}], ["complete abortion laws in the us", 33, [160], {"a": "complete abortion ", "b": "laws in the us"}], ["complete abortion laws 2018", 33, [299], {"a": "complete abortion ", "b": "laws 2018"}], ["complete abortion laws palo alto", 33, [402], {"a": "complete abortion ", "b": "laws palo alto"}], ["complete abortion laws san francisco", 33, [402], {"a": "complete abortion ", "b": "laws san francisco"}], ["complete abortion laws san jose", 33, [402], {"a": "complete abortion ", "b": "laws san jose"}], ["complete abortion laws bay area", 33, [402], {"a": "complete abortion ", "b": "laws bay area"}], ["complete abortion laws menlo park", 33, [402], {"a": "complete abortion ", "b": "laws menlo park"}], ["complete abortion laws redwood city", 33, [402], {"a": "complete abortion ", "b": "laws redwood city"}]], {"i": "complete abortion laws", "q": "mSmnFA5DvKN8yhjZFJf7D86zrlE", "t": {"bpc": false, "tlw": false}}], "suggests": ["complete abortion laws by state", "complete abortion laws in california", "complete abortion laws in the us", "complete abortion laws 2018", "complete abortion laws palo alto", "complete abortion laws san francisco", "complete abortion laws san jose", "complete abortion laws bay area", "complete abortion laws menlo park", "complete abortion laws redwood city"], "self_loops": [], "tags": {"i": "complete abortion laws", "q": "mSmnFA5DvKN8yhjZFJf7D86zrlE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "complete abortion wikem", "datetime": "2026-03-12 19:58:25.670900", "source": "google", "data": ["complete abortion wikem", [["complete abortion wikem", 33, [671], {"a": "complete abortion ", "b": "wikem"}]], {"i": "complete abortion wikem", "q": "Hw0Hmk9jfJsaMS-8jE8a40XIa_U", "t": {"bpc": false, "tlw": false}}], "suggests": ["complete abortion wikem"], "self_loops": [0], "tags": {"i": "complete abortion wikem", "q": "Hw0Hmk9jfJsaMS-8jE8a40XIa_U", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does induced mean in pregnancy", "datetime": "2026-03-12 19:58:26.784198", "source": "google", "data": ["what does induced mean in pregnancy", [["what does induced mean in pregnancy", 0, [512]], ["what is induced mean in pregnancy", 0, [22, 30]], ["what does getting induced mean in pregnancy", 0, [22, 30]], ["what does induce labor mean in pregnancy", 0, [22, 30]], ["what does induce labour mean in pregnancy", 0, [22, 30]], ["what does induced mean in terms of pregnancy", 0, [22, 30]], ["what does getting induced mean when pregnant", 0, [22, 30]], ["what happens when a pregnant lady is induced", 0, [512, 390, 650]], ["why is a pregnant woman induced", 0, [512, 390, 650]], ["what happens when a pregnant woman is induced", 0, [512, 390, 650]]], {"i": "what does induced mean in pregnancy", "q": "cOVmWxL2C54BHSS-_lfdu4RFHXw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what does induced mean in pregnancy", "what is induced mean in pregnancy", "what does getting induced mean in pregnancy", "what does induce labor mean in pregnancy", "what does induce labour mean in pregnancy", "what does induced mean in terms of pregnancy", "what does getting induced mean when pregnant", "what happens when a pregnant lady is induced", "why is a pregnant woman induced", "what happens when a pregnant woman is induced"], "self_loops": [0], "tags": {"i": "what does induced mean in pregnancy", "q": "cOVmWxL2C54BHSS-_lfdu4RFHXw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what happens when a pregnant lady is induced", "datetime": "2026-03-12 19:58:28.023580", "source": "google", "data": ["what happens when a pregnant lady is induced", [["what happens when a pregnant lady is induced", 0, [512]], ["what happens after a pregnant woman is induced", 0, [22, 30]], ["what happens when pregnancy is induced", 0, [512, 390, 650]], ["why is a pregnant woman induced", 0, [512, 390, 650]], ["what is the effect of inducing a pregnant woman", 0, [512, 390, 650]], ["what happens when a pregnant woman gets induced", 0, [512, 546]], ["what happens when a woman is induced", 0, [512, 546]]], {"i": "what happens when a pregnant lady is induced", "q": "vaRnPkYKetnhibUFGxb7SggBRg4", "t": {"bpc": false, "tlw": false}}], "suggests": ["what happens when a pregnant lady is induced", "what happens after a pregnant woman is induced", "what happens when pregnancy is induced", "why is a pregnant woman induced", "what is the effect of inducing a pregnant woman", "what happens when a pregnant woman gets induced", "what happens when a woman is induced"], "self_loops": [0], "tags": {"i": "what happens when a pregnant lady is induced", "q": "vaRnPkYKetnhibUFGxb7SggBRg4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "incomplete abortion meaning in pregnancy", "datetime": "2026-03-12 19:58:28.866756", "source": "google", "data": ["incomplete abortion meaning in pregnancy", [["incomplete abortion meaning in pregnancy", 0, [22, 30]], ["missed abortion meaning in pregnancy", 0, [22, 30]], ["spontaneous abortion meaning in pregnancy", 0, [22, 30]], ["missed abortion meaning in telugu pregnancy", 0, [22, 30]], ["missed abortion meaning in marathi pregnancy", 0, [22, 30]], ["incomplete abortion meaning tagalog pregnancy", 0, [22, 30]], ["missed abortion means in pregnancy in hindi", 0, [22, 30]], ["can incomplete abortion lead to pregnancy", 0, [512, 390, 650]], ["does incomplete abortion means you are still pregnant", 0, [512, 390, 650]], ["incomplete abortion in ultrasound", 0, [512, 546]]], {"i": "incomplete abortion meaning in pregnancy", "q": "VWtppf_Ff6Bl6a1kNFBj71uOlhk", "t": {"bpc": false, "tlw": false}}], "suggests": ["incomplete abortion meaning in pregnancy", "missed abortion meaning in pregnancy", "spontaneous abortion meaning in pregnancy", "missed abortion meaning in telugu pregnancy", "missed abortion meaning in marathi pregnancy", "incomplete abortion meaning tagalog pregnancy", "missed abortion means in pregnancy in hindi", "can incomplete abortion lead to pregnancy", "does incomplete abortion means you are still pregnant", "incomplete abortion in ultrasound"], "self_loops": [0], "tags": {"i": "incomplete abortion meaning in pregnancy", "q": "VWtppf_Ff6Bl6a1kNFBj71uOlhk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion meaning in telugu pregnancy", "datetime": "2026-03-12 19:58:30.167296", "source": "google", "data": ["missed abortion meaning in telugu pregnancy", [["missed abortion meaning in telugu pregnancy", 0, [512]], ["miscarriage meaning in telugu pregnancy", 0, [22, 30]], ["what does missed abortion mean in pregnancy", 0, [512, 390, 650]], ["missed abortion meaning in telugu", 0, [512, 390, 650]], ["what does it mean by missed abortion", 0, [512, 390, 650]], ["why is it called missed abortion", 0, [512, 390, 650]], ["missed abortion terminology", 0, [751]], ["pregnancy missing telugu", 0, [751]]], {"i": "missed abortion meaning in telugu pregnancy", "q": "orDNoAAU8EpJjRzSrhTggxpp_m8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["missed abortion meaning in telugu pregnancy", "miscarriage meaning in telugu pregnancy", "what does missed abortion mean in pregnancy", "missed abortion meaning in telugu", "what does it mean by missed abortion", "why is it called missed abortion", "missed abortion terminology", "pregnancy missing telugu"], "self_loops": [0], "tags": {"i": "missed abortion meaning in telugu pregnancy", "q": "orDNoAAU8EpJjRzSrhTggxpp_m8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion means in pregnancy in hindi", "datetime": "2026-03-12 19:58:31.581043", "source": "google", "data": ["missed abortion means in pregnancy in hindi", [["missed abortion means in pregnancy in hindi", 0, [22, 30]], ["what does missed abortion mean in pregnancy", 0, [512, 390, 650]], ["explain missed abortion", 0, [512, 390, 650]], ["what is mean by missed abortion", 0, [512, 390, 650]], ["difference between miscarriage and abortion in hindi", 0, [512, 390, 650]], ["missed abortion medical definition", 0, [512, 546]], ["missed abortion medical term", 0, [512, 546]], ["missed abortion medical abbreviation", 0, [751]], ["what does missed abortion mean in medicine", 0, [512, 546]]], {"i": "missed abortion means in pregnancy in hindi", "q": "OTP5fNbPE9RVOw-HhGv0Q39H_5o", "t": {"bpc": false, "tlw": false}}], "suggests": ["missed abortion means in pregnancy in hindi", "what does missed abortion mean in pregnancy", "explain missed abortion", "what is mean by missed abortion", "difference between miscarriage and abortion in hindi", "missed abortion medical definition", "missed abortion medical term", "missed abortion medical abbreviation", "what does missed abortion mean in medicine"], "self_loops": [0], "tags": {"i": "missed abortion means in pregnancy in hindi", "q": "OTP5fNbPE9RVOw-HhGv0Q39H_5o", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does missed ab mean in pregnancy", "datetime": "2026-03-12 19:58:32.431226", "source": "google", "data": ["what does missed ab mean in pregnancy", [["what does missed ab mean in pregnancy", 0, [22, 30]], ["what does missed abortion mean in pregnancy", 0, [22, 30]], ["what does missed abortion mean in usg pregnancy report", 0, [22, 30]], ["what is a missed ab in pregnancy", 0, [512, 390, 650]], ["what does ab mean in pregnancy", 0, [512, 390, 650]], ["what is a missed pregnancy", 0, [512, 390, 650]], ["what does missed ab mean", 0, [512, 546]], ["what does missed abortion mean", 0, [512, 546]], ["what does missed abortion mean in medicine", 0, [512, 546]]], {"i": "what does missed ab mean in pregnancy", "q": "3I3F7XUmq5znI1KqyvA-YH52EGo", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does missed ab mean in pregnancy", "what does missed abortion mean in pregnancy", "what does missed abortion mean in usg pregnancy report", "what is a missed ab in pregnancy", "what does ab mean in pregnancy", "what is a missed pregnancy", "what does missed ab mean", "what does missed abortion mean", "what does missed abortion mean in medicine"], "self_loops": [0], "tags": {"i": "what does missed ab mean in pregnancy", "q": "3I3F7XUmq5znI1KqyvA-YH52EGo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "incomplete abortion meaning tagalog pregnancy", "datetime": "2026-03-12 19:58:33.281445", "source": "google", "data": ["incomplete abortion meaning tagalog pregnancy", [["incomplete abortion meaning tagalog pregnancy", 0, [22, 30]], ["can incomplete abortion lead to pregnancy", 0, [512, 390, 650]], ["incomplete abortion in ultrasound", 0, [512, 546]], ["incomplete abortion definition", 0, [512, 546]], ["incomplete abortion procedure", 0, [512, 546]], ["incomplete abortion miscarriage", 0, [546, 649]], ["incomplete abortion signs", 0, [512, 546]]], {"i": "incomplete abortion meaning tagalog pregnancy", "q": "GvWGaoAPAJ1TzJlvaHuGVPyJdcU", "t": {"bpc": false, "tlw": false}}], "suggests": ["incomplete abortion meaning tagalog pregnancy", "can incomplete abortion lead to pregnancy", "incomplete abortion in ultrasound", "incomplete abortion definition", "incomplete abortion procedure", "incomplete abortion miscarriage", "incomplete abortion signs"], "self_loops": [0], "tags": {"i": "incomplete abortion meaning tagalog pregnancy", "q": "GvWGaoAPAJ1TzJlvaHuGVPyJdcU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does missed abortion mean in pregnancy", "datetime": "2026-03-12 19:58:34.367717", "source": "google", "data": ["what does missed abortion mean in pregnancy", [["what does missed abortion mean in pregnancy", 0, [512]], ["what does missed ab mean in pregnancy", 0, [22, 30]], ["what does missed abortion mean in usg pregnancy report", 0, [22, 30]], ["what does miscarriage mean in pregnancy", 0, [22, 30]], ["what causes missed abortion in early pregnancy", 0, [512, 390, 650]], ["what does it mean by missed abortion", 0, [512, 390, 650]], ["what does missed abortion mean in medicine", 0, [512, 546]], ["what does a missed abortion look like", 0, [546, 649]], ["what is a missed ab in pregnancy", 0, [512, 546]]], {"i": "what does missed abortion mean in pregnancy", "q": "blqnmtYIOCndgaV1LKlJITcbWt8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what does missed abortion mean in pregnancy", "what does missed ab mean in pregnancy", "what does missed abortion mean in usg pregnancy report", "what does miscarriage mean in pregnancy", "what causes missed abortion in early pregnancy", "what does it mean by missed abortion", "what does missed abortion mean in medicine", "what does a missed abortion look like", "what is a missed ab in pregnancy"], "self_loops": [0], "tags": {"i": "what does missed abortion mean in pregnancy", "q": "blqnmtYIOCndgaV1LKlJITcbWt8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what causes missed abortion in early pregnancy", "datetime": "2026-03-12 19:58:35.210788", "source": "google", "data": ["what causes missed abortion in early pregnancy", [["what causes missed abortion in early pregnancy", 0, [512]], ["what can cause missed miscarriage in early pregnancy", 0, [22, 30]], ["what causes miscarriage in early pregnancy", 0, [22, 30]], ["what causes miscarriage in early pregnancy reddit", 0, [22, 30]], ["what causes sudden miscarriage in early pregnancy", 0, [22, 30]], ["what causes threatened miscarriage in early pregnancy", 0, [22, 30]], ["what causes miscarriage in first trimester of pregnancy", 0, [22, 30]], ["what can cause miscarriage in early pregnancy stress", 0, [22, 30]], ["what can cause miscarriage in early pregnancy medicine", 0, [22, 30]]], {"i": "what causes missed abortion in early pregnancy", "q": "7dfLJWsTtBnx9P2osAi1KjMOcWI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what causes missed abortion in early pregnancy", "what can cause missed miscarriage in early pregnancy", "what causes miscarriage in early pregnancy", "what causes miscarriage in early pregnancy reddit", "what causes sudden miscarriage in early pregnancy", "what causes threatened miscarriage in early pregnancy", "what causes miscarriage in first trimester of pregnancy", "what can cause miscarriage in early pregnancy stress", "what can cause miscarriage in early pregnancy medicine"], "self_loops": [0], "tags": {"i": "what causes missed abortion in early pregnancy", "q": "7dfLJWsTtBnx9P2osAi1KjMOcWI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion meaning tagalog pregnancy", "datetime": "2026-03-12 19:58:36.305640", "source": "google", "data": ["threatened abortion meaning tagalog pregnancy", [["threatened abortion meaning tagalog pregnancy", 0, [22, 30]], ["what is threatened abortion in pregnancy", 0, [512, 390, 650]], ["what is a threatened pregnancy", 0, [512, 390, 650]], ["what do you mean by threatened abortion", 0, [512, 390, 650]], ["what is a threatened miscarriage", 0, [512, 390, 650]], ["threatened abortion in early pregnancy", 0, [512, 546]], ["threatened abortion in first trimester", 0, [512, 546]], ["threatened abortion medical term", 0, [512, 546]], ["threatened abortion treatment", 0, [512, 546]], ["threatened abortion definition", 0, [512, 546]]], {"i": "threatened abortion meaning tagalog pregnancy", "q": "Q3HOFKybm6yeGp1mMyb5M5BjJTU", "t": {"bpc": false, "tlw": false}}], "suggests": ["threatened abortion meaning tagalog pregnancy", "what is threatened abortion in pregnancy", "what is a threatened pregnancy", "what do you mean by threatened abortion", "what is a threatened miscarriage", "threatened abortion in early pregnancy", "threatened abortion in first trimester", "threatened abortion medical term", "threatened abortion treatment", "threatened abortion definition"], "self_loops": [0], "tags": {"i": "threatened abortion meaning tagalog pregnancy", "q": "Q3HOFKybm6yeGp1mMyb5M5BjJTU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is a threatened miscarriage", "datetime": "2026-03-12 19:58:37.358893", "source": "google", "data": ["what is a threatened miscarriage", [["what is a threatened miscarriage", 0, [512]], ["what is a threatened miscarriage mean", 0, [512]], ["what is a threatened miscarriage reddit", 0, [512]], ["what is a threatened miscarriage at 5 weeks", 0, [512]], ["what is a threatened miscarriage nhs", 0, [22, 30]], ["what is a threatened miscarriage at 6 weeks", 0, [22, 30]], ["what is a threatened miscarriage at 7 weeks", 0, [22, 30]], ["what is a threatened miscarriage diagnosis", 0, [22, 30]], ["what is a threatened miscarriage symptoms", 0, [22, 30]], ["what is a inevitable miscarriage", 0, [22, 30]]], {"i": "what is a threatened miscarriage", "q": "B1KgUxOhiyQSKPO4F1DAw3Uozy4", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is a threatened miscarriage", "what is a threatened miscarriage mean", "what is a threatened miscarriage reddit", "what is a threatened miscarriage at 5 weeks", "what is a threatened miscarriage nhs", "what is a threatened miscarriage at 6 weeks", "what is a threatened miscarriage at 7 weeks", "what is a threatened miscarriage diagnosis", "what is a threatened miscarriage symptoms", "what is a inevitable miscarriage"], "self_loops": [0], "tags": {"i": "what is a threatened miscarriage", "q": "B1KgUxOhiyQSKPO4F1DAw3Uozy4", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is a threatened pregnancy", "datetime": "2026-03-12 19:58:38.722252", "source": "google", "data": ["what is a threatened pregnancy", [["what is a threatened pregnancy", 0, [512]], ["what is a life threatening pregnancy", 0, [22, 30]], ["what causes a threatened pregnancy", 0, [22, 30]], ["what is endangered pregnancy", 0, [22, 30]], ["what is considered a threatened miscarriage", 0, [512, 390, 650]], ["what is a threatened miscarriage", 0, [512, 390, 650]], ["whats a threatened miscarriage", 0, [512, 390, 650]], ["what is threatened abortion in pregnancy", 0, [512, 546]], ["what is a threatened abortion", 0, [512, 546]]], {"i": "what is a threatened pregnancy", "q": "QFz8roeDs3DWNk3WwM0ZU7SKdns", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is a threatened pregnancy", "what is a life threatening pregnancy", "what causes a threatened pregnancy", "what is endangered pregnancy", "what is considered a threatened miscarriage", "what is a threatened miscarriage", "whats a threatened miscarriage", "what is threatened abortion in pregnancy", "what is a threatened abortion"], "self_loops": [0], "tags": {"i": "what is a threatened pregnancy", "q": "QFz8roeDs3DWNk3WwM0ZU7SKdns", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "whats a threatened miscarriage", "datetime": "2026-03-12 19:58:39.996631", "source": "google", "data": ["whats a threatened miscarriage", [["whats a threatened miscarriage", 0, [512]], ["what causes a threatened miscarriage", 0, [22, 30]], ["what does a threatened miscarriage look like", 0, [22, 30]], ["what is a threatened miscarriage mean", 0, [22, 30]], ["what is a threatened miscarriage reddit", 0, [22, 30]], ["what does a threatened miscarriage feel like", 0, [22, 30]], ["what is a threatened miscarriage nhs", 0, [22, 30]], ["what does a threatened miscarriage", 0, [22, 30]], ["what is a threatened miscarriage at 5 weeks", 0, [22, 30]], ["what is a threatened miscarriage like", 0, [22, 30]]], {"i": "whats a threatened miscarriage", "q": "YDG-7H5AiKcu69A063PxRrdSigQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["whats a threatened miscarriage", "what causes a threatened miscarriage", "what does a threatened miscarriage look like", "what is a threatened miscarriage mean", "what is a threatened miscarriage reddit", "what does a threatened miscarriage feel like", "what is a threatened miscarriage nhs", "what does a threatened miscarriage", "what is a threatened miscarriage at 5 weeks", "what is a threatened miscarriage like"], "self_loops": [0], "tags": {"i": "whats a threatened miscarriage", "q": "YDG-7H5AiKcu69A063PxRrdSigQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion in early pregnancy", "datetime": "2026-03-12 19:58:41.006406", "source": "google", "data": ["threatened abortion in early pregnancy", [["threatened abortion in early pregnancy", 0, [512]], ["threatened miscarriage in early pregnancy", 0, [22, 30]], ["threatened miscarriage in early pregnancy meaning", 0, [22, 30]], ["treatment of threatened abortion in early pregnancy", 0, [22, 30]], ["what does threatened abortion in early pregnancy mean", 0, [22, 30]], ["signs of threatened abortion in early pregnancy", 0, [22, 30]], ["causes of threatened abortion in early pregnancy", 0, [22, 30]], ["threatened miscarriage in early pregnancy symptoms", 0, [22, 30]], ["threatened abortion vs early pregnancy loss", 0, [22, 30]], ["threatened abortion bleeding during pregnancy", 0, [22, 30]]], {"i": "threatened abortion in early pregnancy", "q": "pZA9dWOjBC4SYJi2z4VrvTk_qNk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["threatened abortion in early pregnancy", "threatened miscarriage in early pregnancy", "threatened miscarriage in early pregnancy meaning", "treatment of threatened abortion in early pregnancy", "what does threatened abortion in early pregnancy mean", "signs of threatened abortion in early pregnancy", "causes of threatened abortion in early pregnancy", "threatened miscarriage in early pregnancy symptoms", "threatened abortion vs early pregnancy loss", "threatened abortion bleeding during pregnancy"], "self_loops": [0], "tags": {"i": "threatened abortion in early pregnancy", "q": "pZA9dWOjBC4SYJi2z4VrvTk_qNk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion in first trimester", "datetime": "2026-03-12 19:58:42.381375", "source": "google", "data": ["threatened abortion in first trimester", [["threatened abortion in first trimester", 0, [512]], ["threatened abortion in first trimester icd", 0, [22, 30]], ["management of threatened abortion in first trimester", 0, [22, 30]], ["threatened abortion miscarriage in her first trimester icd 10", 0, [22, 30]], ["management of inevitable abortion in first trimester", 0, [22, 30]], ["what is threatened abortion in pregnancy", 0, [512, 390, 650]], ["what to do if you have a threatened miscarriage", 0, [512, 390, 650]], ["how common is a threatened miscarriage", 0, [512, 390, 650]], ["threatened abortion in early pregnancy", 0, [512, 546]], ["threatened miscarriage in first trimester", 0, [546, 649]]], {"i": "threatened abortion in first trimester", "q": "fPjhk0fxdM9EoDNQ24nVuuZbeN8", "t": {"bpc": false, "tlw": false}}], "suggests": ["threatened abortion in first trimester", "threatened abortion in first trimester icd", "management of threatened abortion in first trimester", "threatened abortion miscarriage in her first trimester icd 10", "management of inevitable abortion in first trimester", "what is threatened abortion in pregnancy", "what to do if you have a threatened miscarriage", "how common is a threatened miscarriage", "threatened abortion in early pregnancy", "threatened miscarriage in first trimester"], "self_loops": [0], "tags": {"i": "threatened abortion in first trimester", "q": "fPjhk0fxdM9EoDNQ24nVuuZbeN8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is spontaneous abortion the same as miscarriage", "datetime": "2026-03-12 19:58:43.266026", "source": "google", "data": ["is spontaneous abortion the same as miscarriage", [["is spontaneous abortion the same as miscarriage", 0, [512]], ["why is a miscarriage called a spontaneous abortion", 0, [512, 390, 650]], ["is spontaneous abortion a miscarriage", 0, [512, 546]], ["is a miscarriage and a spontaneous abortion the same thing", 0, [751]]], {"i": "is spontaneous abortion the same as miscarriage", "q": "rj8qfVAOag-6SepWQjQu8Xlm7Zw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is spontaneous abortion the same as miscarriage", "why is a miscarriage called a spontaneous abortion", "is spontaneous abortion a miscarriage", "is a miscarriage and a spontaneous abortion the same thing"], "self_loops": [0], "tags": {"i": "is spontaneous abortion the same as miscarriage", "q": "rj8qfVAOag-6SepWQjQu8Xlm7Zw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion vs induced abortion", "datetime": "2026-03-12 19:58:44.103192", "source": "google", "data": ["spontaneous abortion vs induced abortion", [["spontaneous abortion vs induced abortion", 0, [512]], ["spontaneous abortion and induced abortion", 0, [22, 30]], ["spontaneous abortion and induced abortion difference", 0, [22, 30]], ["spontaneous abortion and induced abortion similarities", 0, [22, 30]], ["abortion vs spontaneous abortion", 0, [512, 390, 650]], ["induced abortion vs missed abortion", 0, [512, 390, 650]], ["spontaneous vs induced abortion", 0, [512, 546]]], {"i": "spontaneous abortion vs induced abortion", "q": "92ww8Aw9GZAgpZAJVBUwlko3LEg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["spontaneous abortion vs induced abortion", "spontaneous abortion and induced abortion", "spontaneous abortion and induced abortion difference", "spontaneous abortion and induced abortion similarities", "abortion vs spontaneous abortion", "induced abortion vs missed abortion", "spontaneous vs induced abortion"], "self_loops": [0], "tags": {"i": "spontaneous abortion vs induced abortion", "q": "92ww8Aw9GZAgpZAJVBUwlko3LEg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion or miscarriage definition", "datetime": "2026-03-12 19:58:45.193331", "source": "google", "data": ["spontaneous abortion or miscarriage definition", [["spontaneous abortion or miscarriage definition", 0, [22, 30]], ["is spontaneous abortion the same as miscarriage", 0, [512, 390, 650]], ["why is a miscarriage called a spontaneous abortion", 0, [512, 390, 650]], ["spontaneous abortion vs miscarriage", 0, [512, 390, 650]], ["spontaneous abortion vs abortion", 0, [512, 546]]], {"i": "spontaneous abortion or miscarriage definition", "q": "8j3O_kvv4cd6nc80AZoVaGslYlw", "t": {"bpc": false, "tlw": false}}], "suggests": ["spontaneous abortion or miscarriage definition", "is spontaneous abortion the same as miscarriage", "why is a miscarriage called a spontaneous abortion", "spontaneous abortion vs miscarriage", "spontaneous abortion vs abortion"], "self_loops": [0], "tags": {"i": "spontaneous abortion or miscarriage definition", "q": "8j3O_kvv4cd6nc80AZoVaGslYlw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "definition of abortion in ethiopia", "datetime": "2026-03-12 19:58:46.370711", "source": "google", "data": ["definition of abortion in ethiopia", [["definition of abortion in ethiopia", 0, [512]], ["abortion laws in ethiopia", 0, [751]], ["definition of abortion in indiana", 0, [751]], ["definition of ethiopia", 0, [512, 546]]], {"i": "definition of abortion in ethiopia", "q": "aDGXF0pNyRMuT0Kp3EZ10mVHiHo", "t": {"bpc": false, "tlw": false}}], "suggests": ["definition of abortion in ethiopia", "abortion laws in ethiopia", "definition of abortion in indiana", "definition of ethiopia"], "self_loops": [0], "tags": {"i": "definition of abortion in ethiopia", "q": "aDGXF0pNyRMuT0Kp3EZ10mVHiHo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is sepsis when pregnant", "datetime": "2026-03-12 19:58:47.748344", "source": "google", "data": ["what is sepsis when pregnant", [["what is sepsis when pregnant", 0, [512]], ["what causes sepsis when pregnant", 0, [22, 30]], ["is sepsis dangerous in pregnancy", 0, [512, 390, 650]], ["can you get sepsis while pregnant", 0, [512, 390, 650]], ["what happens if you get sepsis while pregnant", 0, [512, 390, 650]], ["can sepsis affect pregnancy", 0, [512, 390, 650]], ["what causes sepsis in a pregnant woman", 0, [546, 649]], ["what is sepsis pregnancy", 0, [512, 546]]], {"i": "what is sepsis when pregnant", "q": "L6hl5o0V3FQnMHFCP_94_HPCgc8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is sepsis when pregnant", "what causes sepsis when pregnant", "is sepsis dangerous in pregnancy", "can you get sepsis while pregnant", "what happens if you get sepsis while pregnant", "can sepsis affect pregnancy", "what causes sepsis in a pregnant woman", "what is sepsis pregnancy"], "self_loops": [0], "tags": {"i": "what is sepsis when pregnant", "q": "L6hl5o0V3FQnMHFCP_94_HPCgc8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic pregnancy abortion", "datetime": "2026-03-12 19:58:48.644281", "source": "google", "data": ["septic pregnancy abortion", [["septic pregnancy abortion", 0, [22, 30]], ["sepsis pregnancy abortion", 0, [22, 30]], ["septic pregnancy miscarriage", 0, [22, 30]], ["types of septic abortion", 0, [512, 390, 650]], ["sepsis after abortion", 0, [512, 390, 650]], ["what is septic abortion", 0, [512, 390, 650]], ["most common cause of septic abortion", 0, [512, 390, 650]], ["septic pregnancies", 0, [751]], ["septic pregnancy definition", 0, [751]], ["septic abortion acog", 0, [512, 546]]], {"i": "septic pregnancy abortion", "q": "XMdI9JZC_jwfIs5zLiO8dSii5v8", "t": {"bpc": false, "tlw": false}}], "suggests": ["septic pregnancy abortion", "sepsis pregnancy abortion", "septic pregnancy miscarriage", "types of septic abortion", "sepsis after abortion", "what is septic abortion", "most common cause of septic abortion", "septic pregnancies", "septic pregnancy definition", "septic abortion acog"], "self_loops": [0], "tags": {"i": "septic pregnancy abortion", "q": "XMdI9JZC_jwfIs5zLiO8dSii5v8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic abortion ultrasound", "datetime": "2026-03-12 19:58:49.836051", "source": "google", "data": ["septic abortion ultrasound", [["septic abortion ultrasound", 0, [512]], ["septic abortion ultrasound findings", 0, [512]], ["septic abortion ultrasound radiopaedia", 0, [512]], ["types of abortion ultrasound", 0, [512, 390, 650]], ["septic abortion organisms", 0, [512, 390, 650]], ["types of septic abortion", 0, [512, 390, 650]], ["septic abortion criteria", 0, [512, 390, 650]], ["most common cause of septic abortion", 0, [512, 390, 650]], ["septic uterus abortion", 0, [546, 649]], ["septic abortion unit", 0, [751]]], {"i": "septic abortion ultrasound", "q": "jX6RvRPQRi1OyZZNirENVrI0f7A", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["septic abortion ultrasound", "septic abortion ultrasound findings", "septic abortion ultrasound radiopaedia", "types of abortion ultrasound", "septic abortion organisms", "types of septic abortion", "septic abortion criteria", "most common cause of septic abortion", "septic uterus abortion", "septic abortion unit"], "self_loops": [0], "tags": {"i": "septic abortion ultrasound", "q": "jX6RvRPQRi1OyZZNirENVrI0f7A", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "septic pregnancy definition", "datetime": "2026-03-12 19:58:51.248844", "source": "google", "data": ["septic pregnancy definition", [["septic pregnancy definition", 0, [22, 30]], ["sepsis pregnancy definition", 0, [22, 30]], ["septic during pregnancy", 0, [512, 390, 650]], ["what is sepsis when pregnant", 0, [512, 390, 650]], ["how does sepsis affect pregnancy", 0, [512, 390, 650]], ["what is sepsis in pregnancy", 0, [512, 390, 650]], ["septic pregnancy symptoms", 0, [512, 546]], ["septic pregnancy treatment", 0, [751]]], {"i": "septic pregnancy definition", "q": "WxsGfpGZqd4ffOU1WEaLyYsrlfc", "t": {"bpc": false, "tlw": false}}], "suggests": ["septic pregnancy definition", "sepsis pregnancy definition", "septic during pregnancy", "what is sepsis when pregnant", "how does sepsis affect pregnancy", "what is sepsis in pregnancy", "septic pregnancy symptoms", "septic pregnancy treatment"], "self_loops": [0], "tags": {"i": "septic pregnancy definition", "q": "WxsGfpGZqd4ffOU1WEaLyYsrlfc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "oxford dictionary definition of abortion", "datetime": "2026-03-12 19:58:52.049552", "source": "google", "data": ["oxford dictionary definition of abortion", [["oxford dictionary definition of abortion", 0, [512]], ["oxford english dictionary definition of abortion", 0, [22, 30]], ["abortion definition oxford", 0, [512, 390, 650]], ["what is the meaning of abortion in english", 0, [512, 390, 650]], ["oxford english dictionary definition of health", 0, [512, 390, 650]], ["oxford dictionary abortion", 0, [512, 546]]], {"i": "oxford dictionary definition of abortion", "q": "YxUMW0zPGZgSYj5Yb2ajy1bJNw4", "t": {"bpc": false, "tlw": false}}], "suggests": ["oxford dictionary definition of abortion", "oxford english dictionary definition of abortion", "abortion definition oxford", "what is the meaning of abortion in english", "oxford english dictionary definition of health", "oxford dictionary abortion"], "self_loops": [0], "tags": {"i": "oxford dictionary definition of abortion", "q": "YxUMW0zPGZgSYj5Yb2ajy1bJNw4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in english grammar", "datetime": "2026-03-12 19:58:53.204859", "source": "google", "data": ["abortion in english grammar", [["abortion meaning in english grammar", 0, [22, 30]], ["what is the meaning of abortion in english", 0, [512, 390, 650]], ["what is abortion article", 0, [512, 390, 650]], ["abortion in english grammar", 0, [751]], ["abortion grammar", 0, [751]], ["abortion in english common law", 0, [751]], ["aborto em ingles", 0, [512, 546]]], {"i": "abortion in english grammar", "q": "YMs-Km43iXB62hMVrifvO3OsxPM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in english grammar", "what is the meaning of abortion in english", "what is abortion article", "abortion in english grammar", "abortion grammar", "abortion in english common law", "aborto em ingles"], "self_loops": [3], "tags": {"i": "abortion in english grammar", "q": "YMs-Km43iXB62hMVrifvO3OsxPM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "stop meaning in english synonyms", "datetime": "2026-03-12 19:58:54.333464", "source": "google", "data": ["stop meaning in english synonyms", [["stop meaning in english synonyms", 0, [22, 30]], ["cease meaning in english synonyms", 0, [22, 30]], ["halt meaning in english synonyms", 0, [22, 30]], ["prevent meaning in english synonyms", 0, [22, 30]], ["leave meaning in english synonyms", 0, [22, 30]], ["what is another name for means", 0, [512, 390, 650]], ["close synonyms in english", 0, [512, 390, 650]], ["word meaning stop", 0, [512, 546]], ["stop meaning slang", 0, [512, 546]], ["another meaning for stop", 0, [512, 546]]], {"i": "stop meaning in english synonyms", "q": "M7qm04Lg9wqdkr9cKslk1w1kttI", "t": {"bpc": false, "tlw": false}}], "suggests": ["stop meaning in english synonyms", "cease meaning in english synonyms", "halt meaning in english synonyms", "prevent meaning in english synonyms", "leave meaning in english synonyms", "what is another name for means", "close synonyms in english", "word meaning stop", "stop meaning slang", "another meaning for stop"], "self_loops": [0], "tags": {"i": "stop meaning in english synonyms", "q": "M7qm04Lg9wqdkr9cKslk1w1kttI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "terminate meaning in english synonyms", "datetime": "2026-03-12 19:58:55.606390", "source": "google", "data": ["terminate meaning in english synonyms", [["terminate meaning in english synonyms", 0, [22, 30]], ["close meaning in english synonyms", 0, [22, 30]], ["stop meaning in english synonyms", 0, [22, 30]], ["abort meaning in english synonyms", 0, [22, 30]], ["exit meaning in english synonyms", 0, [22, 30]], ["kill meaning in english synonyms", 0, [22, 30]], ["cancel meaning in english synonyms", 0, [22, 30]], ["terminate meaning in english", 0, [512, 390, 650]], ["terminate synonyms in english", 0, [512, 390, 650]], ["terminate in other words", 0, [512, 390, 650]]], {"i": "terminate meaning in english synonyms", "q": "Hrb8-VMYs6hU04tXaoHfr5CRF0I", "t": {"bpc": false, "tlw": false}}], "suggests": ["terminate meaning in english synonyms", "close meaning in english synonyms", "stop meaning in english synonyms", "abort meaning in english synonyms", "exit meaning in english synonyms", "kill meaning in english synonyms", "cancel meaning in english synonyms", "terminate meaning in english", "terminate synonyms in english", "terminate in other words"], "self_loops": [0], "tags": {"i": "terminate meaning in english synonyms", "q": "Hrb8-VMYs6hU04tXaoHfr5CRF0I", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "termination meaning in english", "datetime": "2026-03-12 19:58:56.711493", "source": "google", "data": ["termination meaning in english", [["termination meaning in english", 0, [512]], ["termination meaning in english with example", 0, [22, 30]], ["termination meaning in english grammar", 0, [22, 30]], ["termination meaning in english oxford", 0, [22, 30]], ["termination meaning in english synonyms", 0, [22, 30]], ["terminate meaning in english hindi", 0, [22, 30]], ["cessation meaning in english", 0, [22, 30]], ["abortion meaning in english", 0, [22, 30]], ["dismissal meaning in english", 0, [22, 30]], ["cessation meaning in english with example", 0, [22, 30]]], {"i": "termination meaning in english", "q": "nXv6T-4o9mlO0KtSKU3VzJ-v7iI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["termination meaning in english", "termination meaning in english with example", "termination meaning in english grammar", "termination meaning in english oxford", "termination meaning in english synonyms", "terminate meaning in english hindi", "cessation meaning in english", "abortion meaning in english", "dismissal meaning in english", "cessation meaning in english with example"], "self_loops": [0], "tags": {"i": "termination meaning in english", "q": "nXv6T-4o9mlO0KtSKU3VzJ-v7iI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "terminated meaning synonym", "datetime": "2026-03-12 19:58:57.947760", "source": "google", "data": ["terminated meaning synonym", [["terminated meaning synonym", 0, [512]], ["stopped meaning synonyms", 0, [22, 30]], ["dismissed meaning synonyms", 0, [22, 30]], ["fired meaning synonym", 0, [22, 30]], ["terminated meaning in telugu synonyms", 0, [22, 30]], ["terminated meaning in malayalam synonyms", 0, [22, 30]], ["terminated meaning in english synonyms", 0, [22, 30]], ["what is the meaning terminated", 0, [512, 390, 650]], ["terminated synonym", 0, [512, 546]], ["terminated meaning job", 0, [512, 546]]], {"i": "terminated meaning synonym", "q": "wQCPR6AmVNcVImA1PbRENHasGig", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["terminated meaning synonym", "stopped meaning synonyms", "dismissed meaning synonyms", "fired meaning synonym", "terminated meaning in telugu synonyms", "terminated meaning in malayalam synonyms", "terminated meaning in english synonyms", "what is the meaning terminated", "terminated synonym", "terminated meaning job"], "self_loops": [0], "tags": {"i": "terminated meaning synonym", "q": "wQCPR6AmVNcVImA1PbRENHasGig", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "termination synonyms in english", "datetime": "2026-03-12 19:58:59.056571", "source": "google", "data": ["termination synonyms in english", [["termination synonyms in english", 0, [512]], ["cancellation synonyms in english", 0, [22, 30]], ["abortion synonyms in english", 0, [22, 30]], ["terminate ka synonyms in english", 0, [22, 30]], ["whats another word for termination", 0, [512, 390, 650]], ["termination synonyms and antonyms", 0, [512, 546]], ["termination synonym employment", 0, [546, 649]], ["termination synonym", 0, [512, 546]], ["terminated meaning synonyms", 0, [751]]], {"i": "termination synonyms in english", "q": "lnUzujvdZ1pm9ThdxQXA9eBbkrI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["termination synonyms in english", "cancellation synonyms in english", "abortion synonyms in english", "terminate ka synonyms in english", "whats another word for termination", "termination synonyms and antonyms", "termination synonym employment", "termination synonym", "terminated meaning synonyms"], "self_loops": [0], "tags": {"i": "termination synonyms in english", "q": "lnUzujvdZ1pm9ThdxQXA9eBbkrI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abort synonyms and antonyms", "datetime": "2026-03-12 19:59:00.020254", "source": "google", "data": ["abort synonyms and antonyms", [["abort synonyms and antonyms", 0, [512]], ["stop synonyms and antonyms", 0, [22, 30]], ["terminate synonyms and antonyms", 0, [22, 30]], ["cancel synonyms and antonyms", 0, [22, 30]], ["abort antonym", 0, [512, 390, 650]], ["abort synonyms", 0, [512, 390, 650]]], {"i": "abort synonyms and antonyms", "q": "ZxPPJi3ppTxV0UpDWsteJ_ynj9o", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abort synonyms and antonyms", "stop synonyms and antonyms", "terminate synonyms and antonyms", "cancel synonyms and antonyms", "abort antonym", "abort synonyms"], "self_loops": [0], "tags": {"i": "abort synonyms and antonyms", "q": "ZxPPJi3ppTxV0UpDWsteJ_ynj9o", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abort synonyms", "datetime": "2026-03-12 19:59:01.424318", "source": "google", "data": ["abort synonyms", [["abort synonyms", 0, [512]], ["abort synonyms in english", 0, [512]], ["abort synonyms and antonyms", 0, [512]], ["abort synonyms 2 words", 0, [22, 30]], ["abortion synonyms examples", 0, [22, 30]], ["abortion synonyms in hindi", 0, [22, 30]], ["abort meaning synonyms", 0, [22, 30]], ["mission abort synonyms", 0, [22, 30]], ["short friendship synonyms", 0, [22, 10, 30]], ["abort synonyms cancel", 0, [22, 30]]], {"i": "abort synonyms", "q": "OyZFtAdvXXuIlfCNuycNi-V6ebk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abort synonyms", "abort synonyms in english", "abort synonyms and antonyms", "abort synonyms 2 words", "abortion synonyms examples", "abortion synonyms in hindi", "abort meaning synonyms", "mission abort synonyms", "short friendship synonyms", "abort synonyms cancel"], "self_loops": [0], "tags": {"i": "abort synonyms", "q": "OyZFtAdvXXuIlfCNuycNi-V6ebk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abort definition english", "datetime": "2026-03-12 19:59:02.521997", "source": "google", "data": ["abort definition english", [["abort definition english", 0, [512]], ["abort in english", 0, [22, 30]], ["abort meaning english", 0, [22, 30]], ["stop definition english", 0, [22, 30]], ["what is abort mean", 0, [512, 390, 650]], ["abort definition meaning", 0, [512, 546]], ["abort definition verb", 0, [751]], ["abort definition noun", 0, [546, 649]], ["abort definition webster's", 0, [751]]], {"i": "abort definition english", "q": "KsIR86g4jjVWjUld9J3ri2Lj5Mk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abort definition english", "abort in english", "abort meaning english", "stop definition english", "what is abort mean", "abort definition meaning", "abort definition verb", "abort definition noun", "abort definition webster's"], "self_loops": [0], "tags": {"i": "abort definition english", "q": "KsIR86g4jjVWjUld9J3ri2Lj5Mk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abort meaning", "datetime": "2026-03-12 19:59:03.439272", "source": "google", "data": ["abort meaning", [["abort meaning", 0, [512, 433]], ["abort meaning in english", 0, [512]], ["abort meaning in hindi", 0, [512]], ["abort meaning in bengali", 0, [512]], ["abort meaning in urdu", 0, [512]], ["abort meaning in telugu", 0, [512]], ["abort meaning in tamil", 0, [512]], ["abort meaning in marathi", 0, [512]], ["abort meaning in kannada", 0, [512]], ["abort meaning in malayalam", 0, [512]]], {"q": "P786cyDQkqauDRb7Z0f05TSMZpw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abort meaning", "abort meaning in english", "abort meaning in hindi", "abort meaning in bengali", "abort meaning in urdu", "abort meaning in telugu", "abort meaning in tamil", "abort meaning in marathi", "abort meaning in kannada", "abort meaning in malayalam"], "self_loops": [0], "tags": {"q": "P786cyDQkqauDRb7Z0f05TSMZpw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion in hindi meaning in english", "datetime": "2026-03-12 19:59:04.339050", "source": "google", "data": ["threatened abortion in hindi meaning in english", [["threatened abortion in hindi meaning in english", 0, [22, 30]], ["what is the meaning of abortion in english", 0, [512, 390, 650]], ["what do you mean by threatened abortion", 0, [512, 390, 650]], ["threatened abortion meaning in tamil", 0, [512, 390, 650]], ["apa itu threatened abortion", 0, [512, 390, 650]], ["threatened abortion medical term", 0, [512, 546]], ["threatened abortion definition", 0, [512, 546]], ["threatened abortion in early pregnancy", 0, [512, 546]], ["threatened abortion vs inevitable abortion", 0, [512, 546]], ["threatened abortion bangla", 0, [512, 546]]], {"i": "threatened abortion in hindi meaning in english", "q": "mNaaL-D0oUa2xofhJ60Na13eKHw", "t": {"bpc": false, "tlw": false}}], "suggests": ["threatened abortion in hindi meaning in english", "what is the meaning of abortion in english", "what do you mean by threatened abortion", "threatened abortion meaning in tamil", "apa itu threatened abortion", "threatened abortion medical term", "threatened abortion definition", "threatened abortion in early pregnancy", "threatened abortion vs inevitable abortion", "threatened abortion bangla"], "self_loops": [0], "tags": {"i": "threatened abortion in hindi meaning in english", "q": "mNaaL-D0oUa2xofhJ60Na13eKHw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion meaning in tamil", "datetime": "2026-03-12 19:59:05.717834", "source": "google", "data": ["threatened abortion meaning in tamil", [["threatened abortion meaning in tamil", 0, [512]], ["threatened abortion meaning in tamil examples", 0, [512]], ["miscarriage threatened abortion meaning in tamil", 0, [22, 30]], ["inevitable abortion meaning in tamil", 0, [22, 455, 30]], ["what do you mean by threatened abortion", 0, [512, 390, 650]], ["what is threatened abortion", 0, [512, 390, 650]], ["what is threatened abortion in pregnancy", 0, [512, 390, 650]], ["threatened abortion bangla", 0, [512, 546]], ["threatened abortion definition", 0, [512, 546]], ["threatened abortion medical term", 0, [512, 546]]], {"i": "threatened abortion meaning in tamil", "q": "N5nPBaaZUc5RaqSEtjUlBGLKUf0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["threatened abortion meaning in tamil", "threatened abortion meaning in tamil examples", "miscarriage threatened abortion meaning in tamil", "inevitable abortion meaning in tamil", "what do you mean by threatened abortion", "what is threatened abortion", "what is threatened abortion in pregnancy", "threatened abortion bangla", "threatened abortion definition", "threatened abortion medical term"], "self_loops": [0], "tags": {"i": "threatened abortion meaning in tamil", "q": "N5nPBaaZUc5RaqSEtjUlBGLKUf0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatening abortion meaning", "datetime": "2026-03-12 19:59:06.576172", "source": "google", "data": ["threatening abortion meaning", [["threatening abortion meaning", 0, [512]], ["threatening abortion meaning in hindi", 0, [22, 30]], ["threatened abortion meaning in english", 0, [22, 30]], ["threatened abortion meaning in tagalog", 0, [22, 30]], ["threatened abortion meaning in marathi ppt", 0, [22, 30]], ["threatened abortion meaning in urdu pdf", 0, [22, 30]], ["threatened abortion meaning in pregnancy", 0, [22, 30]], ["threatened abortion meaning tagalog pregnancy", 0, [22, 30]], ["threatened abortion meaning in gujarati wikipedia", 0, [22, 30]], ["threatened abortion meaning in kannada pdf", 0, [22, 30]]], {"i": "threatening abortion meaning", "q": "dE1OA79JB_EgAhld2wQgClAFWZk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["threatening abortion meaning", "threatening abortion meaning in hindi", "threatened abortion meaning in english", "threatened abortion meaning in tagalog", "threatened abortion meaning in marathi ppt", "threatened abortion meaning in urdu pdf", "threatened abortion meaning in pregnancy", "threatened abortion meaning tagalog pregnancy", "threatened abortion meaning in gujarati wikipedia", "threatened abortion meaning in kannada pdf"], "self_loops": [0], "tags": {"i": "threatening abortion meaning", "q": "dE1OA79JB_EgAhld2wQgClAFWZk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion terminology", "datetime": "2026-03-12 19:59:07.980959", "source": "google", "data": ["spontaneous abortion terminology", [["spontaneous abortion terminology", 0, [22, 30]], ["spontaneous abortion definition", 0, [22, 30]], ["spontaneous abortion definition in hindi", 0, [22, 30]], ["spontaneous abortion definition according to who", 0, [22, 30]], ["spontaneous abortion definition acog", 0, [22, 30]], ["spontaneous abortion definition ppt", 0, [22, 30]], ["spontaneous abortion definition in obg", 0, [22, 30]], ["spontaneous abortion definition simple", 0, [22, 30]], ["spontaneous abortion medical terminology", 0, [22, 30]], ["what is a spontaneous abortion mean", 0, [512, 390, 650]]], {"i": "spontaneous abortion terminology", "q": "iyAfem2S6zcJXKlFwvnzhmX65Ho", "t": {"bpc": false, "tlw": false}}], "suggests": ["spontaneous abortion terminology", "spontaneous abortion definition", "spontaneous abortion definition in hindi", "spontaneous abortion definition according to who", "spontaneous abortion definition acog", "spontaneous abortion definition ppt", "spontaneous abortion definition in obg", "spontaneous abortion definition simple", "spontaneous abortion medical terminology", "what is a spontaneous abortion mean"], "self_loops": [0], "tags": {"i": "spontaneous abortion terminology", "q": "iyAfem2S6zcJXKlFwvnzhmX65Ho", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "induced abortion meaning", "datetime": "2026-03-12 19:59:09.349774", "source": "google", "data": ["induced abortion meaning", [["induced abortion meaning", 0, [512]], ["induced abortion meaning in hindi", 0, [512]], ["induced abortion meaning in telugu", 0, [512]], ["induced abortion meaning in bengali", 0, [512]], ["induced abortion meaning in marathi", 0, [512]], ["induced abortion meaning in tamil", 0, [512]], ["induced abortion meaning in english", 0, [512]], ["induced abortion meaning in urdu", 0, [512]], ["induced abortion meaning in malayalam", 0, [512]], ["induced abortion meaning in kannada", 0, [512]]], {"q": "_6QK3op6yBJ0OSZOqXh3WivyGSI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["induced abortion meaning", "induced abortion meaning in hindi", "induced abortion meaning in telugu", "induced abortion meaning in bengali", "induced abortion meaning in marathi", "induced abortion meaning in tamil", "induced abortion meaning in english", "induced abortion meaning in urdu", "induced abortion meaning in malayalam", "induced abortion meaning in kannada"], "self_loops": [0], "tags": {"q": "_6QK3op6yBJ0OSZOqXh3WivyGSI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "induced abortion meaning in urdu", "datetime": "2026-03-12 19:59:10.555519", "source": "google", "data": ["induced abortion meaning in urdu", [["induced abortion meaning in urdu", 0, [512]], ["spontaneous abortion meaning in urdu", 0, [22, 455, 30]], ["induced abortion meaning in english", 0, [512, 390, 650]], ["induced abortion meaning", 0, [512, 390, 650]], ["what is the meaning of abortion in english", 0, [512, 390, 650]], ["abortion definition in india", 0, [512, 390, 650]], ["induced abortion medical definition", 0, [512, 546]], ["induced abortion definition dictionary", 0, [546, 649]]], {"i": "induced abortion meaning in urdu", "q": "ajOLdhiYpAU_c7VNVsQnyQ_f64w", "t": {"bpc": false, "tlw": false}}], "suggests": ["induced abortion meaning in urdu", "spontaneous abortion meaning in urdu", "induced abortion meaning in english", "induced abortion meaning", "what is the meaning of abortion in english", "abortion definition in india", "induced abortion medical definition", "induced abortion definition dictionary"], "self_loops": [0], "tags": {"i": "induced abortion meaning in urdu", "q": "ajOLdhiYpAU_c7VNVsQnyQ_f64w", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "incomplete abortion meaning in english", "datetime": "2026-03-12 19:59:11.428443", "source": "google", "data": ["incomplete abortion meaning in english", [["incomplete abortion meaning in english", 0, [22, 30]], ["spontaneous abortion meaning in english", 0, [22, 30]], ["missed abortion meaning in english", 0, [22, 30]], ["inevitable abortion meaning in english", 0, [22, 30]], ["what is a incomplete abortion", 0, [512, 390, 650]], ["what does it mean to have an incomplete abortion", 0, [512, 390, 650]], ["incomplete abortion meaning in tamil", 0, [512, 390, 650]], ["incomplete abortion definition", 0, [512, 546]], ["incomplete abortion miscarriage", 0, [546, 649]], ["incomplete abortion procedure", 0, [512, 546]]], {"i": "incomplete abortion meaning in english", "q": "DTMArn1HDdQkCTxhUehTdx1s9M8", "t": {"bpc": false, "tlw": false}}], "suggests": ["incomplete abortion meaning in english", "spontaneous abortion meaning in english", "missed abortion meaning in english", "inevitable abortion meaning in english", "what is a incomplete abortion", "what does it mean to have an incomplete abortion", "incomplete abortion meaning in tamil", "incomplete abortion definition", "incomplete abortion miscarriage", "incomplete abortion procedure"], "self_loops": [0], "tags": {"i": "incomplete abortion meaning in english", "q": "DTMArn1HDdQkCTxhUehTdx1s9M8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion medical abbreviation", "datetime": "2026-03-12 19:59:12.801902", "source": "google", "data": ["missed abortion medical abbreviation", [["missed abortion medical abbreviation", 0, [22, 30]], ["missed ab medical abbreviation", 0, [22, 30]], ["spontaneous abortion medical abbreviation", 0, [22, 30]], ["what is a missed abortion in medical terms", 0, [512, 390, 650]], ["missed abortion abbreviation", 0, [512, 390, 650]], ["explain missed abortion", 0, [512, 390, 650]], ["missed abortion medical definition", 0, [512, 546]]], {"i": "missed abortion medical abbreviation", "q": "x2N9MvHNd_dn1SlU-1SoPp9tSrc", "t": {"bpc": false, "tlw": false}}], "suggests": ["missed abortion medical abbreviation", "missed ab medical abbreviation", "spontaneous abortion medical abbreviation", "what is a missed abortion in medical terms", "missed abortion abbreviation", "explain missed abortion", "missed abortion medical definition"], "self_loops": [0], "tags": {"i": "missed abortion medical abbreviation", "q": "x2N9MvHNd_dn1SlU-1SoPp9tSrc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable abortion vs threatened abortion", "datetime": "2026-03-12 19:59:13.616064", "source": "google", "data": ["inevitable abortion vs threatened abortion", [["inevitable abortion vs threatened abortion", 0, [512]], ["missed abortion vs threatened abortion", 0, [22, 30]], ["imminent abortion vs threatened abortion", 0, [22, 30]], ["incomplete abortion vs threatened abortion", 0, [22, 30]], ["inevitable abortion and threatened abortion", 0, [22, 30]], ["missed abortion and threatened abortion", 0, [22, 30]], ["missed abortion and threatened abortion is same", 0, [22, 30]], ["imminent abortion and threatened abortion", 0, [22, 30]], ["inevitable miscarriage vs threatened miscarriage", 0, [22, 30]], ["difference between inevitable abortion and threatened abortion", 0, [22, 30]]], {"i": "inevitable abortion vs threatened abortion", "q": "qKMXPMfxQHsYbci4grNbzi9TUjA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["inevitable abortion vs threatened abortion", "missed abortion vs threatened abortion", "imminent abortion vs threatened abortion", "incomplete abortion vs threatened abortion", "inevitable abortion and threatened abortion", "missed abortion and threatened abortion", "missed abortion and threatened abortion is same", "imminent abortion and threatened abortion", "inevitable miscarriage vs threatened miscarriage", "difference between inevitable abortion and threatened abortion"], "self_loops": [0], "tags": {"i": "inevitable abortion vs threatened abortion", "q": "qKMXPMfxQHsYbci4grNbzi9TUjA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is called abortion", "datetime": "2026-03-12 19:59:14.876388", "source": "google", "data": ["what is called abortion", [["what is called abortion", 0, [512]], ["what is abortion called in hindi", 0, [22, 30]], ["what is abortion called after 20 weeks", 0, [22, 30]], ["what is called missed abortion", 0, [22, 30]], ["what is called threatened abortion", 0, [22, 30]], ["what is called miscarriage", 0, [22, 30]], ["what is surgical abortion called", 0, [22, 30]], ["what is natural abortion called", 0, [22, 30]], ["what is pill abortion called", 0, [22, 30]], ["what is suction abortion called", 0, [22, 30]]], {"i": "what is called abortion", "q": "356cU7TcFEsvBgzEPXWEsY76xgo", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is called abortion", "what is abortion called in hindi", "what is abortion called after 20 weeks", "what is called missed abortion", "what is called threatened abortion", "what is called miscarriage", "what is surgical abortion called", "what is natural abortion called", "what is pill abortion called", "what is suction abortion called"], "self_loops": [0], "tags": {"i": "what is called abortion", "q": "356cU7TcFEsvBgzEPXWEsY76xgo", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "baby abortion meaning in hindi", "datetime": "2026-03-12 19:59:16.112374", "source": "google", "data": ["baby abortion meaning in hindi", [["baby abortion meaning in hindi", 0, [512]], ["pregnancy abortion meaning in hindi", 0, [22, 30]], ["baby abortion meaning in tamil", 0, [512, 390, 650]], ["unborn baby meaning in hindi", 0, [512, 390, 650]], ["abort baby meaning", 0, [512, 390, 650]]], {"i": "baby abortion meaning in hindi", "q": "1eKr9YjoNdmBEKq8da8vcS3F4hk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["baby abortion meaning in hindi", "pregnancy abortion meaning in hindi", "baby abortion meaning in tamil", "unborn baby meaning in hindi", "abort baby meaning"], "self_loops": [0], "tags": {"i": "baby abortion meaning in hindi", "q": "1eKr9YjoNdmBEKq8da8vcS3F4hk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "baby abortion meaning in english", "datetime": "2026-03-12 19:59:17.272999", "source": "google", "data": ["baby abortion meaning in english", [["baby abortion meaning in english", 0, [22, 30]], ["baby abortion meaning in tamil", 0, [512, 390, 650]], ["what is the meaning of abortion in english", 0, [512, 390, 650]], ["abortion baby meaning", 0, [512, 546]], ["pro-abortion meaning in english", 0, [546, 649]], ["abortion meaning in simple words", 0, [512, 546]]], {"i": "baby abortion meaning in english", "q": "nwVhrzWVhHuO9BdHRL0gYlZ1kZ8", "t": {"bpc": false, "tlw": false}}], "suggests": ["baby abortion meaning in english", "baby abortion meaning in tamil", "what is the meaning of abortion in english", "abortion baby meaning", "pro-abortion meaning in english", "abortion meaning in simple words"], "self_loops": [0], "tags": {"i": "baby abortion meaning in english", "q": "nwVhrzWVhHuO9BdHRL0gYlZ1kZ8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "miscarriage baby meaning", "datetime": "2026-03-12 19:59:18.530975", "source": "google", "data": ["miscarriage baby meaning", [["miscarriage baby meaning", 0, [512]], ["miscarriage baby meaning in hindi", 0, [512]], ["miscarriage baby meaning in urdu", 0, [22, 30]], ["baby miscarriage meaning in bengali", 0, [22, 30]], ["baby miscarriage meaning in english", 0, [22, 30]], ["baby miscarriage meaning in punjabi", 0, [22, 30]], ["aborted baby meaning", 0, [22, 30]], ["miscarriage pregnancy meaning", 0, [22, 30]], ["miscarriage child meaning", 0, [22, 30]], ["miscarried fetus meaning", 0, [22, 30]]], {"i": "miscarriage baby meaning", "q": "lFTSUtb6FmIEI6-kdYt4p5bbq_8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["miscarriage baby meaning", "miscarriage baby meaning in hindi", "miscarriage baby meaning in urdu", "baby miscarriage meaning in bengali", "baby miscarriage meaning in english", "baby miscarriage meaning in punjabi", "aborted baby meaning", "miscarriage pregnancy meaning", "miscarriage child meaning", "miscarried fetus meaning"], "self_loops": [0], "tags": {"i": "miscarriage baby meaning", "q": "lFTSUtb6FmIEI6-kdYt4p5bbq_8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "miscarriage baby meaning in hindi", "datetime": "2026-03-12 19:59:19.916473", "source": "google", "data": ["miscarriage baby meaning in hindi", [["miscarriage baby meaning in hindi", 0, [512]], ["baby abortion meaning in hindi", 0, [22, 30]], ["pregnancy miscarriage meaning in hindi", 0, [22, 30]], ["what is a miscarriage baby called", 0, [512, 390, 650]], ["unborn baby meaning in hindi", 0, [512, 390, 650]], ["stillborn baby meaning in hindi", 0, [512, 390, 650]], ["what is an angel baby miscarriage", 0, [512, 390, 650]], ["what does a miscarried baby look like", 0, [512, 390, 650]], ["miscarried baby meaning", 0, [512, 546]], ["miscarriage meaning in dream", 0, [512, 546]]], {"i": "miscarriage baby meaning in hindi", "q": "avEDerQdzJMNMsqfZdiR_cckSws", "t": {"bpc": false, "tlw": false}}], "suggests": ["miscarriage baby meaning in hindi", "baby abortion meaning in hindi", "pregnancy miscarriage meaning in hindi", "what is a miscarriage baby called", "unborn baby meaning in hindi", "stillborn baby meaning in hindi", "what is an angel baby miscarriage", "what does a miscarried baby look like", "miscarried baby meaning", "miscarriage meaning in dream"], "self_loops": [0], "tags": {"i": "miscarriage baby meaning in hindi", "q": "avEDerQdzJMNMsqfZdiR_cckSws", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "miscarriage baby meaning in urdu", "datetime": "2026-03-12 19:59:20.815273", "source": "google", "data": ["miscarriage baby meaning in urdu", [["miscarriage baby meaning in urdu", 0, [22, 30]], ["pregnancy miscarriage meaning in urdu", 0, [22, 30]], ["miscarriage chemical pregnancy meaning in urdu", 0, [22, 30]], ["miscarriage d&c meaning pregnancy in urdu", 0, [22, 455, 10, 30]], ["miscarried baby meaning", 0, [512, 390, 650]], ["what is a miscarriage baby called", 0, [512, 390, 650]], ["what do you call a miscarried baby", 0, [512, 390, 650]], ["does miscarriage mean the baby died", 0, [512, 390, 650]], ["miscarriage causes in early pregnancy in urdu", 0, [751]], ["miscarriage meaning in simple words", 0, [512, 546]]], {"i": "miscarriage baby meaning in urdu", "q": "UKyfWD1pfJO8jlJayEb4KFbaLT0", "t": {"bpc": false, "tlw": false}}], "suggests": ["miscarriage baby meaning in urdu", "pregnancy miscarriage meaning in urdu", "miscarriage chemical pregnancy meaning in urdu", "miscarriage d&c meaning pregnancy in urdu", "miscarried baby meaning", "what is a miscarriage baby called", "what do you call a miscarried baby", "does miscarriage mean the baby died", "miscarriage causes in early pregnancy in urdu", "miscarriage meaning in simple words"], "self_loops": [0], "tags": {"i": "miscarriage baby meaning in urdu", "q": "UKyfWD1pfJO8jlJayEb4KFbaLT0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion child meaning", "datetime": "2026-03-12 19:59:22.249991", "source": "google", "data": ["abortion child meaning", [["abortion child meaning", 0, [22, 30]], ["child abortion meaning in hindi", 0, [22, 30]], ["abortion baby meaning", 0, [22, 30]], ["miscarriage child meaning", 0, [22, 30]], ["aborted child meaning", 0, [22, 10, 30]], ["baby abortion meaning in english", 0, [22, 30]], ["child miscarriage meaning in hindi", 0, [22, 30]], ["baby abortion meaning in tamil", 0, [22, 455, 30]], ["baby abortion meaning in bengali", 0, [22, 455, 30]], ["baby abortion meaning in nepali", 0, [22, 455, 30]]], {"i": "abortion child meaning", "q": "U7aBA3swgChVOi32IhdeWE65fKE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion child meaning", "child abortion meaning in hindi", "abortion baby meaning", "miscarriage child meaning", "aborted child meaning", "baby abortion meaning in english", "child miscarriage meaning in hindi", "baby abortion meaning in tamil", "baby abortion meaning in bengali", "baby abortion meaning in nepali"], "self_loops": [0], "tags": {"i": "abortion child meaning", "q": "U7aBA3swgChVOi32IhdeWE65fKE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "aborted fetus meaning", "datetime": "2026-03-12 19:59:23.078735", "source": "google", "data": ["aborted fetus meaning", [["aborted fetus meaning", 0, [512]], ["aborted fetus meaning in hindi", 0, [512]], ["aborted fetus meaning in tamil", 0, [22, 30]], ["aborted fetus meaning in bengali", 0, [22, 30]], ["aborted fetus meaning in urdu", 0, [22, 30]], ["aborted fetus meaning in english", 0, [22, 30]], ["aborted fetus meaning in kannada", 0, [22, 30]], ["aborted fetus meaning in telugu", 0, [22, 455, 30]], ["aborted baby meaning", 0, [22, 30]], ["miscarried fetus meaning", 0, [22, 30]]], {"i": "aborted fetus meaning", "q": "ITT18bGnHVFotK8VstBfv_sm1ow", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["aborted fetus meaning", "aborted fetus meaning in hindi", "aborted fetus meaning in tamil", "aborted fetus meaning in bengali", "aborted fetus meaning in urdu", "aborted fetus meaning in english", "aborted fetus meaning in kannada", "aborted fetus meaning in telugu", "aborted baby meaning", "miscarried fetus meaning"], "self_loops": [0], "tags": {"i": "aborted fetus meaning", "q": "ITT18bGnHVFotK8VstBfv_sm1ow", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "aborted fetus meaning in hindi", "datetime": "2026-03-12 19:59:24.394720", "source": "google", "data": ["aborted fetus meaning in hindi", [["aborted fetus meaning in hindi", 0, [512]], ["baby abortion meaning in hindi", 0, [22, 30]], ["pregnancy abortion meaning in hindi", 0, [22, 30]], ["aborted fetus meaning", 0, [512, 390, 650]], ["what is an aborted fetus called", 0, [512, 390, 650]], ["aborted baby meaning", 0, [512, 546]]], {"i": "aborted fetus meaning in hindi", "q": "IpfWfKlivD-_xOUIs8XfefP8EgY", "t": {"bpc": false, "tlw": false}}], "suggests": ["aborted fetus meaning in hindi", "baby abortion meaning in hindi", "pregnancy abortion meaning in hindi", "aborted fetus meaning", "what is an aborted fetus called", "aborted baby meaning"], "self_loops": [0], "tags": {"i": "aborted fetus meaning in hindi", "q": "IpfWfKlivD-_xOUIs8XfefP8EgY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "aborted fetus meaning in tamil", "datetime": "2026-03-12 19:59:25.635147", "source": "google", "data": ["aborted fetus meaning in tamil", [["aborted fetus meaning in tamil", 0, [22, 30]], ["baby aborted meaning in tamil", 0, [22, 30]], ["aborted fetus meaning", 0, [512, 390, 650]], ["what is an aborted fetus called", 0, [512, 390, 650]], ["aborted baby meaning", 0, [512, 546]]], {"i": "aborted fetus meaning in tamil", "q": "zRO1UiuEgbqo9Owi3QOg-4D4Bbo", "t": {"bpc": false, "tlw": false}}], "suggests": ["aborted fetus meaning in tamil", "baby aborted meaning in tamil", "aborted fetus meaning", "what is an aborted fetus called", "aborted baby meaning"], "self_loops": [0], "tags": {"i": "aborted fetus meaning in tamil", "q": "zRO1UiuEgbqo9Owi3QOg-4D4Bbo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "anti abortion meaning", "datetime": "2026-03-12 19:59:26.846830", "source": "google", "data": ["anti abortion meaning", [["anti abortion meaning", 0, [512]], ["anti abortion meaning tagalog", 0, [22, 30]], ["anti abortion meaning in hindi", 0, [22, 30]], ["anti abortion meaning in english", 0, [22, 30]], ["anti abortion meaning simple", 0, [22, 30]], ["anti pro life meaning", 0, [22, 30]], ["anti choice meaning", 0, [22, 30]], ["against abortion meaning", 0, [22, 30]], ["opposed to abortion meaning", 0, [22, 30]], ["anti abortion activist meaning", 0, [22, 30]]], {"i": "anti abortion meaning", "q": "_ECcg7D1mu8X9TkDYndq5JiGm_A", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["anti abortion meaning", "anti abortion meaning tagalog", "anti abortion meaning in hindi", "anti abortion meaning in english", "anti abortion meaning simple", "anti pro life meaning", "anti choice meaning", "against abortion meaning", "opposed to abortion meaning", "anti abortion activist meaning"], "self_loops": [0], "tags": {"i": "anti abortion meaning", "q": "_ECcg7D1mu8X9TkDYndq5JiGm_A", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "anti-abortion meaning example", "datetime": "2026-03-12 19:59:28.202377", "source": "google", "data": ["anti-abortion meaning example", [["anti-abortion meaning examples", 33, [160], {"a": "anti-abortion meaning ", "b": "examples"}]], {"i": "anti-abortion meaning example", "q": "7p3dy_MGY4sxob66Kyy-cgTj8NQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["anti-abortion meaning examples"], "self_loops": [], "tags": {"i": "anti-abortion meaning example", "q": "7p3dy_MGY4sxob66Kyy-cgTj8NQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "anti abortion meaning tagalog", "datetime": "2026-03-12 19:59:29.196980", "source": "google", "data": ["anti abortion meaning tagalog", [["anti abortion meaning tagalog", 0, [22, 30]], ["anti abortion in tagalog", 0, [22, 30]], ["against abortion in tagalog", 0, [22, 30]], ["anti abortion meaning", 0, [512, 390, 650]], ["anti-abortion meaning example", 0, [751]]], {"i": "anti abortion meaning tagalog", "q": "TfFT_psbzdCpCJ2SnFM1yLmIVAQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["anti abortion meaning tagalog", "anti abortion in tagalog", "against abortion in tagalog", "anti abortion meaning", "anti-abortion meaning example"], "self_loops": [0], "tags": {"i": "anti abortion meaning tagalog", "q": "TfFT_psbzdCpCJ2SnFM1yLmIVAQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "anti-abortion definition simple", "datetime": "2026-03-12 19:59:30.341152", "source": "google", "data": ["anti-abortion definition simple", [["anti abortion meaning simple", 0, [22, 30]], ["anti abortion meaning", 0, [512, 390, 650]], ["anti-abortion definition simple", 0, [546, 649]], ["anti-abortion definition", 0, [546, 649]], ["anti-abortion meaning example", 0, [751]], ["define anti-abortion", 0, [751]]], {"i": "anti-abortion definition simple", "q": "5THnyKuqr6AgEuEAnSpb6vP3_JM", "t": {"bpc": false, "tlw": false}}], "suggests": ["anti abortion meaning simple", "anti abortion meaning", "anti-abortion definition simple", "anti-abortion definition", "anti-abortion meaning example", "define anti-abortion"], "self_loops": [2], "tags": {"i": "anti-abortion definition simple", "q": "5THnyKuqr6AgEuEAnSpb6vP3_JM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion vs threatened miscarriage", "datetime": "2026-03-12 19:59:31.534096", "source": "google", "data": ["threatened abortion vs threatened miscarriage", [["threatened abortion vs threatened miscarriage", 0, [512]], ["threatened abortion and threatened miscarriage", 0, [22, 30]], ["is threatened abortion and threatened miscarriage the same", 0, [22, 30]], ["threatened abortion vs miscarriage", 0, [512, 390, 650]], ["difference between miscarriage and threatened abortion", 0, [512, 390, 650]], ["whats a threatened miscarriage", 0, [512, 390, 650]], ["what is considered a threatened miscarriage", 0, [512, 390, 650]], ["what is a threatened miscarriage", 0, [512, 390, 650]], ["threatened abortion vs missed abortion", 0, [512, 546]], ["threatened abortion vs inevitable abortion", 0, [512, 546]]], {"i": "threatened abortion vs threatened miscarriage", "q": "ov7Y1HnQNnuUGLru_pHe39uty0I", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["threatened abortion vs threatened miscarriage", "threatened abortion and threatened miscarriage", "is threatened abortion and threatened miscarriage the same", "threatened abortion vs miscarriage", "difference between miscarriage and threatened abortion", "whats a threatened miscarriage", "what is considered a threatened miscarriage", "what is a threatened miscarriage", "threatened abortion vs missed abortion", "threatened abortion vs inevitable abortion"], "self_loops": [0], "tags": {"i": "threatened abortion vs threatened miscarriage", "q": "ov7Y1HnQNnuUGLru_pHe39uty0I", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "hyde amendment simple terms", "datetime": "2026-03-12 19:59:32.571491", "source": "google", "data": ["hyde amendment simple terms", [["hyde amendment simple terms", 0, [22, 30]], ["what is the hyde amendment", 0, [512, 390, 650]], ["hyde amendment simple", 0, [751]], ["hyde amendment text", 0, [512, 546]], ["hyde amendment language", 0, [512, 546]], ["hyde amendment summary", 0, [751]], ["hyde amendment explained", 0, [512, 546]]], {"i": "hyde amendment simple terms", "q": "m5bH18k0XTZmAibt5vJvdZUwEo4", "t": {"bpc": false, "tlw": false}}], "suggests": ["hyde amendment simple terms", "what is the hyde amendment", "hyde amendment simple", "hyde amendment text", "hyde amendment language", "hyde amendment summary", "hyde amendment explained"], "self_loops": [0], "tags": {"i": "hyde amendment simple terms", "q": "m5bH18k0XTZmAibt5vJvdZUwEo4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "miscarriage simple terms", "datetime": "2026-03-12 19:59:33.980493", "source": "google", "data": ["miscarriage simple terms", [["miscarriage simple terms", 0, [22, 30]], ["abortion simple terms", 0, [22, 30]], ["miscarriage simple definition", 0, [22, 30]], ["how to explain miscarriage to a child", 0, [512, 390, 650]], ["is a miscarriage the same as losing a child", 0, [512, 390, 650]], ["what do you call a baby lost to miscarriage", 0, [512, 390, 650]], ["what do you call a baby that was miscarried", 0, [512, 390, 650]], ["miscarriage terminology", 0, [512, 546]], ["miscarriage terms", 0, [512, 546]], ["miscarriage meaning in simple words", 0, [512, 546]]], {"i": "miscarriage simple terms", "q": "Mt1BmC8FSwc_P2i3jCzL_lZFxK8", "t": {"bpc": false, "tlw": false}}], "suggests": ["miscarriage simple terms", "abortion simple terms", "miscarriage simple definition", "how to explain miscarriage to a child", "is a miscarriage the same as losing a child", "what do you call a baby lost to miscarriage", "what do you call a baby that was miscarried", "miscarriage terminology", "miscarriage terms", "miscarriage meaning in simple words"], "self_loops": [0], "tags": {"i": "miscarriage simple terms", "q": "Mt1BmC8FSwc_P2i3jCzL_lZFxK8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion simple definition", "datetime": "2026-03-12 19:59:35.209328", "source": "google", "data": ["abortion simple definition", [["abortion simple definition", 0, [512]], ["miscarriage simple definition", 0, [22, 30]], ["abortion simple explanation", 0, [22, 30]], ["threatened abortion simple definition", 0, [22, 30]], ["inevitable abortion simple definition", 0, [22, 30]], ["missed abortion simple definition", 0, [22, 30]], ["spontaneous abortion simple definition", 0, [22, 30]], ["induced abortion simple definition", 0, [22, 30]], ["septic abortion simple definition", 0, [22, 30]], ["recurrent abortion simple definition", 0, [22, 30]]], {"i": "abortion simple definition", "q": "xa9rR3Zs9OLPATKXtiMS2dTqapg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion simple definition", "miscarriage simple definition", "abortion simple explanation", "threatened abortion simple definition", "inevitable abortion simple definition", "missed abortion simple definition", "spontaneous abortion simple definition", "induced abortion simple definition", "septic abortion simple definition", "recurrent abortion simple definition"], "self_loops": [0], "tags": {"i": "abortion simple definition", "q": "xa9rR3Zs9OLPATKXtiMS2dTqapg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion simple meaning", "datetime": "2026-03-12 19:59:36.042211", "source": "google", "data": ["abortion simple meaning", [["abortion simple meaning", 0, [22, 30]], ["miscarriage simple meaning", 0, [22, 30]], ["abortion simple explanation", 0, [22, 30]], ["threatened abortion simple meaning", 0, [22, 30]], ["anti abortion meaning simple", 0, [22, 30]], ["abortion simple terms", 0, [751]], ["abortion simple definition", 0, [512, 546]]], {"i": "abortion simple meaning", "q": "5HJchTpyceauslD901t-aJmVAq0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion simple meaning", "miscarriage simple meaning", "abortion simple explanation", "threatened abortion simple meaning", "anti abortion meaning simple", "abortion simple terms", "abortion simple definition"], "self_loops": [0], "tags": {"i": "abortion simple meaning", "q": "5HJchTpyceauslD901t-aJmVAq0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does the word abortion mean in greek", "datetime": "2026-03-12 19:59:37.499016", "source": "google", "data": ["what does the word abortion mean in greek", [["what does the word abortion mean in greek", 0, [22, 30]], ["what does the word abortion mean", 0, [512, 390, 650]], ["greek word for abortion", 0, [546, 649]], ["what does the word pro-abortion mean", 0, [751]], ["what does the greek word in mean", 0, [546, 649]], ["greek meaning of abortion", 0, [751]]], {"i": "what does the word abortion mean in greek", "q": "FVYbSREV-8HPA8z_2ltj6QhQCxw", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does the word abortion mean in greek", "what does the word abortion mean", "greek word for abortion", "what does the word pro-abortion mean", "what does the greek word in mean", "greek meaning of abortion"], "self_loops": [0], "tags": {"i": "what does the word abortion mean in greek", "q": "FVYbSREV-8HPA8z_2ltj6QhQCxw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does the word miscarriage mean", "datetime": "2026-03-12 19:59:38.790070", "source": "google", "data": ["what does the word miscarriage mean", [["what does the word miscarriage mean", 0, [512]], ["what does the term miscarriage mean", 0, [22, 30]], ["what does the term miscarriage of justice mean", 0, [22, 30]], ["what does a miscarriage mean in the bible", 0, [512, 390, 650]], ["what is the spiritual meaning of a miscarriage", 0, [512, 390, 650]], ["what miscarriage mean", 0, [512, 390, 650]], ["where does the word miscarriage come from", 0, [512, 546]], ["what does miscarriage means", 0, [512, 546]]], {"i": "what does the word miscarriage mean", "q": "jV_Zw9ALyDcJjN0ZEBPiW4f6qDQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does the word miscarriage mean", "what does the term miscarriage mean", "what does the term miscarriage of justice mean", "what does a miscarriage mean in the bible", "what is the spiritual meaning of a miscarriage", "what miscarriage mean", "where does the word miscarriage come from", "what does miscarriage means"], "self_loops": [0], "tags": {"i": "what does the word miscarriage mean", "q": "jV_Zw9ALyDcJjN0ZEBPiW4f6qDQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does the term abortion mean", "datetime": "2026-03-12 19:59:40.126781", "source": "google", "data": ["what does the term abortion mean", [["what does the term abortion mean", 0, [512]], ["what does the word abortion mean", 0, [22, 30]], ["what does the word miscarriage mean", 0, [22, 30]], ["what does late term abortion mean", 0, [22, 30]], ["what does the abortion mean", 0, [22, 30]], ["what does partial birth abortion mean", 0, [22, 30]], ["what does the miscarriage mean", 0, [22, 30]], ["what does abortion mean in latin", 0, [22, 30]], ["what does abortion mean in pregnancy", 0, [22, 30]], ["what does abortion mean in a dream", 0, [22, 30]]], {"i": "what does the term abortion mean", "q": "GX6EXNQwL9YTZ2Z1zd8nACR0Gxg", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does the term abortion mean", "what does the word abortion mean", "what does the word miscarriage mean", "what does late term abortion mean", "what does the abortion mean", "what does partial birth abortion mean", "what does the miscarriage mean", "what does abortion mean in latin", "what does abortion mean in pregnancy", "what does abortion mean in a dream"], "self_loops": [0], "tags": {"i": "what does the term abortion mean", "q": "GX6EXNQwL9YTZ2Z1zd8nACR0Gxg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does the term miscarriage mean", "datetime": "2026-03-12 19:59:41.576533", "source": "google", "data": ["what does the term miscarriage mean", [["what does the word miscarriage mean", 0, [22, 30]], ["what does the miscarriage mean", 0, [22, 30]], ["what does miscarriage mean in pregnancy", 0, [22, 30]], ["what does miscarriage mean spiritually", 0, [22, 30]], ["what does miscarriage mean in a dream", 0, [22, 30]], ["what does miscarriage mean in islam", 0, [22, 30]], ["what does miscarriage a baby mean", 0, [22, 10, 30]], ["what does a miscarriage mean in the bible", 0, [512, 390, 650]], ["what miscarriage mean", 0, [512, 390, 650]], ["what is the spiritual meaning of a miscarriage", 0, [512, 390, 650]]], {"i": "what does the term miscarriage mean", "q": "ebuzcgbMIUDaWQCLOAkVXw9YeP8", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does the word miscarriage mean", "what does the miscarriage mean", "what does miscarriage mean in pregnancy", "what does miscarriage mean spiritually", "what does miscarriage mean in a dream", "what does miscarriage mean in islam", "what does miscarriage a baby mean", "what does a miscarriage mean in the bible", "what miscarriage mean", "what is the spiritual meaning of a miscarriage"], "self_loops": [], "tags": {"i": "what does the term miscarriage mean", "q": "ebuzcgbMIUDaWQCLOAkVXw9YeP8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does the term missed abortion mean", "datetime": "2026-03-12 19:59:42.747275", "source": "google", "data": ["what does the term missed abortion mean", [["what does missed abortion mean", 0, [22, 30]], ["what does missed abortion mean in pregnancy", 0, [22, 30]], ["what does missed abortion mean in medicine", 0, [22, 30]], ["what does missed ab mean", 0, [22, 30]], ["what does the word miscarriage mean", 0, [22, 30]], ["what does spontaneous abortion mean", 0, [22, 30]], ["what does missed miscarriage mean", 0, [22, 30]], ["what does incomplete abortion mean", 0, [22, 30]], ["why is it called missed abortion", 0, [512, 390, 650]], ["why do they call it a missed abortion", 0, [512, 390, 650]]], {"i": "what does the term missed abortion mean", "q": "5dWJrRhYRNaba8k4ll-t8sDhJP8", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does missed abortion mean", "what does missed abortion mean in pregnancy", "what does missed abortion mean in medicine", "what does missed ab mean", "what does the word miscarriage mean", "what does spontaneous abortion mean", "what does missed miscarriage mean", "what does incomplete abortion mean", "why is it called missed abortion", "why do they call it a missed abortion"], "self_loops": [], "tags": {"i": "what does the term missed abortion mean", "q": "5dWJrRhYRNaba8k4ll-t8sDhJP8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does the term threatened abortion mean", "datetime": "2026-03-12 19:59:44.062493", "source": "google", "data": ["what does the term threatened abortion mean", [["what does the term threatened abortion mean", 0, [22, 30]], ["what does the diagnosis threatened abortion mean", 0, [22, 30]], ["what does threatened abortion mean", 0, [22, 30]], ["what does threatened miscarriage mean", 0, [22, 30]], ["what does inevitable abortion mean", 0, [22, 30]], ["what do you mean by threatened abortion", 0, [512, 390, 650]], ["what is threatened abortion in pregnancy", 0, [512, 390, 650]], ["what is threatened abortion", 0, [512, 390, 650]], ["what does threatened abortion in early pregnancy mean", 0, [512, 546]], ["what does threatened", 0, [512, 546]]], {"i": "what does the term threatened abortion mean", "q": "CTcS1kk3bwkjMBDSSd6aiqSx5tM", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does the term threatened abortion mean", "what does the diagnosis threatened abortion mean", "what does threatened abortion mean", "what does threatened miscarriage mean", "what does inevitable abortion mean", "what do you mean by threatened abortion", "what is threatened abortion in pregnancy", "what is threatened abortion", "what does threatened abortion in early pregnancy mean", "what does threatened"], "self_loops": [0], "tags": {"i": "what does the term threatened abortion mean", "q": "CTcS1kk3bwkjMBDSSd6aiqSx5tM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does the term.spontaneous abortion mean", "datetime": "2026-03-12 19:59:45.064919", "source": "google", "data": ["what does the term.spontaneous abortion mean", [["what does spontaneous abortion mean", 0, [22, 30]], ["what does incomplete spontaneous abortion mean", 0, [22, 30]], ["what does the word miscarriage mean", 0, [22, 30]], ["what does induced abortion mean", 0, [22, 30]], ["what does spontaneous miscarriage mean", 0, [22, 30]], ["what is a spontaneous abortion mean", 0, [512, 390, 650]], ["what is the definition of spontaneous abortion", 0, [512, 390, 650]], ["what does the term abortion mean", 0, [512, 546]], ["what does the term medical abortion describe", 0, [512, 546]], ["what is the definition of spontaneous abortion quizlet", 0, [546, 649]]], {"i": "what does the term.spontaneous abortion mean", "q": "_zSp2F94aaZss13tGaQncQvgjdA", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does spontaneous abortion mean", "what does incomplete spontaneous abortion mean", "what does the word miscarriage mean", "what does induced abortion mean", "what does spontaneous miscarriage mean", "what is a spontaneous abortion mean", "what is the definition of spontaneous abortion", "what does the term abortion mean", "what does the term medical abortion describe", "what is the definition of spontaneous abortion quizlet"], "self_loops": [], "tags": {"i": "what does the term.spontaneous abortion mean", "q": "_zSp2F94aaZss13tGaQncQvgjdA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does late term abortion mean", "datetime": "2026-03-12 19:59:46.490579", "source": "google", "data": ["what does late term abortion mean", [["what does late term abortion mean", 0, [512]], ["late term abortion definition", 0, [512, 390, 650]], ["are late term abortions legal", 0, [512, 390, 650]], ["late term abortion laws", 0, [512, 390, 650]], ["late term abortion procedure", 0, [512, 390, 650]], ["what does late term abortion look like", 0, [512, 546]], ["what does a late term abortion entail", 0, [751]]], {"i": "what does late term abortion mean", "q": "FgVC2hHb83oF24yJIvAK9eRZmco", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what does late term abortion mean", "late term abortion definition", "are late term abortions legal", "late term abortion laws", "late term abortion procedure", "what does late term abortion look like", "what does a late term abortion entail"], "self_loops": [0], "tags": {"i": "what does late term abortion mean", "q": "FgVC2hHb83oF24yJIvAK9eRZmco", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does the medical term missed abortion mean", "datetime": "2026-03-12 19:59:47.646245", "source": "google", "data": ["what does the medical term missed abortion mean", [["what does the medical term missed abortion mean", 0, [22, 30]], ["what does missed abortion mean in pregnancy", 0, [512, 390, 650]], ["what is a missed abortion in medical terms", 0, [512, 390, 650]], ["why is it called missed abortion", 0, [512, 390, 650]], ["why do they call it a missed abortion", 0, [512, 390, 650]], ["what does missed abortion mean in medicine", 0, [512, 546]], ["medical terminology missed abortion", 0, [751]], ["what does the term medical abortion describe", 0, [512, 546]]], {"i": "what does the medical term missed abortion mean", "q": "X-eIfMaJJCZ95xptiZr-yn1A68g", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does the medical term missed abortion mean", "what does missed abortion mean in pregnancy", "what is a missed abortion in medical terms", "why is it called missed abortion", "why do they call it a missed abortion", "what does missed abortion mean in medicine", "medical terminology missed abortion", "what does the term medical abortion describe"], "self_loops": [0], "tags": {"i": "what does the medical term missed abortion mean", "q": "X-eIfMaJJCZ95xptiZr-yn1A68g", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion meaning in arabic", "datetime": "2026-03-12 19:59:48.963631", "source": "google", "data": ["spontaneous abortion meaning in arabic", [["spontaneous abortion meaning in arabic", 0, [22, 30]], ["abortion meaning in arabic", 0, [512, 390, 650]], ["what is a spontaneous abortion mean", 0, [512, 390, 650]], ["spontaneous abortion abbreviation", 0, [512, 390, 650]], ["what is the definition of spontaneous abortion", 0, [512, 390, 650]], ["spontaneous abortion in spanish", 0, [512, 546]], ["spontaneous abortion medical definition", 0, [512, 546]], ["spontaneous abortion synonyms", 0, [546, 649]], ["spontaneous abortion def", 0, [751]], ["spontaneous abortion terminology", 0, [751]]], {"i": "spontaneous abortion meaning in arabic", "q": "h-aWoRH1mHYE-JPQYcKrg-MsGmg", "t": {"bpc": false, "tlw": false}}], "suggests": ["spontaneous abortion meaning in arabic", "abortion meaning in arabic", "what is a spontaneous abortion mean", "spontaneous abortion abbreviation", "what is the definition of spontaneous abortion", "spontaneous abortion in spanish", "spontaneous abortion medical definition", "spontaneous abortion synonyms", "spontaneous abortion def", "spontaneous abortion terminology"], "self_loops": [0], "tags": {"i": "spontaneous abortion meaning in arabic", "q": "h-aWoRH1mHYE-JPQYcKrg-MsGmg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion meaning in arabic", "datetime": "2026-03-12 19:59:50.413186", "source": "google", "data": ["missed abortion meaning in arabic", [["missed abortion meaning in arabic", 0, [22, 30]], ["spontaneous abortion meaning in arabic", 0, [22, 30]], ["missed abortion definition", 0, [512, 390, 650]], ["explain missed abortion", 0, [512, 390, 650]], ["why is it called missed abortion", 0, [512, 390, 650]], ["missed abortion medical definition", 0, [512, 546]], ["missed abortion medical abbreviation", 0, [751]], ["missed abortion medical term", 0, [512, 546]], ["abortion in arabic", 0, [512, 546]], ["what does missed abortion mean in medicine", 0, [512, 546]]], {"i": "missed abortion meaning in arabic", "q": "TqPmtlwqagieDym8QIIo7jzs1aY", "t": {"bpc": false, "tlw": false}}], "suggests": ["missed abortion meaning in arabic", "spontaneous abortion meaning in arabic", "missed abortion definition", "explain missed abortion", "why is it called missed abortion", "missed abortion medical definition", "missed abortion medical abbreviation", "missed abortion medical term", "abortion in arabic", "what does missed abortion mean in medicine"], "self_loops": [0], "tags": {"i": "missed abortion meaning in arabic", "q": "TqPmtlwqagieDym8QIIo7jzs1aY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion clinic meaning in arabic", "datetime": "2026-03-12 19:59:51.598119", "source": "google", "data": ["abortion clinic meaning in arabic", [["abortion clinic meaning in arabic", 0, [22, 30]], ["abortion meaning in arabic", 0, [512, 390, 650]], ["abortion in arabic translation", 0, [512, 390, 650]], ["abortion clinic meaning", 0, [512, 390, 650]], ["abortion in arabic", 0, [512, 546]], ["abortion meaning in farsi", 0, [546, 649]], ["abortion clinic translate", 0, [751]], ["abortion clinic in my area", 0, [512, 546]]], {"i": "abortion clinic meaning in arabic", "q": "z7h7JbnFsBZImKk468a66CstfCw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion clinic meaning in arabic", "abortion meaning in arabic", "abortion in arabic translation", "abortion clinic meaning", "abortion in arabic", "abortion meaning in farsi", "abortion clinic translate", "abortion clinic in my area"], "self_loops": [0], "tags": {"i": "abortion clinic meaning in arabic", "q": "z7h7JbnFsBZImKk468a66CstfCw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in islam", "datetime": "2026-03-12 19:59:52.501853", "source": "google", "data": ["abortion meaning in islam", [["abortion meaning in islam", 0, [22, 30]], ["abortion dream meaning in islam", 0, [22, 30]], ["abortion meaning in arabic", 0, [22, 30]], ["abortion meaning in urdu and english", 0, [22, 30]], ["abortion meaning in urdu pdf", 0, [22, 30]], ["abortion meaning in urdu", 0, [22, 455, 30]], ["abortion meaning in urdu with example", 0, [22, 455, 30]], ["is abortion allowed in islam", 0, [512, 390, 650]], ["abortion definition in india", 0, [512, 390, 650]], ["abortion meaning in hebrew", 0, [512, 546]]], {"i": "abortion meaning in islam", "q": "zsAcOTl19pOOC25t3B795wNXm94", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in islam", "abortion dream meaning in islam", "abortion meaning in arabic", "abortion meaning in urdu and english", "abortion meaning in urdu pdf", "abortion meaning in urdu", "abortion meaning in urdu with example", "is abortion allowed in islam", "abortion definition in india", "abortion meaning in hebrew"], "self_loops": [0], "tags": {"i": "abortion meaning in islam", "q": "zsAcOTl19pOOC25t3B795wNXm94", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in arabic translation", "datetime": "2026-03-12 19:59:53.643799", "source": "google", "data": ["abortion in arabic translation", [["abortion in arabic translation", 0, [512]], ["abortion meaning in arabic", 0, [512, 390, 650]], ["abortion in arabic", 0, [512, 546]], ["abortion in arab countries", 0, [546, 649]], ["abortion in the arab world", 0, [751]], ["abortion meaning in farsi", 0, [546, 649]], ["abortion in turkish language", 0, [751]]], {"i": "abortion in arabic translation", "q": "fxC7HrroJ0Bp32PB5KqNy7HDzuo", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in arabic translation", "abortion meaning in arabic", "abortion in arabic", "abortion in arab countries", "abortion in the arab world", "abortion meaning in farsi", "abortion in turkish language"], "self_loops": [0], "tags": {"i": "abortion in arabic translation", "q": "fxC7HrroJ0Bp32PB5KqNy7HDzuo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "termination meaning in arabic", "datetime": "2026-03-12 19:59:54.588110", "source": "google", "data": ["termination meaning in arabic", [["termination meaning in arabic", 0, [512]], ["abortion meaning in arabic", 0, [22, 30]], ["dismissal meaning in arabic", 0, [22, 30]], ["cessation meaning in arabic", 0, [22, 30]], ["termination letter meaning in arabic", 0, [22, 30]], ["session terminated meaning in arabic", 0, [22, 30]], ["terminate contract meaning in arabic", 0, [22, 30]], ["spontaneous abortion meaning in arabic", 0, [22, 30]], ["dismissal time meaning in arabic", 0, [22, 30]], ["arbitrary dismissal meaning in arabic", 0, [22, 30]]], {"i": "termination meaning in arabic", "q": "x649Y-QNX4Q6vZB3PubPjCf8H4Q", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["termination meaning in arabic", "abortion meaning in arabic", "dismissal meaning in arabic", "cessation meaning in arabic", "termination letter meaning in arabic", "session terminated meaning in arabic", "terminate contract meaning in arabic", "spontaneous abortion meaning in arabic", "dismissal time meaning in arabic", "arbitrary dismissal meaning in arabic"], "self_loops": [0], "tags": {"i": "termination meaning in arabic", "q": "x649Y-QNX4Q6vZB3PubPjCf8H4Q", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in arabic", "datetime": "2026-03-12 19:59:55.526976", "source": "google", "data": ["abortion in arabic", [["abortion in arabic", 0, [512]], ["abortion in arabic translation", 0, [512]], ["abortion in arabic words", 0, [22, 30]], ["abortion meaning in arabic", 0, [22, 30]], ["missed abortion in arabic", 0, [22, 30]], ["threatened abortion in arabic", 0, [22, 30]], ["abortion pill in arabic", 0, [22, 30]], ["septic abortion in arabic", 0, [22, 30]], ["abortion clinic in arabic", 0, [22, 30]], ["incomplete abortion in arabic", 0, [22, 30]]], {"i": "abortion in arabic", "q": "kXPb268omtqhJkIDcsYY6ZlcRfA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion in arabic", "abortion in arabic translation", "abortion in arabic words", "abortion meaning in arabic", "missed abortion in arabic", "threatened abortion in arabic", "abortion pill in arabic", "septic abortion in arabic", "abortion clinic in arabic", "incomplete abortion in arabic"], "self_loops": [0], "tags": {"i": "abortion in arabic", "q": "kXPb268omtqhJkIDcsYY6ZlcRfA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is elias a jewish name", "datetime": "2026-03-12 19:59:56.506706", "source": "google", "data": ["is elias a jewish name", [["is elias a jewish name", 0, [512]], ["is elias a jewish name in the bible", 0, [22, 30]], ["is elijah a jewish name", 0, [22, 30]], ["is elias a hebrew name", 0, [22, 30]], ["is ilyas a jewish name", 0, [22, 30]], ["is elias a jewish surname", 0, [22, 30]], ["is elias a common jewish name", 0, [22, 30]], ["is elias a jewish first name", 0, [22, 30]], ["is elijah a popular jewish name", 0, [22, 30]], ["is elias rodriguez a jewish name", 0, [22, 30]]], {"i": "is elias a jewish name", "q": "QFcTZmvZBe6eIdh8FT6HXN-uUPM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is elias a jewish name", "is elias a jewish name in the bible", "is elijah a jewish name", "is elias a hebrew name", "is ilyas a jewish name", "is elias a jewish surname", "is elias a common jewish name", "is elias a jewish first name", "is elijah a popular jewish name", "is elias rodriguez a jewish name"], "self_loops": [0], "tags": {"i": "is elias a jewish name", "q": "QFcTZmvZBe6eIdh8FT6HXN-uUPM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is elijah a hebrew name", "datetime": "2026-03-12 19:59:57.899153", "source": "google", "data": ["is elijah a hebrew name", [["is elijah a hebrew name", 0, [512]], ["is elijah a jewish name", 0, [22, 30]], ["is elisha a hebrew name", 0, [22, 30]], ["is elijah a popular jewish name", 0, [22, 30]], ["is elijah a biblical name", 0, [512, 390, 650]], ["what does the name elijah mean in hebrew", 0, [512, 390, 650]], ["is elijah hebrew", 0, [512, 546]], ["is elijah a boy name", 0, [512, 546]]], {"i": "is elijah a hebrew name", "q": "LmrOgeREMQtXdvKg7Q3xKp3csnA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is elijah a hebrew name", "is elijah a jewish name", "is elisha a hebrew name", "is elijah a popular jewish name", "is elijah a biblical name", "what does the name elijah mean in hebrew", "is elijah hebrew", "is elijah a boy name"], "self_loops": [0], "tags": {"i": "is elijah a hebrew name", "q": "LmrOgeREMQtXdvKg7Q3xKp3csnA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is elias a jewish name in the bible", "datetime": "2026-03-12 19:59:59.334675", "source": "google", "data": ["is elias a jewish name in the bible", [["is elias a jewish name in the bible", 0, [22, 30]], ["is elias a hebrew name", 0, [512, 390, 650]], ["is elias a biblical name", 0, [512, 390, 650]], ["is elias a bible name", 0, [512, 390, 650]], ["what type of name is elias", 0, [512, 390, 650]], ["is elias a jewish name", 0, [512, 546]], ["is elias a jewish last name", 0, [512, 546]]], {"i": "is elias a jewish name in the bible", "q": "F-D5dZgOAYk2eRMegAhbz472-PU", "t": {"bpc": false, "tlw": false}}], "suggests": ["is elias a jewish name in the bible", "is elias a hebrew name", "is elias a biblical name", "is elias a bible name", "what type of name is elias", "is elias a jewish name", "is elias a jewish last name"], "self_loops": [0], "tags": {"i": "is elias a jewish name in the bible", "q": "F-D5dZgOAYk2eRMegAhbz472-PU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is ilyas a hebrew name", "datetime": "2026-03-12 20:00:00.152443", "source": "google", "data": ["is ilyas a hebrew name", [["is ilyas a hebrew name", 0, [22, 30]], ["is elias a hebrew name", 0, [22, 30]], ["is ilyas a jewish name", 0, [22, 30]], ["is eliana a hebrew name", 0, [512, 390, 650]], ["is elijah a hebrew name", 0, [512, 390, 650]], ["what is my name in hebrew", 0, [512, 390, 650]], ["ilyas name origin", 0, [512, 546]], ["ilyas name meaning arabic", 0, [512, 546]], ["name ilyas meaning", 0, [512, 546]], ["ilyas name pronunciation", 0, [512, 546]]], {"i": "is ilyas a hebrew name", "q": "Dyq0IW_u7C3fQG1aB-ZVr1G8hMI", "t": {"bpc": false, "tlw": false}}], "suggests": ["is ilyas a hebrew name", "is elias a hebrew name", "is ilyas a jewish name", "is eliana a hebrew name", "is elijah a hebrew name", "what is my name in hebrew", "ilyas name origin", "ilyas name meaning arabic", "name ilyas meaning", "ilyas name pronunciation"], "self_loops": [0], "tags": {"i": "is ilyas a hebrew name", "q": "Dyq0IW_u7C3fQG1aB-ZVr1G8hMI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is elias a jewish last name", "datetime": "2026-03-12 20:00:00.969334", "source": "google", "data": ["is elias a jewish last name", [["is elias a jewish last name", 0, [512]], ["is elias a jewish first name", 0, [22, 30]], ["is elias a jewish name", 0, [22, 30]], ["is elias a jewish name in the bible", 0, [22, 30]], ["is elijah a jewish name", 0, [22, 30]], ["is ilyas a jewish name", 0, [22, 30]], ["is elias a last name", 0, [546, 649]], ["is elias a hebrew name", 0, [512, 546]]], {"i": "is elias a jewish last name", "q": "bMJapdC-3JRmQCtEs719P1I2Juw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is elias a jewish last name", "is elias a jewish first name", "is elias a jewish name", "is elias a jewish name in the bible", "is elijah a jewish name", "is ilyas a jewish name", "is elias a last name", "is elias a hebrew name"], "self_loops": [0], "tags": {"i": "is elias a jewish last name", "q": "bMJapdC-3JRmQCtEs719P1I2Juw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is elias a common jewish name", "datetime": "2026-03-12 20:00:01.839421", "source": "google", "data": ["is elias a common jewish name", [["is elias a common jewish name", 0, [22, 30]], ["is elijah a popular jewish name", 0, [22, 30]], ["is elias a jewish name", 0, [512, 546]], ["is elias a common name", 0, [512, 546]], ["is elias a jewish last name", 0, [512, 546]], ["is elias a hebrew name", 0, [512, 546]]], {"i": "is elias a common jewish name", "q": "m_eh7QOTADWjk15iuShNUdlyxbI", "t": {"bpc": false, "tlw": false}}], "suggests": ["is elias a common jewish name", "is elijah a popular jewish name", "is elias a jewish name", "is elias a common name", "is elias a jewish last name", "is elias a hebrew name"], "self_loops": [0], "tags": {"i": "is elias a common jewish name", "q": "m_eh7QOTADWjk15iuShNUdlyxbI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is elias a jewish first name", "datetime": "2026-03-12 20:00:03.051953", "source": "google", "data": ["is elias a jewish first name", [["is elias a jewish first name", 0, [22, 30]], ["is elias a jewish name", 0, [512, 546]], ["is elias a jewish last name", 0, [512, 546]], ["is elias a hebrew name", 0, [512, 546]], ["is elias a french name", 0, [512, 546]]], {"i": "is elias a jewish first name", "q": "YBBETdn1_GmLzOn-F3kEIGUUxXo", "t": {"bpc": false, "tlw": false}}], "suggests": ["is elias a jewish first name", "is elias a jewish name", "is elias a jewish last name", "is elias a hebrew name", "is elias a french name"], "self_loops": [0], "tags": {"i": "is elias a jewish first name", "q": "YBBETdn1_GmLzOn-F3kEIGUUxXo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is elias rodriguez a jewish name", "datetime": "2026-03-12 20:00:04.403248", "source": "google", "data": ["is elias rodriguez a jewish name", [["is elias rodriguez a jewish name", 0, [22, 30]], ["is elias a jewish name", 0, [512, 546]], ["is elias a jewish last name", 0, [512, 546]], ["is rodriguez a jewish name", 0, [512, 546]], ["is rodriguez a jewish last name", 0, [512, 546]]], {"i": "is elias rodriguez a jewish name", "q": "zpIAEEUzia84w-d_HBX07_ILGqA", "t": {"bpc": false, "tlw": false}}], "suggests": ["is elias rodriguez a jewish name", "is elias a jewish name", "is elias a jewish last name", "is rodriguez a jewish name", "is rodriguez a jewish last name"], "self_loops": [0], "tags": {"i": "is elias rodriguez a jewish name", "q": "zpIAEEUzia84w-d_HBX07_ILGqA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is elias a biblical name", "datetime": "2026-03-12 20:00:05.658829", "source": "google", "data": ["is elias a biblical name", [["is elias a biblical name", 0, [512]], ["is elijah a biblical name", 0, [22, 30]], ["is elias a christian name", 0, [22, 30]], ["is elias a hebrew name", 0, [22, 30]], ["is elias a muslim or christian name", 0, [22, 30]], ["is elias a jewish name in the bible", 0, [22, 30]], ["is elias a bible name", 0, [512, 546]], ["is elias biblical", 0, [512, 546]], ["is elias a boy name", 0, [512, 546]]], {"i": "is elias a biblical name", "q": "JbnQwft3wWyqB5GXrRTn5dzld-c", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is elias a biblical name", "is elijah a biblical name", "is elias a christian name", "is elias a hebrew name", "is elias a muslim or christian name", "is elias a jewish name in the bible", "is elias a bible name", "is elias biblical", "is elias a boy name"], "self_loops": [0], "tags": {"i": "is elias a biblical name", "q": "JbnQwft3wWyqB5GXrRTn5dzld-c", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in hebrew bible verse", "datetime": "2026-03-12 20:00:06.856653", "source": "google", "data": ["abortion in hebrew bible verse", [["abortion in hebrew bible verses", 33, [160], {"a": "abortion in hebrew bible ", "b": "verses"}], ["abortion in hebrew bible verse tattoos", 33, [299], {"a": "abortion in hebrew bible ", "b": "verse tattoos"}], ["abortion in hebrew bible verse numbers", 33, [671], {"a": "abortion in hebrew bible ", "b": "verse numbers"}]], {"i": "abortion in hebrew bible verse", "q": "UOeCVlrVK_ezavAXf_jfD-3w5HI", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in hebrew bible verses", "abortion in hebrew bible verse tattoos", "abortion in hebrew bible verse numbers"], "self_loops": [], "tags": {"i": "abortion in hebrew bible verse", "q": "UOeCVlrVK_ezavAXf_jfD-3w5HI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in hebrew bibles", "datetime": "2026-03-12 20:00:08.260581", "source": "google", "data": ["abortion in hebrew bibles", [["abortion in hebrew bibles pdf", 33, [160], {"a": "abortion in hebrew ", "b": "bibles pdf"}], ["abortion in hebrew bibles in the bible", 33, [160], {"a": "abortion in hebrew ", "b": "bibles in the bible"}], ["abortion in hebrew bibles in english", 33, [160], {"a": "abortion in hebrew ", "b": "bibles in english"}], ["abortion in hebrew bibles in hebrew", 33, [160], {"a": "abortion in hebrew ", "b": "bibles in hebrew"}], ["abortion in hebrew bibles", 33, [671], {"a": "abortion in hebrew ", "b": "bibles"}], ["abortion in hebrew bibles instructions", 33, [671], {"a": "abortion in hebrew ", "b": "bibles instructions"}], ["abortion in hebrew bibles leviticus", 33, [671], {"a": "abortion in hebrew ", "b": "bibles leviticus"}], ["abortion in hebrew bibles numbers", 33, [671], {"a": "abortion in hebrew ", "b": "bibles numbers"}], ["abortion in hebrew bibles infidelity", 33, [671], {"a": "abortion in hebrew ", "b": "bibles infidelity"}], ["abortion in hebrew bibles numbers 5", 33, [671], {"a": "abortion in hebrew ", "b": "bibles numbers 5"}]], {"i": "abortion in hebrew bibles", "q": "RMqMxonY7ffwOtueHhZD3VN_cw8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in hebrew bibles pdf", "abortion in hebrew bibles in the bible", "abortion in hebrew bibles in english", "abortion in hebrew bibles in hebrew", "abortion in hebrew bibles", "abortion in hebrew bibles instructions", "abortion in hebrew bibles leviticus", "abortion in hebrew bibles numbers", "abortion in hebrew bibles infidelity", "abortion in hebrew bibles numbers 5"], "self_loops": [4], "tags": {"i": "abortion in hebrew bibles", "q": "RMqMxonY7ffwOtueHhZD3VN_cw8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in hebrew bible translation", "datetime": "2026-03-12 20:00:09.581334", "source": "google", "data": ["abortion in hebrew bible translation", [["abortion in hebrew bible translations", 33, [160], {"a": "abortion in hebrew bible ", "b": "translations"}], ["abortion in hebrew bible translation pdf", 33, [160], {"a": "abortion in hebrew bible ", "b": "translation pdf"}], ["abortion in hebrew bible translation bible", 33, [160], {"a": "abortion in hebrew bible ", "b": "translation bible"}], ["abortion in hebrew bible translation bible hub", 33, [160], {"a": "abortion in hebrew bible ", "b": "translation bible hub"}], ["abortion in hebrew bible translation online", 33, [299], {"a": "abortion in hebrew bible ", "b": "translation online"}]], {"i": "abortion in hebrew bible translation", "q": "lZP6Vjwx6C1nWSVnntUNacHqxi0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in hebrew bible translations", "abortion in hebrew bible translation pdf", "abortion in hebrew bible translation bible", "abortion in hebrew bible translation bible hub", "abortion in hebrew bible translation online"], "self_loops": [], "tags": {"i": "abortion in hebrew bible translation", "q": "lZP6Vjwx6C1nWSVnntUNacHqxi0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in hebrew bible meaning", "datetime": "2026-03-12 20:00:10.529372", "source": "google", "data": ["abortion in hebrew bible meaning", [["abortion in hebrew bible meaning in hebrew", 33, [160], {"a": "abortion in hebrew bible ", "b": "meaning in hebrew"}], ["abortion in hebrew bible meanings", 33, [160], {"a": "abortion in hebrew bible ", "b": "meanings"}], ["abortion in hebrew bible meaning bible hub", 33, [160], {"a": "abortion in hebrew bible ", "b": "meaning bible hub"}], ["abortion in hebrew bible meaning in the bible", 33, [160], {"a": "abortion in hebrew bible ", "b": "meaning in the bible"}]], {"i": "abortion in hebrew bible meaning", "q": "jAOtDjKB9MyTaPFEvJOaKL5IWMQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in hebrew bible meaning in hebrew", "abortion in hebrew bible meanings", "abortion in hebrew bible meaning bible hub", "abortion in hebrew bible meaning in the bible"], "self_loops": [], "tags": {"i": "abortion in hebrew bible meaning", "q": "jAOtDjKB9MyTaPFEvJOaKL5IWMQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in hebrew bible instructions", "datetime": "2026-03-12 20:00:11.750549", "source": "google", "data": ["abortion in hebrew bible instructions", [["abortion in hebrew bible instructions pdf", 33, [160], {"a": "abortion in hebrew bible ", "b": "instructions pdf"}], ["abortion in hebrew bible instructions in hebrew", 33, [160], {"a": "abortion in hebrew bible ", "b": "instructions in hebrew"}], ["abortion in hebrew bible instructions in the bible", 33, [160], {"a": "abortion in hebrew bible ", "b": "instructions in the bible"}], ["abortion in hebrew bible instructions in english", 33, [160], {"a": "abortion in hebrew bible ", "b": "instructions in english"}], ["abortion in hebrew bible instructions", 33, [671], {"a": "abortion in hebrew bible ", "b": "instructions"}], ["abortion in hebrew bible instructions passage", 33, [671], {"a": "abortion in hebrew bible ", "b": "instructions passage"}]], {"i": "abortion in hebrew bible instructions", "q": "WVHFW2-DPWb-n4PqHVdCsCXWfx8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in hebrew bible instructions pdf", "abortion in hebrew bible instructions in hebrew", "abortion in hebrew bible instructions in the bible", "abortion in hebrew bible instructions in english", "abortion in hebrew bible instructions", "abortion in hebrew bible instructions passage"], "self_loops": [4], "tags": {"i": "abortion in hebrew bible instructions", "q": "WVHFW2-DPWb-n4PqHVdCsCXWfx8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in hebrew bible leviticus", "datetime": "2026-03-12 20:00:13.229835", "source": "google", "data": ["abortion in hebrew bible leviticus", [["abortion in hebrew bible leviticus 19", 33, [160], {"a": "abortion in hebrew bible ", "b": "leviticus 19"}], ["abortion in hebrew bible leviticus 11", 33, [160], {"a": "abortion in hebrew bible ", "b": "leviticus 11"}], ["abortion in hebrew bible leviticus 18", 33, [160], {"a": "abortion in hebrew bible ", "b": "leviticus 18"}], ["abortion in hebrew bible leviticus 8", 33, [160], {"a": "abortion in hebrew bible ", "b": "leviticus 8"}], ["abortion in hebrew bible leviticus", 33, [671], {"a": "abortion in hebrew bible ", "b": "leviticus"}]], {"i": "abortion in hebrew bible leviticus", "q": "ElIb9DqnXNCEfM39J0474WlZHVA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in hebrew bible leviticus 19", "abortion in hebrew bible leviticus 11", "abortion in hebrew bible leviticus 18", "abortion in hebrew bible leviticus 8", "abortion in hebrew bible leviticus"], "self_loops": [4], "tags": {"i": "abortion in hebrew bible leviticus", "q": "ElIb9DqnXNCEfM39J0474WlZHVA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in hebrew bible times", "datetime": "2026-03-12 20:00:14.690554", "source": "google", "data": ["abortion in hebrew bible times", [["abortion in hebrew bible times pdf", 33, [160], {"a": "abortion in hebrew bible ", "b": "times pdf"}], ["abortion in hebrew bible times bible", 33, [160], {"a": "abortion in hebrew bible ", "b": "times bible"}], ["abortion in hebrew bible times bible hub", 33, [160], {"a": "abortion in hebrew bible ", "b": "times bible hub"}], ["abortion in hebrew bible times", 33, [671], {"a": "abortion in hebrew bible ", "b": "times"}]], {"i": "abortion in hebrew bible times", "q": "nsfZemk3e56fDVX0CjpZAr0xv0o", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in hebrew bible times pdf", "abortion in hebrew bible times bible", "abortion in hebrew bible times bible hub", "abortion in hebrew bible times"], "self_loops": [3], "tags": {"i": "abortion in hebrew bible times", "q": "nsfZemk3e56fDVX0CjpZAr0xv0o", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in hebrew bible numbers 5", "datetime": "2026-03-12 20:00:16.149514", "source": "google", "data": ["abortion in hebrew bible numbers 5", [["abortion in hebrew bible numbers 5 11", 33, [160], {"a": "abortion in hebrew bible numbers ", "b": "5 11"}], ["abortion in hebrew bible numbers 5 21", 33, [160], {"a": "abortion in hebrew bible numbers ", "b": "5 21"}], ["abortion in hebrew bible numbers 5 13", 33, [160], {"a": "abortion in hebrew bible numbers ", "b": "5 13"}], ["abortion in hebrew bible numbers 5 4", 33, [160], {"a": "abortion in hebrew bible numbers ", "b": "5 4"}], ["abortion in hebrew bible numbers 5 12", 33, [160], {"a": "abortion in hebrew bible numbers ", "b": "5 12"}], ["abortion in hebrew bible numbers 5", 33, [299], {"a": "abortion in hebrew bible numbers ", "b": "5"}], ["abortion in hebrew bible numbers 5 abortion", 33, [299], {"a": "abortion in hebrew bible numbers ", "b": "5 abortion"}], ["abortion in hebrew bible numbers 5 11-31", 33, [299], {"a": "abortion in hebrew bible numbers ", "b": "5 11-31"}]], {"i": "abortion in hebrew bible numbers 5", "q": "0ns3sEZ_kzMygl2VHWN0FlhFpNA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in hebrew bible numbers 5 11", "abortion in hebrew bible numbers 5 21", "abortion in hebrew bible numbers 5 13", "abortion in hebrew bible numbers 5 4", "abortion in hebrew bible numbers 5 12", "abortion in hebrew bible numbers 5", "abortion in hebrew bible numbers 5 abortion", "abortion in hebrew bible numbers 5 11-31"], "self_loops": [5], "tags": {"i": "abortion in hebrew bible numbers 5", "q": "0ns3sEZ_kzMygl2VHWN0FlhFpNA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in hebrew bible days", "datetime": "2026-03-12 20:00:17.504298", "source": "google", "data": ["abortion in hebrew bible days", [["abortion in hebrew bible days of the week", 33, [160], {"a": "abortion in hebrew bible ", "b": "days of the week"}], ["abortion in hebrew bible days of creation", 33, [160], {"a": "abortion in hebrew bible ", "b": "days of creation"}], ["abortion in hebrew bible days in the bible", 33, [160], {"a": "abortion in hebrew bible ", "b": "days in the bible"}], ["abortion in hebrew bible days before jesus", 33, [160], {"a": "abortion in hebrew bible ", "b": "days before jesus"}], ["abortion in hebrew bible days", 33, [671], {"a": "abortion in hebrew bible ", "b": "days"}]], {"i": "abortion in hebrew bible days", "q": "tM1wXZeyH1384LOc_yyIzSndxyY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in hebrew bible days of the week", "abortion in hebrew bible days of creation", "abortion in hebrew bible days in the bible", "abortion in hebrew bible days before jesus", "abortion in hebrew bible days"], "self_loops": [4], "tags": {"i": "abortion in hebrew bible days", "q": "tM1wXZeyH1384LOc_yyIzSndxyY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in hebrew bible book of numbers", "datetime": "2026-03-12 20:00:18.353048", "source": "google", "data": ["abortion in hebrew bible book of numbers", [["abortion in hebrew bible book of numbers pdf", 33, [160], {"a": "abortion in hebrew bible book of ", "b": "numbers pdf"}], ["abortion in hebrew bible book of numbers kjv", 33, [160], {"a": "abortion in hebrew bible book of ", "b": "numbers kjv"}], ["abortion in hebrew bible book of numbers bible", 33, [160], {"a": "abortion in hebrew bible book of ", "b": "numbers bible"}], ["abortion in hebrew bible book of numbers 1", 33, [160], {"a": "abortion in hebrew bible book of ", "b": "numbers 1"}], ["abortion in hebrew bible book of numbers 21", 33, [160], {"a": "abortion in hebrew bible book of ", "b": "numbers 21"}], ["abortion in hebrew bible book of numbers", 33, [299], {"a": "abortion in hebrew bible book of ", "b": "numbers"}], ["abortion in hebrew bible book of numbers 5", 33, [671], {"a": "abortion in hebrew bible book of ", "b": "numbers 5"}], ["abortion in hebrew bible book of numbers 5 11-31", 33, [671], {"a": "abortion in hebrew bible book of ", "b": "numbers 5 11-31"}]], {"i": "abortion in hebrew bible book of numbers", "q": "1MvPNP7DXk1Dyxc8ZXGsAxI_Lq4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in hebrew bible book of numbers pdf", "abortion in hebrew bible book of numbers kjv", "abortion in hebrew bible book of numbers bible", "abortion in hebrew bible book of numbers 1", "abortion in hebrew bible book of numbers 21", "abortion in hebrew bible book of numbers", "abortion in hebrew bible book of numbers 5", "abortion in hebrew bible book of numbers 5 11-31"], "self_loops": [5], "tags": {"i": "abortion in hebrew bible book of numbers", "q": "1MvPNP7DXk1Dyxc8ZXGsAxI_Lq4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in hebrew translation", "datetime": "2026-03-12 20:00:19.544943", "source": "google", "data": ["abortion in hebrew translation", [["abortion in hebrew translation", 0, [22, 30]], ["is abortion mentioned in the bible", 0, [512, 390, 650]], ["abortion in arabic translation", 0, [512, 390, 650]], ["abortion in hebrew bible", 0, [751]], ["abortion in hebrew", 0, [512, 546]], ["abortion meaning in hebrew", 0, [512, 546]], ["abortion in halakhic literature", 0, [751]]], {"i": "abortion in hebrew translation", "q": "mXamherX8fkJNFiL74W6VABXg_A", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in hebrew translation", "is abortion mentioned in the bible", "abortion in arabic translation", "abortion in hebrew bible", "abortion in hebrew", "abortion meaning in hebrew", "abortion in halakhic literature"], "self_loops": [0], "tags": {"i": "abortion in hebrew translation", "q": "mXamherX8fkJNFiL74W6VABXg_A", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how to say abortion in hebrew", "datetime": "2026-03-12 20:00:20.493448", "source": "google", "data": ["how to say abortion in hebrew", [["how to say abortion in hebrew", 0, [22, 30]], ["hebrew word for abortion", 0, [512, 546]], ["how to say abortion in asl", 0, [546, 649]], ["how to say abortion in spanish", 0, [512, 546]], ["how to say about in hebrew", 0, [546, 649]]], {"i": "how to say abortion in hebrew", "q": "5xEiqlwjraJqwKZLxcj8EEA0H2E", "t": {"bpc": false, "tlw": false}}], "suggests": ["how to say abortion in hebrew", "hebrew word for abortion", "how to say abortion in asl", "how to say abortion in spanish", "how to say about in hebrew"], "self_loops": [0], "tags": {"i": "how to say abortion in hebrew", "q": "5xEiqlwjraJqwKZLxcj8EEA0H2E", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in halacha", "datetime": "2026-03-12 20:00:21.844738", "source": "google", "data": ["abortion in halacha", [["abortion in halacha", 0, [512]], ["is abortion legal in judaism", 0, [512, 390, 650]], ["is abortion ok in judaism", 0, [512, 390, 650]], ["abortion laws in france", 0, [512, 390, 650]], ["abortion in halakhic literature", 0, [751]], ["abortion in hanafi", 0, [751]]], {"i": "abortion in halacha", "q": "dJn4lefbsm7vbNPLaCLzV5Q54B0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion in halacha", "is abortion legal in judaism", "is abortion ok in judaism", "abortion laws in france", "abortion in halakhic literature", "abortion in hanafi"], "self_loops": [0], "tags": {"i": "abortion in halacha", "q": "dJn4lefbsm7vbNPLaCLzV5Q54B0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion meaning in persian", "datetime": "2026-03-12 20:00:23.173947", "source": "google", "data": ["abortion meaning in persian", [["abortion meaning in persian", 0, [22, 30]], ["abortion meaning in farsi", 0, [22, 30]], ["abortion meaning in arabic", 0, [512, 390, 650]], ["aurat meaning in persian", 0, [512, 390, 650]], ["abortion in farsi", 0, [512, 546]], ["abortion meaning in vietnamese", 0, [751]], ["abortion meaning in hebrew", 0, [512, 546]]], {"i": "abortion meaning in persian", "q": "BmmSaP5Rpn8RGc7pjOBEFb25Z-M", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in persian", "abortion meaning in farsi", "abortion meaning in arabic", "aurat meaning in persian", "abortion in farsi", "abortion meaning in vietnamese", "abortion meaning in hebrew"], "self_loops": [0], "tags": {"i": "abortion meaning in persian", "q": "BmmSaP5Rpn8RGc7pjOBEFb25Z-M", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "bay meaning in farsi", "datetime": "2026-03-12 20:00:24.632926", "source": "google", "data": ["bay meaning in farsi", [["bay meaning in farsi", 0, [512]], ["bay leaf meaning in farsi", 0, [22, 30]], ["bay meaning in persian", 0, [22, 30]], ["bay bay meaning in urdu", 0, [512, 390, 650]], ["bay meaning in punjabi", 0, [512, 390, 650]], ["bay bay meaning in english", 0, [512, 390, 650]], ["bay in farsi", 0, [512, 546]], ["bay in persian", 0, [512, 546]], ["bay meaning verb", 0, [512, 546]], ["bay meaning in spanish", 0, [512, 546]]], {"i": "bay meaning in farsi", "q": "pq421-uvHhDsbN0pQEqXQ5irHGI", "t": {"bpc": false, "tlw": false}}], "suggests": ["bay meaning in farsi", "bay leaf meaning in farsi", "bay meaning in persian", "bay bay meaning in urdu", "bay meaning in punjabi", "bay bay meaning in english", "bay in farsi", "bay in persian", "bay meaning verb", "bay meaning in spanish"], "self_loops": [0], "tags": {"i": "bay meaning in farsi", "q": "pq421-uvHhDsbN0pQEqXQ5irHGI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in farsi", "datetime": "2026-03-12 20:00:25.536533", "source": "google", "data": ["abortion in farsi", [["abortion in farsi", 0, [512]], ["abortion meaning in farsi", 0, [22, 30]]], {"i": "abortion in farsi", "q": "11Y7IzNn8zNDhJohkBlp09IZgQE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in farsi", "abortion meaning in farsi"], "self_loops": [0], "tags": {"i": "abortion in farsi", "q": "11Y7IzNn8zNDhJohkBlp09IZgQE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion definition in farsi", "datetime": "2026-03-12 20:00:26.548464", "source": "google", "data": ["abortion definition in farsi", [["abortion meaning in farsi", 0, [22, 30]], ["abortion in farsi", 0, [512, 546]], ["abortion definition in farsi", 0, [751]], ["abortion meaning in persian", 0, [751]]], {"i": "abortion definition in farsi", "q": "7DHUmq68Rbv92yxd9_Bd93euKZM", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion meaning in farsi", "abortion in farsi", "abortion definition in farsi", "abortion meaning in persian"], "self_loops": [2], "tags": {"i": "abortion definition in farsi", "q": "7DHUmq68Rbv92yxd9_Bd93euKZM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "transaction aborted meaning in hindi with example", "datetime": "2026-03-12 20:00:27.699656", "source": "google", "data": ["transaction aborted meaning in hindi with example", [["transaction aborted meaning in hindi with example", 0, [512]], ["your transaction is aborted meaning in hindi with example", 0, [22, 30]], ["transaction aborted meaning", 0, [512, 390, 650]], ["aborted meaning in banking", 0, [512, 390, 650]], ["what is aborted transaction", 0, [512, 390, 650]], ["aborted transaction meaning in hindi", 0, [512, 546]], ["transaction aborted meaning in english", 0, [512, 546]]], {"i": "transaction aborted meaning in hindi with example", "q": "g1GIdGFuxUNfPWWJ9MA_FLRn_jQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["transaction aborted meaning in hindi with example", "your transaction is aborted meaning in hindi with example", "transaction aborted meaning", "aborted meaning in banking", "what is aborted transaction", "aborted transaction meaning in hindi", "transaction aborted meaning in english"], "self_loops": [0], "tags": {"i": "transaction aborted meaning in hindi with example", "q": "g1GIdGFuxUNfPWWJ9MA_FLRn_jQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "call aborted meaning in hindi with example", "datetime": "2026-03-12 20:00:28.676343", "source": "google", "data": ["call aborted meaning in hindi with example", [["call aborted meaning in hindi with example", 0, [22, 30]], ["call aborted meaning", 0, [512, 390, 650]], ["call aborted meaning in hindi", 0, [512, 546]], ["call aborted", 0, [512, 546]]], {"i": "call aborted meaning in hindi with example", "q": "KbW8X8QnUJxMYqmHV_C75wx25vY", "t": {"bpc": false, "tlw": false}}], "suggests": ["call aborted meaning in hindi with example", "call aborted meaning", "call aborted meaning in hindi", "call aborted"], "self_loops": [0], "tags": {"i": "call aborted meaning in hindi with example", "q": "KbW8X8QnUJxMYqmHV_C75wx25vY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "payment aborted meaning in hindi with example", "datetime": "2026-03-12 20:00:29.935095", "source": "google", "data": ["payment aborted meaning in hindi with example", [["payment aborted meaning in hindi with example", 0, [22, 30]], ["aborted meaning in hindi with example", 0, [22, 30]], ["transaction aborted meaning in hindi with example", 0, [22, 30]], ["call aborted meaning in hindi with example", 0, [22, 30]], ["mission abort meaning in hindi with example", 0, [22, 30]], ["miscarriage meaning in hindi with example", 0, [22, 30]], ["payment aborted meaning", 0, [512, 390, 650]], ["aborted meaning in banking", 0, [512, 390, 650]], ["payment aborted meaning in hindi", 0, [512, 546]], ["payment aborted", 0, [512, 546]]], {"i": "payment aborted meaning in hindi with example", "q": "sLUv5wqAF8kmEemBKsxaEZrrQlQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["payment aborted meaning in hindi with example", "aborted meaning in hindi with example", "transaction aborted meaning in hindi with example", "call aborted meaning in hindi with example", "mission abort meaning in hindi with example", "miscarriage meaning in hindi with example", "payment aborted meaning", "aborted meaning in banking", "payment aborted meaning in hindi", "payment aborted"], "self_loops": [0], "tags": {"i": "payment aborted meaning in hindi with example", "q": "sLUv5wqAF8kmEemBKsxaEZrrQlQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "mission abort meaning in hindi with example", "datetime": "2026-03-12 20:00:31.130832", "source": "google", "data": ["mission abort meaning in hindi with example", [["mission abort meaning in hindi with example", 0, [22, 30]], ["mission meaning in hindi with example", 0, [512, 390, 650]], ["mission abort meaning", 0, [512, 390, 650]], ["mission abort meaning in urdu", 0, [512, 390, 650]], ["mission abort meaning in hindi", 0, [512, 546]], ["mission abort meaning in marathi", 0, [751]], ["abort mission definition", 0, [546, 649]], ["define abort mission", 0, [512, 546]]], {"i": "mission abort meaning in hindi with example", "q": "NDqDqsNn01FE6gt80WMoX_o3ZCY", "t": {"bpc": false, "tlw": false}}], "suggests": ["mission abort meaning in hindi with example", "mission meaning in hindi with example", "mission abort meaning", "mission abort meaning in urdu", "mission abort meaning in hindi", "mission abort meaning in marathi", "abort mission definition", "define abort mission"], "self_loops": [0], "tags": {"i": "mission abort meaning in hindi with example", "q": "NDqDqsNn01FE6gt80WMoX_o3ZCY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abort meaning in hindi with example in english", "datetime": "2026-03-12 20:00:32.585036", "source": "google", "data": ["abort meaning in hindi with example in english", [["abort meaning in hindi with example in english", 0, [22, 30]], ["abort definition english", 0, [512, 390, 650]], ["abort meaning in english", 0, [512, 390, 650]], ["brief meaning in hindi with example", 0, [512, 390, 650]], ["abort definition webster's", 0, [751]], ["abort definition verb", 0, [751]], ["abort meaning", 0, [512, 546]], ["abort in a sentence", 0, [512, 546]]], {"i": "abort meaning in hindi with example in english", "q": "VaAfbviLTT6T7VLJ5WMDQN4-EXo", "t": {"bpc": false, "tlw": false}}], "suggests": ["abort meaning in hindi with example in english", "abort definition english", "abort meaning in english", "brief meaning in hindi with example", "abort definition webster's", "abort definition verb", "abort meaning", "abort in a sentence"], "self_loops": [0], "tags": {"i": "abort meaning in hindi with example in english", "q": "VaAfbviLTT6T7VLJ5WMDQN4-EXo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "your transaction is aborted meaning in hindi with example", "datetime": "2026-03-12 20:00:33.670104", "source": "google", "data": ["your transaction is aborted meaning in hindi with example", [["your transaction is aborted meaning in hindi with example", 0, [22, 30]], ["transaction aborted meaning", 0, [512, 390, 650]], ["what is aborted transaction", 0, [512, 390, 650]], ["aborted meaning in banking", 0, [512, 390, 650]], ["your transaction is aborted meaning in hindi", 0, [512, 546]], ["contact your bank transaction aborted meaning in hindi", 0, [512, 546]]], {"i": "your transaction is aborted meaning in hindi with example", "q": "LfdvcgIdQIZLMYdg8O7L0_x6zvs", "t": {"bpc": false, "tlw": false}}], "suggests": ["your transaction is aborted meaning in hindi with example", "transaction aborted meaning", "what is aborted transaction", "aborted meaning in banking", "your transaction is aborted meaning in hindi", "contact your bank transaction aborted meaning in hindi"], "self_loops": [0], "tags": {"i": "your transaction is aborted meaning in hindi with example", "q": "LfdvcgIdQIZLMYdg8O7L0_x6zvs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "user aborted meaning in hindi example", "datetime": "2026-03-12 20:00:35.160485", "source": "google", "data": ["user aborted meaning in hindi example", [["user aborted meaning in hindi example", 0, [22, 30]], ["user aborted meaning", 0, [512, 546]], ["what does user aborted mean", 0, [751]], ["user aborted credit card", 0, [546, 649]], ["aborted mean", 0, [512, 546]]], {"i": "user aborted meaning in hindi example", "q": "tt06AqiiKCwtywWf1bcIHxNTs7E", "t": {"bpc": false, "tlw": false}}], "suggests": ["user aborted meaning in hindi example", "user aborted meaning", "what does user aborted mean", "user aborted credit card", "aborted mean"], "self_loops": [0], "tags": {"i": "user aborted meaning in hindi example", "q": "tt06AqiiKCwtywWf1bcIHxNTs7E", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion meaning in hindi and examples", "datetime": "2026-03-12 20:00:36.584747", "source": "google", "data": ["spontaneous abortion meaning in hindi and examples", [["spontaneous abortion meaning in hindi and examples", 0, [22, 30]], ["induced abortion meaning in hindi and examples", 0, [22, 30]], ["what is a spontaneous abortion mean", 0, [512, 390, 650]], ["what is the definition of spontaneous abortion", 0, [512, 390, 650]], ["spontaneous abortion medical definition", 0, [512, 390, 650]], ["spontaneous abortion abbreviation", 0, [512, 390, 650]], ["what does a spontaneous abortion mean", 0, [512, 390, 650]], ["spontaneous abortion def", 0, [751]], ["spontaneous abortion synonyms", 0, [546, 649]], ["spontaneous abortion acronym", 0, [751]]], {"i": "spontaneous abortion meaning in hindi and examples", "q": "c7g8UDomtGz2qGpaItSu9Cl4nWQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["spontaneous abortion meaning in hindi and examples", "induced abortion meaning in hindi and examples", "what is a spontaneous abortion mean", "what is the definition of spontaneous abortion", "spontaneous abortion medical definition", "spontaneous abortion abbreviation", "what does a spontaneous abortion mean", "spontaneous abortion def", "spontaneous abortion synonyms", "spontaneous abortion acronym"], "self_loops": [0], "tags": {"i": "spontaneous abortion meaning in hindi and examples", "q": "c7g8UDomtGz2qGpaItSu9Cl4nWQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "induced abortion meaning in hindi and examples", "datetime": "2026-03-12 20:00:37.529329", "source": "google", "data": ["induced abortion meaning in hindi and examples", [["induced abortion meaning in hindi and examples", 0, [22, 30]], ["spontaneous abortion meaning in hindi and examples", 0, [22, 30]], ["induced abortion meaning in english", 0, [512, 390, 650]], ["abortion meaning in hindi definition", 0, [512, 390, 650]], ["induced abortion meaning", 0, [512, 390, 650]], ["induced abortion meaning in urdu", 0, [512, 390, 650]], ["what is the difference between spontaneous and induced abortion", 0, [512, 390, 650]], ["induced abortion definition dictionary", 0, [546, 649]], ["induced abortion medical definition", 0, [512, 546]], ["induced abortion def", 0, [546, 649]]], {"i": "induced abortion meaning in hindi and examples", "q": "kb-yzIOpi4an7QnTFMrC90yIeSQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["induced abortion meaning in hindi and examples", "spontaneous abortion meaning in hindi and examples", "induced abortion meaning in english", "abortion meaning in hindi definition", "induced abortion meaning", "induced abortion meaning in urdu", "what is the difference between spontaneous and induced abortion", "induced abortion definition dictionary", "induced abortion medical definition", "induced abortion def"], "self_loops": [0], "tags": {"i": "induced abortion meaning in hindi and examples", "q": "kb-yzIOpi4an7QnTFMrC90yIeSQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does abortion mean in english", "datetime": "2026-03-12 20:00:38.571531", "source": "google", "data": ["what does abortion mean in english", [["what does abortion mean in english", 0, [22, 30]], ["what does abortion mean in spanish", 0, [22, 30]], ["what does pro abortion mean in english", 0, [22, 30]], ["what is the meaning of abortion in english", 0, [512, 390, 650]], ["what does the word abortion mean", 0, [512, 390, 650]], ["what does abortion mean", 0, [512, 390, 650]], ["what aborted mean", 0, [512, 390, 650]], ["what does abortion mean in latin", 0, [512, 546]], ["what does abortion mean in the bible", 0, [512, 546]], ["what does aborto mean in english", 0, [751]]], {"i": "what does abortion mean in english", "q": "iwvED0fyOp4KTpcxiuPSXDKSuLA", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does abortion mean in english", "what does abortion mean in spanish", "what does pro abortion mean in english", "what is the meaning of abortion in english", "what does the word abortion mean", "what does abortion mean", "what aborted mean", "what does abortion mean in latin", "what does abortion mean in the bible", "what does aborto mean in english"], "self_loops": [0], "tags": {"i": "what does abortion mean in english", "q": "iwvED0fyOp4KTpcxiuPSXDKSuLA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable abortion meaning in hindi pdf", "datetime": "2026-03-12 20:00:39.453875", "source": "google", "data": ["inevitable abortion meaning in hindi pdf", [["inevitable abortion meaning in hindi pdf", 0, [512]], ["incomplete abortion meaning in hindi pdf", 0, [22, 30]], ["inevitable abortion definition", 0, [512, 390, 650]], ["abortion meaning in hindi definition", 0, [512, 390, 650]], ["anti abortion meaning", 0, [512, 390, 650]], ["inevitable abortion icd-10", 0, [512, 546]], ["inevitable.abortion", 0, [512, 546]], ["inevitable abortion hindi", 0, [512, 546]], ["inevitable meaning pronunciation", 0, [512, 546]]], {"i": "inevitable abortion meaning in hindi pdf", "q": "lGpLD0T6dB936P3cuZrokMQQtew", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["inevitable abortion meaning in hindi pdf", "incomplete abortion meaning in hindi pdf", "inevitable abortion definition", "abortion meaning in hindi definition", "anti abortion meaning", "inevitable abortion icd-10", "inevitable.abortion", "inevitable abortion hindi", "inevitable meaning pronunciation"], "self_loops": [0], "tags": {"i": "inevitable abortion meaning in hindi pdf", "q": "lGpLD0T6dB936P3cuZrokMQQtew", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion meaning in hindi pdf", "datetime": "2026-03-12 20:00:40.783153", "source": "google", "data": ["spontaneous abortion meaning in hindi pdf", [["spontaneous abortion meaning in hindi pdf", 0, [22, 30]], ["induced abortion meaning in hindi pdf", 0, [22, 30]], ["miscarriage meaning in hindi pdf", 0, [22, 30]], ["abortion meaning in hindi definition", 0, [512, 390, 650]], ["what is the definition of spontaneous abortion", 0, [512, 390, 650]], ["spontaneous abortion medical definition", 0, [512, 390, 650]], ["what is a spontaneous abortion mean", 0, [512, 390, 650]], ["spontaneous abortion medical code", 0, [751]], ["spontaneous abortion abbreviation", 0, [512, 546]], ["spontaneous abortion medical term", 0, [512, 546]]], {"i": "spontaneous abortion meaning in hindi pdf", "q": "TcaJnC7UN8q3F4vgl_xxsgbk1II", "t": {"bpc": false, "tlw": false}}], "suggests": ["spontaneous abortion meaning in hindi pdf", "induced abortion meaning in hindi pdf", "miscarriage meaning in hindi pdf", "abortion meaning in hindi definition", "what is the definition of spontaneous abortion", "spontaneous abortion medical definition", "what is a spontaneous abortion mean", "spontaneous abortion medical code", "spontaneous abortion abbreviation", "spontaneous abortion medical term"], "self_loops": [0], "tags": {"i": "spontaneous abortion meaning in hindi pdf", "q": "TcaJnC7UN8q3F4vgl_xxsgbk1II", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "induced abortion meaning in hindi pdf", "datetime": "2026-03-12 20:00:41.999586", "source": "google", "data": ["induced abortion meaning in hindi pdf", [["induced abortion meaning in hindi pdf", 0, [22, 30]], ["spontaneous abortion meaning in hindi pdf", 0, [22, 30]], ["induced abortion meaning in english", 0, [512, 390, 650]], ["abortion meaning in hindi definition", 0, [512, 390, 650]], ["abortion definition in india", 0, [512, 390, 650]], ["definition of abortion in ethiopia", 0, [512, 390, 650]], ["induced abortion medical definition", 0, [512, 546]], ["induced abortion definition dictionary", 0, [546, 649]], ["induced abortion icd-10", 0, [751]], ["induced abortion in hindi", 0, [512, 546]]], {"i": "induced abortion meaning in hindi pdf", "q": "m56d7MXmkajV7fJSH0G6FtG88zA", "t": {"bpc": false, "tlw": false}}], "suggests": ["induced abortion meaning in hindi pdf", "spontaneous abortion meaning in hindi pdf", "induced abortion meaning in english", "abortion meaning in hindi definition", "abortion definition in india", "definition of abortion in ethiopia", "induced abortion medical definition", "induced abortion definition dictionary", "induced abortion icd-10", "induced abortion in hindi"], "self_loops": [0], "tags": {"i": "induced abortion meaning in hindi pdf", "q": "m56d7MXmkajV7fJSH0G6FtG88zA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "incomplete abortion meaning in hindi pdf", "datetime": "2026-03-12 20:00:43.405993", "source": "google", "data": ["incomplete abortion meaning in hindi pdf", [["incomplete abortion meaning in hindi pdf", 0, [22, 30]], ["inevitable abortion meaning in hindi pdf", 0, [22, 30]], ["spontaneous abortion meaning in hindi pdf", 0, [22, 30]], ["miscarriage meaning in hindi pdf", 0, [22, 30]], ["abortion meaning in hindi definition", 0, [512, 390, 650]], ["incomplete abortion icd-10", 0, [512, 546]], ["incomplete medical abortion icd 10", 0, [512, 546]], ["incomplete abortion usmle", 0, [751]], ["incomplete abortion definition", 0, [512, 546]], ["incomplete abortion in ultrasound", 0, [512, 546]]], {"i": "incomplete abortion meaning in hindi pdf", "q": "8vxZEIku-dbsgnf7PPHZJ6gr_ME", "t": {"bpc": false, "tlw": false}}], "suggests": ["incomplete abortion meaning in hindi pdf", "inevitable abortion meaning in hindi pdf", "spontaneous abortion meaning in hindi pdf", "miscarriage meaning in hindi pdf", "abortion meaning in hindi definition", "incomplete abortion icd-10", "incomplete medical abortion icd 10", "incomplete abortion usmle", "incomplete abortion definition", "incomplete abortion in ultrasound"], "self_loops": [0], "tags": {"i": "incomplete abortion meaning in hindi pdf", "q": "8vxZEIku-dbsgnf7PPHZJ6gr_ME", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion medical meaning", "datetime": "2026-03-12 20:00:44.789277", "source": "google", "data": ["abortion medical meaning", [["abortion medical meaning", 0, [512]], ["medical abortion meaning in hindi", 0, [22, 30]], ["medical abortion meaning in english", 0, [22, 30]], ["medical abortion meaning in nepali", 0, [22, 30]], ["medical abortion meaning in punjabi", 0, [22, 30]], ["miscarriage medical meaning", 0, [22, 30]], ["abortion medical term", 0, [22, 30]], ["abortion medical terminology", 0, [22, 30]], ["abortion medical term name", 0, [22, 30]], ["abortion medical definition according to who", 0, [22, 30]]], {"i": "abortion medical meaning", "q": "zhKjXZNWJwzYNJu84XmDca-LCSk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion medical meaning", "medical abortion meaning in hindi", "medical abortion meaning in english", "medical abortion meaning in nepali", "medical abortion meaning in punjabi", "miscarriage medical meaning", "abortion medical term", "abortion medical terminology", "abortion medical term name", "abortion medical definition according to who"], "self_loops": [0], "tags": {"i": "abortion medical meaning", "q": "zhKjXZNWJwzYNJu84XmDca-LCSk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is another name for means", "datetime": "2026-03-12 20:00:45.687857", "source": "google", "data": ["what is another name for means", [["what is another name for means", 0, [512]], ["what is another word for means", 0, [22, 30]], ["what is another word for means in an essay", 0, [22, 30]], ["what is another word for means a lot", 0, [22, 30]], ["what is another name for mean in statistics", 0, [22, 30]], ["what is another name for mean in mathematics", 0, [22, 30]], ["what is another name for definition", 0, [22, 30]], ["what is another word for mean in math", 0, [22, 30]], ["what is another word for mean in statistics", 0, [22, 30]], ["what is another word for meaning making", 0, [22, 30]]], {"i": "what is another name for means", "q": "a4NkRAjlDQeiu5ttDQpMyBQ7KCg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["what is another name for means", "what is another word for means", "what is another word for means in an essay", "what is another word for means a lot", "what is another name for mean in statistics", "what is another name for mean in mathematics", "what is another name for definition", "what is another word for mean in math", "what is another word for mean in statistics", "what is another word for meaning making"], "self_loops": [0], "tags": {"i": "what is another name for means", "q": "a4NkRAjlDQeiu5ttDQpMyBQ7KCg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "termination meaning in urdu", "datetime": "2026-03-12 20:00:46.573866", "source": "google", "data": ["termination meaning in urdu", [["termination meaning in urdu", 0, [512]], ["termination meaning in urdu with example", 0, [512]], ["termination meaning in urdu with example pdf", 0, [22, 30]], ["termination meaning in urdu pdf", 0, [22, 30]], ["terminate meaning in urdu language", 0, [22, 30]], ["cessation meaning in urdu", 0, [22, 30]], ["dismissal meaning in urdu", 0, [22, 30]], ["cessation meaning in urdu with example", 0, [22, 30]], ["dismissal meaning in urdu with example", 0, [22, 30]], ["dismissal meaning in urdu with example pdf", 0, [22, 30]]], {"i": "termination meaning in urdu", "q": "8_z7Ice2qbFN76K8U0Y--oC-tII", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["termination meaning in urdu", "termination meaning in urdu with example", "termination meaning in urdu with example pdf", "termination meaning in urdu pdf", "terminate meaning in urdu language", "cessation meaning in urdu", "dismissal meaning in urdu", "cessation meaning in urdu with example", "dismissal meaning in urdu with example", "dismissal meaning in urdu with example pdf"], "self_loops": [0], "tags": {"i": "termination meaning in urdu", "q": "8_z7Ice2qbFN76K8U0Y--oC-tII", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abort definition verb", "datetime": "2026-03-12 20:00:47.716969", "source": "google", "data": ["abort definition verb", [["abort definition verb", 0, [22, 30]], ["abortion as a verb", 0, [22, 30]], ["stop verb definition", 0, [22, 30]], ["abort definition english", 0, [512, 390, 650]], ["abort example sentence", 0, [512, 390, 650]], ["abort meaning", 0, [512, 390, 650]], ["abort definition noun", 0, [546, 649]], ["abort definition meaning", 0, [512, 546]], ["abort definition webster's", 0, [751]]], {"i": "abort definition verb", "q": "4niCyh7tcRz_bMc6w4WMmgq0gzQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["abort definition verb", "abortion as a verb", "stop verb definition", "abort definition english", "abort example sentence", "abort meaning", "abort definition noun", "abort definition meaning", "abort definition webster's"], "self_loops": [0], "tags": {"i": "abort definition verb", "q": "4niCyh7tcRz_bMc6w4WMmgq0gzQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion translate in hindi", "datetime": "2026-03-12 20:00:49.197218", "source": "google", "data": ["missed abortion translate in hindi", [["missed abortion translate in hindi", 0, [22, 30]], ["spontaneous abortion meaning in hindi", 0, [22, 30]], ["incomplete abortion meaning in hindi", 0, [22, 30]], ["spontaneous abortion meaning in hindi and examples", 0, [22, 30]], ["spontaneous abortion meaning in hindi pdf", 0, [22, 30]], ["incomplete abortion meaning in hindi pdf", 0, [22, 30]], ["likely missed abortion meaning in hindi", 0, [22, 30]], ["so missed abortion meaning in hindi", 0, [22, 30]], ["fso missed abortion meaning in hindi", 0, [22, 30]], ["suggestive of missed abortion meaning in hindi", 0, [22, 30]]], {"i": "missed abortion translate in hindi", "q": "b-BqipCC1EMpEY_C2GDDFgJKWzc", "t": {"bpc": false, "tlw": false}}], "suggests": ["missed abortion translate in hindi", "spontaneous abortion meaning in hindi", "incomplete abortion meaning in hindi", "spontaneous abortion meaning in hindi and examples", "spontaneous abortion meaning in hindi pdf", "incomplete abortion meaning in hindi pdf", "likely missed abortion meaning in hindi", "so missed abortion meaning in hindi", "fso missed abortion meaning in hindi", "suggestive of missed abortion meaning in hindi"], "self_loops": [0], "tags": {"i": "missed abortion translate in hindi", "q": "b-BqipCC1EMpEY_C2GDDFgJKWzc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "spontaneous abortion meaning in hindi", "datetime": "2026-03-12 20:00:50.462392", "source": "google", "data": ["spontaneous abortion meaning in hindi", [["spontaneous abortion meaning in hindi", 0, [512]], ["spontaneous abortion meaning in hindi and examples", 0, [22, 30]], ["spontaneous abortion meaning in hindi pdf", 0, [22, 30]], ["induced abortion meaning in hindi", 0, [22, 30]], ["spontaneous abortion definition in hindi", 0, [22, 30]], ["natural abortion meaning in hindi", 0, [22, 30]], ["spontaneous miscarriage meaning in hindi", 0, [22, 30]], ["induced abortion meaning in hindi and examples", 0, [22, 30]], ["induced abortion meaning in hindi pdf", 0, [22, 30]], ["miscarriage abortion meaning in hindi", 0, [22, 30]]], {"i": "spontaneous abortion meaning in hindi", "q": "Gq3nyOXl9PAsZ-uHJrnOh1DQAtU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["spontaneous abortion meaning in hindi", "spontaneous abortion meaning in hindi and examples", "spontaneous abortion meaning in hindi pdf", "induced abortion meaning in hindi", "spontaneous abortion definition in hindi", "natural abortion meaning in hindi", "spontaneous miscarriage meaning in hindi", "induced abortion meaning in hindi and examples", "induced abortion meaning in hindi pdf", "miscarriage abortion meaning in hindi"], "self_loops": [0], "tags": {"i": "spontaneous abortion meaning in hindi", "q": "Gq3nyOXl9PAsZ-uHJrnOh1DQAtU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "incomplete abortion meaning in hindi", "datetime": "2026-03-12 20:00:51.528211", "source": "google", "data": ["incomplete abortion meaning in hindi", [["incomplete abortion meaning in hindi", 0, [512]], ["incomplete abortion meaning in hindi pdf", 0, [22, 30]], ["missed abortion meaning in hindi", 0, [22, 30]], ["spontaneous abortion meaning in hindi", 0, [22, 30]], ["inevitable abortion meaning in hindi", 0, [22, 30]], ["incomplete abortion definition in hindi", 0, [22, 30]], ["inevitable abortion meaning in hindi pdf", 0, [22, 30]], ["spontaneous abortion meaning in hindi and examples", 0, [22, 30]], ["spontaneous abortion meaning in hindi pdf", 0, [22, 30]], ["spontaneous abortion definition in hindi", 0, [22, 30]]], {"i": "incomplete abortion meaning in hindi", "q": "Pe-et_NA-6IzkHIsj2A_Y-hSUSQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["incomplete abortion meaning in hindi", "incomplete abortion meaning in hindi pdf", "missed abortion meaning in hindi", "spontaneous abortion meaning in hindi", "inevitable abortion meaning in hindi", "incomplete abortion definition in hindi", "inevitable abortion meaning in hindi pdf", "spontaneous abortion meaning in hindi and examples", "spontaneous abortion meaning in hindi pdf", "spontaneous abortion definition in hindi"], "self_loops": [0], "tags": {"i": "incomplete abortion meaning in hindi", "q": "Pe-et_NA-6IzkHIsj2A_Y-hSUSQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed miscarriage meaning in hindi", "datetime": "2026-03-12 20:00:52.637980", "source": "google", "data": ["missed miscarriage meaning in hindi", [["missed miscarriage meaning in hindi", 0, [512]], ["missed miscarriage meaning in urdu in hindi", 0, [22, 30]], ["missed miscarriage symptoms in hindi", 0, [512, 390, 650]], ["late miscarriage meaning", 0, [512, 390, 650]], ["missed miscarriage in hindi", 0, [512, 390, 650]], ["missed miscarriage meaning in tamil", 0, [512, 390, 650]], ["missed miscarriage medical term", 0, [512, 546]], ["missed miscarriage definition", 0, [512, 546]], ["missed miscarriage in spanish", 0, [512, 546]], ["missed miscarriage in second trimester", 0, [512, 546]]], {"i": "missed miscarriage meaning in hindi", "q": "haRRa1Bvid2hPuBv2BcZn4wfiWM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["missed miscarriage meaning in hindi", "missed miscarriage meaning in urdu in hindi", "missed miscarriage symptoms in hindi", "late miscarriage meaning", "missed miscarriage in hindi", "missed miscarriage meaning in tamil", "missed miscarriage medical term", "missed miscarriage definition", "missed miscarriage in spanish", "missed miscarriage in second trimester"], "self_loops": [0], "tags": {"i": "missed miscarriage meaning in hindi", "q": "haRRa1Bvid2hPuBv2BcZn4wfiWM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "missed abortion definition in hindi", "datetime": "2026-03-12 20:00:53.448494", "source": "google", "data": ["missed abortion definition in hindi", [["missed abortion definition in hindi", 0, [512]], ["missed abortion meaning in hindi", 0, [22, 30]], ["spontaneous abortion definition in hindi", 0, [22, 30]], ["incomplete abortion definition in hindi", 0, [22, 30]], ["spontaneous abortion meaning in hindi", 0, [22, 30]], ["incomplete abortion meaning in hindi", 0, [22, 30]], ["spontaneous abortion meaning in hindi and examples", 0, [22, 30]], ["spontaneous abortion meaning in hindi pdf", 0, [22, 30]], ["incomplete abortion meaning in hindi pdf", 0, [22, 30]], ["likely missed abortion meaning in hindi", 0, [22, 30]]], {"i": "missed abortion definition in hindi", "q": "3HmgXx_F7sHDOqJtF1wruoFr2Qc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["missed abortion definition in hindi", "missed abortion meaning in hindi", "spontaneous abortion definition in hindi", "incomplete abortion definition in hindi", "spontaneous abortion meaning in hindi", "incomplete abortion meaning in hindi", "spontaneous abortion meaning in hindi and examples", "spontaneous abortion meaning in hindi pdf", "incomplete abortion meaning in hindi pdf", "likely missed abortion meaning in hindi"], "self_loops": [0], "tags": {"i": "missed abortion definition in hindi", "q": "3HmgXx_F7sHDOqJtF1wruoFr2Qc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "likely missed abortion meaning in hindi", "datetime": "2026-03-12 20:00:54.923700", "source": "google", "data": ["likely missed abortion meaning in hindi", [["likely missed abortion meaning in hindi", 0, [512]], ["missed abortion meaning in hindi", 0, [22, 30]], ["so missed abortion meaning in hindi", 0, [22, 30]], ["fso missed abortion meaning in hindi", 0, [22, 30]], ["spontaneous abortion meaning in hindi", 0, [22, 30]], ["incomplete abortion meaning in hindi", 0, [22, 30]], ["missed miscarriage meaning in hindi", 0, [22, 30]], ["missed abortion definition in hindi", 0, [22, 30]], ["spontaneous abortion meaning in hindi and examples", 0, [22, 30]], ["spontaneous abortion meaning in hindi pdf", 0, [22, 30]]], {"i": "likely missed abortion meaning in hindi", "q": "zsgs1QsfX_5YCQ5EhHk2SfRLXmk", "t": {"bpc": false, "tlw": false}}], "suggests": ["likely missed abortion meaning in hindi", "missed abortion meaning in hindi", "so missed abortion meaning in hindi", "fso missed abortion meaning in hindi", "spontaneous abortion meaning in hindi", "incomplete abortion meaning in hindi", "missed miscarriage meaning in hindi", "missed abortion definition in hindi", "spontaneous abortion meaning in hindi and examples", "spontaneous abortion meaning in hindi pdf"], "self_loops": [0], "tags": {"i": "likely missed abortion meaning in hindi", "q": "zsgs1QsfX_5YCQ5EhHk2SfRLXmk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "so missed abortion meaning in hindi", "datetime": "2026-03-12 20:00:55.993362", "source": "google", "data": ["so missed abortion meaning in hindi", [["so missed abortion meaning in hindi", 0, [22, 30]], ["finding are so missed abortion meaning in hindi", 0, [22, 30]], ["s/o missed abortion means", 0, [512, 390, 650]], ["missed abortion meaning in tamil", 0, [512, 390, 650]], ["what is mean by missed abortion", 0, [512, 390, 650]], ["missed abortion meaning in telugu", 0, [512, 390, 650]], ["f/s/o missed abortion meaning", 0, [512, 390, 650]], ["what does missed abortion means in pregnancy", 0, [546, 649]], ["what does missed abortion mean in medicine", 0, [512, 546]], ["missed abortion medical definition", 0, [512, 546]]], {"i": "so missed abortion meaning in hindi", "q": "-LmHgR3oVzAXnksGuB5gZV5C8ck", "t": {"bpc": false, "tlw": false}}], "suggests": ["so missed abortion meaning in hindi", "finding are so missed abortion meaning in hindi", "s/o missed abortion means", "missed abortion meaning in tamil", "what is mean by missed abortion", "missed abortion meaning in telugu", "f/s/o missed abortion meaning", "what does missed abortion means in pregnancy", "what does missed abortion mean in medicine", "missed abortion medical definition"], "self_loops": [0], "tags": {"i": "so missed abortion meaning in hindi", "q": "-LmHgR3oVzAXnksGuB5gZV5C8ck", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "inevitable abortion meaning in hindi", "datetime": "2026-03-12 20:00:56.946254", "source": "google", "data": ["inevitable abortion meaning in hindi", [["inevitable abortion meaning in hindi", 0, [512]], ["inevitable abortion meaning in hindi pdf", 0, [512]], ["missed abortion meaning in hindi", 0, [22, 30]], ["threatened abortion meaning in hindi", 0, [22, 30]], ["incomplete abortion meaning in hindi", 0, [22, 30]], ["incomplete abortion meaning in hindi pdf", 0, [22, 30]], ["incomplete abortion definition in hindi", 0, [22, 30]], ["missed abortion definition in hindi", 0, [22, 30]], ["threatened abortion definition in hindi wikipedia", 0, [22, 30]], ["likely missed abortion meaning in hindi", 0, [22, 30]]], {"i": "inevitable abortion meaning in hindi", "q": "9-3t0OeF--OpBOE5fBFR9hgY3UY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["inevitable abortion meaning in hindi", "inevitable abortion meaning in hindi pdf", "missed abortion meaning in hindi", "threatened abortion meaning in hindi", "incomplete abortion meaning in hindi", "incomplete abortion meaning in hindi pdf", "incomplete abortion definition in hindi", "missed abortion definition in hindi", "threatened abortion definition in hindi wikipedia", "likely missed abortion meaning in hindi"], "self_loops": [0], "tags": {"i": "inevitable abortion meaning in hindi", "q": "9-3t0OeF--OpBOE5fBFR9hgY3UY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "threatened abortion definition in hindi wikipedia", "datetime": "2026-03-12 20:00:58.239211", "source": "google", "data": ["threatened abortion definition in hindi wikipedia", [["threatened abortion definition in hindi wikipedia", 0, [22, 30]], ["what do you mean by threatened abortion", 0, [512, 390, 650]], ["threatened abortion meaning in tamil", 0, [512, 390, 650]], ["abortion meaning in hindi definition", 0, [512, 390, 650]], ["threatened abortion in hindi", 0, [512, 546]], ["threatened abortion definition in hindi", 0, [512, 546]], ["threatened abortion bangla", 0, [512, 546]], ["threatened abortion meaning in hindi", 0, [512, 546]], ["threatened abortion definition", 0, [512, 546]]], {"i": "threatened abortion definition in hindi wikipedia", "q": "OBkwDcnwCjv11OkJVShv6VVeKT4", "t": {"bpc": false, "tlw": false}}], "suggests": ["threatened abortion definition in hindi wikipedia", "what do you mean by threatened abortion", "threatened abortion meaning in tamil", "abortion meaning in hindi definition", "threatened abortion in hindi", "threatened abortion definition in hindi", "threatened abortion bangla", "threatened abortion meaning in hindi", "threatened abortion definition"], "self_loops": [0], "tags": {"i": "threatened abortion definition in hindi wikipedia", "q": "OBkwDcnwCjv11OkJVShv6VVeKT4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "apa itu threatened abortion", "datetime": "2026-03-12 20:00:59.351189", "source": "google", "data": ["apa itu threatened abortion", [["apa itu threatened abortion", 0, [512]], ["apa itu threatened miscarriage", 0, [22, 30]], ["apa yang dimaksud dengan threatened abortion", 0, [22, 30]], ["apa itu diagnosa threatened abortion", 0, [22, 30]], ["apa itu diagnosis threatened abortion", 0, [22, 30]], ["apa arti diagnosa threatened abortion", 0, [22, 30]], ["apa arti dari threatened abortion", 0, [22, 30]], ["what do you mean by threatened abortion", 0, [512, 390, 650]], ["types of abortion threatened", 0, [512, 390, 650]], ["what is threatened abortion", 0, [512, 390, 650]]], {"i": "apa itu threatened abortion", "q": "70ct2HjY9GftcbznaeK5UWOXaN0", "t": {"bpc": false, "tlw": false}}], "suggests": ["apa itu threatened abortion", "apa itu threatened miscarriage", "apa yang dimaksud dengan threatened abortion", "apa itu diagnosa threatened abortion", "apa itu diagnosis threatened abortion", "apa arti diagnosa threatened abortion", "apa arti dari threatened abortion", "what do you mean by threatened abortion", "types of abortion threatened", "what is threatened abortion"], "self_loops": [0], "tags": {"i": "apa itu threatened abortion", "q": "70ct2HjY9GftcbznaeK5UWOXaN0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion mentioned in the bible anywhere", "datetime": "2026-03-12 20:01:00.679224", "source": "google", "data": ["is abortion mentioned in the bible anywhere", [["is abortion mentioned in the bible anywhere", 0, [512]], ["is abortion mentioned in the bible", 0, [512, 390, 650]], ["is abortion even mentioned in the bible", 0, [512, 390, 650]], ["is abortion legal in the bible", 0, [512, 390, 650]], ["is abortion mentioned in the new testament", 0, [512, 546]], ["is abortion mentioned in the holy bible", 0, [751]], ["is abortion mentioned in the old testament", 0, [512, 546]]], {"i": "is abortion mentioned in the bible anywhere", "q": "1icZJumwA1YtfIxe6fSXETOu7J0", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion mentioned in the bible anywhere", "is abortion mentioned in the bible", "is abortion even mentioned in the bible", "is abortion legal in the bible", "is abortion mentioned in the new testament", "is abortion mentioned in the holy bible", "is abortion mentioned in the old testament"], "self_loops": [0], "tags": {"i": "is abortion mentioned in the bible anywhere", "q": "1icZJumwA1YtfIxe6fSXETOu7J0", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion discussed in the bible", "datetime": "2026-03-12 20:01:01.656052", "source": "google", "data": ["is abortion discussed in the bible", [["is abortion discussed in the bible", 0, [512]], ["is abortion mentioned in the bible", 0, [22, 30]], ["is abortion talked about in the bible", 0, [22, 30]], ["is abortion addressed in the bible", 0, [22, 30]], ["is abortion mentioned in the bible anywhere", 0, [22, 30]], ["is abortion described in the bible", 0, [22, 30]], ["where is abortion mentioned in the bible verse", 0, [22, 30]], ["is abortion actually mentioned in the bible", 0, [22, 30]], ["is abortion specifically mentioned in the bible", 0, [22, 30]], ["what is abortion considered in the bible", 0, [22, 30]]], {"i": "is abortion discussed in the bible", "q": "k0sictkCYI9NNAJhwCAbyP049_M", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion discussed in the bible", "is abortion mentioned in the bible", "is abortion talked about in the bible", "is abortion addressed in the bible", "is abortion mentioned in the bible anywhere", "is abortion described in the bible", "where is abortion mentioned in the bible verse", "is abortion actually mentioned in the bible", "is abortion specifically mentioned in the bible", "what is abortion considered in the bible"], "self_loops": [0], "tags": {"i": "is abortion discussed in the bible", "q": "k0sictkCYI9NNAJhwCAbyP049_M", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion referenced in the bible", "datetime": "2026-03-12 20:01:03.148848", "source": "google", "data": ["is abortion referenced in the bible", [["is abortion referenced in the bible", 0, [512]], ["is abortion mentioned in the bible", 0, [22, 30]], ["is abortion mentioned in the bible anywhere", 0, [22, 30]], ["where is abortion mentioned in the bible verse", 0, [22, 30]], ["is abortion actually mentioned in the bible", 0, [22, 30]], ["is abortion specifically mentioned in the bible", 0, [22, 30]], ["is abortion directly mentioned in the bible", 0, [22, 30]], ["is abortion referred to in the bible", 0, [22, 30]], ["is abortion mentioned in the christian bible", 0, [22, 30]], ["is abortion mentioned in the catholic bible", 0, [22, 30]]], {"i": "is abortion referenced in the bible", "q": "Feh52Yw0F-SLuBhmJDuQtCflGqE", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion referenced in the bible", "is abortion mentioned in the bible", "is abortion mentioned in the bible anywhere", "where is abortion mentioned in the bible verse", "is abortion actually mentioned in the bible", "is abortion specifically mentioned in the bible", "is abortion directly mentioned in the bible", "is abortion referred to in the bible", "is abortion mentioned in the christian bible", "is abortion mentioned in the catholic bible"], "self_loops": [0], "tags": {"i": "is abortion referenced in the bible", "q": "Feh52Yw0F-SLuBhmJDuQtCflGqE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion found in the bible", "datetime": "2026-03-12 20:01:04.062426", "source": "google", "data": ["is abortion found in the bible", [["is abortion found in the bible", 0, [22, 30]], ["is abortion mentioned in the bible", 0, [22, 30]], ["is abortion mentioned in the bible anywhere", 0, [22, 30]], ["is the word abortion found in the bible", 0, [22, 30]], ["where is abortion mentioned in the bible verse", 0, [22, 30]], ["is abortion actually mentioned in the bible", 0, [22, 30]], ["is abortion specifically mentioned in the bible", 0, [22, 30]], ["is abortion directly mentioned in the bible", 0, [22, 30]], ["is abortion mentioned in the christian bible", 0, [22, 30]], ["is abortion mentioned in the catholic bible", 0, [22, 30]]], {"i": "is abortion found in the bible", "q": "XknwiO2-UuTE4aUHIG4yVUOpG64", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion found in the bible", "is abortion mentioned in the bible", "is abortion mentioned in the bible anywhere", "is the word abortion found in the bible", "where is abortion mentioned in the bible verse", "is abortion actually mentioned in the bible", "is abortion specifically mentioned in the bible", "is abortion directly mentioned in the bible", "is abortion mentioned in the christian bible", "is abortion mentioned in the catholic bible"], "self_loops": [0], "tags": {"i": "is abortion found in the bible", "q": "XknwiO2-UuTE4aUHIG4yVUOpG64", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion referred to in the bible", "datetime": "2026-03-12 20:01:05.155556", "source": "google", "data": ["is abortion referred to in the bible", [["is abortion referred to in the bible", 0, [22, 30]], ["is abortion in the bible", 0, [22, 30]], ["is abortion in the bible kjv", 0, [22, 30]], ["is abortion in the bible a sin", 0, [22, 30]], ["is abortion in the bible reddit", 0, [22, 30]], ["is abortion mentioned in the bible", 0, [512, 390, 650]], ["is abortion even mentioned in the bible", 0, [512, 390, 650]], ["is abortion referenced in the bible", 0, [512, 546]]], {"i": "is abortion referred to in the bible", "q": "NZy3cnsJrWGVTojdTlw_zvHgve8", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion referred to in the bible", "is abortion in the bible", "is abortion in the bible kjv", "is abortion in the bible a sin", "is abortion in the bible reddit", "is abortion mentioned in the bible", "is abortion even mentioned in the bible", "is abortion referenced in the bible"], "self_loops": [0], "tags": {"i": "is abortion referred to in the bible", "q": "NZy3cnsJrWGVTojdTlw_zvHgve8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion described in the bible", "datetime": "2026-03-12 20:01:06.348043", "source": "google", "data": ["is abortion described in the bible", [["is abortion described in the bible", 0, [22, 30]], ["is abortion mentioned in the bible", 0, [22, 30]], ["is abortion discussed in the bible", 0, [22, 30]], ["is abortion mentioned in the bible anywhere", 0, [22, 30]], ["where is abortion mentioned in the bible verse", 0, [22, 30]], ["is abortion actually mentioned in the bible", 0, [22, 30]], ["is abortion specifically mentioned in the bible", 0, [22, 30]], ["is abortion directly mentioned in the bible", 0, [22, 30]], ["is abortion mentioned in the christian bible", 0, [22, 30]], ["is abortion mentioned in the catholic bible", 0, [22, 30]]], {"i": "is abortion described in the bible", "q": "rGqzi7jttqQfuby-CtzokzrR8Xc", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion described in the bible", "is abortion mentioned in the bible", "is abortion discussed in the bible", "is abortion mentioned in the bible anywhere", "where is abortion mentioned in the bible verse", "is abortion actually mentioned in the bible", "is abortion specifically mentioned in the bible", "is abortion directly mentioned in the bible", "is abortion mentioned in the christian bible", "is abortion mentioned in the catholic bible"], "self_loops": [0], "tags": {"i": "is abortion described in the bible", "q": "rGqzi7jttqQfuby-CtzokzrR8Xc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "where is abortion mentioned in the bible verse", "datetime": "2026-03-12 20:01:07.615967", "source": "google", "data": ["where is abortion mentioned in the bible verse", [["where is abortion mentioned in the bible verse", 0, [512]], ["is abortion mentioned in the bible", 0, [512, 390, 650]], ["is abortion even mentioned in the bible", 0, [512, 390, 650]], ["where does it mention abortion in the bible", 0, [512, 546]], ["is abortion mentioned anywhere in the bible", 0, [512, 546]]], {"i": "where is abortion mentioned in the bible verse", "q": "DBBraVAJCxIfzLN3jErA78Qjl3A", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["where is abortion mentioned in the bible verse", "is abortion mentioned in the bible", "is abortion even mentioned in the bible", "where does it mention abortion in the bible", "is abortion mentioned anywhere in the bible"], "self_loops": [0], "tags": {"i": "where is abortion mentioned in the bible verse", "q": "DBBraVAJCxIfzLN3jErA78Qjl3A", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion actually mentioned in the bible", "datetime": "2026-03-12 20:01:08.455288", "source": "google", "data": ["is abortion actually mentioned in the bible", [["is abortion actually mentioned in the bible", 0, [512]], ["is abortion mentioned in the bible", 0, [22, 30]], ["is abortion mentioned in the bible anywhere", 0, [22, 30]], ["is abortion actually in the bible", 0, [22, 30]], ["is abortion specifically mentioned in the bible", 0, [22, 30]], ["is abortion directly mentioned in the bible", 0, [22, 30]], ["is abortion discussed in the bible", 0, [22, 30]], ["is abortion referenced in the bible", 0, [22, 30]], ["is abortion found in the bible", 0, [22, 30]], ["is abortion described in the bible", 0, [22, 30]]], {"i": "is abortion actually mentioned in the bible", "q": "glLjIgWhG7UCI14Q2tGzOFuPnWU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion actually mentioned in the bible", "is abortion mentioned in the bible", "is abortion mentioned in the bible anywhere", "is abortion actually in the bible", "is abortion specifically mentioned in the bible", "is abortion directly mentioned in the bible", "is abortion discussed in the bible", "is abortion referenced in the bible", "is abortion found in the bible", "is abortion described in the bible"], "self_loops": [0], "tags": {"i": "is abortion actually mentioned in the bible", "q": "glLjIgWhG7UCI14Q2tGzOFuPnWU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion specifically mentioned in the bible", "datetime": "2026-03-12 20:01:09.322562", "source": "google", "data": ["is abortion specifically mentioned in the bible", [["is abortion specifically mentioned in the bible", 0, [512]], ["is abortion mentioned in the bible", 0, [512, 390, 650]], ["is abortion even mentioned in the bible", 0, [512, 390, 650]], ["what does the bible specifically say about abortion", 0, [512, 546]], ["does the bible specifically talk about abortion", 0, [512, 546]], ["does the bible specifically say abortion is wrong", 0, [751]]], {"i": "is abortion specifically mentioned in the bible", "q": "akC7d80jWy3CsgItdKk6UP2B79M", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion specifically mentioned in the bible", "is abortion mentioned in the bible", "is abortion even mentioned in the bible", "what does the bible specifically say about abortion", "does the bible specifically talk about abortion", "does the bible specifically say abortion is wrong"], "self_loops": [0], "tags": {"i": "is abortion specifically mentioned in the bible", "q": "akC7d80jWy3CsgItdKk6UP2B79M", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion ever okay in the bible", "datetime": "2026-03-12 20:01:10.256211", "source": "google", "data": ["is abortion ever okay in the bible", [["is abortion ever okay in the bible", 0, [22, 30]], ["is abortion okay in the bible", 0, [22, 30]], ["is abortion mentioned in the bible", 0, [512, 390, 650]], ["is abortion ever mentioned in the bible", 0, [512, 546]], ["is abortion ever okay", 0, [751]], ["is abortion ever ok", 0, [546, 649]]], {"i": "is abortion ever okay in the bible", "q": "ngyViQ8c5sr0xtLObgIx6r_7cXA", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion ever okay in the bible", "is abortion okay in the bible", "is abortion mentioned in the bible", "is abortion ever mentioned in the bible", "is abortion ever okay", "is abortion ever ok"], "self_loops": [0], "tags": {"i": "is abortion ever okay in the bible", "q": "ngyViQ8c5sr0xtLObgIx6r_7cXA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion ever justified in the bible", "datetime": "2026-03-12 20:01:11.233236", "source": "google", "data": ["is abortion ever justified in the bible", [["is abortion ever justified in the bible", 0, [22, 30]], ["is abortion acceptable in the bible", 0, [22, 30]], ["is abortion ever justified", 0, [512, 390, 650]], ["is abortion even mentioned in the bible", 0, [512, 390, 650]], ["is abortion mentioned in the bible", 0, [512, 390, 650]], ["is abortion legal in the bible", 0, [512, 390, 650]], ["is abortion ever mentioned in the bible", 0, [512, 546]]], {"i": "is abortion ever justified in the bible", "q": "yV26wThXjl1evuDpV23mr9Yvz_U", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion ever justified in the bible", "is abortion acceptable in the bible", "is abortion ever justified", "is abortion even mentioned in the bible", "is abortion mentioned in the bible", "is abortion legal in the bible", "is abortion ever mentioned in the bible"], "self_loops": [0], "tags": {"i": "is abortion ever justified in the bible", "q": "yV26wThXjl1evuDpV23mr9Yvz_U", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion legal in the bible", "datetime": "2026-03-12 20:01:12.650696", "source": "google", "data": ["is abortion legal in the bible", [["is abortion legal in the bible", 0, [512]], ["is abortion allowed in the bible", 0, [22, 30]], ["is abortion illegal in the bible", 0, [22, 30]], ["is abortion allowed in the old testament", 0, [22, 30]], ["abortion law in the bible", 0, [22, 30]], ["was abortion legal in biblical times", 0, [22, 30]], ["is abortion mentioned in the bible", 0, [512, 390, 650]], ["is abortion even mentioned in the bible", 0, [512, 390, 650]], ["is abortion in the bible at all", 0, [751]], ["is abortion in the bible kjv", 0, [751]]], {"i": "is abortion legal in the bible", "q": "tnAHKfoom4ouZ5ILe73v38MGH-c", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion legal in the bible", "is abortion allowed in the bible", "is abortion illegal in the bible", "is abortion allowed in the old testament", "abortion law in the bible", "was abortion legal in biblical times", "is abortion mentioned in the bible", "is abortion even mentioned in the bible", "is abortion in the bible at all", "is abortion in the bible kjv"], "self_loops": [0], "tags": {"i": "is abortion legal in the bible", "q": "tnAHKfoom4ouZ5ILe73v38MGH-c", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion ever mentioned in the bible", "datetime": "2026-03-12 20:01:13.562742", "source": "google", "data": ["is abortion ever mentioned in the bible", [["is abortion ever mentioned in the bible", 0, [512]], ["is abortion mentioned in the bible anywhere", 0, [22, 30]], ["is abortion actually mentioned in the bible", 0, [22, 30]], ["is abortion specifically mentioned in the bible", 0, [22, 30]], ["is abortion ever okay in the bible", 0, [22, 30]], ["is abortion directly mentioned in the bible", 0, [22, 30]], ["is abortion discussed in the bible", 0, [22, 30]], ["is abortion referenced in the bible", 0, [22, 30]], ["is abortion found in the bible", 0, [22, 30]], ["is abortion described in the bible", 0, [22, 30]]], {"i": "is abortion ever mentioned in the bible", "q": "WOMl8AuLvBvRwxJNGcifcGrmTpU", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion ever mentioned in the bible", "is abortion mentioned in the bible anywhere", "is abortion actually mentioned in the bible", "is abortion specifically mentioned in the bible", "is abortion ever okay in the bible", "is abortion directly mentioned in the bible", "is abortion discussed in the bible", "is abortion referenced in the bible", "is abortion found in the bible", "is abortion described in the bible"], "self_loops": [0], "tags": {"i": "is abortion ever mentioned in the bible", "q": "WOMl8AuLvBvRwxJNGcifcGrmTpU", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does abortion mean in hebrew", "datetime": "2026-03-12 20:01:14.724862", "source": "google", "data": ["what does abortion mean in hebrew", [["what does abortion mean in hebrew", 0, [512]], ["what does abortion mean in the bible", 0, [22, 30]], ["what does the word abortion mean", 0, [512, 390, 650]], ["what does abortion mean", 0, [512, 390, 650]], ["abortion meaning in hebrew", 0, [512, 546]], ["abortion in hebrew bible", 0, [751]]], {"i": "what does abortion mean in hebrew", "q": "a-VYYH0x7rPVI9XO-UGuD__j4Kc", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does abortion mean in hebrew", "what does abortion mean in the bible", "what does the word abortion mean", "what does abortion mean", "abortion meaning in hebrew", "abortion in hebrew bible"], "self_loops": [0], "tags": {"i": "what does abortion mean in hebrew", "q": "a-VYYH0x7rPVI9XO-UGuD__j4Kc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does abortion say in the bible", "datetime": "2026-03-12 20:01:15.695850", "source": "google", "data": ["what does abortion say in the bible", [["what does abortion say in the bible", 0, [512]], ["what does god say about abortion in the bible", 0, [22, 30]], ["what does jesus say about abortion in the bible", 0, [22, 30]], ["what does it say in the bible about abortion kjv", 0, [22, 30]], ["what does the bible say about abortion in the new testament", 0, [22, 30]], ["what does the bible say about abortion in the old testament", 0, [22, 30]], ["what does it say in the bible about having an abortion", 0, [22, 30]], ["is abortion mentioned in the bible", 0, [512, 390, 650]], ["is abortion even mentioned in the bible", 0, [512, 390, 650]]], {"i": "what does abortion say in the bible", "q": "57Js00R9FODKUXiM1RDP2CFKyvA", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does abortion say in the bible", "what does god say about abortion in the bible", "what does jesus say about abortion in the bible", "what does it say in the bible about abortion kjv", "what does the bible say about abortion in the new testament", "what does the bible say about abortion in the old testament", "what does it say in the bible about having an abortion", "is abortion mentioned in the bible", "is abortion even mentioned in the bible"], "self_loops": [0], "tags": {"i": "what does abortion say in the bible", "q": "57Js00R9FODKUXiM1RDP2CFKyvA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "definition of abortion in texas", "datetime": "2026-03-12 20:01:16.634345", "source": "google", "data": ["definition of abortion in texas", [["definition of abortion in texas", 0, [22, 30]], ["legal definition of abortion in texas", 0, [22, 30]], ["is abortion a felony in texas", 0, [512, 390, 650]], ["history of abortion in texas", 0, [512, 390, 650]], ["definition of abortion under texas law", 0, [751]], ["definition of abortion in kansas", 0, [751]]], {"i": "definition of abortion in texas", "q": "pKMJQXcgLBfAEykvrj8oESxUGNs", "t": {"bpc": false, "tlw": false}}], "suggests": ["definition of abortion in texas", "legal definition of abortion in texas", "is abortion a felony in texas", "history of abortion in texas", "definition of abortion under texas law", "definition of abortion in kansas"], "self_loops": [0], "tags": {"i": "definition of abortion in texas", "q": "pKMJQXcgLBfAEykvrj8oESxUGNs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "definition of abortion in kansas", "datetime": "2026-03-12 20:01:17.618018", "source": "google", "data": ["definition of abortion in kansas", [["definition of abortion in kansas law", 33, [160], {"a": "definition of abortion in ", "b": "kansas law"}], ["definition of abortion in kansas 2023", 33, [160], {"a": "definition of abortion in ", "b": "kansas 2023"}], ["definition of abortion in kansas state", 33, [160], {"a": "definition of abortion in ", "b": "kansas state"}], ["definition of abortion in kansas 2024", 33, [160], {"a": "definition of abortion in ", "b": "kansas 2024"}], ["definition of abortion in kansas supreme court", 33, [160], {"a": "definition of abortion in ", "b": "kansas supreme court"}], ["definition of abortion in kansas", 33, [299], {"a": "definition of abortion in ", "b": "kansas"}], ["definition of abortion in kansas city", 33, [299], {"a": "definition of abortion in ", "b": "kansas city"}], ["definition of abortion in kansas legal", 33, [671], {"a": "definition of abortion in ", "b": "kansas legal"}], ["definition of abortion in kansas 2021", 33, [671], {"a": "definition of abortion in ", "b": "kansas 2021"}], ["definition of abortion in kansas 2020", 33, [671], {"a": "definition of abortion in ", "b": "kansas 2020"}]], {"i": "definition of abortion in kansas", "q": "XU0igbyBHjZMNHw002NBZ_fJgAc", "t": {"bpc": false, "tlw": false}}], "suggests": ["definition of abortion in kansas law", "definition of abortion in kansas 2023", "definition of abortion in kansas state", "definition of abortion in kansas 2024", "definition of abortion in kansas supreme court", "definition of abortion in kansas", "definition of abortion in kansas city", "definition of abortion in kansas legal", "definition of abortion in kansas 2021", "definition of abortion in kansas 2020"], "self_loops": [5], "tags": {"i": "definition of abortion in kansas", "q": "XU0igbyBHjZMNHw002NBZ_fJgAc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "origin of abortion in the united states", "datetime": "2026-03-12 20:01:18.879977", "source": "google", "data": ["origin of abortion in the united states", [["origin of abortion in the united states", 0, [22, 30]], ["history of abortion in the united states", 0, [22, 30]], ["history of abortion in the united states timeline", 0, [22, 30]], ["history of abortion in the united states scholarly articles", 0, [22, 30]], ["history of abortion in the united states book", 0, [22, 30]], ["history of abortion laws in the united states", 0, [22, 30]], ["history of abortion rights in the united states", 0, [22, 30]], ["history of abortion legislation in the united states", 0, [22, 30]], ["legal history of abortion in the united states", 0, [22, 30]], ["history of abortion policy in the united states", 0, [22, 30]]], {"i": "origin of abortion in the united states", "q": "YdTaR99ViklzILjo3VqWOq2ckRI", "t": {"bpc": false, "tlw": false}}], "suggests": ["origin of abortion in the united states", "history of abortion in the united states", "history of abortion in the united states timeline", "history of abortion in the united states scholarly articles", "history of abortion in the united states book", "history of abortion laws in the united states", "history of abortion rights in the united states", "history of abortion legislation in the united states", "legal history of abortion in the united states", "history of abortion policy in the united states"], "self_loops": [0], "tags": {"i": "origin of abortion in the united states", "q": "YdTaR99ViklzILjo3VqWOq2ckRI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "origin of abortion laws", "datetime": "2026-03-12 20:01:20.101856", "source": "google", "data": ["origin of abortion laws", [["origin of abortion laws", 0, [22, 30]], ["history of abortion laws", 0, [22, 30]], ["history of abortion laws in australia", 0, [22, 30]], ["history of abortion laws in the united states", 0, [22, 30]], ["history of abortion laws in canada", 0, [22, 30]], ["history of abortion laws in texas", 0, [22, 30]], ["history of abortion laws uk", 0, [22, 30]], ["history of abortion laws in india", 0, [22, 30]], ["history of abortion laws in ireland", 0, [22, 30]], ["history of abortion laws in australia timeline", 0, [22, 30]]], {"i": "origin of abortion laws", "q": "A-EegLx_B3FU7GyEDK2Jr_dBju4", "t": {"bpc": false, "tlw": false}}], "suggests": ["origin of abortion laws", "history of abortion laws", "history of abortion laws in australia", "history of abortion laws in the united states", "history of abortion laws in canada", "history of abortion laws in texas", "history of abortion laws uk", "history of abortion laws in india", "history of abortion laws in ireland", "history of abortion laws in australia timeline"], "self_loops": [0], "tags": {"i": "origin of abortion laws", "q": "A-EegLx_B3FU7GyEDK2Jr_dBju4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "origin of word abortion", "datetime": "2026-03-12 20:01:21.420103", "source": "google", "data": ["origin of word abortion", [["origin of word abortion", 0, [512]], ["meaning of word abortion", 0, [22, 30]], ["etymology of word abortion", 0, [22, 30]], ["root of word abortion", 0, [22, 30]], ["origin of word miscarriage", 0, [22, 30]], ["history of the word abortion", 0, [22, 30]], ["origin of abortion", 0, [512, 390, 650]], ["when was the word abortion first used", 0, [512, 390, 650]]], {"i": "origin of word abortion", "q": "1bi3Xcx5AJ4vPqVAQsuTnUHVp6E", "t": {"bpc": false, "tlw": false}}], "suggests": ["origin of word abortion", "meaning of word abortion", "etymology of word abortion", "root of word abortion", "origin of word miscarriage", "history of the word abortion", "origin of abortion", "when was the word abortion first used"], "self_loops": [0], "tags": {"i": "origin of word abortion", "q": "1bi3Xcx5AJ4vPqVAQsuTnUHVp6E", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "origin of anti abortion movement", "datetime": "2026-03-12 20:01:22.736806", "source": "google", "data": ["origin of anti abortion movement", [["origin of anti abortion movement", 0, [22, 30]], ["history of anti abortion movement", 0, [22, 30]], ["npr history of anti abortion movement", 0, [22, 30]], ["when did anti abortion movement start", 0, [512, 390, 650]], ["what is the anti abortion movement", 0, [512, 390, 650]], ["origin of anti abortion", 0, [751]]], {"i": "origin of anti abortion movement", "q": "Wkm480Dp22kH2xbOr0-VoWsWC0I", "t": {"bpc": false, "tlw": false}}], "suggests": ["origin of anti abortion movement", "history of anti abortion movement", "npr history of anti abortion movement", "when did anti abortion movement start", "what is the anti abortion movement", "origin of anti abortion"], "self_loops": [0], "tags": {"i": "origin of anti abortion movement", "q": "Wkm480Dp22kH2xbOr0-VoWsWC0I", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "where did abortions originate", "datetime": "2026-03-12 20:01:23.835414", "source": "google", "data": ["where did abortions originate", [["where did abortions originate", 0, [512]], ["where did abortions start", 0, [22, 30]], ["where do abortions come from", 0, [22, 30]], ["where did the word abortion originate", 0, [22, 30]], ["how long has abortion been around", 0, [512, 390, 650]], ["when did abortions start in america", 0, [512, 390, 650]]], {"i": "where did abortions originate", "q": "TQ9gIpl8tXIBPGGprlQ1GuS84N8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["where did abortions originate", "where did abortions start", "where do abortions come from", "where did the word abortion originate", "how long has abortion been around", "when did abortions start in america"], "self_loops": [0], "tags": {"i": "where did abortions originate", "q": "TQ9gIpl8tXIBPGGprlQ1GuS84N8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how long has abortion been around", "datetime": "2026-03-12 20:01:25.064198", "source": "google", "data": ["how long has abortion been around", [["how long has abortion been around", 0, [512]], ["how long has abortion been around in the us", 0, [512]], ["how many years has abortion been around", 0, [22, 30]], ["how long has medical abortion been around", 0, [22, 30]], ["how long has abortion pills been around", 0, [22, 30]], ["how long has the word abortion been around", 0, [22, 30]], ["how long has the topic of abortion been around", 0, [22, 30]], ["how long has the abortion debate been around", 0, [22, 30]], ["how long has the practice of abortion been around", 0, [22, 30]], ["how long have abortions been performed", 0, [512, 390, 650]]], {"i": "how long has abortion been around", "q": "r4tSHdKj0cYLORkMRWbdOWFbTRM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how long has abortion been around", "how long has abortion been around in the us", "how many years has abortion been around", "how long has medical abortion been around", "how long has abortion pills been around", "how long has the word abortion been around", "how long has the topic of abortion been around", "how long has the abortion debate been around", "how long has the practice of abortion been around", "how long have abortions been performed"], "self_loops": [0], "tags": {"i": "how long has abortion been around", "q": "r4tSHdKj0cYLORkMRWbdOWFbTRM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "origin of abortion rights", "datetime": "2026-03-12 20:01:26.246663", "source": "google", "data": ["origin of abortion rights", [["history of abortion rights", 0, [22, 30]], ["history of abortion rights in the us", 0, [22, 30]], ["origin of women's rights", 0, [22, 30]], ["origin of women's rights movement", 0, [22, 30]], ["history of abortion rights in canada", 0, [22, 30]], ["history of abortion rights in australia", 0, [22, 30]], ["history of abortion rights in france", 0, [22, 30]], ["history of abortion rights in ireland", 0, [22, 30]], ["origin of abortion laws", 0, [22, 30]], ["origin of abortion", 0, [512, 390, 650]]], {"i": "origin of abortion rights", "q": "gvsGOoksGHsGW17BM5KQ4LT9Dtc", "t": {"bpc": false, "tlw": false}}], "suggests": ["history of abortion rights", "history of abortion rights in the us", "origin of women's rights", "origin of women's rights movement", "history of abortion rights in canada", "history of abortion rights in australia", "history of abortion rights in france", "history of abortion rights in ireland", "origin of abortion laws", "origin of abortion"], "self_loops": [], "tags": {"i": "origin of abortion rights", "q": "gvsGOoksGHsGW17BM5KQ4LT9Dtc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in greek mythology", "datetime": "2026-03-12 20:01:27.436760", "source": "google", "data": ["abortion in greek mythology", [["abortion in greek mythology", 0, [22, 30]], ["is abortion legal in greece", 0, [512, 390, 650]], ["abortion in greek", 0, [512, 546]], ["abortion in greek and roman times", 0, [751]], ["abortion in ancient greece and rome", 0, [546, 649]], ["abortion in ancient greece", 0, [512, 546]]], {"i": "abortion in greek mythology", "q": "KNogS8ipcdI2cEHg1O6dAthHGeY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in greek mythology", "is abortion legal in greece", "abortion in greek", "abortion in greek and roman times", "abortion in ancient greece and rome", "abortion in ancient greece"], "self_loops": [0], "tags": {"i": "abortion in greek mythology", "q": "KNogS8ipcdI2cEHg1O6dAthHGeY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in ancient greek", "datetime": "2026-03-12 20:01:28.650521", "source": "google", "data": ["abortion in ancient greek", [["abortion in ancient greek", 0, [22, 30]], ["abortion in ancient greece", 0, [22, 30]], ["abortion in ancient greece and rome", 0, [22, 30]], ["is abortion legal in greece", 0, [512, 390, 650]], ["history of abortion in ancient times", 0, [512, 390, 650]], ["abortion in ancient civilizations", 0, [751]]], {"i": "abortion in ancient greek", "q": "-NbPXall8-wo6cq7AlEOIieYQ8s", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in ancient greek", "abortion in ancient greece", "abortion in ancient greece and rome", "is abortion legal in greece", "history of abortion in ancient times", "abortion in ancient civilizations"], "self_loops": [0], "tags": {"i": "abortion in ancient greek", "q": "-NbPXall8-wo6cq7AlEOIieYQ8s", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion greek word", "datetime": "2026-03-12 20:01:29.751857", "source": "google", "data": ["abortion greek word", [["abortion greek word", 0, [22, 30]], ["abortion greek meaning", 0, [22, 30]], ["is abortion legal in greece", 0, [512, 390, 650]], ["ancient greek word for abortion", 0, [751]], ["abortion in greek", 0, [512, 546]], ["abortion in greek and roman times", 0, [751]], ["greek abortion laws", 0, [751]]], {"i": "abortion greek word", "q": "rcd8QvqhzcnRRCMyjGpFPMDD8T4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion greek word", "abortion greek meaning", "is abortion legal in greece", "ancient greek word for abortion", "abortion in greek", "abortion in greek and roman times", "greek abortion laws"], "self_loops": [0], "tags": {"i": "abortion greek word", "q": "rcd8QvqhzcnRRCMyjGpFPMDD8T4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion greek orthodox", "datetime": "2026-03-12 20:01:30.639715", "source": "google", "data": ["abortion greek orthodox", [["abortion greek orthodox", 0, [22, 30]], ["greek orthodox abortion stance", 0, [22, 30]], ["greece abortion laws", 0, [512, 390, 650]], ["is abortion legal in greece", 0, [512, 390, 650]], ["can a non greek orthodox marry a greek orthodox", 0, [512, 390, 650]], ["what do greek orthodox believe about abortion", 0, [751]], ["do greek orthodox allow abortion", 0, [751]], ["abortion greek orthodox church", 0, [751]]], {"i": "abortion greek orthodox", "q": "idJRYzJUmHHIETPE7Gqc7PVh3hg", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion greek orthodox", "greek orthodox abortion stance", "greece abortion laws", "is abortion legal in greece", "can a non greek orthodox marry a greek orthodox", "what do greek orthodox believe about abortion", "do greek orthodox allow abortion", "abortion greek orthodox church"], "self_loops": [0], "tags": {"i": "abortion greek orthodox", "q": "idJRYzJUmHHIETPE7Gqc7PVh3hg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion greek translation", "datetime": "2026-03-12 20:01:31.854075", "source": "google", "data": ["abortion greek translation", [["abortion greek translation", 0, [22, 30]], ["abortion greek definition", 0, [22, 30]], ["is abortion legal in greece", 0, [512, 390, 650]], ["origin of abortion", 0, [512, 390, 650]], ["abortion in greek", 0, [512, 546]], ["abortion in greek and roman times", 0, [751]], ["greek word for abortion", 0, [546, 649]], ["ancient greek word for abortion", 0, [751]]], {"i": "abortion greek translation", "q": "nf7PT0MN8czjOk29WR-SolP_AfU", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion greek translation", "abortion greek definition", "is abortion legal in greece", "origin of abortion", "abortion in greek", "abortion in greek and roman times", "greek word for abortion", "ancient greek word for abortion"], "self_loops": [0], "tags": {"i": "abortion greek translation", "q": "nf7PT0MN8czjOk29WR-SolP_AfU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion legal in greece", "datetime": "2026-03-12 20:01:32.668878", "source": "google", "data": ["is abortion legal in greece", [["is abortion legal in greece", 0, [512]], ["is abortion legal in greece for foreigners", 0, [512]], ["is abortion illegal in greece", 0, [22, 30]], ["is abortion allowed in greece", 0, [22, 30]], ["is abortion banned in greece", 0, [22, 30]], ["is abortion pill legal in greece", 0, [22, 30]], ["was abortion legal in ancient greece", 0, [22, 30]], ["abortion law in greece", 0, [22, 30]], ["is abortion legal in europe", 0, [512, 390, 650]]], {"i": "is abortion legal in greece", "q": "IY2BGzsqeHD8DqZSWHV41H4j1EM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion legal in greece", "is abortion legal in greece for foreigners", "is abortion illegal in greece", "is abortion allowed in greece", "is abortion banned in greece", "is abortion pill legal in greece", "was abortion legal in ancient greece", "abortion law in greece", "is abortion legal in europe"], "self_loops": [0], "tags": {"i": "is abortion legal in greece", "q": "IY2BGzsqeHD8DqZSWHV41H4j1EM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law greece", "datetime": "2026-03-12 20:01:33.585737", "source": "google", "data": ["abortion law greece", [["abortion law greece", 0, [512]], ["abortion legal greece", 0, [22, 30]], ["abortion law by country", 0, [512, 390, 650]], ["abortion rights greece", 0, [751]]], {"i": "abortion law greece", "q": "et2otuO958zcgW_1tt_wZ037p_c", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion law greece", "abortion legal greece", "abortion law by country", "abortion rights greece"], "self_loops": [0], "tags": {"i": "abortion law greece", "q": "et2otuO958zcgW_1tt_wZ037p_c", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in greek and roman times pdf", "datetime": "2026-03-12 20:01:34.904949", "source": "google", "data": ["abortion in greek and roman times pdf", [["abortion in greek and roman times pdf free download", 33, [160], {"a": "abortion in greek and roman times ", "b": "pdf free download"}], ["abortion in greek and roman times pdf free", 33, [160], {"a": "abortion in greek and roman times ", "b": "pdf free"}], ["abortion in greek and roman times pdf download", 33, [160], {"a": "abortion in greek and roman times ", "b": "pdf download"}], ["abortion in greek and roman times pdf online", 33, [160], {"a": "abortion in greek and roman times ", "b": "pdf online"}], ["abortion in greek and roman times pdf book", 33, [160], {"a": "abortion in greek and roman times ", "b": "pdf book"}]], {"i": "abortion in greek and roman times pdf", "q": "itxbajDMOCiGVaVdkxOh6sVRxG8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in greek and roman times pdf free download", "abortion in greek and roman times pdf free", "abortion in greek and roman times pdf download", "abortion in greek and roman times pdf online", "abortion in greek and roman times pdf book"], "self_loops": [], "tags": {"i": "abortion in greek and roman times pdf", "q": "itxbajDMOCiGVaVdkxOh6sVRxG8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion in greek and roman times book", "datetime": "2026-03-12 20:01:35.859077", "source": "google", "data": ["abortion in greek and roman times book", [["abortion in greek and roman times books", 33, [160], {"a": "abortion in greek and roman times ", "b": "books"}], ["abortion in greek and roman times book review", 33, [160], {"a": "abortion in greek and roman times ", "b": "book review"}], ["abortion in greek and roman times book pdf", 33, [160], {"a": "abortion in greek and roman times ", "b": "book pdf"}], ["abortion in greek and roman times book summary", 33, [160], {"a": "abortion in greek and roman times ", "b": "book summary"}], ["abortion in greek and roman times book 1", 33, [160], {"a": "abortion in greek and roman times ", "b": "book 1"}], ["abortion in greek and roman times book list", 33, [299], {"a": "abortion in greek and roman times ", "b": "book list"}]], {"i": "abortion in greek and roman times book", "q": "xGCstAufTQkiNdetKKgKsBZJToo", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion in greek and roman times books", "abortion in greek and roman times book review", "abortion in greek and roman times book pdf", "abortion in greek and roman times book summary", "abortion in greek and roman times book 1", "abortion in greek and roman times book list"], "self_loops": [], "tags": {"i": "abortion in greek and roman times book", "q": "xGCstAufTQkiNdetKKgKsBZJToo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion a swear word", "datetime": "2026-03-12 20:01:37.119892", "source": "google", "data": ["is abortion a swear word", [["is abortion a swear word", 0, [22, 30]], ["is abortion a bad word", 0, [22, 30]], ["when was abortion abolished", 0, [512, 390, 650]], ["is abortion a noun", 0, [751]], ["is abortion a verb", 0, [751]], ["is saying a swear word a sin", 0, [512, 546]], ["is swear words a sin", 0, [512, 546]], ["is swear a swear word", 0, [546, 649]]], {"i": "is abortion a swear word", "q": "jL4xopr1YTqUfkB1zR5egdXNksY", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion a swear word", "is abortion a bad word", "when was abortion abolished", "is abortion a noun", "is abortion a verb", "is saying a swear word a sin", "is swear words a sin", "is swear a swear word"], "self_loops": [0], "tags": {"i": "is abortion a swear word", "q": "jL4xopr1YTqUfkB1zR5egdXNksY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what does abortion ban mean", "datetime": "2026-03-12 20:01:38.051792", "source": "google", "data": ["what does abortion ban mean", [["what does abortion ban mean", 0, [512]], ["what does total abortion ban mean", 0, [22, 30]], ["what does federal abortion ban mean", 0, [22, 30]], ["what does abortion ban blocked mean", 0, [22, 30]], ["what does full abortion ban mean", 0, [22, 30]], ["what does no abortion ban mean", 0, [22, 30]], ["what does 6 week abortion ban mean", 0, [22, 30]], ["what does new abortion law mean", 0, [22, 30]], ["what would federal abortion ban mean", 0, [22, 30]], ["what does a total abortion ban mean in the us", 0, [22, 30]]], {"i": "what does abortion ban mean", "q": "TShb3rl_vgeoUqi2i9wRZ5qW9qA", "t": {"bpc": false, "tlw": false}}], "suggests": ["what does abortion ban mean", "what does total abortion ban mean", "what does federal abortion ban mean", "what does abortion ban blocked mean", "what does full abortion ban mean", "what does no abortion ban mean", "what does 6 week abortion ban mean", "what does new abortion law mean", "what would federal abortion ban mean", "what does a total abortion ban mean in the us"], "self_loops": [0], "tags": {"i": "what does abortion ban mean", "q": "TShb3rl_vgeoUqi2i9wRZ5qW9qA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion a bad choice", "datetime": "2026-03-12 20:01:38.900621", "source": "google", "data": ["is abortion a bad choice", [["is abortion a bad choice", 0, [512]], ["is abortion a bad idea", 0, [22, 30]], ["is abortion wrong", 0, [512, 390, 650]], ["what is the safest type of abortion", 0, [512, 390, 650]], ["is abortion wrong or right", 0, [512, 390, 650]], ["is abortion a choice", 0, [512, 546]], ["is abortion a good choice", 0, [512, 546]]], {"i": "is abortion a bad choice", "q": "mRyAZBN_4zgPnqo2oZQpgp-9tfQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion a bad choice", "is abortion a bad idea", "is abortion wrong", "what is the safest type of abortion", "is abortion wrong or right", "is abortion a choice", "is abortion a good choice"], "self_loops": [0], "tags": {"i": "is abortion a bad choice", "q": "mRyAZBN_4zgPnqo2oZQpgp-9tfQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion a verb", "datetime": "2026-03-12 20:01:40.396037", "source": "google", "data": ["is abortion a verb", [["is abortion a verb", 0, [22, 30]], ["is abortion a verb or noun", 0, [22, 30]], ["is abortion a bad word", 0, [512, 390, 650]], ["is abortion federal or state", 0, [512, 390, 650]], ["what is classified as an abortion", 0, [512, 390, 650]], ["is abortion a valence issue", 0, [751]], ["is abortion a violent procedure", 0, [751]], ["is abortion a noun", 0, [751]]], {"i": "is abortion a verb", "q": "ORUVT173XKFjYm9Unw2O7hZdiBg", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion a verb", "is abortion a verb or noun", "is abortion a bad word", "is abortion federal or state", "what is classified as an abortion", "is abortion a valence issue", "is abortion a violent procedure", "is abortion a noun"], "self_loops": [0], "tags": {"i": "is abortion a verb", "q": "ORUVT173XKFjYm9Unw2O7hZdiBg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is a bad word bad", "datetime": "2026-03-12 20:01:41.840800", "source": "google", "data": ["is a bad word bad", [["is a bad word bad", 0, [22, 30]], ["is baddie a bad word", 0, [22, 30]], ["is it bad to say a bad word", 0, [22, 30]], ["why are bad words considered bad", 0, [512, 390, 650]], ["why are swear words considered bad", 0, [512, 390, 650]], ["are bad words really bad", 0, [512, 390, 650]], ["why are curse words considered bad", 0, [512, 390, 650]], ["is a bad word", 0, [512, 546]], ["is bad word a bad word", 0, [512, 546]], ["is a bad word song", 0, [751]]], {"i": "is a bad word bad", "q": "6hrEX0AwYqHklj9zlvitbAOZwK4", "t": {"bpc": false, "tlw": false}}], "suggests": ["is a bad word bad", "is baddie a bad word", "is it bad to say a bad word", "why are bad words considered bad", "why are swear words considered bad", "are bad words really bad", "why are curse words considered bad", "is a bad word", "is bad word a bad word", "is a bad word song"], "self_loops": [0], "tags": {"i": "is a bad word bad", "q": "6hrEX0AwYqHklj9zlvitbAOZwK4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is the meaning of miscarriage in english", "datetime": "2026-03-12 20:01:43.111174", "source": "google", "data": ["what is the meaning of miscarriage in english", [["what is the meaning of miscarriage in english", 0, [22, 30]], ["what is the meaning of abortion in english", 0, [22, 30]], ["what is mean by miscarriage", 0, [512, 390, 650]], ["what does the word miscarriage mean", 0, [512, 390, 650]], ["meaning of miscarriage in a dream", 0, [512, 546]], ["what is the medical definition of a miscarriage", 0, [512, 546]], ["miscarriage meaning in simple words", 0, [512, 546]], ["miscarriage in english", 0, [512, 546]]], {"i": "what is the meaning of miscarriage in english", "q": "R6Gl8FWeL_7HHgH23Ncgd2dVtiQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is the meaning of miscarriage in english", "what is the meaning of abortion in english", "what is mean by miscarriage", "what does the word miscarriage mean", "meaning of miscarriage in a dream", "what is the medical definition of a miscarriage", "miscarriage meaning in simple words", "miscarriage in english"], "self_loops": [0], "tags": {"i": "what is the meaning of miscarriage in english", "q": "R6Gl8FWeL_7HHgH23Ncgd2dVtiQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what the meaning of abortion", "datetime": "2026-03-12 20:01:44.541253", "source": "google", "data": ["what the meaning of abortion", [["what the meaning of abortion", 0, [512]], ["what is the meaning of abortion in hindi", 0, [22, 30]], ["what is the meaning of abortion in pregnancy", 0, [22, 30]], ["what is the meaning of abortion in english", 0, [22, 30]], ["what's the meaning of missed abortion", 0, [22, 30]], ["what's the meaning of threatened abortion", 0, [22, 30]], ["what's the meaning of incomplete abortion", 0, [22, 30]], ["what is the meaning of abortion pill", 0, [22, 30]], ["what is the meaning of abortion in hausa", 0, [22, 30]], ["what's the meaning of spontaneous abortion", 0, [22, 30]]], {"i": "what the meaning of abortion", "q": "rbKBnkP_fLbVMCTKWCDWn_dReB4", "t": {"bpc": false, "tlw": false}}], "suggests": ["what the meaning of abortion", "what is the meaning of abortion in hindi", "what is the meaning of abortion in pregnancy", "what is the meaning of abortion in english", "what's the meaning of missed abortion", "what's the meaning of threatened abortion", "what's the meaning of incomplete abortion", "what is the meaning of abortion pill", "what is the meaning of abortion in hausa", "what's the meaning of spontaneous abortion"], "self_loops": [0], "tags": {"i": "what the meaning of abortion", "q": "rbKBnkP_fLbVMCTKWCDWn_dReB4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is the meaning of the word abortion", "datetime": "2026-03-12 20:01:45.876270", "source": "google", "data": ["what is the meaning of the word abortion", [["what is the meaning of the word abortion", 0, [512]], ["what is the origin of the word abortion", 0, [22, 30]], ["what is the meaning of the word miscarriage", 0, [22, 30]], ["what is the origin of the word miscarriage", 0, [22, 30]], ["what is the meaning of abortion in one word", 0, [22, 30]], ["what does the word abortion mean", 0, [512, 390, 650]], ["what is the definition of the word abortion", 0, [512, 546]], ["what is the meaning of the word abomination", 0, [512, 546]], ["what is the meaning of the word abolition", 0, [512, 546]]], {"i": "what is the meaning of the word abortion", "q": "_MkhlWaBJQs1ov48v6E6MejXf20", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is the meaning of the word abortion", "what is the origin of the word abortion", "what is the meaning of the word miscarriage", "what is the origin of the word miscarriage", "what is the meaning of abortion in one word", "what does the word abortion mean", "what is the definition of the word abortion", "what is the meaning of the word abomination", "what is the meaning of the word abolition"], "self_loops": [0], "tags": {"i": "what is the meaning of the word abortion", "q": "_MkhlWaBJQs1ov48v6E6MejXf20", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is the definition of the word abortion", "datetime": "2026-03-12 20:01:47.245517", "source": "google", "data": ["what is the definition of the word abortion", [["what is the definition of the word abortion", 0, [512]], ["what is the meaning of the word miscarriage", 0, [22, 30]], ["what does the word abortion mean", 0, [512, 390, 650]], ["what is the meaning of the word abortion", 0, [512, 546]], ["what is the definition of the word abomination", 0, [512, 546]], ["what is the definition of the word abolition", 0, [546, 649]], ["what is the definition of the word abolitionist", 0, [546, 649]]], {"i": "what is the definition of the word abortion", "q": "X3BmpQFgtvnOiFHS5S5mFPS3bT8", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is the definition of the word abortion", "what is the meaning of the word miscarriage", "what does the word abortion mean", "what is the meaning of the word abortion", "what is the definition of the word abomination", "what is the definition of the word abolition", "what is the definition of the word abolitionist"], "self_loops": [0], "tags": {"i": "what is the definition of the word abortion", "q": "X3BmpQFgtvnOiFHS5S5mFPS3bT8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "miscarriage definition dictionary", "datetime": "2026-03-12 20:01:48.306858", "source": "google", "data": ["miscarriage definition dictionary", [["miscarriage definition dictionary", 0, [512]], ["abortion definition dictionary", 0, [22, 30]], ["what does the word miscarriage mean", 0, [512, 390, 650]], ["what is mean by miscarriage", 0, [512, 390, 650]], ["what does a miscarriage mean in the bible", 0, [512, 390, 650]], ["how do doctors determine a miscarriage", 0, [512, 390, 650]], ["miscarriage definition merriam webster", 0, [751]], ["miscarriage definition medical", 0, [512, 546]], ["miscarriage dictionary", 0, [512, 546]], ["miscarriage definition pregnancy", 0, [546, 649]]], {"i": "miscarriage definition dictionary", "q": "gTFuD0M8j4mucQjxF-gD0CWO-o8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["miscarriage definition dictionary", "abortion definition dictionary", "what does the word miscarriage mean", "what is mean by miscarriage", "what does a miscarriage mean in the bible", "how do doctors determine a miscarriage", "miscarriage definition merriam webster", "miscarriage definition medical", "miscarriage dictionary", "miscarriage definition pregnancy"], "self_loops": [0], "tags": {"i": "miscarriage definition dictionary", "q": "gTFuD0M8j4mucQjxF-gD0CWO-o8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "oxford dictionary abortion definition", "datetime": "2026-03-12 20:01:49.226510", "source": "google", "data": ["oxford dictionary abortion definition", [["oxford dictionary abortion definition", 0, [22, 30]], ["abortion definition oxford", 0, [512, 390, 650]], ["oxford dictionary abortion", 0, [512, 546]]], {"i": "oxford dictionary abortion definition", "q": "rKzvpPQ3CrS6HUAv5leFYwqxxpw", "t": {"bpc": false, "tlw": false}}], "suggests": ["oxford dictionary abortion definition", "abortion definition oxford", "oxford dictionary abortion"], "self_loops": [0], "tags": {"i": "oxford dictionary abortion definition", "q": "rKzvpPQ3CrS6HUAv5leFYwqxxpw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion dictionary", "datetime": "2026-03-12 20:01:50.417735", "source": "google", "data": ["abortion dictionary", [["abortion dictionary", 0, [512]], ["abortion dictionary definition", 0, [512]], ["abortion oxford dictionary", 0, [22, 30]], ["abortion webster's dictionary", 0, [22, 30]], ["abortion cambridge dictionary", 0, [22, 30]], ["abortion medical dictionary", 0, [22, 30]], ["abortion definition oxford dictionary", 0, [22, 30]], ["dream dictionary abortion", 0, [22, 30]], ["abortion definition webster dictionary", 0, [22, 30]], ["abortion dictionary meaning", 0, [512, 390, 650]]], {"i": "abortion dictionary", "q": "loVxurwyFJptl1BboCzQ95eNT6o", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion dictionary", "abortion dictionary definition", "abortion oxford dictionary", "abortion webster's dictionary", "abortion cambridge dictionary", "abortion medical dictionary", "abortion definition oxford dictionary", "dream dictionary abortion", "abortion definition webster dictionary", "abortion dictionary meaning"], "self_loops": [0], "tags": {"i": "abortion dictionary", "q": "loVxurwyFJptl1BboCzQ95eNT6o", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion medical terminology", "datetime": "2026-03-12 20:01:51.596101", "source": "google", "data": ["abortion medical terminology", [["abortion medical terminology", 0, [512]], ["miscarriage medical terminology", 0, [22, 30]], ["abortion medical term", 0, [22, 30]], ["abortion medical term name", 0, [22, 30]], ["abortion medical term ppt", 0, [22, 30]], ["abortion medical term pdf", 0, [22, 30]], ["abortion medical definition", 0, [22, 30]], ["abortion medical definition according to who", 0, [22, 30]], ["abortion medical definition acog", 0, [22, 30]], ["abortion medical dictionary", 0, [22, 30]]], {"i": "abortion medical terminology", "q": "Di8lyFeIZDf5LzycNeTH8D-HKco", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion medical terminology", "miscarriage medical terminology", "abortion medical term", "abortion medical term name", "abortion medical term ppt", "abortion medical term pdf", "abortion medical definition", "abortion medical definition according to who", "abortion medical definition acog", "abortion medical dictionary"], "self_loops": [0], "tags": {"i": "abortion medical terminology", "q": "Di8lyFeIZDf5LzycNeTH8D-HKco", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion table name", "datetime": "2026-03-12 20:01:52.766769", "source": "google", "data": ["abortion table name", [["abortion table name", 0, [512]], ["abortion table name in tamil", 0, [512]], ["abortion table name photo", 0, [512]], ["abortion table name malayalam", 0, [512]], ["abortion table name in india", 0, [512]], ["abortion table name for 2 months", 0, [512]], ["abortion table name in kannada", 0, [512]], ["abortion table name in pakistan", 0, [512]], ["types of abortion table", 0, [512, 390, 650]], ["abortion pills images and names", 0, [512, 390, 650]]], {"q": "jHFPeaM6wJEOlvULqjhfZg052TE", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion table name", "abortion table name in tamil", "abortion table name photo", "abortion table name malayalam", "abortion table name in india", "abortion table name for 2 months", "abortion table name in kannada", "abortion table name in pakistan", "types of abortion table", "abortion pills images and names"], "self_loops": [0], "tags": {"q": "jHFPeaM6wJEOlvULqjhfZg052TE", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion medical definition", "datetime": "2026-03-12 20:01:53.642554", "source": "google", "data": ["abortion medical definition", [["abortion medical definition", 0, [512]], ["abortion medical definition according to who", 0, [512]], ["abortion medical definition acog", 0, [22, 30]], ["medical abortion definition weeks", 0, [22, 30]], ["medical abortion definition and types", 0, [22, 30]], ["medical abortion definition in hindi", 0, [22, 30]], ["medical abortion definition pdf", 0, [22, 30]], ["miscarriage medical definition", 0, [22, 30]], ["abortion medical term", 0, [22, 30]], ["abortion medical terminology", 0, [22, 30]]], {"i": "abortion medical definition", "q": "BvCqIfmQKM_sOcxe8mOzrFeY6mQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion medical definition", "abortion medical definition according to who", "abortion medical definition acog", "medical abortion definition weeks", "medical abortion definition and types", "medical abortion definition in hindi", "medical abortion definition pdf", "miscarriage medical definition", "abortion medical term", "abortion medical terminology"], "self_loops": [0], "tags": {"i": "abortion medical definition", "q": "BvCqIfmQKM_sOcxe8mOzrFeY6mQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new california abortion laws 2025 update", "datetime": "2026-03-12 20:01:54.912453", "source": "google", "data": ["new california abortion laws 2025 update", [["new california abortion laws 2025 update", 0, [512]], ["new california abortion laws 2025 update today", 0, [22, 30]], ["new abortion laws in california", 0, [512, 390, 650]], ["new california abortion laws 2021", 0, [751]]], {"i": "new california abortion laws 2025 update", "q": "IW6N-l94_wgCrJZLXJgr2og2RjI", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["new california abortion laws 2025 update", "new california abortion laws 2025 update today", "new abortion laws in california", "new california abortion laws 2021"], "self_loops": [0], "tags": {"i": "new california abortion laws 2025 update", "q": "IW6N-l94_wgCrJZLXJgr2og2RjI", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new california abortion laws 2025 update today", "datetime": "2026-03-12 20:01:55.942089", "source": "google", "data": ["new california abortion laws 2025 update today", [["new california abortion laws 2025 update today", 0, [22, 30]], ["new abortion laws in california", 0, [512, 390, 650]], ["new law passed in california today", 0, [512, 390, 650]], ["new california abortion laws 2021", 0, [751]]], {"i": "new california abortion laws 2025 update today", "q": "x0ppmNxYZcfP-e99NtQElsLyn1M", "t": {"bpc": false, "tlw": false}}], "suggests": ["new california abortion laws 2025 update today", "new abortion laws in california", "new law passed in california today", "new california abortion laws 2021"], "self_loops": [0], "tags": {"i": "new california abortion laws 2025 update today", "q": "x0ppmNxYZcfP-e99NtQElsLyn1M", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new abortion laws in california", "datetime": "2026-03-12 20:01:56.872421", "source": "google", "data": ["new abortion laws in california", [["new abortion laws in california", 0, [512]], ["new abortion laws in california 2024 update", 0, [22, 30]], ["new abortion law in california 2024", 0, [22, 30]], ["new abortion law in california 2025", 0, [22, 30]], ["new abortion law in california 2023", 0, [22, 30]], ["new abortion law in california 2023 overturned", 0, [22, 30]], ["latest legal abortion in california", 0, [22, 30]], ["abortion laws in california", 0, [22, 30]], ["abortion laws in california 2025", 0, [22, 30]], ["abortion laws in california 2024", 0, [22, 30]]], {"i": "new abortion laws in california", "q": "2-HgaY9YEhapDaq_0UtdgvaSHpM", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["new abortion laws in california", "new abortion laws in california 2024 update", "new abortion law in california 2024", "new abortion law in california 2025", "new abortion law in california 2023", "new abortion law in california 2023 overturned", "latest legal abortion in california", "abortion laws in california", "abortion laws in california 2025", "abortion laws in california 2024"], "self_loops": [0], "tags": {"i": "new abortion laws in california", "q": "2-HgaY9YEhapDaq_0UtdgvaSHpM", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new abortion law in california 2022", "datetime": "2026-03-12 20:01:57.983805", "source": "google", "data": ["new abortion law in california 2022", [["new abortion law in california 2022 california", 33, [160], {"a": "new abortion law in california ", "b": "2022 california"}], ["new abortion law in california 20224", 33, [160], {"a": "new abortion law in california ", "b": "20224"}], ["new abortion law in california 2022 update", 33, [160], {"a": "new abortion law in california ", "b": "2022 update"}], ["new abortion law in california 2022-2023", 33, [160], {"a": "new abortion law in california ", "b": "2022-2023"}], ["new abortion law in california 2022", 33, [671], {"a": "new abortion law in california ", "b": "2022"}], ["new abortion law in california 2022 by state", 33, [671], {"a": "new abortion law in california ", "b": "2022 by state"}]], {"i": "new abortion law in california 2022", "q": "pipC_s2lbevfE6cObbZZJH_m084", "t": {"bpc": false, "tlw": false}}], "suggests": ["new abortion law in california 2022 california", "new abortion law in california 20224", "new abortion law in california 2022 update", "new abortion law in california 2022-2023", "new abortion law in california 2022", "new abortion law in california 2022 by state"], "self_loops": [4], "tags": {"i": "new abortion law in california 2022", "q": "pipC_s2lbevfE6cObbZZJH_m084", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new abortion laws 2021 california", "datetime": "2026-03-12 20:01:59.403794", "source": "google", "data": ["new abortion laws 2021 california", [["new abortion laws 2021 california 2023", 33, [160], {"a": "new abortion laws 2021 ", "b": "california 2023"}], ["new abortion laws 2021 california law", 33, [160], {"a": "new abortion laws 2021 ", "b": "california law"}], ["new abortion laws 2021 california 2024", 33, [160], {"a": "new abortion laws 2021 ", "b": "california 2024"}], ["new abortion laws 2021 california 2021", 33, [160], {"a": "new abortion laws 2021 ", "b": "california 2021"}], ["new abortion laws 2021 california update", 33, [160], {"a": "new abortion laws 2021 ", "b": "california update"}], ["new abortion laws 2021 california", 33, [671], {"a": "new abortion laws 2021 ", "b": "california"}], ["new abortion laws 2021 california 2022", 33, [671], {"a": "new abortion laws 2021 ", "b": "california 2022"}], ["new abortion laws 2021 ca", 33, [671], {"a": "new abortion laws 2021 ", "b": "ca"}]], {"i": "new abortion laws 2021 california", "q": "-jI_7GJ_7EpmpmVXTKNhLjeRQlI", "t": {"bpc": false, "tlw": false}}], "suggests": ["new abortion laws 2021 california 2023", "new abortion laws 2021 california law", "new abortion laws 2021 california 2024", "new abortion laws 2021 california 2021", "new abortion laws 2021 california update", "new abortion laws 2021 california", "new abortion laws 2021 california 2022", "new abortion laws 2021 ca"], "self_loops": [5], "tags": {"i": "new abortion laws 2021 california", "q": "-jI_7GJ_7EpmpmVXTKNhLjeRQlI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2021-2024", "datetime": "2026-03-12 20:02:00.897662", "source": "google", "data": ["abortion laws in california 2021-2024", [["abortion laws in california 2023", 0, [546, 649]], ["abortion laws in california 2021", 0, [751]], ["abortion laws in california 2022", 0, [751]]], {"i": "abortion laws in california 2021-2024", "q": "JKXuzXThKfN4hBJz175jlJlXF04", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2023", "abortion laws in california 2021", "abortion laws in california 2022"], "self_loops": [], "tags": {"i": "abortion laws in california 2021-2024", "q": "JKXuzXThKfN4hBJz175jlJlXF04", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2021 california", "datetime": "2026-03-12 20:02:02.188623", "source": "google", "data": ["abortion laws in california 2021 california", [["abortion laws in california 2021 california law", 33, [160], {"a": "abortion laws in california 2021 ", "b": "california law"}], ["abortion laws in california 2021 california 2021", 33, [160], {"a": "abortion laws in california 2021 ", "b": "california 2021"}], ["abortion laws in california 2021 california supreme court", 33, [160], {"a": "abortion laws in california 2021 ", "b": "california supreme court"}], ["abortion laws in california 2021 california abortion laws", 33, [160], {"a": "abortion laws in california 2021 ", "b": "california abortion laws"}], ["abortion laws in california 2021 california 2023", 33, [160], {"a": "abortion laws in california 2021 ", "b": "california 2023"}]], {"i": "abortion laws in california 2021 california", "q": "2m7jagi8KNQsCIWFOi4IBcTZJPo", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2021 california law", "abortion laws in california 2021 california 2021", "abortion laws in california 2021 california supreme court", "abortion laws in california 2021 california abortion laws", "abortion laws in california 2021 california 2023"], "self_loops": [], "tags": {"i": "abortion laws in california 2021 california", "q": "2m7jagi8KNQsCIWFOi4IBcTZJPo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2021 and 2022", "datetime": "2026-03-12 20:02:03.668633", "source": "google", "data": ["abortion laws in california 2021 and 2022", [["abortion laws in california 2021 and 2022 pdf", 33, [160], {"a": "abortion laws in california 2021 and ", "b": "2022 pdf"}], ["abortion laws in california 2021 and 2022 california", 33, [160], {"a": "abortion laws in california 2021 and ", "b": "2022 california"}], ["abortion laws in california 2021 and 2022 chart", 33, [160], {"a": "abortion laws in california 2021 and ", "b": "2022 chart"}], ["abortion laws in california 2021 and 2022 summary", 33, [160], {"a": "abortion laws in california 2021 and ", "b": "2022 summary"}], ["abortion laws in california 2021 and 2022 articles", 33, [160], {"a": "abortion laws in california 2021 and ", "b": "2022 articles"}], ["abortion laws in california 2021 and 2022", 33, [299], {"a": "abortion laws in california 2021 and ", "b": "2022"}], ["abortion laws in california 2021 and 2022 calendar", 33, [299], {"a": "abortion laws in california 2021 and ", "b": "2022 calendar"}], ["abortion laws in california 2021 and 2022 calendar printable", 33, [299], {"a": "abortion laws in california 2021 and ", "b": "2022 calendar printable"}], ["abortion laws in california 2021 and 2022 weeks", 33, [671], {"a": "abortion laws in california 2021 and ", "b": "2022 weeks"}], ["abortion laws in california 2021 and 2022 text", 33, [671], {"a": "abortion laws in california 2021 and ", "b": "2022 text"}]], {"i": "abortion laws in california 2021 and 2022", "q": "54LvNhO7yNvBtRJASQ4KMEO_b7c", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2021 and 2022 pdf", "abortion laws in california 2021 and 2022 california", "abortion laws in california 2021 and 2022 chart", "abortion laws in california 2021 and 2022 summary", "abortion laws in california 2021 and 2022 articles", "abortion laws in california 2021 and 2022", "abortion laws in california 2021 and 2022 calendar", "abortion laws in california 2021 and 2022 calendar printable", "abortion laws in california 2021 and 2022 weeks", "abortion laws in california 2021 and 2022 text"], "self_loops": [5], "tags": {"i": "abortion laws in california 2021 and 2022", "q": "54LvNhO7yNvBtRJASQ4KMEO_b7c", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2022 california", "datetime": "2026-03-12 20:02:05.184525", "source": "google", "data": ["abortion laws in california 2022 california", [["abortion laws in california 2022 california law", 33, [160], {"a": "abortion laws in california 2022 ", "b": "california law"}], ["abortion laws in california 2022 california 2023", 33, [160], {"a": "abortion laws in california 2022 ", "b": "california 2023"}], ["abortion laws in california 2022 california state", 33, [160], {"a": "abortion laws in california 2022 ", "b": "california state"}], ["abortion laws in california 2022 california constitution", 33, [160], {"a": "abortion laws in california 2022 ", "b": "california constitution"}], ["abortion laws in california 2022 california 2022", 33, [160], {"a": "abortion laws in california 2022 ", "b": "california 2022"}]], {"i": "abortion laws in california 2022 california", "q": "45RNrHW91NRO-E0BAAkVtVaT8j8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2022 california law", "abortion laws in california 2022 california 2023", "abortion laws in california 2022 california state", "abortion laws in california 2022 california constitution", "abortion laws in california 2022 california 2022"], "self_loops": [], "tags": {"i": "abortion laws in california 2022 california", "q": "45RNrHW91NRO-E0BAAkVtVaT8j8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2022 and 2023", "datetime": "2026-03-12 20:02:06.475115", "source": "google", "data": ["abortion laws in california 2022 and 2023", [["abortion laws in california 2022 and 2023 pdf", 33, [160], {"a": "abortion laws in california 2022 and ", "b": "2023 pdf"}], ["abortion laws in california 2022 and 2023 california", 33, [160], {"a": "abortion laws in california 2022 and ", "b": "2023 california"}], ["abortion laws in california 2022 and 2023 summary", 33, [160], {"a": "abortion laws in california 2022 and ", "b": "2023 summary"}], ["abortion laws in california 2022 and 2023 chart", 33, [160], {"a": "abortion laws in california 2022 and ", "b": "2023 chart"}], ["abortion laws in california 2022 and 2023 map", 33, [160], {"a": "abortion laws in california 2022 and ", "b": "2023 map"}], ["abortion laws in california 2022 and 2023 calendar", 33, [299], {"a": "abortion laws in california 2022 and ", "b": "2023 calendar"}], ["abortion laws in california 2022 and 2023", 33, [299], {"a": "abortion laws in california 2022 and ", "b": "2023"}]], {"i": "abortion laws in california 2022 and 2023", "q": "Ac-Mg_tPgl7s-qvY6cyIeLeLDIs", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2022 and 2023 pdf", "abortion laws in california 2022 and 2023 california", "abortion laws in california 2022 and 2023 summary", "abortion laws in california 2022 and 2023 chart", "abortion laws in california 2022 and 2023 map", "abortion laws in california 2022 and 2023 calendar", "abortion laws in california 2022 and 2023"], "self_loops": [6], "tags": {"i": "abortion laws in california 2022 and 2023", "q": "Ac-Mg_tPgl7s-qvY6cyIeLeLDIs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2022-2024", "datetime": "2026-03-12 20:02:07.473941", "source": "google", "data": ["abortion laws in california 2022-2024", [["abortion laws in california 2023", 0, [546, 649]], ["abortion laws in california 2021", 0, [751]], ["abortion laws in california how many weeks", 0, [512, 546]], ["abortion laws in california 2022", 0, [751]], ["california abortion laws 2022 28 days", 0, [751]]], {"i": "abortion laws in california 2022-2024", "q": "Z_H3OW1h00EkxNzKQ12MK0Xdhlc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2023", "abortion laws in california 2021", "abortion laws in california how many weeks", "abortion laws in california 2022", "california abortion laws 2022 28 days"], "self_loops": [], "tags": {"i": "abortion laws in california 2022-2024", "q": "Z_H3OW1h00EkxNzKQ12MK0Xdhlc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2022 how many weeks", "datetime": "2026-03-12 20:02:08.924602", "source": "google", "data": ["abortion laws in california 2022 how many weeks", [["abortion laws in california 2022 how many weeks until", 33, [160], {"a": "abortion laws in california 2022 how many ", "b": "weeks until"}], ["abortion laws in california 2022 how many weeks in a year", 33, [160], {"a": "abortion laws in california 2022 how many ", "b": "weeks in a year"}], ["abortion laws in california 2022 how many weeks am i", 33, [299], {"a": "abortion laws in california 2022 how many ", "b": "weeks am i"}], ["abortion laws in california 2022 how many weeks 2021", 33, [671], {"a": "abortion laws in california 2022 how many ", "b": "weeks 2021"}], ["abortion laws in california 2022 how many weeks 2020", 33, [671], {"a": "abortion laws in california 2022 how many ", "b": "weeks 2020"}]], {"i": "abortion laws in california 2022 how many weeks", "q": "WU_StNtTgJpnkE-3FQU9mIvWf94", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2022 how many weeks until", "abortion laws in california 2022 how many weeks in a year", "abortion laws in california 2022 how many weeks am i", "abortion laws in california 2022 how many weeks 2021", "abortion laws in california 2022 how many weeks 2020"], "self_loops": [], "tags": {"i": "abortion laws in california 2022 how many weeks", "q": "WU_StNtTgJpnkE-3FQU9mIvWf94", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2022 weeks", "datetime": "2026-03-12 20:02:09.767983", "source": "google", "data": ["abortion laws in california 2022 weeks", [["abortion laws in california 2022 weeks ago", 33, [160], {"a": "abortion laws in california 2022 ", "b": "weeks ago"}], ["abortion laws in california 2022 weeks and months", 33, [160], {"a": "abortion laws in california 2022 ", "b": "weeks and months"}], ["abortion laws in california 2022 weeks to weeks", 33, [160], {"a": "abortion laws in california 2022 ", "b": "weeks to weeks"}], ["abortion laws in california 2022 weeks", 33, [671], {"a": "abortion laws in california 2022 ", "b": "weeks"}], ["abortion laws in california 2022 weeks 2021", 33, [671], {"a": "abortion laws in california 2022 ", "b": "weeks 2021"}], ["abortion laws in california 2022 weeks 2020", 33, [671], {"a": "abortion laws in california 2022 ", "b": "weeks 2020"}]], {"i": "abortion laws in california 2022 weeks", "q": "LYnPm6ucAIrSFa3Qhkmut9aU5wA", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2022 weeks ago", "abortion laws in california 2022 weeks and months", "abortion laws in california 2022 weeks to weeks", "abortion laws in california 2022 weeks", "abortion laws in california 2022 weeks 2021", "abortion laws in california 2022 weeks 2020"], "self_loops": [3], "tags": {"i": "abortion laws in california 2022 weeks", "q": "LYnPm6ucAIrSFa3Qhkmut9aU5wA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california 2022 text", "datetime": "2026-03-12 20:02:10.951536", "source": "google", "data": ["abortion laws in california 2022 text", [["abortion laws in california 2022 textbook", 33, [160], {"a": "abortion laws in california 2022 ", "b": "textbook"}], ["abortion laws in california 2022 text pdf", 33, [160], {"a": "abortion laws in california 2022 ", "b": "text pdf"}], ["abortion laws in california 2022 texts", 33, [160], {"a": "abortion laws in california 2022 ", "b": "texts"}], ["abortion laws in california 2022 textbook pdf", 33, [160], {"a": "abortion laws in california 2022 ", "b": "textbook pdf"}]], {"i": "abortion laws in california 2022 text", "q": "oLuDXDctcwqLo9wCojeN6afnzJk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2022 textbook", "abortion laws in california 2022 text pdf", "abortion laws in california 2022 texts", "abortion laws in california 2022 textbook pdf"], "self_loops": [], "tags": {"i": "abortion laws in california 2022 text", "q": "oLuDXDctcwqLo9wCojeN6afnzJk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion legal in california", "datetime": "2026-03-12 20:02:12.207941", "source": "google", "data": ["is abortion legal in california", [["is abortion legal in california", 0, [512]], ["is abortion legal in california 2025", 0, [512]], ["is abortion legal in california 2026", 0, [512]], ["is abortion legal in california 2024", 0, [512]], ["is abortion legal in california for minors", 0, [512]], ["is abortion legal in california today", 0, [22, 30]], ["is abortion legal in california still", 0, [22, 30]], ["is abortion legal in california now", 0, [22, 30]], ["is abortion legal in california how many weeks", 0, [22, 30]], ["is abortion legal in california reddit", 0, [22, 30]]], {"i": "is abortion legal in california", "q": "XCts6zzsGP-DrmBplMZy7zEL9tc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion legal in california", "is abortion legal in california 2025", "is abortion legal in california 2026", "is abortion legal in california 2024", "is abortion legal in california for minors", "is abortion legal in california today", "is abortion legal in california still", "is abortion legal in california now", "is abortion legal in california how many weeks", "is abortion legal in california reddit"], "self_loops": [0], "tags": {"i": "is abortion legal in california", "q": "XCts6zzsGP-DrmBplMZy7zEL9tc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "when did abortion become legal in california", "datetime": "2026-03-12 20:02:13.462974", "source": "google", "data": ["when did abortion become legal in california", [["when did abortion become legal in california", 0, [512]], ["when did abortion become illegal in california", 0, [22, 30]], ["when did abortion first become legal in california", 0, [22, 30]], ["when does abortion become illegal california", 0, [22, 10, 30]], ["what year did abortion become legal in california", 0, [22, 30]], ["when did abortion become legal in america", 0, [512, 390, 650]], ["when did abortion become legal in ca", 0, [751]]], {"i": "when did abortion become legal in california", "q": "znC32YdA4h_q8JibGDxEEpAMFLY", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["when did abortion become legal in california", "when did abortion become illegal in california", "when did abortion first become legal in california", "when does abortion become illegal california", "what year did abortion become legal in california", "when did abortion become legal in america", "when did abortion become legal in ca"], "self_loops": [0], "tags": {"i": "when did abortion become legal in california", "q": "znC32YdA4h_q8JibGDxEEpAMFLY", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion legal in california 2023", "datetime": "2026-03-12 20:02:14.813817", "source": "google", "data": ["is abortion legal in california 2023", [["abortion laws in california 2023", 0, [22, 30]], ["new abortion law in california 2023", 0, [22, 30]], ["new abortion law in california 2023 overturned", 0, [22, 30]], ["when did abortion become legal in california", 0, [512, 390, 650]], ["is abortion legal in california", 0, [512, 390, 650]], ["is abortion legal in california 2023", 0, [546, 649]], ["is abortion legal in california 2021", 0, [751]], ["is abortion legal in california in 2022", 0, [751]], ["is abortion illegal in california 2023", 0, [546, 649]]], {"i": "is abortion legal in california 2023", "q": "ZylPgZcyepGTsFbBKAMzUM-2yzs", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2023", "new abortion law in california 2023", "new abortion law in california 2023 overturned", "when did abortion become legal in california", "is abortion legal in california", "is abortion legal in california 2023", "is abortion legal in california 2021", "is abortion legal in california in 2022", "is abortion illegal in california 2023"], "self_loops": [5], "tags": {"i": "is abortion legal in california 2023", "q": "ZylPgZcyepGTsFbBKAMzUM-2yzs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion legal in california 2021", "datetime": "2026-03-12 20:02:15.922802", "source": "google", "data": ["is abortion legal in california 2021", [["is abortion legal in california 2021 california", 33, [160], {"a": "is abortion legal in california ", "b": "2021 california"}], ["is abortion legal in california 2021-2024", 33, [160], {"a": "is abortion legal in california ", "b": "2021-2024"}], ["is abortion legal in california 2021", 33, [671], {"a": "is abortion legal in california ", "b": "2021"}]], {"i": "is abortion legal in california 2021", "q": "Fi_zhhDXKiJJIYZgTL3FS2RXYYo", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion legal in california 2021 california", "is abortion legal in california 2021-2024", "is abortion legal in california 2021"], "self_loops": [2], "tags": {"i": "is abortion legal in california 2021", "q": "Fi_zhhDXKiJJIYZgTL3FS2RXYYo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion legal in california 2022", "datetime": "2026-03-12 20:02:16.943607", "source": "google", "data": ["is abortion legal in california 2022", [["is abortion legal in california 20224", 33, [160], {"a": "is abortion legal in california ", "b": "20224"}], ["is abortion legal in california 2022 california", 33, [160], {"a": "is abortion legal in california ", "b": "2022 california"}], ["is abortion legal in california 2022-2023", 33, [160], {"a": "is abortion legal in california ", "b": "2022-2023"}], ["is abortion legal in california 2022", 33, [671], {"a": "is abortion legal in california ", "b": "2022"}], ["is abortion legal in california 2022 weeks", 33, [671], {"a": "is abortion legal in california ", "b": "2022 weeks"}], ["is abortion legal in california 2022 how many weeks", 33, [671], {"a": "is abortion legal in california ", "b": "2022 how many weeks"}], ["is abortion legal in california 2022 28 days", 33, [671], {"a": "is abortion legal in california ", "b": "2022 28 days"}], ["is abortion legal in california 2022 text", 33, [671], {"a": "is abortion legal in california ", "b": "2022 text"}]], {"i": "is abortion legal in california 2022", "q": "wNRMU1q-w4r0NNBQoFaWC577jjk", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion legal in california 20224", "is abortion legal in california 2022 california", "is abortion legal in california 2022-2023", "is abortion legal in california 2022", "is abortion legal in california 2022 weeks", "is abortion legal in california 2022 how many weeks", "is abortion legal in california 2022 28 days", "is abortion legal in california 2022 text"], "self_loops": [3], "tags": {"i": "is abortion legal in california 2022", "q": "wNRMU1q-w4r0NNBQoFaWC577jjk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion illegal in california 2023", "datetime": "2026-03-12 20:02:18.306608", "source": "google", "data": ["is abortion illegal in california 2023", [["abortion laws in california 2023", 0, [22, 30]], ["when did abortion become legal in california", 0, [512, 390, 650]], ["is abortion illegal in california 2023", 0, [546, 649]], ["is abortion illegal in california 2022", 0, [751]], ["is abortion legal in california 2023", 0, [546, 649]], ["is abortion illegal in california today", 0, [751]], ["is abortion illegal in california now", 0, [751]]], {"i": "is abortion illegal in california 2023", "q": "h-VHpVLBLTNOjbbfXEShG3GWDsE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2023", "when did abortion become legal in california", "is abortion illegal in california 2023", "is abortion illegal in california 2022", "is abortion legal in california 2023", "is abortion illegal in california today", "is abortion illegal in california now"], "self_loops": [2], "tags": {"i": "is abortion illegal in california 2023", "q": "h-VHpVLBLTNOjbbfXEShG3GWDsE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion illegal in california 2022", "datetime": "2026-03-12 20:02:19.730077", "source": "google", "data": ["is abortion illegal in california 2022", [["is abortion illegal in california 2022 california", 33, [160], {"a": "is abortion illegal in california ", "b": "2022 california"}], ["is abortion illegal in california 20224", 33, [160], {"a": "is abortion illegal in california ", "b": "20224"}], ["is abortion illegal in california 2022 law", 33, [160], {"a": "is abortion illegal in california ", "b": "2022 law"}], ["is abortion illegal in california 2022-2023", 33, [160], {"a": "is abortion illegal in california ", "b": "2022-2023"}], ["is abortion illegal in california 2022", 33, [671], {"a": "is abortion illegal in california ", "b": "2022"}], ["is abortion illegal in california 2022 28 days", 33, [671], {"a": "is abortion illegal in california ", "b": "2022 28 days"}], ["is abortion illegal in california 2022 weeks", 33, [671], {"a": "is abortion illegal in california ", "b": "2022 weeks"}]], {"i": "is abortion illegal in california 2022", "q": "RkmXvuH_BGk0xD9OqFEjCFgSvOw", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion illegal in california 2022 california", "is abortion illegal in california 20224", "is abortion illegal in california 2022 law", "is abortion illegal in california 2022-2023", "is abortion illegal in california 2022", "is abortion illegal in california 2022 28 days", "is abortion illegal in california 2022 weeks"], "self_loops": [4], "tags": {"i": "is abortion illegal in california 2022", "q": "RkmXvuH_BGk0xD9OqFEjCFgSvOw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion illegal in california today", "datetime": "2026-03-12 20:02:20.992730", "source": "google", "data": ["is abortion illegal in california today", [["is abortion illegal in california today", 0, [22, 30]], ["is abortion legal in california today", 0, [22, 30]], ["is abortion legal in california", 0, [512, 390, 650]], ["states that banned abortion", 0, [512, 390, 650]], ["is abortion illegal in california now", 0, [751]], ["is abortion illegal in california 2022", 0, [751]], ["is abortion illegal in california 2023", 0, [546, 649]]], {"i": "is abortion illegal in california today", "q": "57ywAMJVWXveS8OKdnXqwa0vKg0", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion illegal in california today", "is abortion legal in california today", "is abortion legal in california", "states that banned abortion", "is abortion illegal in california now", "is abortion illegal in california 2022", "is abortion illegal in california 2023"], "self_loops": [0], "tags": {"i": "is abortion illegal in california today", "q": "57ywAMJVWXveS8OKdnXqwa0vKg0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion illegal in california now", "datetime": "2026-03-12 20:02:21.875337", "source": "google", "data": ["is abortion illegal in california now", [["is abortion illegal in california now", 0, [22, 30]], ["is abortion legal in california now", 0, [22, 30]], ["is abortion legal in california today", 0, [22, 30]], ["is abortion legal in california", 0, [512, 390, 650]], ["which states banned abortion", 0, [512, 390, 650]], ["is abortion illegal in california today", 0, [751]], ["is abortion illegal in california 2022", 0, [751]]], {"i": "is abortion illegal in california now", "q": "rwmzdldMwRt3mnotmY8C1-CMleY", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion illegal in california now", "is abortion legal in california now", "is abortion legal in california today", "is abortion legal in california", "which states banned abortion", "is abortion illegal in california today", "is abortion illegal in california 2022"], "self_loops": [0], "tags": {"i": "is abortion illegal in california now", "q": "rwmzdldMwRt3mnotmY8C1-CMleY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws 2024", "datetime": "2026-03-12 20:02:23.030927", "source": "google", "data": ["california abortion laws 2024", [["california abortion laws 2024", 0, [512]], ["california abortion laws 2024 how many months", 0, [22, 30]], ["california abortion laws 2024 weeks", 0, [22, 30]], ["new california abortion laws 2024 update", 0, [22, 30]], ["new california abortion laws 2024 update today", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["california abortion laws", 0, [512, 390, 650]], ["california abortion laws 2023", 0, [546, 649]], ["california abortion laws 2022 weeks", 0, [751]], ["california abortion laws 28 days", 0, [751]]], {"i": "california abortion laws 2024", "q": "2lQcrF4lI_A6Vhq7tlbN7_bjOOk", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["california abortion laws 2024", "california abortion laws 2024 how many months", "california abortion laws 2024 weeks", "new california abortion laws 2024 update", "new california abortion laws 2024 update today", "abortion laws in california 2024 how many weeks", "california abortion laws", "california abortion laws 2023", "california abortion laws 2022 weeks", "california abortion laws 28 days"], "self_loops": [0], "tags": {"i": "california abortion laws 2024", "q": "2lQcrF4lI_A6Vhq7tlbN7_bjOOk", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws 2025", "datetime": "2026-03-12 20:02:24.329337", "source": "google", "data": ["california abortion laws 2025", [["california abortion laws 2025", 0, [512]], ["new california abortion laws 2025 update", 0, [22, 30]], ["new california abortion laws 2025 update today", 0, [22, 30]], ["california new abortion law 2025", 0, [22, 30]], ["california abortion laws", 0, [512, 390, 650]], ["california abortion laws 2023", 0, [546, 649]], ["california abortion laws 2022 weeks", 0, [751]], ["california abortion laws 28 days", 0, [751]], ["california abortion laws 2020", 0, [751]]], {"i": "california abortion laws 2025", "q": "1IW3CtGJPr5rT5iQTOfdY8yhJuw", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["california abortion laws 2025", "new california abortion laws 2025 update", "new california abortion laws 2025 update today", "california new abortion law 2025", "california abortion laws", "california abortion laws 2023", "california abortion laws 2022 weeks", "california abortion laws 28 days", "california abortion laws 2020"], "self_loops": [0], "tags": {"i": "california abortion laws 2025", "q": "1IW3CtGJPr5rT5iQTOfdY8yhJuw", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws weeks", "datetime": "2026-03-12 20:02:25.503868", "source": "google", "data": ["california abortion laws weeks", [["california abortion laws weeks", 0, [512]], ["california abortion legal weeks", 0, [22, 30]], ["california abortion laws 2024 weeks", 0, [22, 30]], ["california abortion laws how many weeks", 0, [512, 390, 650]], ["california abortion laws", 0, [512, 390, 650]], ["california abortion weeks", 0, [512, 546]], ["california abortion week limit", 0, [512, 546]], ["california abortion laws how many weeks 2021", 0, [751]]], {"i": "california abortion laws weeks", "q": "hl9wM0GI5pGfbYu95GU64IRcRK0", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws weeks", "california abortion legal weeks", "california abortion laws 2024 weeks", "california abortion laws how many weeks", "california abortion laws", "california abortion weeks", "california abortion week limit", "california abortion laws how many weeks 2021"], "self_loops": [0], "tags": {"i": "california abortion laws weeks", "q": "hl9wM0GI5pGfbYu95GU64IRcRK0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws for minors", "datetime": "2026-03-12 20:02:26.360086", "source": "google", "data": ["california abortion laws for minors", [["california abortion laws for minors", 0, [512]], ["is abortion legal in california for minors", 0, [512, 546]]], {"i": "california abortion laws for minors", "q": "W1zHoY6a6E-erOcYzLZmkU1J6h4", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws for minors", "is abortion legal in california for minors"], "self_loops": [0], "tags": {"i": "california abortion laws for minors", "q": "W1zHoY6a6E-erOcYzLZmkU1J6h4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws 2026", "datetime": "2026-03-12 20:02:27.796355", "source": "google", "data": ["california abortion laws 2026", [["california abortion laws 2026", 0, [512]], ["california abortion laws", 0, [512, 390, 650]], ["california abortion laws 28 days", 0, [751]], ["california abortion laws 2023", 0, [546, 649]], ["california abortion laws 2022 weeks", 0, [751]], ["california abortion laws 2022 text", 0, [751]]], {"i": "california abortion laws 2026", "q": "Da0w7n-2j1QPiaQLVjuSlUzksfA", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws 2026", "california abortion laws", "california abortion laws 28 days", "california abortion laws 2023", "california abortion laws 2022 weeks", "california abortion laws 2022 text"], "self_loops": [0], "tags": {"i": "california abortion laws 2026", "q": "Da0w7n-2j1QPiaQLVjuSlUzksfA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion lawsuit", "datetime": "2026-03-12 20:02:28.784436", "source": "google", "data": ["california abortion lawsuit", [["california abortion lawsuit", 0, [22, 30]], ["california abortion case", 0, [22, 30]], ["california abortion laws", 0, [512, 390, 650]], ["california abortion law news", 0, [512, 546]], ["california abortion law 2021", 0, [751]], ["california abortion laws fox news", 0, [751]], ["california abortion law results", 0, [751]], ["california abortion law passed today", 0, [751]]], {"i": "california abortion lawsuit", "q": "nawEFXfO3dUVo2buTH5iQlyC2Zs", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion lawsuit", "california abortion case", "california abortion laws", "california abortion law news", "california abortion law 2021", "california abortion laws fox news", "california abortion law results", "california abortion law passed today"], "self_loops": [0], "tags": {"i": "california abortion lawsuit", "q": "nawEFXfO3dUVo2buTH5iQlyC2Zs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws 2024 how many months", "datetime": "2026-03-12 20:02:29.898575", "source": "google", "data": ["california abortion laws 2024 how many months", [["california abortion laws 2024 how many months", 0, [22, 30]], ["california abortion laws how many weeks", 0, [512, 390, 650]], ["california abortion laws how many weeks 2020", 0, [751]], ["california abortion laws how many weeks 2021", 0, [751]], ["california abortion laws how many weeks 2022", 0, [546, 649]], ["california abortion 24 weeks", 0, [751]]], {"i": "california abortion laws 2024 how many months", "q": "32fG0z9OCyiBz2eyWmcdJr-7ys0", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws 2024 how many months", "california abortion laws how many weeks", "california abortion laws how many weeks 2020", "california abortion laws how many weeks 2021", "california abortion laws how many weeks 2022", "california abortion 24 weeks"], "self_loops": [0], "tags": {"i": "california abortion laws 2024 how many months", "q": "32fG0z9OCyiBz2eyWmcdJr-7ys0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws 2024 weeks", "datetime": "2026-03-12 20:02:31.088461", "source": "google", "data": ["california abortion laws 2024 weeks", [["california abortion laws 2024 weeks", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["california abortion laws how many weeks", 0, [512, 390, 650]], ["california abortion laws 2022 weeks", 0, [751]], ["california abortion laws 2023", 0, [546, 649]], ["california abortion laws 28 days", 0, [751]], ["california abortion 24 weeks", 0, [751]]], {"i": "california abortion laws 2024 weeks", "q": "jpQ556UBqhveaJQcS-fdkb6Bdm0", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws 2024 weeks", "abortion laws in california 2024 how many weeks", "california abortion laws how many weeks", "california abortion laws 2022 weeks", "california abortion laws 2023", "california abortion laws 28 days", "california abortion 24 weeks"], "self_loops": [0], "tags": {"i": "california abortion laws 2024 weeks", "q": "jpQ556UBqhveaJQcS-fdkb6Bdm0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws 2022", "datetime": "2026-03-12 20:02:32.105490", "source": "google", "data": ["california abortion laws 2022", [["california abortion laws 2022", 0, [22, 30]], ["california abortion laws", 0, [512, 390, 650]], ["california abortion laws 2022 weeks", 0, [751]], ["california abortion laws 2022 how many weeks", 0, [751]], ["california abortion laws 2022 text", 0, [751]], ["california abortion laws 2022 28 days", 0, [751]]], {"i": "california abortion laws 2022", "q": "mj0cYugrxtTPcLuW389dGChRLCE", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws 2022", "california abortion laws", "california abortion laws 2022 weeks", "california abortion laws 2022 how many weeks", "california abortion laws 2022 text", "california abortion laws 2022 28 days"], "self_loops": [0], "tags": {"i": "california abortion laws 2022", "q": "mj0cYugrxtTPcLuW389dGChRLCE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california history and background", "datetime": "2026-03-12 20:02:33.503479", "source": "google", "data": ["abortion laws in california history and background", [["abortion laws in california history and background information", 33, [160], {"a": "abortion laws in california history and ", "b": "background information"}], ["abortion laws in california history and background info", 33, [160], {"a": "abortion laws in california history and ", "b": "background info"}], ["abortion laws in california history and backgrounds", 33, [160], {"a": "abortion laws in california history and ", "b": "backgrounds"}], ["abortion laws in california history and background and history", 33, [160], {"a": "abortion laws in california history and ", "b": "background and history"}]], {"i": "abortion laws in california history and background", "q": "9ixfst6Ka454Yzd0LEeaUqw-x9Q", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california history and background information", "abortion laws in california history and background info", "abortion laws in california history and backgrounds", "abortion laws in california history and background and history"], "self_loops": [], "tags": {"i": "abortion laws in california history and background", "q": "9ixfst6Ka454Yzd0LEeaUqw-x9Q", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california history of", "datetime": "2026-03-12 20:02:34.502564", "source": "google", "data": ["abortion laws in california history of", [["abortion laws in california history of law", 33, [160], {"a": "abortion laws in california history ", "b": "of law"}], ["abortion laws in california history of california", 33, [160], {"a": "abortion laws in california history ", "b": "of california"}], ["abortion laws in california history of abortion", 33, [160], {"a": "abortion laws in california history ", "b": "of abortion"}], ["abortion laws in california history of abortion laws", 33, [160], {"a": "abortion laws in california history ", "b": "of abortion laws"}], ["abortion laws in california history officials say", 33, [299], {"a": "abortion laws in california history ", "b": "officials say"}], ["abortion laws in california history officials", 33, [299], {"a": "abortion laws in california history ", "b": "officials"}]], {"i": "abortion laws in california history of", "q": "sIL3etZaFHOpUMqvxq2HcRFnfGE", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california history of law", "abortion laws in california history of california", "abortion laws in california history of abortion", "abortion laws in california history of abortion laws", "abortion laws in california history officials say", "abortion laws in california history officials"], "self_loops": [], "tags": {"i": "abortion laws in california history of", "q": "sIL3etZaFHOpUMqvxq2HcRFnfGE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws in california history timeline", "datetime": "2026-03-12 20:02:35.575714", "source": "google", "data": ["abortion laws in california history timeline", [["abortion laws in california history timeline chart", 33, [160], {"a": "abortion laws in california history ", "b": "timeline chart"}], ["abortion laws in california history timeline of laws", 33, [160], {"a": "abortion laws in california history ", "b": "timeline of laws"}], ["abortion laws in california history timelines", 33, [160], {"a": "abortion laws in california history ", "b": "timelines"}], ["abortion laws in california history timeline california", 33, [160], {"a": "abortion laws in california history ", "b": "timeline california"}], ["abortion laws in california history timeline 2023", 33, [160], {"a": "abortion laws in california history ", "b": "timeline 2023"}], ["abortion laws in california history timeline 4th grade", 33, [299], {"a": "abortion laws in california history ", "b": "timeline 4th grade"}]], {"i": "abortion laws in california history timeline", "q": "yG4TkqrOQYH8AwwHwBFn1K-45S8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california history timeline chart", "abortion laws in california history timeline of laws", "abortion laws in california history timelines", "abortion laws in california history timeline california", "abortion laws in california history timeline 2023", "abortion laws in california history timeline 4th grade"], "self_loops": [], "tags": {"i": "abortion laws in california history timeline", "q": "yG4TkqrOQYH8AwwHwBFn1K-45S8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "until how many weeks is abortion legal in california", "datetime": "2026-03-12 20:02:36.551864", "source": "google", "data": ["until how many weeks is abortion legal in california", [["until how many weeks is abortion legal in california", 0, [512]], ["how many weeks can you have an abortion in california", 0, [512, 390, 650]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["how late can you have an abortion in california", 0, [512, 390, 650]], ["until how many weeks is abortion legal", 0, [512, 546]], ["until what month is abortion legal in california", 0, [751]]], {"i": "until how many weeks is abortion legal in california", "q": "wubIKc8NyEcFn-ugYxn893X1B9Q", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["until how many weeks is abortion legal in california", "how many weeks can you have an abortion in california", "how many weeks can you get an abortion california", "how late can you have an abortion in california", "until how many weeks is abortion legal", "until what month is abortion legal in california"], "self_loops": [0], "tags": {"i": "until how many weeks is abortion legal in california", "q": "wubIKc8NyEcFn-ugYxn893X1B9Q", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how many weeks can you get an abortion in california 2024", "datetime": "2026-03-12 20:02:37.861728", "source": "google", "data": ["how many weeks can you get an abortion in california 2024", [["how many weeks can you get an abortion in california 2024", 0, [30]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["how far along can you get an abortion california", 0, [512, 390, 650]], ["how many weeks can you have an abortion in california", 0, [512, 390, 650]], ["how many months can you get an abortion in california", 0, [512, 390, 650]], ["how many weeks can you get an abortion in california 2022", 0, [751]]], {"i": "how many weeks can you get an abortion in california 2024", "q": "_IXP9gAwHbFZItIaJmYL1XMGj4Q", "t": {"bpc": false, "tlw": false}}], "suggests": ["how many weeks can you get an abortion in california 2024", "how many weeks can you get an abortion california", "how far along can you get an abortion california", "how many weeks can you have an abortion in california", "how many months can you get an abortion in california", "how many weeks can you get an abortion in california 2022"], "self_loops": [0], "tags": {"i": "how many weeks can you get an abortion in california 2024", "q": "_IXP9gAwHbFZItIaJmYL1XMGj4Q", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how many weeks can you get an abortion in california 2022", "datetime": "2026-03-12 20:02:39.307057", "source": "google", "data": ["how many weeks can you get an abortion in california 2022", [["how many weeks can you get an abortion in california 2022", 0, [30]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["how many weeks can you have an abortion in california", 0, [512, 390, 650]], ["how far along can you get an abortion california", 0, [512, 390, 650]], ["how many months can you get an abortion in california", 0, [512, 390, 650]], ["how many weeks can you get an abortion in ca", 0, [546, 649]]], {"i": "how many weeks can you get an abortion in california 2022", "q": "pHADMLmGa6rhnpkad_V8XsIlwtI", "t": {"bpc": false, "tlw": false}}], "suggests": ["how many weeks can you get an abortion in california 2022", "how many weeks can you get an abortion california", "how many weeks can you have an abortion in california", "how far along can you get an abortion california", "how many months can you get an abortion in california", "how many weeks can you get an abortion in ca"], "self_loops": [0], "tags": {"i": "how many weeks can you get an abortion in california 2022", "q": "pHADMLmGa6rhnpkad_V8XsIlwtI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "until how many weeks can you have an abortion in california", "datetime": "2026-03-12 20:02:40.462106", "source": "google", "data": ["until how many weeks can you have an abortion in california", [["until how many weeks can you have an abortion in california", 0, [30]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["how far along can you get an abortion california", 0, [512, 390, 650]], ["how far into pregnancy can you have an abortion in california", 0, [512, 390, 650]], ["how many weeks until you can't have an abortion in california", 0, [512, 546]], ["until how many weeks is abortion legal in california", 0, [512, 546]], ["at how many weeks can you have an abortion in ca", 0, [751]]], {"i": "until how many weeks can you have an abortion in california", "q": "sF9UKgXNIv7Guj3R527d865TVHs", "t": {"bpc": false, "tlw": false}}], "suggests": ["until how many weeks can you have an abortion in california", "how many weeks can you get an abortion california", "how far along can you get an abortion california", "how far into pregnancy can you have an abortion in california", "how many weeks until you can't have an abortion in california", "until how many weeks is abortion legal in california", "at how many weeks can you have an abortion in ca"], "self_loops": [0], "tags": {"i": "until how many weeks can you have an abortion in california", "q": "sF9UKgXNIv7Guj3R527d865TVHs", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how many weeks can you not have an abortion in california", "datetime": "2026-03-12 20:02:41.453579", "source": "google", "data": ["how many weeks can you not have an abortion in california", [["how many weeks can you not have an abortion in california", 0, [30]], ["how many weeks can you have an abortion in california", 0, [512, 390, 650]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["how far into pregnancy can you have an abortion in california", 0, [512, 390, 650]], ["how far along can you get an abortion california", 0, [512, 390, 650]], ["what states allow abortion after 12 weeks", 0, [512, 390, 650]], ["how many weeks until you can't have an abortion in california", 0, [512, 546]]], {"i": "how many weeks can you not have an abortion in california", "q": "hj1dhwuP1DpVIDpq68CVlTF8IhU", "t": {"bpc": false, "tlw": false}}], "suggests": ["how many weeks can you not have an abortion in california", "how many weeks can you have an abortion in california", "how many weeks can you get an abortion california", "how far into pregnancy can you have an abortion in california", "how far along can you get an abortion california", "what states allow abortion after 12 weeks", "how many weeks until you can't have an abortion in california"], "self_loops": [0], "tags": {"i": "how many weeks can you not have an abortion in california", "q": "hj1dhwuP1DpVIDpq68CVlTF8IhU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "after how many weeks can you have an abortion in california", "datetime": "2026-03-12 20:02:42.896612", "source": "google", "data": ["after how many weeks can you have an abortion in california", [["after how many weeks can you have an abortion in california", 0, [30]], ["after how many weeks can you not have an abortion in california", 0, [8, 30]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["how far along can you get an abortion california", 0, [512, 390, 650]], ["at how many weeks can you have an abortion in ca", 0, [751]]], {"i": "after how many weeks can you have an abortion in california", "q": "3CpM1BmRHByRwsQA0Sd08pWufXU", "t": {"bpc": false, "tlw": false}}], "suggests": ["after how many weeks can you have an abortion in california", "after how many weeks can you not have an abortion in california", "how many weeks can you get an abortion california", "how far along can you get an abortion california", "at how many weeks can you have an abortion in ca"], "self_loops": [0], "tags": {"i": "after how many weeks can you have an abortion in california", "q": "3CpM1BmRHByRwsQA0Sd08pWufXU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how many weeks can you get an abortion pill in california", "datetime": "2026-03-12 20:02:43.774833", "source": "google", "data": ["how many weeks can you get an abortion pill in california", [["how many weeks can you get an abortion pill in california", 0, [30]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["how far along can you get an abortion california", 0, [512, 390, 650]], ["how many weeks can you get an abortion in california 2022", 0, [751]], ["how many weeks can you get an abortion in ca", 0, [546, 649]]], {"i": "how many weeks can you get an abortion pill in california", "q": "TqhmXv-8Ox411bvX6IRDMhUFbf0", "t": {"bpc": false, "tlw": false}}], "suggests": ["how many weeks can you get an abortion pill in california", "how many weeks can you get an abortion california", "how far along can you get an abortion california", "how many weeks can you get an abortion in california 2022", "how many weeks can you get an abortion in ca"], "self_loops": [0], "tags": {"i": "how many weeks can you get an abortion pill in california", "q": "TqhmXv-8Ox411bvX6IRDMhUFbf0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how many weeks can you not get an abortion in california", "datetime": "2026-03-12 20:02:45.137908", "source": "google", "data": ["how many weeks can you not get an abortion in california", [["how many weeks can you not get an abortion in california", 0, [30]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["how many weeks can you have an abortion in california", 0, [512, 390, 650]], ["how far along can you get an abortion california", 0, [512, 390, 650]], ["when can you not get an abortion in california", 0, [512, 390, 650]], ["how many months can you get an abortion in california", 0, [512, 390, 650]], ["how many weeks can you get an abortion in california 2022", 0, [751]], ["how many weeks can you get an abortion in ca", 0, [546, 649]]], {"i": "how many weeks can you not get an abortion in california", "q": "GlhiGStxy1tQgFMhMRojBRWt4VY", "t": {"bpc": false, "tlw": false}}], "suggests": ["how many weeks can you not get an abortion in california", "how many weeks can you get an abortion california", "how many weeks can you have an abortion in california", "how far along can you get an abortion california", "when can you not get an abortion in california", "how many months can you get an abortion in california", "how many weeks can you get an abortion in california 2022", "how many weeks can you get an abortion in ca"], "self_loops": [0], "tags": {"i": "how many weeks can you not get an abortion in california", "q": "GlhiGStxy1tQgFMhMRojBRWt4VY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "after how many weeks can you get an abortion in california", "datetime": "2026-03-12 20:02:46.233349", "source": "google", "data": ["after how many weeks can you get an abortion in california", [["after how many weeks can you get an abortion in california", 0, [30]], ["after how many weeks can you not get an abortion in california", 0, [8, 30]], ["how far along can you get an abortion california", 0, [512, 390, 650]], ["how many weeks out can you get an abortion", 0, [512, 390, 650]], ["how many months can you get an abortion in california", 0, [512, 390, 650]], ["at how many weeks can you get an abortion in ca", 0, [751]]], {"i": "after how many weeks can you get an abortion in california", "q": "SN-RbNrxXiQIS4FChDnPljBiFDo", "t": {"bpc": false, "tlw": false}}], "suggests": ["after how many weeks can you get an abortion in california", "after how many weeks can you not get an abortion in california", "how far along can you get an abortion california", "how many weeks out can you get an abortion", "how many months can you get an abortion in california", "at how many weeks can you get an abortion in ca"], "self_loops": [0], "tags": {"i": "after how many weeks can you get an abortion in california", "q": "SN-RbNrxXiQIS4FChDnPljBiFDo", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how many weeks can you wait to get an abortion in california", "datetime": "2026-03-12 20:02:47.426192", "source": "google", "data": ["how many weeks can you wait to get an abortion in california", [["how many weeks can you wait to get an abortion in california", 0, [30]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["how far along can you get an abortion california", 0, [512, 390, 650]], ["how many weeks can you have an abortion in california", 0, [512, 390, 650]], ["how many weeks can you get an abortion in california 2022", 0, [751]], ["how many weeks can you get an abortion in ca", 0, [546, 649]]], {"i": "how many weeks can you wait to get an abortion in california", "q": "bnpB_I5cXnMOKM4vWnpxmN_nIPA", "t": {"bpc": false, "tlw": false}}], "suggests": ["how many weeks can you wait to get an abortion in california", "how many weeks can you get an abortion california", "how far along can you get an abortion california", "how many weeks can you have an abortion in california", "how many weeks can you get an abortion in california 2022", "how many weeks can you get an abortion in ca"], "self_loops": [0], "tags": {"i": "how many weeks can you wait to get an abortion in california", "q": "bnpB_I5cXnMOKM4vWnpxmN_nIPA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "up to how many weeks can you get an abortion california", "datetime": "2026-03-12 20:02:48.998123", "source": "google", "data": ["up to how many weeks can you get an abortion california", [["up to how many weeks can you get an abortion california", 0, [30]], ["how far along can you get an abortion california", 0, [512, 390, 650]], ["how many weeks can you have an abortion in california", 0, [512, 390, 650]], ["up to how many weeks can you have an abortion in ca", 0, [546, 649]], ["up to how many weeks can you get an abortion", 0, [512, 546]]], {"i": "up to how many weeks can you get an abortion california", "q": "CK0J0-KGN4mgw_zKYCsOV9ZABO8", "t": {"bpc": false, "tlw": false}}], "suggests": ["up to how many weeks can you get an abortion california", "how far along can you get an abortion california", "how many weeks can you have an abortion in california", "up to how many weeks can you have an abortion in ca", "up to how many weeks can you get an abortion"], "self_loops": [0], "tags": {"i": "up to how many weeks can you get an abortion california", "q": "CK0J0-KGN4mgw_zKYCsOV9ZABO8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how many weeks do you have to get an abortion california", "datetime": "2026-03-12 20:02:50.045100", "source": "google", "data": ["how many weeks do you have to get an abortion california", [["how many weeks do you have to get an abortion california", 0, [30]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["how far along can you get an abortion california", 0, [512, 390, 650]], ["how many months can you get an abortion in california", 0, [512, 390, 650]], ["how many weeks can you get an abortion in california 2022", 0, [751]]], {"i": "how many weeks do you have to get an abortion california", "q": "ClLLthyhfCmS5UYeH0Hthj_e4RQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["how many weeks do you have to get an abortion california", "how many weeks can you get an abortion california", "how far along can you get an abortion california", "how many months can you get an abortion in california", "how many weeks can you get an abortion in california 2022"], "self_loops": [0], "tags": {"i": "how many weeks do you have to get an abortion california", "q": "ClLLthyhfCmS5UYeH0Hthj_e4RQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how many weeks until you can't get an abortion in california", "datetime": "2026-03-12 20:02:51.244999", "source": "google", "data": ["how many weeks until you can't get an abortion in california", [["how many weeks until you can get an abortion in california", 0, [30]], ["how many weeks until you can't get an abortion in california", 0, [8, 30]], ["how many weeks until you can t get an abortion anymore in california", 0, [8, 30]], ["how far along can you get an abortion california", 0, [512, 390, 650]], ["how many months can you get an abortion in california", 0, [512, 390, 650]], ["how many weeks until you can't have an abortion in california", 0, [512, 546]], ["how many weeks can you get an abortion in california 2022", 0, [751]], ["how long until you can't get an abortion in california", 0, [512, 546]]], {"i": "how many weeks until you can't get an abortion in california", "q": "BvRg6ETcgocuLKPIYqDuK3TPaHM", "t": {"bpc": false, "tlw": false}}], "suggests": ["how many weeks until you can get an abortion in california", "how many weeks until you can't get an abortion in california", "how many weeks until you can t get an abortion anymore in california", "how far along can you get an abortion california", "how many months can you get an abortion in california", "how many weeks until you can't have an abortion in california", "how many weeks can you get an abortion in california 2022", "how long until you can't get an abortion in california"], "self_loops": [1], "tags": {"i": "how many weeks until you can't get an abortion in california", "q": "BvRg6ETcgocuLKPIYqDuK3TPaHM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2021 california", "datetime": "2026-03-12 20:02:52.625857", "source": "google", "data": ["california abortion laws how many weeks 2021 california", [["california abortion laws how many weeks 2021 california law", 33, [160], {"a": "california abortion laws how many weeks 2021 ", "b": "california law"}], ["california abortion laws how many weeks 2021 california abortion laws", 33, [160], {"a": "california abortion laws how many weeks 2021 ", "b": "california abortion laws"}], ["california abortion laws how many weeks 2021 california abortion", 33, [160], {"a": "california abortion laws how many weeks 2021 ", "b": "california abortion"}]], {"i": "california abortion laws how many weeks 2021 california", "q": "zZBbcsI60fOv0PZUX6wbC4q4QrE", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2021 california law", "california abortion laws how many weeks 2021 california abortion laws", "california abortion laws how many weeks 2021 california abortion"], "self_loops": [], "tags": {"i": "california abortion laws how many weeks 2021 california", "q": "zZBbcsI60fOv0PZUX6wbC4q4QrE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2021 law", "datetime": "2026-03-12 20:02:53.955224", "source": "google", "data": ["california abortion laws how many weeks 2021 law", [["california abortion laws how many weeks 2021 laws", 33, [160], {"a": "california abortion laws how many weeks 2021 ", "b": "laws"}], ["california abortion laws how many weeks 2021 lawsuit", 33, [160], {"a": "california abortion laws how many weeks 2021 ", "b": "lawsuit"}], ["california abortion laws how many weeks 2021 law change", 33, [160], {"a": "california abortion laws how many weeks 2021 ", "b": "law change"}], ["california abortion laws how many weeks 2021 law update", 33, [160], {"a": "california abortion laws how many weeks 2021 ", "b": "law update"}], ["california abortion laws how many weeks 2021 law 2022", 33, [671], {"a": "california abortion laws how many weeks 2021 ", "b": "law 2022"}], ["california abortion laws how many weeks 2021 law 2022 28 days", 33, [671], {"a": "california abortion laws how many weeks 2021 ", "b": "law 2022 28 days"}], ["california abortion laws how many weeks 2021 law 28", 33, [671], {"a": "california abortion laws how many weeks 2021 ", "b": "law 28"}], ["california abortion laws how many weeks 2021 law 2002", 33, [671], {"a": "california abortion laws how many weeks 2021 ", "b": "law 2002"}], ["california abortion laws how many weeks 2021 law 2023", 33, [671], {"a": "california abortion laws how many weeks 2021 ", "b": "law 2023"}], ["california abortion laws how many weeks 2021 law results", 33, [671], {"a": "california abortion laws how many weeks 2021 ", "b": "law results"}]], {"i": "california abortion laws how many weeks 2021 law", "q": "__KgJ5lUR8Zn3fQBA7m2F4Gv1zU", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2021 laws", "california abortion laws how many weeks 2021 lawsuit", "california abortion laws how many weeks 2021 law change", "california abortion laws how many weeks 2021 law update", "california abortion laws how many weeks 2021 law 2022", "california abortion laws how many weeks 2021 law 2022 28 days", "california abortion laws how many weeks 2021 law 28", "california abortion laws how many weeks 2021 law 2002", "california abortion laws how many weeks 2021 law 2023", "california abortion laws how many weeks 2021 law results"], "self_loops": [], "tags": {"i": "california abortion laws how many weeks 2021 law", "q": "__KgJ5lUR8Zn3fQBA7m2F4Gv1zU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2021 to present", "datetime": "2026-03-12 20:02:55.154235", "source": "google", "data": ["california abortion laws how many weeks 2021 to present", [["california abortion laws how many weeks 2021 to present today", 33, [160], {"a": "california abortion laws how many weeks 2021 to ", "b": "present today"}], ["california abortion laws how many weeks 2021 to present date", 33, [160], {"a": "california abortion laws how many weeks 2021 to ", "b": "present date"}], ["california abortion laws how many weeks 2021 to present year", 33, [160], {"a": "california abortion laws how many weeks 2021 to ", "b": "present year"}], ["california abortion laws how many weeks 2021 to present now", 33, [160], {"a": "california abortion laws how many weeks 2021 to ", "b": "present now"}]], {"i": "california abortion laws how many weeks 2021 to present", "q": "X91WrBr3MXwvv7zCRJG7afZ6Yd0", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2021 to present today", "california abortion laws how many weeks 2021 to present date", "california abortion laws how many weeks 2021 to present year", "california abortion laws how many weeks 2021 to present now"], "self_loops": [], "tags": {"i": "california abortion laws how many weeks 2021 to present", "q": "X91WrBr3MXwvv7zCRJG7afZ6Yd0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2021-2024", "datetime": "2026-03-12 20:02:56.194285", "source": "google", "data": ["california abortion laws how many weeks 2021-2024", [["california abortion laws how many weeks 2020", 0, [751]], ["california abortion laws how many weeks 2021", 0, [751]], ["california abortion laws how many weeks 2022", 0, [546, 649]]], {"i": "california abortion laws how many weeks 2021-2024", "q": "2Fu3kaKz4zSZvZKOiViTlSmvZuQ", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2020", "california abortion laws how many weeks 2021", "california abortion laws how many weeks 2022"], "self_loops": [], "tags": {"i": "california abortion laws how many weeks 2021-2024", "q": "2Fu3kaKz4zSZvZKOiViTlSmvZuQ", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2020 to present", "datetime": "2026-03-12 20:02:57.011172", "source": "google", "data": ["california abortion laws how many weeks 2020 to present", [["california abortion laws how many weeks 2020 to present today", 33, [160], {"a": "california abortion laws how many weeks 2020 to ", "b": "present today"}], ["california abortion laws how many weeks 2020 to present date", 33, [160], {"a": "california abortion laws how many weeks 2020 to ", "b": "present date"}], ["california abortion laws how many weeks 2020 to present year", 33, [160], {"a": "california abortion laws how many weeks 2020 to ", "b": "present year"}], ["california abortion laws how many weeks 2020 to present 2", 33, [160], {"a": "california abortion laws how many weeks 2020 to ", "b": "present 2"}]], {"i": "california abortion laws how many weeks 2020 to present", "q": "tCycmR9-EvBhdCuseD2YfGxDFBI", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2020 to present today", "california abortion laws how many weeks 2020 to present date", "california abortion laws how many weeks 2020 to present year", "california abortion laws how many weeks 2020 to present 2"], "self_loops": [], "tags": {"i": "california abortion laws how many weeks 2020 to present", "q": "tCycmR9-EvBhdCuseD2YfGxDFBI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2020-2024", "datetime": "2026-03-12 20:02:57.839806", "source": "google", "data": ["california abortion laws how many weeks 2020-2024", [["california abortion laws how many weeks 2020", 0, [751]], ["california abortion laws how many weeks 2021", 0, [751]], ["california abortion laws how many weeks 2022", 0, [546, 649]], ["california abortion laws how many weeks", 0, [512, 546]]], {"i": "california abortion laws how many weeks 2020-2024", "q": "M61TOyTJ9PJnKW5ZgaKYCu-Q-kE", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2020", "california abortion laws how many weeks 2021", "california abortion laws how many weeks 2022", "california abortion laws how many weeks"], "self_loops": [], "tags": {"i": "california abortion laws how many weeks 2020-2024", "q": "M61TOyTJ9PJnKW5ZgaKYCu-Q-kE", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2020 california", "datetime": "2026-03-12 20:02:59.304608", "source": "google", "data": ["california abortion laws how many weeks 2020 california", [["california abortion laws how many weeks 2020 california abortion laws", 33, [160], {"a": "california abortion laws how many weeks 2020 ", "b": "california abortion laws"}], ["california abortion laws how many weeks 2020 california law", 33, [160], {"a": "california abortion laws how many weeks 2020 ", "b": "california law"}], ["california abortion laws how many weeks 2020 california abortion", 33, [160], {"a": "california abortion laws how many weeks 2020 ", "b": "california abortion"}]], {"i": "california abortion laws how many weeks 2020 california", "q": "m2pw0_uvnfHMqHKWTACuhS2hlZA", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2020 california abortion laws", "california abortion laws how many weeks 2020 california law", "california abortion laws how many weeks 2020 california abortion"], "self_loops": [], "tags": {"i": "california abortion laws how many weeks 2020 california", "q": "m2pw0_uvnfHMqHKWTACuhS2hlZA", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2020 law", "datetime": "2026-03-12 20:03:00.569874", "source": "google", "data": ["california abortion laws how many weeks 2020 law", [["california abortion laws how many weeks 2020 laws", 33, [160], {"a": "california abortion laws how many weeks 2020 ", "b": "laws"}], ["california abortion laws how many weeks 2020 lawsuit", 33, [160], {"a": "california abortion laws how many weeks 2020 ", "b": "lawsuit"}], ["california abortion laws how many weeks 2020 law changes", 33, [160], {"a": "california abortion laws how many weeks 2020 ", "b": "law changes"}], ["california abortion laws how many weeks 2020 law 2022", 33, [671], {"a": "california abortion laws how many weeks 2020 ", "b": "law 2022"}], ["california abortion laws how many weeks 2020 law 2002", 33, [671], {"a": "california abortion laws how many weeks 2020 ", "b": "law 2002"}], ["california abortion laws how many weeks 2020 law 28", 33, [671], {"a": "california abortion laws how many weeks 2020 ", "b": "law 28"}], ["california abortion laws how many weeks 2020 law 2021", 33, [671], {"a": "california abortion laws how many weeks 2020 ", "b": "law 2021"}], ["california abortion laws how many weeks 2020 law 2023", 33, [671], {"a": "california abortion laws how many weeks 2020 ", "b": "law 2023"}], ["california abortion laws how many weeks 2020 law time limit 2022", 33, [671], {"a": "california abortion laws how many weeks 2020 ", "b": "law time limit 2022"}], ["california abortion laws how many weeks 2020 law 9 months", 33, [671], {"a": "california abortion laws how many weeks 2020 ", "b": "law 9 months"}]], {"i": "california abortion laws how many weeks 2020 law", "q": "GGuybkNEPKqg9aGYwaihLiQB9IM", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2020 laws", "california abortion laws how many weeks 2020 lawsuit", "california abortion laws how many weeks 2020 law changes", "california abortion laws how many weeks 2020 law 2022", "california abortion laws how many weeks 2020 law 2002", "california abortion laws how many weeks 2020 law 28", "california abortion laws how many weeks 2020 law 2021", "california abortion laws how many weeks 2020 law 2023", "california abortion laws how many weeks 2020 law time limit 2022", "california abortion laws how many weeks 2020 law 9 months"], "self_loops": [], "tags": {"i": "california abortion laws how many weeks 2020 law", "q": "GGuybkNEPKqg9aGYwaihLiQB9IM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2022 california", "datetime": "2026-03-12 20:03:02.067963", "source": "google", "data": ["california abortion laws how many weeks 2022 california", [["california abortion laws how many weeks 2022 california abortion laws", 33, [160], {"a": "california abortion laws how many weeks 2022 ", "b": "california abortion laws"}], ["california abortion laws how many weeks 2022 california law", 33, [160], {"a": "california abortion laws how many weeks 2022 ", "b": "california law"}], ["california abortion laws how many weeks 2022 california abortion", 33, [160], {"a": "california abortion laws how many weeks 2022 ", "b": "california abortion"}]], {"i": "california abortion laws how many weeks 2022 california", "q": "FMlG9ipJaT25SX9zFJtB8Wlpx1Q", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2022 california abortion laws", "california abortion laws how many weeks 2022 california law", "california abortion laws how many weeks 2022 california abortion"], "self_loops": [], "tags": {"i": "california abortion laws how many weeks 2022 california", "q": "FMlG9ipJaT25SX9zFJtB8Wlpx1Q", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2022-2023", "datetime": "2026-03-12 20:03:02.927480", "source": "google", "data": ["california abortion laws how many weeks 2022-2023", [["california abortion laws how many weeks 2022 2023", 33, [671], {"a": "california abortion laws how many weeks ", "b": "2022 2023"}]], {"i": "california abortion laws how many weeks 2022-2023", "q": "_9FxQljrL557OeT7tlW16xRFZXU", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2022 2023"], "self_loops": [], "tags": {"i": "california abortion laws how many weeks 2022-2023", "q": "_9FxQljrL557OeT7tlW16xRFZXU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2022 to present", "datetime": "2026-03-12 20:03:03.864245", "source": "google", "data": ["california abortion laws how many weeks 2022 to present", [["california abortion laws how many weeks 2022 to present date", 33, [160], {"a": "california abortion laws how many weeks 2022 to ", "b": "present date"}], ["california abortion laws how many weeks 2022 to present today", 33, [160], {"a": "california abortion laws how many weeks 2022 to ", "b": "present today"}], ["california abortion laws how many weeks 2022 to present year", 33, [160], {"a": "california abortion laws how many weeks 2022 to ", "b": "present year"}], ["california abortion laws how many weeks 2022 to present 2", 33, [160], {"a": "california abortion laws how many weeks 2022 to ", "b": "present 2"}]], {"i": "california abortion laws how many weeks 2022 to present", "q": "mztqQwJpN0FbagF4PWJUwTd3f30", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2022 to present date", "california abortion laws how many weeks 2022 to present today", "california abortion laws how many weeks 2022 to present year", "california abortion laws how many weeks 2022 to present 2"], "self_loops": [], "tags": {"i": "california abortion laws how many weeks 2022 to present", "q": "mztqQwJpN0FbagF4PWJUwTd3f30", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 20224", "datetime": "2026-03-12 20:03:05.033595", "source": "google", "data": ["california abortion laws how many weeks 20224", [["california abortion laws how many weeks 20224 california", 33, [160], {"a": "california abortion laws how many weeks ", "b": "20224 california"}], ["california abortion laws how many weeks 20224-25", 33, [160], {"a": "california abortion laws how many weeks ", "b": "20224-25"}], ["california abortion laws how many weeks 20224-202", 33, [160], {"a": "california abortion laws how many weeks ", "b": "20224-202"}], ["california abortion laws how many weeks 20224 to present", 33, [160], {"a": "california abortion laws how many weeks ", "b": "20224 to present"}]], {"i": "california abortion laws how many weeks 20224", "q": "OHJDSm81ZRf_BH9ovhWtRKTwDfM", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 20224 california", "california abortion laws how many weeks 20224-25", "california abortion laws how many weeks 20224-202", "california abortion laws how many weeks 20224 to present"], "self_loops": [], "tags": {"i": "california abortion laws how many weeks 20224", "q": "OHJDSm81ZRf_BH9ovhWtRKTwDfM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion laws how many weeks 2022 text", "datetime": "2026-03-12 20:03:06.335436", "source": "google", "data": ["california abortion laws how many weeks 2022 text", [["california abortion laws how many weeks 2022 textbook", 33, [160], {"a": "california abortion laws how many weeks 2022 ", "b": "textbook"}], ["california abortion laws how many weeks 2022 texts", 33, [160], {"a": "california abortion laws how many weeks 2022 ", "b": "texts"}], ["california abortion laws how many weeks 2022 text pdf", 33, [160], {"a": "california abortion laws how many weeks 2022 ", "b": "text pdf"}], ["california abortion laws how many weeks 2022 text law", 33, [160], {"a": "california abortion laws how many weeks 2022 ", "b": "text law"}]], {"i": "california abortion laws how many weeks 2022 text", "q": "gK5ACRQ-FuiIE2rBvvwD6_2zla8", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws how many weeks 2022 textbook", "california abortion laws how many weeks 2022 texts", "california abortion laws how many weeks 2022 text pdf", "california abortion laws how many weeks 2022 text law"], "self_loops": [], "tags": {"i": "california abortion laws how many weeks 2022 text", "q": "gK5ACRQ-FuiIE2rBvvwD6_2zla8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion banned in california 2024", "datetime": "2026-03-12 20:03:07.593384", "source": "google", "data": ["is abortion banned in california 2024", [["is abortion banned in california 2024", 0, [22, 30]], ["is abortion legal in california 2024", 0, [22, 30]], ["is abortion illegal in california 2024", 0, [22, 30]], ["what is the abortion law in california 2024", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["which states banned abortion", 0, [512, 390, 650]], ["is abortion illegal in california 2023", 0, [546, 649]], ["is abortion legal in california 2023", 0, [546, 649]], ["is abortion going to be banned in california", 0, [751]], ["is california banning abortions 2022", 0, [751]]], {"i": "is abortion banned in california 2024", "q": "iN4TM_OGLaAYoRelWTV22eoIsos", "t": {"bpc": false, "tlw": false}}], "suggests": ["is abortion banned in california 2024", "is abortion legal in california 2024", "is abortion illegal in california 2024", "what is the abortion law in california 2024", "abortion laws in california 2024 how many weeks", "which states banned abortion", "is abortion illegal in california 2023", "is abortion legal in california 2023", "is abortion going to be banned in california", "is california banning abortions 2022"], "self_loops": [0], "tags": {"i": "is abortion banned in california 2024", "q": "iN4TM_OGLaAYoRelWTV22eoIsos", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion legal in california 2022", "datetime": "2026-03-12 20:03:08.931761", "source": "google", "data": ["abortion legal in california 2022", [["abortion legal in california 2022 california", 33, [160], {"a": "abortion legal in california ", "b": "2022 california"}], ["abortion legal in california 2022 vs 2024", 33, [160], {"a": "abortion legal in california ", "b": "2022 vs 2024"}], ["abortion legal in california 2022-2023", 33, [160], {"a": "abortion legal in california ", "b": "2022-2023"}], ["abortion legal in california 2022", 33, [671], {"a": "abortion legal in california ", "b": "2022"}], ["abortion legal in california 2022 weeks", 33, [671], {"a": "abortion legal in california ", "b": "2022 weeks"}], ["abortion legal in california 2022 how many weeks", 33, [671], {"a": "abortion legal in california ", "b": "2022 how many weeks"}], ["abortion legal in california 2022 text", 33, [671], {"a": "abortion legal in california ", "b": "2022 text"}]], {"i": "abortion legal in california 2022", "q": "h0EJQ6DXCwfPHJrWlpcPTSqzil4", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion legal in california 2022 california", "abortion legal in california 2022 vs 2024", "abortion legal in california 2022-2023", "abortion legal in california 2022", "abortion legal in california 2022 weeks", "abortion legal in california 2022 how many weeks", "abortion legal in california 2022 text"], "self_loops": [3], "tags": {"i": "abortion legal in california 2022", "q": "h0EJQ6DXCwfPHJrWlpcPTSqzil4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new california abortion laws 2024 update today", "datetime": "2026-03-12 20:03:09.893698", "source": "google", "data": ["new california abortion laws 2024 update today", [["new california abortion laws 2024 update today", 0, [22, 30]], ["new abortion laws in california", 0, [512, 390, 650]], ["new california abortion laws 2021", 0, [751]]], {"i": "new california abortion laws 2024 update today", "q": "q1bgUeJxRtWB4RrrO9X66JG4VZM", "t": {"bpc": false, "tlw": false}}], "suggests": ["new california abortion laws 2024 update today", "new abortion laws in california", "new california abortion laws 2021"], "self_loops": [0], "tags": {"i": "new california abortion laws 2024 update today", "q": "q1bgUeJxRtWB4RrrO9X66JG4VZM", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new abortion laws in california 2022", "datetime": "2026-03-12 20:03:11.269563", "source": "google", "data": ["new abortion laws in california 2022", [["new abortion laws in california 20224", 33, [160], {"a": "new abortion laws in california ", "b": "20224"}], ["new abortion laws in california 2022 california", 33, [160], {"a": "new abortion laws in california ", "b": "2022 california"}], ["new abortion laws in california 2022-2023", 33, [160], {"a": "new abortion laws in california ", "b": "2022-2023"}], ["new abortion laws in california 2022", 33, [671], {"a": "new abortion laws in california ", "b": "2022"}], ["new abortion laws in california 2022 how many weeks", 33, [671], {"a": "new abortion laws in california ", "b": "2022 how many weeks"}]], {"i": "new abortion laws in california 2022", "q": "-r6qDJ5rtzV-mwATv61pjbia9r4", "t": {"bpc": false, "tlw": false}}], "suggests": ["new abortion laws in california 20224", "new abortion laws in california 2022 california", "new abortion laws in california 2022-2023", "new abortion laws in california 2022", "new abortion laws in california 2022 how many weeks"], "self_loops": [3], "tags": {"i": "new abortion laws in california 2022", "q": "-r6qDJ5rtzV-mwATv61pjbia9r4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law california 2023", "datetime": "2026-03-12 20:03:12.415496", "source": "google", "data": ["abortion law california 2023", [["abortion laws in california 2023", 0, [22, 30]], ["new abortion law in california 2023", 0, [22, 30]], ["new abortion law in california 2023 overturned", 0, [22, 30]], ["abortion law california 2021", 0, [751]], ["abortion law california 28 days", 0, [751]]], {"i": "abortion law california 2023", "q": "EJVekqJ-8tW4RoTSqchw_umv9Sg", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2023", "new abortion law in california 2023", "new abortion law in california 2023 overturned", "abortion law california 2021", "abortion law california 28 days"], "self_loops": [], "tags": {"i": "abortion law california 2023", "q": "EJVekqJ-8tW4RoTSqchw_umv9Sg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law california 2021", "datetime": "2026-03-12 20:03:13.211817", "source": "google", "data": ["abortion law california 2021", [["abortion law california 2021 update", 33, [160], {"a": "abortion law california ", "b": "2021 update"}], ["abortion law california 2021 summary", 33, [160], {"a": "abortion law california ", "b": "2021 summary"}], ["abortion law california 2021", 33, [671], {"a": "abortion law california ", "b": "2021"}]], {"i": "abortion law california 2021", "q": "GYDifCmi37c-AzEI4cig3dDudRk", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion law california 2021 update", "abortion law california 2021 summary", "abortion law california 2021"], "self_loops": [2], "tags": {"i": "abortion law california 2021", "q": "GYDifCmi37c-AzEI4cig3dDudRk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law california 28 days", "datetime": "2026-03-12 20:03:14.210337", "source": "google", "data": ["abortion law california 28 days", [], {"i": "abortion law california 28 days", "q": "0mGabio89m-Csn__dk4IFynhbRI", "t": {"bpc": true, "tlw": false}}], "suggests": [], "self_loops": [], "tags": {"i": "abortion law california 28 days", "q": "0mGabio89m-Csn__dk4IFynhbRI", "t": {"bpc": true, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "is abortion legal in california 2024", "datetime": "2026-03-12 20:03:15.638457", "source": "google", "data": ["is abortion legal in california 2024", [["is abortion legal in california 2024", 0, [512]], ["is abortion illegal in california 2024", 0, [22, 30]], ["is abortion banned in california 2024", 0, [22, 30]], ["what is the abortion law in california 2024", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["new abortion law in california 2024", 0, [22, 30]], ["is abortion legal in california", 0, [512, 390, 650]], ["when did abortion become legal in california", 0, [512, 390, 650]], ["is abortion legal in california 2023", 0, [546, 649]], ["is abortion legal in california 2021", 0, [751]]], {"i": "is abortion legal in california 2024", "q": "S5tUN86-zCW55y-Z9i6VSFxSiw8", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["is abortion legal in california 2024", "is abortion illegal in california 2024", "is abortion banned in california 2024", "what is the abortion law in california 2024", "abortion laws in california 2024 how many weeks", "new abortion law in california 2024", "is abortion legal in california", "when did abortion become legal in california", "is abortion legal in california 2023", "is abortion legal in california 2021"], "self_loops": [0], "tags": {"i": "is abortion legal in california 2024", "q": "S5tUN86-zCW55y-Z9i6VSFxSiw8", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is the abortion law in california 2024", "datetime": "2026-03-12 20:03:17.040362", "source": "google", "data": ["what is the abortion law in california 2024", [["what is the abortion law in california 2024", 0, [22, 30]], ["is abortion legal in california 2024", 0, [22, 30]], ["what is the abortion law in california 2022", 0, [751]], ["what is the abortion limit in california", 0, [512, 546]], ["what is the abortion law in california", 0, [512, 546]], ["what is the abortion law in ca", 0, [546, 649]]], {"i": "what is the abortion law in california 2024", "q": "kpmg3sgsqb65t4MzJHdwwWan_sw", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is the abortion law in california 2024", "is abortion legal in california 2024", "what is the abortion law in california 2022", "what is the abortion limit in california", "what is the abortion law in california", "what is the abortion law in ca"], "self_loops": [0], "tags": {"i": "what is the abortion law in california 2024", "q": "kpmg3sgsqb65t4MzJHdwwWan_sw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law california 2024", "datetime": "2026-03-12 20:03:17.873899", "source": "google", "data": ["abortion law california 2024", [["abortion law california 2024", 0, [22, 30]], ["abortion law california 2024 update today", 0, [22, 30]], ["abortion limits california 2024", 0, [22, 30]], ["new abortion law california 2024", 0, [22, 30]], ["abortion legal in california 2024", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["abortion law california 2023", 0, [546, 649]], ["abortion law california 28 days", 0, [751]], ["abortion law california 2021", 0, [751]], ["abortion law california new", 0, [751]]], {"i": "abortion law california 2024", "q": "BOj7V1ggq_MsdRXocoHEdD_85u0", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion law california 2024", "abortion law california 2024 update today", "abortion limits california 2024", "new abortion law california 2024", "abortion legal in california 2024", "abortion laws in california 2024 how many weeks", "abortion law california 2023", "abortion law california 28 days", "abortion law california 2021", "abortion law california new"], "self_loops": [0], "tags": {"i": "abortion law california 2024", "q": "BOj7V1ggq_MsdRXocoHEdD_85u0", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "new abortion law california 2024", "datetime": "2026-03-12 20:03:19.194333", "source": "google", "data": ["new abortion law california 2024", [["new abortion law california 2024", 0, [22, 30]], ["new abortion laws in california 2024 update", 0, [22, 30]], ["abortion law california 2024", 0, [22, 30]], ["abortion law california 2024 update today", 0, [22, 30]], ["new abortion laws in california", 0, [512, 390, 650]], ["new abortion laws 2021 california", 0, [751]], ["new abortion law california 2022", 0, [751]], ["new abortion law in california 2023", 0, [546, 649]]], {"i": "new abortion law california 2024", "q": "mHcPcskDY34bwAMAaJaxkdJRi9E", "t": {"bpc": false, "tlw": false}}], "suggests": ["new abortion law california 2024", "new abortion laws in california 2024 update", "abortion law california 2024", "abortion law california 2024 update today", "new abortion laws in california", "new abortion laws 2021 california", "new abortion law california 2022", "new abortion law in california 2023"], "self_loops": [0], "tags": {"i": "new abortion law california 2024", "q": "mHcPcskDY34bwAMAaJaxkdJRi9E", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion limit", "datetime": "2026-03-12 20:03:20.178471", "source": "google", "data": ["california abortion limit", [["california abortion limit", 0, [512]], ["california abortion limit weeks", 0, [22, 30]], ["california abortion laws", 0, [22, 30]], ["california abortion laws 2024", 0, [22, 30]], ["california abortion laws 2025", 0, [22, 30]], ["california abortion rules", 0, [22, 30]], ["california abortion restrictions", 0, [22, 30]], ["california abortion laws weeks", 0, [22, 30]], ["california abortion laws for minors", 0, [22, 30]], ["california abortion laws 2024 how many months", 0, [22, 30]]], {"i": "california abortion limit", "q": "7Km__9x9sd6V0QUzG3tIIruoEDA", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["california abortion limit", "california abortion limit weeks", "california abortion laws", "california abortion laws 2024", "california abortion laws 2025", "california abortion rules", "california abortion restrictions", "california abortion laws weeks", "california abortion laws for minors", "california abortion laws 2024 how many months"], "self_loops": [0], "tags": {"i": "california abortion limit", "q": "7Km__9x9sd6V0QUzG3tIIruoEDA", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is the legal abortion limit in california", "datetime": "2026-03-12 20:03:21.616900", "source": "google", "data": ["what is the legal abortion limit in california", [["what is the legal abortion limit in california", 0, [512]], ["what is the abortion law in california", 0, [22, 30]], ["what is the abortion law in california 2024", 0, [22, 30]], ["what is the new abortion law in california", 0, [22, 30]], ["what is the current abortion law in california", 0, [22, 30]], ["california abortion limit", 0, [512, 390, 650]], ["what is the abortion law in california 2022", 0, [751]]], {"i": "what is the legal abortion limit in california", "q": "HWOIgnvU4OeoNBdzC8vtPy2doCc", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is the legal abortion limit in california", "what is the abortion law in california", "what is the abortion law in california 2024", "what is the new abortion law in california", "what is the current abortion law in california", "california abortion limit", "what is the abortion law in california 2022"], "self_loops": [0], "tags": {"i": "what is the legal abortion limit in california", "q": "HWOIgnvU4OeoNBdzC8vtPy2doCc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion limits 2022", "datetime": "2026-03-12 20:03:23.106974", "source": "google", "data": ["california abortion limits 2022", [["california abortion laws 2022", 0, [22, 30]], ["california abortion limit", 0, [512, 390, 650]], ["california abortion restrictions", 0, [512, 390, 650]], ["what is the legal abortion limit in california", 0, [512, 390, 650]], ["california abortion limits 2022", 0, [751]], ["california abortion laws 2022 weeks", 0, [751]], ["california abortion laws 2022 text", 0, [751]], ["california abortion laws 2022 how many weeks", 0, [751]]], {"i": "california abortion limits 2022", "q": "0Lkxq_riBRZ9G1H6jA4Pi5c_nzk", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws 2022", "california abortion limit", "california abortion restrictions", "what is the legal abortion limit in california", "california abortion limits 2022", "california abortion laws 2022 weeks", "california abortion laws 2022 text", "california abortion laws 2022 how many weeks"], "self_loops": [4], "tags": {"i": "california abortion limits 2022", "q": "0Lkxq_riBRZ9G1H6jA4Pi5c_nzk", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion limit ca", "datetime": "2026-03-12 20:03:24.318577", "source": "google", "data": ["abortion limit ca", [["abortion limit california", 0, [512]], ["abortion limit canada", 0, [512]], ["abortion limit ca", 0, [22, 30]], ["abortion limit california 2024", 0, [22, 30]], ["abortion laws california", 0, [22, 30]], ["abortion laws canada", 0, [22, 30]], ["abortion rules canada", 0, [22, 30]], ["abortion rules california", 0, [22, 30]], ["abortion laws california 2025", 0, [22, 30]], ["abortion laws canberra", 0, [22, 30]]], {"i": "abortion limit ca", "q": "lIbvTelX2CIKkC8p0CpAdlVYBEY", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion limit california", "abortion limit canada", "abortion limit ca", "abortion limit california 2024", "abortion laws california", "abortion laws canada", "abortion rules canada", "abortion rules california", "abortion laws california 2025", "abortion laws canberra"], "self_loops": [2], "tags": {"i": "abortion limit ca", "q": "lIbvTelX2CIKkC8p0CpAdlVYBEY", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what age can you abort a baby in california", "datetime": "2026-03-12 20:03:25.698728", "source": "google", "data": ["what age can you abort a baby in california", [["what age can you abort a baby in california", 33, [299], {"a": "what age can you abort a baby in ", "b": "california"}]], {"i": "what age can you abort a baby in california", "q": "_-QSEaQZjJKlid4oG8w4xfEZW20", "t": {"bpc": false, "tlw": false}}], "suggests": ["what age can you abort a baby in california"], "self_loops": [0], "tags": {"i": "what age can you abort a baby in california", "q": "_-QSEaQZjJKlid4oG8w4xfEZW20", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "what is the legal age for abortion in california", "datetime": "2026-03-12 20:03:26.603562", "source": "google", "data": ["what is the legal age for abortion in california", [["what is the legal age for abortion in california", 0, [22, 30]], ["what is the legal gestational age for abortion in california", 0, [751]], ["what is the legal abortion limit in california", 0, [512, 546]], ["age limit for abortion in california", 0, [751]], ["is abortion legal in california for minors", 0, [512, 546]]], {"i": "what is the legal age for abortion in california", "q": "VcFOgK8d9GDqroE-__rM_BUjYq4", "t": {"bpc": false, "tlw": false}}], "suggests": ["what is the legal age for abortion in california", "what is the legal gestational age for abortion in california", "what is the legal abortion limit in california", "age limit for abortion in california", "is abortion legal in california for minors"], "self_loops": [0], "tags": {"i": "what is the legal age for abortion in california", "q": "VcFOgK8d9GDqroE-__rM_BUjYq4", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "age for abortion in california", "datetime": "2026-03-12 20:03:27.735162", "source": "google", "data": ["age for abortion in california", [["age for abortion in california", 0, [22, 30]], ["legal age for abortion in california", 0, [22, 30]], ["age limit for abortion in california", 0, [22, 30]], ["gestational age for abortion in california", 0, [22, 30]], ["age of consent for abortion in california", 0, [22, 30]], ["legal gestational age for abortion in california", 0, [22, 30]]], {"i": "age for abortion in california", "q": "x7hLNeNIZmrcyPYV_5Dy2QoLHxw", "t": {"bpc": false, "tlw": false}}], "suggests": ["age for abortion in california", "legal age for abortion in california", "age limit for abortion in california", "gestational age for abortion in california", "age of consent for abortion in california", "legal gestational age for abortion in california"], "self_loops": [0], "tags": {"i": "age for abortion in california", "q": "x7hLNeNIZmrcyPYV_5Dy2QoLHxw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "ca abortion laws how many weeks", "datetime": "2026-03-12 20:03:28.970291", "source": "google", "data": ["ca abortion laws how many weeks", [["ca abortion laws how many weeks", 0, [22, 30]], ["canada abortion laws how many weeks", 0, [22, 30]], ["california abortion laws how many weeks", 0, [22, 30]], ["california abortion law up to how many weeks", 0, [22, 30]], ["california legal abortion up to how many weeks", 0, [22, 30]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["how many weeks can you have an abortion in california", 0, [512, 390, 650]], ["california abortion laws how many weeks 2021", 0, [751]], ["california abortion laws how many weeks 2020", 0, [751]], ["california abortion laws how many weeks 2022", 0, [546, 649]]], {"i": "ca abortion laws how many weeks", "q": "ZWxieI9RE0iu6gmkbs7FrrYwKvI", "t": {"bpc": false, "tlw": false}}], "suggests": ["ca abortion laws how many weeks", "canada abortion laws how many weeks", "california abortion laws how many weeks", "california abortion law up to how many weeks", "california legal abortion up to how many weeks", "how many weeks can you get an abortion california", "how many weeks can you have an abortion in california", "california abortion laws how many weeks 2021", "california abortion laws how many weeks 2020", "california abortion laws how many weeks 2022"], "self_loops": [0], "tags": {"i": "ca abortion laws how many weeks", "q": "ZWxieI9RE0iu6gmkbs7FrrYwKvI", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california abortion law up to how many weeks", "datetime": "2026-03-12 20:03:30.294668", "source": "google", "data": ["california abortion law up to how many weeks", [["california abortion law up to how many weeks", 0, [512]], ["california legal abortion up to how many weeks", 0, [22, 30]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["how many weeks can you have an abortion in california", 0, [512, 390, 650]], ["california abortion up to how many weeks", 0, [512, 546]], ["california abortion law up to birth", 0, [751]]], {"i": "california abortion law up to how many weeks", "q": "LQXsf5swOXgApiOK7TIJCPkZw6I", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["california abortion law up to how many weeks", "california legal abortion up to how many weeks", "how many weeks can you get an abortion california", "how many weeks can you have an abortion in california", "california abortion up to how many weeks", "california abortion law up to birth"], "self_loops": [0], "tags": {"i": "california abortion law up to how many weeks", "q": "LQXsf5swOXgApiOK7TIJCPkZw6I", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "california legal abortion up to how many weeks", "datetime": "2026-03-12 20:03:31.440926", "source": "google", "data": ["california legal abortion up to how many weeks", [["california legal abortion up to how many weeks", 0, [512]], ["california abortion law up to how many weeks", 0, [22, 30]], ["how late can you have an abortion in california", 0, [512, 390, 650]], ["california abortion up to how many weeks", 0, [512, 546]], ["abortion legal up to how many weeks", 0, [512, 546]]], {"i": "california legal abortion up to how many weeks", "q": "NDDJ64h8xuFSbv7ItsSeNnWbrPc", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["california legal abortion up to how many weeks", "california abortion law up to how many weeks", "how late can you have an abortion in california", "california abortion up to how many weeks", "abortion legal up to how many weeks"], "self_loops": [0], "tags": {"i": "california legal abortion up to how many weeks", "q": "NDDJ64h8xuFSbv7ItsSeNnWbrPc", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws california 2021", "datetime": "2026-03-12 20:03:32.799941", "source": "google", "data": ["abortion laws california 2021", [["abortion laws california 2021 california", 33, [160], {"a": "abortion laws california ", "b": "2021 california"}], ["abortion laws california 2021-2024", 33, [160], {"a": "abortion laws california ", "b": "2021-2024"}], ["abortion laws california 2021 and 2022", 33, [160], {"a": "abortion laws california ", "b": "2021 and 2022"}], ["abortion laws california 2021-2023", 33, [160], {"a": "abortion laws california ", "b": "2021-2023"}], ["abortion laws california 2021", 33, [671], {"a": "abortion laws california ", "b": "2021"}]], {"i": "abortion laws california 2021", "q": "TwdDliCfYw_zyt8_tpiY2KHREkc", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws california 2021 california", "abortion laws california 2021-2024", "abortion laws california 2021 and 2022", "abortion laws california 2021-2023", "abortion laws california 2021"], "self_loops": [4], "tags": {"i": "abortion laws california 2021", "q": "TwdDliCfYw_zyt8_tpiY2KHREkc", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion laws california 2022", "datetime": "2026-03-12 20:03:34.239195", "source": "google", "data": ["abortion laws california 2022", [["california abortion laws 2022", 0, [22, 30]], ["california abortion laws", 0, [512, 390, 650]], ["abortion laws california 2021", 0, [751]], ["abortion laws california 2023", 0, [546, 649]], ["abortion laws california weeks", 0, [751]]], {"i": "abortion laws california 2022", "q": "OThiakC4CXtypKhoAa1rsB9IHHg", "t": {"bpc": false, "tlw": false}}], "suggests": ["california abortion laws 2022", "california abortion laws", "abortion laws california 2021", "abortion laws california 2023", "abortion laws california weeks"], "self_loops": [], "tags": {"i": "abortion laws california 2022", "q": "OThiakC4CXtypKhoAa1rsB9IHHg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law in california 2023", "datetime": "2026-03-12 20:03:35.593195", "source": "google", "data": ["abortion law in california 2023", [["abortion laws in california 2023", 0, [22, 30]], ["new abortion law in california 2023", 0, [22, 30]], ["new abortion law in california 2023 overturned", 0, [22, 30]], ["abortion law in california 2021", 0, [751]]], {"i": "abortion law in california 2023", "q": "irFAzyugUuWuVOWEPHM2eO-ChSU", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion laws in california 2023", "new abortion law in california 2023", "new abortion law in california 2023 overturned", "abortion law in california 2021"], "self_loops": [], "tags": {"i": "abortion law in california 2023", "q": "irFAzyugUuWuVOWEPHM2eO-ChSU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law in california 2021", "datetime": "2026-03-12 20:03:36.459920", "source": "google", "data": ["abortion law in california 2021", [["abortion law in california 2021 summary", 33, [160], {"a": "abortion law in california ", "b": "2021 summary"}], ["abortion law in california 2021 update", 33, [160], {"a": "abortion law in california ", "b": "2021 update"}], ["abortion law in california 2021-2024", 33, [160], {"a": "abortion law in california ", "b": "2021-2024"}], ["abortion law in california 2021-2023", 33, [160], {"a": "abortion law in california ", "b": "2021-2023"}], ["abortion law in california 2021", 33, [671], {"a": "abortion law in california ", "b": "2021"}]], {"i": "abortion law in california 2021", "q": "_-cX5QCpeaQy944zDIc2uWqrHeU", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion law in california 2021 summary", "abortion law in california 2021 update", "abortion law in california 2021-2024", "abortion law in california 2021-2023", "abortion law in california 2021"], "self_loops": [4], "tags": {"i": "abortion law in california 2021", "q": "_-cX5QCpeaQy944zDIc2uWqrHeU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion law in california 2022", "datetime": "2026-03-12 20:03:37.554125", "source": "google", "data": ["abortion law in california 2022", [["abortion law in california 2022 update", 33, [160], {"a": "abortion law in california ", "b": "2022 update"}], ["abortion law in california 2022 california", 33, [160], {"a": "abortion law in california ", "b": "2022 california"}], ["abortion law in california 2022-2023", 33, [160], {"a": "abortion law in california ", "b": "2022-2023"}], ["abortion law in california 2022-2024", 33, [160], {"a": "abortion law in california ", "b": "2022-2024"}], ["abortion law in california 2022", 33, [671], {"a": "abortion law in california ", "b": "2022"}]], {"i": "abortion law in california 2022", "q": "IPzCv4QdmcTdw4WD2oBwflI5Iqw", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion law in california 2022 update", "abortion law in california 2022 california", "abortion law in california 2022-2023", "abortion law in california 2022-2024", "abortion law in california 2022"], "self_loops": [4], "tags": {"i": "abortion law in california 2022", "q": "IPzCv4QdmcTdw4WD2oBwflI5Iqw", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how late can you have an abortion in california", "datetime": "2026-03-12 20:03:38.682283", "source": "google", "data": ["how late can you have an abortion in california", [["how late can you have an abortion in california", 0, [512]], ["how long can you have an abortion in california", 0, [22, 30]], ["how late can you get an abortion in california 2022", 0, [22, 30]], ["how long can you have an abortion in ca", 0, [22, 30]], ["how late in pregnancy can you have an abortion in california", 0, [22, 30]], ["how late term can you get an abortion in california", 0, [22, 30]], ["how late can you get an elective abortion in california", 0, [22, 30]], ["how long can you wait to have an abortion in california", 0, [22, 30]], ["how long until you can have an abortion in california", 0, [22, 30]], ["how long do you have for an abortion in california", 0, [22, 30]]], {"i": "how late can you have an abortion in california", "q": "c1Hj4C_g4f7N3CpSKVd-9cTm3Dg", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["how late can you have an abortion in california", "how long can you have an abortion in california", "how late can you get an abortion in california 2022", "how long can you have an abortion in ca", "how late in pregnancy can you have an abortion in california", "how late term can you get an abortion in california", "how late can you get an elective abortion in california", "how long can you wait to have an abortion in california", "how long until you can have an abortion in california", "how long do you have for an abortion in california"], "self_loops": [0], "tags": {"i": "how late can you have an abortion in california", "q": "c1Hj4C_g4f7N3CpSKVd-9cTm3Dg", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "legal abortion in ca", "datetime": "2026-03-12 20:03:39.662204", "source": "google", "data": ["legal abortion in ca", [["legal abortion in california", 0, [512]], ["legal abortion in canada", 0, [512]], ["legal abortion in california weeks", 0, [22, 30]], ["legal abortion in canada weeks", 0, [22, 30]], ["abortion legal in canada year", 0, [22, 30]], ["abortion legal in cambodia", 0, [22, 30]], ["abortion legal in california 2024", 0, [22, 30]], ["abortion legal in canada since", 0, [22, 30]], ["abortion legal in cali", 0, [22, 30]], ["abortion law in california", 0, [22, 30]]], {"i": "legal abortion in ca", "q": "FXI8thMS3jKsAo1vou56LccwNdQ", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["legal abortion in california", "legal abortion in canada", "legal abortion in california weeks", "legal abortion in canada weeks", "abortion legal in canada year", "abortion legal in cambodia", "abortion legal in california 2024", "abortion legal in canada since", "abortion legal in cali", "abortion law in california"], "self_loops": [], "tags": {"i": "legal abortion in ca", "q": "FXI8thMS3jKsAo1vou56LccwNdQ", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "how many weeks is it legal to have an abortion in california", "datetime": "2026-03-12 20:03:40.693608", "source": "google", "data": ["how many weeks is it legal to have an abortion in california", [["how many weeks is it legal to have an abortion in california", 0, [30]], ["how many weeks can you get an abortion california", 0, [512, 390, 650]], ["how many weeks can you have an abortion in california", 0, [512, 390, 650]], ["is it legal to have an abortion after 6 months", 0, [512, 390, 650]], ["how far into pregnancy can you have an abortion in california", 0, [512, 390, 650]], ["how many weeks is it legal to have an abortion", 0, [512, 546]]], {"i": "how many weeks is it legal to have an abortion in california", "q": "tzeB11y2_dXXYaPK9PLB3zcTAKg", "t": {"bpc": false, "tlw": false}}], "suggests": ["how many weeks is it legal to have an abortion in california", "how many weeks can you get an abortion california", "how many weeks can you have an abortion in california", "is it legal to have an abortion after 6 months", "how far into pregnancy can you have an abortion in california", "how many weeks is it legal to have an abortion"], "self_loops": [0], "tags": {"i": "how many weeks is it legal to have an abortion in california", "q": "tzeB11y2_dXXYaPK9PLB3zcTAKg", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion limit in california", "datetime": "2026-03-12 20:03:41.602363", "source": "google", "data": ["abortion limit in california", [["abortion limit in california", 0, [512]], ["abortion limit in california 2024", 0, [22, 30]], ["abortion laws in california", 0, [22, 30]], ["abortion laws in california 2025", 0, [22, 30]], ["abortion rules in california", 0, [22, 30]], ["abortion laws in california 2024", 0, [22, 30]], ["abortion laws in california how many weeks", 0, [22, 30]], ["abortion legality in california", 0, [22, 30]], ["abortion restrictions in california", 0, [22, 30]], ["abortion laws in california for minors", 0, [22, 30]]], {"i": "abortion limit in california", "q": "YnFkxBC0SDEWTE12WnCawipyI2M", "t": {"bpc": false, "phi": 0, "tlw": false}}], "suggests": ["abortion limit in california", "abortion limit in california 2024", "abortion laws in california", "abortion laws in california 2025", "abortion rules in california", "abortion laws in california 2024", "abortion laws in california how many weeks", "abortion legality in california", "abortion restrictions in california", "abortion laws in california for minors"], "self_loops": [0], "tags": {"i": "abortion limit in california", "q": "YnFkxBC0SDEWTE12WnCawipyI2M", "t": {"bpc": false, "phi": 0, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion age in california", "datetime": "2026-03-12 20:03:42.619808", "source": "google", "data": ["abortion age in california", [["abortion age in california", 0, [512]], ["abortion rules in california", 0, [22, 30]], ["legal abortion age in california", 0, [22, 30]], ["abortion age limit california", 0, [22, 30]], ["gestational age for abortion in california", 0, [22, 30]], ["abortion age in ca", 0, [751]]], {"i": "abortion age in california", "q": "jUS5HJ6wmllfGOuVLd-S6fvtcW8", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion age in california", "abortion rules in california", "legal abortion age in california", "abortion age limit california", "gestational age for abortion in california", "abortion age in ca"], "self_loops": [0], "tags": {"i": "abortion age in california", "q": "jUS5HJ6wmllfGOuVLd-S6fvtcW8", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion limit in california 2024", "datetime": "2026-03-12 20:03:43.755941", "source": "google", "data": ["abortion limit in california 2024", [["abortion limit in california 2024", 0, [22, 30]], ["abortion laws in california 2024", 0, [22, 30]], ["abortion laws in california 2024 how many weeks", 0, [22, 30]], ["new abortion law in california 2024", 0, [22, 30]], ["new abortion laws in california 2024 update", 0, [22, 30]], ["abortion law california 2024 update today", 0, [22, 30]], ["california abortion limit", 0, [512, 390, 650]], ["what is the legal abortion limit in california", 0, [512, 390, 650]], ["abortion laws in california 2023", 0, [546, 649]], ["abortion in california 28 days", 0, [751]]], {"i": "abortion limit in california 2024", "q": "PS9SLFd52emACzuhHGtgnwRnPOU", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion limit in california 2024", "abortion laws in california 2024", "abortion laws in california 2024 how many weeks", "new abortion law in california 2024", "new abortion laws in california 2024 update", "abortion law california 2024 update today", "california abortion limit", "what is the legal abortion limit in california", "abortion laws in california 2023", "abortion in california 28 days"], "self_loops": [0], "tags": {"i": "abortion limit in california 2024", "q": "PS9SLFd52emACzuhHGtgnwRnPOU", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} +{"qry": "abortion ban in california", "datetime": "2026-03-12 20:03:44.822977", "source": "google", "data": ["abortion ban in california", [["abortion ban in california", 0, [512]], ["abortion law in california", 0, [22, 30]], ["abortion law in california 2025", 0, [22, 30]], ["abortion law in california 2024", 0, [22, 30]], ["abortion law in california how many weeks", 0, [22, 30]], ["abortion restrictions in california", 0, [22, 30]], ["abortion ban california update", 0, [22, 30]], ["is abortion banned in california 2024", 0, [22, 30]], ["new abortion law in california", 0, [22, 30]], ["new abortion law in california 2024", 0, [22, 30]]], {"i": "abortion ban in california", "q": "ZrkcSWaTRKJiFELT_B-EfMAWt3c", "t": {"bpc": false, "tlw": false}}], "suggests": ["abortion ban in california", "abortion law in california", "abortion law in california 2025", "abortion law in california 2024", "abortion law in california how many weeks", "abortion restrictions in california", "abortion ban california update", "is abortion banned in california 2024", "new abortion law in california", "new abortion law in california 2024"], "self_loops": [0], "tags": {"i": "abortion ban in california", "q": "ZrkcSWaTRKJiFELT_B-EfMAWt3c", "t": {"bpc": false, "tlw": false}}, "depth": 4, "root": "abortion", "crawl_id": "20260312-122801"} diff --git a/tests/test_integration.py b/tests/test_integration.py new file mode 100644 index 0000000..501ff2a --- /dev/null +++ b/tests/test_integration.py @@ -0,0 +1,65 @@ +"""Integration tests using real suggestion tree data.""" + +import json +from pathlib import Path + +import polars as pl +import pytest + +from suggests.parsing import add_metanodes, add_parent_nodes, to_edgelist + +DATA_DIR = Path(__file__).parent / "fixtures" +ABORTION_TREE = DATA_DIR / "abortion-20260312-122801.json" +ABORTION_EDGES = DATA_DIR / "abortion-20260312-122801-edges.csv" + + +@pytest.fixture +def abortion_tree(): + """Load the abortion suggestion tree from JSONL.""" + with open(ABORTION_TREE) as f: + return [json.loads(line) for line in f] + + +@pytest.fixture +def abortion_edges_expected(): + """Load the expected edges CSV.""" + return pl.read_csv(ABORTION_EDGES) + + +class TestAbortionPipeline: + def test_to_edgelist_shape(self, abortion_tree): + edges = to_edgelist(abortion_tree) + assert isinstance(edges, pl.DataFrame) + assert edges.shape[0] > 0 + assert "source" in edges.columns + assert "target" in edges.columns + + def test_add_parent_nodes(self, abortion_tree): + edges = to_edgelist(abortion_tree) + result = add_parent_nodes(edges) + assert "parent" in result.columns + assert "grandparent" in result.columns + depth_zero = result.filter(pl.col("depth") == 0) + assert depth_zero["parent"].is_null().all() + + def test_add_metanodes(self, abortion_tree): + edges = to_edgelist(abortion_tree) + edges = add_parent_nodes(edges) + result = add_metanodes(edges) + assert "source_add" in result.columns + assert "target_add" in result.columns + + def test_full_pipeline_matches_expected(self, abortion_tree, abortion_edges_expected): + edges = to_edgelist(abortion_tree) + edges = add_parent_nodes(edges) + edges = add_metanodes(edges) + assert edges.shape[0] == abortion_edges_expected.shape[0] + assert edges["source"].to_list() == abortion_edges_expected["source"].to_list() + assert edges["target"].to_list() == abortion_edges_expected["target"].to_list() + + def test_metanode_values_match_expected(self, abortion_tree, abortion_edges_expected): + edges = to_edgelist(abortion_tree) + edges = add_parent_nodes(edges) + edges = add_metanodes(edges) + assert edges["source_add"].to_list() == abortion_edges_expected["source_add"].to_list() + assert edges["target_add"].to_list() == abortion_edges_expected["target_add"].to_list() diff --git a/tests/test_nets.py b/tests/test_nets.py new file mode 100644 index 0000000..d71cdc0 --- /dev/null +++ b/tests/test_nets.py @@ -0,0 +1,109 @@ +"""Tests for suggests.nets module.""" + +import networkx as nx +import polars as pl +import pytest + +from suggests.nets import ( + find_unreachable_nodes, + get_root_component, + nodes_to_df, + plot_network, + set_node_attributes, +) + + +@pytest.fixture +def sample_graph(): + """Create a small directed graph for testing.""" + g = nx.DiGraph() + g.add_edges_from( + [("dog", "dog toys"), ("dog", "dog food"), ("dog toys", "dog toys amazon")] + ) + return g + + +@pytest.fixture +def disconnected_graph(): + """Create a graph with a disconnected component.""" + g = nx.DiGraph() + g.add_edges_from([("dog", "dog toys"), ("cat", "cat food")]) + return g + + +class TestSetNodeAttributes: + def test_adds_centrality_attributes(self, sample_graph): + set_node_attributes(sample_graph, "dog") + attrs = sample_graph.nodes["dog"] + assert "k" in attrs + assert "k_in" in attrs + assert "k_out" in attrs + assert "degree_centrality" in attrs + assert "betweenness_centrality" in attrs + assert "closeness_centrality" in attrs + assert "clustering" in attrs + assert "network_depth" in attrs + + def test_root_has_zero_depth(self, sample_graph): + set_node_attributes(sample_graph, "dog") + assert sample_graph.nodes["dog"]["network_depth"] == 0 + + +class TestNodesToDF: + def test_returns_dataframe(self, sample_graph): + set_node_attributes(sample_graph, "dog") + df = nodes_to_df(sample_graph) + assert isinstance(df, pl.DataFrame) + assert "node" in df.columns + + +class TestGetRootComponent: + def test_returns_component_with_root(self, disconnected_graph): + component = get_root_component(disconnected_graph, "dog") + assert component is not None + assert component.has_node("dog") + assert component.has_node("dog toys") + assert not component.has_node("cat") + + def test_returns_none_for_missing_root(self, disconnected_graph): + result = get_root_component(disconnected_graph, "nonexistent") + assert result is None + + +class TestFindUnreachableNodes: + def test_finds_unreachable(self, disconnected_graph): + unreachable = find_unreachable_nodes(disconnected_graph, "dog") + assert "cat" in unreachable + assert "cat food" in unreachable + + def test_no_unreachable_in_connected(self, sample_graph): + unreachable = find_unreachable_nodes(sample_graph, "dog") + assert len(unreachable) == 0 + + +@pytest.fixture +def sample_edges(): + """Create a small edge list DataFrame for testing.""" + return pl.DataFrame( + { + "source": ["dog", "dog", "dog toys"], + "target": ["dog toys", "dog food", "dog toys amazon"], + } + ) + + +class TestPlotNetwork: + def test_returns_figure(self, sample_edges): + import matplotlib.pyplot as plt + + fig = plot_network(sample_edges, "dog") + assert isinstance(fig, plt.Figure) + plt.close(fig) + + def test_save_to_file(self, sample_edges, tmp_path): + import matplotlib.pyplot as plt + + path = str(tmp_path / "test_plot.png") + fig = plot_network(sample_edges, "dog", save_to=path) + assert (tmp_path / "test_plot.png").exists() + plt.close(fig) diff --git a/tests/test_parsing.py b/tests/test_parsing.py new file mode 100644 index 0000000..2068847 --- /dev/null +++ b/tests/test_parsing.py @@ -0,0 +1,134 @@ +"""Tests for suggests.parsing module.""" + +import polars as pl +import pytest + +from suggests.parsing import ( + add_metanodes, + add_parent_nodes, + parse_bing, + parse_google, + strip_html, + to_edgelist, +) + + +class TestStripHtml: + def test_removes_tags(self): + assert strip_html("hello") == "hello" + + def test_removes_nested_tags(self): + assert strip_html("
text
") == "text" + + def test_no_tags(self): + assert strip_html("plain text") == "plain text" + + def test_empty_string(self): + assert strip_html("") == "" + + +class TestParseGoogle: + def test_basic_parse(self, google_json): + result = parse_google(google_json, qry="dog") + assert len(result["suggests"]) == 3 + assert "dog toys" in result["suggests"] + assert isinstance(result["self_loops"], list) + assert "tags" in result + + def test_entity_annotation(self, google_json_with_entity): + result = parse_google(google_json_with_entity, qry="dog") + assert any("Cryptocurrency" in s for s in result["suggests"]) + + def test_invalid_data_returns_empty(self): + result = parse_google(None, qry="dog") + assert result["suggests"] == [] + assert result["self_loops"] == [] + + def test_self_loop_detection(self): + json_data = ["dog", [["dog", 0, []], ["dog food", 0, []]], {}] + result = parse_google(json_data, qry="dog") + assert 0 in result["self_loops"] + + +class TestParseBing: + def test_basic_parse(self, bing_html): + result = parse_bing(bing_html, qry="dog") + assert len(result["suggests"]) == 3 + assert "dog toys" in result["suggests"] + assert result["tags"] == [] + + def test_empty_html(self, bing_html_empty): + result = parse_bing(bing_html_empty, qry="dog") + assert result["suggests"] == [] + + def test_self_loop_detection(self): + html = ( + '' + ) + result = parse_bing(html, qry="dog") + assert 0 in result["self_loops"] + + +class TestToEdgelist: + def test_basic_conversion(self, sample_tree): + edges = to_edgelist(sample_tree) + assert isinstance(edges, pl.DataFrame) + assert "source" in edges.columns + assert "target" in edges.columns + assert "rank" in edges.columns + assert "depth" in edges.columns + assert len(edges) == 4 # 2 suggests at depth 0 + 2 at depth 1 + + def test_self_loops_excluded_by_default(self, sample_tree_with_self_loop): + edges = to_edgelist(sample_tree_with_self_loop) + # "dog" -> "dog" should be excluded, only "dog" -> "dog toys" remains + assert len(edges) == 1 + assert edges[0, "target"] == "dog toys" + + def test_self_loops_included(self, sample_tree_with_self_loop): + edges = to_edgelist(sample_tree_with_self_loop, self_loops=True) + assert len(edges) == 2 + + def test_no_suggests_at_root(self, sample_tree_no_suggests): + edges = to_edgelist(sample_tree_no_suggests) + assert len(edges) == 1 + assert edges[0, "target"] is None + + def test_ranks_start_at_one(self, sample_tree): + edges = to_edgelist(sample_tree) + assert edges["rank"].min() == 1 + + def test_invalid_input_type(self): + with pytest.raises(AssertionError): + to_edgelist("not a list") + + +class TestAddParentNodes: + def test_adds_parent_column(self, sample_tree): + edges = to_edgelist(sample_tree) + result = add_parent_nodes(edges) + assert "parent" in result.columns + assert "grandparent" in result.columns + + def test_depth_zero_has_no_parent(self, sample_tree): + edges = to_edgelist(sample_tree) + result = add_parent_nodes(edges) + depth_zero = result.filter(pl.col("depth") == 0) + assert depth_zero["parent"].is_null().all() + + +class TestAddMetanodes: + def test_adds_metanode_columns(self, sample_tree): + edges = to_edgelist(sample_tree) + edges = add_parent_nodes(edges) + result = add_metanodes(edges) + assert "source_add" in result.columns + assert "target_add" in result.columns + + def test_depth_zero_source_add_equals_source(self, sample_tree): + edges = to_edgelist(sample_tree) + edges = add_parent_nodes(edges) + result = add_metanodes(edges) + depth_zero = result.filter(pl.col("depth") == 0) + assert depth_zero[0, "source_add"] == depth_zero[0, "source"] diff --git a/tests/test_suggests.py b/tests/test_suggests.py new file mode 100644 index 0000000..2ea4848 --- /dev/null +++ b/tests/test_suggests.py @@ -0,0 +1,107 @@ +"""Tests for suggests.suggests module.""" + +from unittest.mock import patch + +from suggests.suggests import ( + get_bing_url, + get_google_url, + get_suggests, + prepare_qry, + requester, + sleep_random, +) + + +class TestPrepareQry: + def test_basic_encoding(self): + assert prepare_qry("hello world") == "hello+world" + + def test_special_characters(self): + result = prepare_qry("what is 2+2?") + assert "+" in result or "%2B" in result + assert "%3F" in result + + def test_empty_string(self): + assert prepare_qry("") == "" + + +class TestGetGoogleUrl: + def test_default_params(self): + url = get_google_url() + assert "google.com/complete/search" in url + assert "hl=en" in url + assert "sclient=psy-ab" in url + assert url.endswith("q=") + + def test_custom_language(self): + url = get_google_url(hl="de") + assert "hl=de" in url + + +class TestGetBingUrl: + def test_default_params(self): + url = get_bing_url() + assert "bing.com/AS/Suggestions" in url + assert "mkt=en-us" in url + assert url.endswith("q=") + + def test_custom_market(self): + url = get_bing_url(mkt="es-es") + assert "mkt=es-es" in url + + +class TestSleepRandom: + @patch("suggests.suggests.time.sleep") + def test_calls_sleep(self, mock_sleep): + sleep_random(0.1, 0.2) + mock_sleep.assert_called_once() + sleep_time = mock_sleep.call_args[0][0] + assert 0.1 <= sleep_time <= 0.2 + + +class TestRequester: + @patch("suggests.suggests.sleep_random") + def test_returns_none_on_connection_error(self, mock_sleep): + from unittest.mock import MagicMock + + sesh = MagicMock() + sesh.get.side_effect = ConnectionError("connection refused") + result = requester("test", source="google", sesh=sesh, sleep=0) + assert result is None + + +class TestGetSuggests: + @patch("suggests.suggests.requester") + @patch("suggests.suggests.parsing") + def test_returns_dict_with_metadata(self, mock_parsing, mock_requester): + mock_requester.return_value = "response" + mock_parsing.parse_bing.return_value = { + "suggests": ["dog toys"], + "self_loops": [], + "tags": [], + } + + result = get_suggests("dog", source="bing", sleep=0.01) + + assert result["qry"] == "dog" + assert result["source"] == "bing" + assert "datetime" in result + assert result["suggests"] == ["dog toys"] + + @patch("suggests.suggests.requester") + @patch("suggests.suggests.parsing") + def test_google_source(self, mock_parsing, mock_requester): + mock_requester.return_value = [ + "dog", + [["dog toys", 0, []]], + {}, + ] + mock_parsing.parse_google.return_value = { + "suggests": ["dog toys"], + "self_loops": [], + "tags": [], + } + + result = get_suggests("dog", source="google", sleep=0.01) + assert result["source"] == "google" + mock_parsing.parse_google.assert_called_once() diff --git a/uv.lock b/uv.lock index f76d02f..e22d8d7 100644 --- a/uv.lock +++ b/uv.lock @@ -1,14 +1,27 @@ version = 1 revision = 3 -requires-python = ">=3.10" +requires-python = ">=3.11" resolution-markers = [ "python_full_version >= '3.14' and sys_platform == 'win32'", "python_full_version >= '3.14' and sys_platform == 'emscripten'", "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.11' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.11' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.11' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version < '3.11'", + "python_full_version < '3.14' and sys_platform == 'win32'", + "python_full_version < '3.14' and sys_platform == 'emscripten'", + "python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", +] + +[[package]] +name = "adjusttext" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, + { name = "numpy" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4c/d4/6585f3b6fdb75648bca294664af4becc8aa2fb3fb08f4e4e9fd27e10d773/adjusttext-1.3.0.tar.gz", hash = "sha256:4ab75cd4453af4828876ac3e964f2c49be642ea834f0c1f7449558d5f12cbca1", size = 15724, upload-time = "2024-10-31T16:45:36.101Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/53/1c/8feedd607cc14c5df9aef74fe3af9a99bf660743b842a9b5b1865326b4aa/adjustText-1.3.0-py3-none-any.whl", hash = "sha256:da23d7b24b6db5ffa039bb136bfa556207365e32f48ac74b07ad26dd485bc691", size = 13154, upload-time = "2024-10-31T16:45:35.227Z" }, ] [[package]] @@ -39,22 +52,6 @@ version = "3.4.5" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/1d/35/02daf95b9cd686320bb622eb148792655c9412dbb9b67abb5694e5910a24/charset_normalizer-3.4.5.tar.gz", hash = "sha256:95adae7b6c42a6c5b5b559b1a99149f090a57128155daeea91732c8d970d8644", size = 134804, upload-time = "2026-03-06T06:03:19.46Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a7/21/a2b1505639008ba2e6ef03733a81fc6cfd6a07ea6139a2b76421230b8dad/charset_normalizer-3.4.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4167a621a9a1a986c73777dbc15d4b5eac8ac5c10393374109a343d4013ec765", size = 283319, upload-time = "2026-03-06T06:00:26.433Z" }, - { url = "https://files.pythonhosted.org/packages/70/67/df234c29b68f4e1e095885c9db1cb4b69b8aba49cf94fac041db4aaf1267/charset_normalizer-3.4.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3f64c6bf8f32f9133b668c7f7a7cbdbc453412bc95ecdbd157f3b1e377a92990", size = 189974, upload-time = "2026-03-06T06:00:28.222Z" }, - { url = "https://files.pythonhosted.org/packages/df/7f/fc66af802961c6be42e2c7b69c58f95cbd1f39b0e81b3365d8efe2a02a04/charset_normalizer-3.4.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:568e3c34b58422075a1b49575a6abc616d9751b4d61b23f712e12ebb78fe47b2", size = 207866, upload-time = "2026-03-06T06:00:29.769Z" }, - { url = "https://files.pythonhosted.org/packages/c9/23/404eb36fac4e95b833c50e305bba9a241086d427bb2167a42eac7c4f7da4/charset_normalizer-3.4.5-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:036c079aa08a6a592b82487f97c60b439428320ed1b2ea0b3912e99d30c77765", size = 203239, upload-time = "2026-03-06T06:00:31.086Z" }, - { url = "https://files.pythonhosted.org/packages/4b/2f/8a1d989bfadd120c90114ab33e0d2a0cbde05278c1fc15e83e62d570f50a/charset_normalizer-3.4.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:340810d34ef83af92148e96e3e44cb2d3f910d2bf95e5618a5c467d9f102231d", size = 196529, upload-time = "2026-03-06T06:00:32.608Z" }, - { url = "https://files.pythonhosted.org/packages/a5/0c/c75f85ff7ca1f051958bb518cd43922d86f576c03947a050fbedfdfb4f15/charset_normalizer-3.4.5-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:cd2d0f0ec9aa977a27731a3209ebbcacebebaf41f902bd453a928bfd281cf7f8", size = 184152, upload-time = "2026-03-06T06:00:33.93Z" }, - { url = "https://files.pythonhosted.org/packages/f9/20/4ed37f6199af5dde94d4aeaf577f3813a5ec6635834cda1d957013a09c76/charset_normalizer-3.4.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0b362bcd27819f9c07cbf23db4e0e8cd4b44c5ecd900c2ff907b2b92274a7412", size = 195226, upload-time = "2026-03-06T06:00:35.469Z" }, - { url = "https://files.pythonhosted.org/packages/28/31/7ba1102178cba7c34dcc050f43d427172f389729e356038f0726253dd914/charset_normalizer-3.4.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:77be992288f720306ab4108fe5c74797de327f3248368dfc7e1a916d6ed9e5a2", size = 192933, upload-time = "2026-03-06T06:00:36.83Z" }, - { url = "https://files.pythonhosted.org/packages/4b/23/f86443ab3921e6a60b33b93f4a1161222231f6c69bc24fb18f3bee7b8518/charset_normalizer-3.4.5-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:8b78d8a609a4b82c273257ee9d631ded7fac0d875bdcdccc109f3ee8328cfcb1", size = 185647, upload-time = "2026-03-06T06:00:38.367Z" }, - { url = "https://files.pythonhosted.org/packages/82/44/08b8be891760f1f5a6d23ce11d6d50c92981603e6eb740b4f72eea9424e2/charset_normalizer-3.4.5-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ba20bdf69bd127f66d0174d6f2a93e69045e0b4036dc1ca78e091bcc765830c4", size = 209533, upload-time = "2026-03-06T06:00:41.931Z" }, - { url = "https://files.pythonhosted.org/packages/3b/5f/df114f23406199f8af711ddccfbf409ffbc5b7cdc18fa19644997ff0c9bb/charset_normalizer-3.4.5-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:76a9d0de4d0eab387822e7b35d8f89367dd237c72e82ab42b9f7bf5e15ada00f", size = 195901, upload-time = "2026-03-06T06:00:43.978Z" }, - { url = "https://files.pythonhosted.org/packages/07/83/71ef34a76fe8aa05ff8f840244bda2d61e043c2ef6f30d200450b9f6a1be/charset_normalizer-3.4.5-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:8fff79bf5978c693c9b1a4d71e4a94fddfb5fe744eb062a318e15f4a2f63a550", size = 204950, upload-time = "2026-03-06T06:00:45.202Z" }, - { url = "https://files.pythonhosted.org/packages/58/40/0253be623995365137d7dc68e45245036207ab2227251e69a3d93ce43183/charset_normalizer-3.4.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c7e84e0c0005e3bdc1a9211cd4e62c78ba80bc37b2365ef4410cd2007a9047f2", size = 198546, upload-time = "2026-03-06T06:00:46.481Z" }, - { url = "https://files.pythonhosted.org/packages/ed/5c/5f3cb5b259a130895ef5ae16b38eaf141430fa3f7af50cd06c5d67e4f7b2/charset_normalizer-3.4.5-cp310-cp310-win32.whl", hash = "sha256:58ad8270cfa5d4bef1bc85bd387217e14ff154d6630e976c6f56f9a040757475", size = 132516, upload-time = "2026-03-06T06:00:47.924Z" }, - { url = "https://files.pythonhosted.org/packages/a5/c3/84fb174e7770f2df2e1a2115090771bfbc2227fb39a765c6d00568d1aab4/charset_normalizer-3.4.5-cp310-cp310-win_amd64.whl", hash = "sha256:02a9d1b01c1e12c27883b0c9349e0bcd9ae92e727ff1a277207e1a262b1cbf05", size = 142906, upload-time = "2026-03-06T06:00:49.389Z" }, - { url = "https://files.pythonhosted.org/packages/d7/b2/6f852f8b969f2cbd0d4092d2e60139ab1af95af9bb651337cae89ec0f684/charset_normalizer-3.4.5-cp310-cp310-win_arm64.whl", hash = "sha256:039215608ac7b358c4da0191d10fc76868567fbf276d54c14721bdedeb6de064", size = 133258, upload-time = "2026-03-06T06:00:51.051Z" }, { url = "https://files.pythonhosted.org/packages/8f/9e/bcec3b22c64ecec47d39bf5167c2613efd41898c019dccd4183f6aa5d6a7/charset_normalizer-3.4.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:610f72c0ee565dfb8ae1241b666119582fdbfe7c0975c175be719f940e110694", size = 279531, upload-time = "2026-03-06T06:00:52.252Z" }, { url = "https://files.pythonhosted.org/packages/58/12/81fd25f7e7078ab5d1eedbb0fac44be4904ae3370a3bf4533c8f2d159acd/charset_normalizer-3.4.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:60d68e820af339df4ae8358c7a2e7596badeb61e544438e489035f9fbf3246a5", size = 188006, upload-time = "2026-03-06T06:00:53.8Z" }, { url = "https://files.pythonhosted.org/packages/ae/6e/f2d30e8c27c1b0736a6520311982cf5286cfc7f6cac77d7bc1325e3a23f2/charset_normalizer-3.4.5-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:10b473fc8dca1c3ad8559985794815f06ca3fc71942c969129070f2c3cdf7281", size = 205085, upload-time = "2026-03-06T06:00:55.311Z" }, @@ -122,6 +119,259 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c5/60/3a621758945513adfd4db86827a5bafcc615f913dbd0b4c2ed64a65731be/charset_normalizer-3.4.5-py3-none-any.whl", hash = "sha256:9db5e3fcdcee89a78c04dffb3fe33c79f77bd741a624946db2591c81b2fc85b0", size = 55455, upload-time = "2026-03-06T06:03:17.827Z" }, ] +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "contourpy" +version = "1.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/01/1253e6698a07380cd31a736d248a3f2a50a7c88779a1813da27503cadc2a/contourpy-1.3.3.tar.gz", hash = "sha256:083e12155b210502d0bca491432bb04d56dc3432f95a979b429f2848c3dbe880", size = 13466174, upload-time = "2025-07-26T12:03:12.549Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/91/2e/c4390a31919d8a78b90e8ecf87cd4b4c4f05a5b48d05ec17db8e5404c6f4/contourpy-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:709a48ef9a690e1343202916450bc48b9e51c049b089c7f79a267b46cffcdaa1", size = 288773, upload-time = "2025-07-26T12:01:02.277Z" }, + { url = "https://files.pythonhosted.org/packages/0d/44/c4b0b6095fef4dc9c420e041799591e3b63e9619e3044f7f4f6c21c0ab24/contourpy-1.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:23416f38bfd74d5d28ab8429cc4d63fa67d5068bd711a85edb1c3fb0c3e2f381", size = 270149, upload-time = "2025-07-26T12:01:04.072Z" }, + { url = "https://files.pythonhosted.org/packages/30/2e/dd4ced42fefac8470661d7cb7e264808425e6c5d56d175291e93890cce09/contourpy-1.3.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:929ddf8c4c7f348e4c0a5a3a714b5c8542ffaa8c22954862a46ca1813b667ee7", size = 329222, upload-time = "2025-07-26T12:01:05.688Z" }, + { url = "https://files.pythonhosted.org/packages/f2/74/cc6ec2548e3d276c71389ea4802a774b7aa3558223b7bade3f25787fafc2/contourpy-1.3.3-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9e999574eddae35f1312c2b4b717b7885d4edd6cb46700e04f7f02db454e67c1", size = 377234, upload-time = "2025-07-26T12:01:07.054Z" }, + { url = "https://files.pythonhosted.org/packages/03/b3/64ef723029f917410f75c09da54254c5f9ea90ef89b143ccadb09df14c15/contourpy-1.3.3-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0bf67e0e3f482cb69779dd3061b534eb35ac9b17f163d851e2a547d56dba0a3a", size = 380555, upload-time = "2025-07-26T12:01:08.801Z" }, + { url = "https://files.pythonhosted.org/packages/5f/4b/6157f24ca425b89fe2eb7e7be642375711ab671135be21e6faa100f7448c/contourpy-1.3.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:51e79c1f7470158e838808d4a996fa9bac72c498e93d8ebe5119bc1e6becb0db", size = 355238, upload-time = "2025-07-26T12:01:10.319Z" }, + { url = "https://files.pythonhosted.org/packages/98/56/f914f0dd678480708a04cfd2206e7c382533249bc5001eb9f58aa693e200/contourpy-1.3.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:598c3aaece21c503615fd59c92a3598b428b2f01bfb4b8ca9c4edeecc2438620", size = 1326218, upload-time = "2025-07-26T12:01:12.659Z" }, + { url = "https://files.pythonhosted.org/packages/fb/d7/4a972334a0c971acd5172389671113ae82aa7527073980c38d5868ff1161/contourpy-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:322ab1c99b008dad206d406bb61d014cf0174df491ae9d9d0fac6a6fda4f977f", size = 1392867, upload-time = "2025-07-26T12:01:15.533Z" }, + { url = "https://files.pythonhosted.org/packages/75/3e/f2cc6cd56dc8cff46b1a56232eabc6feea52720083ea71ab15523daab796/contourpy-1.3.3-cp311-cp311-win32.whl", hash = "sha256:fd907ae12cd483cd83e414b12941c632a969171bf90fc937d0c9f268a31cafff", size = 183677, upload-time = "2025-07-26T12:01:17.088Z" }, + { url = "https://files.pythonhosted.org/packages/98/4b/9bd370b004b5c9d8045c6c33cf65bae018b27aca550a3f657cdc99acdbd8/contourpy-1.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:3519428f6be58431c56581f1694ba8e50626f2dd550af225f82fb5f5814d2a42", size = 225234, upload-time = "2025-07-26T12:01:18.256Z" }, + { url = "https://files.pythonhosted.org/packages/d9/b6/71771e02c2e004450c12b1120a5f488cad2e4d5b590b1af8bad060360fe4/contourpy-1.3.3-cp311-cp311-win_arm64.whl", hash = "sha256:15ff10bfada4bf92ec8b31c62bf7c1834c244019b4a33095a68000d7075df470", size = 193123, upload-time = "2025-07-26T12:01:19.848Z" }, + { url = "https://files.pythonhosted.org/packages/be/45/adfee365d9ea3d853550b2e735f9d66366701c65db7855cd07621732ccfc/contourpy-1.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b08a32ea2f8e42cf1d4be3169a98dd4be32bafe4f22b6c4cb4ba810fa9e5d2cb", size = 293419, upload-time = "2025-07-26T12:01:21.16Z" }, + { url = "https://files.pythonhosted.org/packages/53/3e/405b59cfa13021a56bba395a6b3aca8cec012b45bf177b0eaf7a202cde2c/contourpy-1.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:556dba8fb6f5d8742f2923fe9457dbdd51e1049c4a43fd3986a0b14a1d815fc6", size = 273979, upload-time = "2025-07-26T12:01:22.448Z" }, + { url = "https://files.pythonhosted.org/packages/d4/1c/a12359b9b2ca3a845e8f7f9ac08bdf776114eb931392fcad91743e2ea17b/contourpy-1.3.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92d9abc807cf7d0e047b95ca5d957cf4792fcd04e920ca70d48add15c1a90ea7", size = 332653, upload-time = "2025-07-26T12:01:24.155Z" }, + { url = "https://files.pythonhosted.org/packages/63/12/897aeebfb475b7748ea67b61e045accdfcf0d971f8a588b67108ed7f5512/contourpy-1.3.3-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b2e8faa0ed68cb29af51edd8e24798bb661eac3bd9f65420c1887b6ca89987c8", size = 379536, upload-time = "2025-07-26T12:01:25.91Z" }, + { url = "https://files.pythonhosted.org/packages/43/8a/a8c584b82deb248930ce069e71576fc09bd7174bbd35183b7943fb1064fd/contourpy-1.3.3-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:626d60935cf668e70a5ce6ff184fd713e9683fb458898e4249b63be9e28286ea", size = 384397, upload-time = "2025-07-26T12:01:27.152Z" }, + { url = "https://files.pythonhosted.org/packages/cc/8f/ec6289987824b29529d0dfda0d74a07cec60e54b9c92f3c9da4c0ac732de/contourpy-1.3.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4d00e655fcef08aba35ec9610536bfe90267d7ab5ba944f7032549c55a146da1", size = 362601, upload-time = "2025-07-26T12:01:28.808Z" }, + { url = "https://files.pythonhosted.org/packages/05/0a/a3fe3be3ee2dceb3e615ebb4df97ae6f3828aa915d3e10549ce016302bd1/contourpy-1.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:451e71b5a7d597379ef572de31eeb909a87246974d960049a9848c3bc6c41bf7", size = 1331288, upload-time = "2025-07-26T12:01:31.198Z" }, + { url = "https://files.pythonhosted.org/packages/33/1d/acad9bd4e97f13f3e2b18a3977fe1b4a37ecf3d38d815333980c6c72e963/contourpy-1.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:459c1f020cd59fcfe6650180678a9993932d80d44ccde1fa1868977438f0b411", size = 1403386, upload-time = "2025-07-26T12:01:33.947Z" }, + { url = "https://files.pythonhosted.org/packages/cf/8f/5847f44a7fddf859704217a99a23a4f6417b10e5ab1256a179264561540e/contourpy-1.3.3-cp312-cp312-win32.whl", hash = "sha256:023b44101dfe49d7d53932be418477dba359649246075c996866106da069af69", size = 185018, upload-time = "2025-07-26T12:01:35.64Z" }, + { url = "https://files.pythonhosted.org/packages/19/e8/6026ed58a64563186a9ee3f29f41261fd1828f527dd93d33b60feca63352/contourpy-1.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:8153b8bfc11e1e4d75bcb0bff1db232f9e10b274e0929de9d608027e0d34ff8b", size = 226567, upload-time = "2025-07-26T12:01:36.804Z" }, + { url = "https://files.pythonhosted.org/packages/d1/e2/f05240d2c39a1ed228d8328a78b6f44cd695f7ef47beb3e684cf93604f86/contourpy-1.3.3-cp312-cp312-win_arm64.whl", hash = "sha256:07ce5ed73ecdc4a03ffe3e1b3e3c1166db35ae7584be76f65dbbe28a7791b0cc", size = 193655, upload-time = "2025-07-26T12:01:37.999Z" }, + { url = "https://files.pythonhosted.org/packages/68/35/0167aad910bbdb9599272bd96d01a9ec6852f36b9455cf2ca67bd4cc2d23/contourpy-1.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:177fb367556747a686509d6fef71d221a4b198a3905fe824430e5ea0fda54eb5", size = 293257, upload-time = "2025-07-26T12:01:39.367Z" }, + { url = "https://files.pythonhosted.org/packages/96/e4/7adcd9c8362745b2210728f209bfbcf7d91ba868a2c5f40d8b58f54c509b/contourpy-1.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d002b6f00d73d69333dac9d0b8d5e84d9724ff9ef044fd63c5986e62b7c9e1b1", size = 274034, upload-time = "2025-07-26T12:01:40.645Z" }, + { url = "https://files.pythonhosted.org/packages/73/23/90e31ceeed1de63058a02cb04b12f2de4b40e3bef5e082a7c18d9c8ae281/contourpy-1.3.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:348ac1f5d4f1d66d3322420f01d42e43122f43616e0f194fc1c9f5d830c5b286", size = 334672, upload-time = "2025-07-26T12:01:41.942Z" }, + { url = "https://files.pythonhosted.org/packages/ed/93/b43d8acbe67392e659e1d984700e79eb67e2acb2bd7f62012b583a7f1b55/contourpy-1.3.3-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:655456777ff65c2c548b7c454af9c6f33f16c8884f11083244b5819cc214f1b5", size = 381234, upload-time = "2025-07-26T12:01:43.499Z" }, + { url = "https://files.pythonhosted.org/packages/46/3b/bec82a3ea06f66711520f75a40c8fc0b113b2a75edb36aa633eb11c4f50f/contourpy-1.3.3-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:644a6853d15b2512d67881586bd03f462c7ab755db95f16f14d7e238f2852c67", size = 385169, upload-time = "2025-07-26T12:01:45.219Z" }, + { url = "https://files.pythonhosted.org/packages/4b/32/e0f13a1c5b0f8572d0ec6ae2f6c677b7991fafd95da523159c19eff0696a/contourpy-1.3.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4debd64f124ca62069f313a9cb86656ff087786016d76927ae2cf37846b006c9", size = 362859, upload-time = "2025-07-26T12:01:46.519Z" }, + { url = "https://files.pythonhosted.org/packages/33/71/e2a7945b7de4e58af42d708a219f3b2f4cff7386e6b6ab0a0fa0033c49a9/contourpy-1.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a15459b0f4615b00bbd1e91f1b9e19b7e63aea7483d03d804186f278c0af2659", size = 1332062, upload-time = "2025-07-26T12:01:48.964Z" }, + { url = "https://files.pythonhosted.org/packages/12/fc/4e87ac754220ccc0e807284f88e943d6d43b43843614f0a8afa469801db0/contourpy-1.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ca0fdcd73925568ca027e0b17ab07aad764be4706d0a925b89227e447d9737b7", size = 1403932, upload-time = "2025-07-26T12:01:51.979Z" }, + { url = "https://files.pythonhosted.org/packages/a6/2e/adc197a37443f934594112222ac1aa7dc9a98faf9c3842884df9a9d8751d/contourpy-1.3.3-cp313-cp313-win32.whl", hash = "sha256:b20c7c9a3bf701366556e1b1984ed2d0cedf999903c51311417cf5f591d8c78d", size = 185024, upload-time = "2025-07-26T12:01:53.245Z" }, + { url = "https://files.pythonhosted.org/packages/18/0b/0098c214843213759692cc638fce7de5c289200a830e5035d1791d7a2338/contourpy-1.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:1cadd8b8969f060ba45ed7c1b714fe69185812ab43bd6b86a9123fe8f99c3263", size = 226578, upload-time = "2025-07-26T12:01:54.422Z" }, + { url = "https://files.pythonhosted.org/packages/8a/9a/2f6024a0c5995243cd63afdeb3651c984f0d2bc727fd98066d40e141ad73/contourpy-1.3.3-cp313-cp313-win_arm64.whl", hash = "sha256:fd914713266421b7536de2bfa8181aa8c699432b6763a0ea64195ebe28bff6a9", size = 193524, upload-time = "2025-07-26T12:01:55.73Z" }, + { url = "https://files.pythonhosted.org/packages/c0/b3/f8a1a86bd3298513f500e5b1f5fd92b69896449f6cab6a146a5d52715479/contourpy-1.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:88df9880d507169449d434c293467418b9f6cbe82edd19284aa0409e7fdb933d", size = 306730, upload-time = "2025-07-26T12:01:57.051Z" }, + { url = "https://files.pythonhosted.org/packages/3f/11/4780db94ae62fc0c2053909b65dc3246bd7cecfc4f8a20d957ad43aa4ad8/contourpy-1.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:d06bb1f751ba5d417047db62bca3c8fde202b8c11fb50742ab3ab962c81e8216", size = 287897, upload-time = "2025-07-26T12:01:58.663Z" }, + { url = "https://files.pythonhosted.org/packages/ae/15/e59f5f3ffdd6f3d4daa3e47114c53daabcb18574a26c21f03dc9e4e42ff0/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e4e6b05a45525357e382909a4c1600444e2a45b4795163d3b22669285591c1ae", size = 326751, upload-time = "2025-07-26T12:02:00.343Z" }, + { url = "https://files.pythonhosted.org/packages/0f/81/03b45cfad088e4770b1dcf72ea78d3802d04200009fb364d18a493857210/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ab3074b48c4e2cf1a960e6bbeb7f04566bf36b1861d5c9d4d8ac04b82e38ba20", size = 375486, upload-time = "2025-07-26T12:02:02.128Z" }, + { url = "https://files.pythonhosted.org/packages/0c/ba/49923366492ffbdd4486e970d421b289a670ae8cf539c1ea9a09822b371a/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6c3d53c796f8647d6deb1abe867daeb66dcc8a97e8455efa729516b997b8ed99", size = 388106, upload-time = "2025-07-26T12:02:03.615Z" }, + { url = "https://files.pythonhosted.org/packages/9f/52/5b00ea89525f8f143651f9f03a0df371d3cbd2fccd21ca9b768c7a6500c2/contourpy-1.3.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:50ed930df7289ff2a8d7afeb9603f8289e5704755c7e5c3bbd929c90c817164b", size = 352548, upload-time = "2025-07-26T12:02:05.165Z" }, + { url = "https://files.pythonhosted.org/packages/32/1d/a209ec1a3a3452d490f6b14dd92e72280c99ae3d1e73da74f8277d4ee08f/contourpy-1.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4feffb6537d64b84877da813a5c30f1422ea5739566abf0bd18065ac040e120a", size = 1322297, upload-time = "2025-07-26T12:02:07.379Z" }, + { url = "https://files.pythonhosted.org/packages/bc/9e/46f0e8ebdd884ca0e8877e46a3f4e633f6c9c8c4f3f6e72be3fe075994aa/contourpy-1.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2b7e9480ffe2b0cd2e787e4df64270e3a0440d9db8dc823312e2c940c167df7e", size = 1391023, upload-time = "2025-07-26T12:02:10.171Z" }, + { url = "https://files.pythonhosted.org/packages/b9/70/f308384a3ae9cd2209e0849f33c913f658d3326900d0ff5d378d6a1422d2/contourpy-1.3.3-cp313-cp313t-win32.whl", hash = "sha256:283edd842a01e3dcd435b1c5116798d661378d83d36d337b8dde1d16a5fc9ba3", size = 196157, upload-time = "2025-07-26T12:02:11.488Z" }, + { url = "https://files.pythonhosted.org/packages/b2/dd/880f890a6663b84d9e34a6f88cded89d78f0091e0045a284427cb6b18521/contourpy-1.3.3-cp313-cp313t-win_amd64.whl", hash = "sha256:87acf5963fc2b34825e5b6b048f40e3635dd547f590b04d2ab317c2619ef7ae8", size = 240570, upload-time = "2025-07-26T12:02:12.754Z" }, + { url = "https://files.pythonhosted.org/packages/80/99/2adc7d8ffead633234817ef8e9a87115c8a11927a94478f6bb3d3f4d4f7d/contourpy-1.3.3-cp313-cp313t-win_arm64.whl", hash = "sha256:3c30273eb2a55024ff31ba7d052dde990d7d8e5450f4bbb6e913558b3d6c2301", size = 199713, upload-time = "2025-07-26T12:02:14.4Z" }, + { url = "https://files.pythonhosted.org/packages/72/8b/4546f3ab60f78c514ffb7d01a0bd743f90de36f0019d1be84d0a708a580a/contourpy-1.3.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fde6c716d51c04b1c25d0b90364d0be954624a0ee9d60e23e850e8d48353d07a", size = 292189, upload-time = "2025-07-26T12:02:16.095Z" }, + { url = "https://files.pythonhosted.org/packages/fd/e1/3542a9cb596cadd76fcef413f19c79216e002623158befe6daa03dbfa88c/contourpy-1.3.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:cbedb772ed74ff5be440fa8eee9bd49f64f6e3fc09436d9c7d8f1c287b121d77", size = 273251, upload-time = "2025-07-26T12:02:17.524Z" }, + { url = "https://files.pythonhosted.org/packages/b1/71/f93e1e9471d189f79d0ce2497007731c1e6bf9ef6d1d61b911430c3db4e5/contourpy-1.3.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:22e9b1bd7a9b1d652cd77388465dc358dafcd2e217d35552424aa4f996f524f5", size = 335810, upload-time = "2025-07-26T12:02:18.9Z" }, + { url = "https://files.pythonhosted.org/packages/91/f9/e35f4c1c93f9275d4e38681a80506b5510e9327350c51f8d4a5a724d178c/contourpy-1.3.3-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a22738912262aa3e254e4f3cb079a95a67132fc5a063890e224393596902f5a4", size = 382871, upload-time = "2025-07-26T12:02:20.418Z" }, + { url = "https://files.pythonhosted.org/packages/b5/71/47b512f936f66a0a900d81c396a7e60d73419868fba959c61efed7a8ab46/contourpy-1.3.3-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:afe5a512f31ee6bd7d0dda52ec9864c984ca3d66664444f2d72e0dc4eb832e36", size = 386264, upload-time = "2025-07-26T12:02:21.916Z" }, + { url = "https://files.pythonhosted.org/packages/04/5f/9ff93450ba96b09c7c2b3f81c94de31c89f92292f1380261bd7195bea4ea/contourpy-1.3.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f64836de09927cba6f79dcd00fdd7d5329f3fccc633468507079c829ca4db4e3", size = 363819, upload-time = "2025-07-26T12:02:23.759Z" }, + { url = "https://files.pythonhosted.org/packages/3e/a6/0b185d4cc480ee494945cde102cb0149ae830b5fa17bf855b95f2e70ad13/contourpy-1.3.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:1fd43c3be4c8e5fd6e4f2baeae35ae18176cf2e5cced681cca908addf1cdd53b", size = 1333650, upload-time = "2025-07-26T12:02:26.181Z" }, + { url = "https://files.pythonhosted.org/packages/43/d7/afdc95580ca56f30fbcd3060250f66cedbde69b4547028863abd8aa3b47e/contourpy-1.3.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6afc576f7b33cf00996e5c1102dc2a8f7cc89e39c0b55df93a0b78c1bd992b36", size = 1404833, upload-time = "2025-07-26T12:02:28.782Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e2/366af18a6d386f41132a48f033cbd2102e9b0cf6345d35ff0826cd984566/contourpy-1.3.3-cp314-cp314-win32.whl", hash = "sha256:66c8a43a4f7b8df8b71ee1840e4211a3c8d93b214b213f590e18a1beca458f7d", size = 189692, upload-time = "2025-07-26T12:02:30.128Z" }, + { url = "https://files.pythonhosted.org/packages/7d/c2/57f54b03d0f22d4044b8afb9ca0e184f8b1afd57b4f735c2fa70883dc601/contourpy-1.3.3-cp314-cp314-win_amd64.whl", hash = "sha256:cf9022ef053f2694e31d630feaacb21ea24224be1c3ad0520b13d844274614fd", size = 232424, upload-time = "2025-07-26T12:02:31.395Z" }, + { url = "https://files.pythonhosted.org/packages/18/79/a9416650df9b525737ab521aa181ccc42d56016d2123ddcb7b58e926a42c/contourpy-1.3.3-cp314-cp314-win_arm64.whl", hash = "sha256:95b181891b4c71de4bb404c6621e7e2390745f887f2a026b2d99e92c17892339", size = 198300, upload-time = "2025-07-26T12:02:32.956Z" }, + { url = "https://files.pythonhosted.org/packages/1f/42/38c159a7d0f2b7b9c04c64ab317042bb6952b713ba875c1681529a2932fe/contourpy-1.3.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:33c82d0138c0a062380332c861387650c82e4cf1747aaa6938b9b6516762e772", size = 306769, upload-time = "2025-07-26T12:02:34.2Z" }, + { url = "https://files.pythonhosted.org/packages/c3/6c/26a8205f24bca10974e77460de68d3d7c63e282e23782f1239f226fcae6f/contourpy-1.3.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:ea37e7b45949df430fe649e5de8351c423430046a2af20b1c1961cae3afcda77", size = 287892, upload-time = "2025-07-26T12:02:35.807Z" }, + { url = "https://files.pythonhosted.org/packages/66/06/8a475c8ab718ebfd7925661747dbb3c3ee9c82ac834ccb3570be49d129f4/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d304906ecc71672e9c89e87c4675dc5c2645e1f4269a5063b99b0bb29f232d13", size = 326748, upload-time = "2025-07-26T12:02:37.193Z" }, + { url = "https://files.pythonhosted.org/packages/b4/a3/c5ca9f010a44c223f098fccd8b158bb1cb287378a31ac141f04730dc49be/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ca658cd1a680a5c9ea96dc61cdbae1e85c8f25849843aa799dfd3cb370ad4fbe", size = 375554, upload-time = "2025-07-26T12:02:38.894Z" }, + { url = "https://files.pythonhosted.org/packages/80/5b/68bd33ae63fac658a4145088c1e894405e07584a316738710b636c6d0333/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ab2fd90904c503739a75b7c8c5c01160130ba67944a7b77bbf36ef8054576e7f", size = 388118, upload-time = "2025-07-26T12:02:40.642Z" }, + { url = "https://files.pythonhosted.org/packages/40/52/4c285a6435940ae25d7410a6c36bda5145839bc3f0beb20c707cda18b9d2/contourpy-1.3.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7301b89040075c30e5768810bc96a8e8d78085b47d8be6e4c3f5a0b4ed478a0", size = 352555, upload-time = "2025-07-26T12:02:42.25Z" }, + { url = "https://files.pythonhosted.org/packages/24/ee/3e81e1dd174f5c7fefe50e85d0892de05ca4e26ef1c9a59c2a57e43b865a/contourpy-1.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:2a2a8b627d5cc6b7c41a4beff6c5ad5eb848c88255fda4a8745f7e901b32d8e4", size = 1322295, upload-time = "2025-07-26T12:02:44.668Z" }, + { url = "https://files.pythonhosted.org/packages/3c/b2/6d913d4d04e14379de429057cd169e5e00f6c2af3bb13e1710bcbdb5da12/contourpy-1.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:fd6ec6be509c787f1caf6b247f0b1ca598bef13f4ddeaa126b7658215529ba0f", size = 1391027, upload-time = "2025-07-26T12:02:47.09Z" }, + { url = "https://files.pythonhosted.org/packages/93/8a/68a4ec5c55a2971213d29a9374913f7e9f18581945a7a31d1a39b5d2dfe5/contourpy-1.3.3-cp314-cp314t-win32.whl", hash = "sha256:e74a9a0f5e3fff48fb5a7f2fd2b9b70a3fe014a67522f79b7cca4c0c7e43c9ae", size = 202428, upload-time = "2025-07-26T12:02:48.691Z" }, + { url = "https://files.pythonhosted.org/packages/fa/96/fd9f641ffedc4fa3ace923af73b9d07e869496c9cc7a459103e6e978992f/contourpy-1.3.3-cp314-cp314t-win_amd64.whl", hash = "sha256:13b68d6a62db8eafaebb8039218921399baf6e47bf85006fd8529f2a08ef33fc", size = 250331, upload-time = "2025-07-26T12:02:50.137Z" }, + { url = "https://files.pythonhosted.org/packages/ae/8c/469afb6465b853afff216f9528ffda78a915ff880ed58813ba4faf4ba0b6/contourpy-1.3.3-cp314-cp314t-win_arm64.whl", hash = "sha256:b7448cb5a725bb1e35ce88771b86fba35ef418952474492cf7c764059933ff8b", size = 203831, upload-time = "2025-07-26T12:02:51.449Z" }, + { url = "https://files.pythonhosted.org/packages/a5/29/8dcfe16f0107943fa92388c23f6e05cff0ba58058c4c95b00280d4c75a14/contourpy-1.3.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cd5dfcaeb10f7b7f9dc8941717c6c2ade08f587be2226222c12b25f0483ed497", size = 278809, upload-time = "2025-07-26T12:02:52.74Z" }, + { url = "https://files.pythonhosted.org/packages/85/a9/8b37ef4f7dafeb335daee3c8254645ef5725be4d9c6aa70b50ec46ef2f7e/contourpy-1.3.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:0c1fc238306b35f246d61a1d416a627348b5cf0648648a031e14bb8705fcdfe8", size = 261593, upload-time = "2025-07-26T12:02:54.037Z" }, + { url = "https://files.pythonhosted.org/packages/0a/59/ebfb8c677c75605cc27f7122c90313fd2f375ff3c8d19a1694bda74aaa63/contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:70f9aad7de812d6541d29d2bbf8feb22ff7e1c299523db288004e3157ff4674e", size = 302202, upload-time = "2025-07-26T12:02:55.947Z" }, + { url = "https://files.pythonhosted.org/packages/3c/37/21972a15834d90bfbfb009b9d004779bd5a07a0ec0234e5ba8f64d5736f4/contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5ed3657edf08512fc3fe81b510e35c2012fbd3081d2e26160f27ca28affec989", size = 329207, upload-time = "2025-07-26T12:02:57.468Z" }, + { url = "https://files.pythonhosted.org/packages/0c/58/bd257695f39d05594ca4ad60df5bcb7e32247f9951fd09a9b8edb82d1daa/contourpy-1.3.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:3d1a3799d62d45c18bafd41c5fa05120b96a28079f2393af559b843d1a966a77", size = 225315, upload-time = "2025-07-26T12:02:58.801Z" }, +] + +[[package]] +name = "coverage" +version = "7.13.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/24/56/95b7e30fa389756cb56630faa728da46a27b8c6eb46f9d557c68fff12b65/coverage-7.13.4.tar.gz", hash = "sha256:e5c8f6ed1e61a8b2dcdf31eb0b9bbf0130750ca79c1c49eb898e2ad86f5ccc91", size = 827239, upload-time = "2026-02-09T12:59:03.86Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b4/ad/b59e5b451cf7172b8d1043dc0fa718f23aab379bc1521ee13d4bd9bfa960/coverage-7.13.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d490ba50c3f35dd7c17953c68f3270e7ccd1c6642e2d2afe2d8e720b98f5a053", size = 219278, upload-time = "2026-02-09T12:56:31.673Z" }, + { url = "https://files.pythonhosted.org/packages/f1/17/0cb7ca3de72e5f4ef2ec2fa0089beafbcaaaead1844e8b8a63d35173d77d/coverage-7.13.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:19bc3c88078789f8ef36acb014d7241961dbf883fd2533d18cb1e7a5b4e28b11", size = 219783, upload-time = "2026-02-09T12:56:33.104Z" }, + { url = "https://files.pythonhosted.org/packages/ab/63/325d8e5b11e0eaf6d0f6a44fad444ae58820929a9b0de943fa377fe73e85/coverage-7.13.4-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:3998e5a32e62fdf410c0dbd3115df86297995d6e3429af80b8798aad894ca7aa", size = 250200, upload-time = "2026-02-09T12:56:34.474Z" }, + { url = "https://files.pythonhosted.org/packages/76/53/c16972708cbb79f2942922571a687c52bd109a7bd51175aeb7558dff2236/coverage-7.13.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:8e264226ec98e01a8e1054314af91ee6cde0eacac4f465cc93b03dbe0bce2fd7", size = 252114, upload-time = "2026-02-09T12:56:35.749Z" }, + { url = "https://files.pythonhosted.org/packages/eb/c2/7ab36d8b8cc412bec9ea2d07c83c48930eb4ba649634ba00cb7e4e0f9017/coverage-7.13.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a3aa4e7b9e416774b21797365b358a6e827ffadaaca81b69ee02946852449f00", size = 254220, upload-time = "2026-02-09T12:56:37.796Z" }, + { url = "https://files.pythonhosted.org/packages/d6/4d/cf52c9a3322c89a0e6febdfbc83bb45c0ed3c64ad14081b9503adee702e7/coverage-7.13.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:71ca20079dd8f27fcf808817e281e90220475cd75115162218d0e27549f95fef", size = 256164, upload-time = "2026-02-09T12:56:39.016Z" }, + { url = "https://files.pythonhosted.org/packages/78/e9/eb1dd17bd6de8289df3580e967e78294f352a5df8a57ff4671ee5fc3dcd0/coverage-7.13.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e2f25215f1a359ab17320b47bcdaca3e6e6356652e8256f2441e4ef972052903", size = 250325, upload-time = "2026-02-09T12:56:40.668Z" }, + { url = "https://files.pythonhosted.org/packages/71/07/8c1542aa873728f72267c07278c5cc0ec91356daf974df21335ccdb46368/coverage-7.13.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d65b2d373032411e86960604dc4edac91fdfb5dca539461cf2cbe78327d1e64f", size = 251913, upload-time = "2026-02-09T12:56:41.97Z" }, + { url = "https://files.pythonhosted.org/packages/74/d7/c62e2c5e4483a748e27868e4c32ad3daa9bdddbba58e1bc7a15e252baa74/coverage-7.13.4-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:94eb63f9b363180aff17de3e7c8760c3ba94664ea2695c52f10111244d16a299", size = 249974, upload-time = "2026-02-09T12:56:43.323Z" }, + { url = "https://files.pythonhosted.org/packages/98/9f/4c5c015a6e98ced54efd0f5cf8d31b88e5504ecb6857585fc0161bb1e600/coverage-7.13.4-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:e856bf6616714c3a9fbc270ab54103f4e685ba236fa98c054e8f87f266c93505", size = 253741, upload-time = "2026-02-09T12:56:45.155Z" }, + { url = "https://files.pythonhosted.org/packages/bd/59/0f4eef89b9f0fcd9633b5d350016f54126ab49426a70ff4c4e87446cabdc/coverage-7.13.4-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:65dfcbe305c3dfe658492df2d85259e0d79ead4177f9ae724b6fb245198f55d6", size = 249695, upload-time = "2026-02-09T12:56:46.636Z" }, + { url = "https://files.pythonhosted.org/packages/b5/2c/b7476f938deb07166f3eb281a385c262675d688ff4659ad56c6c6b8e2e70/coverage-7.13.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b507778ae8a4c915436ed5c2e05b4a6cecfa70f734e19c22a005152a11c7b6a9", size = 250599, upload-time = "2026-02-09T12:56:48.13Z" }, + { url = "https://files.pythonhosted.org/packages/b8/34/c3420709d9846ee3785b9f2831b4d94f276f38884032dca1457fa83f7476/coverage-7.13.4-cp311-cp311-win32.whl", hash = "sha256:784fc3cf8be001197b652d51d3fd259b1e2262888693a4636e18879f613a62a9", size = 221780, upload-time = "2026-02-09T12:56:50.479Z" }, + { url = "https://files.pythonhosted.org/packages/61/08/3d9c8613079d2b11c185b865de9a4c1a68850cfda2b357fae365cf609f29/coverage-7.13.4-cp311-cp311-win_amd64.whl", hash = "sha256:2421d591f8ca05b308cf0092807308b2facbefe54af7c02ac22548b88b95c98f", size = 222715, upload-time = "2026-02-09T12:56:51.815Z" }, + { url = "https://files.pythonhosted.org/packages/18/1a/54c3c80b2f056164cc0a6cdcb040733760c7c4be9d780fe655f356f433e4/coverage-7.13.4-cp311-cp311-win_arm64.whl", hash = "sha256:79e73a76b854d9c6088fe5d8b2ebe745f8681c55f7397c3c0a016192d681045f", size = 221385, upload-time = "2026-02-09T12:56:53.194Z" }, + { url = "https://files.pythonhosted.org/packages/d1/81/4ce2fdd909c5a0ed1f6dedb88aa57ab79b6d1fbd9b588c1ac7ef45659566/coverage-7.13.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02231499b08dabbe2b96612993e5fc34217cdae907a51b906ac7fca8027a4459", size = 219449, upload-time = "2026-02-09T12:56:54.889Z" }, + { url = "https://files.pythonhosted.org/packages/5d/96/5238b1efc5922ddbdc9b0db9243152c09777804fb7c02ad1741eb18a11c0/coverage-7.13.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40aa8808140e55dc022b15d8aa7f651b6b3d68b365ea0398f1441e0b04d859c3", size = 219810, upload-time = "2026-02-09T12:56:56.33Z" }, + { url = "https://files.pythonhosted.org/packages/78/72/2f372b726d433c9c35e56377cf1d513b4c16fe51841060d826b95caacec1/coverage-7.13.4-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:5b856a8ccf749480024ff3bd7310adaef57bf31fd17e1bfc404b7940b6986634", size = 251308, upload-time = "2026-02-09T12:56:57.858Z" }, + { url = "https://files.pythonhosted.org/packages/5d/a0/2ea570925524ef4e00bb6c82649f5682a77fac5ab910a65c9284de422600/coverage-7.13.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:2c048ea43875fbf8b45d476ad79f179809c590ec7b79e2035c662e7afa3192e3", size = 254052, upload-time = "2026-02-09T12:56:59.754Z" }, + { url = "https://files.pythonhosted.org/packages/e8/ac/45dc2e19a1939098d783c846e130b8f862fbb50d09e0af663988f2f21973/coverage-7.13.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b7b38448866e83176e28086674fe7368ab8590e4610fb662b44e345b86d63ffa", size = 255165, upload-time = "2026-02-09T12:57:01.287Z" }, + { url = "https://files.pythonhosted.org/packages/2d/4d/26d236ff35abc3b5e63540d3386e4c3b192168c1d96da5cb2f43c640970f/coverage-7.13.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:de6defc1c9badbf8b9e67ae90fd00519186d6ab64e5cc5f3d21359c2a9b2c1d3", size = 257432, upload-time = "2026-02-09T12:57:02.637Z" }, + { url = "https://files.pythonhosted.org/packages/ec/55/14a966c757d1348b2e19caf699415a2a4c4f7feaa4bbc6326a51f5c7dd1b/coverage-7.13.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:7eda778067ad7ffccd23ecffce537dface96212576a07924cbf0d8799d2ded5a", size = 251716, upload-time = "2026-02-09T12:57:04.056Z" }, + { url = "https://files.pythonhosted.org/packages/77/33/50116647905837c66d28b2af1321b845d5f5d19be9655cb84d4a0ea806b4/coverage-7.13.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e87f6c587c3f34356c3759f0420693e35e7eb0e2e41e4c011cb6ec6ecbbf1db7", size = 253089, upload-time = "2026-02-09T12:57:05.503Z" }, + { url = "https://files.pythonhosted.org/packages/c2/b4/8efb11a46e3665d92635a56e4f2d4529de6d33f2cb38afd47d779d15fc99/coverage-7.13.4-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:8248977c2e33aecb2ced42fef99f2d319e9904a36e55a8a68b69207fb7e43edc", size = 251232, upload-time = "2026-02-09T12:57:06.879Z" }, + { url = "https://files.pythonhosted.org/packages/51/24/8cd73dd399b812cc76bb0ac260e671c4163093441847ffe058ac9fda1e32/coverage-7.13.4-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:25381386e80ae727608e662474db537d4df1ecd42379b5ba33c84633a2b36d47", size = 255299, upload-time = "2026-02-09T12:57:08.245Z" }, + { url = "https://files.pythonhosted.org/packages/03/94/0a4b12f1d0e029ce1ccc1c800944a9984cbe7d678e470bb6d3c6bc38a0da/coverage-7.13.4-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:ee756f00726693e5ba94d6df2bdfd64d4852d23b09bb0bc700e3b30e6f333985", size = 250796, upload-time = "2026-02-09T12:57:10.142Z" }, + { url = "https://files.pythonhosted.org/packages/73/44/6002fbf88f6698ca034360ce474c406be6d5a985b3fdb3401128031eef6b/coverage-7.13.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fdfc1e28e7c7cdce44985b3043bc13bbd9c747520f94a4d7164af8260b3d91f0", size = 252673, upload-time = "2026-02-09T12:57:12.197Z" }, + { url = "https://files.pythonhosted.org/packages/de/c6/a0279f7c00e786be75a749a5674e6fa267bcbd8209cd10c9a450c655dfa7/coverage-7.13.4-cp312-cp312-win32.whl", hash = "sha256:01d4cbc3c283a17fc1e42d614a119f7f438eabb593391283adca8dc86eff1246", size = 221990, upload-time = "2026-02-09T12:57:14.085Z" }, + { url = "https://files.pythonhosted.org/packages/77/4e/c0a25a425fcf5557d9abd18419c95b63922e897bc86c1f327f155ef234a9/coverage-7.13.4-cp312-cp312-win_amd64.whl", hash = "sha256:9401ebc7ef522f01d01d45532c68c5ac40fb27113019b6b7d8b208f6e9baa126", size = 222800, upload-time = "2026-02-09T12:57:15.944Z" }, + { url = "https://files.pythonhosted.org/packages/47/ac/92da44ad9a6f4e3a7debd178949d6f3769bedca33830ce9b1dcdab589a37/coverage-7.13.4-cp312-cp312-win_arm64.whl", hash = "sha256:b1ec7b6b6e93255f952e27ab58fbc68dcc468844b16ecbee881aeb29b6ab4d8d", size = 221415, upload-time = "2026-02-09T12:57:17.497Z" }, + { url = "https://files.pythonhosted.org/packages/db/23/aad45061a31677d68e47499197a131eea55da4875d16c1f42021ab963503/coverage-7.13.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b66a2da594b6068b48b2692f043f35d4d3693fb639d5ea8b39533c2ad9ac3ab9", size = 219474, upload-time = "2026-02-09T12:57:19.332Z" }, + { url = "https://files.pythonhosted.org/packages/a5/70/9b8b67a0945f3dfec1fd896c5cefb7c19d5a3a6d74630b99a895170999ae/coverage-7.13.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3599eb3992d814d23b35c536c28df1a882caa950f8f507cef23d1cbf334995ac", size = 219844, upload-time = "2026-02-09T12:57:20.66Z" }, + { url = "https://files.pythonhosted.org/packages/97/fd/7e859f8fab324cef6c4ad7cff156ca7c489fef9179d5749b0c8d321281c2/coverage-7.13.4-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:93550784d9281e374fb5a12bf1324cc8a963fd63b2d2f223503ef0fd4aa339ea", size = 250832, upload-time = "2026-02-09T12:57:22.007Z" }, + { url = "https://files.pythonhosted.org/packages/e4/dc/b2442d10020c2f52617828862d8b6ee337859cd8f3a1f13d607dddda9cf7/coverage-7.13.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b720ce6a88a2755f7c697c23268ddc47a571b88052e6b155224347389fdf6a3b", size = 253434, upload-time = "2026-02-09T12:57:23.339Z" }, + { url = "https://files.pythonhosted.org/packages/5a/88/6728a7ad17428b18d836540630487231f5470fb82454871149502f5e5aa2/coverage-7.13.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7b322db1284a2ed3aa28ffd8ebe3db91c929b7a333c0820abec3d838ef5b3525", size = 254676, upload-time = "2026-02-09T12:57:24.774Z" }, + { url = "https://files.pythonhosted.org/packages/7c/bc/21244b1b8cedf0dff0a2b53b208015fe798d5f2a8d5348dbfece04224fff/coverage-7.13.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f4594c67d8a7c89cf922d9df0438c7c7bb022ad506eddb0fdb2863359ff78242", size = 256807, upload-time = "2026-02-09T12:57:26.125Z" }, + { url = "https://files.pythonhosted.org/packages/97/a0/ddba7ed3251cff51006737a727d84e05b61517d1784a9988a846ba508877/coverage-7.13.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:53d133df809c743eb8bce33b24bcababb371f4441340578cd406e084d94a6148", size = 251058, upload-time = "2026-02-09T12:57:27.614Z" }, + { url = "https://files.pythonhosted.org/packages/9b/55/e289addf7ff54d3a540526f33751951bf0878f3809b47f6dfb3def69c6f7/coverage-7.13.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:76451d1978b95ba6507a039090ba076105c87cc76fc3efd5d35d72093964d49a", size = 252805, upload-time = "2026-02-09T12:57:29.066Z" }, + { url = "https://files.pythonhosted.org/packages/13/4e/cc276b1fa4a59be56d96f1dabddbdc30f4ba22e3b1cd42504c37b3313255/coverage-7.13.4-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:7f57b33491e281e962021de110b451ab8a24182589be17e12a22c79047935e23", size = 250766, upload-time = "2026-02-09T12:57:30.522Z" }, + { url = "https://files.pythonhosted.org/packages/94/44/1093b8f93018f8b41a8cf29636c9292502f05e4a113d4d107d14a3acd044/coverage-7.13.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:1731dc33dc276dafc410a885cbf5992f1ff171393e48a21453b78727d090de80", size = 254923, upload-time = "2026-02-09T12:57:31.946Z" }, + { url = "https://files.pythonhosted.org/packages/8b/55/ea2796da2d42257f37dbea1aab239ba9263b31bd91d5527cdd6db5efe174/coverage-7.13.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:bd60d4fe2f6fa7dff9223ca1bbc9f05d2b6697bc5961072e5d3b952d46e1b1ea", size = 250591, upload-time = "2026-02-09T12:57:33.842Z" }, + { url = "https://files.pythonhosted.org/packages/d4/fa/7c4bb72aacf8af5020675aa633e59c1fbe296d22aed191b6a5b711eb2bc7/coverage-7.13.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9181a3ccead280b828fae232df12b16652702b49d41e99d657f46cc7b1f6ec7a", size = 252364, upload-time = "2026-02-09T12:57:35.743Z" }, + { url = "https://files.pythonhosted.org/packages/5c/38/a8d2ec0146479c20bbaa7181b5b455a0c41101eed57f10dd19a78ab44c80/coverage-7.13.4-cp313-cp313-win32.whl", hash = "sha256:f53d492307962561ac7de4cd1de3e363589b000ab69617c6156a16ba7237998d", size = 222010, upload-time = "2026-02-09T12:57:37.25Z" }, + { url = "https://files.pythonhosted.org/packages/e2/0c/dbfafbe90a185943dcfbc766fe0e1909f658811492d79b741523a414a6cc/coverage-7.13.4-cp313-cp313-win_amd64.whl", hash = "sha256:e6f70dec1cc557e52df5306d051ef56003f74d56e9c4dd7ddb07e07ef32a84dd", size = 222818, upload-time = "2026-02-09T12:57:38.734Z" }, + { url = "https://files.pythonhosted.org/packages/04/d1/934918a138c932c90d78301f45f677fb05c39a3112b96fd2c8e60503cdc7/coverage-7.13.4-cp313-cp313-win_arm64.whl", hash = "sha256:fb07dc5da7e849e2ad31a5d74e9bece81f30ecf5a42909d0a695f8bd1874d6af", size = 221438, upload-time = "2026-02-09T12:57:40.223Z" }, + { url = "https://files.pythonhosted.org/packages/52/57/ee93ced533bcb3e6df961c0c6e42da2fc6addae53fb95b94a89b1e33ebd7/coverage-7.13.4-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:40d74da8e6c4b9ac18b15331c4b5ebc35a17069410cad462ad4f40dcd2d50c0d", size = 220165, upload-time = "2026-02-09T12:57:41.639Z" }, + { url = "https://files.pythonhosted.org/packages/c5/e0/969fc285a6fbdda49d91af278488d904dcd7651b2693872f0ff94e40e84a/coverage-7.13.4-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:4223b4230a376138939a9173f1bdd6521994f2aff8047fae100d6d94d50c5a12", size = 220516, upload-time = "2026-02-09T12:57:44.215Z" }, + { url = "https://files.pythonhosted.org/packages/b1/b8/9531944e16267e2735a30a9641ff49671f07e8138ecf1ca13db9fd2560c7/coverage-7.13.4-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:1d4be36a5114c499f9f1f9195e95ebf979460dbe2d88e6816ea202010ba1c34b", size = 261804, upload-time = "2026-02-09T12:57:45.989Z" }, + { url = "https://files.pythonhosted.org/packages/8a/f3/e63df6d500314a2a60390d1989240d5f27318a7a68fa30ad3806e2a9323e/coverage-7.13.4-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:200dea7d1e8095cc6e98cdabe3fd1d21ab17d3cee6dab00cadbb2fe35d9c15b9", size = 263885, upload-time = "2026-02-09T12:57:47.42Z" }, + { url = "https://files.pythonhosted.org/packages/f3/67/7654810de580e14b37670b60a09c599fa348e48312db5b216d730857ffe6/coverage-7.13.4-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b8eb931ee8e6d8243e253e5ed7336deea6904369d2fd8ae6e43f68abbf167092", size = 266308, upload-time = "2026-02-09T12:57:49.345Z" }, + { url = "https://files.pythonhosted.org/packages/37/6f/39d41eca0eab3cc82115953ad41c4e77935286c930e8fad15eaed1389d83/coverage-7.13.4-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:75eab1ebe4f2f64d9509b984f9314d4aa788540368218b858dad56dc8f3e5eb9", size = 267452, upload-time = "2026-02-09T12:57:50.811Z" }, + { url = "https://files.pythonhosted.org/packages/50/6d/39c0fbb8fc5cd4d2090811e553c2108cf5112e882f82505ee7495349a6bf/coverage-7.13.4-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c35eb28c1d085eb7d8c9b3296567a1bebe03ce72962e932431b9a61f28facf26", size = 261057, upload-time = "2026-02-09T12:57:52.447Z" }, + { url = "https://files.pythonhosted.org/packages/a4/a2/60010c669df5fa603bb5a97fb75407e191a846510da70ac657eb696b7fce/coverage-7.13.4-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:eb88b316ec33760714a4720feb2816a3a59180fd58c1985012054fa7aebee4c2", size = 263875, upload-time = "2026-02-09T12:57:53.938Z" }, + { url = "https://files.pythonhosted.org/packages/3e/d9/63b22a6bdbd17f1f96e9ed58604c2a6b0e72a9133e37d663bef185877cf6/coverage-7.13.4-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:7d41eead3cc673cbd38a4417deb7fd0b4ca26954ff7dc6078e33f6ff97bed940", size = 261500, upload-time = "2026-02-09T12:57:56.012Z" }, + { url = "https://files.pythonhosted.org/packages/70/bf/69f86ba1ad85bc3ad240e4c0e57a2e620fbc0e1645a47b5c62f0e941ad7f/coverage-7.13.4-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:fb26a934946a6afe0e326aebe0730cdff393a8bc0bbb65a2f41e30feddca399c", size = 265212, upload-time = "2026-02-09T12:57:57.5Z" }, + { url = "https://files.pythonhosted.org/packages/ae/f2/5f65a278a8c2148731831574c73e42f57204243d33bedaaf18fa79c5958f/coverage-7.13.4-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:dae88bc0fc77edaa65c14be099bd57ee140cf507e6bfdeea7938457ab387efb0", size = 260398, upload-time = "2026-02-09T12:57:59.027Z" }, + { url = "https://files.pythonhosted.org/packages/ef/80/6e8280a350ee9fea92f14b8357448a242dcaa243cb2c72ab0ca591f66c8c/coverage-7.13.4-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:845f352911777a8e722bfce168958214951e07e47e5d5d9744109fa5fe77f79b", size = 262584, upload-time = "2026-02-09T12:58:01.129Z" }, + { url = "https://files.pythonhosted.org/packages/22/63/01ff182fc95f260b539590fb12c11ad3e21332c15f9799cb5e2386f71d9f/coverage-7.13.4-cp313-cp313t-win32.whl", hash = "sha256:2fa8d5f8de70688a28240de9e139fa16b153cc3cbb01c5f16d88d6505ebdadf9", size = 222688, upload-time = "2026-02-09T12:58:02.736Z" }, + { url = "https://files.pythonhosted.org/packages/a9/43/89de4ef5d3cd53b886afa114065f7e9d3707bdb3e5efae13535b46ae483d/coverage-7.13.4-cp313-cp313t-win_amd64.whl", hash = "sha256:9351229c8c8407645840edcc277f4a2d44814d1bc34a2128c11c2a031d45a5dd", size = 223746, upload-time = "2026-02-09T12:58:05.362Z" }, + { url = "https://files.pythonhosted.org/packages/35/39/7cf0aa9a10d470a5309b38b289b9bb07ddeac5d61af9b664fe9775a4cb3e/coverage-7.13.4-cp313-cp313t-win_arm64.whl", hash = "sha256:30b8d0512f2dc8c8747557e8fb459d6176a2c9e5731e2b74d311c03b78451997", size = 222003, upload-time = "2026-02-09T12:58:06.952Z" }, + { url = "https://files.pythonhosted.org/packages/92/11/a9cf762bb83386467737d32187756a42094927150c3e107df4cb078e8590/coverage-7.13.4-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:300deaee342f90696ed186e3a00c71b5b3d27bffe9e827677954f4ee56969601", size = 219522, upload-time = "2026-02-09T12:58:08.623Z" }, + { url = "https://files.pythonhosted.org/packages/d3/28/56e6d892b7b052236d67c95f1936b6a7cf7c3e2634bf27610b8cbd7f9c60/coverage-7.13.4-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:29e3220258d682b6226a9b0925bc563ed9a1ebcff3cad30f043eceea7eaf2689", size = 219855, upload-time = "2026-02-09T12:58:10.176Z" }, + { url = "https://files.pythonhosted.org/packages/e5/69/233459ee9eb0c0d10fcc2fe425a029b3fa5ce0f040c966ebce851d030c70/coverage-7.13.4-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:391ee8f19bef69210978363ca930f7328081c6a0152f1166c91f0b5fdd2a773c", size = 250887, upload-time = "2026-02-09T12:58:12.503Z" }, + { url = "https://files.pythonhosted.org/packages/06/90/2cdab0974b9b5bbc1623f7876b73603aecac11b8d95b85b5b86b32de5eab/coverage-7.13.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:0dd7ab8278f0d58a0128ba2fca25824321f05d059c1441800e934ff2efa52129", size = 253396, upload-time = "2026-02-09T12:58:14.615Z" }, + { url = "https://files.pythonhosted.org/packages/ac/15/ea4da0f85bf7d7b27635039e649e99deb8173fe551096ea15017f7053537/coverage-7.13.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:78cdf0d578b15148b009ccf18c686aa4f719d887e76e6b40c38ffb61d264a552", size = 254745, upload-time = "2026-02-09T12:58:16.162Z" }, + { url = "https://files.pythonhosted.org/packages/99/11/bb356e86920c655ca4d61daee4e2bbc7258f0a37de0be32d233b561134ff/coverage-7.13.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:48685fee12c2eb3b27c62f2658e7ea21e9c3239cba5a8a242801a0a3f6a8c62a", size = 257055, upload-time = "2026-02-09T12:58:17.892Z" }, + { url = "https://files.pythonhosted.org/packages/c9/0f/9ae1f8cb17029e09da06ca4e28c9e1d5c1c0a511c7074592e37e0836c915/coverage-7.13.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:4e83efc079eb39480e6346a15a1bcb3e9b04759c5202d157e1dd4303cd619356", size = 250911, upload-time = "2026-02-09T12:58:19.495Z" }, + { url = "https://files.pythonhosted.org/packages/89/3a/adfb68558fa815cbc29747b553bc833d2150228f251b127f1ce97e48547c/coverage-7.13.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ecae9737b72408d6a950f7e525f30aca12d4bd8dd95e37342e5beb3a2a8c4f71", size = 252754, upload-time = "2026-02-09T12:58:21.064Z" }, + { url = "https://files.pythonhosted.org/packages/32/b1/540d0c27c4e748bd3cd0bd001076ee416eda993c2bae47a73b7cc9357931/coverage-7.13.4-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:ae4578f8528569d3cf303fef2ea569c7f4c4059a38c8667ccef15c6e1f118aa5", size = 250720, upload-time = "2026-02-09T12:58:22.622Z" }, + { url = "https://files.pythonhosted.org/packages/c7/95/383609462b3ffb1fe133014a7c84fc0dd01ed55ac6140fa1093b5af7ebb1/coverage-7.13.4-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:6fdef321fdfbb30a197efa02d48fcd9981f0d8ad2ae8903ac318adc653f5df98", size = 254994, upload-time = "2026-02-09T12:58:24.548Z" }, + { url = "https://files.pythonhosted.org/packages/f7/ba/1761138e86c81680bfc3c49579d66312865457f9fe405b033184e5793cb3/coverage-7.13.4-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:2b0f6ccf3dbe577170bebfce1318707d0e8c3650003cb4b3a9dd744575daa8b5", size = 250531, upload-time = "2026-02-09T12:58:26.271Z" }, + { url = "https://files.pythonhosted.org/packages/f8/8e/05900df797a9c11837ab59c4d6fe94094e029582aab75c3309a93e6fb4e3/coverage-7.13.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:75fcd519f2a5765db3f0e391eb3b7d150cce1a771bf4c9f861aeab86c767a3c0", size = 252189, upload-time = "2026-02-09T12:58:27.807Z" }, + { url = "https://files.pythonhosted.org/packages/00/bd/29c9f2db9ea4ed2738b8a9508c35626eb205d51af4ab7bf56a21a2e49926/coverage-7.13.4-cp314-cp314-win32.whl", hash = "sha256:8e798c266c378da2bd819b0677df41ab46d78065fb2a399558f3f6cae78b2fbb", size = 222258, upload-time = "2026-02-09T12:58:29.441Z" }, + { url = "https://files.pythonhosted.org/packages/a7/4d/1f8e723f6829977410efeb88f73673d794075091c8c7c18848d273dc9d73/coverage-7.13.4-cp314-cp314-win_amd64.whl", hash = "sha256:245e37f664d89861cf2329c9afa2c1fe9e6d4e1a09d872c947e70718aeeac505", size = 223073, upload-time = "2026-02-09T12:58:31.026Z" }, + { url = "https://files.pythonhosted.org/packages/51/5b/84100025be913b44e082ea32abcf1afbf4e872f5120b7a1cab1d331b1e13/coverage-7.13.4-cp314-cp314-win_arm64.whl", hash = "sha256:ad27098a189e5838900ce4c2a99f2fe42a0bf0c2093c17c69b45a71579e8d4a2", size = 221638, upload-time = "2026-02-09T12:58:32.599Z" }, + { url = "https://files.pythonhosted.org/packages/a7/e4/c884a405d6ead1370433dad1e3720216b4f9fd8ef5b64bfd984a2a60a11a/coverage-7.13.4-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:85480adfb35ffc32d40918aad81b89c69c9cc5661a9b8a81476d3e645321a056", size = 220246, upload-time = "2026-02-09T12:58:34.181Z" }, + { url = "https://files.pythonhosted.org/packages/81/5c/4d7ed8b23b233b0fffbc9dfec53c232be2e695468523242ea9fd30f97ad2/coverage-7.13.4-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:79be69cf7f3bf9b0deeeb062eab7ac7f36cd4cc4c4dd694bd28921ba4d8596cc", size = 220514, upload-time = "2026-02-09T12:58:35.704Z" }, + { url = "https://files.pythonhosted.org/packages/2f/6f/3284d4203fd2f28edd73034968398cd2d4cb04ab192abc8cff007ea35679/coverage-7.13.4-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:caa421e2684e382c5d8973ac55e4f36bed6821a9bad5c953494de960c74595c9", size = 261877, upload-time = "2026-02-09T12:58:37.864Z" }, + { url = "https://files.pythonhosted.org/packages/09/aa/b672a647bbe1556a85337dc95bfd40d146e9965ead9cc2fe81bde1e5cbce/coverage-7.13.4-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:14375934243ee05f56c45393fe2ce81fe5cc503c07cee2bdf1725fb8bef3ffaf", size = 264004, upload-time = "2026-02-09T12:58:39.492Z" }, + { url = "https://files.pythonhosted.org/packages/79/a1/aa384dbe9181f98bba87dd23dda436f0c6cf2e148aecbb4e50fc51c1a656/coverage-7.13.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:25a41c3104d08edb094d9db0d905ca54d0cd41c928bb6be3c4c799a54753af55", size = 266408, upload-time = "2026-02-09T12:58:41.852Z" }, + { url = "https://files.pythonhosted.org/packages/53/5e/5150bf17b4019bc600799f376bb9606941e55bd5a775dc1e096b6ffea952/coverage-7.13.4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6f01afcff62bf9a08fb32b2c1d6e924236c0383c02c790732b6537269e466a72", size = 267544, upload-time = "2026-02-09T12:58:44.093Z" }, + { url = "https://files.pythonhosted.org/packages/e0/ed/f1de5c675987a4a7a672250d2c5c9d73d289dbf13410f00ed7181d8017dd/coverage-7.13.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:eb9078108fbf0bcdde37c3f4779303673c2fa1fe8f7956e68d447d0dd426d38a", size = 260980, upload-time = "2026-02-09T12:58:45.721Z" }, + { url = "https://files.pythonhosted.org/packages/b3/e3/fe758d01850aa172419a6743fe76ba8b92c29d181d4f676ffe2dae2ba631/coverage-7.13.4-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:0e086334e8537ddd17e5f16a344777c1ab8194986ec533711cbe6c41cde841b6", size = 263871, upload-time = "2026-02-09T12:58:47.334Z" }, + { url = "https://files.pythonhosted.org/packages/b6/76/b829869d464115e22499541def9796b25312b8cf235d3bb00b39f1675395/coverage-7.13.4-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:725d985c5ab621268b2edb8e50dfe57633dc69bda071abc470fed55a14935fd3", size = 261472, upload-time = "2026-02-09T12:58:48.995Z" }, + { url = "https://files.pythonhosted.org/packages/14/9e/caedb1679e73e2f6ad240173f55218488bfe043e38da577c4ec977489915/coverage-7.13.4-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:3c06f0f1337c667b971ca2f975523347e63ec5e500b9aa5882d91931cd3ef750", size = 265210, upload-time = "2026-02-09T12:58:51.178Z" }, + { url = "https://files.pythonhosted.org/packages/3a/10/0dd02cb009b16ede425b49ec344aba13a6ae1dc39600840ea6abcb085ac4/coverage-7.13.4-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:590c0ed4bf8e85f745e6b805b2e1c457b2e33d5255dd9729743165253bc9ad39", size = 260319, upload-time = "2026-02-09T12:58:53.081Z" }, + { url = "https://files.pythonhosted.org/packages/92/8e/234d2c927af27c6d7a5ffad5bd2cf31634c46a477b4c7adfbfa66baf7ebb/coverage-7.13.4-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:eb30bf180de3f632cd043322dad5751390e5385108b2807368997d1a92a509d0", size = 262638, upload-time = "2026-02-09T12:58:55.258Z" }, + { url = "https://files.pythonhosted.org/packages/2f/64/e5547c8ff6964e5965c35a480855911b61509cce544f4d442caa759a0702/coverage-7.13.4-cp314-cp314t-win32.whl", hash = "sha256:c4240e7eded42d131a2d2c4dec70374b781b043ddc79a9de4d55ca71f8e98aea", size = 223040, upload-time = "2026-02-09T12:58:56.936Z" }, + { url = "https://files.pythonhosted.org/packages/c7/96/38086d58a181aac86d503dfa9c47eb20715a79c3e3acbdf786e92e5c09a8/coverage-7.13.4-cp314-cp314t-win_amd64.whl", hash = "sha256:4c7d3cc01e7350f2f0f6f7036caaf5673fb56b6998889ccfe9e1c1fe75a9c932", size = 224148, upload-time = "2026-02-09T12:58:58.645Z" }, + { url = "https://files.pythonhosted.org/packages/ce/72/8d10abd3740a0beb98c305e0c3faf454366221c0f37a8bcf8f60020bb65a/coverage-7.13.4-cp314-cp314t-win_arm64.whl", hash = "sha256:23e3f687cf945070d1c90f85db66d11e3025665d8dafa831301a0e0038f3db9b", size = 222172, upload-time = "2026-02-09T12:59:00.396Z" }, + { url = "https://files.pythonhosted.org/packages/0d/4a/331fe2caf6799d591109bb9c08083080f6de90a823695d412a935622abb2/coverage-7.13.4-py3-none-any.whl", hash = "sha256:1af1641e57cf7ba1bd67d677c9abdbcd6cc2ab7da3bca7fa1e2b7e50e65f2ad0", size = 211242, upload-time = "2026-02-09T12:59:02.032Z" }, +] + +[package.optional-dependencies] +toml = [ + { name = "tomli", marker = "python_full_version <= '3.11'" }, +] + +[[package]] +name = "cycler" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615, upload-time = "2023-10-07T05:32:18.335Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321, upload-time = "2023-10-07T05:32:16.783Z" }, +] + +[[package]] +name = "fonttools" +version = "4.62.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5a/96/686339e0fda8142b7ebed39af53f4a5694602a729662f42a6209e3be91d0/fonttools-4.62.0.tar.gz", hash = "sha256:0dc477c12b8076b4eb9af2e440421b0433ffa9e1dcb39e0640a6c94665ed1098", size = 3579521, upload-time = "2026-03-09T16:50:06.217Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/33/63d79ca41020dd460b51f1e0f58ad1ff0a36b7bcbdf8f3971d52836581e9/fonttools-4.62.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:196cafef9aeec5258425bd31a4e9a414b2ee0d1557bca184d7923d3d3bcd90f9", size = 2870816, upload-time = "2026-03-09T16:48:32.39Z" }, + { url = "https://files.pythonhosted.org/packages/c0/7a/9aeec114bc9fc00d757a41f092f7107863d372e684a5b5724c043654477c/fonttools-4.62.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:153afc3012ff8761b1733e8fbe5d98623409774c44ffd88fbcb780e240c11d13", size = 2416127, upload-time = "2026-03-09T16:48:34.627Z" }, + { url = "https://files.pythonhosted.org/packages/5a/71/12cfd8ae0478b7158ffa8850786781f67e73c00fd897ef9d053415c5f88b/fonttools-4.62.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:13b663fb197334de84db790353d59da2a7288fd14e9be329f5debc63ec0500a5", size = 5100678, upload-time = "2026-03-09T16:48:36.454Z" }, + { url = "https://files.pythonhosted.org/packages/8a/d7/8e4845993ee233c2023d11babe9b3dae7d30333da1d792eeccebcb77baab/fonttools-4.62.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:591220d5333264b1df0d3285adbdfe2af4f6a45bbf9ca2b485f97c9f577c49ff", size = 5070859, upload-time = "2026-03-09T16:48:38.786Z" }, + { url = "https://files.pythonhosted.org/packages/ae/a0/287ae04cd883a52e7bb1d92dfc4997dcffb54173761c751106845fa9e316/fonttools-4.62.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:579f35c121528a50c96bf6fcb6a393e81e7f896d4326bf40e379f1c971603db9", size = 5076689, upload-time = "2026-03-09T16:48:41.886Z" }, + { url = "https://files.pythonhosted.org/packages/6d/4e/a2377ad26c36fcd3e671a1c316ea5ed83107de1588e2d897a98349363bc7/fonttools-4.62.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:44956b003151d5a289eba6c71fe590d63509267c37e26de1766ba15d9c589582", size = 5202053, upload-time = "2026-03-09T16:48:43.867Z" }, + { url = "https://files.pythonhosted.org/packages/44/2e/ad0472e69b02f83dc88983a9910d122178461606404be5b4838af6d1744a/fonttools-4.62.0-cp311-cp311-win32.whl", hash = "sha256:42c7848fa8836ab92c23b1617c407a905642521ff2d7897fe2bf8381530172f1", size = 2292852, upload-time = "2026-03-09T16:48:46.962Z" }, + { url = "https://files.pythonhosted.org/packages/77/ce/f5a4c42c117f8113ce04048053c128d17426751a508f26398110c993a074/fonttools-4.62.0-cp311-cp311-win_amd64.whl", hash = "sha256:4da779e8f342a32856075ddb193b2a024ad900bc04ecb744014c32409ae871ed", size = 2344367, upload-time = "2026-03-09T16:48:48.818Z" }, + { url = "https://files.pythonhosted.org/packages/ab/9d/7ad1ffc080619f67d0b1e0fa6a0578f0be077404f13fd8e448d1616a94a3/fonttools-4.62.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:22bde4dc12a9e09b5ced77f3b5053d96cf10c4976c6ac0dee293418ef289d221", size = 2870004, upload-time = "2026-03-09T16:48:50.837Z" }, + { url = "https://files.pythonhosted.org/packages/4d/8b/ba59069a490f61b737e064c3129453dbd28ee38e81d56af0d04d7e6b4de4/fonttools-4.62.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7199c73b326bad892f1cb53ffdd002128bfd58a89b8f662204fbf1daf8d62e85", size = 2414662, upload-time = "2026-03-09T16:48:53.295Z" }, + { url = "https://files.pythonhosted.org/packages/8c/8c/c52a4310de58deeac7e9ea800892aec09b00bb3eb0c53265b31ec02be115/fonttools-4.62.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d732938633681d6e2324e601b79e93f7f72395ec8681f9cdae5a8c08bc167e72", size = 5032975, upload-time = "2026-03-09T16:48:55.718Z" }, + { url = "https://files.pythonhosted.org/packages/0b/a1/d16318232964d786907b9b3613b8409f74cf0be2da400854509d3a864e43/fonttools-4.62.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:31a804c16d76038cc4e3826e07678efb0a02dc4f15396ea8e07088adbfb2578e", size = 4988544, upload-time = "2026-03-09T16:48:57.715Z" }, + { url = "https://files.pythonhosted.org/packages/b2/8d/7e745ca3e65852adc5e52a83dc213fe1b07d61cb5b394970fcd4b1199d1e/fonttools-4.62.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:090e74ac86e68c20150e665ef8e7e0c20cb9f8b395302c9419fa2e4d332c3b51", size = 4971296, upload-time = "2026-03-09T16:48:59.678Z" }, + { url = "https://files.pythonhosted.org/packages/e6/d4/b717a4874175146029ca1517e85474b1af80c9d9a306fc3161e71485eea5/fonttools-4.62.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8f086120e8be9e99ca1288aa5ce519833f93fe0ec6ebad2380c1dee18781f0b5", size = 5122503, upload-time = "2026-03-09T16:49:02.464Z" }, + { url = "https://files.pythonhosted.org/packages/cb/4b/92cfcba4bf8373f51c49c5ae4b512ead6fbda7d61a0e8c35a369d0db40a0/fonttools-4.62.0-cp312-cp312-win32.whl", hash = "sha256:37a73e5e38fd05c637daede6ffed5f3496096be7df6e4a3198d32af038f87527", size = 2281060, upload-time = "2026-03-09T16:49:04.385Z" }, + { url = "https://files.pythonhosted.org/packages/cd/06/cc96468781a4dc8ae2f14f16f32b32f69bde18cb9384aad27ccc7adf76f7/fonttools-4.62.0-cp312-cp312-win_amd64.whl", hash = "sha256:658ab837c878c4d2a652fcbb319547ea41693890e6434cf619e66f79387af3b8", size = 2331193, upload-time = "2026-03-09T16:49:06.598Z" }, + { url = "https://files.pythonhosted.org/packages/82/c7/985c1670aa6d82ef270f04cde11394c168f2002700353bd2bde405e59b8f/fonttools-4.62.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:274c8b8a87e439faf565d3bcd3f9f9e31bca7740755776a4a90a4bfeaa722efa", size = 2864929, upload-time = "2026-03-09T16:49:09.331Z" }, + { url = "https://files.pythonhosted.org/packages/c1/dc/c409c8ceec0d3119e9ab0b7b1a2e3c76d1f4d66e4a9db5c59e6b7652e7df/fonttools-4.62.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:93e27131a5a0ae82aaadcffe309b1bae195f6711689722af026862bede05c07c", size = 2412586, upload-time = "2026-03-09T16:49:11.378Z" }, + { url = "https://files.pythonhosted.org/packages/5f/ac/8e300dbf7b4d135287c261ffd92ede02d9f48f0d2db14665fbc8b059588a/fonttools-4.62.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:83c6524c5b93bad9c2939d88e619fedc62e913c19e673f25d5ab74e7a5d074e5", size = 5013708, upload-time = "2026-03-09T16:49:14.063Z" }, + { url = "https://files.pythonhosted.org/packages/fb/bc/60d93477b653eeb1ddf5f9ec34be689b79234d82dbdded269ac0252715b8/fonttools-4.62.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:106aec9226f9498fc5345125ff7200842c01eda273ae038f5049b0916907acee", size = 4964355, upload-time = "2026-03-09T16:49:16.515Z" }, + { url = "https://files.pythonhosted.org/packages/cb/eb/6dc62bcc3c3598c28a3ecb77e69018869c3e109bd83031d4973c059d318b/fonttools-4.62.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:15d86b96c79013320f13bc1b15f94789edb376c0a2d22fb6088f33637e8dfcbc", size = 4953472, upload-time = "2026-03-09T16:49:18.494Z" }, + { url = "https://files.pythonhosted.org/packages/82/b3/3af7592d9b254b7b7fec018135f8776bfa0d1ad335476c2791b1334dc5e4/fonttools-4.62.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4f16c07e5250d5d71d0f990a59460bc5620c3cc456121f2cfb5b60475699905f", size = 5094701, upload-time = "2026-03-09T16:49:21.67Z" }, + { url = "https://files.pythonhosted.org/packages/31/3d/976645583ab567d3ee75ff87b33aa1330fa2baeeeae5fc46210b4274dd45/fonttools-4.62.0-cp313-cp313-win32.whl", hash = "sha256:d31558890f3fa00d4f937d12708f90c7c142c803c23eaeb395a71f987a77ebe3", size = 2279710, upload-time = "2026-03-09T16:49:23.812Z" }, + { url = "https://files.pythonhosted.org/packages/f5/7a/e25245a30457595740041dba9d0ea8ec1b2517f2f1a6a741f15eba1a4edc/fonttools-4.62.0-cp313-cp313-win_amd64.whl", hash = "sha256:6826a5aa53fb6def8a66bf423939745f415546c4e92478a7c531b8b6282b6c3b", size = 2330291, upload-time = "2026-03-09T16:49:26.237Z" }, + { url = "https://files.pythonhosted.org/packages/1a/64/61f69298aa6e7c363dcf00dd6371a654676900abe27d1effd1a74b43e5d0/fonttools-4.62.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:4fa5a9c716e2f75ef34b5a5c2ca0ee4848d795daa7e6792bf30fd4abf8993449", size = 2864222, upload-time = "2026-03-09T16:49:28.285Z" }, + { url = "https://files.pythonhosted.org/packages/c6/57/6b08756fe4455336b1fe160ab3c11fccc90768ccb6ee03fb0b45851aace4/fonttools-4.62.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:625f5cbeb0b8f4e42343eaeb4bc2786718ddd84760a2f5e55fdd3db049047c00", size = 2410674, upload-time = "2026-03-09T16:49:30.504Z" }, + { url = "https://files.pythonhosted.org/packages/6f/86/db65b63bb1b824b63e602e9be21b18741ddc99bcf5a7850f9181159ae107/fonttools-4.62.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6247e58b96b982709cd569a91a2ba935d406dccf17b6aa615afaed37ac3856aa", size = 4999387, upload-time = "2026-03-09T16:49:32.593Z" }, + { url = "https://files.pythonhosted.org/packages/86/c8/c6669e42d2f4efd60d38a3252cebbb28851f968890efb2b9b15f9d1092b0/fonttools-4.62.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:840632ea9c1eab7b7f01c369e408c0721c287dfd7500ab937398430689852fd1", size = 4912506, upload-time = "2026-03-09T16:49:34.927Z" }, + { url = "https://files.pythonhosted.org/packages/2e/49/0ae552aa098edd0ec548413fbf818f52ceb70535016215094a5ce9bf8f70/fonttools-4.62.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:28a9ea2a7467a816d1bec22658b0cce4443ac60abac3e293bdee78beb74588f3", size = 4951202, upload-time = "2026-03-09T16:49:37.1Z" }, + { url = "https://files.pythonhosted.org/packages/71/65/ae38fc8a4cea6f162d74cf11f58e9aeef1baa7d0e3d1376dabd336c129e5/fonttools-4.62.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5ae611294f768d413949fd12693a8cba0e6332fbc1e07aba60121be35eac68d0", size = 5060758, upload-time = "2026-03-09T16:49:39.464Z" }, + { url = "https://files.pythonhosted.org/packages/db/3d/bb797496f35c60544cd5af71ffa5aad62df14ef7286908d204cb5c5096fe/fonttools-4.62.0-cp314-cp314-win32.whl", hash = "sha256:273acb61f316d07570a80ed5ff0a14a23700eedbec0ad968b949abaa4d3f6bb5", size = 2283496, upload-time = "2026-03-09T16:49:42.448Z" }, + { url = "https://files.pythonhosted.org/packages/2e/9f/91081ffe5881253177c175749cce5841f5ec6e931f5d52f4a817207b7429/fonttools-4.62.0-cp314-cp314-win_amd64.whl", hash = "sha256:a5f974006d14f735c6c878fc4b117ad031dc93638ddcc450ca69f8fd64d5e104", size = 2335426, upload-time = "2026-03-09T16:49:44.228Z" }, + { url = "https://files.pythonhosted.org/packages/f8/65/f47f9b3db1ec156a1f222f1089ba076b2cc9ee1d024a8b0a60c54258517e/fonttools-4.62.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:0361a7d41d86937f1f752717c19f719d0fde064d3011038f9f19bdf5fc2f5c95", size = 2947079, upload-time = "2026-03-09T16:49:46.471Z" }, + { url = "https://files.pythonhosted.org/packages/52/73/bc62e5058a0c22cf02b1e0169ef0c3ca6c3247216d719f95bead3c05a991/fonttools-4.62.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:d4108c12773b3c97aa592311557c405d5b4fc03db2b969ed928fcf68e7b3c887", size = 2448802, upload-time = "2026-03-09T16:49:48.328Z" }, + { url = "https://files.pythonhosted.org/packages/2b/df/bfaa0e845884935355670e6e68f137185ab87295f8bc838db575e4a66064/fonttools-4.62.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b448075f32708e8fb377fe7687f769a5f51a027172c591ba9a58693631b077a8", size = 5137378, upload-time = "2026-03-09T16:49:50.223Z" }, + { url = "https://files.pythonhosted.org/packages/32/32/04f616979a18b48b52e634988b93d847b6346260faf85ecccaf7e2e9057f/fonttools-4.62.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e5f1fa8cc9f1a56a3e33ee6b954d6d9235e6b9d11eb7a6c9dfe2c2f829dc24db", size = 4920714, upload-time = "2026-03-09T16:49:53.172Z" }, + { url = "https://files.pythonhosted.org/packages/3b/2e/274e16689c1dfee5c68302cd7c444213cfddd23cf4620374419625037ec6/fonttools-4.62.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:f8c8ea812f82db1e884b9cdb663080453e28f0f9a1f5027a5adb59c4cc8d38d1", size = 5016012, upload-time = "2026-03-09T16:49:55.762Z" }, + { url = "https://files.pythonhosted.org/packages/7f/0c/b08117270626e7117ac2f89d732fdd4386ec37d2ab3a944462d29e6f89a1/fonttools-4.62.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:03c6068adfdc67c565d217e92386b1cdd951abd4240d65180cec62fa74ba31b2", size = 5042766, upload-time = "2026-03-09T16:49:57.726Z" }, + { url = "https://files.pythonhosted.org/packages/11/83/a48b73e54efa272ee65315a6331b30a9b3a98733310bc11402606809c50e/fonttools-4.62.0-cp314-cp314t-win32.whl", hash = "sha256:d28d5baacb0017d384df14722a63abe6e0230d8ce642b1615a27d78ffe3bc983", size = 2347785, upload-time = "2026-03-09T16:49:59.698Z" }, + { url = "https://files.pythonhosted.org/packages/f8/27/c67eab6dc3525bdc39586511b1b3d7161e972dacc0f17476dbaf932e708b/fonttools-4.62.0-cp314-cp314t-win_amd64.whl", hash = "sha256:3f9e20c4618f1e04190c802acae6dc337cb6db9fa61e492fd97cd5c5a9ff6d07", size = 2413914, upload-time = "2026-03-09T16:50:02.251Z" }, + { url = "https://files.pythonhosted.org/packages/9c/57/c2487c281dde03abb2dec244fd67059b8d118bd30a653cbf69e94084cb23/fonttools-4.62.0-py3-none-any.whl", hash = "sha256:75064f19a10c50c74b336aa5ebe7b1f89fd0fb5255807bfd4b0c6317098f4af3", size = 1152427, upload-time = "2026-03-09T16:50:04.074Z" }, +] + [[package]] name = "idna" version = "3.11" @@ -132,82 +382,222 @@ wheels = [ ] [[package]] -name = "numpy" -version = "2.2.6" +name = "igraph" +version = "1.0.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.11'", -] -sdist = { url = "https://files.pythonhosted.org/packages/76/21/7d2a95e4bba9dc13d043ee156a356c0a8f0c6309dff6b21b4d71a073b8a8/numpy-2.2.6.tar.gz", hash = "sha256:e29554e2bef54a90aa5cc07da6ce955accb83f21ab5de01a62c8478897b264fd", size = 20276440, upload-time = "2025-05-17T22:38:04.611Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9a/3e/ed6db5be21ce87955c0cbd3009f2803f59fa08df21b5df06862e2d8e2bdd/numpy-2.2.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b412caa66f72040e6d268491a59f2c43bf03eb6c96dd8f0307829feb7fa2b6fb", size = 21165245, upload-time = "2025-05-17T21:27:58.555Z" }, - { url = "https://files.pythonhosted.org/packages/22/c2/4b9221495b2a132cc9d2eb862e21d42a009f5a60e45fc44b00118c174bff/numpy-2.2.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8e41fd67c52b86603a91c1a505ebaef50b3314de0213461c7a6e99c9a3beff90", size = 14360048, upload-time = "2025-05-17T21:28:21.406Z" }, - { url = "https://files.pythonhosted.org/packages/fd/77/dc2fcfc66943c6410e2bf598062f5959372735ffda175b39906d54f02349/numpy-2.2.6-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:37e990a01ae6ec7fe7fa1c26c55ecb672dd98b19c3d0e1d1f326fa13cb38d163", size = 5340542, upload-time = "2025-05-17T21:28:30.931Z" }, - { url = "https://files.pythonhosted.org/packages/7a/4f/1cb5fdc353a5f5cc7feb692db9b8ec2c3d6405453f982435efc52561df58/numpy-2.2.6-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:5a6429d4be8ca66d889b7cf70f536a397dc45ba6faeb5f8c5427935d9592e9cf", size = 6878301, upload-time = "2025-05-17T21:28:41.613Z" }, - { url = "https://files.pythonhosted.org/packages/eb/17/96a3acd228cec142fcb8723bd3cc39c2a474f7dcf0a5d16731980bcafa95/numpy-2.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:efd28d4e9cd7d7a8d39074a4d44c63eda73401580c5c76acda2ce969e0a38e83", size = 14297320, upload-time = "2025-05-17T21:29:02.78Z" }, - { url = "https://files.pythonhosted.org/packages/b4/63/3de6a34ad7ad6646ac7d2f55ebc6ad439dbbf9c4370017c50cf403fb19b5/numpy-2.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc7b73d02efb0e18c000e9ad8b83480dfcd5dfd11065997ed4c6747470ae8915", size = 16801050, upload-time = "2025-05-17T21:29:27.675Z" }, - { url = "https://files.pythonhosted.org/packages/07/b6/89d837eddef52b3d0cec5c6ba0456c1bf1b9ef6a6672fc2b7873c3ec4e2e/numpy-2.2.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:74d4531beb257d2c3f4b261bfb0fc09e0f9ebb8842d82a7b4209415896adc680", size = 15807034, upload-time = "2025-05-17T21:29:51.102Z" }, - { url = "https://files.pythonhosted.org/packages/01/c8/dc6ae86e3c61cfec1f178e5c9f7858584049b6093f843bca541f94120920/numpy-2.2.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8fc377d995680230e83241d8a96def29f204b5782f371c532579b4f20607a289", size = 18614185, upload-time = "2025-05-17T21:30:18.703Z" }, - { url = "https://files.pythonhosted.org/packages/5b/c5/0064b1b7e7c89137b471ccec1fd2282fceaae0ab3a9550f2568782d80357/numpy-2.2.6-cp310-cp310-win32.whl", hash = "sha256:b093dd74e50a8cba3e873868d9e93a85b78e0daf2e98c6797566ad8044e8363d", size = 6527149, upload-time = "2025-05-17T21:30:29.788Z" }, - { url = "https://files.pythonhosted.org/packages/a3/dd/4b822569d6b96c39d1215dbae0582fd99954dcbcf0c1a13c61783feaca3f/numpy-2.2.6-cp310-cp310-win_amd64.whl", hash = "sha256:f0fd6321b839904e15c46e0d257fdd101dd7f530fe03fd6359c1ea63738703f3", size = 12904620, upload-time = "2025-05-17T21:30:48.994Z" }, - { url = "https://files.pythonhosted.org/packages/da/a8/4f83e2aa666a9fbf56d6118faaaf5f1974d456b1823fda0a176eff722839/numpy-2.2.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f9f1adb22318e121c5c69a09142811a201ef17ab257a1e66ca3025065b7f53ae", size = 21176963, upload-time = "2025-05-17T21:31:19.36Z" }, - { url = "https://files.pythonhosted.org/packages/b3/2b/64e1affc7972decb74c9e29e5649fac940514910960ba25cd9af4488b66c/numpy-2.2.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c820a93b0255bc360f53eca31a0e676fd1101f673dda8da93454a12e23fc5f7a", size = 14406743, upload-time = "2025-05-17T21:31:41.087Z" }, - { url = "https://files.pythonhosted.org/packages/4a/9f/0121e375000b5e50ffdd8b25bf78d8e1a5aa4cca3f185d41265198c7b834/numpy-2.2.6-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:3d70692235e759f260c3d837193090014aebdf026dfd167834bcba43e30c2a42", size = 5352616, upload-time = "2025-05-17T21:31:50.072Z" }, - { url = "https://files.pythonhosted.org/packages/31/0d/b48c405c91693635fbe2dcd7bc84a33a602add5f63286e024d3b6741411c/numpy-2.2.6-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:481b49095335f8eed42e39e8041327c05b0f6f4780488f61286ed3c01368d491", size = 6889579, upload-time = "2025-05-17T21:32:01.712Z" }, - { url = "https://files.pythonhosted.org/packages/52/b8/7f0554d49b565d0171eab6e99001846882000883998e7b7d9f0d98b1f934/numpy-2.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b64d8d4d17135e00c8e346e0a738deb17e754230d7e0810ac5012750bbd85a5a", size = 14312005, upload-time = "2025-05-17T21:32:23.332Z" }, - { url = "https://files.pythonhosted.org/packages/b3/dd/2238b898e51bd6d389b7389ffb20d7f4c10066d80351187ec8e303a5a475/numpy-2.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba10f8411898fc418a521833e014a77d3ca01c15b0c6cdcce6a0d2897e6dbbdf", size = 16821570, upload-time = "2025-05-17T21:32:47.991Z" }, - { url = "https://files.pythonhosted.org/packages/83/6c/44d0325722cf644f191042bf47eedad61c1e6df2432ed65cbe28509d404e/numpy-2.2.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:bd48227a919f1bafbdda0583705e547892342c26fb127219d60a5c36882609d1", size = 15818548, upload-time = "2025-05-17T21:33:11.728Z" }, - { url = "https://files.pythonhosted.org/packages/ae/9d/81e8216030ce66be25279098789b665d49ff19eef08bfa8cb96d4957f422/numpy-2.2.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9551a499bf125c1d4f9e250377c1ee2eddd02e01eac6644c080162c0c51778ab", size = 18620521, upload-time = "2025-05-17T21:33:39.139Z" }, - { url = "https://files.pythonhosted.org/packages/6a/fd/e19617b9530b031db51b0926eed5345ce8ddc669bb3bc0044b23e275ebe8/numpy-2.2.6-cp311-cp311-win32.whl", hash = "sha256:0678000bb9ac1475cd454c6b8c799206af8107e310843532b04d49649c717a47", size = 6525866, upload-time = "2025-05-17T21:33:50.273Z" }, - { url = "https://files.pythonhosted.org/packages/31/0a/f354fb7176b81747d870f7991dc763e157a934c717b67b58456bc63da3df/numpy-2.2.6-cp311-cp311-win_amd64.whl", hash = "sha256:e8213002e427c69c45a52bbd94163084025f533a55a59d6f9c5b820774ef3303", size = 12907455, upload-time = "2025-05-17T21:34:09.135Z" }, - { url = "https://files.pythonhosted.org/packages/82/5d/c00588b6cf18e1da539b45d3598d3557084990dcc4331960c15ee776ee41/numpy-2.2.6-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:41c5a21f4a04fa86436124d388f6ed60a9343a6f767fced1a8a71c3fbca038ff", size = 20875348, upload-time = "2025-05-17T21:34:39.648Z" }, - { url = "https://files.pythonhosted.org/packages/66/ee/560deadcdde6c2f90200450d5938f63a34b37e27ebff162810f716f6a230/numpy-2.2.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:de749064336d37e340f640b05f24e9e3dd678c57318c7289d222a8a2f543e90c", size = 14119362, upload-time = "2025-05-17T21:35:01.241Z" }, - { url = "https://files.pythonhosted.org/packages/3c/65/4baa99f1c53b30adf0acd9a5519078871ddde8d2339dc5a7fde80d9d87da/numpy-2.2.6-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:894b3a42502226a1cac872f840030665f33326fc3dac8e57c607905773cdcde3", size = 5084103, upload-time = "2025-05-17T21:35:10.622Z" }, - { url = "https://files.pythonhosted.org/packages/cc/89/e5a34c071a0570cc40c9a54eb472d113eea6d002e9ae12bb3a8407fb912e/numpy-2.2.6-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:71594f7c51a18e728451bb50cc60a3ce4e6538822731b2933209a1f3614e9282", size = 6625382, upload-time = "2025-05-17T21:35:21.414Z" }, - { url = "https://files.pythonhosted.org/packages/f8/35/8c80729f1ff76b3921d5c9487c7ac3de9b2a103b1cd05e905b3090513510/numpy-2.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2618db89be1b4e05f7a1a847a9c1c0abd63e63a1607d892dd54668dd92faf87", size = 14018462, upload-time = "2025-05-17T21:35:42.174Z" }, - { url = "https://files.pythonhosted.org/packages/8c/3d/1e1db36cfd41f895d266b103df00ca5b3cbe965184df824dec5c08c6b803/numpy-2.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd83c01228a688733f1ded5201c678f0c53ecc1006ffbc404db9f7a899ac6249", size = 16527618, upload-time = "2025-05-17T21:36:06.711Z" }, - { url = "https://files.pythonhosted.org/packages/61/c6/03ed30992602c85aa3cd95b9070a514f8b3c33e31124694438d88809ae36/numpy-2.2.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:37c0ca431f82cd5fa716eca9506aefcabc247fb27ba69c5062a6d3ade8cf8f49", size = 15505511, upload-time = "2025-05-17T21:36:29.965Z" }, - { url = "https://files.pythonhosted.org/packages/b7/25/5761d832a81df431e260719ec45de696414266613c9ee268394dd5ad8236/numpy-2.2.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fe27749d33bb772c80dcd84ae7e8df2adc920ae8297400dabec45f0dedb3f6de", size = 18313783, upload-time = "2025-05-17T21:36:56.883Z" }, - { url = "https://files.pythonhosted.org/packages/57/0a/72d5a3527c5ebffcd47bde9162c39fae1f90138c961e5296491ce778e682/numpy-2.2.6-cp312-cp312-win32.whl", hash = "sha256:4eeaae00d789f66c7a25ac5f34b71a7035bb474e679f410e5e1a94deb24cf2d4", size = 6246506, upload-time = "2025-05-17T21:37:07.368Z" }, - { url = "https://files.pythonhosted.org/packages/36/fa/8c9210162ca1b88529ab76b41ba02d433fd54fecaf6feb70ef9f124683f1/numpy-2.2.6-cp312-cp312-win_amd64.whl", hash = "sha256:c1f9540be57940698ed329904db803cf7a402f3fc200bfe599334c9bd84a40b2", size = 12614190, upload-time = "2025-05-17T21:37:26.213Z" }, - { url = "https://files.pythonhosted.org/packages/f9/5c/6657823f4f594f72b5471f1db1ab12e26e890bb2e41897522d134d2a3e81/numpy-2.2.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0811bb762109d9708cca4d0b13c4f67146e3c3b7cf8d34018c722adb2d957c84", size = 20867828, upload-time = "2025-05-17T21:37:56.699Z" }, - { url = "https://files.pythonhosted.org/packages/dc/9e/14520dc3dadf3c803473bd07e9b2bd1b69bc583cb2497b47000fed2fa92f/numpy-2.2.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:287cc3162b6f01463ccd86be154f284d0893d2b3ed7292439ea97eafa8170e0b", size = 14143006, upload-time = "2025-05-17T21:38:18.291Z" }, - { url = "https://files.pythonhosted.org/packages/4f/06/7e96c57d90bebdce9918412087fc22ca9851cceaf5567a45c1f404480e9e/numpy-2.2.6-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:f1372f041402e37e5e633e586f62aa53de2eac8d98cbfb822806ce4bbefcb74d", size = 5076765, upload-time = "2025-05-17T21:38:27.319Z" }, - { url = "https://files.pythonhosted.org/packages/73/ed/63d920c23b4289fdac96ddbdd6132e9427790977d5457cd132f18e76eae0/numpy-2.2.6-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:55a4d33fa519660d69614a9fad433be87e5252f4b03850642f88993f7b2ca566", size = 6617736, upload-time = "2025-05-17T21:38:38.141Z" }, - { url = "https://files.pythonhosted.org/packages/85/c5/e19c8f99d83fd377ec8c7e0cf627a8049746da54afc24ef0a0cb73d5dfb5/numpy-2.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f92729c95468a2f4f15e9bb94c432a9229d0d50de67304399627a943201baa2f", size = 14010719, upload-time = "2025-05-17T21:38:58.433Z" }, - { url = "https://files.pythonhosted.org/packages/19/49/4df9123aafa7b539317bf6d342cb6d227e49f7a35b99c287a6109b13dd93/numpy-2.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bc23a79bfabc5d056d106f9befb8d50c31ced2fbc70eedb8155aec74a45798f", size = 16526072, upload-time = "2025-05-17T21:39:22.638Z" }, - { url = "https://files.pythonhosted.org/packages/b2/6c/04b5f47f4f32f7c2b0e7260442a8cbcf8168b0e1a41ff1495da42f42a14f/numpy-2.2.6-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e3143e4451880bed956e706a3220b4e5cf6172ef05fcc397f6f36a550b1dd868", size = 15503213, upload-time = "2025-05-17T21:39:45.865Z" }, - { url = "https://files.pythonhosted.org/packages/17/0a/5cd92e352c1307640d5b6fec1b2ffb06cd0dabe7d7b8227f97933d378422/numpy-2.2.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b4f13750ce79751586ae2eb824ba7e1e8dba64784086c98cdbbcc6a42112ce0d", size = 18316632, upload-time = "2025-05-17T21:40:13.331Z" }, - { url = "https://files.pythonhosted.org/packages/f0/3b/5cba2b1d88760ef86596ad0f3d484b1cbff7c115ae2429678465057c5155/numpy-2.2.6-cp313-cp313-win32.whl", hash = "sha256:5beb72339d9d4fa36522fc63802f469b13cdbe4fdab4a288f0c441b74272ebfd", size = 6244532, upload-time = "2025-05-17T21:43:46.099Z" }, - { url = "https://files.pythonhosted.org/packages/cb/3b/d58c12eafcb298d4e6d0d40216866ab15f59e55d148a5658bb3132311fcf/numpy-2.2.6-cp313-cp313-win_amd64.whl", hash = "sha256:b0544343a702fa80c95ad5d3d608ea3599dd54d4632df855e4c8d24eb6ecfa1c", size = 12610885, upload-time = "2025-05-17T21:44:05.145Z" }, - { url = "https://files.pythonhosted.org/packages/6b/9e/4bf918b818e516322db999ac25d00c75788ddfd2d2ade4fa66f1f38097e1/numpy-2.2.6-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0bca768cd85ae743b2affdc762d617eddf3bcf8724435498a1e80132d04879e6", size = 20963467, upload-time = "2025-05-17T21:40:44Z" }, - { url = "https://files.pythonhosted.org/packages/61/66/d2de6b291507517ff2e438e13ff7b1e2cdbdb7cb40b3ed475377aece69f9/numpy-2.2.6-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:fc0c5673685c508a142ca65209b4e79ed6740a4ed6b2267dbba90f34b0b3cfda", size = 14225144, upload-time = "2025-05-17T21:41:05.695Z" }, - { url = "https://files.pythonhosted.org/packages/e4/25/480387655407ead912e28ba3a820bc69af9adf13bcbe40b299d454ec011f/numpy-2.2.6-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:5bd4fc3ac8926b3819797a7c0e2631eb889b4118a9898c84f585a54d475b7e40", size = 5200217, upload-time = "2025-05-17T21:41:15.903Z" }, - { url = "https://files.pythonhosted.org/packages/aa/4a/6e313b5108f53dcbf3aca0c0f3e9c92f4c10ce57a0a721851f9785872895/numpy-2.2.6-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:fee4236c876c4e8369388054d02d0e9bb84821feb1a64dd59e137e6511a551f8", size = 6712014, upload-time = "2025-05-17T21:41:27.321Z" }, - { url = "https://files.pythonhosted.org/packages/b7/30/172c2d5c4be71fdf476e9de553443cf8e25feddbe185e0bd88b096915bcc/numpy-2.2.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e1dda9c7e08dc141e0247a5b8f49cf05984955246a327d4c48bda16821947b2f", size = 14077935, upload-time = "2025-05-17T21:41:49.738Z" }, - { url = "https://files.pythonhosted.org/packages/12/fb/9e743f8d4e4d3c710902cf87af3512082ae3d43b945d5d16563f26ec251d/numpy-2.2.6-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f447e6acb680fd307f40d3da4852208af94afdfab89cf850986c3ca00562f4fa", size = 16600122, upload-time = "2025-05-17T21:42:14.046Z" }, - { url = "https://files.pythonhosted.org/packages/12/75/ee20da0e58d3a66f204f38916757e01e33a9737d0b22373b3eb5a27358f9/numpy-2.2.6-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:389d771b1623ec92636b0786bc4ae56abafad4a4c513d36a55dce14bd9ce8571", size = 15586143, upload-time = "2025-05-17T21:42:37.464Z" }, - { url = "https://files.pythonhosted.org/packages/76/95/bef5b37f29fc5e739947e9ce5179ad402875633308504a52d188302319c8/numpy-2.2.6-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8e9ace4a37db23421249ed236fdcdd457d671e25146786dfc96835cd951aa7c1", size = 18385260, upload-time = "2025-05-17T21:43:05.189Z" }, - { url = "https://files.pythonhosted.org/packages/09/04/f2f83279d287407cf36a7a8053a5abe7be3622a4363337338f2585e4afda/numpy-2.2.6-cp313-cp313t-win32.whl", hash = "sha256:038613e9fb8c72b0a41f025a7e4c3f0b7a1b5d768ece4796b674c8f3fe13efff", size = 6377225, upload-time = "2025-05-17T21:43:16.254Z" }, - { url = "https://files.pythonhosted.org/packages/67/0e/35082d13c09c02c011cf21570543d202ad929d961c02a147493cb0c2bdf5/numpy-2.2.6-cp313-cp313t-win_amd64.whl", hash = "sha256:6031dd6dfecc0cf9f668681a37648373bddd6421fff6c66ec1624eed0180ee06", size = 12771374, upload-time = "2025-05-17T21:43:35.479Z" }, - { url = "https://files.pythonhosted.org/packages/9e/3b/d94a75f4dbf1ef5d321523ecac21ef23a3cd2ac8b78ae2aac40873590229/numpy-2.2.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0b605b275d7bd0c640cad4e5d30fa701a8d59302e127e5f79138ad62762c3e3d", size = 21040391, upload-time = "2025-05-17T21:44:35.948Z" }, - { url = "https://files.pythonhosted.org/packages/17/f4/09b2fa1b58f0fb4f7c7963a1649c64c4d315752240377ed74d9cd878f7b5/numpy-2.2.6-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:7befc596a7dc9da8a337f79802ee8adb30a552a94f792b9c9d18c840055907db", size = 6786754, upload-time = "2025-05-17T21:44:47.446Z" }, - { url = "https://files.pythonhosted.org/packages/af/30/feba75f143bdc868a1cc3f44ccfa6c4b9ec522b36458e738cd00f67b573f/numpy-2.2.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce47521a4754c8f4593837384bd3424880629f718d87c5d44f8ed763edd63543", size = 16643476, upload-time = "2025-05-17T21:45:11.871Z" }, - { url = "https://files.pythonhosted.org/packages/37/48/ac2a9584402fb6c0cd5b5d1a91dcf176b15760130dd386bbafdbfe3640bf/numpy-2.2.6-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:d042d24c90c41b54fd506da306759e06e568864df8ec17ccc17e9e884634fd00", size = 12812666, upload-time = "2025-05-17T21:45:31.426Z" }, +dependencies = [ + { name = "texttable" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/23/be/56bef1919005b4caf1f71522b300d359f7faeb7ae93a3b0baa9b4f146a87/igraph-1.0.0.tar.gz", hash = "sha256:2414d0be2e4d77ee5357807d100974b40f6082bb1bb71988ec46cfb6728651ee", size = 5077105, upload-time = "2025-10-23T12:22:50.127Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a5/03/3278ad0ceb3ea0e84d8ae3a85bdded4d0e57853aeb802a200feb43847b93/igraph-1.0.0-cp39-abi3-macosx_10_15_x86_64.whl", hash = "sha256:c2cbc415e02523e5a241eecee82319080bf928a70b1ba299f3b3e25bf029b6d4", size = 2257415, upload-time = "2025-10-23T12:22:27.246Z" }, + { url = "https://files.pythonhosted.org/packages/0d/bc/6281ec7f9baaf71ee57c3b1748da2d3148d15d253e1a03006f204aa68ca5/igraph-1.0.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:1a27753cd80680a8f676c2d5a467aaa4a95e510b30748398ec4e4aeb982130e8", size = 2048555, upload-time = "2025-10-23T12:22:29.49Z" }, + { url = "https://files.pythonhosted.org/packages/2a/38/3cd6428a4ed4c09a56df05998438e7774fd1d799ee4fb8fc481674f5f7fc/igraph-1.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:a55dc3a2a4e3fc3eba42479910c1511bfc3ecb33cdf5f0406891fd85f14b5aee", size = 5314141, upload-time = "2025-10-23T12:22:31.023Z" }, + { url = "https://files.pythonhosted.org/packages/7d/da/dd2867c25adbb41563720f14b5fc895c98bf88be682a3faff4f7b3118d2a/igraph-1.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:2d04c2c76f686fb1f554ee35dfd3085f5e73b7965ba6b4cf06d53e66b1955522", size = 5683134, upload-time = "2025-10-23T12:22:32.423Z" }, + { url = "https://files.pythonhosted.org/packages/e5/40/243c118d34ab80382d7009c4dcb99b887384c3d2ce84d29eeac19e2a007a/igraph-1.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:f2b52dc1757fff0fed29a9f7a276d971a11db4211569ed78b9eab36288dfcc9d", size = 6211583, upload-time = "2025-10-23T12:22:34.238Z" }, + { url = "https://files.pythonhosted.org/packages/1d/b7/88f433819c54b496cb0315fce28e658970cb20ff5dbd52a5a605ce2888de/igraph-1.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:05c79a2a8fca695b2f217a6fa7f2549f896f757d4db41be32a055400cb19cc30", size = 6594509, upload-time = "2025-10-23T12:22:35.831Z" }, + { url = "https://files.pythonhosted.org/packages/7b/5d/8f7f6f619d374e959aa3664ebc4b24c10abc90c2e8efbed97f2623fadaf5/igraph-1.0.0-cp39-abi3-win32.whl", hash = "sha256:c2bce3cd472fec3dd9c4d8a3ea5b6b9be65fb30edf760beb4850760dd4f2d479", size = 2725406, upload-time = "2025-10-23T12:22:37.588Z" }, + { url = "https://files.pythonhosted.org/packages/af/77/a85b3745cf40a0572bae2de8cd9c2a2a8af78e5cf3e880fc0a249114e609/igraph-1.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:faeff8ede0cf15eb4ded44b0fcea6e1886740146e60504c24ad2da14e0939563", size = 3221663, upload-time = "2025-10-23T12:22:39.404Z" }, + { url = "https://files.pythonhosted.org/packages/ef/7e/5df541c37bdf6493035e89c22bd53f30d99b291bcda6c78e9a8afeecec2b/igraph-1.0.0-cp39-abi3-win_arm64.whl", hash = "sha256:b607cafc24b10a615e713ee96e58208ef27e0764af80140c7cc45d4724a3f2df", size = 2785701, upload-time = "2025-10-23T12:22:41.03Z" }, + { url = "https://files.pythonhosted.org/packages/b9/73/bf1d4dbbc9123435b3ca14bb608b243a50a4f158ecea564bf196715248d9/igraph-1.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:3189c1a8e8a8f58009f3f729040eb3701254d074ed37245691d529869ec940c5", size = 2246636, upload-time = "2025-10-23T12:22:42.314Z" }, + { url = "https://files.pythonhosted.org/packages/59/ac/28482f2af45cc0a0ca88a69d17a6ea694f58bdbd22cc876e7273a0379282/igraph-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ebe9502689b946301584b3cfacdbc70c58c4d664d804e39b6daa31be5c20bf46", size = 2036101, upload-time = "2025-10-23T12:22:43.957Z" }, + { url = "https://files.pythonhosted.org/packages/56/80/806a093df1d1ddc3b30d0418b1ee56388ae7018f8ae288677ee2b3a1abaf/igraph-1.0.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:f117683108c54330d6dc67a708e3724c13c9989885122a29781296872989a222", size = 3053403, upload-time = "2025-10-23T12:22:45.573Z" }, + { url = "https://files.pythonhosted.org/packages/56/bf/cf7aeff230a4368c0b8bc6b02f3ea27db41db33714b51e1e8a7c1458f31b/igraph-1.0.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:077dbff0edb8b4ce0f9fefdf325200346d9d5db02de31872b41743de08e67a16", size = 3262472, upload-time = "2025-10-23T12:22:47.248Z" }, + { url = "https://files.pythonhosted.org/packages/d8/ca/dbc06072d5eea402a6dc81f387afb1b7e0c415f1d8a75232943fc4d1bfdb/igraph-1.0.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:fe7c693b2a84a4e03ca31e65aa05a2ecd8728137fa9909ccbf6453b4200b856d", size = 3218861, upload-time = "2025-10-23T12:22:48.46Z" }, +] + +[[package]] +name = "iniconfig" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, +] + +[[package]] +name = "kiwisolver" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/67/9c61eccb13f0bdca9307614e782fec49ffdde0f7a2314935d489fa93cd9c/kiwisolver-1.5.0.tar.gz", hash = "sha256:d4193f3d9dc3f6f79aaed0e5637f45d98850ebf01f7ca20e69457f3e8946b66a", size = 103482, upload-time = "2026-03-09T13:15:53.382Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/dd/a495a9c104be1c476f0386e714252caf2b7eca883915422a64c50b88c6f5/kiwisolver-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9eed0f7edbb274413b6ee781cca50541c8c0facd3d6fd289779e494340a2b85c", size = 122798, upload-time = "2026-03-09T13:12:58.963Z" }, + { url = "https://files.pythonhosted.org/packages/11/60/37b4047a2af0cf5ef6d8b4b26e91829ae6fc6a2d1f74524bcb0e7cd28a32/kiwisolver-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c4923e404d6bcd91b6779c009542e5647fef32e4a5d75e115e3bbac6f2335eb", size = 66216, upload-time = "2026-03-09T13:13:00.155Z" }, + { url = "https://files.pythonhosted.org/packages/0a/aa/510dc933d87767584abfe03efa445889996c70c2990f6f87c3ebaa0a18c5/kiwisolver-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0df54df7e686afa55e6f21fb86195224a6d9beb71d637e8d7920c95cf0f89aac", size = 63911, upload-time = "2026-03-09T13:13:01.671Z" }, + { url = "https://files.pythonhosted.org/packages/80/46/bddc13df6c2a40741e0cc7865bb1c9ed4796b6760bd04ce5fae3928ef917/kiwisolver-1.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2517e24d7315eb51c10664cdb865195df38ab74456c677df67bb47f12d088a27", size = 1438209, upload-time = "2026-03-09T13:13:03.385Z" }, + { url = "https://files.pythonhosted.org/packages/fd/d6/76621246f5165e5372f02f5e6f3f48ea336a8f9e96e43997d45b240ed8cd/kiwisolver-1.5.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ff710414307fefa903e0d9bdf300972f892c23477829f49504e59834f4195398", size = 1248888, upload-time = "2026-03-09T13:13:05.231Z" }, + { url = "https://files.pythonhosted.org/packages/b2/c1/31559ec6fb39a5b48035ce29bb63ade628f321785f38c384dee3e2c08bc1/kiwisolver-1.5.0-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6176c1811d9d5a04fa391c490cc44f451e240697a16977f11c6f722efb9041db", size = 1266304, upload-time = "2026-03-09T13:13:06.743Z" }, + { url = "https://files.pythonhosted.org/packages/5e/ef/1cb8276f2d29cc6a41e0a042f27946ca347d3a4a75acf85d0a16aa6dcc82/kiwisolver-1.5.0-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:50847dca5d197fcbd389c805aa1a1cf32f25d2e7273dc47ab181a517666b68cc", size = 1319650, upload-time = "2026-03-09T13:13:08.607Z" }, + { url = "https://files.pythonhosted.org/packages/4c/e4/5ba3cecd7ce6236ae4a80f67e5d5531287337d0e1f076ca87a5abe4cd5d0/kiwisolver-1.5.0-cp311-cp311-manylinux_2_39_riscv64.whl", hash = "sha256:01808c6d15f4c3e8559595d6d1fe6411c68e4a3822b4b9972b44473b24f4e679", size = 970949, upload-time = "2026-03-09T13:13:10.299Z" }, + { url = "https://files.pythonhosted.org/packages/5a/69/dc61f7ae9a2f071f26004ced87f078235b5507ab6e5acd78f40365655034/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:f1f9f4121ec58628c96baa3de1a55a4e3a333c5102c8e94b64e23bf7b2083309", size = 2199125, upload-time = "2026-03-09T13:13:11.841Z" }, + { url = "https://files.pythonhosted.org/packages/e5/7b/abbe0f1b5afa85f8d084b73e90e5f801c0939eba16ac2e49af7c61a6c28d/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:b7d335370ae48a780c6e6a6bbfa97342f563744c39c35562f3f367665f5c1de2", size = 2293783, upload-time = "2026-03-09T13:13:14.399Z" }, + { url = "https://files.pythonhosted.org/packages/8a/80/5908ae149d96d81580d604c7f8aefd0e98f4fd728cf172f477e9f2a81744/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:800ee55980c18545af444d93fdd60c56b580db5cc54867d8cbf8a1dc0829938c", size = 1960726, upload-time = "2026-03-09T13:13:16.047Z" }, + { url = "https://files.pythonhosted.org/packages/84/08/a78cb776f8c085b7143142ce479859cfec086bd09ee638a317040b6ef420/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:c438f6ca858697c9ab67eb28246c92508af972e114cac34e57a6d4ba17a3ac08", size = 2464738, upload-time = "2026-03-09T13:13:17.897Z" }, + { url = "https://files.pythonhosted.org/packages/b1/e1/65584da5356ed6cb12c63791a10b208860ac40a83de165cb6a6751a686e3/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:8c63c91f95173f9c2a67c7c526b2cea976828a0e7fced9cdcead2802dc10f8a4", size = 2270718, upload-time = "2026-03-09T13:13:19.421Z" }, + { url = "https://files.pythonhosted.org/packages/be/6c/28f17390b62b8f2f520e2915095b3c94d88681ecf0041e75389d9667f202/kiwisolver-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:beb7f344487cdcb9e1efe4b7a29681b74d34c08f0043a327a74da852a6749e7b", size = 73480, upload-time = "2026-03-09T13:13:20.818Z" }, + { url = "https://files.pythonhosted.org/packages/d8/0e/2ee5debc4f77a625778fec5501ff3e8036fe361b7ee28ae402a485bb9694/kiwisolver-1.5.0-cp311-cp311-win_arm64.whl", hash = "sha256:ad4ae4ffd1ee9cd11357b4c66b612da9888f4f4daf2f36995eda64bd45370cac", size = 64930, upload-time = "2026-03-09T13:13:21.997Z" }, + { url = "https://files.pythonhosted.org/packages/4d/b2/818b74ebea34dabe6d0c51cb1c572e046730e64844da6ed646d5298c40ce/kiwisolver-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4e9750bc21b886308024f8a54ccb9a2cc38ac9fa813bf4348434e3d54f337ff9", size = 123158, upload-time = "2026-03-09T13:13:23.127Z" }, + { url = "https://files.pythonhosted.org/packages/bf/d9/405320f8077e8e1c5c4bd6adc45e1e6edf6d727b6da7f2e2533cf58bff71/kiwisolver-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:72ec46b7eba5b395e0a7b63025490d3214c11013f4aacb4f5e8d6c3041829588", size = 66388, upload-time = "2026-03-09T13:13:24.765Z" }, + { url = "https://files.pythonhosted.org/packages/99/9f/795fedf35634f746151ca8839d05681ceb6287fbed6cc1c9bf235f7887c2/kiwisolver-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ed3a984b31da7481b103f68776f7128a89ef26ed40f4dc41a2223cda7fb24819", size = 64068, upload-time = "2026-03-09T13:13:25.878Z" }, + { url = "https://files.pythonhosted.org/packages/c4/13/680c54afe3e65767bed7ec1a15571e1a2f1257128733851ade24abcefbcc/kiwisolver-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:bb5136fb5352d3f422df33f0c879a1b0c204004324150cc3b5e3c4f310c9049f", size = 1477934, upload-time = "2026-03-09T13:13:27.166Z" }, + { url = "https://files.pythonhosted.org/packages/c8/2f/cebfcdb60fd6a9b0f6b47a9337198bcbad6fbe15e68189b7011fd914911f/kiwisolver-1.5.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b2af221f268f5af85e776a73d62b0845fc8baf8ef0abfae79d29c77d0e776aaf", size = 1278537, upload-time = "2026-03-09T13:13:28.707Z" }, + { url = "https://files.pythonhosted.org/packages/f2/0d/9b782923aada3fafb1d6b84e13121954515c669b18af0c26e7d21f579855/kiwisolver-1.5.0-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b0f172dc8ffaccb8522d7c5d899de00133f2f1ca7b0a49b7da98e901de87bf2d", size = 1296685, upload-time = "2026-03-09T13:13:30.528Z" }, + { url = "https://files.pythonhosted.org/packages/27/70/83241b6634b04fe44e892688d5208332bde130f38e610c0418f9ede47ded/kiwisolver-1.5.0-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6ab8ba9152203feec73758dad83af9a0bbe05001eb4639e547207c40cfb52083", size = 1346024, upload-time = "2026-03-09T13:13:32.818Z" }, + { url = "https://files.pythonhosted.org/packages/e4/db/30ed226fb271ae1a6431fc0fe0edffb2efe23cadb01e798caeb9f2ceae8f/kiwisolver-1.5.0-cp312-cp312-manylinux_2_39_riscv64.whl", hash = "sha256:cdee07c4d7f6d72008d3f73b9bf027f4e11550224c7c50d8df1ae4a37c1402a6", size = 987241, upload-time = "2026-03-09T13:13:34.435Z" }, + { url = "https://files.pythonhosted.org/packages/ec/bd/c314595208e4c9587652d50959ead9e461995389664e490f4dce7ff0f782/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7c60d3c9b06fb23bd9c6139281ccbdc384297579ae037f08ae90c69f6845c0b1", size = 2227742, upload-time = "2026-03-09T13:13:36.4Z" }, + { url = "https://files.pythonhosted.org/packages/c1/43/0499cec932d935229b5543d073c2b87c9c22846aab48881e9d8d6e742a2d/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:e315e5ec90d88e140f57696ff85b484ff68bb311e36f2c414aa4286293e6dee0", size = 2323966, upload-time = "2026-03-09T13:13:38.204Z" }, + { url = "https://files.pythonhosted.org/packages/3d/6f/79b0d760907965acfd9d61826a3d41f8f093c538f55cd2633d3f0db269f6/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:1465387ac63576c3e125e5337a6892b9e99e0627d52317f3ca79e6930d889d15", size = 1977417, upload-time = "2026-03-09T13:13:39.966Z" }, + { url = "https://files.pythonhosted.org/packages/ab/31/01d0537c41cb75a551a438c3c7a80d0c60d60b81f694dac83dd436aec0d0/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:530a3fd64c87cffa844d4b6b9768774763d9caa299e9b75d8eca6a4423b31314", size = 2491238, upload-time = "2026-03-09T13:13:41.698Z" }, + { url = "https://files.pythonhosted.org/packages/e4/34/8aefdd0be9cfd00a44509251ba864f5caf2991e36772e61c408007e7f417/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1d9daea4ea6b9be74fe2f01f7fbade8d6ffab263e781274cffca0dba9be9eec9", size = 2294947, upload-time = "2026-03-09T13:13:43.343Z" }, + { url = "https://files.pythonhosted.org/packages/ad/cf/0348374369ca588f8fe9c338fae49fa4e16eeb10ffb3d012f23a54578a9e/kiwisolver-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:f18c2d9782259a6dc132fdc7a63c168cbc74b35284b6d75c673958982a378384", size = 73569, upload-time = "2026-03-09T13:13:45.792Z" }, + { url = "https://files.pythonhosted.org/packages/28/26/192b26196e2316e2bd29deef67e37cdf9870d9af8e085e521afff0fed526/kiwisolver-1.5.0-cp312-cp312-win_arm64.whl", hash = "sha256:f7c7553b13f69c1b29a5bde08ddc6d9d0c8bfb84f9ed01c30db25944aeb852a7", size = 64997, upload-time = "2026-03-09T13:13:46.878Z" }, + { url = "https://files.pythonhosted.org/packages/9d/69/024d6711d5ba575aa65d5538042e99964104e97fa153a9f10bc369182bc2/kiwisolver-1.5.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:fd40bb9cd0891c4c3cb1ddf83f8bbfa15731a248fdc8162669405451e2724b09", size = 123166, upload-time = "2026-03-09T13:13:48.032Z" }, + { url = "https://files.pythonhosted.org/packages/ce/48/adbb40df306f587054a348831220812b9b1d787aff714cfbc8556e38fccd/kiwisolver-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0e1403fd7c26d77c1f03e096dc58a5c726503fa0db0456678b8668f76f521e3", size = 66395, upload-time = "2026-03-09T13:13:49.365Z" }, + { url = "https://files.pythonhosted.org/packages/a8/3a/d0a972b34e1c63e2409413104216cd1caa02c5a37cb668d1687d466c1c45/kiwisolver-1.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:dda366d548e89a90d88a86c692377d18d8bd64b39c1fb2b92cb31370e2896bbd", size = 64065, upload-time = "2026-03-09T13:13:50.562Z" }, + { url = "https://files.pythonhosted.org/packages/2b/0a/7b98e1e119878a27ba8618ca1e18b14f992ff1eda40f47bccccf4de44121/kiwisolver-1.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:332b4f0145c30b5f5ad9374881133e5aa64320428a57c2c2b61e9d891a51c2f3", size = 1477903, upload-time = "2026-03-09T13:13:52.084Z" }, + { url = "https://files.pythonhosted.org/packages/18/d8/55638d89ffd27799d5cc3d8aa28e12f4ce7a64d67b285114dbedc8ea4136/kiwisolver-1.5.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0c50b89ffd3e1a911c69a1dd3de7173c0cd10b130f56222e57898683841e4f96", size = 1278751, upload-time = "2026-03-09T13:13:54.673Z" }, + { url = "https://files.pythonhosted.org/packages/b8/97/b4c8d0d18421ecceba20ad8701358453b88e32414e6f6950b5a4bad54e65/kiwisolver-1.5.0-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4db576bb8c3ef9365f8b40fe0f671644de6736ae2c27a2c62d7d8a1b4329f099", size = 1296793, upload-time = "2026-03-09T13:13:56.287Z" }, + { url = "https://files.pythonhosted.org/packages/c4/10/f862f94b6389d8957448ec9df59450b81bec4abb318805375c401a1e6892/kiwisolver-1.5.0-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0b85aad90cea8ac6797a53b5d5f2e967334fa4d1149f031c4537569972596cb8", size = 1346041, upload-time = "2026-03-09T13:13:58.269Z" }, + { url = "https://files.pythonhosted.org/packages/a3/6a/f1650af35821eaf09de398ec0bc2aefc8f211f0cda50204c9f1673741ba9/kiwisolver-1.5.0-cp313-cp313-manylinux_2_39_riscv64.whl", hash = "sha256:d36ca54cb4c6c4686f7cbb7b817f66f5911c12ddb519450bbe86707155028f87", size = 987292, upload-time = "2026-03-09T13:13:59.871Z" }, + { url = "https://files.pythonhosted.org/packages/de/19/d7fb82984b9238115fe629c915007be608ebd23dc8629703d917dbfaffd4/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:38f4a703656f493b0ad185211ccfca7f0386120f022066b018eb5296d8613e23", size = 2227865, upload-time = "2026-03-09T13:14:01.401Z" }, + { url = "https://files.pythonhosted.org/packages/7f/b9/46b7f386589fd222dac9e9de9c956ce5bcefe2ee73b4e79891381dda8654/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:3ac2360e93cb41be81121755c6462cff3beaa9967188c866e5fce5cf13170859", size = 2324369, upload-time = "2026-03-09T13:14:02.972Z" }, + { url = "https://files.pythonhosted.org/packages/92/8b/95e237cf3d9c642960153c769ddcbe278f182c8affb20cecc1cc983e7cc5/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c95cab08d1965db3d84a121f1c7ce7479bdd4072c9b3dafd8fecce48a2e6b902", size = 1977989, upload-time = "2026-03-09T13:14:04.503Z" }, + { url = "https://files.pythonhosted.org/packages/1b/95/980c9df53501892784997820136c01f62bc1865e31b82b9560f980c0e649/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:fc20894c3d21194d8041a28b65622d5b86db786da6e3cfe73f0c762951a61167", size = 2491645, upload-time = "2026-03-09T13:14:06.106Z" }, + { url = "https://files.pythonhosted.org/packages/cb/32/900647fd0840abebe1561792c6b31e6a7c0e278fc3973d30572a965ca14c/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7a32f72973f0f950c1920475d5c5ea3d971b81b6f0ec53b8d0a956cc965f22e0", size = 2295237, upload-time = "2026-03-09T13:14:08.891Z" }, + { url = "https://files.pythonhosted.org/packages/be/8a/be60e3bbcf513cc5a50f4a3e88e1dcecebb79c1ad607a7222877becaa101/kiwisolver-1.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:0bf3acf1419fa93064a4c2189ac0b58e3be7872bf6ee6177b0d4c63dc4cea276", size = 73573, upload-time = "2026-03-09T13:14:12.327Z" }, + { url = "https://files.pythonhosted.org/packages/4d/d2/64be2e429eb4fca7f7e1c52a91b12663aeaf25de3895e5cca0f47ef2a8d0/kiwisolver-1.5.0-cp313-cp313-win_arm64.whl", hash = "sha256:fa8eb9ecdb7efb0b226acec134e0d709e87a909fa4971a54c0c4f6e88635484c", size = 64998, upload-time = "2026-03-09T13:14:13.469Z" }, + { url = "https://files.pythonhosted.org/packages/b0/69/ce68dd0c85755ae2de490bf015b62f2cea5f6b14ff00a463f9d0774449ff/kiwisolver-1.5.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:db485b3847d182b908b483b2ed133c66d88d49cacf98fd278fadafe11b4478d1", size = 125700, upload-time = "2026-03-09T13:14:14.636Z" }, + { url = "https://files.pythonhosted.org/packages/74/aa/937aac021cf9d4349990d47eb319309a51355ed1dbdc9c077cdc9224cb11/kiwisolver-1.5.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:be12f931839a3bdfe28b584db0e640a65a8bcbc24560ae3fdb025a449b3d754e", size = 67537, upload-time = "2026-03-09T13:14:15.808Z" }, + { url = "https://files.pythonhosted.org/packages/ee/20/3a87fbece2c40ad0f6f0aefa93542559159c5f99831d596050e8afae7a9f/kiwisolver-1.5.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:16b85d37c2cbb3253226d26e64663f755d88a03439a9c47df6246b35defbdfb7", size = 65514, upload-time = "2026-03-09T13:14:18.035Z" }, + { url = "https://files.pythonhosted.org/packages/f0/7f/f943879cda9007c45e1f7dba216d705c3a18d6b35830e488b6c6a4e7cdf0/kiwisolver-1.5.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4432b835675f0ea7414aab3d37d119f7226d24869b7a829caeab49ebda407b0c", size = 1584848, upload-time = "2026-03-09T13:14:19.745Z" }, + { url = "https://files.pythonhosted.org/packages/37/f8/4d4f85cc1870c127c88d950913370dd76138482161cd07eabbc450deff01/kiwisolver-1.5.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b0feb50971481a2cc44d94e88bdb02cdd497618252ae226b8eb1201b957e368", size = 1391542, upload-time = "2026-03-09T13:14:21.54Z" }, + { url = "https://files.pythonhosted.org/packages/04/0b/65dd2916c84d252b244bd405303220f729e7c17c9d7d33dca6feeff9ffc4/kiwisolver-1.5.0-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:56fa888f10d0f367155e76ce849fa1166fc9730d13bd2d65a2aa13b6f5424489", size = 1404447, upload-time = "2026-03-09T13:14:23.205Z" }, + { url = "https://files.pythonhosted.org/packages/39/5c/2606a373247babce9b1d056c03a04b65f3cf5290a8eac5d7bdead0a17e21/kiwisolver-1.5.0-cp313-cp313t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:940dda65d5e764406b9fb92761cbf462e4e63f712ab60ed98f70552e496f3bf1", size = 1455918, upload-time = "2026-03-09T13:14:24.74Z" }, + { url = "https://files.pythonhosted.org/packages/d5/d1/c6078b5756670658e9192a2ef11e939c92918833d2745f85cd14a6004bdf/kiwisolver-1.5.0-cp313-cp313t-manylinux_2_39_riscv64.whl", hash = "sha256:89fc958c702ee9a745e4700378f5d23fddbc46ff89e8fdbf5395c24d5c1452a3", size = 1072856, upload-time = "2026-03-09T13:14:26.597Z" }, + { url = "https://files.pythonhosted.org/packages/cb/c8/7def6ddf16eb2b3741d8b172bdaa9af882b03c78e9b0772975408801fa63/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9027d773c4ff81487181a925945743413f6069634d0b122d0b37684ccf4f1e18", size = 2333580, upload-time = "2026-03-09T13:14:28.237Z" }, + { url = "https://files.pythonhosted.org/packages/9e/87/2ac1fce0eb1e616fcd3c35caa23e665e9b1948bb984f4764790924594128/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:5b233ea3e165e43e35dba1d2b8ecc21cf070b45b65ae17dd2747d2713d942021", size = 2423018, upload-time = "2026-03-09T13:14:30.018Z" }, + { url = "https://files.pythonhosted.org/packages/67/13/c6700ccc6cc218716bfcda4935e4b2997039869b4ad8a94f364c5a3b8e63/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:ce9bf03dad3b46408c08649c6fbd6ca28a9fce0eb32fdfffa6775a13103b5310", size = 2062804, upload-time = "2026-03-09T13:14:32.888Z" }, + { url = "https://files.pythonhosted.org/packages/1b/bd/877056304626943ff0f1f44c08f584300c199b887cb3176cd7e34f1515f1/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:fc4d3f1fb9ca0ae9f97b095963bc6326f1dbfd3779d6679a1e016b9baaa153d3", size = 2597482, upload-time = "2026-03-09T13:14:34.971Z" }, + { url = "https://files.pythonhosted.org/packages/75/19/c60626c47bf0f8ac5dcf72c6c98e266d714f2fbbfd50cf6dab5ede3aaa50/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f443b4825c50a51ee68585522ab4a1d1257fac65896f282b4c6763337ac9f5d2", size = 2394328, upload-time = "2026-03-09T13:14:36.816Z" }, + { url = "https://files.pythonhosted.org/packages/47/84/6a6d5e5bb8273756c27b7d810d47f7ef2f1f9b9fd23c9ee9a3f8c75c9cef/kiwisolver-1.5.0-cp313-cp313t-win_arm64.whl", hash = "sha256:893ff3a711d1b515ba9da14ee090519bad4610ed1962fbe298a434e8c5f8db53", size = 68410, upload-time = "2026-03-09T13:14:38.695Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d7/060f45052f2a01ad5762c8fdecd6d7a752b43400dc29ff75cd47225a40fd/kiwisolver-1.5.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:8df31fe574b8b3993cc61764f40941111b25c2d9fea13d3ce24a49907cd2d615", size = 123231, upload-time = "2026-03-09T13:14:41.323Z" }, + { url = "https://files.pythonhosted.org/packages/c2/a7/78da680eadd06ff35edef6ef68a1ad273bad3e2a0936c9a885103230aece/kiwisolver-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:1d49a49ac4cbfb7c1375301cd1ec90169dfeae55ff84710d782260ce77a75a02", size = 66489, upload-time = "2026-03-09T13:14:42.534Z" }, + { url = "https://files.pythonhosted.org/packages/49/b2/97980f3ad4fae37dd7fe31626e2bf75fbf8bdf5d303950ec1fab39a12da8/kiwisolver-1.5.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0cbe94b69b819209a62cb27bdfa5dc2a8977d8de2f89dfd97ba4f53ed3af754e", size = 64063, upload-time = "2026-03-09T13:14:44.759Z" }, + { url = "https://files.pythonhosted.org/packages/e7/f9/b06c934a6aa8bc91f566bd2a214fd04c30506c2d9e2b6b171953216a65b6/kiwisolver-1.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:80aa065ffd378ff784822a6d7c3212f2d5f5e9c3589614b5c228b311fd3063ac", size = 1475913, upload-time = "2026-03-09T13:14:46.247Z" }, + { url = "https://files.pythonhosted.org/packages/6b/f0/f768ae564a710135630672981231320bc403cf9152b5596ec5289de0f106/kiwisolver-1.5.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e7f886f47ab881692f278ae901039a234e4025a68e6dfab514263a0b1c4ae05", size = 1282782, upload-time = "2026-03-09T13:14:48.458Z" }, + { url = "https://files.pythonhosted.org/packages/e2/9f/1de7aad00697325f05238a5f2eafbd487fb637cc27a558b5367a5f37fb7f/kiwisolver-1.5.0-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5060731cc3ed12ca3a8b57acd4aeca5bbc2f49216dd0bec1650a1acd89486bcd", size = 1300815, upload-time = "2026-03-09T13:14:50.721Z" }, + { url = "https://files.pythonhosted.org/packages/5a/c2/297f25141d2e468e0ce7f7a7b92e0cf8918143a0cbd3422c1ad627e85a06/kiwisolver-1.5.0-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7a4aa69609f40fce3cbc3f87b2061f042eee32f94b8f11db707b66a26461591a", size = 1347925, upload-time = "2026-03-09T13:14:52.304Z" }, + { url = "https://files.pythonhosted.org/packages/b9/d3/f4c73a02eb41520c47610207b21afa8cdd18fdbf64ffd94674ae21c4812d/kiwisolver-1.5.0-cp314-cp314-manylinux_2_39_riscv64.whl", hash = "sha256:d168fda2dbff7b9b5f38e693182d792a938c31db4dac3a80a4888de603c99554", size = 991322, upload-time = "2026-03-09T13:14:54.637Z" }, + { url = "https://files.pythonhosted.org/packages/7b/46/d3f2efef7732fcda98d22bf4ad5d3d71d545167a852ca710a494f4c15343/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:413b820229730d358efd838ecbab79902fe97094565fdc80ddb6b0a18c18a581", size = 2232857, upload-time = "2026-03-09T13:14:56.471Z" }, + { url = "https://files.pythonhosted.org/packages/3f/ec/2d9756bf2b6d26ae4349b8d3662fb3993f16d80c1f971c179ce862b9dbae/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:5124d1ea754509b09e53738ec185584cc609aae4a3b510aaf4ed6aa047ef9303", size = 2329376, upload-time = "2026-03-09T13:14:58.072Z" }, + { url = "https://files.pythonhosted.org/packages/8f/9f/876a0a0f2260f1bde92e002b3019a5fabc35e0939c7d945e0fa66185eb20/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:e4415a8db000bf49a6dd1c478bf70062eaacff0f462b92b0ba68791a905861f9", size = 1982549, upload-time = "2026-03-09T13:14:59.668Z" }, + { url = "https://files.pythonhosted.org/packages/6c/4f/ba3624dfac23a64d54ac4179832860cb537c1b0af06024936e82ca4154a0/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:d618fd27420381a4f6044faa71f46d8bfd911bd077c555f7138ed88729bfbe79", size = 2494680, upload-time = "2026-03-09T13:15:01.364Z" }, + { url = "https://files.pythonhosted.org/packages/39/b7/97716b190ab98911b20d10bf92eca469121ec483b8ce0edd314f51bc85af/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5092eb5b1172947f57d6ea7d89b2f29650414e4293c47707eb499ec07a0ac796", size = 2297905, upload-time = "2026-03-09T13:15:03.925Z" }, + { url = "https://files.pythonhosted.org/packages/a3/36/4e551e8aa55c9188bca9abb5096805edbf7431072b76e2298e34fd3a3008/kiwisolver-1.5.0-cp314-cp314-win_amd64.whl", hash = "sha256:d76e2d8c75051d58177e762164d2e9ab92886534e3a12e795f103524f221dd8e", size = 75086, upload-time = "2026-03-09T13:15:07.775Z" }, + { url = "https://files.pythonhosted.org/packages/70/15/9b90f7df0e31a003c71649cf66ef61c3c1b862f48c81007fa2383c8bd8d7/kiwisolver-1.5.0-cp314-cp314-win_arm64.whl", hash = "sha256:fa6248cd194edff41d7ea9425ced8ca3a6f838bfb295f6f1d6e6bb694a8518df", size = 66577, upload-time = "2026-03-09T13:15:09.139Z" }, + { url = "https://files.pythonhosted.org/packages/17/01/7dc8c5443ff42b38e72731643ed7cf1ed9bf01691ae5cdca98501999ed83/kiwisolver-1.5.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:d1ffeb80b5676463d7a7d56acbe8e37a20ce725570e09549fe738e02ca6b7e1e", size = 125794, upload-time = "2026-03-09T13:15:10.525Z" }, + { url = "https://files.pythonhosted.org/packages/46/8a/b4ebe46ebaac6a303417fab10c2e165c557ddaff558f9699d302b256bc53/kiwisolver-1.5.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:bc4d8e252f532ab46a1de9349e2d27b91fce46736a9eedaa37beaca66f574ed4", size = 67646, upload-time = "2026-03-09T13:15:12.016Z" }, + { url = "https://files.pythonhosted.org/packages/60/35/10a844afc5f19d6f567359bf4789e26661755a2f36200d5d1ed8ad0126e5/kiwisolver-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:6783e069732715ad0c3ce96dbf21dbc2235ab0593f2baf6338101f70371f4028", size = 65511, upload-time = "2026-03-09T13:15:13.311Z" }, + { url = "https://files.pythonhosted.org/packages/f8/8a/685b297052dd041dcebce8e8787b58923b6e78acc6115a0dc9189011c44b/kiwisolver-1.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e7c4c09a490dc4d4a7f8cbee56c606a320f9dc28cf92a7157a39d1ce7676a657", size = 1584858, upload-time = "2026-03-09T13:15:15.103Z" }, + { url = "https://files.pythonhosted.org/packages/9e/80/04865e3d4638ac5bddec28908916df4a3075b8c6cc101786a96803188b96/kiwisolver-1.5.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2a075bd7bd19c70cf67c8badfa36cf7c5d8de3c9ddb8420c51e10d9c50e94920", size = 1392539, upload-time = "2026-03-09T13:15:16.661Z" }, + { url = "https://files.pythonhosted.org/packages/ba/01/77a19cacc0893fa13fafa46d1bba06fb4dc2360b3292baf4b56d8e067b24/kiwisolver-1.5.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:bdd3e53429ff02aa319ba59dfe4ceeec345bf46cf180ec2cf6fd5b942e7975e9", size = 1405310, upload-time = "2026-03-09T13:15:18.229Z" }, + { url = "https://files.pythonhosted.org/packages/53/39/bcaf5d0cca50e604cfa9b4e3ae1d64b50ca1ae5b754122396084599ef903/kiwisolver-1.5.0-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3cdcb35dc9d807259c981a85531048ede628eabcffb3239adf3d17463518992d", size = 1456244, upload-time = "2026-03-09T13:15:20.444Z" }, + { url = "https://files.pythonhosted.org/packages/d0/7a/72c187abc6975f6978c3e39b7cf67aeb8b3c0a8f9790aa7fd412855e9e1f/kiwisolver-1.5.0-cp314-cp314t-manylinux_2_39_riscv64.whl", hash = "sha256:70d593af6a6ca332d1df73d519fddb5148edb15cd90d5f0155e3746a6d4fcc65", size = 1073154, upload-time = "2026-03-09T13:15:22.039Z" }, + { url = "https://files.pythonhosted.org/packages/c7/ca/cf5b25783ebbd59143b4371ed0c8428a278abe68d6d0104b01865b1bbd0f/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:377815a8616074cabbf3f53354e1d040c35815a134e01d7614b7692e4bf8acfa", size = 2334377, upload-time = "2026-03-09T13:15:23.741Z" }, + { url = "https://files.pythonhosted.org/packages/4a/e5/b1f492adc516796e88751282276745340e2a72dcd0d36cf7173e0daf3210/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:0255a027391d52944eae1dbb5d4cc5903f57092f3674e8e544cdd2622826b3f0", size = 2425288, upload-time = "2026-03-09T13:15:25.789Z" }, + { url = "https://files.pythonhosted.org/packages/e6/e5/9b21fbe91a61b8f409d74a26498706e97a48008bfcd1864373d32a6ba31c/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:012b1eb16e28718fa782b5e61dc6f2da1f0792ca73bd05d54de6cb9561665fc9", size = 2063158, upload-time = "2026-03-09T13:15:27.63Z" }, + { url = "https://files.pythonhosted.org/packages/b1/02/83f47986138310f95ea95531f851b2a62227c11cbc3e690ae1374fe49f0f/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:0e3aafb33aed7479377e5e9a82e9d4bf87063741fc99fc7ae48b0f16e32bdd6f", size = 2597260, upload-time = "2026-03-09T13:15:29.421Z" }, + { url = "https://files.pythonhosted.org/packages/07/18/43a5f24608d8c313dd189cf838c8e68d75b115567c6279de7796197cfb6a/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:e7a116ae737f0000343218c4edf5bd45893bfeaff0993c0b215d7124c9f77646", size = 2394403, upload-time = "2026-03-09T13:15:31.517Z" }, + { url = "https://files.pythonhosted.org/packages/3b/b5/98222136d839b8afabcaa943b09bd05888c2d36355b7e448550211d1fca4/kiwisolver-1.5.0-cp314-cp314t-win_amd64.whl", hash = "sha256:1dd9b0b119a350976a6d781e7278ec7aca0b201e1a9e2d23d9804afecb6ca681", size = 79687, upload-time = "2026-03-09T13:15:33.204Z" }, + { url = "https://files.pythonhosted.org/packages/99/a2/ca7dc962848040befed12732dff6acae7fb3c4f6fc4272b3f6c9a30b8713/kiwisolver-1.5.0-cp314-cp314t-win_arm64.whl", hash = "sha256:58f812017cd2985c21fbffb4864d59174d4903dd66fa23815e74bbc7a0e2dd57", size = 70032, upload-time = "2026-03-09T13:15:34.411Z" }, + { url = "https://files.pythonhosted.org/packages/1c/fa/2910df836372d8761bb6eff7d8bdcb1613b5c2e03f260efe7abe34d388a7/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl", hash = "sha256:5ae8e62c147495b01a0f4765c878e9bfdf843412446a247e28df59936e99e797", size = 130262, upload-time = "2026-03-09T13:15:35.629Z" }, + { url = "https://files.pythonhosted.org/packages/0f/41/c5f71f9f00aabcc71fee8b7475e3f64747282580c2fe748961ba29b18385/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:f6764a4ccab3078db14a632420930f6186058750df066b8ea2a7106df91d3203", size = 138036, upload-time = "2026-03-09T13:15:36.894Z" }, + { url = "https://files.pythonhosted.org/packages/fa/06/7399a607f434119c6e1fdc8ec89a8d51ccccadf3341dee4ead6bd14caaf5/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c31c13da98624f957b0fb1b5bae5383b2333c2c3f6793d9825dd5ce79b525cb7", size = 194295, upload-time = "2026-03-09T13:15:38.22Z" }, + { url = "https://files.pythonhosted.org/packages/b5/91/53255615acd2a1eaca307ede3c90eb550bae9c94581f8c00081b6b1c8f44/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-win_amd64.whl", hash = "sha256:1f1489f769582498610e015a8ef2d36f28f505ab3096d0e16b4858a9ec214f57", size = 75987, upload-time = "2026-03-09T13:15:39.65Z" }, + { url = "https://files.pythonhosted.org/packages/e9/eb/5fcbbbf9a0e2c3a35effb88831a483345326bbc3a030a3b5b69aee647f84/kiwisolver-1.5.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:ec4c85dc4b687c7f7f15f553ff26a98bfe8c58f5f7f0ac8905f0ba4c7be60232", size = 59532, upload-time = "2026-03-09T13:15:47.047Z" }, + { url = "https://files.pythonhosted.org/packages/c3/9b/e17104555bb4db148fd52327feea1e96be4b88e8e008b029002c281a21ab/kiwisolver-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:12e91c215a96e39f57989c8912ae761286ac5a9584d04030ceb3368a357f017a", size = 57420, upload-time = "2026-03-09T13:15:48.199Z" }, + { url = "https://files.pythonhosted.org/packages/48/44/2b5b95b7aa39fb2d8d9d956e0f3d5d45aef2ae1d942d4c3ffac2f9cfed1a/kiwisolver-1.5.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:be4a51a55833dc29ab5d7503e7bcb3b3af3402d266018137127450005cdfe737", size = 79892, upload-time = "2026-03-09T13:15:49.694Z" }, + { url = "https://files.pythonhosted.org/packages/52/7d/7157f9bba6b455cfb4632ed411e199fc8b8977642c2b12082e1bd9e6d173/kiwisolver-1.5.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:daae526907e262de627d8f70058a0f64acc9e2641c164c99c8f594b34a799a16", size = 77603, upload-time = "2026-03-09T13:15:50.945Z" }, + { url = "https://files.pythonhosted.org/packages/0a/dd/8050c947d435c8d4bc94e3252f4d8bb8a76cfb424f043a8680be637a57f1/kiwisolver-1.5.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:59cd8683f575d96df5bb48f6add94afc055012c29e28124fcae2b63661b9efb1", size = 73558, upload-time = "2026-03-09T13:15:52.112Z" }, +] + +[[package]] +name = "matplotlib" +version = "3.10.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "contourpy" }, + { name = "cycler" }, + { name = "fonttools" }, + { name = "kiwisolver" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyparsing" }, + { name = "python-dateutil" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8a/76/d3c6e3a13fe484ebe7718d14e269c9569c4eb0020a968a327acb3b9a8fe6/matplotlib-3.10.8.tar.gz", hash = "sha256:2299372c19d56bcd35cf05a2738308758d32b9eaed2371898d8f5bd33f084aa3", size = 34806269, upload-time = "2025-12-10T22:56:51.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/86/de7e3a1cdcfc941483af70609edc06b83e7c8a0e0dc9ac325200a3f4d220/matplotlib-3.10.8-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6be43b667360fef5c754dda5d25a32e6307a03c204f3c0fc5468b78fa87b4160", size = 8251215, upload-time = "2025-12-10T22:55:16.175Z" }, + { url = "https://files.pythonhosted.org/packages/fd/14/baad3222f424b19ce6ad243c71de1ad9ec6b2e4eb1e458a48fdc6d120401/matplotlib-3.10.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a2b336e2d91a3d7006864e0990c83b216fcdca64b5a6484912902cef87313d78", size = 8139625, upload-time = "2025-12-10T22:55:17.712Z" }, + { url = "https://files.pythonhosted.org/packages/8f/a0/7024215e95d456de5883e6732e708d8187d9753a21d32f8ddb3befc0c445/matplotlib-3.10.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:efb30e3baaea72ce5928e32bab719ab4770099079d66726a62b11b1ef7273be4", size = 8712614, upload-time = "2025-12-10T22:55:20.8Z" }, + { url = "https://files.pythonhosted.org/packages/5a/f4/b8347351da9a5b3f41e26cf547252d861f685c6867d179a7c9d60ad50189/matplotlib-3.10.8-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d56a1efd5bfd61486c8bc968fa18734464556f0fb8e51690f4ac25d85cbbbbc2", size = 9540997, upload-time = "2025-12-10T22:55:23.258Z" }, + { url = "https://files.pythonhosted.org/packages/9e/c0/c7b914e297efe0bc36917bf216b2acb91044b91e930e878ae12981e461e5/matplotlib-3.10.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:238b7ce5717600615c895050239ec955d91f321c209dd110db988500558e70d6", size = 9596825, upload-time = "2025-12-10T22:55:25.217Z" }, + { url = "https://files.pythonhosted.org/packages/6f/d3/a4bbc01c237ab710a1f22b4da72f4ff6d77eb4c7735ea9811a94ae239067/matplotlib-3.10.8-cp311-cp311-win_amd64.whl", hash = "sha256:18821ace09c763ec93aef5eeff087ee493a24051936d7b9ebcad9662f66501f9", size = 8135090, upload-time = "2025-12-10T22:55:27.162Z" }, + { url = "https://files.pythonhosted.org/packages/89/dd/a0b6588f102beab33ca6f5218b31725216577b2a24172f327eaf6417d5c9/matplotlib-3.10.8-cp311-cp311-win_arm64.whl", hash = "sha256:bab485bcf8b1c7d2060b4fcb6fc368a9e6f4cd754c9c2fea281f4be21df394a2", size = 8012377, upload-time = "2025-12-10T22:55:29.185Z" }, + { url = "https://files.pythonhosted.org/packages/9e/67/f997cdcbb514012eb0d10cd2b4b332667997fb5ebe26b8d41d04962fa0e6/matplotlib-3.10.8-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:64fcc24778ca0404ce0cb7b6b77ae1f4c7231cdd60e6778f999ee05cbd581b9a", size = 8260453, upload-time = "2025-12-10T22:55:30.709Z" }, + { url = "https://files.pythonhosted.org/packages/7e/65/07d5f5c7f7c994f12c768708bd2e17a4f01a2b0f44a1c9eccad872433e2e/matplotlib-3.10.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b9a5ca4ac220a0cdd1ba6bcba3608547117d30468fefce49bb26f55c1a3d5c58", size = 8148321, upload-time = "2025-12-10T22:55:33.265Z" }, + { url = "https://files.pythonhosted.org/packages/3e/f3/c5195b1ae57ef85339fd7285dfb603b22c8b4e79114bae5f4f0fcf688677/matplotlib-3.10.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3ab4aabc72de4ff77b3ec33a6d78a68227bf1123465887f9905ba79184a1cc04", size = 8716944, upload-time = "2025-12-10T22:55:34.922Z" }, + { url = "https://files.pythonhosted.org/packages/00/f9/7638f5cc82ec8a7aa005de48622eecc3ed7c9854b96ba15bd76b7fd27574/matplotlib-3.10.8-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:24d50994d8c5816ddc35411e50a86ab05f575e2530c02752e02538122613371f", size = 9550099, upload-time = "2025-12-10T22:55:36.789Z" }, + { url = "https://files.pythonhosted.org/packages/57/61/78cd5920d35b29fd2a0fe894de8adf672ff52939d2e9b43cb83cd5ce1bc7/matplotlib-3.10.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:99eefd13c0dc3b3c1b4d561c1169e65fe47aab7b8158754d7c084088e2329466", size = 9613040, upload-time = "2025-12-10T22:55:38.715Z" }, + { url = "https://files.pythonhosted.org/packages/30/4e/c10f171b6e2f44d9e3a2b96efa38b1677439d79c99357600a62cc1e9594e/matplotlib-3.10.8-cp312-cp312-win_amd64.whl", hash = "sha256:dd80ecb295460a5d9d260df63c43f4afbdd832d725a531f008dad1664f458adf", size = 8142717, upload-time = "2025-12-10T22:55:41.103Z" }, + { url = "https://files.pythonhosted.org/packages/f1/76/934db220026b5fef85f45d51a738b91dea7d70207581063cd9bd8fafcf74/matplotlib-3.10.8-cp312-cp312-win_arm64.whl", hash = "sha256:3c624e43ed56313651bc18a47f838b60d7b8032ed348911c54906b130b20071b", size = 8012751, upload-time = "2025-12-10T22:55:42.684Z" }, + { url = "https://files.pythonhosted.org/packages/3d/b9/15fd5541ef4f5b9a17eefd379356cf12175fe577424e7b1d80676516031a/matplotlib-3.10.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3f2e409836d7f5ac2f1c013110a4d50b9f7edc26328c108915f9075d7d7a91b6", size = 8261076, upload-time = "2025-12-10T22:55:44.648Z" }, + { url = "https://files.pythonhosted.org/packages/8d/a0/2ba3473c1b66b9c74dc7107c67e9008cb1782edbe896d4c899d39ae9cf78/matplotlib-3.10.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:56271f3dac49a88d7fca5060f004d9d22b865f743a12a23b1e937a0be4818ee1", size = 8148794, upload-time = "2025-12-10T22:55:46.252Z" }, + { url = "https://files.pythonhosted.org/packages/75/97/a471f1c3eb1fd6f6c24a31a5858f443891d5127e63a7788678d14e249aea/matplotlib-3.10.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a0a7f52498f72f13d4a25ea70f35f4cb60642b466cbb0a9be951b5bc3f45a486", size = 8718474, upload-time = "2025-12-10T22:55:47.864Z" }, + { url = "https://files.pythonhosted.org/packages/01/be/cd478f4b66f48256f42927d0acbcd63a26a893136456cd079c0cc24fbabf/matplotlib-3.10.8-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:646d95230efb9ca614a7a594d4fcacde0ac61d25e37dd51710b36477594963ce", size = 9549637, upload-time = "2025-12-10T22:55:50.048Z" }, + { url = "https://files.pythonhosted.org/packages/5d/7c/8dc289776eae5109e268c4fb92baf870678dc048a25d4ac903683b86d5bf/matplotlib-3.10.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f89c151aab2e2e23cb3fe0acad1e8b82841fd265379c4cecd0f3fcb34c15e0f6", size = 9613678, upload-time = "2025-12-10T22:55:52.21Z" }, + { url = "https://files.pythonhosted.org/packages/64/40/37612487cc8a437d4dd261b32ca21fe2d79510fe74af74e1f42becb1bdb8/matplotlib-3.10.8-cp313-cp313-win_amd64.whl", hash = "sha256:e8ea3e2d4066083e264e75c829078f9e149fa119d27e19acd503de65e0b13149", size = 8142686, upload-time = "2025-12-10T22:55:54.253Z" }, + { url = "https://files.pythonhosted.org/packages/66/52/8d8a8730e968185514680c2a6625943f70269509c3dcfc0dcf7d75928cb8/matplotlib-3.10.8-cp313-cp313-win_arm64.whl", hash = "sha256:c108a1d6fa78a50646029cb6d49808ff0fc1330fda87fa6f6250c6b5369b6645", size = 8012917, upload-time = "2025-12-10T22:55:56.268Z" }, + { url = "https://files.pythonhosted.org/packages/b5/27/51fe26e1062f298af5ef66343d8ef460e090a27fea73036c76c35821df04/matplotlib-3.10.8-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:ad3d9833a64cf48cc4300f2b406c3d0f4f4724a91c0bd5640678a6ba7c102077", size = 8305679, upload-time = "2025-12-10T22:55:57.856Z" }, + { url = "https://files.pythonhosted.org/packages/2c/1e/4de865bc591ac8e3062e835f42dd7fe7a93168d519557837f0e37513f629/matplotlib-3.10.8-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:eb3823f11823deade26ce3b9f40dcb4a213da7a670013929f31d5f5ed1055b22", size = 8198336, upload-time = "2025-12-10T22:55:59.371Z" }, + { url = "https://files.pythonhosted.org/packages/c6/cb/2f7b6e75fb4dce87ef91f60cac4f6e34f4c145ab036a22318ec837971300/matplotlib-3.10.8-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d9050fee89a89ed57b4fb2c1bfac9a3d0c57a0d55aed95949eedbc42070fea39", size = 8731653, upload-time = "2025-12-10T22:56:01.032Z" }, + { url = "https://files.pythonhosted.org/packages/46/b3/bd9c57d6ba670a37ab31fb87ec3e8691b947134b201f881665b28cc039ff/matplotlib-3.10.8-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b44d07310e404ba95f8c25aa5536f154c0a8ec473303535949e52eb71d0a1565", size = 9561356, upload-time = "2025-12-10T22:56:02.95Z" }, + { url = "https://files.pythonhosted.org/packages/c0/3d/8b94a481456dfc9dfe6e39e93b5ab376e50998cddfd23f4ae3b431708f16/matplotlib-3.10.8-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:0a33deb84c15ede243aead39f77e990469fff93ad1521163305095b77b72ce4a", size = 9614000, upload-time = "2025-12-10T22:56:05.411Z" }, + { url = "https://files.pythonhosted.org/packages/bd/cd/bc06149fe5585ba800b189a6a654a75f1f127e8aab02fd2be10df7fa500c/matplotlib-3.10.8-cp313-cp313t-win_amd64.whl", hash = "sha256:3a48a78d2786784cc2413e57397981fb45c79e968d99656706018d6e62e57958", size = 8220043, upload-time = "2025-12-10T22:56:07.551Z" }, + { url = "https://files.pythonhosted.org/packages/e3/de/b22cf255abec916562cc04eef457c13e58a1990048de0c0c3604d082355e/matplotlib-3.10.8-cp313-cp313t-win_arm64.whl", hash = "sha256:15d30132718972c2c074cd14638c7f4592bd98719e2308bccea40e0538bc0cb5", size = 8062075, upload-time = "2025-12-10T22:56:09.178Z" }, + { url = "https://files.pythonhosted.org/packages/3c/43/9c0ff7a2f11615e516c3b058e1e6e8f9614ddeca53faca06da267c48345d/matplotlib-3.10.8-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:b53285e65d4fa4c86399979e956235deb900be5baa7fc1218ea67fbfaeaadd6f", size = 8262481, upload-time = "2025-12-10T22:56:10.885Z" }, + { url = "https://files.pythonhosted.org/packages/6f/ca/e8ae28649fcdf039fda5ef554b40a95f50592a3c47e6f7270c9561c12b07/matplotlib-3.10.8-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:32f8dce744be5569bebe789e46727946041199030db8aeb2954d26013a0eb26b", size = 8151473, upload-time = "2025-12-10T22:56:12.377Z" }, + { url = "https://files.pythonhosted.org/packages/f1/6f/009d129ae70b75e88cbe7e503a12a4c0670e08ed748a902c2568909e9eb5/matplotlib-3.10.8-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4cf267add95b1c88300d96ca837833d4112756045364f5c734a2276038dae27d", size = 9553896, upload-time = "2025-12-10T22:56:14.432Z" }, + { url = "https://files.pythonhosted.org/packages/f5/26/4221a741eb97967bc1fd5e4c52b9aa5a91b2f4ec05b59f6def4d820f9df9/matplotlib-3.10.8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2cf5bd12cecf46908f286d7838b2abc6c91cda506c0445b8223a7c19a00df008", size = 9824193, upload-time = "2025-12-10T22:56:16.29Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f3/3abf75f38605772cf48a9daf5821cd4f563472f38b4b828c6fba6fa6d06e/matplotlib-3.10.8-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:41703cc95688f2516b480f7f339d8851a6035f18e100ee6a32bc0b8536a12a9c", size = 9615444, upload-time = "2025-12-10T22:56:18.155Z" }, + { url = "https://files.pythonhosted.org/packages/93/a5/de89ac80f10b8dc615807ee1133cd99ac74082581196d4d9590bea10690d/matplotlib-3.10.8-cp314-cp314-win_amd64.whl", hash = "sha256:83d282364ea9f3e52363da262ce32a09dfe241e4080dcedda3c0db059d3c1f11", size = 8272719, upload-time = "2025-12-10T22:56:20.366Z" }, + { url = "https://files.pythonhosted.org/packages/69/ce/b006495c19ccc0a137b48083168a37bd056392dee02f87dba0472f2797fe/matplotlib-3.10.8-cp314-cp314-win_arm64.whl", hash = "sha256:2c1998e92cd5999e295a731bcb2911c75f597d937341f3030cc24ef2733d78a8", size = 8144205, upload-time = "2025-12-10T22:56:22.239Z" }, + { url = "https://files.pythonhosted.org/packages/68/d9/b31116a3a855bd313c6fcdb7226926d59b041f26061c6c5b1be66a08c826/matplotlib-3.10.8-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:b5a2b97dbdc7d4f353ebf343744f1d1f1cca8aa8bfddb4262fcf4306c3761d50", size = 8305785, upload-time = "2025-12-10T22:56:24.218Z" }, + { url = "https://files.pythonhosted.org/packages/1e/90/6effe8103f0272685767ba5f094f453784057072f49b393e3ea178fe70a5/matplotlib-3.10.8-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:3f5c3e4da343bba819f0234186b9004faba952cc420fbc522dc4e103c1985908", size = 8198361, upload-time = "2025-12-10T22:56:26.787Z" }, + { url = "https://files.pythonhosted.org/packages/d7/65/a73188711bea603615fc0baecca1061429ac16940e2385433cc778a9d8e7/matplotlib-3.10.8-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f62550b9a30afde8c1c3ae450e5eb547d579dd69b25c2fc7a1c67f934c1717a", size = 9561357, upload-time = "2025-12-10T22:56:28.953Z" }, + { url = "https://files.pythonhosted.org/packages/f4/3d/b5c5d5d5be8ce63292567f0e2c43dde9953d3ed86ac2de0a72e93c8f07a1/matplotlib-3.10.8-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:495672de149445ec1b772ff2c9ede9b769e3cb4f0d0aa7fa730d7f59e2d4e1c1", size = 9823610, upload-time = "2025-12-10T22:56:31.455Z" }, + { url = "https://files.pythonhosted.org/packages/4d/4b/e7beb6bbd49f6bae727a12b270a2654d13c397576d25bd6786e47033300f/matplotlib-3.10.8-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:595ba4d8fe983b88f0eec8c26a241e16d6376fe1979086232f481f8f3f67494c", size = 9614011, upload-time = "2025-12-10T22:56:33.85Z" }, + { url = "https://files.pythonhosted.org/packages/7c/e6/76f2813d31f032e65f6f797e3f2f6e4aab95b65015924b1c51370395c28a/matplotlib-3.10.8-cp314-cp314t-win_amd64.whl", hash = "sha256:25d380fe8b1dc32cf8f0b1b448470a77afb195438bafdf1d858bfb876f3edf7b", size = 8362801, upload-time = "2025-12-10T22:56:36.107Z" }, + { url = "https://files.pythonhosted.org/packages/5d/49/d651878698a0b67f23aa28e17f45a6d6dd3d3f933fa29087fa4ce5947b5a/matplotlib-3.10.8-cp314-cp314t-win_arm64.whl", hash = "sha256:113bb52413ea508ce954a02c10ffd0d565f9c3bc7f2eddc27dfe1731e71c7b5f", size = 8192560, upload-time = "2025-12-10T22:56:38.008Z" }, + { url = "https://files.pythonhosted.org/packages/04/30/3afaa31c757f34b7725ab9d2ba8b48b5e89c2019c003e7d0ead143aabc5a/matplotlib-3.10.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:6da7c2ce169267d0d066adcf63758f0604aa6c3eebf67458930f9d9b79ad1db1", size = 8249198, upload-time = "2025-12-10T22:56:45.584Z" }, + { url = "https://files.pythonhosted.org/packages/48/2f/6334aec331f57485a642a7c8be03cb286f29111ae71c46c38b363230063c/matplotlib-3.10.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:9153c3292705be9f9c64498a8872118540c3f4123d1a1c840172edf262c8be4a", size = 8136817, upload-time = "2025-12-10T22:56:47.339Z" }, + { url = "https://files.pythonhosted.org/packages/73/e4/6d6f14b2a759c622f191b2d67e9075a3f56aaccb3be4bb9bb6890030d0a0/matplotlib-3.10.8-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1ae029229a57cd1e8fe542485f27e7ca7b23aa9e8944ddb4985d0bc444f1eca2", size = 8713867, upload-time = "2025-12-10T22:56:48.954Z" }, +] + +[[package]] +name = "networkx" +version = "3.6.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6a/51/63fe664f3908c97be9d2e4f1158eb633317598cfa6e1fc14af5383f17512/networkx-3.6.1.tar.gz", hash = "sha256:26b7c357accc0c8cde558ad486283728b65b6a95d85ee1cd66bafab4c8168509", size = 2517025, upload-time = "2025-12-08T17:02:39.908Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c9/b2622292ea83fbb4ec318f5b9ab867d0a28ab43c5717bb85b0a5f6b3b0a4/networkx-3.6.1-py3-none-any.whl", hash = "sha256:d47fbf302e7d9cbbb9e2555a0d267983d2aa476bac30e90dfbe5669bd57f3762", size = 2068504, upload-time = "2025-12-08T17:02:38.159Z" }, ] [[package]] name = "numpy" version = "2.4.3" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.11' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.11' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.11' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", -] sdist = { url = "https://files.pythonhosted.org/packages/10/8b/c265f4823726ab832de836cdd184d0986dcf94480f81e8739692a7ac7af2/numpy-2.4.3.tar.gz", hash = "sha256:483a201202b73495f00dbc83796c6ae63137a9bdade074f7648b3e32613412dd", size = 20727743, upload-time = "2026-03-09T07:58:53.426Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/f9/51/5093a2df15c4dc19da3f79d1021e891f5dcf1d9d1db6ba38891d5590f3fe/numpy-2.4.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:33b3bf58ee84b172c067f56aeadc7ee9ab6de69c5e800ab5b10295d54c581adb", size = 16957183, upload-time = "2026-03-09T07:55:57.774Z" }, @@ -284,156 +674,196 @@ wheels = [ ] [[package]] -name = "pandas" -version = "2.3.3" +name = "packaging" +version = "26.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.11'", +sdist = { url = "https://files.pythonhosted.org/packages/65/ee/299d360cdc32edc7d2cf530f3accf79c4fca01e96ffc950d8a52213bd8e4/packaging-26.0.tar.gz", hash = "sha256:00243ae351a257117b6a241061796684b084ed1c516a08c48a3f7e147a9d80b4", size = 143416, upload-time = "2026-01-21T20:50:39.064Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/b9/c538f279a4e237a006a2c98387d081e9eb060d203d8ed34467cc0f0b9b53/packaging-26.0-py3-none-any.whl", hash = "sha256:b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529", size = 74366, upload-time = "2026-01-21T20:50:37.788Z" }, +] + +[[package]] +name = "pillow" +version = "12.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1f/42/5c74462b4fd957fcd7b13b04fb3205ff8349236ea74c7c375766d6c82288/pillow-12.1.1.tar.gz", hash = "sha256:9ad8fa5937ab05218e2b6a4cff30295ad35afd2f83ac592e68c0d871bb0fdbc4", size = 46980264, upload-time = "2026-02-11T04:23:07.146Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/46/5da1ec4a5171ee7bf1a0efa064aba70ba3d6e0788ce3f5acd1375d23c8c0/pillow-12.1.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:e879bb6cd5c73848ef3b2b48b8af9ff08c5b71ecda8048b7dd22d8a33f60be32", size = 5304084, upload-time = "2026-02-11T04:20:27.501Z" }, + { url = "https://files.pythonhosted.org/packages/78/93/a29e9bc02d1cf557a834da780ceccd54e02421627200696fcf805ebdc3fb/pillow-12.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:365b10bb9417dd4498c0e3b128018c4a624dc11c7b97d8cc54effe3b096f4c38", size = 4657866, upload-time = "2026-02-11T04:20:29.827Z" }, + { url = "https://files.pythonhosted.org/packages/13/84/583a4558d492a179d31e4aae32eadce94b9acf49c0337c4ce0b70e0a01f2/pillow-12.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d4ce8e329c93845720cd2014659ca67eac35f6433fd3050393d85f3ecef0dad5", size = 6232148, upload-time = "2026-02-11T04:20:31.329Z" }, + { url = "https://files.pythonhosted.org/packages/d5/e2/53c43334bbbb2d3b938978532fbda8e62bb6e0b23a26ce8592f36bcc4987/pillow-12.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc354a04072b765eccf2204f588a7a532c9511e8b9c7f900e1b64e3e33487090", size = 8038007, upload-time = "2026-02-11T04:20:34.225Z" }, + { url = "https://files.pythonhosted.org/packages/b8/a6/3d0e79c8a9d58150dd98e199d7c1c56861027f3829a3a60b3c2784190180/pillow-12.1.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7e7976bf1910a8116b523b9f9f58bf410f3e8aa330cd9a2bb2953f9266ab49af", size = 6345418, upload-time = "2026-02-11T04:20:35.858Z" }, + { url = "https://files.pythonhosted.org/packages/a2/c8/46dfeac5825e600579157eea177be43e2f7ff4a99da9d0d0a49533509ac5/pillow-12.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:597bd9c8419bc7c6af5604e55847789b69123bbe25d65cc6ad3012b4f3c98d8b", size = 7034590, upload-time = "2026-02-11T04:20:37.91Z" }, + { url = "https://files.pythonhosted.org/packages/af/bf/e6f65d3db8a8bbfeaf9e13cc0417813f6319863a73de934f14b2229ada18/pillow-12.1.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2c1fc0f2ca5f96a3c8407e41cca26a16e46b21060fe6d5b099d2cb01412222f5", size = 6458655, upload-time = "2026-02-11T04:20:39.496Z" }, + { url = "https://files.pythonhosted.org/packages/f9/c2/66091f3f34a25894ca129362e510b956ef26f8fb67a0e6417bc5744e56f1/pillow-12.1.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:578510d88c6229d735855e1f278aa305270438d36a05031dfaae5067cc8eb04d", size = 7159286, upload-time = "2026-02-11T04:20:41.139Z" }, + { url = "https://files.pythonhosted.org/packages/7b/5a/24bc8eb526a22f957d0cec6243146744966d40857e3d8deb68f7902ca6c1/pillow-12.1.1-cp311-cp311-win32.whl", hash = "sha256:7311c0a0dcadb89b36b7025dfd8326ecfa36964e29913074d47382706e516a7c", size = 6328663, upload-time = "2026-02-11T04:20:43.184Z" }, + { url = "https://files.pythonhosted.org/packages/31/03/bef822e4f2d8f9d7448c133d0a18185d3cce3e70472774fffefe8b0ed562/pillow-12.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:fbfa2a7c10cc2623f412753cddf391c7f971c52ca40a3f65dc5039b2939e8563", size = 7031448, upload-time = "2026-02-11T04:20:44.696Z" }, + { url = "https://files.pythonhosted.org/packages/49/70/f76296f53610bd17b2e7d31728b8b7825e3ac3b5b3688b51f52eab7c0818/pillow-12.1.1-cp311-cp311-win_arm64.whl", hash = "sha256:b81b5e3511211631b3f672a595e3221252c90af017e399056d0faabb9538aa80", size = 2453651, upload-time = "2026-02-11T04:20:46.243Z" }, + { url = "https://files.pythonhosted.org/packages/07/d3/8df65da0d4df36b094351dce696f2989bec731d4f10e743b1c5f4da4d3bf/pillow-12.1.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ab323b787d6e18b3d91a72fc99b1a2c28651e4358749842b8f8dfacd28ef2052", size = 5262803, upload-time = "2026-02-11T04:20:47.653Z" }, + { url = "https://files.pythonhosted.org/packages/d6/71/5026395b290ff404b836e636f51d7297e6c83beceaa87c592718747e670f/pillow-12.1.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:adebb5bee0f0af4909c30db0d890c773d1a92ffe83da908e2e9e720f8edf3984", size = 4657601, upload-time = "2026-02-11T04:20:49.328Z" }, + { url = "https://files.pythonhosted.org/packages/b1/2e/1001613d941c67442f745aff0f7cc66dd8df9a9c084eb497e6a543ee6f7e/pillow-12.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:bb66b7cc26f50977108790e2456b7921e773f23db5630261102233eb355a3b79", size = 6234995, upload-time = "2026-02-11T04:20:51.032Z" }, + { url = "https://files.pythonhosted.org/packages/07/26/246ab11455b2549b9233dbd44d358d033a2f780fa9007b61a913c5b2d24e/pillow-12.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:aee2810642b2898bb187ced9b349e95d2a7272930796e022efaf12e99dccd293", size = 8045012, upload-time = "2026-02-11T04:20:52.882Z" }, + { url = "https://files.pythonhosted.org/packages/b2/8b/07587069c27be7535ac1fe33874e32de118fbd34e2a73b7f83436a88368c/pillow-12.1.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a0b1cd6232e2b618adcc54d9882e4e662a089d5768cd188f7c245b4c8c44a397", size = 6349638, upload-time = "2026-02-11T04:20:54.444Z" }, + { url = "https://files.pythonhosted.org/packages/ff/79/6df7b2ee763d619cda2fb4fea498e5f79d984dae304d45a8999b80d6cf5c/pillow-12.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7aac39bcf8d4770d089588a2e1dd111cbaa42df5a94be3114222057d68336bd0", size = 7041540, upload-time = "2026-02-11T04:20:55.97Z" }, + { url = "https://files.pythonhosted.org/packages/2c/5e/2ba19e7e7236d7529f4d873bdaf317a318896bac289abebd4bb00ef247f0/pillow-12.1.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ab174cd7d29a62dd139c44bf74b698039328f45cb03b4596c43473a46656b2f3", size = 6462613, upload-time = "2026-02-11T04:20:57.542Z" }, + { url = "https://files.pythonhosted.org/packages/03/03/31216ec124bb5c3dacd74ce8efff4cc7f52643653bad4825f8f08c697743/pillow-12.1.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:339ffdcb7cbeaa08221cd401d517d4b1fe7a9ed5d400e4a8039719238620ca35", size = 7166745, upload-time = "2026-02-11T04:20:59.196Z" }, + { url = "https://files.pythonhosted.org/packages/1f/e7/7c4552d80052337eb28653b617eafdef39adfb137c49dd7e831b8dc13bc5/pillow-12.1.1-cp312-cp312-win32.whl", hash = "sha256:5d1f9575a12bed9e9eedd9a4972834b08c97a352bd17955ccdebfeca5913fa0a", size = 6328823, upload-time = "2026-02-11T04:21:01.385Z" }, + { url = "https://files.pythonhosted.org/packages/3d/17/688626d192d7261bbbf98846fc98995726bddc2c945344b65bec3a29d731/pillow-12.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:21329ec8c96c6e979cd0dfd29406c40c1d52521a90544463057d2aaa937d66a6", size = 7033367, upload-time = "2026-02-11T04:21:03.536Z" }, + { url = "https://files.pythonhosted.org/packages/ed/fe/a0ef1f73f939b0eca03ee2c108d0043a87468664770612602c63266a43c4/pillow-12.1.1-cp312-cp312-win_arm64.whl", hash = "sha256:af9a332e572978f0218686636610555ae3defd1633597be015ed50289a03c523", size = 2453811, upload-time = "2026-02-11T04:21:05.116Z" }, + { url = "https://files.pythonhosted.org/packages/d5/11/6db24d4bd7685583caeae54b7009584e38da3c3d4488ed4cd25b439de486/pillow-12.1.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:d242e8ac078781f1de88bf823d70c1a9b3c7950a44cdf4b7c012e22ccbcd8e4e", size = 4062689, upload-time = "2026-02-11T04:21:06.804Z" }, + { url = "https://files.pythonhosted.org/packages/33/c0/ce6d3b1fe190f0021203e0d9b5b99e57843e345f15f9ef22fcd43842fd21/pillow-12.1.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:02f84dfad02693676692746df05b89cf25597560db2857363a208e393429f5e9", size = 4138535, upload-time = "2026-02-11T04:21:08.452Z" }, + { url = "https://files.pythonhosted.org/packages/a0/c6/d5eb6a4fb32a3f9c21a8c7613ec706534ea1cf9f4b3663e99f0d83f6fca8/pillow-12.1.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:e65498daf4b583091ccbb2556c7000abf0f3349fcd57ef7adc9a84a394ed29f6", size = 3601364, upload-time = "2026-02-11T04:21:10.194Z" }, + { url = "https://files.pythonhosted.org/packages/14/a1/16c4b823838ba4c9c52c0e6bbda903a3fe5a1bdbf1b8eb4fff7156f3e318/pillow-12.1.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6c6db3b84c87d48d0088943bf33440e0c42370b99b1c2a7989216f7b42eede60", size = 5262561, upload-time = "2026-02-11T04:21:11.742Z" }, + { url = "https://files.pythonhosted.org/packages/bb/ad/ad9dc98ff24f485008aa5cdedaf1a219876f6f6c42a4626c08bc4e80b120/pillow-12.1.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8b7e5304e34942bf62e15184219a7b5ad4ff7f3bb5cca4d984f37df1a0e1aee2", size = 4657460, upload-time = "2026-02-11T04:21:13.786Z" }, + { url = "https://files.pythonhosted.org/packages/9e/1b/f1a4ea9a895b5732152789326202a82464d5254759fbacae4deea3069334/pillow-12.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:18e5bddd742a44b7e6b1e773ab5db102bd7a94c32555ba656e76d319d19c3850", size = 6232698, upload-time = "2026-02-11T04:21:15.949Z" }, + { url = "https://files.pythonhosted.org/packages/95/f4/86f51b8745070daf21fd2e5b1fe0eb35d4db9ca26e6d58366562fb56a743/pillow-12.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc44ef1f3de4f45b50ccf9136999d71abb99dca7706bc75d222ed350b9fd2289", size = 8041706, upload-time = "2026-02-11T04:21:17.723Z" }, + { url = "https://files.pythonhosted.org/packages/29/9b/d6ecd956bb1266dd1045e995cce9b8d77759e740953a1c9aad9502a0461e/pillow-12.1.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5a8eb7ed8d4198bccbd07058416eeec51686b498e784eda166395a23eb99138e", size = 6346621, upload-time = "2026-02-11T04:21:19.547Z" }, + { url = "https://files.pythonhosted.org/packages/71/24/538bff45bde96535d7d998c6fed1a751c75ac7c53c37c90dc2601b243893/pillow-12.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:47b94983da0c642de92ced1702c5b6c292a84bd3a8e1d1702ff923f183594717", size = 7038069, upload-time = "2026-02-11T04:21:21.378Z" }, + { url = "https://files.pythonhosted.org/packages/94/0e/58cb1a6bc48f746bc4cb3adb8cabff73e2742c92b3bf7a220b7cf69b9177/pillow-12.1.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:518a48c2aab7ce596d3bf79d0e275661b846e86e4d0e7dec34712c30fe07f02a", size = 6460040, upload-time = "2026-02-11T04:21:23.148Z" }, + { url = "https://files.pythonhosted.org/packages/6c/57/9045cb3ff11eeb6c1adce3b2d60d7d299d7b273a2e6c8381a524abfdc474/pillow-12.1.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a550ae29b95c6dc13cf69e2c9dc5747f814c54eeb2e32d683e5e93af56caa029", size = 7164523, upload-time = "2026-02-11T04:21:25.01Z" }, + { url = "https://files.pythonhosted.org/packages/73/f2/9be9cb99f2175f0d4dbadd6616ce1bf068ee54a28277ea1bf1fbf729c250/pillow-12.1.1-cp313-cp313-win32.whl", hash = "sha256:a003d7422449f6d1e3a34e3dd4110c22148336918ddbfc6a32581cd54b2e0b2b", size = 6332552, upload-time = "2026-02-11T04:21:27.238Z" }, + { url = "https://files.pythonhosted.org/packages/3f/eb/b0834ad8b583d7d9d42b80becff092082a1c3c156bb582590fcc973f1c7c/pillow-12.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:344cf1e3dab3be4b1fa08e449323d98a2a3f819ad20f4b22e77a0ede31f0faa1", size = 7040108, upload-time = "2026-02-11T04:21:29.462Z" }, + { url = "https://files.pythonhosted.org/packages/d5/7d/fc09634e2aabdd0feabaff4a32f4a7d97789223e7c2042fd805ea4b4d2c2/pillow-12.1.1-cp313-cp313-win_arm64.whl", hash = "sha256:5c0dd1636633e7e6a0afe7bf6a51a14992b7f8e60de5789018ebbdfae55b040a", size = 2453712, upload-time = "2026-02-11T04:21:31.072Z" }, + { url = "https://files.pythonhosted.org/packages/19/2a/b9d62794fc8a0dd14c1943df68347badbd5511103e0d04c035ffe5cf2255/pillow-12.1.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0330d233c1a0ead844fc097a7d16c0abff4c12e856c0b325f231820fee1f39da", size = 5264880, upload-time = "2026-02-11T04:21:32.865Z" }, + { url = "https://files.pythonhosted.org/packages/26/9d/e03d857d1347fa5ed9247e123fcd2a97b6220e15e9cb73ca0a8d91702c6e/pillow-12.1.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5dae5f21afb91322f2ff791895ddd8889e5e947ff59f71b46041c8ce6db790bc", size = 4660616, upload-time = "2026-02-11T04:21:34.97Z" }, + { url = "https://files.pythonhosted.org/packages/f7/ec/8a6d22afd02570d30954e043f09c32772bfe143ba9285e2fdb11284952cd/pillow-12.1.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2e0c664be47252947d870ac0d327fea7e63985a08794758aa8af5b6cb6ec0c9c", size = 6269008, upload-time = "2026-02-11T04:21:36.623Z" }, + { url = "https://files.pythonhosted.org/packages/3d/1d/6d875422c9f28a4a361f495a5f68d9de4a66941dc2c619103ca335fa6446/pillow-12.1.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:691ab2ac363b8217f7d31b3497108fb1f50faab2f75dfb03284ec2f217e87bf8", size = 8073226, upload-time = "2026-02-11T04:21:38.585Z" }, + { url = "https://files.pythonhosted.org/packages/a1/cd/134b0b6ee5eda6dc09e25e24b40fdafe11a520bc725c1d0bbaa5e00bf95b/pillow-12.1.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e9e8064fb1cc019296958595f6db671fba95209e3ceb0c4734c9baf97de04b20", size = 6380136, upload-time = "2026-02-11T04:21:40.562Z" }, + { url = "https://files.pythonhosted.org/packages/7a/a9/7628f013f18f001c1b98d8fffe3452f306a70dc6aba7d931019e0492f45e/pillow-12.1.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:472a8d7ded663e6162dafdf20015c486a7009483ca671cece7a9279b512fcb13", size = 7067129, upload-time = "2026-02-11T04:21:42.521Z" }, + { url = "https://files.pythonhosted.org/packages/1e/f8/66ab30a2193b277785601e82ee2d49f68ea575d9637e5e234faaa98efa4c/pillow-12.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:89b54027a766529136a06cfebeecb3a04900397a3590fd252160b888479517bf", size = 6491807, upload-time = "2026-02-11T04:21:44.22Z" }, + { url = "https://files.pythonhosted.org/packages/da/0b/a877a6627dc8318fdb84e357c5e1a758c0941ab1ddffdafd231983788579/pillow-12.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:86172b0831b82ce4f7877f280055892b31179e1576aa00d0df3bb1bbf8c3e524", size = 7190954, upload-time = "2026-02-11T04:21:46.114Z" }, + { url = "https://files.pythonhosted.org/packages/83/43/6f732ff85743cf746b1361b91665d9f5155e1483817f693f8d57ea93147f/pillow-12.1.1-cp313-cp313t-win32.whl", hash = "sha256:44ce27545b6efcf0fdbdceb31c9a5bdea9333e664cda58a7e674bb74608b3986", size = 6336441, upload-time = "2026-02-11T04:21:48.22Z" }, + { url = "https://files.pythonhosted.org/packages/3b/44/e865ef3986611bb75bfabdf94a590016ea327833f434558801122979cd0e/pillow-12.1.1-cp313-cp313t-win_amd64.whl", hash = "sha256:a285e3eb7a5a45a2ff504e31f4a8d1b12ef62e84e5411c6804a42197c1cf586c", size = 7045383, upload-time = "2026-02-11T04:21:50.015Z" }, + { url = "https://files.pythonhosted.org/packages/a8/c6/f4fb24268d0c6908b9f04143697ea18b0379490cb74ba9e8d41b898bd005/pillow-12.1.1-cp313-cp313t-win_arm64.whl", hash = "sha256:cc7d296b5ea4d29e6570dabeaed58d31c3fea35a633a69679fb03d7664f43fb3", size = 2456104, upload-time = "2026-02-11T04:21:51.633Z" }, + { url = "https://files.pythonhosted.org/packages/03/d0/bebb3ffbf31c5a8e97241476c4cf8b9828954693ce6744b4a2326af3e16b/pillow-12.1.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:417423db963cb4be8bac3fc1204fe61610f6abeed1580a7a2cbb2fbda20f12af", size = 4062652, upload-time = "2026-02-11T04:21:53.19Z" }, + { url = "https://files.pythonhosted.org/packages/2d/c0/0e16fb0addda4851445c28f8350d8c512f09de27bbb0d6d0bbf8b6709605/pillow-12.1.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:b957b71c6b2387610f556a7eb0828afbe40b4a98036fc0d2acfa5a44a0c2036f", size = 4138823, upload-time = "2026-02-11T04:22:03.088Z" }, + { url = "https://files.pythonhosted.org/packages/6b/fb/6170ec655d6f6bb6630a013dd7cf7bc218423d7b5fa9071bf63dc32175ae/pillow-12.1.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:097690ba1f2efdeb165a20469d59d8bb03c55fb6621eb2041a060ae8ea3e9642", size = 3601143, upload-time = "2026-02-11T04:22:04.909Z" }, + { url = "https://files.pythonhosted.org/packages/59/04/dc5c3f297510ba9a6837cbb318b87dd2b8f73eb41a43cc63767f65cb599c/pillow-12.1.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:2815a87ab27848db0321fb78c7f0b2c8649dee134b7f2b80c6a45c6831d75ccd", size = 5266254, upload-time = "2026-02-11T04:22:07.656Z" }, + { url = "https://files.pythonhosted.org/packages/05/30/5db1236b0d6313f03ebf97f5e17cda9ca060f524b2fcc875149a8360b21c/pillow-12.1.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:f7ed2c6543bad5a7d5530eb9e78c53132f93dfa44a28492db88b41cdab885202", size = 4657499, upload-time = "2026-02-11T04:22:09.613Z" }, + { url = "https://files.pythonhosted.org/packages/6f/18/008d2ca0eb612e81968e8be0bbae5051efba24d52debf930126d7eaacbba/pillow-12.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:652a2c9ccfb556235b2b501a3a7cf3742148cd22e04b5625c5fe057ea3e3191f", size = 6232137, upload-time = "2026-02-11T04:22:11.434Z" }, + { url = "https://files.pythonhosted.org/packages/70/f1/f14d5b8eeb4b2cd62b9f9f847eb6605f103df89ef619ac68f92f748614ea/pillow-12.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d6e4571eedf43af33d0fc233a382a76e849badbccdf1ac438841308652a08e1f", size = 8042721, upload-time = "2026-02-11T04:22:13.321Z" }, + { url = "https://files.pythonhosted.org/packages/5a/d6/17824509146e4babbdabf04d8171491fa9d776f7061ff6e727522df9bd03/pillow-12.1.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b574c51cf7d5d62e9be37ba446224b59a2da26dc4c1bb2ecbe936a4fb1a7cb7f", size = 6347798, upload-time = "2026-02-11T04:22:15.449Z" }, + { url = "https://files.pythonhosted.org/packages/d1/ee/c85a38a9ab92037a75615aba572c85ea51e605265036e00c5b67dfafbfe2/pillow-12.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a37691702ed687799de29a518d63d4682d9016932db66d4e90c345831b02fb4e", size = 7039315, upload-time = "2026-02-11T04:22:17.24Z" }, + { url = "https://files.pythonhosted.org/packages/ec/f3/bc8ccc6e08a148290d7523bde4d9a0d6c981db34631390dc6e6ec34cacf6/pillow-12.1.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:f95c00d5d6700b2b890479664a06e754974848afaae5e21beb4d83c106923fd0", size = 6462360, upload-time = "2026-02-11T04:22:19.111Z" }, + { url = "https://files.pythonhosted.org/packages/f6/ab/69a42656adb1d0665ab051eec58a41f169ad295cf81ad45406963105408f/pillow-12.1.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:559b38da23606e68681337ad74622c4dbba02254fc9cb4488a305dd5975c7eeb", size = 7165438, upload-time = "2026-02-11T04:22:21.041Z" }, + { url = "https://files.pythonhosted.org/packages/02/46/81f7aa8941873f0f01d4b55cc543b0a3d03ec2ee30d617a0448bf6bd6dec/pillow-12.1.1-cp314-cp314-win32.whl", hash = "sha256:03edcc34d688572014ff223c125a3f77fb08091e4607e7745002fc214070b35f", size = 6431503, upload-time = "2026-02-11T04:22:22.833Z" }, + { url = "https://files.pythonhosted.org/packages/40/72/4c245f7d1044b67affc7f134a09ea619d4895333d35322b775b928180044/pillow-12.1.1-cp314-cp314-win_amd64.whl", hash = "sha256:50480dcd74fa63b8e78235957d302d98d98d82ccbfac4c7e12108ba9ecbdba15", size = 7176748, upload-time = "2026-02-11T04:22:24.64Z" }, + { url = "https://files.pythonhosted.org/packages/e4/ad/8a87bdbe038c5c698736e3348af5c2194ffb872ea52f11894c95f9305435/pillow-12.1.1-cp314-cp314-win_arm64.whl", hash = "sha256:5cb1785d97b0c3d1d1a16bc1d710c4a0049daefc4935f3a8f31f827f4d3d2e7f", size = 2544314, upload-time = "2026-02-11T04:22:26.685Z" }, + { url = "https://files.pythonhosted.org/packages/6c/9d/efd18493f9de13b87ede7c47e69184b9e859e4427225ea962e32e56a49bc/pillow-12.1.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:1f90cff8aa76835cba5769f0b3121a22bd4eb9e6884cfe338216e557a9a548b8", size = 5268612, upload-time = "2026-02-11T04:22:29.884Z" }, + { url = "https://files.pythonhosted.org/packages/f8/f1/4f42eb2b388eb2ffc660dcb7f7b556c1015c53ebd5f7f754965ef997585b/pillow-12.1.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1f1be78ce9466a7ee64bfda57bdba0f7cc499d9794d518b854816c41bf0aa4e9", size = 4660567, upload-time = "2026-02-11T04:22:31.799Z" }, + { url = "https://files.pythonhosted.org/packages/01/54/df6ef130fa43e4b82e32624a7b821a2be1c5653a5fdad8469687a7db4e00/pillow-12.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:42fc1f4677106188ad9a55562bbade416f8b55456f522430fadab3cef7cd4e60", size = 6269951, upload-time = "2026-02-11T04:22:33.921Z" }, + { url = "https://files.pythonhosted.org/packages/a9/48/618752d06cc44bb4aae8ce0cd4e6426871929ed7b46215638088270d9b34/pillow-12.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:98edb152429ab62a1818039744d8fbb3ccab98a7c29fc3d5fcef158f3f1f68b7", size = 8074769, upload-time = "2026-02-11T04:22:35.877Z" }, + { url = "https://files.pythonhosted.org/packages/c3/bd/f1d71eb39a72fa088d938655afba3e00b38018d052752f435838961127d8/pillow-12.1.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d470ab1178551dd17fdba0fef463359c41aaa613cdcd7ff8373f54be629f9f8f", size = 6381358, upload-time = "2026-02-11T04:22:37.698Z" }, + { url = "https://files.pythonhosted.org/packages/64/ef/c784e20b96674ed36a5af839305f55616f8b4f8aa8eeccf8531a6e312243/pillow-12.1.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6408a7b064595afcab0a49393a413732a35788f2a5092fdc6266952ed67de586", size = 7068558, upload-time = "2026-02-11T04:22:39.597Z" }, + { url = "https://files.pythonhosted.org/packages/73/cb/8059688b74422ae61278202c4e1ad992e8a2e7375227be0a21c6b87ca8d5/pillow-12.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:5d8c41325b382c07799a3682c1c258469ea2ff97103c53717b7893862d0c98ce", size = 6493028, upload-time = "2026-02-11T04:22:42.73Z" }, + { url = "https://files.pythonhosted.org/packages/c6/da/e3c008ed7d2dd1f905b15949325934510b9d1931e5df999bb15972756818/pillow-12.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:c7697918b5be27424e9ce568193efd13d925c4481dd364e43f5dff72d33e10f8", size = 7191940, upload-time = "2026-02-11T04:22:44.543Z" }, + { url = "https://files.pythonhosted.org/packages/01/4a/9202e8d11714c1fc5951f2e1ef362f2d7fbc595e1f6717971d5dd750e969/pillow-12.1.1-cp314-cp314t-win32.whl", hash = "sha256:d2912fd8114fc5545aa3a4b5576512f64c55a03f3ebcca4c10194d593d43ea36", size = 6438736, upload-time = "2026-02-11T04:22:46.347Z" }, + { url = "https://files.pythonhosted.org/packages/f3/ca/cbce2327eb9885476b3957b2e82eb12c866a8b16ad77392864ad601022ce/pillow-12.1.1-cp314-cp314t-win_amd64.whl", hash = "sha256:4ceb838d4bd9dab43e06c363cab2eebf63846d6a4aeaea283bbdfd8f1a8ed58b", size = 7182894, upload-time = "2026-02-11T04:22:48.114Z" }, + { url = "https://files.pythonhosted.org/packages/ec/d2/de599c95ba0a973b94410477f8bf0b6f0b5e67360eb89bcb1ad365258beb/pillow-12.1.1-cp314-cp314t-win_arm64.whl", hash = "sha256:7b03048319bfc6170e93bd60728a1af51d3dd7704935feb228c4d4faab35d334", size = 2546446, upload-time = "2026-02-11T04:22:50.342Z" }, + { url = "https://files.pythonhosted.org/packages/56/11/5d43209aa4cb58e0cc80127956ff1796a68b928e6324bbf06ef4db34367b/pillow-12.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:600fd103672b925fe62ed08e0d874ea34d692474df6f4bf7ebe148b30f89f39f", size = 5228606, upload-time = "2026-02-11T04:22:52.106Z" }, + { url = "https://files.pythonhosted.org/packages/5f/d5/3b005b4e4fda6698b371fa6c21b097d4707585d7db99e98d9b0b87ac612a/pillow-12.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:665e1b916b043cef294bc54d47bf02d87e13f769bc4bc5fa225a24b3a6c5aca9", size = 4622321, upload-time = "2026-02-11T04:22:53.827Z" }, + { url = "https://files.pythonhosted.org/packages/df/36/ed3ea2d594356fd8037e5a01f6156c74bc8d92dbb0fa60746cc96cabb6e8/pillow-12.1.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:495c302af3aad1ca67420ddd5c7bd480c8867ad173528767d906428057a11f0e", size = 5247579, upload-time = "2026-02-11T04:22:56.094Z" }, + { url = "https://files.pythonhosted.org/packages/54/9a/9cc3e029683cf6d20ae5085da0dafc63148e3252c2f13328e553aaa13cfb/pillow-12.1.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8fd420ef0c52c88b5a035a0886f367748c72147b2b8f384c9d12656678dfdfa9", size = 6989094, upload-time = "2026-02-11T04:22:58.288Z" }, + { url = "https://files.pythonhosted.org/packages/00/98/fc53ab36da80b88df0967896b6c4b4cd948a0dc5aa40a754266aa3ae48b3/pillow-12.1.1-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f975aa7ef9684ce7e2c18a3aa8f8e2106ce1e46b94ab713d156b2898811651d3", size = 5313850, upload-time = "2026-02-11T04:23:00.554Z" }, + { url = "https://files.pythonhosted.org/packages/30/02/00fa585abfd9fe9d73e5f6e554dc36cc2b842898cbfc46d70353dae227f8/pillow-12.1.1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8089c852a56c2966cf18835db62d9b34fef7ba74c726ad943928d494fa7f4735", size = 5963343, upload-time = "2026-02-11T04:23:02.934Z" }, + { url = "https://files.pythonhosted.org/packages/f2/26/c56ce33ca856e358d27fda9676c055395abddb82c35ac0f593877ed4562e/pillow-12.1.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:cb9bb857b2d057c6dfc72ac5f3b44836924ba15721882ef103cecb40d002d80e", size = 7029880, upload-time = "2026-02-11T04:23:04.783Z" }, ] + +[[package]] +name = "pluggy" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" }, +] + +[[package]] +name = "polars" +version = "1.39.0" +source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, - { name = "python-dateutil", marker = "python_full_version < '3.11'" }, - { name = "pytz", marker = "python_full_version < '3.11'" }, - { name = "tzdata", marker = "python_full_version < '3.11'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/33/01/d40b85317f86cf08d853a4f495195c73815fdf205eef3993821720274518/pandas-2.3.3.tar.gz", hash = "sha256:e05e1af93b977f7eafa636d043f9f94c7ee3ac81af99c13508215942e64c993b", size = 4495223, upload-time = "2025-09-29T23:34:51.853Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3d/f7/f425a00df4fcc22b292c6895c6831c0c8ae1d9fac1e024d16f98a9ce8749/pandas-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:376c6446ae31770764215a6c937f72d917f214b43560603cd60da6408f183b6c", size = 11555763, upload-time = "2025-09-29T23:16:53.287Z" }, - { url = "https://files.pythonhosted.org/packages/13/4f/66d99628ff8ce7857aca52fed8f0066ce209f96be2fede6cef9f84e8d04f/pandas-2.3.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e19d192383eab2f4ceb30b412b22ea30690c9e618f78870357ae1d682912015a", size = 10801217, upload-time = "2025-09-29T23:17:04.522Z" }, - { url = "https://files.pythonhosted.org/packages/1d/03/3fc4a529a7710f890a239cc496fc6d50ad4a0995657dccc1d64695adb9f4/pandas-2.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5caf26f64126b6c7aec964f74266f435afef1c1b13da3b0636c7518a1fa3e2b1", size = 12148791, upload-time = "2025-09-29T23:17:18.444Z" }, - { url = "https://files.pythonhosted.org/packages/40/a8/4dac1f8f8235e5d25b9955d02ff6f29396191d4e665d71122c3722ca83c5/pandas-2.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dd7478f1463441ae4ca7308a70e90b33470fa593429f9d4c578dd00d1fa78838", size = 12769373, upload-time = "2025-09-29T23:17:35.846Z" }, - { url = "https://files.pythonhosted.org/packages/df/91/82cc5169b6b25440a7fc0ef3a694582418d875c8e3ebf796a6d6470aa578/pandas-2.3.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4793891684806ae50d1288c9bae9330293ab4e083ccd1c5e383c34549c6e4250", size = 13200444, upload-time = "2025-09-29T23:17:49.341Z" }, - { url = "https://files.pythonhosted.org/packages/10/ae/89b3283800ab58f7af2952704078555fa60c807fff764395bb57ea0b0dbd/pandas-2.3.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:28083c648d9a99a5dd035ec125d42439c6c1c525098c58af0fc38dd1a7a1b3d4", size = 13858459, upload-time = "2025-09-29T23:18:03.722Z" }, - { url = "https://files.pythonhosted.org/packages/85/72/530900610650f54a35a19476eca5104f38555afccda1aa11a92ee14cb21d/pandas-2.3.3-cp310-cp310-win_amd64.whl", hash = "sha256:503cf027cf9940d2ceaa1a93cfb5f8c8c7e6e90720a2850378f0b3f3b1e06826", size = 11346086, upload-time = "2025-09-29T23:18:18.505Z" }, - { url = "https://files.pythonhosted.org/packages/c1/fa/7ac648108144a095b4fb6aa3de1954689f7af60a14cf25583f4960ecb878/pandas-2.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:602b8615ebcc4a0c1751e71840428ddebeb142ec02c786e8ad6b1ce3c8dec523", size = 11578790, upload-time = "2025-09-29T23:18:30.065Z" }, - { url = "https://files.pythonhosted.org/packages/9b/35/74442388c6cf008882d4d4bdfc4109be87e9b8b7ccd097ad1e7f006e2e95/pandas-2.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8fe25fc7b623b0ef6b5009149627e34d2a4657e880948ec3c840e9402e5c1b45", size = 10833831, upload-time = "2025-09-29T23:38:56.071Z" }, - { url = "https://files.pythonhosted.org/packages/fe/e4/de154cbfeee13383ad58d23017da99390b91d73f8c11856f2095e813201b/pandas-2.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b468d3dad6ff947df92dcb32ede5b7bd41a9b3cceef0a30ed925f6d01fb8fa66", size = 12199267, upload-time = "2025-09-29T23:18:41.627Z" }, - { url = "https://files.pythonhosted.org/packages/bf/c9/63f8d545568d9ab91476b1818b4741f521646cbdd151c6efebf40d6de6f7/pandas-2.3.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b98560e98cb334799c0b07ca7967ac361a47326e9b4e5a7dfb5ab2b1c9d35a1b", size = 12789281, upload-time = "2025-09-29T23:18:56.834Z" }, - { url = "https://files.pythonhosted.org/packages/f2/00/a5ac8c7a0e67fd1a6059e40aa08fa1c52cc00709077d2300e210c3ce0322/pandas-2.3.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d37b5848ba49824e5c30bedb9c830ab9b7751fd049bc7914533e01c65f79791", size = 13240453, upload-time = "2025-09-29T23:19:09.247Z" }, - { url = "https://files.pythonhosted.org/packages/27/4d/5c23a5bc7bd209231618dd9e606ce076272c9bc4f12023a70e03a86b4067/pandas-2.3.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:db4301b2d1f926ae677a751eb2bd0e8c5f5319c9cb3f88b0becbbb0b07b34151", size = 13890361, upload-time = "2025-09-29T23:19:25.342Z" }, - { url = "https://files.pythonhosted.org/packages/8e/59/712db1d7040520de7a4965df15b774348980e6df45c129b8c64d0dbe74ef/pandas-2.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:f086f6fe114e19d92014a1966f43a3e62285109afe874f067f5abbdcbb10e59c", size = 11348702, upload-time = "2025-09-29T23:19:38.296Z" }, - { url = "https://files.pythonhosted.org/packages/9c/fb/231d89e8637c808b997d172b18e9d4a4bc7bf31296196c260526055d1ea0/pandas-2.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d21f6d74eb1725c2efaa71a2bfc661a0689579b58e9c0ca58a739ff0b002b53", size = 11597846, upload-time = "2025-09-29T23:19:48.856Z" }, - { url = "https://files.pythonhosted.org/packages/5c/bd/bf8064d9cfa214294356c2d6702b716d3cf3bb24be59287a6a21e24cae6b/pandas-2.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3fd2f887589c7aa868e02632612ba39acb0b8948faf5cc58f0850e165bd46f35", size = 10729618, upload-time = "2025-09-29T23:39:08.659Z" }, - { url = "https://files.pythonhosted.org/packages/57/56/cf2dbe1a3f5271370669475ead12ce77c61726ffd19a35546e31aa8edf4e/pandas-2.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ecaf1e12bdc03c86ad4a7ea848d66c685cb6851d807a26aa245ca3d2017a1908", size = 11737212, upload-time = "2025-09-29T23:19:59.765Z" }, - { url = "https://files.pythonhosted.org/packages/e5/63/cd7d615331b328e287d8233ba9fdf191a9c2d11b6af0c7a59cfcec23de68/pandas-2.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b3d11d2fda7eb164ef27ffc14b4fcab16a80e1ce67e9f57e19ec0afaf715ba89", size = 12362693, upload-time = "2025-09-29T23:20:14.098Z" }, - { url = "https://files.pythonhosted.org/packages/a6/de/8b1895b107277d52f2b42d3a6806e69cfef0d5cf1d0ba343470b9d8e0a04/pandas-2.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a68e15f780eddf2b07d242e17a04aa187a7ee12b40b930bfdd78070556550e98", size = 12771002, upload-time = "2025-09-29T23:20:26.76Z" }, - { url = "https://files.pythonhosted.org/packages/87/21/84072af3187a677c5893b170ba2c8fbe450a6ff911234916da889b698220/pandas-2.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:371a4ab48e950033bcf52b6527eccb564f52dc826c02afd9a1bc0ab731bba084", size = 13450971, upload-time = "2025-09-29T23:20:41.344Z" }, - { url = "https://files.pythonhosted.org/packages/86/41/585a168330ff063014880a80d744219dbf1dd7a1c706e75ab3425a987384/pandas-2.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:a16dcec078a01eeef8ee61bf64074b4e524a2a3f4b3be9326420cabe59c4778b", size = 10992722, upload-time = "2025-09-29T23:20:54.139Z" }, - { url = "https://files.pythonhosted.org/packages/cd/4b/18b035ee18f97c1040d94debd8f2e737000ad70ccc8f5513f4eefad75f4b/pandas-2.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56851a737e3470de7fa88e6131f41281ed440d29a9268dcbf0002da5ac366713", size = 11544671, upload-time = "2025-09-29T23:21:05.024Z" }, - { url = "https://files.pythonhosted.org/packages/31/94/72fac03573102779920099bcac1c3b05975c2cb5f01eac609faf34bed1ca/pandas-2.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bdcd9d1167f4885211e401b3036c0c8d9e274eee67ea8d0758a256d60704cfe8", size = 10680807, upload-time = "2025-09-29T23:21:15.979Z" }, - { url = "https://files.pythonhosted.org/packages/16/87/9472cf4a487d848476865321de18cc8c920b8cab98453ab79dbbc98db63a/pandas-2.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e32e7cc9af0f1cc15548288a51a3b681cc2a219faa838e995f7dc53dbab1062d", size = 11709872, upload-time = "2025-09-29T23:21:27.165Z" }, - { url = "https://files.pythonhosted.org/packages/15/07/284f757f63f8a8d69ed4472bfd85122bd086e637bf4ed09de572d575a693/pandas-2.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:318d77e0e42a628c04dc56bcef4b40de67918f7041c2b061af1da41dcff670ac", size = 12306371, upload-time = "2025-09-29T23:21:40.532Z" }, - { url = "https://files.pythonhosted.org/packages/33/81/a3afc88fca4aa925804a27d2676d22dcd2031c2ebe08aabd0ae55b9ff282/pandas-2.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4e0a175408804d566144e170d0476b15d78458795bb18f1304fb94160cabf40c", size = 12765333, upload-time = "2025-09-29T23:21:55.77Z" }, - { url = "https://files.pythonhosted.org/packages/8d/0f/b4d4ae743a83742f1153464cf1a8ecfafc3ac59722a0b5c8602310cb7158/pandas-2.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:93c2d9ab0fc11822b5eece72ec9587e172f63cff87c00b062f6e37448ced4493", size = 13418120, upload-time = "2025-09-29T23:22:10.109Z" }, - { url = "https://files.pythonhosted.org/packages/4f/c7/e54682c96a895d0c808453269e0b5928a07a127a15704fedb643e9b0a4c8/pandas-2.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:f8bfc0e12dc78f777f323f55c58649591b2cd0c43534e8355c51d3fede5f4dee", size = 10993991, upload-time = "2025-09-29T23:25:04.889Z" }, - { url = "https://files.pythonhosted.org/packages/f9/ca/3f8d4f49740799189e1395812f3bf23b5e8fc7c190827d55a610da72ce55/pandas-2.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:75ea25f9529fdec2d2e93a42c523962261e567d250b0013b16210e1d40d7c2e5", size = 12048227, upload-time = "2025-09-29T23:22:24.343Z" }, - { url = "https://files.pythonhosted.org/packages/0e/5a/f43efec3e8c0cc92c4663ccad372dbdff72b60bdb56b2749f04aa1d07d7e/pandas-2.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:74ecdf1d301e812db96a465a525952f4dde225fdb6d8e5a521d47e1f42041e21", size = 11411056, upload-time = "2025-09-29T23:22:37.762Z" }, - { url = "https://files.pythonhosted.org/packages/46/b1/85331edfc591208c9d1a63a06baa67b21d332e63b7a591a5ba42a10bb507/pandas-2.3.3-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6435cb949cb34ec11cc9860246ccb2fdc9ecd742c12d3304989017d53f039a78", size = 11645189, upload-time = "2025-09-29T23:22:51.688Z" }, - { url = "https://files.pythonhosted.org/packages/44/23/78d645adc35d94d1ac4f2a3c4112ab6f5b8999f4898b8cdf01252f8df4a9/pandas-2.3.3-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:900f47d8f20860de523a1ac881c4c36d65efcb2eb850e6948140fa781736e110", size = 12121912, upload-time = "2025-09-29T23:23:05.042Z" }, - { url = "https://files.pythonhosted.org/packages/53/da/d10013df5e6aaef6b425aa0c32e1fc1f3e431e4bcabd420517dceadce354/pandas-2.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a45c765238e2ed7d7c608fc5bc4a6f88b642f2f01e70c0c23d2224dd21829d86", size = 12712160, upload-time = "2025-09-29T23:23:28.57Z" }, - { url = "https://files.pythonhosted.org/packages/bd/17/e756653095a083d8a37cbd816cb87148debcfcd920129b25f99dd8d04271/pandas-2.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c4fc4c21971a1a9f4bdb4c73978c7f7256caa3e62b323f70d6cb80db583350bc", size = 13199233, upload-time = "2025-09-29T23:24:24.876Z" }, - { url = "https://files.pythonhosted.org/packages/04/fd/74903979833db8390b73b3a8a7d30d146d710bd32703724dd9083950386f/pandas-2.3.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:ee15f284898e7b246df8087fc82b87b01686f98ee67d85a17b7ab44143a3a9a0", size = 11540635, upload-time = "2025-09-29T23:25:52.486Z" }, - { url = "https://files.pythonhosted.org/packages/21/00/266d6b357ad5e6d3ad55093a7e8efc7dd245f5a842b584db9f30b0f0a287/pandas-2.3.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1611aedd912e1ff81ff41c745822980c49ce4a7907537be8692c8dbc31924593", size = 10759079, upload-time = "2025-09-29T23:26:33.204Z" }, - { url = "https://files.pythonhosted.org/packages/ca/05/d01ef80a7a3a12b2f8bbf16daba1e17c98a2f039cbc8e2f77a2c5a63d382/pandas-2.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6d2cefc361461662ac48810cb14365a365ce864afe85ef1f447ff5a1e99ea81c", size = 11814049, upload-time = "2025-09-29T23:27:15.384Z" }, - { url = "https://files.pythonhosted.org/packages/15/b2/0e62f78c0c5ba7e3d2c5945a82456f4fac76c480940f805e0b97fcbc2f65/pandas-2.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ee67acbbf05014ea6c763beb097e03cd629961c8a632075eeb34247120abcb4b", size = 12332638, upload-time = "2025-09-29T23:27:51.625Z" }, - { url = "https://files.pythonhosted.org/packages/c5/33/dd70400631b62b9b29c3c93d2feee1d0964dc2bae2e5ad7a6c73a7f25325/pandas-2.3.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c46467899aaa4da076d5abc11084634e2d197e9460643dd455ac3db5856b24d6", size = 12886834, upload-time = "2025-09-29T23:28:21.289Z" }, - { url = "https://files.pythonhosted.org/packages/d3/18/b5d48f55821228d0d2692b34fd5034bb185e854bdb592e9c640f6290e012/pandas-2.3.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6253c72c6a1d990a410bc7de641d34053364ef8bcd3126f7e7450125887dffe3", size = 13409925, upload-time = "2025-09-29T23:28:58.261Z" }, - { url = "https://files.pythonhosted.org/packages/a6/3d/124ac75fcd0ecc09b8fdccb0246ef65e35b012030defb0e0eba2cbbbe948/pandas-2.3.3-cp314-cp314-win_amd64.whl", hash = "sha256:1b07204a219b3b7350abaae088f451860223a52cfb8a6c53358e7948735158e5", size = 11109071, upload-time = "2025-09-29T23:32:27.484Z" }, - { url = "https://files.pythonhosted.org/packages/89/9c/0e21c895c38a157e0faa1fb64587a9226d6dd46452cac4532d80c3c4a244/pandas-2.3.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:2462b1a365b6109d275250baaae7b760fd25c726aaca0054649286bcfbb3e8ec", size = 12048504, upload-time = "2025-09-29T23:29:31.47Z" }, - { url = "https://files.pythonhosted.org/packages/d7/82/b69a1c95df796858777b68fbe6a81d37443a33319761d7c652ce77797475/pandas-2.3.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:0242fe9a49aa8b4d78a4fa03acb397a58833ef6199e9aa40a95f027bb3a1b6e7", size = 11410702, upload-time = "2025-09-29T23:29:54.591Z" }, - { url = "https://files.pythonhosted.org/packages/f9/88/702bde3ba0a94b8c73a0181e05144b10f13f29ebfc2150c3a79062a8195d/pandas-2.3.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a21d830e78df0a515db2b3d2f5570610f5e6bd2e27749770e8bb7b524b89b450", size = 11634535, upload-time = "2025-09-29T23:30:21.003Z" }, - { url = "https://files.pythonhosted.org/packages/a4/1e/1bac1a839d12e6a82ec6cb40cda2edde64a2013a66963293696bbf31fbbb/pandas-2.3.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2e3ebdb170b5ef78f19bfb71b0dc5dc58775032361fa188e814959b74d726dd5", size = 12121582, upload-time = "2025-09-29T23:30:43.391Z" }, - { url = "https://files.pythonhosted.org/packages/44/91/483de934193e12a3b1d6ae7c8645d083ff88dec75f46e827562f1e4b4da6/pandas-2.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d051c0e065b94b7a3cea50eb1ec32e912cd96dba41647eb24104b6c6c14c5788", size = 12699963, upload-time = "2025-09-29T23:31:10.009Z" }, - { url = "https://files.pythonhosted.org/packages/70/44/5191d2e4026f86a2a109053e194d3ba7a31a2d10a9c2348368c63ed4e85a/pandas-2.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:3869faf4bd07b3b66a9f462417d0ca3a9df29a9f6abd5d0d0dbab15dac7abe87", size = 13202175, upload-time = "2025-09-29T23:31:59.173Z" }, -] - -[[package]] -name = "pandas" -version = "3.0.1" + { name = "polars-runtime-32" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ab/b8/3a6a5b85e34af7936620f331f04f8bed235625439f5bd80832f968648618/polars-1.39.0.tar.gz", hash = "sha256:e63a25fb7682ae660e36067915a7c71a653b17f82308a8eb67a190a80daf0710", size = 728783, upload-time = "2026-03-12T14:24:47.876Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/f8/fad8470d9701c1b208cc24919a661efdf565373e77e7d06400642a759285/polars-1.39.0-py3-none-any.whl", hash = "sha256:4d1198b41bc47561673d9f54d0f595125202a3f53e3502821802958d3e60efe9", size = 823938, upload-time = "2026-03-12T14:22:37.78Z" }, +] + +[[package]] +name = "polars-runtime-32" +version = "1.39.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.11' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.11' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.11' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", +sdist = { url = "https://files.pythonhosted.org/packages/8b/1e/fce83ad77bfed1bf4a83f74dde19e2572c32fc040e93bd98d161e3950eaf/polars_runtime_32-1.39.0.tar.gz", hash = "sha256:f5aabed8c7318fcad5173e83bee385445f54b5f8c83b1ec9eab78bdffa293141", size = 2870686, upload-time = "2026-03-12T14:24:49.41Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/6d/143b552baa9e859ae266f087f3ec0aeb29e5acc39e1f49c1a64023cee469/polars_runtime_32-1.39.0-cp310-abi3-macosx_10_12_x86_64.whl", hash = "sha256:4a4bc06ca97238d963979e3f888fbb500ee607f03cefe43a9062381e259503e2", size = 45299222, upload-time = "2026-03-12T14:22:40.821Z" }, + { url = "https://files.pythonhosted.org/packages/97/ec/eb4e57eedfb97019f951b298fa4cd232a50db65aa6702c735b6f272a0fa0/polars_runtime_32-1.39.0-cp310-abi3-macosx_11_0_arm64.whl", hash = "sha256:e9914b9e168634bc21d07ee03b8fa92d0aaa8ac7b2bb1c9e2f1f78622aa1b8f4", size = 40863978, upload-time = "2026-03-12T14:22:45.16Z" }, + { url = "https://files.pythonhosted.org/packages/5f/b7/28fa0345586f7c449dd27d687c32a10dcea470ebc5a978d7fc47e463b298/polars_runtime_32-1.39.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8ded58f1c28e17ecbff8625cb1ad93016761260348acb79b1a4cd077970e89e5", size = 43231627, upload-time = "2026-03-12T14:22:49.464Z" }, + { url = "https://files.pythonhosted.org/packages/cf/60/c0d0b6720437685223457242a79f6bba443485ca85928645786479ebed86/polars_runtime_32-1.39.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b82c872b25ef6628462f90f1b6b3950779aee36889e83b3693d0a69684d3d86a", size = 46899324, upload-time = "2026-03-12T14:22:54.364Z" }, + { url = "https://files.pythonhosted.org/packages/73/98/53ad9c8a6f151e098e4f65c5146f9e538f1ba148feb5289fd2a4c5e2d764/polars_runtime_32-1.39.0-cp310-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:4a0e9d6b56362f3ba1a33d0538ae14c9b9a8e0fb835f86abfc82fa7b2c7d89c9", size = 43389283, upload-time = "2026-03-12T14:22:59.767Z" }, + { url = "https://files.pythonhosted.org/packages/74/a2/21f77d6e588ee7c8e7f6232d135538690411de2ea6415d8bbe9b8d684f37/polars_runtime_32-1.39.0-cp310-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:0daea3919661ba672b00bd01b5547cd29bb6414732457abb72cbc75103cf3c90", size = 46509946, upload-time = "2026-03-12T14:23:05.215Z" }, + { url = "https://files.pythonhosted.org/packages/24/a3/37a56ad2d931c857b892b22760b9bf9a53f681d9ccf27741cf6dd8489320/polars_runtime_32-1.39.0-cp310-abi3-win_amd64.whl", hash = "sha256:d6e9d1cf264aacfe5bf03241c04ef435d0f9cfec3fbe079acc3a7328a737961a", size = 47012669, upload-time = "2026-03-12T14:23:11.134Z" }, + { url = "https://files.pythonhosted.org/packages/b3/eb/936f5eeae196e8c8aaabe5f7d98891be8a5bbc741d50ce5c60f55575ad29/polars_runtime_32-1.39.0-cp310-abi3-win_arm64.whl", hash = "sha256:d69abde5f148566860bbe910010847bd7791e72f7c8063a4d2c462246a33a72a", size = 41885761, upload-time = "2026-03-12T14:23:16.773Z" }, ] + +[[package]] +name = "pygments" +version = "2.19.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b0/77/a5b8c569bf593b0140bde72ea885a803b82086995367bf2037de0159d924/pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887", size = 4968631, upload-time = "2025-06-21T13:39:12.283Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" }, +] + +[[package]] +name = "pyparsing" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/91/9c6ee907786a473bf81c5f53cf703ba0957b23ab84c264080fb5a450416f/pyparsing-3.3.2.tar.gz", hash = "sha256:c777f4d763f140633dcb6d8a3eda953bf7a214dc4eff598413c070bcdc117cbc", size = 6851574, upload-time = "2026-01-21T03:57:59.36Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl", hash = "sha256:850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d", size = 122781, upload-time = "2026-01-21T03:57:55.912Z" }, +] + +[[package]] +name = "pytest" +version = "9.0.2" +source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "python-dateutil", marker = "python_full_version >= '3.11'" }, - { name = "tzdata", marker = "(python_full_version >= '3.11' and sys_platform == 'emscripten') or (python_full_version >= '3.11' and sys_platform == 'win32')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/2e/0c/b28ed414f080ee0ad153f848586d61d1878f91689950f037f976ce15f6c8/pandas-3.0.1.tar.gz", hash = "sha256:4186a699674af418f655dbd420ed87f50d56b4cd6603784279d9eef6627823c8", size = 4641901, upload-time = "2026-02-17T22:20:16.434Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ff/07/c7087e003ceee9b9a82539b40414ec557aa795b584a1a346e89180853d79/pandas-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:de09668c1bf3b925c07e5762291602f0d789eca1b3a781f99c1c78f6cac0e7ea", size = 10323380, upload-time = "2026-02-17T22:18:16.133Z" }, - { url = "https://files.pythonhosted.org/packages/c1/27/90683c7122febeefe84a56f2cde86a9f05f68d53885cebcc473298dfc33e/pandas-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:24ba315ba3d6e5806063ac6eb717504e499ce30bd8c236d8693a5fd3f084c796", size = 9923455, upload-time = "2026-02-17T22:18:19.13Z" }, - { url = "https://files.pythonhosted.org/packages/0e/f1/ed17d927f9950643bc7631aa4c99ff0cc83a37864470bc419345b656a41f/pandas-3.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:406ce835c55bac912f2a0dcfaf27c06d73c6b04a5dde45f1fd3169ce31337389", size = 10753464, upload-time = "2026-02-17T22:18:21.134Z" }, - { url = "https://files.pythonhosted.org/packages/2e/7c/870c7e7daec2a6c7ff2ac9e33b23317230d4e4e954b35112759ea4a924a7/pandas-3.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:830994d7e1f31dd7e790045235605ab61cff6c94defc774547e8b7fdfbff3dc7", size = 11255234, upload-time = "2026-02-17T22:18:24.175Z" }, - { url = "https://files.pythonhosted.org/packages/5c/39/3653fe59af68606282b989c23d1a543ceba6e8099cbcc5f1d506a7bae2aa/pandas-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a64ce8b0f2de1d2efd2ae40b0abe7f8ae6b29fbfb3812098ed5a6f8e235ad9bf", size = 11767299, upload-time = "2026-02-17T22:18:26.824Z" }, - { url = "https://files.pythonhosted.org/packages/9b/31/1daf3c0c94a849c7a8dab8a69697b36d313b229918002ba3e409265c7888/pandas-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9832c2c69da24b602c32e0c7b1b508a03949c18ba08d4d9f1c1033426685b447", size = 12333292, upload-time = "2026-02-17T22:18:28.996Z" }, - { url = "https://files.pythonhosted.org/packages/1f/67/af63f83cd6ca603a00fe8530c10a60f0879265b8be00b5930e8e78c5b30b/pandas-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:84f0904a69e7365f79a0c77d3cdfccbfb05bf87847e3a51a41e1426b0edb9c79", size = 9892176, upload-time = "2026-02-17T22:18:31.79Z" }, - { url = "https://files.pythonhosted.org/packages/79/ab/9c776b14ac4b7b4140788eca18468ea39894bc7340a408f1d1e379856a6b/pandas-3.0.1-cp311-cp311-win_arm64.whl", hash = "sha256:4a68773d5a778afb31d12e34f7dd4612ab90de8c6fb1d8ffe5d4a03b955082a1", size = 9151328, upload-time = "2026-02-17T22:18:35.721Z" }, - { url = "https://files.pythonhosted.org/packages/37/51/b467209c08dae2c624873d7491ea47d2b47336e5403309d433ea79c38571/pandas-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:476f84f8c20c9f5bc47252b66b4bb25e1a9fc2fa98cead96744d8116cb85771d", size = 10344357, upload-time = "2026-02-17T22:18:38.262Z" }, - { url = "https://files.pythonhosted.org/packages/7c/f1/e2567ffc8951ab371db2e40b2fe068e36b81d8cf3260f06ae508700e5504/pandas-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0ab749dfba921edf641d4036c4c21c0b3ea70fea478165cb98a998fb2a261955", size = 9884543, upload-time = "2026-02-17T22:18:41.476Z" }, - { url = "https://files.pythonhosted.org/packages/d7/39/327802e0b6d693182403c144edacbc27eb82907b57062f23ef5a4c4a5ea7/pandas-3.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b8e36891080b87823aff3640c78649b91b8ff6eea3c0d70aeabd72ea43ab069b", size = 10396030, upload-time = "2026-02-17T22:18:43.822Z" }, - { url = "https://files.pythonhosted.org/packages/3d/fe/89d77e424365280b79d99b3e1e7d606f5165af2f2ecfaf0c6d24c799d607/pandas-3.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:532527a701281b9dd371e2f582ed9094f4c12dd9ffb82c0c54ee28d8ac9520c4", size = 10876435, upload-time = "2026-02-17T22:18:45.954Z" }, - { url = "https://files.pythonhosted.org/packages/b5/a6/2a75320849dd154a793f69c951db759aedb8d1dd3939eeacda9bdcfa1629/pandas-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:356e5c055ed9b0da1580d465657bc7d00635af4fd47f30afb23025352ba764d1", size = 11405133, upload-time = "2026-02-17T22:18:48.533Z" }, - { url = "https://files.pythonhosted.org/packages/58/53/1d68fafb2e02d7881df66aa53be4cd748d25cbe311f3b3c85c93ea5d30ca/pandas-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:9d810036895f9ad6345b8f2a338dd6998a74e8483847403582cab67745bff821", size = 11932065, upload-time = "2026-02-17T22:18:50.837Z" }, - { url = "https://files.pythonhosted.org/packages/75/08/67cc404b3a966b6df27b38370ddd96b3b023030b572283d035181854aac5/pandas-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:536232a5fe26dd989bd633e7a0c450705fdc86a207fec7254a55e9a22950fe43", size = 9741627, upload-time = "2026-02-17T22:18:53.905Z" }, - { url = "https://files.pythonhosted.org/packages/86/4f/caf9952948fb00d23795f09b893d11f1cacb384e666854d87249530f7cbe/pandas-3.0.1-cp312-cp312-win_arm64.whl", hash = "sha256:0f463ebfd8de7f326d38037c7363c6dacb857c5881ab8961fb387804d6daf2f7", size = 9052483, upload-time = "2026-02-17T22:18:57.31Z" }, - { url = "https://files.pythonhosted.org/packages/0b/48/aad6ec4f8d007534c091e9a7172b3ec1b1ee6d99a9cbb936b5eab6c6cf58/pandas-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5272627187b5d9c20e55d27caf5f2cd23e286aba25cadf73c8590e432e2b7262", size = 10317509, upload-time = "2026-02-17T22:18:59.498Z" }, - { url = "https://files.pythonhosted.org/packages/a8/14/5990826f779f79148ae9d3a2c39593dc04d61d5d90541e71b5749f35af95/pandas-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:661e0f665932af88c7877f31da0dc743fe9c8f2524bdffe23d24fdcb67ef9d56", size = 9860561, upload-time = "2026-02-17T22:19:02.265Z" }, - { url = "https://files.pythonhosted.org/packages/fa/80/f01ff54664b6d70fed71475543d108a9b7c888e923ad210795bef04ffb7d/pandas-3.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:75e6e292ff898679e47a2199172593d9f6107fd2dd3617c22c2946e97d5df46e", size = 10365506, upload-time = "2026-02-17T22:19:05.017Z" }, - { url = "https://files.pythonhosted.org/packages/f2/85/ab6d04733a7d6ff32bfc8382bf1b07078228f5d6ebec5266b91bfc5c4ff7/pandas-3.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1ff8cf1d2896e34343197685f432450ec99a85ba8d90cce2030c5eee2ef98791", size = 10873196, upload-time = "2026-02-17T22:19:07.204Z" }, - { url = "https://files.pythonhosted.org/packages/48/a9/9301c83d0b47c23ac5deab91c6b39fd98d5b5db4d93b25df8d381451828f/pandas-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:eca8b4510f6763f3d37359c2105df03a7a221a508f30e396a51d0713d462e68a", size = 11370859, upload-time = "2026-02-17T22:19:09.436Z" }, - { url = "https://files.pythonhosted.org/packages/59/fe/0c1fc5bd2d29c7db2ab372330063ad555fb83e08422829c785f5ec2176ca/pandas-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:06aff2ad6f0b94a17822cf8b83bbb563b090ed82ff4fe7712db2ce57cd50d9b8", size = 11924584, upload-time = "2026-02-17T22:19:11.562Z" }, - { url = "https://files.pythonhosted.org/packages/d6/7d/216a1588b65a7aa5f4535570418a599d943c85afb1d95b0876fc00aa1468/pandas-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:9fea306c783e28884c29057a1d9baa11a349bbf99538ec1da44c8476563d1b25", size = 9742769, upload-time = "2026-02-17T22:19:13.926Z" }, - { url = "https://files.pythonhosted.org/packages/c4/cb/810a22a6af9a4e97c8ab1c946b47f3489c5bca5adc483ce0ffc84c9cc768/pandas-3.0.1-cp313-cp313-win_arm64.whl", hash = "sha256:a8d37a43c52917427e897cb2e429f67a449327394396a81034a4449b99afda59", size = 9043855, upload-time = "2026-02-17T22:19:16.09Z" }, - { url = "https://files.pythonhosted.org/packages/92/fa/423c89086cca1f039cf1253c3ff5b90f157b5b3757314aa635f6bf3e30aa/pandas-3.0.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d54855f04f8246ed7b6fc96b05d4871591143c46c0b6f4af874764ed0d2d6f06", size = 10752673, upload-time = "2026-02-17T22:19:18.304Z" }, - { url = "https://files.pythonhosted.org/packages/22/23/b5a08ec1f40020397f0faba72f1e2c11f7596a6169c7b3e800abff0e433f/pandas-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:4e1b677accee34a09e0dc2ce5624e4a58a1870ffe56fc021e9caf7f23cd7668f", size = 10404967, upload-time = "2026-02-17T22:19:20.726Z" }, - { url = "https://files.pythonhosted.org/packages/5c/81/94841f1bb4afdc2b52a99daa895ac2c61600bb72e26525ecc9543d453ebc/pandas-3.0.1-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a9cabbdcd03f1b6cd254d6dda8ae09b0252524be1592594c00b7895916cb1324", size = 10320575, upload-time = "2026-02-17T22:19:24.919Z" }, - { url = "https://files.pythonhosted.org/packages/0a/8b/2ae37d66a5342a83adadfd0cb0b4bf9c3c7925424dd5f40d15d6cfaa35ee/pandas-3.0.1-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5ae2ab1f166668b41e770650101e7090824fd34d17915dd9cd479f5c5e0065e9", size = 10710921, upload-time = "2026-02-17T22:19:27.181Z" }, - { url = "https://files.pythonhosted.org/packages/a2/61/772b2e2757855e232b7ccf7cb8079a5711becb3a97f291c953def15a833f/pandas-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6bf0603c2e30e2cafac32807b06435f28741135cb8697eae8b28c7d492fc7d76", size = 11334191, upload-time = "2026-02-17T22:19:29.411Z" }, - { url = "https://files.pythonhosted.org/packages/1b/08/b16c6df3ef555d8495d1d265a7963b65be166785d28f06a350913a4fac78/pandas-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6c426422973973cae1f4a23e51d4ae85974f44871b24844e4f7de752dd877098", size = 11782256, upload-time = "2026-02-17T22:19:32.34Z" }, - { url = "https://files.pythonhosted.org/packages/55/80/178af0594890dee17e239fca96d3d8670ba0f5ff59b7d0439850924a9c09/pandas-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:b03f91ae8c10a85c1613102c7bef5229b5379f343030a3ccefeca8a33414cf35", size = 10485047, upload-time = "2026-02-17T22:19:34.605Z" }, - { url = "https://files.pythonhosted.org/packages/bb/8b/4bb774a998b97e6c2fd62a9e6cfdaae133b636fd1c468f92afb4ae9a447a/pandas-3.0.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:99d0f92ed92d3083d140bf6b97774f9f13863924cf3f52a70711f4e7588f9d0a", size = 10322465, upload-time = "2026-02-17T22:19:36.803Z" }, - { url = "https://files.pythonhosted.org/packages/72/3a/5b39b51c64159f470f1ca3b1c2a87da290657ca022f7cd11442606f607d1/pandas-3.0.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:3b66857e983208654294bb6477b8a63dee26b37bdd0eb34d010556e91261784f", size = 9910632, upload-time = "2026-02-17T22:19:39.001Z" }, - { url = "https://files.pythonhosted.org/packages/4e/f7/b449ffb3f68c11da12fc06fbf6d2fa3a41c41e17d0284d23a79e1c13a7e4/pandas-3.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:56cf59638bf24dc9bdf2154c81e248b3289f9a09a6d04e63608c159022352749", size = 10440535, upload-time = "2026-02-17T22:19:41.157Z" }, - { url = "https://files.pythonhosted.org/packages/55/77/6ea82043db22cb0f2bbfe7198da3544000ddaadb12d26be36e19b03a2dc5/pandas-3.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c1a9f55e0f46951874b863d1f3906dcb57df2d9be5c5847ba4dfb55b2c815249", size = 10893940, upload-time = "2026-02-17T22:19:43.493Z" }, - { url = "https://files.pythonhosted.org/packages/03/30/f1b502a72468c89412c1b882a08f6eed8a4ee9dc033f35f65d0663df6081/pandas-3.0.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:1849f0bba9c8a2fb0f691d492b834cc8dadf617e29015c66e989448d58d011ee", size = 11442711, upload-time = "2026-02-17T22:19:46.074Z" }, - { url = "https://files.pythonhosted.org/packages/0d/f0/ebb6ddd8fc049e98cabac5c2924d14d1dda26a20adb70d41ea2e428d3ec4/pandas-3.0.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:c3d288439e11b5325b02ae6e9cc83e6805a62c40c5a6220bea9beb899c073b1c", size = 11963918, upload-time = "2026-02-17T22:19:48.838Z" }, - { url = "https://files.pythonhosted.org/packages/09/f8/8ce132104074f977f907442790eaae24e27bce3b3b454e82faa3237ff098/pandas-3.0.1-cp314-cp314-win_amd64.whl", hash = "sha256:93325b0fe372d192965f4cca88d97667f49557398bbf94abdda3bf1b591dbe66", size = 9862099, upload-time = "2026-02-17T22:19:51.081Z" }, - { url = "https://files.pythonhosted.org/packages/e6/b7/6af9aac41ef2456b768ef0ae60acf8abcebb450a52043d030a65b4b7c9bd/pandas-3.0.1-cp314-cp314-win_arm64.whl", hash = "sha256:97ca08674e3287c7148f4858b01136f8bdfe7202ad25ad04fec602dd1d29d132", size = 9185333, upload-time = "2026-02-17T22:19:53.266Z" }, - { url = "https://files.pythonhosted.org/packages/66/fc/848bb6710bc6061cb0c5badd65b92ff75c81302e0e31e496d00029fe4953/pandas-3.0.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:58eeb1b2e0fb322befcf2bbc9ba0af41e616abadb3d3414a6bc7167f6cbfce32", size = 10772664, upload-time = "2026-02-17T22:19:55.806Z" }, - { url = "https://files.pythonhosted.org/packages/69/5c/866a9bbd0f79263b4b0db6ec1a341be13a1473323f05c122388e0f15b21d/pandas-3.0.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:cd9af1276b5ca9e298bd79a26bda32fa9cc87ed095b2a9a60978d2ca058eaf87", size = 10421286, upload-time = "2026-02-17T22:19:58.091Z" }, - { url = "https://files.pythonhosted.org/packages/51/a4/2058fb84fb1cfbfb2d4a6d485e1940bb4ad5716e539d779852494479c580/pandas-3.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:94f87a04984d6b63788327cd9f79dda62b7f9043909d2440ceccf709249ca988", size = 10342050, upload-time = "2026-02-17T22:20:01.376Z" }, - { url = "https://files.pythonhosted.org/packages/22/1b/674e89996cc4be74db3c4eb09240c4bb549865c9c3f5d9b086ff8fcfbf00/pandas-3.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:85fe4c4df62e1e20f9db6ebfb88c844b092c22cd5324bdcf94bfa2fc1b391221", size = 10740055, upload-time = "2026-02-17T22:20:04.328Z" }, - { url = "https://files.pythonhosted.org/packages/d0/f8/e954b750764298c22fa4614376531fe63c521ef517e7059a51f062b87dca/pandas-3.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:331ca75a2f8672c365ae25c0b29e46f5ac0c6551fdace8eec4cd65e4fac271ff", size = 11357632, upload-time = "2026-02-17T22:20:06.647Z" }, - { url = "https://files.pythonhosted.org/packages/6d/02/c6e04b694ffd68568297abd03588b6d30295265176a5c01b7459d3bc35a3/pandas-3.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:15860b1fdb1973fffade772fdb931ccf9b2f400a3f5665aef94a00445d7d8dd5", size = 11810974, upload-time = "2026-02-17T22:20:08.946Z" }, - { url = "https://files.pythonhosted.org/packages/89/41/d7dfb63d2407f12055215070c42fc6ac41b66e90a2946cdc5e759058398b/pandas-3.0.1-cp314-cp314t-win_amd64.whl", hash = "sha256:44f1364411d5670efa692b146c748f4ed013df91ee91e9bec5677fb1fd58b937", size = 10884622, upload-time = "2026-02-17T22:20:11.711Z" }, - { url = "https://files.pythonhosted.org/packages/68/b0/34937815889fa982613775e4b97fddd13250f11012d769949c5465af2150/pandas-3.0.1-cp314-cp314t-win_arm64.whl", hash = "sha256:108dd1790337a494aa80e38def654ca3f0968cf4f362c85f44c15e471667102d", size = 9452085, upload-time = "2026-02-17T22:20:14.331Z" }, + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d1/db/7ef3487e0fb0049ddb5ce41d3a49c235bf9ad299b6a25d5780a89f19230f/pytest-9.0.2.tar.gz", hash = "sha256:75186651a92bd89611d1d9fc20f0b4345fd827c41ccd5c299a868a05d70edf11", size = 1568901, upload-time = "2025-12-06T21:30:51.014Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/ab/b3226f0bd7cdcf710fbede2b3548584366da3b19b5021e74f5bde2a8fa3f/pytest-9.0.2-py3-none-any.whl", hash = "sha256:711ffd45bf766d5264d487b917733b453d917afd2b0ad65223959f59089f875b", size = 374801, upload-time = "2025-12-06T21:30:49.154Z" }, ] [[package]] -name = "python-dateutil" -version = "2.9.0.post0" +name = "pytest-cov" +version = "7.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "six" }, + { name = "coverage", extra = ["toml"] }, + { name = "pluggy" }, + { name = "pytest" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/f7/c933acc76f5208b3b00089573cf6a2bc26dc80a8aece8f52bb7d6b1855ca/pytest_cov-7.0.0.tar.gz", hash = "sha256:33c97eda2e049a0c5298e91f519302a1334c26ac65c1a483d6206fd458361af1", size = 54328, upload-time = "2025-09-09T10:57:02.113Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, + { url = "https://files.pythonhosted.org/packages/ee/49/1377b49de7d0c1ce41292161ea0f721913fa8722c19fb9c1e3aa0367eecb/pytest_cov-7.0.0-py3-none-any.whl", hash = "sha256:3b8e9558b16cc1479da72058bdecf8073661c7f57f7d3c5f22a1c23507f2d861", size = 22424, upload-time = "2025-09-09T10:57:00.695Z" }, ] [[package]] -name = "pytz" -version = "2026.1.post1" +name = "python-dateutil" +version = "2.9.0.post0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/56/db/b8721d71d945e6a8ac63c0fc900b2067181dbb50805958d4d4661cf7d277/pytz-2026.1.post1.tar.gz", hash = "sha256:3378dde6a0c3d26719182142c56e60c7f9af7e968076f31aae569d72a0358ee1", size = 321088, upload-time = "2026-03-03T07:47:50.683Z" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/10/99/781fe0c827be2742bcc775efefccb3b048a3a9c6ce9aec0cbf4a101677e5/pytz-2026.1.post1-py2.py3-none-any.whl", hash = "sha256:f2fd16142fda348286a75e1a524be810bb05d444e5a081f37f7affc635035f7a", size = 510489, upload-time = "2026-03-03T07:47:49.167Z" }, + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, ] [[package]] @@ -451,6 +881,102 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" }, ] +[[package]] +name = "ruff" +version = "0.15.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/77/9b/840e0039e65fcf12758adf684d2289024d6140cde9268cc59887dc55189c/ruff-0.15.5.tar.gz", hash = "sha256:7c3601d3b6d76dce18c5c824fc8d06f4eef33d6df0c21ec7799510cde0f159a2", size = 4574214, upload-time = "2026-03-05T20:06:34.946Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/20/5369c3ce21588c708bcbe517a8fbe1a8dfdb5dfd5137e14790b1da71612c/ruff-0.15.5-py3-none-linux_armv6l.whl", hash = "sha256:4ae44c42281f42e3b06b988e442d344a5b9b72450ff3c892e30d11b29a96a57c", size = 10478185, upload-time = "2026-03-05T20:06:29.093Z" }, + { url = "https://files.pythonhosted.org/packages/44/ed/e81dd668547da281e5dce710cf0bc60193f8d3d43833e8241d006720e42b/ruff-0.15.5-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:6edd3792d408ebcf61adabc01822da687579a1a023f297618ac27a5b51ef0080", size = 10859201, upload-time = "2026-03-05T20:06:32.632Z" }, + { url = "https://files.pythonhosted.org/packages/c4/8f/533075f00aaf19b07c5cd6aa6e5d89424b06b3b3f4583bfa9c640a079059/ruff-0.15.5-py3-none-macosx_11_0_arm64.whl", hash = "sha256:89f463f7c8205a9f8dea9d658d59eff49db05f88f89cc3047fb1a02d9f344010", size = 10184752, upload-time = "2026-03-05T20:06:40.312Z" }, + { url = "https://files.pythonhosted.org/packages/66/0e/ba49e2c3fa0395b3152bad634c7432f7edfc509c133b8f4529053ff024fb/ruff-0.15.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba786a8295c6574c1116704cf0b9e6563de3432ac888d8f83685654fe528fd65", size = 10534857, upload-time = "2026-03-05T20:06:19.581Z" }, + { url = "https://files.pythonhosted.org/packages/59/71/39234440f27a226475a0659561adb0d784b4d247dfe7f43ffc12dd02e288/ruff-0.15.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fd4b801e57955fe9f02b31d20375ab3a5c4415f2e5105b79fb94cf2642c91440", size = 10309120, upload-time = "2026-03-05T20:06:00.435Z" }, + { url = "https://files.pythonhosted.org/packages/f5/87/4140aa86a93df032156982b726f4952aaec4a883bb98cb6ef73c347da253/ruff-0.15.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:391f7c73388f3d8c11b794dbbc2959a5b5afe66642c142a6effa90b45f6f5204", size = 11047428, upload-time = "2026-03-05T20:05:51.867Z" }, + { url = "https://files.pythonhosted.org/packages/5a/f7/4953e7e3287676f78fbe85e3a0ca414c5ca81237b7575bdadc00229ac240/ruff-0.15.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8dc18f30302e379fe1e998548b0f5e9f4dff907f52f73ad6da419ea9c19d66c8", size = 11914251, upload-time = "2026-03-05T20:06:22.887Z" }, + { url = "https://files.pythonhosted.org/packages/77/46/0f7c865c10cf896ccf5a939c3e84e1cfaeed608ff5249584799a74d33835/ruff-0.15.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1cc6e7f90087e2d27f98dc34ed1b3ab7c8f0d273cc5431415454e22c0bd2a681", size = 11333801, upload-time = "2026-03-05T20:05:57.168Z" }, + { url = "https://files.pythonhosted.org/packages/d3/01/a10fe54b653061585e655f5286c2662ebddb68831ed3eaebfb0eb08c0a16/ruff-0.15.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1cb7169f53c1ddb06e71a9aebd7e98fc0fea936b39afb36d8e86d36ecc2636a", size = 11206821, upload-time = "2026-03-05T20:06:03.441Z" }, + { url = "https://files.pythonhosted.org/packages/7a/0d/2132ceaf20c5e8699aa83da2706ecb5c5dcdf78b453f77edca7fb70f8a93/ruff-0.15.5-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:9b037924500a31ee17389b5c8c4d88874cc6ea8e42f12e9c61a3d754ff72f1ca", size = 11133326, upload-time = "2026-03-05T20:06:25.655Z" }, + { url = "https://files.pythonhosted.org/packages/72/cb/2e5259a7eb2a0f87c08c0fe5bf5825a1e4b90883a52685524596bfc93072/ruff-0.15.5-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:65bb414e5b4eadd95a8c1e4804f6772bbe8995889f203a01f77ddf2d790929dd", size = 10510820, upload-time = "2026-03-05T20:06:37.79Z" }, + { url = "https://files.pythonhosted.org/packages/ff/20/b67ce78f9e6c59ffbdb5b4503d0090e749b5f2d31b599b554698a80d861c/ruff-0.15.5-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:d20aa469ae3b57033519c559e9bc9cd9e782842e39be05b50e852c7c981fa01d", size = 10302395, upload-time = "2026-03-05T20:05:54.504Z" }, + { url = "https://files.pythonhosted.org/packages/5f/e5/719f1acccd31b720d477751558ed74e9c88134adcc377e5e886af89d3072/ruff-0.15.5-py3-none-musllinux_1_2_i686.whl", hash = "sha256:15388dd28c9161cdb8eda68993533acc870aa4e646a0a277aa166de9ad5a8752", size = 10754069, upload-time = "2026-03-05T20:06:06.422Z" }, + { url = "https://files.pythonhosted.org/packages/c3/9c/d1db14469e32d98f3ca27079dbd30b7b44dbb5317d06ab36718dee3baf03/ruff-0.15.5-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:b30da330cbd03bed0c21420b6b953158f60c74c54c5f4c1dabbdf3a57bf355d2", size = 11304315, upload-time = "2026-03-05T20:06:10.867Z" }, + { url = "https://files.pythonhosted.org/packages/28/3a/950367aee7c69027f4f422059227b290ed780366b6aecee5de5039d50fa8/ruff-0.15.5-py3-none-win32.whl", hash = "sha256:732e5ee1f98ba5b3679029989a06ca39a950cced52143a0ea82a2102cb592b74", size = 10551676, upload-time = "2026-03-05T20:06:13.705Z" }, + { url = "https://files.pythonhosted.org/packages/b8/00/bf077a505b4e649bdd3c47ff8ec967735ce2544c8e4a43aba42ee9bf935d/ruff-0.15.5-py3-none-win_amd64.whl", hash = "sha256:821d41c5fa9e19117616c35eaa3f4b75046ec76c65e7ae20a333e9a8696bc7fe", size = 11678972, upload-time = "2026-03-05T20:06:45.379Z" }, + { url = "https://files.pythonhosted.org/packages/fe/4e/cd76eca6db6115604b7626668e891c9dd03330384082e33662fb0f113614/ruff-0.15.5-py3-none-win_arm64.whl", hash = "sha256:b498d1c60d2fe5c10c45ec3f698901065772730b411f164ae270bb6bfcc4740b", size = 10965572, upload-time = "2026-03-05T20:06:16.984Z" }, +] + +[[package]] +name = "scipy" +version = "1.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7a/97/5a3609c4f8d58b039179648e62dd220f89864f56f7357f5d4f45c29eb2cc/scipy-1.17.1.tar.gz", hash = "sha256:95d8e012d8cb8816c226aef832200b1d45109ed4464303e997c5b13122b297c0", size = 30573822, upload-time = "2026-02-23T00:26:24.851Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/75/b4ce781849931fef6fd529afa6b63711d5a733065722d0c3e2724af9e40a/scipy-1.17.1-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:1f95b894f13729334fb990162e911c9e5dc1ab390c58aa6cbecb389c5b5e28ec", size = 31613675, upload-time = "2026-02-23T00:16:00.13Z" }, + { url = "https://files.pythonhosted.org/packages/f7/58/bccc2861b305abdd1b8663d6130c0b3d7cc22e8d86663edbc8401bfd40d4/scipy-1.17.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:e18f12c6b0bc5a592ed23d3f7b891f68fd7f8241d69b7883769eb5d5dfb52696", size = 28162057, upload-time = "2026-02-23T00:16:09.456Z" }, + { url = "https://files.pythonhosted.org/packages/6d/ee/18146b7757ed4976276b9c9819108adbc73c5aad636e5353e20746b73069/scipy-1.17.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:a3472cfbca0a54177d0faa68f697d8ba4c80bbdc19908c3465556d9f7efce9ee", size = 20334032, upload-time = "2026-02-23T00:16:17.358Z" }, + { url = "https://files.pythonhosted.org/packages/ec/e6/cef1cf3557f0c54954198554a10016b6a03b2ec9e22a4e1df734936bd99c/scipy-1.17.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:766e0dc5a616d026a3a1cffa379af959671729083882f50307e18175797b3dfd", size = 22709533, upload-time = "2026-02-23T00:16:25.791Z" }, + { url = "https://files.pythonhosted.org/packages/4d/60/8804678875fc59362b0fb759ab3ecce1f09c10a735680318ac30da8cd76b/scipy-1.17.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:744b2bf3640d907b79f3fd7874efe432d1cf171ee721243e350f55234b4cec4c", size = 33062057, upload-time = "2026-02-23T00:16:36.931Z" }, + { url = "https://files.pythonhosted.org/packages/09/7d/af933f0f6e0767995b4e2d705a0665e454d1c19402aa7e895de3951ebb04/scipy-1.17.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43af8d1f3bea642559019edfe64e9b11192a8978efbd1539d7bc2aaa23d92de4", size = 35349300, upload-time = "2026-02-23T00:16:49.108Z" }, + { url = "https://files.pythonhosted.org/packages/b4/3d/7ccbbdcbb54c8fdc20d3b6930137c782a163fa626f0aef920349873421ba/scipy-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cd96a1898c0a47be4520327e01f874acfd61fb48a9420f8aa9f6483412ffa444", size = 35127333, upload-time = "2026-02-23T00:17:01.293Z" }, + { url = "https://files.pythonhosted.org/packages/e8/19/f926cb11c42b15ba08e3a71e376d816ac08614f769b4f47e06c3580c836a/scipy-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4eb6c25dd62ee8d5edf68a8e1c171dd71c292fdae95d8aeb3dd7d7de4c364082", size = 37741314, upload-time = "2026-02-23T00:17:12.576Z" }, + { url = "https://files.pythonhosted.org/packages/95/da/0d1df507cf574b3f224ccc3d45244c9a1d732c81dcb26b1e8a766ae271a8/scipy-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:d30e57c72013c2a4fe441c2fcb8e77b14e152ad48b5464858e07e2ad9fbfceff", size = 36607512, upload-time = "2026-02-23T00:17:23.424Z" }, + { url = "https://files.pythonhosted.org/packages/68/7f/bdd79ceaad24b671543ffe0ef61ed8e659440eb683b66f033454dcee90eb/scipy-1.17.1-cp311-cp311-win_arm64.whl", hash = "sha256:9ecb4efb1cd6e8c4afea0daa91a87fbddbce1b99d2895d151596716c0b2e859d", size = 24599248, upload-time = "2026-02-23T00:17:34.561Z" }, + { url = "https://files.pythonhosted.org/packages/35/48/b992b488d6f299dbe3f11a20b24d3dda3d46f1a635ede1c46b5b17a7b163/scipy-1.17.1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:35c3a56d2ef83efc372eaec584314bd0ef2e2f0d2adb21c55e6ad5b344c0dcb8", size = 31610954, upload-time = "2026-02-23T00:17:49.855Z" }, + { url = "https://files.pythonhosted.org/packages/b2/02/cf107b01494c19dc100f1d0b7ac3cc08666e96ba2d64db7626066cee895e/scipy-1.17.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:fcb310ddb270a06114bb64bbe53c94926b943f5b7f0842194d585c65eb4edd76", size = 28172662, upload-time = "2026-02-23T00:18:01.64Z" }, + { url = "https://files.pythonhosted.org/packages/cf/a9/599c28631bad314d219cf9ffd40e985b24d603fc8a2f4ccc5ae8419a535b/scipy-1.17.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:cc90d2e9c7e5c7f1a482c9875007c095c3194b1cfedca3c2f3291cdc2bc7c086", size = 20344366, upload-time = "2026-02-23T00:18:12.015Z" }, + { url = "https://files.pythonhosted.org/packages/35/f5/906eda513271c8deb5af284e5ef0206d17a96239af79f9fa0aebfe0e36b4/scipy-1.17.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:c80be5ede8f3f8eded4eff73cc99a25c388ce98e555b17d31da05287015ffa5b", size = 22704017, upload-time = "2026-02-23T00:18:21.502Z" }, + { url = "https://files.pythonhosted.org/packages/da/34/16f10e3042d2f1d6b66e0428308ab52224b6a23049cb2f5c1756f713815f/scipy-1.17.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e19ebea31758fac5893a2ac360fedd00116cbb7628e650842a6691ba7ca28a21", size = 32927842, upload-time = "2026-02-23T00:18:35.367Z" }, + { url = "https://files.pythonhosted.org/packages/01/8e/1e35281b8ab6d5d72ebe9911edcdffa3f36b04ed9d51dec6dd140396e220/scipy-1.17.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:02ae3b274fde71c5e92ac4d54bc06c42d80e399fec704383dcd99b301df37458", size = 35235890, upload-time = "2026-02-23T00:18:49.188Z" }, + { url = "https://files.pythonhosted.org/packages/c5/5c/9d7f4c88bea6e0d5a4f1bc0506a53a00e9fcb198de372bfe4d3652cef482/scipy-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a604bae87c6195d8b1045eddece0514d041604b14f2727bbc2b3020172045eb", size = 35003557, upload-time = "2026-02-23T00:18:54.74Z" }, + { url = "https://files.pythonhosted.org/packages/65/94/7698add8f276dbab7a9de9fb6b0e02fc13ee61d51c7c3f85ac28b65e1239/scipy-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f590cd684941912d10becc07325a3eeb77886fe981415660d9265c4c418d0bea", size = 37625856, upload-time = "2026-02-23T00:19:00.307Z" }, + { url = "https://files.pythonhosted.org/packages/a2/84/dc08d77fbf3d87d3ee27f6a0c6dcce1de5829a64f2eae85a0ecc1f0daa73/scipy-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:41b71f4a3a4cab9d366cd9065b288efc4d4f3c0b37a91a8e0947fb5bd7f31d87", size = 36549682, upload-time = "2026-02-23T00:19:07.67Z" }, + { url = "https://files.pythonhosted.org/packages/bc/98/fe9ae9ffb3b54b62559f52dedaebe204b408db8109a8c66fdd04869e6424/scipy-1.17.1-cp312-cp312-win_arm64.whl", hash = "sha256:f4115102802df98b2b0db3cce5cb9b92572633a1197c77b7553e5203f284a5b3", size = 24547340, upload-time = "2026-02-23T00:19:12.024Z" }, + { url = "https://files.pythonhosted.org/packages/76/27/07ee1b57b65e92645f219b37148a7e7928b82e2b5dbeccecb4dff7c64f0b/scipy-1.17.1-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:5e3c5c011904115f88a39308379c17f91546f77c1667cea98739fe0fccea804c", size = 31590199, upload-time = "2026-02-23T00:19:17.192Z" }, + { url = "https://files.pythonhosted.org/packages/ec/ae/db19f8ab842e9b724bf5dbb7db29302a91f1e55bc4d04b1025d6d605a2c5/scipy-1.17.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:6fac755ca3d2c3edcb22f479fceaa241704111414831ddd3bc6056e18516892f", size = 28154001, upload-time = "2026-02-23T00:19:22.241Z" }, + { url = "https://files.pythonhosted.org/packages/5b/58/3ce96251560107b381cbd6e8413c483bbb1228a6b919fa8652b0d4090e7f/scipy-1.17.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:7ff200bf9d24f2e4d5dc6ee8c3ac64d739d3a89e2326ba68aaf6c4a2b838fd7d", size = 20325719, upload-time = "2026-02-23T00:19:26.329Z" }, + { url = "https://files.pythonhosted.org/packages/b2/83/15087d945e0e4d48ce2377498abf5ad171ae013232ae31d06f336e64c999/scipy-1.17.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:4b400bdc6f79fa02a4d86640310dde87a21fba0c979efff5248908c6f15fad1b", size = 22683595, upload-time = "2026-02-23T00:19:30.304Z" }, + { url = "https://files.pythonhosted.org/packages/b4/e0/e58fbde4a1a594c8be8114eb4aac1a55bcd6587047efc18a61eb1f5c0d30/scipy-1.17.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2b64ca7d4aee0102a97f3ba22124052b4bd2152522355073580bf4845e2550b6", size = 32896429, upload-time = "2026-02-23T00:19:35.536Z" }, + { url = "https://files.pythonhosted.org/packages/f5/5f/f17563f28ff03c7b6799c50d01d5d856a1d55f2676f537ca8d28c7f627cd/scipy-1.17.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:581b2264fc0aa555f3f435a5944da7504ea3a065d7029ad60e7c3d1ae09c5464", size = 35203952, upload-time = "2026-02-23T00:19:42.259Z" }, + { url = "https://files.pythonhosted.org/packages/8d/a5/9afd17de24f657fdfe4df9a3f1ea049b39aef7c06000c13db1530d81ccca/scipy-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:beeda3d4ae615106d7094f7e7cef6218392e4465cc95d25f900bebabfded0950", size = 34979063, upload-time = "2026-02-23T00:19:47.547Z" }, + { url = "https://files.pythonhosted.org/packages/8b/13/88b1d2384b424bf7c924f2038c1c409f8d88bb2a8d49d097861dd64a57b2/scipy-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6609bc224e9568f65064cfa72edc0f24ee6655b47575954ec6339534b2798369", size = 37598449, upload-time = "2026-02-23T00:19:53.238Z" }, + { url = "https://files.pythonhosted.org/packages/35/e5/d6d0e51fc888f692a35134336866341c08655d92614f492c6860dc45bb2c/scipy-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:37425bc9175607b0268f493d79a292c39f9d001a357bebb6b88fdfaff13f6448", size = 36510943, upload-time = "2026-02-23T00:20:50.89Z" }, + { url = "https://files.pythonhosted.org/packages/2a/fd/3be73c564e2a01e690e19cc618811540ba5354c67c8680dce3281123fb79/scipy-1.17.1-cp313-cp313-win_arm64.whl", hash = "sha256:5cf36e801231b6a2059bf354720274b7558746f3b1a4efb43fcf557ccd484a87", size = 24545621, upload-time = "2026-02-23T00:20:55.871Z" }, + { url = "https://files.pythonhosted.org/packages/6f/6b/17787db8b8114933a66f9dcc479a8272e4b4da75fe03b0c282f7b0ade8cd/scipy-1.17.1-cp313-cp313t-macosx_10_14_x86_64.whl", hash = "sha256:d59c30000a16d8edc7e64152e30220bfbd724c9bbb08368c054e24c651314f0a", size = 31936708, upload-time = "2026-02-23T00:19:58.694Z" }, + { url = "https://files.pythonhosted.org/packages/38/2e/524405c2b6392765ab1e2b722a41d5da33dc5c7b7278184a8ad29b6cb206/scipy-1.17.1-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:010f4333c96c9bb1a4516269e33cb5917b08ef2166d5556ca2fd9f082a9e6ea0", size = 28570135, upload-time = "2026-02-23T00:20:03.934Z" }, + { url = "https://files.pythonhosted.org/packages/fd/c3/5bd7199f4ea8556c0c8e39f04ccb014ac37d1468e6cfa6a95c6b3562b76e/scipy-1.17.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:2ceb2d3e01c5f1d83c4189737a42d9cb2fc38a6eeed225e7515eef71ad301dce", size = 20741977, upload-time = "2026-02-23T00:20:07.935Z" }, + { url = "https://files.pythonhosted.org/packages/d9/b8/8ccd9b766ad14c78386599708eb745f6b44f08400a5fd0ade7cf89b6fc93/scipy-1.17.1-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:844e165636711ef41f80b4103ed234181646b98a53c8f05da12ca5ca289134f6", size = 23029601, upload-time = "2026-02-23T00:20:12.161Z" }, + { url = "https://files.pythonhosted.org/packages/6d/a0/3cb6f4d2fb3e17428ad2880333cac878909ad1a89f678527b5328b93c1d4/scipy-1.17.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:158dd96d2207e21c966063e1635b1063cd7787b627b6f07305315dd73d9c679e", size = 33019667, upload-time = "2026-02-23T00:20:17.208Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c3/2d834a5ac7bf3a0c806ad1508efc02dda3c8c61472a56132d7894c312dea/scipy-1.17.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:74cbb80d93260fe2ffa334efa24cb8f2f0f622a9b9febf8b483c0b865bfb3475", size = 35264159, upload-time = "2026-02-23T00:20:23.087Z" }, + { url = "https://files.pythonhosted.org/packages/4d/77/d3ed4becfdbd217c52062fafe35a72388d1bd82c2d0ba5ca19d6fcc93e11/scipy-1.17.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:dbc12c9f3d185f5c737d801da555fb74b3dcfa1a50b66a1a93e09190f41fab50", size = 35102771, upload-time = "2026-02-23T00:20:28.636Z" }, + { url = "https://files.pythonhosted.org/packages/bd/12/d19da97efde68ca1ee5538bb261d5d2c062f0c055575128f11a2730e3ac1/scipy-1.17.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:94055a11dfebe37c656e70317e1996dc197e1a15bbcc351bcdd4610e128fe1ca", size = 37665910, upload-time = "2026-02-23T00:20:34.743Z" }, + { url = "https://files.pythonhosted.org/packages/06/1c/1172a88d507a4baaf72c5a09bb6c018fe2ae0ab622e5830b703a46cc9e44/scipy-1.17.1-cp313-cp313t-win_amd64.whl", hash = "sha256:e30bdeaa5deed6bc27b4cc490823cd0347d7dae09119b8803ae576ea0ce52e4c", size = 36562980, upload-time = "2026-02-23T00:20:40.575Z" }, + { url = "https://files.pythonhosted.org/packages/70/b0/eb757336e5a76dfa7911f63252e3b7d1de00935d7705cf772db5b45ec238/scipy-1.17.1-cp313-cp313t-win_arm64.whl", hash = "sha256:a720477885a9d2411f94a93d16f9d89bad0f28ca23c3f8daa521e2dcc3f44d49", size = 24856543, upload-time = "2026-02-23T00:20:45.313Z" }, + { url = "https://files.pythonhosted.org/packages/cf/83/333afb452af6f0fd70414dc04f898647ee1423979ce02efa75c3b0f2c28e/scipy-1.17.1-cp314-cp314-macosx_10_14_x86_64.whl", hash = "sha256:a48a72c77a310327f6a3a920092fa2b8fd03d7deaa60f093038f22d98e096717", size = 31584510, upload-time = "2026-02-23T00:21:01.015Z" }, + { url = "https://files.pythonhosted.org/packages/ed/a6/d05a85fd51daeb2e4ea71d102f15b34fedca8e931af02594193ae4fd25f7/scipy-1.17.1-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:45abad819184f07240d8a696117a7aacd39787af9e0b719d00285549ed19a1e9", size = 28170131, upload-time = "2026-02-23T00:21:05.888Z" }, + { url = "https://files.pythonhosted.org/packages/db/7b/8624a203326675d7746a254083a187398090a179335b2e4a20e2ddc46e83/scipy-1.17.1-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:3fd1fcdab3ea951b610dc4cef356d416d5802991e7e32b5254828d342f7b7e0b", size = 20342032, upload-time = "2026-02-23T00:21:09.904Z" }, + { url = "https://files.pythonhosted.org/packages/c9/35/2c342897c00775d688d8ff3987aced3426858fd89d5a0e26e020b660b301/scipy-1.17.1-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:7bdf2da170b67fdf10bca777614b1c7d96ae3ca5794fd9587dce41eb2966e866", size = 22678766, upload-time = "2026-02-23T00:21:14.313Z" }, + { url = "https://files.pythonhosted.org/packages/ef/f2/7cdb8eb308a1a6ae1e19f945913c82c23c0c442a462a46480ce487fdc0ac/scipy-1.17.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:adb2642e060a6549c343603a3851ba76ef0b74cc8c079a9a58121c7ec9fe2350", size = 32957007, upload-time = "2026-02-23T00:21:19.663Z" }, + { url = "https://files.pythonhosted.org/packages/0b/2e/7eea398450457ecb54e18e9d10110993fa65561c4f3add5e8eccd2b9cd41/scipy-1.17.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:eee2cfda04c00a857206a4330f0c5e3e56535494e30ca445eb19ec624ae75118", size = 35221333, upload-time = "2026-02-23T00:21:25.278Z" }, + { url = "https://files.pythonhosted.org/packages/d9/77/5b8509d03b77f093a0d52e606d3c4f79e8b06d1d38c441dacb1e26cacf46/scipy-1.17.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:d2650c1fb97e184d12d8ba010493ee7b322864f7d3d00d3f9bb97d9c21de4068", size = 35042066, upload-time = "2026-02-23T00:21:31.358Z" }, + { url = "https://files.pythonhosted.org/packages/f9/df/18f80fb99df40b4070328d5ae5c596f2f00fffb50167e31439e932f29e7d/scipy-1.17.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:08b900519463543aa604a06bec02461558a6e1cef8fdbb8098f77a48a83c8118", size = 37612763, upload-time = "2026-02-23T00:21:37.247Z" }, + { url = "https://files.pythonhosted.org/packages/4b/39/f0e8ea762a764a9dc52aa7dabcfad51a354819de1f0d4652b6a1122424d6/scipy-1.17.1-cp314-cp314-win_amd64.whl", hash = "sha256:3877ac408e14da24a6196de0ddcace62092bfc12a83823e92e49e40747e52c19", size = 37290984, upload-time = "2026-02-23T00:22:35.023Z" }, + { url = "https://files.pythonhosted.org/packages/7c/56/fe201e3b0f93d1a8bcf75d3379affd228a63d7e2d80ab45467a74b494947/scipy-1.17.1-cp314-cp314-win_arm64.whl", hash = "sha256:f8885db0bc2bffa59d5c1b72fad7a6a92d3e80e7257f967dd81abb553a90d293", size = 25192877, upload-time = "2026-02-23T00:22:39.798Z" }, + { url = "https://files.pythonhosted.org/packages/96/ad/f8c414e121f82e02d76f310f16db9899c4fcde36710329502a6b2a3c0392/scipy-1.17.1-cp314-cp314t-macosx_10_14_x86_64.whl", hash = "sha256:1cc682cea2ae55524432f3cdff9e9a3be743d52a7443d0cba9017c23c87ae2f6", size = 31949750, upload-time = "2026-02-23T00:21:42.289Z" }, + { url = "https://files.pythonhosted.org/packages/7c/b0/c741e8865d61b67c81e255f4f0a832846c064e426636cd7de84e74d209be/scipy-1.17.1-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:2040ad4d1795a0ae89bfc7e8429677f365d45aa9fd5e4587cf1ea737f927b4a1", size = 28585858, upload-time = "2026-02-23T00:21:47.706Z" }, + { url = "https://files.pythonhosted.org/packages/ed/1b/3985219c6177866628fa7c2595bfd23f193ceebbe472c98a08824b9466ff/scipy-1.17.1-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:131f5aaea57602008f9822e2115029b55d4b5f7c070287699fe45c661d051e39", size = 20757723, upload-time = "2026-02-23T00:21:52.039Z" }, + { url = "https://files.pythonhosted.org/packages/c0/19/2a04aa25050d656d6f7b9e7b685cc83d6957fb101665bfd9369ca6534563/scipy-1.17.1-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:9cdc1a2fcfd5c52cfb3045feb399f7b3ce822abdde3a193a6b9a60b3cb5854ca", size = 23043098, upload-time = "2026-02-23T00:21:56.185Z" }, + { url = "https://files.pythonhosted.org/packages/86/f1/3383beb9b5d0dbddd030335bf8a8b32d4317185efe495374f134d8be6cce/scipy-1.17.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6e3dcd57ab780c741fde8dc68619de988b966db759a3c3152e8e9142c26295ad", size = 33030397, upload-time = "2026-02-23T00:22:01.404Z" }, + { url = "https://files.pythonhosted.org/packages/41/68/8f21e8a65a5a03f25a79165ec9d2b28c00e66dc80546cf5eb803aeeff35b/scipy-1.17.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a9956e4d4f4a301ebf6cde39850333a6b6110799d470dbbb1e25326ac447f52a", size = 35281163, upload-time = "2026-02-23T00:22:07.024Z" }, + { url = "https://files.pythonhosted.org/packages/84/8d/c8a5e19479554007a5632ed7529e665c315ae7492b4f946b0deb39870e39/scipy-1.17.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:a4328d245944d09fd639771de275701ccadf5f781ba0ff092ad141e017eccda4", size = 35116291, upload-time = "2026-02-23T00:22:12.585Z" }, + { url = "https://files.pythonhosted.org/packages/52/52/e57eceff0e342a1f50e274264ed47497b59e6a4e3118808ee58ddda7b74a/scipy-1.17.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a77cbd07b940d326d39a1d1b37817e2ee4d79cb30e7338f3d0cddffae70fcaa2", size = 37682317, upload-time = "2026-02-23T00:22:18.513Z" }, + { url = "https://files.pythonhosted.org/packages/11/2f/b29eafe4a3fbc3d6de9662b36e028d5f039e72d345e05c250e121a230dd4/scipy-1.17.1-cp314-cp314t-win_amd64.whl", hash = "sha256:eb092099205ef62cd1782b006658db09e2fed75bffcae7cc0d44052d8aa0f484", size = 37345327, upload-time = "2026-02-23T00:22:24.442Z" }, + { url = "https://files.pythonhosted.org/packages/07/39/338d9219c4e87f3e708f18857ecd24d22a0c3094752393319553096b98af/scipy-1.17.1-cp314-cp314t-win_arm64.whl", hash = "sha256:200e1050faffacc162be6a486a984a0497866ec54149a01270adc8a59b7c7d21", size = 25489165, upload-time = "2026-02-23T00:22:29.563Z" }, +] + [[package]] name = "six" version = "1.17.0" @@ -471,41 +997,115 @@ wheels = [ [[package]] name = "suggests" -version = "0.3.0" +version = "0.3.1" source = { editable = "." } dependencies = [ { name = "beautifulsoup4" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, - { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "pandas", version = "2.3.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, - { name = "pandas", version = "3.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "polars" }, { name = "requests" }, ] +[package.dev-dependencies] +dev = [ + { name = "adjusttext" }, + { name = "igraph" }, + { name = "matplotlib" }, + { name = "networkx" }, + { name = "pytest" }, + { name = "pytest-cov" }, + { name = "ruff" }, + { name = "scipy" }, +] + [package.metadata] requires-dist = [ { name = "beautifulsoup4", specifier = ">=4.11" }, - { name = "numpy", specifier = ">=2.0" }, - { name = "pandas", specifier = ">=2.0" }, + { name = "polars", specifier = ">=1.0" }, { name = "requests", specifier = ">=2.28" }, ] +[package.metadata.requires-dev] +dev = [ + { name = "adjusttext", specifier = ">=1.3.0" }, + { name = "igraph", specifier = ">=1.0.0" }, + { name = "matplotlib", specifier = ">=3.7" }, + { name = "networkx", specifier = ">=3.0" }, + { name = "pytest", specifier = ">=6.2" }, + { name = "pytest-cov", specifier = ">=4.0" }, + { name = "ruff", specifier = ">=0.15.4" }, + { name = "scipy", specifier = ">=1.11" }, +] + [[package]] -name = "typing-extensions" -version = "4.15.0" +name = "texttable" +version = "1.7.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } +sdist = { url = "https://files.pythonhosted.org/packages/1c/dc/0aff23d6036a4d3bf4f1d8c8204c5c79c4437e25e0ae94ffe4bbb55ee3c2/texttable-1.7.0.tar.gz", hash = "sha256:2d2068fb55115807d3ac77a4ca68fa48803e84ebb0ee2340f858107a36522638", size = 12831, upload-time = "2023-10-03T09:48:12.272Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, + { url = "https://files.pythonhosted.org/packages/24/99/4772b8e00a136f3e01236de33b0efda31ee7077203ba5967fcc76da94d65/texttable-1.7.0-py2.py3-none-any.whl", hash = "sha256:72227d592c82b3d7f672731ae73e4d1f88cd8e2ef5b075a7a7f01a23a3743917", size = 10768, upload-time = "2023-10-03T09:48:10.434Z" }, ] [[package]] -name = "tzdata" -version = "2025.3" +name = "tomli" +version = "2.4.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/5e/a7/c202b344c5ca7daf398f3b8a477eeb205cf3b6f32e7ec3a6bac0629ca975/tzdata-2025.3.tar.gz", hash = "sha256:de39c2ca5dc7b0344f2eba86f49d614019d29f060fc4ebc8a417896a620b56a7", size = 196772, upload-time = "2025-12-13T17:45:35.667Z" } +sdist = { url = "https://files.pythonhosted.org/packages/82/30/31573e9457673ab10aa432461bee537ce6cef177667deca369efb79df071/tomli-2.4.0.tar.gz", hash = "sha256:aa89c3f6c277dd275d8e243ad24f3b5e701491a860d5121f2cdd399fbb31fc9c", size = 17477, upload-time = "2026-01-11T11:22:38.165Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c7/b0/003792df09decd6849a5e39c28b513c06e84436a54440380862b5aeff25d/tzdata-2025.3-py2.py3-none-any.whl", hash = "sha256:06a47e5700f3081aab02b2e513160914ff0694bce9947d6b76ebd6bf57cfc5d1", size = 348521, upload-time = "2025-12-13T17:45:33.889Z" }, + { url = "https://files.pythonhosted.org/packages/3c/d9/3dc2289e1f3b32eb19b9785b6a006b28ee99acb37d1d47f78d4c10e28bf8/tomli-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b5ef256a3fd497d4973c11bf142e9ed78b150d36f5773f1ca6088c230ffc5867", size = 153663, upload-time = "2026-01-11T11:21:45.27Z" }, + { url = "https://files.pythonhosted.org/packages/51/32/ef9f6845e6b9ca392cd3f64f9ec185cc6f09f0a2df3db08cbe8809d1d435/tomli-2.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5572e41282d5268eb09a697c89a7bee84fae66511f87533a6f88bd2f7b652da9", size = 148469, upload-time = "2026-01-11T11:21:46.873Z" }, + { url = "https://files.pythonhosted.org/packages/d6/c2/506e44cce89a8b1b1e047d64bd495c22c9f71f21e05f380f1a950dd9c217/tomli-2.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:551e321c6ba03b55676970b47cb1b73f14a0a4dce6a3e1a9458fd6d921d72e95", size = 236039, upload-time = "2026-01-11T11:21:48.503Z" }, + { url = "https://files.pythonhosted.org/packages/b3/40/e1b65986dbc861b7e986e8ec394598187fa8aee85b1650b01dd925ca0be8/tomli-2.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5e3f639a7a8f10069d0e15408c0b96a2a828cfdec6fca05296ebcdcc28ca7c76", size = 243007, upload-time = "2026-01-11T11:21:49.456Z" }, + { url = "https://files.pythonhosted.org/packages/9c/6f/6e39ce66b58a5b7ae572a0f4352ff40c71e8573633deda43f6a379d56b3e/tomli-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1b168f2731796b045128c45982d3a4874057626da0e2ef1fdd722848b741361d", size = 240875, upload-time = "2026-01-11T11:21:50.755Z" }, + { url = "https://files.pythonhosted.org/packages/aa/ad/cb089cb190487caa80204d503c7fd0f4d443f90b95cf4ef5cf5aa0f439b0/tomli-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:133e93646ec4300d651839d382d63edff11d8978be23da4cc106f5a18b7d0576", size = 246271, upload-time = "2026-01-11T11:21:51.81Z" }, + { url = "https://files.pythonhosted.org/packages/0b/63/69125220e47fd7a3a27fd0de0c6398c89432fec41bc739823bcc66506af6/tomli-2.4.0-cp311-cp311-win32.whl", hash = "sha256:b6c78bdf37764092d369722d9946cb65b8767bfa4110f902a1b2542d8d173c8a", size = 96770, upload-time = "2026-01-11T11:21:52.647Z" }, + { url = "https://files.pythonhosted.org/packages/1e/0d/a22bb6c83f83386b0008425a6cd1fa1c14b5f3dd4bad05e98cf3dbbf4a64/tomli-2.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:d3d1654e11d724760cdb37a3d7691f0be9db5fbdaef59c9f532aabf87006dbaa", size = 107626, upload-time = "2026-01-11T11:21:53.459Z" }, + { url = "https://files.pythonhosted.org/packages/2f/6d/77be674a3485e75cacbf2ddba2b146911477bd887dda9d8c9dfb2f15e871/tomli-2.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:cae9c19ed12d4e8f3ebf46d1a75090e4c0dc16271c5bce1c833ac168f08fb614", size = 94842, upload-time = "2026-01-11T11:21:54.831Z" }, + { url = "https://files.pythonhosted.org/packages/3c/43/7389a1869f2f26dba52404e1ef13b4784b6b37dac93bac53457e3ff24ca3/tomli-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:920b1de295e72887bafa3ad9f7a792f811847d57ea6b1215154030cf131f16b1", size = 154894, upload-time = "2026-01-11T11:21:56.07Z" }, + { url = "https://files.pythonhosted.org/packages/e9/05/2f9bf110b5294132b2edf13fe6ca6ae456204f3d749f623307cbb7a946f2/tomli-2.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7d6d9a4aee98fac3eab4952ad1d73aee87359452d1c086b5ceb43ed02ddb16b8", size = 149053, upload-time = "2026-01-11T11:21:57.467Z" }, + { url = "https://files.pythonhosted.org/packages/e8/41/1eda3ca1abc6f6154a8db4d714a4d35c4ad90adc0bcf700657291593fbf3/tomli-2.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:36b9d05b51e65b254ea6c2585b59d2c4cb91c8a3d91d0ed0f17591a29aaea54a", size = 243481, upload-time = "2026-01-11T11:21:58.661Z" }, + { url = "https://files.pythonhosted.org/packages/d2/6d/02ff5ab6c8868b41e7d4b987ce2b5f6a51d3335a70aa144edd999e055a01/tomli-2.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1c8a885b370751837c029ef9bc014f27d80840e48bac415f3412e6593bbc18c1", size = 251720, upload-time = "2026-01-11T11:22:00.178Z" }, + { url = "https://files.pythonhosted.org/packages/7b/57/0405c59a909c45d5b6f146107c6d997825aa87568b042042f7a9c0afed34/tomli-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8768715ffc41f0008abe25d808c20c3d990f42b6e2e58305d5da280ae7d1fa3b", size = 247014, upload-time = "2026-01-11T11:22:01.238Z" }, + { url = "https://files.pythonhosted.org/packages/2c/0e/2e37568edd944b4165735687cbaf2fe3648129e440c26d02223672ee0630/tomli-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7b438885858efd5be02a9a133caf5812b8776ee0c969fea02c45e8e3f296ba51", size = 251820, upload-time = "2026-01-11T11:22:02.727Z" }, + { url = "https://files.pythonhosted.org/packages/5a/1c/ee3b707fdac82aeeb92d1a113f803cf6d0f37bdca0849cb489553e1f417a/tomli-2.4.0-cp312-cp312-win32.whl", hash = "sha256:0408e3de5ec77cc7f81960c362543cbbd91ef883e3138e81b729fc3eea5b9729", size = 97712, upload-time = "2026-01-11T11:22:03.777Z" }, + { url = "https://files.pythonhosted.org/packages/69/13/c07a9177d0b3bab7913299b9278845fc6eaaca14a02667c6be0b0a2270c8/tomli-2.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:685306e2cc7da35be4ee914fd34ab801a6acacb061b6a7abca922aaf9ad368da", size = 108296, upload-time = "2026-01-11T11:22:04.86Z" }, + { url = "https://files.pythonhosted.org/packages/18/27/e267a60bbeeee343bcc279bb9e8fbed0cbe224bc7b2a3dc2975f22809a09/tomli-2.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:5aa48d7c2356055feef06a43611fc401a07337d5b006be13a30f6c58f869e3c3", size = 94553, upload-time = "2026-01-11T11:22:05.854Z" }, + { url = "https://files.pythonhosted.org/packages/34/91/7f65f9809f2936e1f4ce6268ae1903074563603b2a2bd969ebbda802744f/tomli-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:84d081fbc252d1b6a982e1870660e7330fb8f90f676f6e78b052ad4e64714bf0", size = 154915, upload-time = "2026-01-11T11:22:06.703Z" }, + { url = "https://files.pythonhosted.org/packages/20/aa/64dd73a5a849c2e8f216b755599c511badde80e91e9bc2271baa7b2cdbb1/tomli-2.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9a08144fa4cba33db5255f9b74f0b89888622109bd2776148f2597447f92a94e", size = 149038, upload-time = "2026-01-11T11:22:07.56Z" }, + { url = "https://files.pythonhosted.org/packages/9e/8a/6d38870bd3d52c8d1505ce054469a73f73a0fe62c0eaf5dddf61447e32fa/tomli-2.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c73add4bb52a206fd0c0723432db123c0c75c280cbd67174dd9d2db228ebb1b4", size = 242245, upload-time = "2026-01-11T11:22:08.344Z" }, + { url = "https://files.pythonhosted.org/packages/59/bb/8002fadefb64ab2669e5b977df3f5e444febea60e717e755b38bb7c41029/tomli-2.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1fb2945cbe303b1419e2706e711b7113da57b7db31ee378d08712d678a34e51e", size = 250335, upload-time = "2026-01-11T11:22:09.951Z" }, + { url = "https://files.pythonhosted.org/packages/a5/3d/4cdb6f791682b2ea916af2de96121b3cb1284d7c203d97d92d6003e91c8d/tomli-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bbb1b10aa643d973366dc2cb1ad94f99c1726a02343d43cbc011edbfac579e7c", size = 245962, upload-time = "2026-01-11T11:22:11.27Z" }, + { url = "https://files.pythonhosted.org/packages/f2/4a/5f25789f9a460bd858ba9756ff52d0830d825b458e13f754952dd15fb7bb/tomli-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4cbcb367d44a1f0c2be408758b43e1ffb5308abe0ea222897d6bfc8e8281ef2f", size = 250396, upload-time = "2026-01-11T11:22:12.325Z" }, + { url = "https://files.pythonhosted.org/packages/aa/2f/b73a36fea58dfa08e8b3a268750e6853a6aac2a349241a905ebd86f3047a/tomli-2.4.0-cp313-cp313-win32.whl", hash = "sha256:7d49c66a7d5e56ac959cb6fc583aff0651094ec071ba9ad43df785abc2320d86", size = 97530, upload-time = "2026-01-11T11:22:13.865Z" }, + { url = "https://files.pythonhosted.org/packages/3b/af/ca18c134b5d75de7e8dc551c5234eaba2e8e951f6b30139599b53de9c187/tomli-2.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:3cf226acb51d8f1c394c1b310e0e0e61fecdd7adcb78d01e294ac297dd2e7f87", size = 108227, upload-time = "2026-01-11T11:22:15.224Z" }, + { url = "https://files.pythonhosted.org/packages/22/c3/b386b832f209fee8073c8138ec50f27b4460db2fdae9ffe022df89a57f9b/tomli-2.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:d20b797a5c1ad80c516e41bc1fb0443ddb5006e9aaa7bda2d71978346aeb9132", size = 94748, upload-time = "2026-01-11T11:22:16.009Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c4/84047a97eb1004418bc10bdbcfebda209fca6338002eba2dc27cc6d13563/tomli-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:26ab906a1eb794cd4e103691daa23d95c6919cc2fa9160000ac02370cc9dd3f6", size = 154725, upload-time = "2026-01-11T11:22:17.269Z" }, + { url = "https://files.pythonhosted.org/packages/a8/5d/d39038e646060b9d76274078cddf146ced86dc2b9e8bbf737ad5983609a0/tomli-2.4.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:20cedb4ee43278bc4f2fee6cb50daec836959aadaf948db5172e776dd3d993fc", size = 148901, upload-time = "2026-01-11T11:22:18.287Z" }, + { url = "https://files.pythonhosted.org/packages/73/e5/383be1724cb30f4ce44983d249645684a48c435e1cd4f8b5cded8a816d3c/tomli-2.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:39b0b5d1b6dd03684b3fb276407ebed7090bbec989fa55838c98560c01113b66", size = 243375, upload-time = "2026-01-11T11:22:19.154Z" }, + { url = "https://files.pythonhosted.org/packages/31/f0/bea80c17971c8d16d3cc109dc3585b0f2ce1036b5f4a8a183789023574f2/tomli-2.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a26d7ff68dfdb9f87a016ecfd1e1c2bacbe3108f4e0f8bcd2228ef9a766c787d", size = 250639, upload-time = "2026-01-11T11:22:20.168Z" }, + { url = "https://files.pythonhosted.org/packages/2c/8f/2853c36abbb7608e3f945d8a74e32ed3a74ee3a1f468f1ffc7d1cb3abba6/tomli-2.4.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:20ffd184fb1df76a66e34bd1b36b4a4641bd2b82954befa32fe8163e79f1a702", size = 246897, upload-time = "2026-01-11T11:22:21.544Z" }, + { url = "https://files.pythonhosted.org/packages/49/f0/6c05e3196ed5337b9fe7ea003e95fd3819a840b7a0f2bf5a408ef1dad8ed/tomli-2.4.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:75c2f8bbddf170e8effc98f5e9084a8751f8174ea6ccf4fca5398436e0320bc8", size = 254697, upload-time = "2026-01-11T11:22:23.058Z" }, + { url = "https://files.pythonhosted.org/packages/f3/f5/2922ef29c9f2951883525def7429967fc4d8208494e5ab524234f06b688b/tomli-2.4.0-cp314-cp314-win32.whl", hash = "sha256:31d556d079d72db7c584c0627ff3a24c5d3fb4f730221d3444f3efb1b2514776", size = 98567, upload-time = "2026-01-11T11:22:24.033Z" }, + { url = "https://files.pythonhosted.org/packages/7b/31/22b52e2e06dd2a5fdbc3ee73226d763b184ff21fc24e20316a44ccc4d96b/tomli-2.4.0-cp314-cp314-win_amd64.whl", hash = "sha256:43e685b9b2341681907759cf3a04e14d7104b3580f808cfde1dfdb60ada85475", size = 108556, upload-time = "2026-01-11T11:22:25.378Z" }, + { url = "https://files.pythonhosted.org/packages/48/3d/5058dff3255a3d01b705413f64f4306a141a8fd7a251e5a495e3f192a998/tomli-2.4.0-cp314-cp314-win_arm64.whl", hash = "sha256:3d895d56bd3f82ddd6faaff993c275efc2ff38e52322ea264122d72729dca2b2", size = 96014, upload-time = "2026-01-11T11:22:26.138Z" }, + { url = "https://files.pythonhosted.org/packages/b8/4e/75dab8586e268424202d3a1997ef6014919c941b50642a1682df43204c22/tomli-2.4.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:5b5807f3999fb66776dbce568cc9a828544244a8eb84b84b9bafc080c99597b9", size = 163339, upload-time = "2026-01-11T11:22:27.143Z" }, + { url = "https://files.pythonhosted.org/packages/06/e3/b904d9ab1016829a776d97f163f183a48be6a4deb87304d1e0116a349519/tomli-2.4.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c084ad935abe686bd9c898e62a02a19abfc9760b5a79bc29644463eaf2840cb0", size = 159490, upload-time = "2026-01-11T11:22:28.399Z" }, + { url = "https://files.pythonhosted.org/packages/e3/5a/fc3622c8b1ad823e8ea98a35e3c632ee316d48f66f80f9708ceb4f2a0322/tomli-2.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0f2e3955efea4d1cfbcb87bc321e00dc08d2bcb737fd1d5e398af111d86db5df", size = 269398, upload-time = "2026-01-11T11:22:29.345Z" }, + { url = "https://files.pythonhosted.org/packages/fd/33/62bd6152c8bdd4c305ad9faca48f51d3acb2df1f8791b1477d46ff86e7f8/tomli-2.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e0fe8a0b8312acf3a88077a0802565cb09ee34107813bba1c7cd591fa6cfc8d", size = 276515, upload-time = "2026-01-11T11:22:30.327Z" }, + { url = "https://files.pythonhosted.org/packages/4b/ff/ae53619499f5235ee4211e62a8d7982ba9e439a0fb4f2f351a93d67c1dd2/tomli-2.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:413540dce94673591859c4c6f794dfeaa845e98bf35d72ed59636f869ef9f86f", size = 273806, upload-time = "2026-01-11T11:22:32.56Z" }, + { url = "https://files.pythonhosted.org/packages/47/71/cbca7787fa68d4d0a9f7072821980b39fbb1b6faeb5f5cf02f4a5559fa28/tomli-2.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:0dc56fef0e2c1c470aeac5b6ca8cc7b640bb93e92d9803ddaf9ea03e198f5b0b", size = 281340, upload-time = "2026-01-11T11:22:33.505Z" }, + { url = "https://files.pythonhosted.org/packages/f5/00/d595c120963ad42474cf6ee7771ad0d0e8a49d0f01e29576ee9195d9ecdf/tomli-2.4.0-cp314-cp314t-win32.whl", hash = "sha256:d878f2a6707cc9d53a1be1414bbb419e629c3d6e67f69230217bb663e76b5087", size = 108106, upload-time = "2026-01-11T11:22:34.451Z" }, + { url = "https://files.pythonhosted.org/packages/de/69/9aa0c6a505c2f80e519b43764f8b4ba93b5a0bbd2d9a9de6e2b24271b9a5/tomli-2.4.0-cp314-cp314t-win_amd64.whl", hash = "sha256:2add28aacc7425117ff6364fe9e06a183bb0251b03f986df0e78e974047571fd", size = 120504, upload-time = "2026-01-11T11:22:35.764Z" }, + { url = "https://files.pythonhosted.org/packages/b3/9f/f1668c281c58cfae01482f7114a4b88d345e4c140386241a1a24dcc9e7bc/tomli-2.4.0-cp314-cp314t-win_arm64.whl", hash = "sha256:2b1e3b80e1d5e52e40e9b924ec43d81570f0e7d09d11081b797bc4692765a3d4", size = 99561, upload-time = "2026-01-11T11:22:36.624Z" }, + { url = "https://files.pythonhosted.org/packages/23/d1/136eb2cb77520a31e1f64cbae9d33ec6df0d78bdf4160398e86eec8a8754/tomli-2.4.0-py3-none-any.whl", hash = "sha256:1f776e7d669ebceb01dee46484485f43a4048746235e683bcdffacdf1fb4785a", size = 14477, upload-time = "2026-01-11T11:22:37.446Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, ] [[package]]