Last active
April 16, 2025 13:48
-
-
Save manzt/7c63c7481b9fb39be1d815356fc4bf0f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /// script | |
# requires-python = ">=3.13" | |
# dependencies = [ | |
# "altair==5.5.0", | |
# "anywidget==0.9.18", | |
# "marimo", | |
# "polars==1.27.1", | |
# "pyarrow==19.0.1", | |
# "quak==0.2.2", | |
# ] | |
# /// | |
import marimo | |
__generated_with = "0.12.8" | |
app = marimo.App(width="medium") | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
""" | |
# A Look Inside the National Gallery of Art | |
> **TL;DR** - This notebook explores the National Gallery of Art’s [Open Access | |
> dataset](https://www.nga.gov/open-access-images/open-data.html). It’s adapted | |
> from [a post](https://deno.com/blog/exploring-art-with-typescript-and-jupyter) I | |
> wrote using the [Deno Jupyter | |
> kernel](https://docs.deno.com/runtime/reference/cli/jupyter/), which showed how | |
> TypeScript can support data analysis in notebooks—along with features unique to | |
> the web ecosystem, like JSX. | |
> | |
> This version highlights some of the same insights, but moreover **marimo**'s | |
> ✨**superpowers**✨ for working with data <u>in Python</u>. | |
> | |
> You’re already seeing some ✨: 1.) This notebook is a "live" document, running **entirely | |
> in the browser**. 2.) We can preview a `GalleryWidget` | |
> [anywidget](https://github.com/manzt/anywidget) (defined later in this | |
> notebook) right here at the top, thanks to marimo’s reactive execution. Read on for more! | |
> | |
> | |
> Poke around & explore the art (maybe even find a replacement for that default wallpaper)! | |
""" | |
) | |
return | |
@app.cell(hide_code=True) | |
def _(GalleryWidget, df): | |
GalleryWidget(df.sample(500, seed=42)) | |
return | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
## The Dataset | |
The **National Gallery of Art (NGA) | |
[Open Data Program](https://www.nga.gov/open-access-images/open-data.html)** | |
provides access to over **130,000 artworks** and their creators, available | |
[on GitHub](https://github.com/NationalGalleryOfArt/opendata/tree/main/data). | |
This dataset includes valuable metadata such as titles, dates, artists, and | |
classifications, all under a | |
[Creative Commons 0 (CC0)](https://creativecommons.org/public-domain/cc0/) | |
license, meaning it's free to use and share. | |
The collection spans a wide variety of artworks, from sculptures to paintings, | |
by famous artists like Mary Cassatt, M.C. Escher, Vincent van Gogh, Pablo | |
Picasso, and Georgia O'Keeffe. | |
However, navigating this resource is **hard**. The National Gallery's website | |
is not very user-friendly, making it difficult to make sense of what is actually | |
_in_ the dataset. It's nearly impossible to get any high-level insights, like | |
the number of paintings, which time periods are most represented, or which | |
artists are most prevalent–let alone make specific queries. Fortunately, the | |
dataset is available [on | |
GitHub](https://github.com/NationalGalleryOfArt/opendata/tree/main/data) as a | |
collection of related tables, exported as CSV files. | |
We'll **clean** and **join** these tables to create a **unified dataset**. | |
**But wait!** While these NGA tables are free to use, they only includes | |
_metadata_. The actual artwork images have separate licensing, with only about | |
half being CC0-licensed. We'll gather this info separately to identify freely | |
available images. | |
Our goal is to unify the data to identify public domain images, explore subsets, | |
and view available artworks. | |
""" | |
) | |
return | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
## Loading & cleaning the data | |
### Open Access Dataset | |
To get started, let's pull in each of tables we'll need: | |
- **`objects.csv`** – Metadata about artworks, including titles, dates, | |
materials, and classifications. | |
- **`constituents.csv`** – Artist details such as names, nationalities, and | |
lifespans. | |
- **`published_images.csv`** – Links to artwork images via the NGA’s [IIIF (International Image Interoperability Framework)](https://iiif.io/) API. | |
- **`objects_constituents.csv`** – A [many-to-many relationship](https://en.wikipedia.org/wiki/Many-to-many_(data_model)) between artworks | |
and the people or entities associated with them. | |
""" | |
) | |
return | |
@app.cell | |
def _(): | |
import polars as pl | |
url = "https://github.com/NationalGalleryOfArt/opendata/raw/refs/heads/main/data/" | |
objects = pl.read_csv(url + "objects.csv", ignore_errors=True).select( | |
pl.col("objectid"), | |
pl.col("title"), | |
pl.col("beginyear").alias("year"), | |
pl.col("medium"), | |
pl.col("visualbrowserclassification").alias("type"), | |
) | |
constituents = pl.read_csv(url + "constituents.csv", ignore_errors=True).select( | |
pl.col("constituentid"), | |
pl.col("forwarddisplayname").alias("name"), | |
pl.col("visualbrowsernationality").alias("nationality"), | |
) | |
published_images = pl.read_csv(url + "published_images.csv").select( | |
pl.col("depictstmsobjectid").alias("objectid"), | |
pl.col("uuid"), | |
pl.col("iiifthumburl").alias("thumburl"), | |
) | |
objects_constituents = ( | |
pl.read_csv(url + "objects_constituents.csv", ignore_errors=True) | |
.filter(pl.col("role").eq(pl.lit("artist"))) | |
.sort(by="displayorder") | |
.group_by("objectid") | |
.first() | |
.select("objectid", "constituentid") | |
) | |
return ( | |
constituents, | |
objects, | |
objects_constituents, | |
pl, | |
published_images, | |
url, | |
) | |
@app.cell(hide_code=True) | |
def _(mo, public_domain_ids): | |
mo.md( | |
f""" | |
### Public domain images IDs | |
We've loaded the relevant tables from the Open Access dataset, but these data | |
**do not** indicate whether the images associated with an artwork are also in | |
the public domain. This is an interesting omission both for understanding the | |
overall "openness" of the dataset and because CC0 images can be freely | |
downloaded, shared, and repurposed. | |
This information, however, _is_ available on the NGA website, but only | |
through the search user interface. Extracting it manually is impractical, so | |
I reverse-engineered an API call to retrieve all **{len(public_domain_ids):,} | |
IDs** for artworks with public domain images. | |
The query is slow and unofficial, so I’ve saved the results separately. | |
""" | |
) | |
return | |
@app.cell | |
def _(raw_public_domain_ids): | |
# raw_public_domain_ids are hard-coded _inline_ at the bottom of this notebook | |
public_domain_ids = [int(id) for id in raw_public_domain_ids.split(",")] | |
return (public_domain_ids,) | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
### Putting it together | |
Now that we have all our data cleaned and loaded, we'll perform a large **join** | |
to combine all these tables into a **single unified table**. | |
""" | |
) | |
return | |
@app.cell | |
def _( | |
constituents, | |
objects, | |
objects_constituents, | |
pl, | |
public_domain_ids, | |
published_images, | |
): | |
df = ( | |
objects.join(objects_constituents, on="objectid") | |
.join(constituents, on="constituentid") | |
.join(published_images, on="objectid") | |
.select(pl.col("thumburl"), pl.exclude("constituentid", "thumburl")) | |
.with_columns(pl.col("objectid").is_in(public_domain_ids).alias("public")) | |
.sort(by="public") | |
.sort(by="year", descending=True, nulls_last=True) | |
) | |
df | |
return (df,) | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
Here we see another ✨superpower✨: **marimo** automatically detects that | |
`thumburl` contains image URLs and displays the image _inline_ rather than text. | |
You can also _hover_ the images to take a closer look. It’s _possible_ to get | |
something similar in Jupyter, but it requires a third-party extension. In | |
**marimo**, it's a thoughtful default and immediately helps us get sense of the | |
data we're working with. | |
With our unified dataset finally loaded, let's move on to some plotting. | |
""" | |
) | |
return | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
## Plotting | |
The NGA portal allows some exploration of these data but focuses on _specific | |
artworks_. We're more interested in broader insights – where most art comes | |
from, who created it, when it was made, and whether it's public domain. | |
Let’s start by examining the distribution of artworks across different artwork | |
**types** in the NGA collection. | |
""" | |
) | |
return | |
@app.cell | |
def _(df, mo): | |
import altair as alt | |
mo.ui.altair_chart( | |
alt.Chart(df) | |
.mark_bar() | |
.encode( | |
x=alt.X("type", sort="-y", title="Type"), | |
y=alt.Y("count()", title="Count"), | |
color=alt.Color("public", title="Public domain"), | |
) | |
) | |
return (alt,) | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
Right away, we can see that **prints, drawings, and photographs** make up most | |
of the collection. Each category varies in how many images are public | |
domain—images of **prints, drawings, sculptures, and paintings** are mostly | |
public domain, while images of **photographs and portfolios** are largely | |
copyrighted. | |
We can also ask more specific questions about the data, such as **"Which artists | |
have the most artwork in the collection?"**, grouping by artist and counting the works. | |
""" | |
) | |
return | |
@app.cell | |
def _(alt, df, mo): | |
artwork_totals = df.group_by("name", "public").len().sort("len", descending=True) | |
mo.ui.altair_chart( | |
alt.Chart(artwork_totals.head(25)) | |
.mark_bar() | |
.encode( | |
x=alt.X("len", title="Count"), | |
y=alt.Y("name", title="Artist", sort="-x"), | |
color=alt.Color("public", title="Public domain"), | |
) | |
) | |
return (artwork_totals,) | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
Again, we can draw some high-level takeaways from this plot: The photographer | |
[Robert Frank](https://en.wikipedia.org/wiki/Robert_Frank) has nearly twice as | |
many works as the next highest artist. Some entries, like **"American 20th | |
Century"** and **"German 15th Century,"** represent groups rather than | |
individuals. Additionally, an artist’s work is typically **either entirely | |
public domain or not at all** – likely because public domain status is | |
determined at the **collection level**, with institutions clearing entire groups | |
of works at once rather than evaluating individual pieces separately. | |
""" | |
) | |
return | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
## Reactive interactivity | |
So far, we've used **static plots** to explore our data. Like Jupyter, | |
**marimo** supports rich, interactive outputs using **HTML, CSS, and | |
JavaScript**—including custom [anywidgets](https://github.com/manzt/anywidget). | |
We can use the [**quak**](https://github.com/manzt/quak) data-table anywidget to | |
interactively drill down in the these data by cross-filtering across columns. | |
Another ✨superpower✨: **marimo’s cells are reactive** – cells automatically | |
re-run when necessary. Because marimo has [first-party support for | |
anywidgets](https://marimo.io/blog/anywidget), **quak** doesn’t just display | |
interactive output — it hooks directly into _reactivity_. Interacting with a | |
widget triggers updates in **marimo** just like running cells. | |
We can reuse our top-_k_ artists plot above, but now make it _depend_ on current | |
data from the `quak.Widget`, just by accessing `Widget.data()` in another cell. | |
""" | |
) | |
return | |
@app.cell(hide_code=True) | |
def _(alt, mo, table): | |
_totals = ( | |
table.data().pl().group_by("name", "public").len().sort("len", descending=True) | |
) | |
mo.ui.altair_chart( | |
alt.Chart(_totals.head(25)) | |
.mark_bar() | |
.encode( | |
x=alt.X("len", title="Count"), | |
y=alt.Y("name", title="Artist", sort="-x"), | |
color=alt.Color("public", title="Public domain"), | |
) | |
.properties(height=300, width=400) | |
) | |
return | |
@app.cell | |
def _(df, mo): | |
import quak | |
table = mo.ui.anywidget(quak.Widget(df)) | |
table | |
return quak, table | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
For example, if we select the **painting** category from the **quak** summary | |
header, our chart _automatically_ updates to show the _painters_ with the most | |
paintings ([George Catlin](https://en.wikipedia.org/wiki/George_Catlin) with the | |
most) — rather than the top artists across all types. | |
Again (and you might be sensing a theme), you can build something _similar_ | |
setup with widgets in Jupyter, but it takes more ceremony with imperative | |
callbacks. In **marimo**, it’s all automatic. | |
""" | |
) | |
return | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
### Custom `GalleryWidget` anywidget | |
Off-the-shelf controls (e.g., buttons, sliders) and standard plotting tools can | |
help make data more accessible — but **custom visual representations** can more | |
effectively leverage human perception and spatial reasoning to support nuanced | |
insight, particularly in domain-specific contexts. | |
Instead of covering the long tail of custom views, **marimo** gives you the | |
building blocks ✨. With [anywidget](https://github.com/manzt/anywidget), you can | |
define visual components directly in the notebook, tailored to your data. | |
""" | |
) | |
return | |
@app.cell | |
def _(GALLARY_WIDGET_ESM, GALLARY_WIDGET_STYLES, pl): | |
import anywidget | |
import traitlets | |
class GalleryWidget(anywidget.AnyWidget): | |
_esm = GALLARY_WIDGET_ESM | |
_css = GALLARY_WIDGET_STYLES | |
_ipc = traitlets.Any().tag(sync=True) | |
size = traitlets.Int(100).tag(sync=True) | |
page = traitlets.Int(0).tag(sync=True) | |
page_size = traitlets.Int(12).tag(sync=True) | |
def __init__( | |
self, objects: pl.DataFrame, *, size: int = 90, page_size: int = 20 | |
) -> None: | |
super().__init__( | |
_ipc=objects.write_ipc(None).getvalue(), | |
size=size, | |
page=0, | |
page_size=page_size, | |
) | |
return GalleryWidget, anywidget, traitlets | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
`GalleryWidget` is a custom anywidget that displays a grid of artwork thumbnails | |
from a given dataset. Each image **links to its NGA collection page**, and | |
public domain works are marked with a CC0 icon. | |
**Page through the images and click any artwork to view it on the NGA website.** | |
""" | |
) | |
return | |
@app.cell | |
def _(GalleryWidget, df): | |
GalleryWidget(df.sample(500, seed=123)) | |
return | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md(r"""Or filter down to just paintings:""") | |
return | |
@app.cell | |
def _(GalleryWidget, df, pl): | |
GalleryWidget(df.filter(pl.col("type") == "painting").sample(500, seed=123)) | |
return | |
@app.cell | |
def _(GalleryWidget, df, pl): | |
GalleryWidget(df.filter(pl.col("type") == "painting").sample(500, seed=123)) | |
return | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
It's worth taking a moment to appreciate that in just a few lines of code, we've | |
built a **domain-specific utility** that makes our data more intuitive to | |
explore. All the code lives entirely in this notebook, but could be packaged and | |
[published to PyPI](https://anywidget.dev/en/community/) if more broadly useful. | |
## Widget composition | |
A common pattern in exploratory interfaces is [**overview + | |
detail**](https://infovis-wiki.net/wiki/Overview-plus-Detail): one view provides | |
a broad summary, while another shows focused detail. Many interactive plotting | |
libraries support this pattern — but it’s not always obvious that you can apply | |
it yourself, especially when working with custom views. | |
Another one of **marimo**’s ✨superpowers✨ is the ability to _compose_ widgets to | |
create interactive views that fit your data — not the other way around. For | |
example, combining `quak` and `GalleryWidget` gives rise to a totally unique | |
overview + detail view, tailored to our workflow. | |
""" | |
) | |
return | |
@app.cell | |
def _(GalleryWidget, t2): | |
GalleryWidget(t2.data().pl().sample(500, seed=42), page_size=10) | |
return | |
@app.cell | |
def _(df, mo, quak): | |
t2 = mo.ui.anywidget(quak.Widget(df)) | |
t2 | |
return (t2,) | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
Hopefully you can now see how this ✨superpower✨ allows us to augment our | |
environment for a particular task. We could filter the dataset manually by | |
writing `polars.filter(...)` expressions and re-running cells — but that’s a | |
slow, inefficient way to explore using our `GalleryWidget`. | |
When we’re just trying to get a sense of the collection, using [**direct | |
manipulation**](https://en.wikipedia.org/wiki/Direct_manipulation_interface) | |
lets us explore more efficiently, and even surface subsets we might not think to | |
query with code. We can quickly drill down to several subsets by | |
_cross-filtering_. Writing those same queries by hand would be tedious, and | |
without the filtered view, you might not even know what to look for. | |
> **NOTE**: A common critique of **direct manipulation** is that it’s hard to | |
reproduce. With `quak`, the current selection is stored as a SQL query, | |
accessible via `Widget.sql` — so you can always refine, reuse, or export it as | |
needed. | |
""" | |
) | |
return | |
@app.cell | |
def _(t2): | |
t2.sql | |
return | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
## Time Tells a Story | |
So far, we’ve focused on high-level summaries of the NGA collection — grouping | |
by artist and artwork type using static plots — and highlighted some of | |
**marimo**’s ✨superpowers✨ along the way. | |
Now, let’s drill down into something potentially more interesting: **when these | |
works were created**. | |
We'll start with a stacked histogram to see the distribution of artwork types | |
over time, then facet by public domain status to uncover patterns. | |
""" | |
) | |
return | |
@app.cell(hide_code=True) | |
def _(alt, df, mo, pl): | |
mo.ui.altair_chart( | |
alt.Chart(df.filter(pl.col("year") > 1401)) | |
.mark_bar() | |
.encode( | |
x=alt.X("year", bin=alt.Bin(maxbins=100), title="Year"), | |
y=alt.Y("count()", stack=True, title="Count"), | |
color=alt.Color("type:N", title="Artwork Type", legend=True), | |
row=alt.Row("public:N", title="Public Domain"), | |
) | |
.properties(width=800, height=150) | |
.configure_axis(grid=True) | |
) | |
return | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
The distribution of artworks with **copyrighted** and **public domain** images | |
are noticeably different. Nearly all **copyrighted works appear after 1850**, | |
while **public domain artworks are more evenly spread** over time—_except_ for a | |
**sharp spike in public domain drawings from the 1940s**, with over 15k artworks | |
added. | |
This is a striking anomaly. Are they all from the same artist? Why only | |
drawings? Let’s take a closer look. | |
We'll filter down the public domain data to this span. | |
""" | |
) | |
return | |
@app.cell(hide_code=True) | |
def _(alt, df, mo, pl): | |
_subset = ( | |
df.filter("public") # just public domain | |
.filter(pl.col("year").gt(pl.lit(1925))) # between 1925 - 1955 | |
.filter(pl.col("year").lt(pl.lit(1955))) | |
.sort(by="year") | |
) | |
mo.ui.altair_chart( | |
alt.Chart(_subset) | |
.mark_bar() | |
.encode( | |
x=alt.X("year", bin=alt.Bin(maxbins=100), title="Year"), | |
y=alt.Y("count()", stack=True, title="Count"), | |
color=alt.Color("type:N", title="Artwork Type", legend=True), | |
) | |
.properties(height=150) | |
.configure_axis(grid=True) | |
) | |
return | |
@app.cell(hide_code=True) | |
def _(df, mo, pl): | |
subset = ( | |
df.filter(pl.col("public")) | |
.filter(pl.col("year").gt(pl.lit(1934))) | |
.filter(pl.col("year").lt(pl.lit(1943))) | |
) | |
num_artists = subset.group_by("name").len().shape[0] | |
mo.md( | |
f""" | |
Zooming into the **1925–1955 range**, we see that almost all the data falls | |
within a much narrower window. Interestingly, the spike is highly concentrated | |
between **1935 and 1942**, with very little artwork outside this period. | |
Narrowing in closer, we find there are **{len(subset):,} drawings** in this time span made | |
by **{num_artists:,} individuals**. | |
Even more interesting! The artwork is not from just one specific | |
source — there was a **surge of public works between 1935 and 1942**. | |
Let's use our custom `GalleryWidget` view to explore a subset of these | |
works. Maybe seeing them will give us some insight. | |
""" | |
) | |
return num_artists, subset | |
@app.cell | |
def _(GalleryWidget, subset): | |
GalleryWidget(subset.sample(n=500, seed=42), page_size=78, size=70) | |
return | |
@app.cell(hide_code=True) | |
def _(mo): | |
mo.md( | |
r""" | |
**All these drawings have a very similar style and medium** despite being from | |
different individuals. What might explain this pattern? | |
Thanks to our custom `GalleryWidget`, we can click on artworks and view their | |
metadata. Sampling a few, we see that they all belong to the ["Index of | |
American | |
Design"](https://www.nga.gov/features/exhibitions/outliers-and-american-vanguard-artist-biographies/index-of-american-design.html) | |
collection. | |
> Conceived as an effort to document and preserve American folk and decorative | |
> arts, the Index of American Design consists of 18,257 watercolor renderings | |
> created between **1935 and 1942** as part of a Federal Art Project (FAP) | |
> work-relief program. Around 400 artists meticulously recreated textiles, | |
> woodcarvings, weathervanes, and other objects from across the U.S., aiming to | |
> establish a distinct American visual lineage. The project was ultimately | |
> housed at the National Gallery of Art, becoming a widely exhibited visual | |
> archive. | |
That’s it! We’re seeing a **collection of public works funded by a federal | |
program during the Great Depression**—clear in both the data and historical | |
context. | |
""" | |
) | |
return | |
@app.cell(hide_code=True) | |
def _(): | |
import marimo as mo | |
raw_public_domain_ids = "43626,41622,37004,35,41623,41624,41625,41626,41675,46176,282,10,33,397,0,34,41635,41636,41633,41634,46101,41702,13,434,357,1,272,41683,12143,12118,284,892,206124,893,891,41676,7,206126,6,8,204932,403,404,402,41628,161,160,206072,198423,167923,198424,18,3,206122,2,4,344,46103,46170,46128,41698,184,183,182,25,12111,37635,37634,206125,37633,396,9,411,41644,366,41688,46102,5,17,436,16,41630,41631,367,50662,46,12133,364,387,12103,12102,41613,41581,433,45888,147,359,186,250,362,422,41620,281,12146,221,15,1145,401,47,19,256,46110,46109,41629,408,45890,71868,41682,41639,11,417,51,406,41582,1183,69387,12145,440,46150,414,12,206071,41586,119049,41660,894,23,1189,12099,46148,41616,154657,46165,41584,49,38,46127,41585,41666,41588,41659,294,41587,41615,368,369,12139,361,50724,360,50725,20,41654,52,12134,365,41677,37,259,355,41680,501,228925,39,228924,46054,228926,370,320,453,54757,24,41671,48,1141,496,33254,1140,41658,46153,36,102628,102630,102629,426,41583,206127,29,30,31,21,46177,41645,171695,41595,1186,22,1177,505,41611,14,41612,170,407,405,41627,12135,46138,41686,323,423,50292,460,41667,41669,41668,41670,40,1163,1192,41656,1181,50220,41655,515,499,437,33255,41678,46171,46111,41599,41598,301,50280,41597,41596,41590,356,41701,395,41681,41687,53528,53531,1155,1156,1154,309,53530,53529,50726,46166,41690,432,288,297,41679,46104,46139,409,46107,447,1235,358,46100,1196,283,498,41589,28,73,46123,46121,46124,46122,27,497,41652,41653,26,35082,296,46134,1162,46029,224,399,41591,50,46161,56148,46118,41696,46186,41661,41663,41662,1138,12131,354,32,46062,293,1139,53,46167,486,487,488,46136,41600,33750,33751,90793,46435,46436,41691,56668,400,12152,12155,12151,12153,118598,12156,52622,285,12157,41592,398,46137,44,46158,37636,46120,46169,12150,12158,12154,532,46187,46188,220445,391,45886,45887,258,431,12147,46155,41689,172,220,33753,33754,531,33755,33756,72,1175,33752,46185,526,43724,42398,50722,1190,46135,261,61065,3202,46130,1142,41642,42393,65821,41641,41643,46168,50293,43716,71,41638,65567,494,41614,43,41601,371,1223,1143,46182,41593,43515,42396,42395,42397,41695,46142,12126,96688,46144,46189,43725,46156,42,46126,41700,41699,41609,46180,46179,41602,43722,435,12208,267,41726,41,46178,41314,46106,1221,255,46051,12205,1222,72072,41594,59,204092,41637,43723,3199,41694,46146,159064,159063,46112,46154,1184,46143,33757,41697,45891,46061,372,45,46147,63264,142008,224919,57418,41673,46108,41674,321,45889,34162,1165,1164,206484,43704,32690,306,91,102987,206775,90,71349,46159,111124,63055,33253,12204,217102,300,222552,150754,46434,46473,50298,157388,91389,76212,93665,220337,43721,121887,133837,95659,46056,42394,46172,12207,156252,229,573,107315,41617,137505,72077,46057,239,118846,332,226411,161665,94743,54,55,46131,76208,76207,46151,163184,1232,1233,56,1231,1178,118801,118800,144298,71023,53142,46119,106787,46045,133023,221200,34147,1229,12209,50721,142346,1230,1228,206777,45640,111718,571,158097,132271,46174,43720,1227,46133,52457,41657,46470,131993,66765,99280,51096,131041,37003,134540,52623,57,86204,46140,206070,177795,73434,74,41651,34046,72037,46160,1210,72869,224921,572,53141,54386,75,229850,32678,80,85,118611,1234,46095,104729,102631,195617,32689,75164,88,100922,41703,52251,151105,32692,106946,56597,117959,1188,51095,1201,41603,69390,106339,53376,128004,74820,76,195072,57102,72324,77,46132,81,165221,78,139354,156940,210038,1191,41664,71369,1167,66775,66776,41647,139458,46053,177786,1200,33747,90155,35092,93322,46063,117150,100926,46190,576,41604,43512,87,1168,34082,89,76210,131415,65827,1202,159836,112373,164870,157395,140376,80803,41646,219341,58,216025,1205,216037,154215,46164,1219,1203,66,1153,86,1152,225441,70,131994,62295,1185,1206,1207,82,123073,1198,205573,46145,1172,63,1204,65,55505,1173,195497,79,62296,1197,130808,64,226639,106362,37632,124519,112264,12206,62293,62294,56291,46097,71554,84,160960,46050,1199,61174,1170,161648,1220,195506,202761,1208,68,1237,60,69367,1169,83,108661,1236,218605,76211,46437,129283,54976,93323,69,215580,195615,178986,163917,195366,34956,65898,67,50883,227488,46032,208068,70329,46184,46034,135093,1171,56394,1187,214374,46005,72078,195670,119295,71024,205977,131947,121137,117333,139764,46125,129265,222287,203,41640,125313,195505,46105,46039,46038,55782,43262,52247,52246,42911,12201,34081,46037,134427,52276,59934,32695,12130,34143,96655,154233,46149,56738,56255,32687,43715,34136,243,84377,50692,45958,46181,46157,46141,12202,61392,50254,89604,45959,32697,96,43639,43320,1099,34079,59881,59924,42495,43514,213,212,33246,994,165,157526,43642,41605,43610,97,101676,59885,41650,110960,43682,43683,43684,43686,43685,43687,119006,12125,53149,12129,41685,98,46191,46152,32589,32586,32587,32588,46060,1144,204,205,46129,34153,41649,46091,34151,177131,50255,50256,46027,32688,46052,509,41648,12203,12200,46026,32691,47179,47180,39762,50884,41693,50264,43710,43709,50265,47182,166431,41692,32682,80924,95657,1096,34073,47181,61390,195591,1214,32686,139765,12148,45881,249,34160,248,46162,46163,61394,129282,61395,241,12137,50838,195461,32680,32578,57541,32579,53124,32679,83718,98647,32681,55780,12138,101678,46093,42287,46303,42448,46033,62968,61398,101,570,46117,1218,195496,111627,166440,46087,50291,1103,214332,111194,33745,52255,33746,52256,65885,177432,3159,46115,61393,32683,32684,46036,1160,43638,41665,46116,254,32685,1133,569,46098,1159,73435,59913,46088,102,43598,45885,113,107,46471,34047,50258,46043,1166,104,59939,43428,50259,110281,166448,166447,105,57457,111,52265,61396,172073,112,39729,98872,270,195701,100,1217,52267,46065,114,42923,52277,227490,50219,1115,43596,34137,99,59930,59929,46094,221207,92,106,61391,42921,52263,1122,50215,1216,52266,50684,35084,195347,134232,34638,32694,561,42435,42478,52959,59919,1195,59935,59938,34150,61397,32580,46055,59921,59933,59920,52274,52257,42931,43633,70986,1174,41579,1176,42492,563,1113,1110,1112,1106,110,564,108,1123,177672,1114,1105,75023,42422,118,1121,565,3160,34113,1107,42423,195775,46007,34149,46593,93,30221,43198,34071,164946,42934,51140,53104,46008,46058,42502,59883,43629,42466,50689,178198,46077,30344,46078,42933,43444,178016,52275,56108,12199,51141,43706,52961,42452,73439,42501,34090,214124,52262,46469,46173,42404,66250,178111,103,176396,34058,42939,985,1117,42938,127695,42940,991,1120,1116,992,166478,54975,42411,568,1119,52953,567,111638,166457,110280,43634,95,38935,103611,1226,45955,214117,34152,46183,177101,59884,46477,46478,41607,42937,34101,119019,43597,52964,43625,130867,995,33748,57542,46468,46114,176888,46687,46113,53161,52387,110101,41606,52388,125227,1111,34120,46092,34068,42456,42455,129865,61389,46504,214133,164944,1147,56915,52375,45962,32577,177037,1146,221599,177332,60817,102627,220510,33961,1100,42463,32582,71394,562,34158,115,130865,104243,45876,56916,195003,56914,56913,176300,69391,42443,166463,50302,164945,93667,59909,59910,214256,50249,136016,136015,137524,60790,71370,60791,130897,43713,54127,50822,42406,43630,51090,74992,74993,50693,88615,46483,50687,39760,45641,42421,43434,130555,59898,127211,59893,101749,34102,51138,54128,45864,42503,52966,50263,59891,34957,119184,214125,71025,214135,130894,46629,39766,98944,116,46509,110104,43671,214113,45856,130896,214901,52254,132261,42425,214114,214134,1101,42506,59937,42437,59932,56743,130890,56740,59940,50656,56741,59923,1151,53585,98290,3211,130880,39770,34124,43437,130891,42462,127219,130898,39771,39769,43440,175339,42454,42453,39768,195574,195774,50685,140728,45863,34121,129432,56744,42457,70970,56745,52279,1126,52166,53584,46475,46584,53583,59908,1224,43453,42434,1225,45862,52951,34067,52950,1102,34049,59900,34056,42480,166439,37008,59906,43643,214900,34163,166438,195698,59887,166464,74990,219334,214132,46602,34144,82649,56733,50728,46586,102195,52954,46490,41535,50727,43641,45957,59916,56739,45861,42507,59901,42474,43454,59892,56742,46517,130892,45854,138852,59904,59931,59912,42484,130893,130889,56573,42407,130895,59915,52450,52452,52453,52451,177986,50657,46089,46064,56729,59925,42926,166465,74991,117,33963,50654,127672,106485,50655,30241,1128,42461,42470,42464,43636,166430,46663,42459,43439,42445,42469,39767,37630,45956,46518,50823,50824,35093,56736,75206,199285,50642,50634,50625,50647,50624,50637,50636,50635,50638,50630,59905,50631,50640,50633,50632,50649,50644,50639,50627,50643,50646,50648,50641,50629,50626,50628,46489,50645,53595,50261,39772,50820,43446,166469,157462,177789,92234,1104,39765,195088,43432,42471,43635,42408,42497,214111,1094,52962,59926,59927,45964,52955,42496,42436,177670,126127,42490,46484,166467,110263,177073,42405,50826,195475,1150,195077,34054,50691,166499,195112,32696,56598,177779,166481,178320,43438,84783,195135,50852,42491,50601,50580,50575,50576,50557,50540,45858,59911,50573,50552,50541,50539,50604,50603,50616,50586,50593,50602,50568,50530,50543,50546,50534,50533,50538,50547,50542,50545,50537,50605,50563,50615,50564,50600,50569,50597,50620,50578,50579,50596,50554,50608,50555,50572,50548,50595,50590,50556,50553,50614,50589,50588,59962,50549,50550,50565,50617,50606,50598,50566,50559,50583,50581,50613,50571,50577,50607,50609,50610,50587,50599,50612,50611,50585,50618,50659,166437,50594,50558,50551,50544,50532,50531,50561,50536,52947,50567,50574,50582,50570,50592,50584,178150,50591,50535,50510,50477,50453,50508,50472,50478,50470,50329,50333,50658,50332,166462,50523,50500,46591,50482,50459,56571,50454,50473,50458,30211,50529,50465,50466,50524,50495,50479,50460,50528,50527,50506,50462,34106,92995,50509,50334,50471,50469,30231,50337,50476,50474,50467,50464,50481,50455,50475,50342,50463,45853,50623,50522,50434,50480,46598,66427,166460,50562,53126,30776,50560,178096,59895,66428,42389,43433,166436,92994,129358,178026,73436,82416,61360,59941,71503,166461,42853,56572,176783,46500,166497,89675,46297,137693,43319,166453,46474,76213,52245,195862,178311,30230,59889,195502,46592,35094,56732,59963,168845,177787,46585,164918,56730,42498,61254,50319,50384,50399,101776,50516,50438,50325,50343,50338,50341,50340,50445,50315,50360,50442,50324,50326,50336,50403,50622,50318,50484,50487,50437,50390,50653,50486,50488,50519,50355,50357,50356,50359,50512,50361,50821,50374,50485,50505,50388,50492,50518,50351,50350,50344,50346,50347,50619,45961,50327,50330,50331,50498,50441,50362,50443,50328,50314,50316,50514,50440,50373,50348,50652,50448,50378,50371,50370,50468,50317,50496,50394,50457,50392,50447,50494,50352,50382,50456,50450,50391,50446,50501,50389,50526,50321,50491,50525,50497,50520,50419,50489,50432,50411,50429,50353,50354,50312,50395,50383,50393,50387,50380,50406,50521,50416,195865,50418,50511,50401,50420,50407,50621,50421,50376,50379,50377,50427,50415,72881,50369,50368,50364,50375,50490,50493,50502,50414,50413,50386,50405,50449,50402,50313,50507,50504,92996,50426,50412,50358,50431,50310,50311,50320,50322,50323,50439,50444,12198,50363,50435,50345,50423,50422,50309,50396,50397,50381,50433,50385,50452,50417,50410,50430,50398,50365,50366,50339,50335,50428,50424,50400,50408,50404,50651,50367,50425,50650,50499,50503,50515,50517,50451,50409,50513,61363,50461,46637,46427,52179,164942,195132,43435,50686,61364,79933,61359,57611,176395,127263,1193,214130,214255,214118,1194,121618,52156,46479,1179,43441,1238,153202,43681,126161,150384,50281,195860,136018,895,214129,61358,52185,154844,66401,176397,46632,46600,140910,46684,177155,56731,50825,134166,43430,35087,46583,52389,52085,66408,61382,46492,52180,214119,214115,94902,46621,46004,178114,45878,123386,101282,138735,52210,52212,52211,46589,61375,46680,46498,61362,214136,125748,117958,46499,71550,66399,194951,1148,165300,111573,61376,72886,35086,89679,162261,66407,52191,56574,56720,166427,66400,46556,52192,46659,46596,214131,46661,166454,52157,89682,42285,214121,59902,168756,61361,89664,42504,41578,52201,126485,93668,46682,35089,89680,52258,214116,195123,61356,61244,214902,91222,70987,1157,178127,126145,52186,46485,52261,42848,53125,52226,45859,66433,66429,66436,1149,42932,46599,52167,52195,50295,52202,52187,43447,53813,66421,61365,46507,72138,30228,79891,46577,164950,61246,140909,140908,43624,66419,195019,109784,61374,1211,157923,178080,164928,35088,195825,46426,157924,52209,52204,164919,52203,46028,164929,107525,1180,46630,51139,165887,66426,177090,52227,75030,52205,42505,51089,46440,110114,46562,46476,47184,92997,166502,127554,45865,37637,61379,42852,61251,52188,52952,52169,46580,195858,46681,178145,46578,46090,166428,59896,52386,166455,137183,53532,52207,66420,46689,52158,50299,52208,56669,46493,46534,135512,53034,66404,66414,66413,42420,166472,62641,89687,52222,61368,46571,130198,136014,46570,42928,93045,75181,136019,166433,46576,97063,42935,177072,39759,228356,42284,46675,66409,46652,30214,50690,46656,164939,164938,46674,214903,121547,52957,136017,110279,89686,157928,178254,46653,164956,52228,52189,52182,82648,195628,52956,166432,155712,166446,195026,52159,131027,133512,66425,52181,164958,164968,213413,46636,164969,96999,52218,52146,164959,81871,52217,164960,46428,42851,164952,164964,61366,164963,61371,195765,89683,134165,164965,54129,195115,57514,166470,51136,195170,164966,164962,164961,97663,52163,174950,214122,50729,129433,55818,93046,52225,164967,195122,52193,52165,52229,42429,46533,89673,204911,214120,164915,3238,46535,66402,46575,61367,46572,46660,56702,61383,177627,79531,162866,205411,133518,52214,106596,46502,53122,46480,46482,61357,177161,108382,93044,61369,46623,50217,52178,66405,66437,46626,124525,45872,12197,43680,46506,53139,66418,67349,32624,52215,177033,52194,43517,43518,42493,46627,53138,103247,46625,106382,93000,164923,46525,53119,1158,52219,110275,89684,42941,66430,110276,42430,116570,93464,46505,89672,163323,53129,35083,52190,61370,52216,55845,46431,195807,110277,54191,30218,177052,46620,72328,157929,195487,164947,164949,50257,61248,52234,52236,52197,178273,164954,53140,129288,103172,164921,66416,166496,52237,46574,131028,46542,46624,33970,53121,53130,46696,164955,166468,46679,46569,110067,164948,46579,52238,71588,52239,46695,52241,214137,219555,157922,92999,46481,46524,46654,46544,158587,52161,52240,35081,46529,46538,52213,66434,50673,105627,3205,46546,92998,72012,50748,43678,61388,52160,177906,30217,66417,45879,46694,39758,46673,45880,166501,46655,52198,52242,35091,46704,195704,54130,52220,177785,46597,74796,42930,43673,66406,45866,195850,52177,3204,150903,52199,3200,130841,53123,45867,52243,41577,166452,92988,168755,45604,52244,52223,1240,52624,42929,46523,56109,195149,46658,195635,52446,61377,61378,37005,43674,33250,42927,45986,46573,177271,45877,178348,166500,52221,195805,57651,61247,177912,134485,43679,61352,41608,57459,57458,195106,227478,72165,43586,69592,69591,166475,195105,176886,46657,73835,46557,30667,71238,46688,46558,39763,62640,195567,176974,52444,52200,206651,166466,54131,110274,46531,195388,46532,61253,93047,54132,121104,66439,46595,166443,166476,69392,35080,106394,166471,121096,108617,46678,176904,71556,166494,46545,66441,46622,34637,195531,121344,164936,57491,42286,46638,52397,163527,56101,130843,51109,130842,66431,195727,194944,121097,195433,195455,46551,67347,61353,195490,166442,46646,30115,61351,56662,46519,46522,71458,46520,166491,195829,46648,46650,46521,46651,37626,133761,195513,46647,46552,177903,30742,46649,176558,46559,195647,61355,166498,30743,50713,46594,71239,61354,42925,61,51144,46628,62,163768,177356,128215,177401,177447,176454,3154,177278,176950,51135,176390,43771,43772,42390,133646,46194,46196,46198,46197,46012,46009,46018,46021,46020,46019,46013,46014,46022,46023,93365,42391,1422,135988,135987,43904,43908,43906,1355,43903,43909,43902,43907,43877,1361,43895,1378,43846,1414,44131,43792,1363,43878,44119,1419,44122,1357,45476,45450,46229,43871,1415,44132,44088,43929,45492,43881,45475,45477,45493,44098,45481,45487,46260,43876,43873,43893,44102,45488,44279,1411,44130,43930,44095,45449,44082,46010,45598,43872,45478,43898,43897,43736,44126,44096,12181,45494,46213,44128,44129,45482,45491,43866,43865,43894,43861,43862,44081,44085,44086,44087,44125,44278,44123,44124,44084,43884,43890,45249,45248,45250,45251,44162,44165,44163,1372,43899,43900,43951,43993,43911,43994,43990,43995,43991,43998,43910,43992,43999,43889,43868,43869,43870,43874,43882,43880,1421,44691,44689,119,12190,1423,43851,44690,44688,43867,43850,43758,43759,43858,43928,46202,43925,110606,43859,44324,43845,1286,44292,45352,44370,44369,44314,44315,44374,3156,164883,44325,44375,44704,44705,44329,44367,44323,1322,44318,1323,44319,44368,44322,44328,44330,44320,44331,44321,44326,44327,44376,44332,44334,44333,44335,44372,44373,44371,44687,44683,44342,44343,44686,44316,44317,44684,44685,44083,44682,44337,44339,44341,44338,44340,44336,1321,44416,44406,44405,44407,1325,44349,1320,44415,1324,44348,44408,44346,76294,44347,44344,44345,76293,44352,44350,44353,44354,44355,44351,44418,44417,44356,44357,44197,44201,44191,1369,44734,1370,44189,1348,43849,45532,44790,43901,70391,43757,44867,44868,44200,1420,70390,133729,43728,93378,44873,44658,81834,44193,44272,44080,1371,44198,1316,44413,1373,44194,44195,44188,44659,1424,44118,1317,44414,44789,44101,1374,44199,93414,46252,43875,42386,43857,44190,3155,44120,71383,44855,133728,44733,44302,46208,1375,1376,44196,46207,44428,1352,43848,44412,44411,44427,44358,1368,1367,45533,43863,44192,44100,44300,1251,43942,43950,43946,43947,1347,43944,43945,43949,43941,43943,43948,1318,44421,1319,44422,44429,44420,44424,44426,44423,44425,44419,143499,1274,44562,44697,44696,44563,120,44692,139703,44693,12169,44488,44476,43852,44477,44565,44564,44558,45507,44557,44566,44567,44556,45508,44559,44701,44700,44569,44571,45535,45534,45276,45277,44568,44570,44478,44479,1334,44626,44378,44380,12191,41715,44366,44381,43969,44365,123,1396,470,46083,46277,44627,43967,44379,1281,1254,44481,44706,1252,44707,44480,44514,44519,44560,44652,44518,44515,44653,44561,44516,45505,44360,44362,44517,45506,44359,44361,44525,44410,44377,44363,44409,44364,44769,44771,44773,44770,44772,44774,1298,1350,43856,44713,44712,44573,44572,45548,44711,44520,45559,45557,45589,45558,44710,45360,44521,44064,65582,44094,45513,45514,44695,44024,44694,44066,44067,44027,44035,44703,44702,44492,44778,44491,44781,44777,44782,43905,44002,44069,44070,44072,44074,44075,44071,44073,44076,44077,65583,65891,44078,43752,43753,43776,90603,43775,44401,44585,44584,1427,43989,44709,43979,1428,43974,43975,43976,1429,43986,43797,43777,1430,43738,43972,462,463,43981,12176,43984,132846,44708,1300,1301,43740,44396,44393,44394,44395,44397,44398,44399,44400,44402,44403,44404,1431,43988,43978,43966,132197,43987,43983,43980,43982,1273,12177,44528,44386,44387,44718,44719,44527,44727,44728,44612,44382,44383,45502,45503,44384,44526,43855,44522,1308,44722,1309,44723,44529,44530,44524,44523,44490,44725,44489,45596,44531,45597,44726,44532,44014,475,43958,46230,44485,141013,43918,44280,44385,44052,44053,44099,44029,45504,43815,43934,46273,44039,43727,44487,124,44093,44151,44483,44482,44484,44486,1399,44018,46237,43756,12179,44037,1401,44062,43957,44058,43839,44019,44020,44021,44090,125,1402,44017,44092,44787,43926,44724,45517,134,46214,43836,46222,44047,44048,44049,44050,1403,44041,1404,43917,44042,44043,44044,44045,44788,44051,43923,44038,43860,43912,468,44065,44430,44431,1405,44063,132,469,1280,46024,46211,44012,1425,1406,1407,46235,46231,46268,46209,43887,43914,43960,44031,44033,44034,46227,43936,45192,43952,43961,43920,43921,46236,43919,46238,46240,44046,44600,43927,43955,44057,44054,44056,1408,43956,44055,46281,46220,46212,44015,44016,135,44023,1409,43922,43864,43959,43953,46234,46215,46247,46223,46210,46218,46224,44026,44097,46226,43971,46216,46228,44028,1410,43970,44025,46217,46219,46233,44059,222886,46239,43935,44139,44140,44089,44117,46274,43915,43916,44142,43913,43924,44601,126,46082,44389,44388,44533,1310,44720,221089,44730,44729,44495,44496,1311,44721,217888,43732,44534,44680,44681,44786,1312,1331,44543,45537,1330,44542,45536,1313,44783,70392,44785,44747,44535,70393,44784,44748,44536,44493,44537,44731,44732,44494,45512,45511,44205,44202,1337,44779,44218,44717,44714,44217,44208,44209,43933,44227,44814,1338,44211,44213,43931,44432,44716,1306,44796,125087,44221,123018,1307,43932,44215,1339,44715,44228,130,44574,44775,44220,44538,44539,44214,44226,44225,44813,44433,44229,44797,44575,44776,44780,44222,43879,44219,125079,45602,70397,45601,70396,44699,139710,143506,44698,44540,44541,44577,44576,43513,44827,44826,41705,44437,41706,44462,44464,44436,44461,44463,44828,44829,44289,44808,44798,44819,44836,12173,44844,44822,44823,73900,44446,44799,44544,44845,44794,44589,44795,44545,44817,129,44588,44818,44303,44304,44672,44673,73901,44447,44800,44801,65581,44837,44596,44439,44438,44849,44864,44862,44863,44850,44865,44597,1294,44440,1295,44441,44805,44840,44660,44661,44663,44503,45510,44736,44662,45509,44507,44735,71347,44504,44841,44847,44846,44753,44793,44754,44830,44443,44546,44835,1335,44442,44831,69986,128,44578,127,69985,44444,44011,478,44834,44579,1244,137,44547,150137,44445,44460,45521,43830,45520,74846,44791,74847,45586,95762,44745,44824,45522,45523,44825,45349,44746,44792,95761,12174,45253,45252,44751,44851,44852,44752,44832,44740,45470,44809,44500,44499,44650,44739,44651,45469,46232,44833,44810,44848,44550,46085,44749,44802,1349,43853,44551,44505,1292,1293,44506,44501,44750,44549,44548,44502,44803,44804,44552,138816,137923,44553,133871,44815,44820,12170,44816,44821,44230,44231,44242,44510,44512,44554,1340,44555,44269,43891,44434,44239,1341,44237,44435,44232,44243,44240,1342,44511,44513,44233,45472,44806,44838,45471,44839,44807,44853,110716,76296,44854,76295,44448,110715,44843,44842,44617,44449,1303,45255,44664,44665,44812,1302,45254,44811,1398,43954,44267,45567,45489,45479,44141,44186,44187,1379,44000,44109,44290,44295,44143,44166,44147,45219,44497,45296,45234,45235,45274,44104,44005,43843,43844,43739,44866,44008,45564,45267,44738,1426,43977,43746,44175,44250,46245,45199,44185,44943,72331,43784,43806,1257,44107,1362,43885,1275,44455,44457,45447,44980,45239,45287,45290,110718,43764,43766,43760,43763,46250,43892,44113,103362,45568,43803,44150,44110,129010,45013,45543,44144,44475,1288,43807,43804,45460,45448,44498,44105,44103,44036,44276,45244,44007,44275,44106,43888,45417,44157,44979,43799,43840,43841,43842,81934,41704,45498,45076,45243,91411,45238,45198,43973,44156,65892,70398,44986,45220,44149,45190,44152,45497,45445,45241,44180,44179,44154,45179,44859,45451,45453,45455,45458,45457,44857,44871,45273,45271,45524,45525,44164,43812,43814,91410,45459,44580,45461,45463,45465,45467,44678,44677,44858,44869,44615,45166,43834,43832,43831,43838,43835,43837,43833,44312,129009,44256,44060,44061,45012,44616,45480,45284,44876,1382,44006,1383,44127,44254,44581,44249,43809,44882,44766,44768,45288,44944,44454,1344,43962,45298,44765,1413,1358,44260,44293,43896,45483,44643,65822,43747,43748,44296,43787,43789,43778,43811,1385,44173,1386,45191,45485,43785,45295,1290,1291,45468,123242,45258,45473,44881,45416,44458,44456,1412,1377,46242,46011,44137,1245,46193,45291,1389,45211,45212,45178,45405,44261,44032,45404,45563,44112,45884,44145,45294,43883,43820,43824,43818,43826,43827,43819,43817,43823,43822,43821,43825,43829,44311,43938,44158,44248,44274,1243,44737,43796,127136,44251,44252,125208,44176,45005,107310,45285,130728,45542,76292,70399,1390,110719,44872,44111,44875,44889,44642,46221,44981,45297,45452,45454,43800,45486,44160,44178,45275,45581,1366,44079,44121,44146,123243,45474,46243,44009,45490,44170,44001,44134,44259,73005,44133,44277,44767,46246,45484,46244,44003,44004,43737,43742,46241,43782,43985,43886,43795,44167,44168,43754,1277,43741,45446,45462,45464,45466,44184,44674,1346,43963,43802,43734,125084,45240,43765,43768,45233,43761,44619,45077,43786,43810,43813,43808,45456,44169,45266,44618,43767,1416,44148,1336,1417,44181,125532,44155,44283,44108,44982,43937,44258,44309,43751,44116,44171,44985,44297,44172,45180,44114,1276,44870,44153,44459,43781,12171,45242,44591,44590,76297,45257,1315,43731,1314,45256,44452,44453,45550,44742,43996,45552,44856,45551,45373,45549,128494,43997,44741,44743,45592,45593,44744,43964,1343,90151,44392,44390,45282,44860,44391,1351,43854,1345,43965,75505,44861,44667,44177,44666,44668,44670,44135,44136,44138,44669,44671,44174,1400,44010,44451,44620,44040,44450,44755,44030,44622,1270,44621,44756,95760,44654,44623,44655,44583,44582,45576,44465,44470,44469,43755,44472,44587,44471,12168,44586,87065,44466,44273,44647,44646,44624,44598,44599,45395,44625,53143,45396,44467,44468,44022,44760,44763,44759,44761,44594,44764,1328,44757,12189,44879,44880,44762,44758,1329,44595,44679,110717,46081,43735,44640,44648,44883,139706,44628,44630,44629,44631,45406,45407,44285,143502,44641,44649,44884,44638,43780,150140,150138,130750,150139,44639,44608,45265,45264,44609,45262,44878,44877,45260,45259,44676,45261,44675,45263,44645,44606,44656,76300,45499,45281,44473,44644,44657,76301,45280,45351,45350,44633,44474,44607,44632,44886,44885,44115,66601,44611,45018,71863,45561,70394,70395,95798,44610,71862,45019,93366,45347,164037,165071,45348,45425,45539,45409,45540,219301,45408,44891,45538,45541,44892,74878,45157,45495,44613,45002,44605,45496,44602,45158,44614,44603,44604,45411,73397,43939,73396,45410,43940,110707,227636,45040,45037,44508,45594,45048,45042,45050,44241,45026,44207,43816,45045,45047,43762,44216,44210,45043,45027,45056,45195,45034,44268,1418,45292,44091,44212,45083,91999,45052,45053,45160,44306,1299,45030,45041,45029,45024,45028,45200,45159,45038,1258,44224,98135,45036,45084,44266,44253,43788,45054,1384,1387,1388,43745,45059,45025,45049,45595,43828,45044,123703,43793,96663,44223,45082,125197,44509,45085,45039,45055,45051,45046,44068,44255,45035,45057,43783,43794,45058,45031,44305,45293,1393,1394,45196,44294,44265,44264,95758,45161,45582,45382,45571,45565,45566,45518,45572,45412,45413,45519,45381,45590,45573,44634,44635,44637,45357,44636,45358,45353,45580,45354,45579,45371,45372,127222,45555,45359,45544,45562,45545,45556,110708,210097,92000,45438,92001,44890,43749,45374,45527,45526,44973,44972,1242,45197,1279,45578,45375,45577,44974,44874,75175,110709,45433,92002,45432,92015,45355,45356,45008,45011,45547,45009,45033,45546,45063,45032,45010,44235,45062,44592,44234,44593,44897,45064,45065,76298,76299,44906,103363,44898,45014,95759,126807,44299,44298,45385,126808,45553,45376,45554,44238,45377,45386,45015,45575,127558,127557,45574,123698,44203,44204,45194,44894,1326,45387,108102,44893,108101,1327,45388,45269,44206,45193,45270,45016,1332,45066,1333,45067,45587,45588,45268,45017,45103,45081,45080,45104,45023,45022,45570,45569,45070,45071,95799,157755,45600,93379,63056,73442,45021,73443,73444,45380,44286,45599,45020,45068,45004,45362,45361,67040,45003,76316,45069,133027,143500,133026,139704,67041,44895,45096,45098,44246,44896,45415,45236,45237,45414,45099,45097,45379,45378,1285,45383,45384,45090,45091,45367,45216,45215,45364,45366,81906,45400,81905,45363,45365,45368,44288,44244,45369,45060,1305,45370,45061,123639,1304,123615,44976,227641,139717,76306,45222,44975,45221,76305,44287,45074,45075,45092,44993,45390,45093,44991,45389,44992,143501,139705,46248,45088,45089,103280,103281,110721,43790,43791,45137,45140,45138,45124,43801,44900,45203,43805,45225,45127,45128,45227,44291,1433,1435,1364,44161,125500,45123,44904,76868,44236,56932,45226,1354,41719,32590,46075,43743,1397,45106,45133,74848,110720,45105,45187,45134,44159,125196,43774,44247,81835,74849,45102,45101,45112,45111,45136,45139,1284,140815,45217,45135,45181,108140,46086,1256,44182,125207,1391,44921,45130,45142,45143,45144,45145,45229,45230,45231,45232,98136,45131,45218,471,140331,44901,45228,45182,45204,44905,45272,44183,45141,45188,45591,44929,45078,69984,45100,69983,44930,45107,44313,45501,45110,44956,44957,44960,85204,44948,44947,45086,45278,65895,103282,45087,44961,65896,45109,44955,44924,44013,45205,103283,45279,45206,45392,45079,92017,69648,45391,69646,92018,69647,44962,44902,44963,45125,44907,44964,44958,44959,45162,44965,45214,103284,45213,70400,70401,45126,45163,108135,45183,44913,45073,45006,76302,44983,44917,45108,45072,45560,44984,45184,45185,45208,44940,44939,44949,163850,44950,45186,45584,44916,44915,45585,44910,162260,45129,45207,45429,44923,44912,44922,44920,45189,44925,125206,44908,44926,44977,45286,44978,45007,44954,129012,44953,129011,44899,45428,45095,45132,1271,1250,35079,45119,44914,1278,1381,45120,45094,1380,44903,92019,45152,45289,44927,44909,92020,45224,45153,45223,44987,44988,45154,44928,45122,76304,45210,44951,67045,45118,45117,45121,76303,44945,67044,44946,44952,45436,45437,45209,108137,108136,44918,44919,44995,44994,45515,45393,45516,45394,45202,44937,45201,44938,45283,133029,133028,45431,126809,45430,45500,126810,45397,45583,44941,129600,139954,44942,46205,44931,110711,110710,12183,46206,45147,45146,76317,97505,44932,45435,103287,110725,45434,45150,44990,103286,44911,44888,44887,76308,45151,110724,44989,76307,117625,117624,125210,164866,45155,45156,1434,75513,108138,108139,45426,1296,1297,45427,45164,126812,43769,44301,108141,45165,76309,1260,126811,76310,107311,125533,108142,1392,74731,1246,45305,45116,45115,45440,45149,45444,45148,45443,45439,45114,110722,110723,45113,44967,44966,44969,44968,44996,44997,59878,140,125205,123694,45441,123700,45442,71235,125204,125081,139,123699,207602,204930,103288,103289,108146,108143,108145,108144,103285,117626,93371,45399,45398,140012,92003,141621,44935,136675,44999,44998,44936,45418,128623,72074,138851,44971,44970,46249,67348,123688,44933,44934,125199,12182,123244,138908,45173,138909,72076,108148,45171,108147,45172,45403,45402,45167,45401,45168,93411,93412,46199,46200,227652,227650,1356,76312,76313,217889,120488,130228,1283,1282,73440,73441,76318,44263,138849,1365,133726,1353,46203,43779,141268,1259,142954,45245,45531,46204,103360,45246,45529,45341,164867,44307,44257,75510,45528,1432,169134,142032,53590,44245,103361,74797,93413,45530,44262,93405,43968,44284,1359,1360,44281,44282,44308,62547,43744,129022,98142,129021,45330,98143,45329,45332,45301,45302,45331,108150,108149,110726,45303,45304,1287,45300,12184,45299,45306,92024,45307,133635,45309,45170,45308,45169,103290,45310,103291,144854,45313,45419,45311,45420,45312,45344,45345,67042,67043,103292,103293,45314,103299,103298,125209,45316,117627,138710,117629,1395,117630,117628,45174,45318,45315,45317,46201,45337,45338,45327,45328,76314,45321,45319,76315,45320,461,110712,138527,76319,44310,103300,103301,125198,76320,138848,103296,45175,103295,45322,45323,45342,43729,107309,43798,73398,43730,139589,45343,149505,143503,45335,45336,139707,45340,98137,45339,110727,110728,129013,45324,45325,129014,45326,43770,62297,45176,133477,220459,221014,1253,52087,108152,108151,93415,45333,45421,45334,62623,62622,45422,206065,45423,110729,110730,117631,138850,117632,108134,56663,63057,71102,117648,76322,76321,126822,126821,98262,110731,110732,66232,92022,92021,66231,126829,126830,103302,103303,52406,103304,103305,108156,103278,108155,110734,123245,110733,45000,45001,103277,123246,108154,108153,126819,126820,126823,126824,66234,108157,575,574,176653,108158,143509,141014,98138,110714,98139,93407,128354,110713,227645,76323,76324,69416,69415,123546,93409,123545,93410,123248,117633,103306,126378,123247,117634,224918,103307,41721,52405,126813,126814,117636,117635,110736,110735,52404,103308,103309,1268,1269,93408,46015,123249,117637,117638,123250,134578,103310,3151,3152,133645,138842,101681,46269,103312,130907,46262,46254,46263,46265,46261,46257,46258,46256,46264,46266,46267,46253,46255,46259,103311,134852,44270,103313,108186,46016,108159,46251,108160,123251,1241,44271,103314,41720,103315,103329,103328,139708,143504,76325,41707,76326,126816,126815,103330,1272,129331,54189,54190,53160,103317,103316,129061,129062,103321,103320,176481,1255,41716,126825,126826,103322,103323,93406,103334,103333,138846,138652,138847,85205,85206,103326,103327,103324,103325,108161,108162,110737,110738,93372,138585,138586,93373,160852,162048,126832,126831,129033,129032,123252,123253,126817,134851,103331,103335,45177,126818,103332,103336,117640,176762,117639,103337,162259,103338,1267,41708,108164,108163,123254,123255,144855,150368,160854,134853,1261,46225,117642,117641,103339,103340,215886,176780,176615,222058,65916,108166,108165,108167,108168,41722,159881,103342,103341,45346,126835,129054,176707,41714,126836,103344,103343,162049,160853,55757,41725,41713,41709,46280,46275,46276,46271,222885,1262,129806,199203,199204,214259,1263,55784,43672,1266,46715,126842,176939,43726,12185,126841,143505,139709,93375,108170,129031,108169,129030,127248,93374,1248,176387,176554,176594,176684,73902,41718,126839,126840,103346,103345,103350,103347,103349,103348,136033,132514,176583,71348,160855,162050,3157,138588,1247,41711,41712,41710,110739,46279,195546,138587,214264,131274,126834,54159,126833,130749,1289,108177,37028,130908,45247,46278,43750,110287,110286,176334,73399,214262,177159,127590,117808,110740,110264,176574,72013,176613,103353,103354,214257,176924,215928,127591,117809,117810,117811,156640,108171,156639,156638,108172,176406,98140,126827,126828,162051,160856,108174,110269,108173,177261,57646,57647,57648,162052,160857,110271,108176,108175,103356,176743,103355,219302,221101,160863,126837,162058,126838,60893,162053,160858,176638,223693,103352,103351,103357,103358,133,160859,162054,176663,160860,129807,110285,110282,177364,177790,41521,117643,177368,176790,177558,177972,177854,177015,129055,132515,177280,130905,177084,129056,130901,50749,76327,177245,92016,132516,3228,41533,3222,41524,3229,41529,3216,3219,3214,41528,3232,3233,3230,3224,3234,206074,3220,3217,3225,41530,41523,3231,41527,3226,3227,3215,3223,41531,3221,3236,3213,41526,41525,3218,55160,177363,177437,177967,57644,131087,194999,177982,130144,195870,211347,177373,56307,176724,72880,177388,64581,160861,162056,57643,177974,177359,177970,176589,177099,57642,176910,177975,177366,195536,57641,221100,219091,177397,195389,177885,176920,177195,171812,177350,69366,177267,92063,110284,178899,110288,56387,171813,177362,177348,166484,127746,177971,195537,177981,177244,130148,130147,133054,133055,177549,178963,57640,177248,166483,176350,177378,211348,176745,177983,177753,177980,62546,177969,140260,177961,110265,177747,177398,178355,162057,177372,177976,177369,177334,160862,177349,195564,195538,176735,164940,178329,130151,136032,164941,60818,128575,128589,110266,110270,177361,128574,128588,3235,166482,162059,128585,128591,128584,128590,110267,111626,160864,128587,128586,177342,166486,12172,136035,3237,177354,195535,12178,43733,1024,176384,136034,177381,41522,166485,214258,132405,164922,176565,141006,149564,178008,110291,122,115401,110268,134164,214261,127589,178330,177893,177855,195539,176671,177399,12187,177273,177443,195000,177978,177355,177905,177928,177191,176511,69968,45645,42850,177880,57645,130150,130149,47209,47210,43200,121,46017,42849,577,578,110289,136,45646,110290,41717,46304,43199,71030,46305,98141,177973,72866,176716,12188,130152,176705,176446,176972,177377,150602,176894,214191,130164,130163,997,177331,176812,177382,177966,177929,127860,94911,71031,94907,177867,130155,177977,94908,177979,72041,130902,140184,140185,131094,61401,215947,177458,66235,125480,177968,195348,177143,1003,73868,996,46084,219300,43847,43644,140020,56386,67038,1249,177535,131093,12175,57649,66460,110292,176793,66444,1004,128295,130159,205368,177014,66448,71459,66445,50753,1017,94913,94909,176475,177083,1008,1022,1023,1001,1019,1020,1021,110311,110305,998,1005,178136,195525,176386,176412,66443,131666,176971,1016,135321,176629,173777,214263,1006,130906,65605,110300,110302,130172,176856,110296,110295,1000,66447,110303,110301,94912,94910,177571,1012,110307,66449,130156,1018,56719,55701,132513,176668,176855,215929,75019,140332,112663,46714,66446,131088,110304,110308,71562,52381,94914,134064,94915,134063,66457,66458,110309,110310,195659,65568,129053,131275,131276,130904,130160,55161,130161,110313,66459,136150,76329,94595,75372,150774,76328,130903,117644,131089,117645,131090,141005,130900,177586,129052,66453,129059,1007,132512,129060,131278,131277,207601,155845,205369,1010,177265,130157,66451,66454,52396,130158,176330,1009,1014,166488,46713,166487,1002,164024,141007,139898,149529,1013,131279,117646,130154,130153,46716,131280,117647,1011,42936,46717,177740,93041,61103,177726,53578,54288,1264,1265,176321,50290,52886,119837,176508,70465,206701,143144,61422,1015,176658,54383,72168,176750,39224,46306,46307,39225,34655,47232,47231,47242,47243,39236,46308,33267,144339,37043,39794,45987,33268,220558,33262,220546,220547,220548,220549,220550,220551,220552,220553,220555,220556,220557,220559,220560,33263,220545,144343,42010,75810,42800,52459,52458,45988,36528,36529,36527,33269,46309,111583,33407,34801,34800,60789,60788,45750,39732,144336,75788,34775,129921,39234,47245,39232,47244,69664,39235,129924,129923,46420,130298,129922,33266,39792,37044,128060,128582,128583,33258,57670,57673,57674,57671,57672,127264,144342,34646,34647,34648,34649,36521,48372,48380,48373,48375,48382,48378,48379,48374,48381,48377,75789,48370,48371,48376,53993,53994,210419,207023,39233,75790,39733,34654,75826,136121,33265,144549,34663,42028,36523,36530,54194,61218,75840,64545,55802,69601,100784,100783,75838,75841,11398,33270,74163,75811,74164,224795,45990,127766,45989,127765,75853,39822,60894,75839,11385,104766,74979,319,74978,8711,75781,52609,11394,143690,62597,107208,75791,205088,200565,74986,138321,52629,73468,74987,11368,74988,75793,58324,75854,53591,93726,75792,160557,75812,79134,74983,74982,53157,152824,48367,75782,228829,74980,75857,54008,55080,55079,143871,11382,71527,74984,53158,138344,56355,72062,11395,32949,65718,75856,56725,54192,56354,73511,110678,52454,52455,11355,59315,75855,131677,131676,71482,73852,73853,111581,74981,11358,53592,70976,75794,75847,130866,73456,65723,54193,117598,11393,62299,53991,11375,110702,131064,140354,69463,65722,72063,73451,11386,43628,61195,74985,49069,143763,151233,106778,53144,73855,69964,131003,107461,75796,67346,73861,73862,75842,11354,73858,53145,75843,142944,53394,57637,213172,131065,65771,75817,6817,74167,10860,11388,53408,59965,39731,75861,86047,86044,86036,86033,86043,86062,86048,86051,86039,86060,86035,86045,86052,86038,86037,86059,86053,86046,86032,86055,86049,125656,86058,86042,86054,112667,86034,86040,86030,86050,86041,86061,86056,86057,62613,75844,75780,73857,67351,67352,138340,42037,39736,42038,42039,42040,75779,42041,75858,42042,52607,49029,216110,216111,216112,216133,216134,216135,216136,216137,216138,216116,216117,216088,216089,216090,216091,216099,216100,216101,216102,216103,216104,216105,216106,216107,216108,216109,216120,216121,216122,216123,216125,216126,216127,216128,216129,216130,216131,216124,216084,216085,216092,216093,216094,216095,216096,216097,216098,216113,216115,216114,216118,216132,216119,216086,216087,212474,212475,212476,212478,212479,212480,212481,212482,212483,212485,212486,212487,212488,212489,212490,212491,212492,212493,212495,212497,212498,212499,212500,212502,212503,212504,212506,212508,212509,212510,212511,212496,60770,74168,216057,216058,216059,216060,216061,216062,216063,216064,216065,216066,216067,216068,216069,216070,216071,216072,216073,216074,216075,216076,216077,216078,216079,216080,216081,216082,216083,212501,212505,212507,212512,73843,75846,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7327,49037,212477,212484,212494,216050,216051,216052,216053,216054,216055,216056,212513,212514,212515,212516,212517,212518,212519,212520,212521,212522,212523,212524,212525,212526,212527,212528,212529,212530,212531,212538,212539,212540,212541,212542,212543,212544,212545,212546,212547,212548,212549,212532,212533,212534,212535,212536,212537,216040,216041,216042,216043,216044,216045,216046,216047,216048,216049,49030,49028,45991,49032,49036,49035,49034,49031,137002,49033,143749,72064,57543,65917,11357,11374,106295,52608,62321,56691,139314,52463,206787,70384,131054,4258,73844,54716,54015,52611,154541,57152,45992,52466,57153,72065,1836,75818,62603,54009,53586,70968,75860,73856,70275,55374,74170,154287,74169,53868,11359,65762,55498,71269,52601,71270,53395,53396,222265,108642,198383,11369,61102,131067,75816,74162,131068,143799,199110,63042,79400,70407,130551,101549,53401,53866,53393,225647,71252,107002,107003,143667,103105,221615,57613,57614,54018,139303,95662,134392,106369,75797,72066,47220,133764,162867,100789,71594,53405,39737,11363,65782,65781,70797,139319,62608,62596,56596,73450,11384,104767,54014,65767,125733,125734,74850,52946,42400,42399,56899,41763,46950,63224,139294,129460,75859,65740,72070,56611,43170,72069,55771,54717,139312,62616,65775,220377,118860,60680,56552,39734,39735,56551,52894,65732,52880,73890,52631,75800,75776,140453,75802,75801,130853,118278,53827,130854,39738,64537,73503,52610,213152,69994,39739,39740,69993,70309,52460,11353,56877,52613,75815,54017,62986,121047,11377,11392,11373,162307,206496,70796,209537,57500,52915,62966,143773,70323,49179,73864,143772,143768,143778,143767,143774,143780,69980,143766,143759,49023,65763,143656,143777,143779,52604,143771,143769,53997,53998,73841,159380,151226,65816,53379,53822,143793,143802,108925,52917,54151,117167,63268,63267,73461,75848,112093,53111,53112,143864,129378,140349,130868,53384,214103,65607,11366,120620,70305,56181,65586,213124,143865,150591,65738,71499,55503,210152,72321,11403,71379,61257,71378,74165,74166,55426,71460,95661,11378,206786,56228,52467,75819,139285,131307,56357,52883,165068,54385,70307,156410,52914,65573,65572,56912,63216,54712,63269,67671,61459,131066,84652,206546,91442,61458,62303,52465,63039,56575,53999,61132,65727,52881,10760,139288,10497,139289,71875,62611,62612,11376,57612,142946,223002,69687,67673,53593,140348,61067,139208,65754,11360,139286,206780,134346,106294,69762,69680,69835,69895,69753,69671,69886,69826,69887,69754,69827,69672,69755,69828,69888,69673,69756,69889,69829,69674,69830,69757,69675,69890,69758,69891,69676,69831,69677,69832,69892,69759,69833,69678,69760,69893,69761,69834,69894,69679,69836,69681,69896,69691,69846,69773,69897,69837,69682,69764,69683,69838,69765,69898,69684,69766,69839,69899,69900,69767,69840,69685,69768,69841,69686,69901,69902,69842,69769,69770,69903,69843,69688,69904,69771,69689,69844,69772,69905,69690,69845,69907,69847,69692,69857,69784,69702,69917,69908,69848,69693,69775,69909,69849,69694,69910,69695,69850,69777,69778,69911,69696,69851,69912,69852,69779,69697,69780,69698,69913,69853,69854,69914,69699,69781,69700,69855,69915,69782,69856,69916,69701,69783,69918,69703,69858,69713,69868,69795,69704,69919,69859,69786,69920,69787,69860,69705,69706,69861,69788,69921,69862,69789,69707,69922,69923,69863,69708,69790,69864,69924,69709,69791,69925,69792,69710,69865,69711,69793,69866,69926,69794,69867,69927,69714,69929,69869,69796,69939,69806,69724,69879,69797,69930,69870,69715,69931,69716,69871,69798,69872,69932,69717,69799,69873,69718,69933,69800,69934,69801,69719,69874,69802,69875,69935,69720,69721,69936,69803,69876,69877,69722,69804,69723,69938,69805,69878,69940,69725,69807,69817,69880,69950,69735,69726,69808,69813,69941,69942,69809,69727,69810,69943,69728,69729,69811,69944,69730,69812,69945,69731,69946,69947,69814,69732,69815,69733,69948,69949,69816,69734,69951,69818,69736,69821,69881,69954,69746,69737,69952,69819,69820,69738,69953,69739,69740,69741,69742,69743,69744,69745,69747,69822,69882,69955,69749,69748,69752,69825,69670,69885,139342,141392,69669,69751,69824,69884,67672,52605,8793,108663,107441,108664,73863,219044,53992,63048,65730,55499,53109,131152,124803,213175,75845,84270,69774,132217,138329,131302,213151,206479,69906,69937,63034,79418,119606,11379,54196,56288,63033,63032,53399,143814,73845,53397,52602,73859,61256,224373,56625,143678,56933,118859,73452,56610,143819,69763,69785,69928,65772,53382,94040,65748,103081,52918,65734,159867,139290,73523,11370,65773,143804,143806,104564,69966,69967,143798,73541,71284,72073,131310,11361,207025,61319,213129,218689,206785,139295,41762,159283,83614,62980,56334,139304,139242,75820,163355,64546,73543,109837,139096,86967,215881,72075,159751,75827,11364,63035,139334,213128,218695,60771,111634,111748,57084,110494,56718,133451,101982,71076,56333,52879,55424,71373,94900,139316,55163,108721,106927,128266,54012,53823,47527,47526,204161,53151,54011,131301,142948,53383,70996,223877,75803,65774,222280,86972,11356,65744,11387,73449,65753,65737,53400,139344,219347,115437,116627,143671,63038,56666,73513,217682,63037,144649,139328,139327,135463,53403,143697,53147,71075,62974,62604,8644,8949,209468,73493,62964,62595,65724,151228,95660,4596,79392,8950,62969,76939,8643,4766,139323,213142,213143,11527,10396,10397,7449,11367,54765,4765,213144,143661,130217,143664,106990,73564,55081,61133,75765,151202,118724,154661,53110,54708,43131,74821,4061,59807,54035,54036,69981,11402,118889,62648,46356,52464,143797,212436,119068,143673,11401,75762,52462,11383,54016,4764,11390,11391,11389,4763,53387,78659,213171,51799,79378,53821,117900,149642,54764,11365,62601,143842,73487,65766,73490,4060,73538,143837,11396,73491,65720,73462,52603,214107,53146,141337,11399,56149,144271,143647,43516,73448,130870,65787,139322,69460,155946,52612,65764,139332,139331,139127,139309,64536,57480,55420,215550,69461,1838,1839,1849,1841,1845,136764,1846,1847,61072,55486,1850,75821,1854,1851,56692,1856,159752,139099,118030,56614,61324,60769,112092,60813,60814,42623,62970,222917,50911,53409,69590,143683,53108,71555,42280,65729,65765,60786,143815,70786,55264,56284,106878,143721,132266,130856,56182,42281,42279,130858,139106,56608,65728,42282,42278,119558,61101,216693,62615,123924,213148,61068,73839,62605,65814,130875,108442,143648,66759,51133,143807,79417,143869,95975,63220,138337,163410,130877,61326,56609,210148,111629,206497,65719,143636,136154,131309,71464,223878,225188,56749,65591,130855,52875,62535,136153,1852,60787,143638,143652,135495,126912,73401,126911,4647,73402,67914,212125,76915,73496,56392,143684,57479,76936,154413,46794,56694,74819,75785,73495,62600,56701,54154,205086,169173,152352,73532,65742,54946,64416,134275,50905,106860,71560,138323,131300,55653,74806,54152,73510,143825,143642,57653,52280,69337,210745,65733,157155,158889,69644,130859,56317,53995,10819,52628,69667,53867,139330,118818,75804,56313,213146,76922,132954,132955,53820,169174,65824,213149,214104,208732,100788,73507,143699,70310,143860,53406,73499,91173,56940,75822,56873,75721,130617,56874,62930,56876,11371,60772,56875,9846,46355,55826,46788,217391,143717,223875,74171,127371,52456,52141,11380,218693,60898,94036,139320,69965,79318,62972,9843,200559,53402,215882,65769,72038,11381,136767,136768,142964,69958,53404,53113,91289,43602,43603,43604,53398,65918,130857,55765,55659,143662,131304,127331,225439,10820,1855,139299,75823,141378,55696,53103,61259,1853,55497,9842,110491,9844,62979,143827,61071,50663,107334,62982,41780,143845,95517,41774,41770,41776,41766,108451,41764,41772,41771,41782,11372,55162,1837,1843,41767,135597,75371,73854,41769,53864,41779,41768,74281,136746,119136,71504,218690,61175,129904,64533,73522,41777,41775,41773,143808,215880,73846,8069,141385,41778,41781,55496,41765,218694,223223,64535,139311,129615,62983,225650,56900,131308,54713,139310,57618,45998,143803,52606,218691,164802,223874,55742,59879,75824,69602,219381,72858,75825,158362,199107,43060,74851,216797,143818,65776,143641,70988,73498,219689,56897,75805,60662,65726,11605,11362,1842,139340,217392,75787,73465,74276,73497,65810,35143,130862,75786,206931,65751,139305,139306,143676,125520,1848,156743,91925,65829,56750,52897,64410,33035,56613,73527,1840,72887,136742,159865,139317,57636,57635,57634,74172,73512,1844,56356,218692,9845,11639,54155,56612,56180,143828,143700,70313,130876,151240,213177,73520,121679,143691,139318,71372,123957,74803,143826,139287,139333,208867,136745,130607,62971,131303,210369,141336,139291,52468,62984,83020,208199,143822,216886,131053,104567,56224,65905,53305,141298,61198,118819,222934,136757,98621,139240,139245,223876,206773,142945,112090,217393,134227,216377,61177,56587,56577,56584,56583,56576,56578,56580,56582,56585,56581,56588,56579,112661,222266,66756,91441,143787,66604,66605,143812,81803,65717,91290,213150,210149,133121,56314,226409,217396,60764,143742,73472,54709,224366,112308,225663,66774,96516,139235,143836,139321,164875,62307,35108,63262,73540,75753,75754,209042,98120,139625,83671,75864,143951,216475,71368,139326,71285,101032,124905,157633,130860,53107,65746,127761,30745,30746,139338,91248,100357,210157,223067,117358,47102,125735,152254,152256,152253,152255,131305,62987,213158,143873,71101,61075,214058,143839,166126,47110,210492,223717,129458,98264,225491,30654,143782,73469,127358,212559,127357,10607,43617,168883,139296,221636,136769,75763,143723,71375,71377,71376,69989,210154,73509,71374,79117,79123,58340,73483,79124,79122,79119,58341,73484,58344,58337,48200,58343,79121,79120,58350,75774,58342,58338,58345,75773,58348,54013,130863,57705,76937,54064,74875,143791,91242,73528,54065,54066,207940,54067,54069,54068,54070,73926,73927,219348,73529,95663,127333,101689,110677,219382,213135,43600,136753,136755,54071,71521,158612,55738,216416,119190,213140,56853,54072,47183,63060,213139,54073,54074,130878,65725,54075,73501,136754,47100,52296,207939,54076,143670,11397,54077,73534,54078,128214,111605,54079,129618,71253,136752,110676,224367,119191,53825,73536,54010,54080,112167,73537,130913,131776,52447,11400,57682,143666,76170,50297,64547,75759,56639,111613,63270,125692,76144,213169,213170,76145,130872,143853,224447,130861,70973,216887,144648,139284,143784,139297,139215,144647,75828,216796,60676,75829,143829,75830,156224,222267,73539,104563,62305,73453,78655,73479,79365,71462,104360,136744,63041,116710,116712,116713,71522,136743,121881,62942,73460,62941,116709,70300,75443,150255,151049,139315,69370,102986,43615,43614,161957,70324,111601,106965,138289,150499,76124,143852,204084,76123,61134,144276,143805,53106,47119,144278,144277,65588,72081,62985,111612,72080,219075,158540,60763,61243,224452,47089,74176,47073,136181,54710,75752,71100,43621,213160,62949,47120,30653,47121,150766,143858,69963,139136,217395,73829,155543,98199,73542,73828,43618,90163,43616,63045,144646,83994,219383,103793,118722,214059,214060,139133,74175,57544,143762,133375,69369,133373,218688,72035,140452,131383,143714,73464,33245,143843,65757,65758,213121,129958,70974,48657,47116,110704,43601,120628,73505,46389,75972,111594,70344,70308,75767,140129,60812,206776,117597,213132,69645,116984,63054,73506,39900,62933,70387,39897,42008,75932,143866,75936,61178,10606,164109,62322,75934,75935,70386,39898,134321,75152,53265,39896,39895,75938,74173,75933,75153,75937,111589,62533,143810,80802,121917,43607,62532,66773,62534,61069,133120,94478,143846,71365,71364,71366,71367,127190,94479,75955,91265,75957,75956,277,71461,213119,106202,160495,158751,73502,69650,110980,94037,111776,80690,49070,143800,216024,108722,224368,69408,136748,76141,76142,71087,62940,72021,64411,139120,47096,71481,57483,56590,56595,91251,91252,56593,56592,56675,56667,117965,102016,209538,52916,136765,111606,66758,56286,47114,217397,65907,56285,105930,65620,93022,224427,53386,214105,130874,62963,70187,70188,55261,75756,69988,61179,126993,62991,75757,139252,74174,71099,65735,98644,43622,137229,139204,92282,104345,79118,39899,42009,76186,60978,76185,65570,99276,76187,46175,213165,209752,73508,121851,207,139097,10608,91241,60895,213167,57124,119082,132096,75806,127359,127556,164873,165067,155586,129443,129444,139218,74177,139300,73842,47107,76100,47108,75849,65721,70163,76101,128280,75850,224379,139125,76122,52448,75953,69643,105983,70306,139225,76143,73360,91262,91263,74876,62480,62479,62482,62524,139329,62501,62520,62485,62516,62504,62488,62512,62506,62496,62523,62513,62522,62489,62510,62514,62499,62507,62500,62505,62517,62477,62491,62519,62490,62525,62494,62486,62476,62487,62509,62474,62475,62483,139093,62495,62492,62508,62503,62481,62498,62484,62478,62521,62502,138291,207042,72857,69649,210150,70972,56693,125063,108724,117599,219342,91230,224374,161929,215263,80940,74178,99277,99278,139283,62515,69368,62493,104566,62511,62518,66757,71254,56917,139219,91286,109727,111607,65788,102928,54153,80710,8461,139132,57566,57567,111608,91285,139292,79325,117964,73489,91239,73488,91240,79327,76912,125190,139298,139206,139134,209424,141383,206774,57076,111591,73459,106476,99279,204150,119617,111449,164741,57633,103106,112664,101690,47094,74885,56790,217269,83993,66607,74883,74886,75851,66608,56568,73458,139307,102929,212050,59368,76093,73405,74884,74179,100782,141325,111835,111834,215587,158890,63149,79330,154285,127192,125498,139123,76149,76150,110206,110203,59966,139228,110202,127373,110205,110199,110200,139302,139313,110201,76154,73847,111592,110204,136741,139301,139227,154622,62952,63043,224371,43627,63047,33677,33676,143653,63002,63010,63027,143685,62996,62998,63016,63009,139095,63030,63014,63018,62999,63021,63001,63029,63025,63026,63028,143894,63017,73568,63019,62994,62992,63003,62997,63011,62995,63022,63015,63005,63013,139222,156687,33964,63008,63012,63004,63000,111593,63024,65779,63023,63007,63006,63020,219040,58221,58222,58223,58224,59345,59399,59354,139324,62649,154149,58225,58226,58247,59414,59427,59422,59348,59395,59366,59373,59335,58227,43619,59361,58237,139098,58228,58229,59391,59397,71524,58231,59374,59411,59408,59400,75965,106908,33813,59351,59404,59412,59413,59383,58233,58235,58236,59423,59405,108723,83794,59421,143878,69658,62650,58234,59342,33814,59324,58260,59359,59357,206076,206075,59352,58242,59390,58243,33815,59325,59328,59330,59331,59332,59372,59375,59378,59380,59419,76158,58246,58262,59340,59343,59344,59349,59364,59365,59370,59381,59382,59393,59396,59398,59406,59410,59424,59426,59339,58244,59402,59338,65608,59394,58245,59425,58249,59387,59371,59418,59327,59336,58252,59314,59415,58250,58254,58253,129903,58241,59407,59401,59329,59333,59416,59358,58255,58256,59384,59346,59360,58258,59347,59350,58261,63044,76159,223178,59356,59379,59376,73565,139257,127985,70365,143750,62651,143695,139217,143696,76138,139224,143651,69406,135519,47090,214054,1921,1964,1878,1883,1941,111590,143848,151238,57077,57508,43605,75863,65750,70798,84667,125655,75862,69589,144356,84666,139343,70319,73518,66515,83013,76107,131948,76184,69976,75866,110423,73526,164381,47087,62320,76098,164924,61260,124206,65815,70235,57000,107335,47088,76055,76111,62306,70171,72014,121308,111609,224448,72043,139232,213173,71393,59967,165282,101691,75349,73480,65768,130873,143792,70176,70175,130864,71590,73457,215355,143862,70174,70172,70173,47097,62962,76202,139341,205641,75832,121088,71664,140627,119438,74282,157635,111610,219361,141984,143824,111604,56941,43612,43613,73860,97149,91245,144270,144268,143637,144269,91246,1835,162306,75831,47091,2156,137045,50701,206502,108719,130640,67345,2015,143672,128433,2044,206667,2379,2367,163362,52877,225216,71480,62610,224160,74180,76188,166034,143748,111508,156253,72092,117995,139926,47095,2037,75350,116706,53410,139928,139927,139929,123079,71107,75766,112852,43264,2027,2174,2111,91229,2216,69464,95664,62471,62473,91176,100781,59968,73494,111611,91175,139100,143715,56791,56792,70333,70334,70345,62647,65908,131844,2234,161781,143830,70347,70346,156688,76181,72326,52294,220990,67674,206793,62324,208482,157634,73893,91228,91227,224376,128359,43611,72083,139293,54711,56627,143855,75769,74182,219343,42543,65569,47112,75977,74181,156689,70383,47113,139231,164798,214102,76099,74831,74832,74833,140363,74834,163783,72876,219053,219698,72877,153115,60681,50904,65741,157403,65890,127332,62328,75976,156901,134300,75761,78657,47093,47103,139223,70328,70371,70372,126992,143649,217717,70205,69978,69977,143752,139148,47098,46390,206610,209719,107089,107091,107054,107058,143754,139273,107046,107097,119083,75971,139253,107045,104565,36930,47105,47115,143687,107082,107050,107057,107044,107047,107079,107080,107081,47109,103279,107049,136751,107056,57062,224394,107048,69399,139121,107110,10696,219307,107053,107051,142921,107059,84647,57510,206500,143834,143861,214108,143835,2386,224369,112159,143877,184528,124614,128356,61156,54763,71088,47092,111602,216696,159281,59860,111603,76176,41519,69412,43606,124060,79420,61219,76174,72874,76175,72875,76173,91014,76177,91013,2385,224797,76060,70161,4868,47101,76054,52900,62593,221206,57509,75768,219523,4869,163359,163358,143820,56959,56591,93052,63040,199111,56957,56594,47111,73524,139824,73426,205780,224375,111595,111600,111599,111597,111598,66770,76130,140454,163357,76131,47099,61220,4871,106881,63116,57016,194451,47104,70382,4867,111596,140072,141371,75150,47106,73870,132094,141364,70381,84665,75865,41313,57830,57831,135468,180666,138594,56958,63117,140128,74799,224449,66771,59353,214207,74183,11506,61261,140133,60765,62607,64538,224370,79130,164874,143875,143874,134322,141373,143838,143688,76165,75852,41494,95429,41495,42542,139277,41504,41497,67677,41498,41505,41506,206539,41500,41501,41502,139278,41503,50268,50830,76119,75948,62975,70363,75946,76133,70364,75947,128371,52290,76121,76155,90273,76200,50269,69394,63182,50270,73481,179524,194632,63181,50271,143841,155529,69396,52619,69397,76353,71810,67678,75958,223879,124844,130226,70162,71660,207026,63031,76192,91015,76194,91016,75775,139339,155692,197472,139325,76190,76195,76197,158504,65786,143674,76196,117807,139230,216229,115380,47654,43167,65743,43166,76201,76063,143710,70279,151242,76042,76041,76043,76132,76044,111994,76062,76045,76046,165973,72859,116285,101692,143682,65747,164238,143867,63053,75755,59417,71086,209514,61262,63052,75954,62990,76166,110338,57513,71380,71390,219037,75760,107207,115442,111810,11517,143744,74808,121120,69398,101688,139128,72868,154934,127262,102568,74096,11512,75969,1862,138595,214056,62536,76097,79419,58239,103609,43620,75748,75749,139335,75808,139102,198388,205085,60826,76058,76134,59337,60827,76057,161167,139308,139212,198385,124613,46472,65770,74095,70321,70358,75047,93056,75758,143817,52291,52292,70356,93057,70357,70359,30658,143844,76086,30659,52289,30664,76087,76089,76049,157402,30665,30662,30666,30663,30661,30660,143668,206134,76091,130916,76092,62958,206299,111656,143722,119069,33975,63051,50839,119070,124956,119072,33974,11510,134323,132538,119071,136749,75968,41489,76179,41492,57050,41477,41486,76203,41480,41481,11511,132311,83670,41490,41482,41483,41493,41487,41491,41484,41488,69395,128601,59403,141376,211409,211410,58230,159282,47118,139201,47117,75973,75974,11589,75975,118723,206252,224450,71498,139112,206251,166142,139624,220259,73851,63050,59388,107211,57049,50842,73850,50843,127261,43028,63046,91254,136750,128943,141195,76129,219051,162308,93806,177719,62530,2649,131153,57481,219312,134224,216004,65783,58257,69973,98397,177628,59409,151237,143654,76156,149597,139269,106912,59385,194401,6492,57482,76157,138471,129243,59323,56281,136027,70331,137152,76169,58240,75887,111468,75151,62943,184915,76053,41511,120627,41512,131775,224241,121089,139246,83979,76172,224468,75771,140529,143821,73454,212450,183004,41507,73566,143847,75772,184080,196139,179786,125497,139275,143783,71526,184833,184085,130911,11498,154658,52980,57683,62953,75751,139214,120622,42540,184082,212448,205640,35137,41513,133501,41508,62961,164380,177434,73533,41517,41474,41509,184231,214190,57061,75750,75809,73400,120623,93030,41475,36524,140455,61263,135465,62967,143639,139271,76180,214184,41515,73535,41516,150141,139255,56965,139221,73646,65819,92155,59363,214186,131887,59341,143801,76070,41499,205899,205896,76163,205900,227489,205898,69413,205897,137536,205901,205902,129775,69411,72093,111773,119963,56983,111420,134325,42970,47802,42969,63187,184908,70373,112319,65780,195961,111774,127893,59945,59355,7342,7341,7338,11501,185009,75941,11500,7337,7340,63271,11508,33034,63049,66497,52297,52298,33244,56999,66496,56950,52299,136184,11516,69405,11499,11502,76350,219078,218984,218983,73416,66494,93061,66493,214159,66495,93060,4873,62950,66498,58238,56995,70212,11513,130912,139226,41518,62308,62309,161914,161916,57511,139562,63168,76117,179530,76118,198767,73485,161913,161912,161917,161915,59420,72042,211521,75963,179531,75964,154823,6419,59954,6410,6417,6421,6418,6407,59953,6422,6426,6427,6428,6429,6430,6431,6420,11835,46718,6409,6415,6416,6432,6433,6434,6435,46719,73848,6424,6408,6423,6412,6414,6413,139109,76106,6411,32139,46720,11834,6425,11581,75770,143646,55506,56589,58251,143645,79326,11525,182272,59326,215265,164797,150749,71382,42527,53380,143747,117990,206513,143868,154623,75967,112686,50700,184390,139124,84659,84658,57043,76938,62956,206540,91303,53381,85781,62301,56953,59362,59369,215586,62300,59389,56961,49027,76139,57025,75940,70355,131812,143709,66468,215588,73514,73515,107158,73516,73517,143693,111752,73865,70185,73521,59334,107159,144394,75777,57018,225664,206549,42546,133500,156690,39037,111775,91282,124954,62947,62948,75884,217267,198382,76090,9190,9189,180856,210155,73577,75877,75885,75886,129262,76085,184360,73580,11514,62951,76354,184345,42515,136169,70791,140335,139126,75962,143694,206300,154935,111160,73492,61269,59949,139211,136747,70338,74184,93065,112271,139281,124955,76199,154624,54001,108720,144845,206133,206132,143716,73500,139279,137043,132398,69407,124941,59959,59960,137696,70993,41986,150590,11504,11505,143795,57056,62938,53150,69401,59367,66502,41971,103487,73579,11503,11519,42547,169465,57014,139261,112091,33812,57015,70341,103794,73475,184151,139229,66467,57054,130923,136183,221301,214175,57017,143719,110761,59944,65755,42533,76120,158360,152455,127372,73519,56726,59377,226229,58248,61100,169380,73473,139111,139105,73476,160618,41510,62957,73474,127894,59386,70366,155376,130849,9132,143884,9125,143883,143788,41473,143887,143881,11521,11526,143885,57703,143882,139104,143886,143880,9126,139276,143879,143888,118878,139392,155534,81882,63089,223168,73531,139248,130848,93063,108659,108660,139103,130910,139680,139237,164353,224451,129920,63106,139679,57704,206772,76066,63105,11523,76065,62977,54768,206580,30673,143859,46312,91271,66470,131025,106896,30674,30672,30675,63122,63123,76068,75778,91273,53537,57074,60977,91270,155803,162864,57020,52284,66784,52286,139282,30676,91272,143660,204660,53596,70343,59961,169147,50833,139202,143746,144272,144273,143643,196372,11524,11522,57059,75966,42544,59942,59943,11638,75952,154064,139262,103608,131306,38950,180047,226335,139205,143745,194403,179916,151052,180525,69990,56984,42549,139220,139890,71497,93062,139264,57484,76050,103790,76160,134324,164107,94158,73477,216694,76059,137827,41485,41300,139115,139251,73988,57042,139114,139117,143663,144274,139116,139119,56963,110655,139118,61449,61450,110656,69410,139268,139110,63186,217182,66469,139210,71505,41479,123376,123375,139280,139241,30245,143794,199159,154659,98941,41514,139108,76084,180547,41476,41472,180727,144846,198339,184840,76080,103792,150691,180567,69403,139260,139254,180520,56951,117802,41478,204659,62310,180014,161670,130914,158528,144396,180518,180519,180526,869,76082,6493,143786,219054,52311,154148,169422,180740,181030,139113,76109,75944,206609,76110,136766,139200,194406,184150,62989,75945,73470,132095,196051,164804,143809,76102,220508,138290,76913,133474,91279,91280,75943,132401,75879,65904,139238,139207,75878,50009,62599,158109,159933,159285,214165,194641,62598,65736,6491,143655,98263,164916,159749,215584,180605,181158,72061,102495,102497,75961,102496,143781,159866,124517,166129,205601,76171,112172,139337,76191,180607,184947,136182,196042,180523,181170,180517,180522,204661,180594,154175,194404,70316,139250,50880,165229,181052,112311,181020,180639,169455,112310,180742,61180,56952,69409,57006,65777,6847,57005,63140,111448,184824,98217,8428,32645,8456,43649,37035,8429,43646,8404,8427,184382,8418,8433,8431,32647,8432,37011,8424,163873,119904,43662,37012,8425,8292,127799,43650,47206,57060,8430,196085,47205,8413,43647,8437,8450,8458,37010,37013,8444,8454,8447,8414,8435,8446,37006,8453,8441,8415,143692,8457,119192,43652,37029,43653,8421,74798,43654,46441,46442,8407,8434,43668,8423,43664,180965,180671,8419,76125,183073,8416,8443,8411,8442,8445,8412,8439,37009,8449,8436,8410,32644,8426,8438,8405,133857,8422,8406,8452,196116,141563,76069,8417,56948,180545,57512,180507,111633,76115,76051,57055,140352,76052,214209,76114,221021,137992,75888,76047,184939,139236,84655,76048,180516,57024,136025,9133,84654,57038,142935,180604,76076,76075,219050,194405,180606,76074,180524,180596,162265,56960,76193,65920,180553,7339,221567,123772,135593,63115,1026,1027,164379,140073,180529,180530,180531,61098,76094,184938,152342,184823,222276,63175,139374,180638,59974,56985,135594,199082,184359,47195,226183,62981,139256,184932,180582,197307,212699,180633,181051,154619,198338,139101,76078,42545,138750,130920,39773,198340,139135,52306,154419,65761,182265,219049,62954,70213,75942,139259,91284,59820,65828,141942,177174,157400,202754,184373,76095,60365,56964,184834,91288,57486,213163,57487,93015,76056,216695,52972,198135,181173,142960,61445,169428,125528,143790,133858,93051,143550,70237,71606,70236,224372,181169,207065,143856,75951,219309,181058,180489,72870,204138,170226,76153,181172,184827,52975,76072,118041,91234,65745,181057,139574,179930,194562,184826,161766,75869,70238,70367,181055,138479,150385,204657,151227,161900,65760,194402,110675,110822,57656,197716,138786,151232,69402,56966,138785,56993,56975,56996,56997,139263,169190,57904,141309,142971,180879,219035,143760,180670,158748,139131,180528,57037,180904,71478,219315,127430,93050,62976,60366,184148,57022,219310,8399,128945,76167,57029,8402,76140,212015,70351,61447,61448,56994,57485,76079,70350,57075,204137,56998,179541,75880,198119,52325,221263,182275,69393,57019,143659,57009,184169,198347,63099,56978,74187,70975,198348,154065,60368,135466,65778,9128,57021,59821,11310,144446,182224,206664,9122,9123,9124,54160,70240,150767,139107,159673,102567,221604,64414,165316,184841,169188,36975,181047,130918,185014,93064,181019,74188,74189,199076,204162,193852,180665,69400,131503,73866,60364,57080,70464,66509,143816,179713,194637,180880,9127,9136,199083,133556,184825,9129,196215,76135,11833,184991,193814,219032,14934,180655,14403,163356,184338,194570,13577,15383,63107,15468,219364,14926,133453,206788,15904,15678,12606,74864,15691,15703,181018,180961,12597,180983,93008,73867,168821,93009,93010,198346,56972,62960,56970,9134,9135,214168,62959,129905,57047,56971,156414,119584,57065,57004,75867,124787,72902,11308,144448,11309,144444,214176,184535,57040,57571,57572,57003,57070,57570,57573,56210,76067,57574,8678,75835,75834,63104,57575,119808,57067,57066,59823,72901,72895,72897,72894,72896,72900,72899,219311,72898,72903,83014,10527,182239,10549,10544,73876,72910,72907,72908,56379,56380,143757,10535,57064,143702,10547,52309,57069,10539,52310,118036,179438,143707,198173,72906,10536,63096,10542,10543,72905,72909,72912,56979,151241,10533,10548,72911,10546,112155,134159,179914,150752,181046,143831,169381,76116,60975,180979,43132,43133,130917,33402,76088,150753,150751,76183,131513,184878,60363,181111,133643,169449,76168,163250,57002,197609,179918,198341,197297,198342,179915,180012,198343,209293,56990,133639,198172,62529,219308,33261,181146,195384,180866,217055,57068,184172,217056,53302,76128,169444,161669,213141,180013,180893,133641,157926,131514,219591,168820,98205,143743,168822,98206,181729,57489,155693,69404,57008,56989,57033,164877,92993,63088,180513,60767,155696,194567,214162,133640,98212,98222,142920,98207,57048,168817,180514,98215,98211,98209,57012,98213,57013,98224,98223,98208,181154,98216,164106,98225,136756,70969,106830,9130,127218,227684,150750,75949,195068,83438,75950,34951,72904,131885,183703,180984,93021,98226,214161,52303,184538,6524,46543,98227,57034,209259,98204,56986,98219,76077,63141,61096,61095,98214,98228,98210,61097,75959,93836,93837,185012,66472,184529,98218,164911,140626,66476,86085,74193,66478,52281,179850,98220,184532,140356,206789,66474,70421,93067,57082,181053,182273,143813,93002,129776,98221,74192,61094,219317,181010,98203,183480,182226,157401,184457,180045,180037,206649,169451,180046,180069,94904,94905,66477,134161,209456,94903,180031,184445,66471,66473,163352,180026,94906,128941,217164,197319,181171,139122,180039,66475,63139,209533,180080,75874,71036,184352,62302,205643,75875,73849,180062,180083,184347,180030,184304,184354,76081,172378,172379,172380,172381,172382,172383,172384,172385,172386,172387,172388,172389,184116,184117,184118,184120,197727,184115,206551,180028,184302,181168,141211,139137,109840,194571,57032,59973,111582,11302,11303,76182,47194,206509,56949,9182,130181,73471,9131,63083,169426,184330,206543,139233,139234,93071,95742,62944,62945,184357,52285,184273,135628,138648,184270,184298,169448,199109,184083,206504,197431,214163,184185,180086,57010,182229,120630,184119,214164,184966,56264,198149,70389,40186,179505,169457,153346,184290,184830,155854,125646,184350,184829,160503,184324,197476,182235,11307,134305,197402,197401,143770,214109,184327,184967,179781,182230,169480,184968,184965,206668,182227,184252,206508,206506,206670,206614,221455,169479,206518,169456,11319,62531,138647,139274,184351,180958,73467,209041,164943,169425,184264,197320,184265,184307,184310,206533,11305,57031,219052,56956,71624,210160,11321,11306,50882,52304,4598,56955,222275,86086,112211,62973,76152,182254,184355,217380,184277,156720,66508,76147,4600,156718,4599,164926,164925,143823,66510,56946,156721,214828,184958,71388,65756,66499,59975,164794,142959,11312,57036,184328,184309,89671,164927,138787,63082,76073,175343,184312,89665,198384,134163,209307,93985,210156,165301,180015,43570,220283,168825,220953,179527,72327,79353,207027,184996,61099,206553,52282,164930,52984,141327,180659,134158,184332,184311,52283,57011,184171,129313,144843,180960,56918,152309,179724,43569,128739,57026,169491,126927,93147,225437,198595,219038,136162,57027,46076,57028,225201,66486,137694,52171,76288,71552,52170,198218,130177,91274,91277,76223,5264,91275,76268,151036,40076,180865,83443,66483,59822,143679,124768,70336,184081,32137,132404,94212,184331,55592,70337,89669,76113,110273,76229,55586,164369,83442,11304,89666,89667,214171,143764,107576,57001,56947,226956,168819,76266,89668,166493,161732,164931,60367,184134,74243,139266,8451,139265,39742,74265,184133,76270,158809,136030,184135,65784,65785,93013,93014,184128,184990,76236,76224,76258,76259,210104,75881,93012,74266,57663,46900,131884,74186,139216,136122,184301,76286,164951,168823,135640,66504,136026,57071,93681,153642,154655,11311,76234,130958,75960,40072,33339,33340,66481,76272,106996,154324,74185,169495,129312,8530,160869,111296,151040,66485,72915,220507,184291,76126,76127,57007,184325,181034,76279,76238,184326,66488,66489,66581,66503,212014,135641,93005,184835,143850,164932,52312,11316,143765,164933,72856,43032,64550,62978,76083,43093,76287,157925,143789,50666,93024,135592,55579,154063,34594,34595,76235,74268,64552,11315,11301,181153,181151,74267,76254,57073,164382,66484,50667,50668,76260,76271,76255,181152,40067,207040,52287,93028,64551,66501,93011,76282,55583,76277,76276,75833,138600,76264,11320,76265,72050,76283,76284,42952,42953,76289,76263,139270,72049,74207,74205,180864,218593,143733,74218,74262,74244,74250,74240,74249,74224,143735,66482,143724,74238,74261,74210,180862,56968,74256,74237,74219,143728,74242,74246,74253,74204,74259,74209,74228,74258,74199,93149,143730,74248,74241,74217,74215,74247,74208,74255,74212,74227,74226,74229,83436,143731,74221,74254,74231,74235,74206,74232,74236,74201,143736,89670,74214,74230,74263,74211,143729,74264,78740,93148,74260,152293,76285,74220,74257,184114,184124,184125,184126,184127,56987,143726,131311,143732,74213,74239,74222,143727,74200,76290,74233,74234,74251,74216,74252,74223,74245,74225,74203,222873,143734,143725,74202,50253,139129,56980,106345,139272,72048,197477,223221,181000,76071,76250,46683,76256,76249,56976,65739,213179,74190,66480,60976,93019,223893,140010,162264,143705,182271,159399,222874,181031,138650,64553,72047,128901,53127,76253,136028,129319,76244,56974,63084,52630,65731,76231,139244,76112,175345,91224,180939,11314,71626,180527,184136,110272,7045,55591,76247,76222,76273,76246,166492,76242,76243,72919,55581,76248,163232,181133,72914,143785,180912,137695,180911,79389,74781,11313,76064,130971,93003,66492,76218,76252,143708,74196,76227,91398,76291,221605,63080,155591,66500,62988,74269,198184,103252,143706,76230,98404,76251,76275,130839,76274,76233,55585,76262,184176,185008,55587,179933,76220,62936,121279,65716,182289,56249,56250,72918,34691,34692,97583,66479,55576,184432,182295,57078,205642,182240,182290,194566,181401,72920,92103,182292,166371,56252,209771,144860,181032,92082,92080,92081,42949,42950,131356,74191,56962,56253,181413,181115,32643,224933,216347,212013,182296,66580,56235,193917,57044,221454,58936,91278,56967,168824,56251,56237,103590,56241,214193,214195,63184,214194,214196,184111,184129,184130,57063,130967,56243,56238,130966,130965,83437,143950,182285,193919,64554,74197,56244,56247,93068,76267,184969,106386,106387,56234,56246,184306,32675,92148,52307,144862,92077,92078,92079,92068,92121,92064,92086,92100,92102,181409,181405,184244,182256,72921,182165,193920,92105,92106,92107,92108,92109,92110,92111,92112,92113,92114,92115,92118,92119,92120,92122,92123,92124,92125,92126,92127,92128,92129,92136,92137,92138,92139,92140,92141,92142,92143,92144,92145,92146,92149,92116,92131,92117,92132,92130,92065,92075,92076,92085,92087,92088,92094,92104,92066,92095,92096,92097,92098,92099,92089,92090,92091,92092,92093,92101,92072,92073,92067,92069,97585,92070,92074,92071,92083,92084,56248,56239,56236,130964,181397,56242,92133,92134,92135,140346,144762,76257,76239,127362,56240,46733,56245,56233,130852,76240,76241,131139,144861,144859,93017,93018,34693,42948,93069,56254,76228,79863,34694,34695,143704,10552,55582,184262,74198,182249,152321,52314,181198,83479,196314,69651,164914,184957,55580,46541,63091,63068,55251,106925,89685,169463,184113,198167,212344,76261,152323,181138,66487,209467,56444,56461,56460,139249,56445,56456,56441,56462,41378,56449,56458,56973,56465,127217,175344,56451,56459,139130,56455,93048,56447,56457,56463,56448,56464,43667,56453,56450,10553,56443,76245,139213,66511,10537,56454,194593,139243,9568,93007,76269,56446,56452,142347,182274,55577,214265,52305,10538,197456,34025,71591,54715,123449,123440,71592,219319,150501,74195,139846,184098,124388,164953,138899,137697,182280,194635,184121,184122,184123,184554,137826,160496,76225,184165,184097,74194,123441,184096,184108,76232,93029,161946,76226,194709,213864,76280,76281,76221,76278,143849,137116,139239,184099,138271,138270,130961,62609,100901,168895,550,168897,130968,10541,75872,549,545,547,139258,543,540,168894,66513,10540,168892,181181,168896,169372,542,544,546,130959,130960,541,551,184147,168893,76164,11557,150500,180937,73894,548,7046,129459,43645,215338,7062,76237,7066,209020,93006,72917,76189,556,557,128006,72924,169256,54714,130969,130970,93838,8409,45976,559,552,64582,71463,56977,121285,558,555,115265,207623,130973,182257,129317,194643,56801,50881,194329,10551,55590,139247,57079,181062,75871,143775,121286,76217,20470,91458,179896,10550,121280,138467,76216,57081,184267,55589,72916,93004,180884,130972,222884,57030,143776,48967,109880,78813,50212,11317,55578,143718,70210,222877,181125,180934,42954,214166,57041,53826,142268,71523,52313,63069,184322,164373,222876,129315,74274,74275,7420,222866,7436,154612,180936,154414,55584,134160,56954,7433,184240,185018,184257,184313,184292,97608,184321,194303,184258,184269,184282,184276,184281,184260,52288,180938,222880,52316,52315,184356,198262,144395,180933,1028,55588,57658,129314,35141,46443,222881,102954,1029,8403,180698,72913,166128,156431,213147,34183,194526,180487,46301,169438,56969,1030,46299,133452,198352,152334,40038,62934,62935,8455,39797,142153,39531,129318,57039,93342,167802,37034,46491,194330,180944,142155,142154,8408,73412,95319,95318,61430,222879,7121,142157,7418,206401,52878,152766,222878,1031,1032,75154,129320,214167,144315,71283,154325,61242,7427,154327,40043,119903,7429,1025,143127,53996,131854,8400,97598,214160,7111,7095,75870,152767,66512,151194,194594,153641,48302,91356,143889,66517,135990,134317,179939,180935,7432,152768,93070,93059,159565,159566,159567,159568,159569,159570,159571,159564,180792,79173,120650,181180,15107,73486,194617,63070,7040,135991,61455,7019,63073,57053,63217,63071,66514,222882,184296,222883,216371,39325,130832,71066,71059,71063,71061,71060,71058,71069,71064,71062,71067,71057,71065,71068,63072,82933,216370,7128,154329,63074,83439,83440,43609,71829,110413,158501,164934,143811,63090,63075,184289,184246,184287,40036,152772,206640,7242,7168,7152,7135,7138,7147,7206,7239,7179,7142,7146,7255,7141,7157,7203,7172,7163,7196,7244,7245,7211,7193,7189,7238,83441,7225,7201,7186,7212,7165,7218,7248,7130,7191,7149,7144,7198,11566,7216,7175,7217,7235,7145,7222,91893,7195,7183,108380,7158,7251,7184,7241,7221,7137,11565,7210,7143,7171,7205,7180,7232,7153,7187,7140,11567,7029,7154,7197,7223,7199,7252,7164,7240,7219,7214,7170,7169,64559,7159,7188,7167,65676,7246,7134,7237,7250,7194,7182,7207,130977,7200,164935,213958,90866,69641,180948,198355,173839,7160,61453,10545,54725,158499,45983,93020,154326,37057,55129,184315,184286,184278,184248,184317,184329,184242,184251,184339,184239,7173,143703,61423,39533,138469,7139,154328,7215,151198,90867,71551,7190,8401,206402,7228,7234,7133,7176,7162,7230,7208,7192,198148,138470,206639,206685,63036,48686,7236,209285,152776,72922,154901,184303,7229,7247,194706,194573,194572,206499,7161,7220,7166,168832,72923,182613,183109,184279,184995,194707,194710,184285,194711,184314,196206,209287,61264,206726,7177,184300,109961,134276,7174,129321,7202,11561,7209,7204,11564,7233,7224,11563,11560,11568,7132,7231,168828,7213,194560,61428,143890,7227,134284,184316,184318,184283,184280,184253,134285,184259,184994,184174,7226,11562,130844,143128,78932,50669,180888,46722,56982,42627,184288,184241,184294,61444,184271,184320,209286,184272,184295,39569,180892,63188,130834,179441,55777,130833,7431,7119,198221,121288,11547,7428,152312,7430,61429,45967,61425,61426,61427,142160,156732,133393,57134,156733,4144,184254,184247,184243,184250,184249,184256,194708,130835,152336,54365,161075,154421,61424,69506,61431,121690,21337,185015,21106,110412,15339,20042,20043,20048,20049,20047,20052,20050,20053,22957,184173,19458,14302,20044,14957,154330,20442,181082,181081,28618,28669,18257,26604,17299,23279,28123,20820,28487,23257,24923,22743,27764,23195,28911,15044,16854,28982,25941,22067,22068,74865,224244,224247,27436,14911,16155,22930,22859,24018,22902,16476,20082,20354,20381,20383,20406,20987,21017,21018,21019,21020,21021,21022,21023,21024,21026,20427,20392,20401,22418,21015,23538,18319,27406,20549,14965,14791,15082,12560,14776,14955,15111,15134,15083,12471,12589,14773,14775,15118,15121,15122,15124,15136,15139,15514,15519,12275,13528,15146,20195,20196,19858,29302,26922,18777,24886,28508,28788,23703,16294,16312,16362,16449,16457,16528,16532,16290,22493,22511,22513,22524,76751,76682,29822,29823,20535,20996,14016,17104,14020,27420,14006,21578,21339,27461,14137,14202,14332,14363,14387,14391,24155,29817,29089,29070,29071,20531,20137,20138,20139,20463,20553,20601,20608,20615,20982,21007,29045,29046,29338,29429,29444,29446,29469,29578,29630,30061,29274,21001,20465,20573,20578,20586,21401,29391,20467,20460,20466,16289,22519,22520,20708,20713,29260,28807,29795,29853,19863,28932,28491,29461,28936,29258,19859,28501,23708,23710,23711,24178,24179,24180,24181,24202,13483,19847,14342,14343,24194,24183,14416,15087,24167,24173,24182,24206,15458,23706,15471,29639,18307,16176,16178,16183,16205,19195,20180,26876,26877,16185,16188,15045,28937,19864,28102,12391,14733,14745,14986,15038,15046,15079,15137,15558,26840,26861,26871,15102,16175,28328,18906,20983,20986,21011,29485,29827,21924,20142,20854,20862,20864,14209,15155,15158,23702,26883,26889,29841,16164,24450,29410,20852,20143,20897,28972,24171,18526,19565,18465,18523,18524,18522,20145,26691,26696,26697,29487,29488,23115,23698,19857,26837,26838,26849,29050,15138,17611,17612,22570,13409,22721,29760,29761,29765,29766,29769,29770,29762,29771,22542,29317,13468,24158,13241,13305,13313,13317,13319,13341,13342,13360,13377,13530,13657,14882,15300,15305,15306,15320,15325,15326,15327,15328,28901,16225,22517,78712,24195,14221,14239,76589,76595,15104,22538,22549,22879,22882,22904,22905,22909,28595,28609,29058,25524,14496,21971,17392,18222,19455,22546,22683,22701,22733,23106,23672,23673,23676,23678,23712,23713,24208,28610,21002,21033,23701,23707,25894,24204,22501,13874,13925,13927,14127,13928,13929,15188,15340,15342,15346,15395,20182,20183,29526,14505,14513,29736,21406,21084,26745,21417,23410,28793,30058,21959,27259,28732,24225,28744,21199,29857,14542,14549,14554,15412,15447,29732,14546,21195,19632,24170,24174,18961,26882,18967,19004,19005,18975,19002,22447,19842,27099,27100,24911,29506,28515,28519,28842,21005,21181,21191,21220,21403,21404,21405,28511,21217,21225,21183,21402,29721,29731,16244,16251,22844,22850,24734,30047,76788,13003,29725,24427,24428,24433,24436,24462,24575,28607,29008,21036,27435,21500,21277,24242,24278,24293,26896,26897,26898,26939,29740,29753,29846,24306,21419,24767,24775,24967,28622,21291,21295,29750,22443,21248,21249,21250,21258,21297,21307,21411,21415,21416,21418,21420,21429,21430,21441,22662,22818,23297,23347,23350,23648,23656,24994,28705,29745,29749,29797,21270,18931,21272,12402,21440,21323,14271,14272,27262,21345,21453,21454,21457,13231,13361,15302,24188,13486,13504,15164,21630,24536,15329,14283,17754,17768,17837,17954,19798,22439,20233,19929,28530,28835,30078,14397,14407,14419,29931,21343,18979,19010,18992,20886,16270,16307,22280,24902,22281,28512,28022,27688,22046,26926,24881,16268,16269,21013,30088,21000,24215,29100,24214,24216,22016,29114,24154,23964,23618,15135,14875,19636,24159,24209,21480,16267,16273,16314,16328,16342,16365,16376,16397,16422,16423,16424,16458,16477,16478,16483,16500,16501,16651,16765,18124,22456,22458,22462,22467,22472,22473,22475,22476,22481,22482,22483,22485,22488,22490,22491,22492,22494,22495,22496,22497,22498,22831,22835,22836,22841,22856,29063,29362,16375,16503,16359,16597,16393,14725,29355,16596,24672,29548,15738,28844,15761,24264,21495,21808,21493,29309,16858,17407,19896,22466,22468,22471,22504,22839,22851,22854,26886,27411,28586,29159,29339,29395,19954,28726,28917,16775,16876,16889,16891,16909,16913,29162,19712,19713,13352,14037,15401,14057,29052,13782,13979,14001,14008,14024,15556,20184,20187,15398,15142,15390,20021,14200,29525,28951,27366,22464,27602,27455,15015,18659,16418,16415,29677,21486,19025,18965,29830,29835,29837,29838,26885,19275,28681,29545,29974,19860,20153,28504,29282,29321,29333,29324,22059,22082,22088,22097,22112,22115,22130,22134,22158,22163,22166,22170,22175,22187,22195,22200,22202,22204,22223,27606,28478,28481,28483,28502,28570,28979,29053,29192,29287,29300,29320,29330,29334,29346,29416,29459,29460,22149,22190,21351,74869,29371,29328,29447,23247,26830,28990,13496,16996,17012,17017,17021,17066,17082,19887,22529,22531,22532,17049,27810,15182,15183,20188,20192,15176,23666,19861,28377,28773,28779,29048,21004,21547,25101,29044,21546,25832,25833,25834,25837,25839,25851,25852,26812,26856,26857,26858,26859,26862,26863,26864,26865,26866,26867,26868,26869,26870,26907,26855,13398,15026,14285,22785,29062,14589,15427,15429,21540,24192,22277,19021,21576,22918,23334,23412,28597,29895,29909,20867,15917,26891,29286,16827,19844,28847,20360,28224,27045,27075,29374,29557,27044,27048,17094,17132,21961,27699,27701,29608,13432,13439,13440,15185,77091,28538,12706,12361,16779,15386,26677,20208,28995,23335,76565,12263,12803,12838,12840,15066,15072,15130,15251,15557,19890,27256,28537,29305,29335,29819,29826,29959,15550,15551,15068,15069,15037,15091,20829,21009,21198,14275,28270,17102,17120,22848,13399,13388,14959,22985,23101,23155,27706,12429,12326,12388,14727,14731,15473,27079,27116,30074,15081,15129,12707,14388,18566,19264,19352,19566,19573,30031,18932,21681,21693,29167,21694,14624,18973,18966,19122,15085,15431,23327,27110,29847,29851,29852,20009,24073,29281,21382,22558,27678,24711,24175,27760,29491,23699,21713,17140,20026,22971,23148,23237,23241,23243,19883,20274,18471,18472,18473,18474,21733,21714,21724,15561,19836,28930,15222,19272,15149,76578,76579,76580,76581,17088,76590,76592,76593,76594,76582,76583,76584,76585,76586,76587,76588,76591,17159,17166,17179,17188,17190,17191,17530,17536,22499,22509,22514,22845,22846,30105,27112,21078,15518,19053,19019,26860,15453,16568,19018,24669,18199,19850,17945,17946,19752,17904,29839,29505,29414,29441,28605,29397,12708,24164,26082,27439,27537,27562,27634,27663,28749,29307,30044,30045,30046,20164,20156,20160,20163,30048,20161,20162,27431,27430,27385,15555,27484,27441,27447,27561,27481,27629,27489,22442,27358,19930,27359,19932,27635,27522,27595,13487,23288,23348,25897,28871,21856,28849,21908,20154,28728,29803,29814,29858,78786,14833,28947,27437,20268,27165,15275,17438,16372,16283,16285,12731,13529,13550,13619,13625,13650,13651,13652,13653,13654,13656,13678,13712,13717,13740,13766,13783,13785,13787,14902,14903,14904,14905,14907,15030,15032,15050,15099,15197,15198,15203,15217,15220,15225,15228,15230,15234,15237,15242,15277,15294,15393,16157,16158,16162,16163,16168,21588,21589,21598,21610,21614,21657,21662,27097,29497,29498,29562,27087,15240,15151,13667,13710,29560,13786,13458,18353,22864,17836,17785,19862,24156,28802,20939,14023,21901,21913,21927,21928,21930,21933,28453,28574,28948,29040,29336,21929,29188,15113,21925,20230,28472,29378,17414,76753,14607,14608,14614,14615,24161,19642,18209,18223,17342,17377,16335,29828,17457,28935,28998,29449,15119,14723,12415,13811,12360,12357,15263,14721,14716,12455,27096,23694,12210,12426,12431,14938,15470,27093,26810,29507,29501,12338,24832,19839,16161,27091,29943,27148,15467,14290,14291,14295,14928,20179,29072,22018,22232,22233,20168,20321,20329,21843,21845,21983,22000,22004,22009,28432,28450,28466,28580,28985,29041,29303,29373,29379,29394,30073,28443,28436,28465,28433,28439,29189,20319,28942,28448,28441,30087,28467,28449,21848,29202,28571,22006,29268,20326,28424,28462,29272,21911,20278,28444,29774,22540,22420,28792,22335,22356,22357,22361,22362,22329,20176,24222,22419,17446,19843,22374,22377,24177,29595,21896,20911,19278,22812,22813,23192,23201,23202,23211,23245,23246,29313,29315,29917,29928,74868,23683,23730,28652,29060,30059,28704,27935,22860,12265,29961,18202,18256,23093,23727,23724,28778,21483,24213,29163,19464,28171,28174,22396,22400,28708,28860,28808,28810,28814,28815,28816,15574,17545,17551,19989,19970,28055,19009,12601,14806,12682,22430,30066,17815,19795,19868,22573,29720,29101,30080,29115,28980,19951,29084,29085,21459,23214,22518,27502,20884,28782,15092,13719,14047,21667,21587,13642,22543,22636,22869,22871,22873,22893,23226,23655,23675,28596,23123,23200,23204,29244,23649,29207,29243,23677,22959,23668,25154,22712,29462,23670,22667,19628,29972,14314,22986,23380,29908,29930,27463,20985,25821,21616,14897,29369,17085,28904,21973,29971,29531,28685,19851,23490,26890,15442,24203,29738,28981,14390,14395,20197,14376,14481,15043,21637,28886,24303,15264,12430,23457,20848,21098,12310,24834,24369,23561,29783,23514,29785,13266,13315,21659,21660,29375,13233,15330,24157,24185,28532,21355,18994,24162,17502,24184,16751,17410,22465,22505,22506,22507,21617,16549,22449,22450,22459,22460,22484,16557,16547,23541,23542,23543,23545,23634,24153,28645,29091,29092,29788,20006,27831,27718,23621,26874,26875,19082,12972,12973,12845,13863,29602,12751,22838,12452,15061,15062,15074,12450,13447,15394,24186,27683,29253,27729,28317,23548,23594,14881,20229,28335,28338,28765,28820,28823,29022,29227,29597,27827,28797,21960,21964,14906,21968,25109,19001,19128,20316,29161,22928,22055,27703,27668,22111,28521,23114,28305,28819,22196,14039,15160,14013,23129,22666,22908,23132,29704,29901,29903,19878,23733,24285,24210,23935,20778,23900,21201,24223,23516,22333,19840,29862,29863,29865,29866,23857,24211,27107,21661,24172,27834,16271,14832,27261,17263,18667,19290,19449,19607,22791,28558,29536,29154,22992,23121,21045,29385,27619,27583,17272,17284,18479,18495,18662,19289,19312,19318,20210,29533,29538,29539,18680,18560,27612,20805,24044,24045,24221,27076,28671,24220,24027,24026,29802,19085,16441,16442,20973,14061,27695,28546,15526,12721,15530,12264,12712,16439,16313,16330,21765,21580,13498,15414,14925,17144,19022,24479,24585,24609,24655,24656,24973,24986,24988,24989,24991,24992,24993,25004,25005,25016,29148,29678,29688,29689,29754,29756,25029,24380,24304,24323,24341,24370,24425,25007,29690,29691,24339,24355,22834,76618,24597,19627,29758,29784,28928,15048,21380,29954,19866,24191,28905,15041,27146,12292,16249,22793,23162,23163,23216,28507,14632,29218,19882,19955,29829,29831,24418,15109,15075,21466,15064,29213,21118,29151,25012,18009,22469,27297,19014,18733,16502,17721,22448,29812,19020,19371,28885,26344,13871,28891,13242,13351,13354,14179,14182,14898,23704,14187,15098,13885,13900,13913,13919,13894,13904,13803,16992,22500,28843,27755,19183,26684,26685,19881,20966,20959,30081,23476,17877,17878,27734,27808,27813,27822,28956,24706,24713,29142,23697,29958,20665,24205,18340,21674,20317,28255,13937,19853,24674,24567,17500,17541,17578,22556,17503,78776,78775,78784,78767,78773,78765,78766,14284,78762,78777,78770,78785,78768,78778,15049,15055,15103,15108,78779,78771,78769,78781,78774,14512,14531,14924,78772,78782,12548,12732,12807,12828,78780,26878,29842,29801,78787,76745,76750,76746,14309,24193,14308,23700,23705,24168,24176,24169,20001,24187,14414,26313,20646,19869,16209,15399,22534,24785,12416,14749,14669,21965,21619,24801,20994,22692,22857,22875,22881,22888,22897,23070,23182,25895,29347,29348,27777,15054,23178,19885,19727,29219,23709,14566,29726,14636,15472,24163,26807,21374,27119,27117,27118,28710,18983,19162,21956,13230,13408,13441,14888,13438,20004,16425,22341,27511,24821,29696,27640,15127,18999,21818,19328,13304,14415,29103,20834,20491,17823,30052,29329,29221,25113,25076,15589,25117,15959,15962,15971,15993,16001,25077,15845,25042,15903,15809,15811,15822,25123,25124,15627,25112,25043,25045,25046,25044,15094,25041,15097,16005,25060,25061,15905,19780,19781,15797,25078,20348,15929,25047,25099,15663,15674,15708,25091,25122,16026,15745,25073,16024,25114,16006,15857,16025,15936,25075,15925,25110,25111,25100,29484,29223,15793,16883,19715,19717,19886,26314,19714,16831,16836,29194,18060,19029,24938,15362,20190,14430,14436,14437,20146,20147,19398,19833,12627,15114,15080,12632,12687,12694,14783,14809,15078,15110,15112,15117,15125,15128,15513,15516,27126,27139,27158,29047,29299,12688,12588,12686,21663,15223,15387,28451,20265,14644,13772,17822,17821,17738,29252,15623,16331,21012,28856,27121,19816,19817,19818,19819,19820,19821,19822,19823,19824,19825,19826,19827,19828,19829,19814,19803,19804,19809,19812,19813,19805,19806,19807,19808,19810,19811,19800,19801,19802,19815,13459,13460,21632,12315,25262,25141,29706,25193,25163,25177,25867,25877,25854,25879,25883,25882,25148,25103,25219,25220,25221,25876,29684,25198,25855,25863,25871,25872,29705,29713,25258,25242,25243,25244,25246,25249,25256,25864,25873,25881,25885,29698,25260,25239,25240,25279,25280,25886,29707,29708,25266,25320,25137,25878,25305,25312,25334,25336,25337,25345,25856,25861,25866,25870,29709,28933,29695,23366,17648,29601,15077,18361,29042,24305,22830,27092,14808,12675,14541,14651,15408,28623,25362,25364,14774,28573,20841,23459,18377,18389,18390,18496,19273,19276,19279,19344,19387,19396,19629,21464,22544,22552,22658,22695,22742,22874,22910,22911,22912,23018,23671,28599,29409,29411,29541,29703,29759,29902,29911,29914,23031,18252,12243,12961,25380,19419,19467,19470,19630,21461,28865,29165,29396,75512,75518,75931,75923,75501,75524,75500,75499,75525,75497,75526,75921,75922,75496,75527,75920,75495,75528,75919,75494,75529,75530,75531,75918,75493,75532,75917,75492,75511,75519,75930,75533,75915,75916,75491,75534,75914,75490,75535,75489,75488,75487,75536,75913,75486,75537,75485,75911,75912,75483,75538,75539,75910,75482,75540,75908,75909,75509,75520,75927,75928,75929,75481,75541,75907,75905,75906,75480,75477,75542,75479,75476,75543,75475,75904,75474,75544,75902,75903,75473,75545,75901,75472,75899,75900,75471,75546,75459,75508,75521,75926,75453,75547,75898,75451,75450,75550,75897,75449,75551,75552,75896,75448,75447,75446,75554,75895,75555,75894,75445,75556,75893,75444,75557,75892,75507,75522,75925,75442,75558,75890,75891,75506,75924,75504,75523,75503,75502,29029,25354,25355,21386,28204,17447,29748,19855,21465,21383,21385,21387,20534,24207,19590,25404,25421,23009,25108,18315,23732,27512,12995,12999,15070,12387,13005,13022,13023,13058,15511,27145,13004,14858,19940,13000,19854,26872,29940,23413,27746,27823,14346,14362,14382,14398,15292,15296,21635,21658,27603,27448,27449,27604,12582,15123,15126,15515,19945,27137,27138,27142,27149,27151,27164,27167,28548,29301,29327,29356,29960,15115,15559,12590,12470,12428,12578,12685,12427,12684,12683,15116,12591,13436,12468,27140,12583,12586,29963,12482,12689,12469,12587,29825,24963,27515,27636,28916,26826,26827,27800,27801,28620,26873,17884,27128,30034,26942,20435,24909,26884,29059,29934,29935,29936,29955,29956,19027,19031,19032,19040,19044,19051,28572,19024,19047,19046,19168,19065,28576,19064,14322,22283,23487,28830,20311,15443,15444,29733,27715,16669,16674,16677,16740,16757,20747,19931,27828,28811,19876,28575,29224,29377,30110,28535,29596,28938,29438,19856,16444,27109,19750,26315,26642,26643,30071,27685,22766,23218,29314,22907,23077,12237,12238,12244,12245,14700,14702,15463,28859,12231,16504,78783,19048,29859,76752,76759,76760,76680,76748,76761,76758,76762,76756,76757,76681,76755,76754,19180,76683,76684,76685,76686,76687,76688,76689,76690,76691,76692,76693,76694,76695,76696,76697,76698,76699,76700,76701,76702,76703,76704,76705,76706,76707,76708,76709,76710,76711,76712,76713,76714,76715,76716,76717,76718,76719,76720,76721,76722,76723,76724,76725,76726,76727,76728,76729,76730,76731,76732,76733,76734,76735,76736,76737,76738,76739,76740,76741,76742,76743,76744,76747,76749,19036,29384,19037,14379,25546,25528,13392,21651,22770,21972,24120,24123,24127,26905,23971,30082,30083,28733,25853,19837,22832,16247,15101,23695,15547,19874,28925,16956,17621,17630,17700,17801,29521,22522,19849,17933,17934,25557,25559,25603,17141,27114,19796,17935,16126,25585,25625,25626,25627,25759,25766,25767,25667,25665,16130,29241,25641,25644,29261,25650,16143,25754,25755,25756,25687,29291,28540,29265,28896,25761,25765,28713,28711,25662,22562,25635,27499,25636,16141,28715,25733,25614,28632,25741,16151,15042,25623,25710,15059,29169,25764,25652,25688,25620,25720,19889,25782,28522,28900,29277,25784,25785,25773,25776,29697,25700,25795,25719,25721,25723,25730,29262,25786,25624,16149,28719,25621,29150,25666,25630,25660,25758,25734,25722,25548,25549,25550,25551,25584,25829,25744,25743,29197,16128,25686,29168,25789,25711,29900,18373,18374,18376,16999,22852,29432,30093,29973,29975,24189,13452,15389,20956,20166,13842,13488,14828,15396,21642,21644,21647,21650,28742,14568,21639,21640,20177,25825,28495,25826,28499,25942,25943,17672,17673,17680,19794,26881,28864,18024,17677,17804,17679,16482,16278,16279,16300,16411,16414,16431,16436,16460,16464,16468,16475,16498,16602,16615,16650,22453,22457,22523,29360,29400,29402,29523,16276,29933,30090,13286,14374,25964,25963,25930,26487,29716,29718,29719,26070,26354,26355,26363,26389,26398,26403,26228,26589,26240,26579,26034,26477,25990,25993,26291,26591,26596,26600,25988,26464,26587,26364,26412,26422,26431,26446,29439,26407,26414,26443,29647,29651,26514,26598,26630,25931,26580,25971,25978,25981,26563,26530,24226,26553,26383,25934,26015,26017,26078,26079,26458,26460,26466,26506,26508,29644,29648,29650,26274,26418,26419,26420,26434,26442,29658,26572,26571,26590,26380,26395,26003,29665,29675,26517,26543,26435,26560,26567,26576,26582,25976,26509,26520,26541,26542,26545,26547,26551,26552,26555,26575,26126,26381,26401,26402,29667,26538,26129,29653,29663,29669,17885,26554,26159,26169,26468,26469,26470,26472,26498,26504,26507,29660,26178,26594,26597,26599,26601,26608,26610,26611,26612,26620,26624,26627,26631,26635,26636,26638,29418,29652,29656,26037,26544,26546,26548,26549,26062,29717,28724,19832,29056,26311,25493,29026,18081,12734,25820,26216,26217,14565,14134,14158,14164,15285,21643,21652,21641,15529,18207,21981,28445,18304,23172,28299,13336,21730,21111,21112,21424,21431,29747,19852,17685,17687,17691,17699,17712,17735,29517,17686,28806,26811,14065,15388,24586,24622,30057,23645,26948,20181,22508,26937,26943,26944,29815,26930,20997,29701,22872,23660,28452,29341,14071,14084,14085,26775,26778,26780,26788,26806,29417,29489,29490,29867,29868,78531,29259,14083,23320,26339,19052,19054,19848,26960,20478,29965,29794,29798,29944,29067,21449,22240,22020,28694,22530,22403,28103,28134,28135,28136,28137,27113,26955,21835,28458,28459,26973,28471,30109,20264,18402,27006,29486,29800,14067,13390,17335,17336,19277,17319,18521,17293,19255,19582,29970,17338,18517,17259,29537,19554,18367,30091,17469,26997,27416,29003,29107,29108,27023,27111,29836,21967,15067,20032,76484,76485,76405,76408,76409,76483,15095,26916,29635,18375,21006,22631,22696,22727,22761,13912,20186,29528,29529,25896,15352,15353,15354,20191,14434,14438,14300,27002,27068,27069,27108,29942,17982,17986,22440,22441,22444,22512,22559,22826,22847,29401,30101,17774,17859,17780,17781,19790,17979,12939,17824,25013,29340,28975,17917,15058,13908,17065,18352,19637,24160,20262,28883,22306,19891,19892,27057,28581,29816,28489,17962,17967,27098,27102,27106,29325,19274,19688,20992,20995,26633,27104,27105,27409,29077,29078,29962,29964,22307,17922,30092,30084,30103,15457,30085,30107,30111,30112,18460,12776,15454,25838,25840,25841,25842,25843,25844,25845,25846,25847,25848,25849,25850,27086,27094,27141,27144,28579,15459,15461,15462,15469,14852,19872,20469,29781,29782,16578,27236,76615,17992,26894,30068,24972,26892,26900,27775,17862,17994,27226,29605,27239,22108,23000,23274,29768,29926,27412,27311,28855,27246,76605,27268,27272,27273,27274,27277,27280,27391,27264,27287,27248,27284,27306,27308,26744,24190,27332,20173,25898,14473,29610,17762,12699,29834,28931,20738,20792,29043,29110,29111,29112,20653,20684,20649,20682,20651,20662,20736,28004,27367,27839,27840,27841,20005,20008,27679,27680,27681,27691,29365,29606,30063,19996,28907,30062,27762,28725,27836,19997,27417,15392,28755,28756,27842,20000,27355,25098,27682,27730,30060,22291,30086,24070,13760,27334,27335,27341,76601,25799,17996,27897,27899,27936,27950,27951,27955,27959,27960,28846,29132,29322,29442,29619,29629,26880,19999,13378,13868,16189,15131,29180,29349,29636,29637,27426,28954,19631,15132,14839,27971,15365,14920,26888,26903,19003,76616,14728,14732,15141,22769,22876,22880,22895,23446,23474,28613,29927,19865,24196,24197,24198,24199,24200,24201,13814,13852,13856,19910,21672,29503,28041,28062,24015,13804,13808,13816,13821,13831,13841,15374,15278,15560,21451,14270,29796,29941,15771,16250,30050,19942,19944,29116,29948,29950,29953,19963,29155,29156,29157,29158,29164,29166,29413,29445,29468,29564,29565,29566,29567,29568,29572,29573,29575,29576,29580,29581,74867,28091,28092,28093,28095,28119,28332,29471,29474,29569,29570,29571,29582,29584,28167,28096,19281,24130,24971,24996,19899,19900,22855,17116,30049,20174,28147,28195,30054,28875,29051,18074,18073,15452,14698,15448,14693,16981,15433,19287,17326,18594,29587,29176,20157,15047,28231,28235,28236,28258,28327,28360,29117,29270,30055,30056,23158,28242,28243,28295,13454,13531,13641,13649,13784,13788,15143,29502,29504,30064,14170,13464,13859,28795,24513,24520,24600,25025,28642,24438,27115,27763,21863,28373,22287,28370,20346,28364,28805,30053,22906,22883,27143,15391,20881,28895,19841,21568,24217,24219,29412,29440,19925,16341,16350,22862,22929,23661,29898,22916,23696,19835,13285,13732,15181,16167,20189,13549,13616,13640,16165,23692,13516,14454,13527,14129,14131,14140,14143,28743,14150,14167,15086,24875,21364,24873,24874,24899,27352,29295,29840,20144,20882,21523,21516,21755,21718,22267,22286,29552,24165,24166,27732,20883,19011,19012,26965,29415,78530,28617,29198,27802,29049,12774,12779,20833,14835,12729,28882,12745,12841,12842,12900,12936,14829,15035,15140,27125,12775,12783,12975,14824,15261,15464,14317,17173,22503,22516,22840,17193,26698,29843,24004,29856,24212,23972,27210,27224,28386,27792,17887,27772,19097,17789,22536,27765,16648,26920,19157,25940,20811,13094,13088,21966,13117,22580,22607,22583,17181,28958,15402,18903,24002,23138,16299,27667,25270,24607,21016,21025,20382,20384,20385,20387,20390,20394,20396,20397,20399,20402,20403,20410,20431,20432,20458,20459,21014,22395,22643,16968,12640,12546,27154,27159,13101,12545,12526,12593,12639,14970,14971,15248,27169,27170,27172,27173,27175,12631,13519,13521,13526,13520,24910,16281,16282,16284,16292,16377,16378,16379,16380,16382,16426,16432,16433,16434,16435,16448,16450,16465,16466,16467,16470,16481,16485,16486,16525,16530,16813,16293,24104,24105,16729,13834,21340,14000,16562,14352,14364,14372,15295,22564,17309,23782,23923,23927,23932,23939,13743,16527,16301,20554,20589,20630,20568,20579,20583,20582,20527,16976,30033,13963,19073,20803,19080,19072,22976,23475,22787,23423,24112,20809,18737,22815,27414,18738,13495,15154,19576,14206,14370,14371,14402,18333,16201,16203,16206,16215,20748,12319,16172,16182,12395,12396,12397,12398,12409,12451,12599,12620,12636,12638,12644,12646,13033,13102,26850,26851,26852,27152,29598,12390,16177,16179,16184,23663,19520,19521,20830,20859,20863,22802,22803,23011,14208,14210,15156,16208,16212,19704,18406,25482,24441,24448,24452,24458,24443,21068,21071,21073,19763,20889,28456,16116,16105,20909,20907,16104,16110,16108,16109,20932,16114,20906,16121,20908,16111,16112,16123,16117,20930,26718,26723,26724,17798,13252,13251,12393,27147,12325,16801,16881,16782,27795,16888,15536,22998,23359,23343,22551,23171,23667,23401,15152,23605,26316,23384,13276,13289,13333,13339,13345,13350,13356,13359,14793,14885,15311,15314,21631,13306,20565,20610,18463,16223,16224,20937,12267,14240,14241,14242,15258,18444,22788,23001,23007,23008,23142,23144,23213,17388,23143,14497,18215,21400,19389,19392,19416,19456,22671,22724,23307,23309,19343,20955,20091,21069,21070,21075,21076,17146,27301,14197,13872,13892,13895,13381,13891,14009,15341,20185,13792,14500,14509,15403,14499,14507,21240,21432,21125,21126,21127,24279,24267,24268,20795,76602,76603,18284,17658,16234,26716,25205,14515,14516,14517,14518,14522,14523,14530,14532,14536,14537,14538,14539,14555,14556,15409,15411,15413,24010,14540,14485,14486,14487,14489,18422,13599,15421,14571,21438,29683,24324,19013,18995,18976,18990,15548,16229,16231,16233,16910,13423,21527,21529,29550,17249,17274,23312,23337,17828,21184,21223,21226,12457,12458,14260,22577,16214,21437,20991,25011,23305,19550,13255,13316,13327,13338,13357,13029,13032,13043,13045,15541,14533,14550,15404,15405,15406,24430,24514,30010,24249,21501,24294,26899,24771,24772,24776,24777,18862,21290,16261,17983,24284,24286,24296,24964,24965,18366,21235,21238,21239,21244,21259,21263,21266,21268,21287,21300,21302,21303,21305,21306,21308,21309,21310,21407,21409,21410,21426,21428,22664,22945,23283,23286,23290,23291,23301,23302,23303,23351,23654,23657,24292,24976,24977,26893,21408,24287,12277,12403,14274,13318,13325,13326,13331,13332,15299,15384,21633,21634,13355,13502,13503,13510,21579,23228,23231,14279,21455,14278,17749,17750,17753,17756,17869,17951,17956,17980,19797,21456,21963,12978,14136,28372,20448,28468,17600,20947,21746,22235,16266,29809,23824,23837,23834,23252,21962,23767,23795,23809,23781,23783,23784,23787,23790,23791,23793,23796,23800,23801,23803,23807,23808,23810,23811,23812,23813,23925,23934,23785,23786,23797,23995,23814,20876,29105,23585,23630,23997,23794,23792,23777,23806,23841,23843,23850,23996,24001,23839,23840,23842,23846,23848,23994,23849,23990,23685,23629,24113,24366,23898,23907,23833,23805,20918,23815,23820,23778,23779,23899,23789,23788,23940,14754,21145,21146,21147,21148,21149,21150,21151,21152,21153,21154,21155,21156,21157,21158,21159,21160,21161,21162,21163,21164,21165,21166,21167,21168,21169,21170,21171,21172,21173,21174,21175,21176,21177,21178,21179,16850,18720,23306,23442,20487,15579,16329,16416,16419,16420,16451,16461,16484,16488,16514,16533,16535,16536,16537,16538,16550,16561,16593,16600,16603,16607,16608,16689,16812,19743,22486,16339,16542,19744,17858,16595,20473,24480,21499,21502,21503,15446,14493,17764,17767,17763,22575,22600,20989,13403,13410,13431,13461,17779,15827,16787,16803,16807,16808,16816,16819,16839,16849,16857,22463,22853,27986,16834,16835,16778,16776,16873,16875,17435,17854,13961,16348,16213,14054,15163,15531,17101,13967,14028,14031,14032,14033,14035,14043,14053,15186,15187,15189,15397,26330,14034,14619,13288,13793,13960,27373,14199,26332,17087,17091,27525,16604,13074,13093,13097,13099,13100,13103,13111,15538,16417,27270,21481,13975,23104,27647,23100,16709,17250,17252,17268,17269,18231,18491,18494,19308,19309,19351,19353,17248,22208,22209,22214,22041,22045,22047,22048,22050,22087,22106,22110,22116,22118,22119,22120,22121,22126,22136,22144,22162,22168,22177,22180,22191,22192,22193,22194,22199,22221,22253,22213,22217,22215,22216,26663,17889,21957,23905,15370,13934,21517,14634,21462,27650,27705,27707,16914,16915,16944,16948,16982,16985,16989,16990,16991,16993,17009,17010,17018,17080,22527,22528,22533,16946,16978,17079,22526,17069,17077,17078,21513,15360,12255,13935,23176,22892,16262,28379,21562,21563,21564,74866,14404,21542,12375,13394,28878,23607,23816,20825,14453,16693,24934,23493,14574,14582,14583,14587,14588,17596,17614,17598,24108,29885,22634,22739,22745,22947,23338,23345,23342,24350,26711,24423,18810,26902,16797,16799,16800,17769,17879,21574,21573,27050,27046,22537,22933,22936,22581,16369,16368,17093,12272,18069,18072,22817,27700,28913,21570,22822,21645,14207,27651,21704,17125,13744,20826,20827,23310,22948,23340,23066,23125,22899,23450,22858,23177,26433,12297,12331,12796,12829,12862,12863,12870,12871,12872,12874,12912,12940,12944,14820,14821,14846,14848,15001,15002,15474,15476,15481,15483,15485,15486,15487,15489,15490,26908,26913,76609,76610,76613,76614,12509,12510,12511,12418,12789,15006,12787,12788,12873,15003,12785,12786,12795,12836,20828,20822,28701,18236,17100,17105,17106,17107,17111,17117,22849,12472,15250,12473,19524,19526,22632,22716,22762,22764,22983,23098,19443,19493,19501,23014,23096,23140,23147,28608,19366,27620,23557,12322,14726,12404,12405,12406,12407,14730,14939,14735,15254,15255,15256,12420,12635,12700,17244,17273,17350,17372,17379,18279,18500,18501,18537,18565,18583,18591,18604,18605,18606,18608,18609,18611,18620,18621,18625,18693,18694,19238,19574,20213,29693,15430,21682,21687,21689,21690,21692,18000,18873,18874,22756,22913,22943,23152,23315,14599,19480,19487,29984,29996,19472,19477,19479,19481,19484,17135,17520,19442,23328,23329,29890,30013,29994,15257,13026,18362,27085,18869,29848,29849,29850,18863,23325,26348,20027,20028,23145,23146,23233,22974,24937,24941,24942,24943,24944,24945,24939,24940,20511,21665,22606,15216,13746,16554,16947,17149,17153,17169,17170,17180,17182,17184,17185,17186,17187,17192,22455,28889,17189,18811,18192,17728,26210,17818,13451,16456,17817,17771,17772,21815,19916,23316,27438,27445,27482,27497,27500,27501,27503,27507,27520,27526,27547,27548,27551,27552,27563,27565,27579,27580,27581,27587,27607,27608,27630,27633,27638,27643,27645,27649,27652,27657,27660,27664,27665,27670,30040,30041,20333,27381,27379,27390,27380,27422,27478,27477,27444,27492,27383,27384,27369,27371,27434,27378,27467,27530,27618,27370,27454,13497,15165,23354,23356,29957,24101,24640,23554,23555,21744,21775,21776,21777,21779,21781,21784,21787,21790,21792,21795,21796,21742,21747,27642,18150,21748,24329,21797,21798,21799,21800,21801,21864,21865,21866,21867,21868,21869,21870,21871,21872,21873,21874,21875,21876,21877,21878,21881,21882,21885,21886,21888,21889,21890,21891,21892,21880,21887,13402,17990,13532,13533,13534,13553,13554,13604,13605,13607,13608,13609,13610,13617,13618,13631,13632,13635,13637,13655,13658,13659,13670,13674,13676,13680,13683,13684,13685,13686,13690,13694,13697,13699,13701,13702,13704,13705,13707,13711,13713,13715,13716,13718,13724,13726,13730,13733,13735,13736,13748,13752,13753,13756,13757,13758,13761,13763,14908,15031,15193,15195,15196,15199,15200,15202,15204,15209,15210,15211,15212,15213,15214,15235,15236,15238,15241,15276,21597,29561,13672,13691,13692,13737,13738,21636,14558,13875,17131,17561,17562,12733,13725,17440,17442,13687,13688,18354,27062,17937,17784,17776,17783,17914,17790,21862,16338,17897,22837,21858,22609,29236,26721,24365,16649,23418,14606,14611,14613,14622,14491,18225,23386,17848,27798,22642,22653,22586,27088,13971,13973,12353,12400,12408,15259,13972,12711,26670,12340,12374,15532,14734,12211,12332,15523,15524,27120,12271,12274,12318,12330,12280,12269,12341,17550,15364,21052,21053,22596,15243,14288,14292,14293,14294,15279,27577,14968,23979,23921,13946,13170,13171,13172,29173,20320,20328,20330,21977,21988,21991,29279,28464,29458,22032,23311,22325,20352,22340,22338,22352,21569,24717,21544,24033,24041,22382,27231,27233,27234,27235,27232,22393,22384,22376,24421,24894,13228,13225,13226,17351,17356,18447,18448,18449,22776,23064,23078,23079,23085,23089,23161,23193,23203,23209,23210,23212,23215,28603,29021,29913,22780,23081,29978,23734,29621,27914,27966,27949,22751,23272,23275,23276,27230,22622,23136,18440,23721,20875,23358,23888,23893,17463,17476,28172,28173,28176,28177,28178,28179,28182,28183,28185,22398,21436,16181,15562,15573,22597,13061,21771,20797,19687,29875,30008,29985,13947,15372,22422,29702,22579,22640,14621,24367,17852,17842,17843,17845,17846,17387,24851,15417,22598,28509,27902,21902,24383,22637,22861,22863,22896,23650,23658,23258,23109,23110,23308,23285,22720,23652,23647,23137,23139,23341,22963,22997,13063,21032,22710,22729,22730,22865,22867,22987,23242,23373,23381,23382,23463,14661,23460,14682,14680,14683,16159,15280,23458,25901,17027,17034,17037,17038,17039,17042,17043,17047,17058,17033,17035,17036,17040,17041,17048,17059,17029,23799,28767,24546,29938,17311,17312,19593,19594,22644,16838,16877,16878,17130,23488,23534,26673,26675,16817,16822,16825,14490,14506,14492,16196,16197,16198,16199,24377,17086,13039,20940,14478,20361,24089,17560,12270,27084,21879,24686,12372,29278,27624,28763,27807,27784,27783,23326,27782,27785,28203,12979,12784,12790,12847,12852,12865,12867,12879,12744,24401,16790,17126,30065,13335,13337,13347,13349,13353,13364,14400,14627,15321,15323,21627,22601,15331,16302,27997,23336,20036,16453,16454,16904,17408,17415,17416,17420,17421,18117,17413,16714,16725,16726,17406,13393,16186,13254,12864,16553,16771,22451,22452,16563,16768,16555,23571,28648,27719,26901,26917,18848,23331,17113,12435,12436,12437,12438,12440,12441,12442,12448,12453,12454,12456,12460,12461,12462,12463,12935,15145,15270,15271,15349,15504,15506,15507,28545,28547,76608,12443,12439,16520,16521,29799,23547,28316,22343,23602,13620,22649,22648,13869,22951,24382,18126,22650,22602,14080,24927,24932,24928,24931,24933,24930,24929,27518,29203,13962,13964,14052,13974,13256,22824,12980,15013,15014,19341,19546,19340,19535,22635,23131,23133,23135,22663,23369,24912,17760,23689,23690,17888,23780,23931,23981,23798,20779,23909,23911,21342,23913,23916,18919,24008,27322,23776,23928,23978,24003,23838,23844,23963,22394,23772,23827,23983,23821,23822,23823,23825,23826,23828,23829,23830,23831,23832,23836,23845,23847,23918,23920,23991,24006,23992,18925,18927,19188,24111,18753,23912,24224,23910,23915,23914,25945,22315,27344,19187,23962,23977,23982,23804,23901,23999,23802,22591,22922,22578,22827,22639,22572,22620,22604,22619,22584,22571,26318,14729,17266,18493,18503,18519,18607,18612,18613,18614,18646,18647,18648,18649,18671,18672,18675,18888,19207,19235,19271,19288,19350,20207,20209,23128,23669,30038,18442,18369,20201,23368,23122,22595,27584,22574,27811,17265,17270,17325,17327,18230,18309,18310,18427,18428,18429,18439,18467,18469,18486,18487,18518,18525,18536,18563,18618,18619,18629,18637,18638,18639,18653,18664,18695,19266,19310,19313,19321,19322,19323,19329,19354,22738,23046,29967,29969,30016,18431,18432,22923,22587,22919,24047,13053,13059,25015,22612,27103,19094,17864,14563,13864,24054,24072,21060,27698,28887,24119,12701,27387,16320,16321,16682,17571,21762,21769,15420,21450,15172,13606,21046,14098,14097,15445,24426,24429,24431,24432,24435,24451,24453,24457,24460,24463,24465,24471,24472,24473,24474,24476,24477,24478,24484,24487,24488,24489,24490,24491,24492,24496,24497,24504,24506,24509,24510,24511,24515,24516,24517,24519,24522,24529,24558,24562,24611,24616,24620,24629,24979,24983,24984,24997,24998,24999,25002,25003,25008,25009,25010,25014,25018,25022,25028,29682,29755,29757,30094,24599,23904,25026,24307,24309,24310,24315,24343,24347,24353,24359,17404,18203,18204,20087,24106,24107,24100,26340,27658,20942,22313,22319,21388,18829,22646,25479,23659,15040,12723,12764,12765,20485,22866,22798,22901,23164,22615,29968,29977,29998,30017,24650,14629,24642,12600,17489,17490,17556,24685,17425,17428,17431,17642,22582,22590,12702,22585,17758,16954,17147,17947,24683,15432,26325,15361,13898,15356,15351,15358,15350,14176,13444,12399,13833,13450,13825,13836,13837,14183,15281,15415,15424,15422,14184,16145,15426,13897,13899,15347,15355,15357,15359,21664,13940,26329,16957,24718,17020,24714,22405,28101,27766,28960,21507,24422,23664,24691,13205,13206,13207,13208,13209,13210,13211,13212,13173,13174,13175,13176,13177,13178,13179,13195,18226,23499,23497,24675,14628,22960,22964,16845,17584,24854,24855,30005,13876,15416,24667,24358,25024,22735,23061,23082,17308,24258,20800,22804,27353,27812,27745,17483,17484,17485,17487,17488,17493,17495,17496,17497,17498,17501,17543,17544,17546,17576,22557,17552,23048,23330,19192,19705,19706,19069,14312,18398,14405,24787,24789,22404,22407,24898,14631,14667,14671,24019,14424,17301,18246,18348,19517,22749,23687,23688,23686,23180,23361,22823,14623,14635,25592,12247,12278,15528,26906,27794,27816,24830,25824,21958,18086,13401,13404,13405,13407,13457,13406,24269,27778,27780,24824,17981,18025,16712,24528,24665,20936,17443,21970,28952,18744,18745,17739,27837,18747,13344,18750,18743,18838,23425,23422,23339,18758,22966,23817,23818,23819,23479,23024,23021,28017,28892,19424,13873,28388,23604,22806,22651,15606,15924,15576,15587,15593,19784,25116,15604,25058,15755,15758,25040,15752,15756,15796,15802,15821,15825,15826,15828,15894,15895,15898,15901,15768,25118,15664,15667,15699,15707,15732,15737,19696,25082,25092,25129,15798,15800,15801,15803,15804,16011,25070,25072,15864,15654,25125,15908,15790,15791,25057,15617,15621,15638,15642,15659,15615,15625,15676,15713,25131,15634,15679,15685,15686,15681,15683,15684,15692,15709,15714,15718,15719,20199,25087,25119,25121,25126,25038,15927,15721,15847,15848,15849,15850,15852,15853,15854,25049,25051,25052,25053,25054,25071,15626,15922,15939,15739,16013,15923,15788,25120,16019,20865,15563,20339,18188,24924,27089,19043,19050,24374,24375,24376,19948,18880,24919,22915,22990,22996,22926,22406,22588,22613,22652,22920,13095,14788,29600,13204,14874,14873,12474,15245,12549,12568,12613,12629,12630,12634,12637,12642,12643,12645,12647,13065,13084,14757,14790,14973,15517,15535,27153,12569,12475,27134,14130,15336,14095,14096,13671,13689,13826,27490,17832,17835,22525,14695,20300,23502,22784,22576,22610,22611,22616,13400,13422,12321,24512,24559,25143,25144,25145,25147,25149,25151,25865,25133,25188,21304,25170,25171,25164,25168,25169,25173,25174,25175,25176,25178,25181,25183,25184,25185,25186,25187,25859,25860,25180,25869,25161,25134,25139,25140,25215,25136,25233,25179,25222,25223,25224,25225,25226,24507,20178,25316,25214,25217,25218,25264,25265,25267,25317,24475,24505,24518,24995,25199,25200,25201,25203,25204,25206,25208,25209,25210,25211,25212,25213,25875,29027,25138,25142,25150,25157,25158,25159,25231,25248,25251,25252,25253,25254,25255,25880,25884,25259,25234,25235,25236,25237,25238,25241,25271,25272,25273,25274,25275,25276,25277,25278,25281,25282,25283,25286,25287,25289,25290,25291,25292,25293,25887,25889,29712,25192,25322,25321,25323,25195,25245,25197,25202,25297,25299,25300,25301,25302,25303,25304,25306,25307,25308,25309,25310,25311,25313,25314,25295,25296,25346,25349,25350,25351,25857,25858,25868,25874,25135,25284,25247,25257,21435,22346,25333,24816,24840,24843,24844,24845,24961,24818,24841,24842,24846,24847,24848,22401,22428,17454,18879,17453,12486,12487,12489,12490,12491,12492,12493,12494,12495,12497,12498,12499,12500,12501,12502,12503,12504,12505,12506,12507,12508,12484,12485,12488,12496,12550,14819,12989,12323,12757,12758,28884,19438,18286,18297,18300,18301,18358,19286,28866,24302,18915,18916,18917,18918,17491,17870,17874,17875,17876,22833,18191,18703,12266,12432,15521,14484,25369,23478,25324,25326,25361,25365,25613,14152,14442,17397,18241,18282,18320,18386,18405,18414,18652,19284,19345,19368,19369,19370,19381,19401,19403,19490,19499,19502,19505,19508,19510,19527,19534,19633,22555,22625,22628,22685,22698,22700,22732,22734,22782,22884,23015,23028,25353,29350,29443,25381,24901,18296,19285,19380,19388,19408,19466,19468,19469,19528,19530,19531,19532,19681,28863,29860,29869,29871,29872,29879,29883,29887,29979,29990,30007,29886,29882,30024,30030,29981,29966,30021,30018,30000,30029,29987,29983,30014,30002,29870,29884,30022,29980,30025,30019,30028,29892,29986,29893,19407,29991,19406,30012,29880,30026,29993,30011,29976,19411,29888,30027,29999,29992,27648,19553,29876,28206,28207,29874,15602,29877,29878,29988,29989,29997,30004,30020,30023,29982,30006,30003,29995,30009,29873,15337,14406,15301,20031,25474,19679,19669,19673,17626,20880,18921,24920,22030,18400,18452,18453,19540,17394,20951,20953,23087,25409,25412,25418,22627,25403,25423,25424,29918,28318,23653,17262,18339,18345,19601,17122,17123,17124,17128,17129,30079,23411,27504,13092,13096,13104,15542,13089,13090,13091,13108,13087,13098,13109,13114,19114,19117,28961,19342,19346,28918,27770,27767,12324,14325,14327,14348,14351,14384,28524,15205,15206,15218,15229,15290,16396,25152,24084,12512,12513,12592,12595,12609,12615,12619,12652,12653,12654,12926,12987,14967,14969,14972,14974,14981,15089,27131,27132,27133,27166,27177,12616,12518,12519,12641,12611,12612,13040,26909,26910,26911,26912,12517,14785,12521,27157,27160,27162,12394,15246,15534,13112,12520,12552,20499,27505,27514,27517,27654,27509,27653,22605,19197,17585,13115,29810,29811,18151,18152,18144,18749,28630,19062,19063,19015,14324,13227,23486,14185,13755,23537,24644,14659,29310,17391,18455,18456,18462,25464,16694,17636,26918,26879,24897,16522,16523,17724,28031,16429,14932,17742,22894,22967,23403,23362,22969,23030,22968,23023,23481,22898,28353,24247,24253,24970,22603,25165,18748,18751,18930,26652,22669,22688,22691,22754,22768,22886,23074,23222,23397,23402,23224,23396,23400,25509,25510,25511,12222,12230,14703,14706,14707,14929,14930,15265,27122,14705,22589,19762,25507,23332,23333,19026,19038,19039,19057,19066,19137,19181,19041,19045,19055,19139,19171,15369,26839,19445,19486,23494,25544,25547,25535,23084,22647,25525,21299,25523,25566,17164,17165,16855,14662,22489,22284,17605,17608,17613,17615,17617,17609,16227,28589,18250,19332,17622,17623,17624,17625,17629,17632,17633,17634,17682,17683,17684,17704,17725,18083,17723,17631,17853,17856,25558,25561,20976,25602,25605,17918,17929,17931,17932,25674,16132,16133,25809,29034,25647,16139,25750,25752,25658,25661,25787,25663,25673,25713,25685,25704,25693,25668,25763,28717,25732,25736,26945,16148,25703,16129,25618,16150,25637,25757,25742,25737,25696,25622,25731,16140,16144,25616,12747,23251,29037,16147,25715,25709,25753,25654,25735,25718,28881,28714,25791,25790,30095,25779,25724,28712,16152,28716,25728,25690,25691,25692,25738,12746,12748,25675,25680,25760,28523,28543,25657,25708,25651,25656,25619,25677,25689,28720,16131,16146,25617,25638,29293,16135,16137,22995,27750,17568,17399,18351,19515,13490,13491,15338,24061,16943,17004,17005,18185,17820,13714,25808,24420,12974,13839,21648,14569,14570,21656,13484,23552,23553,25938,18706,17676,19789,17668,17678,17670,16274,16275,16277,16280,16288,16291,16296,16370,16371,16391,16405,16406,16407,16408,16410,16430,16446,16447,16459,16462,16463,16472,16473,16489,16491,16495,16496,16515,16524,16579,16614,16752,16753,16766,18112,18131,20035,22480,22487,29511,16398,16455,18808,17974,16783,16837,16879,16791,17127,27171,27174,13543,26345,15011,29499,12608,27130,25968,25985,25967,26010,26008,25959,26201,26202,26479,26488,26502,26505,25610,25921,25923,25928,25950,25953,25954,26009,26011,26013,26370,26385,26394,26397,26269,26583,26007,25949,26235,26236,25995,26573,26238,25996,26574,26584,25998,26005,26268,26565,26578,29674,26032,26204,26491,26194,26224,26476,25989,26622,25962,25992,26592,26637,26480,26026,26586,25986,26041,26042,26044,26045,26046,26047,26273,26406,26409,26411,26415,26421,26423,26424,26425,26426,26427,26428,26429,26430,26432,26448,26450,29419,26413,26437,26454,26485,26496,26226,25952,26001,26208,26272,26200,26029,26030,26221,26222,25980,26518,26616,26626,26568,26588,26031,26220,26087,26088,26557,26114,26218,26060,26016,26018,26020,26022,26027,26075,26077,26252,26459,26462,26471,26474,26481,26482,26483,26484,26486,26489,26494,26495,29641,29642,29646,26561,26581,26287,26447,26577,26566,25973,26055,26408,26416,26436,26438,26440,26441,26444,26445,26449,26439,26069,26071,26072,26073,26074,26239,26372,26373,26374,26375,26376,26377,26378,26379,26382,26384,26386,26393,26206,26550,26110,26112,26116,26117,26564,26559,29676,26064,26065,26068,26052,26054,26057,26059,26012,26569,26558,26255,25929,26051,26562,26556,26540,25975,25979,26086,26100,26510,26511,26512,26513,26524,26525,26526,26527,26528,26529,26531,26532,26533,26534,26535,26536,26537,25969,26613,26119,26120,26122,26124,26125,26127,26128,26352,26358,26360,26362,26365,26366,26369,26387,26390,26367,26356,26404,26405,25972,25977,26131,26134,26136,26223,26225,26359,26400,22446,26153,26154,26155,26157,26158,26160,26161,26162,26163,26164,26165,26166,26168,26170,26173,26174,26175,26176,26184,26185,26186,26187,26188,26189,26203,26254,26267,26270,26451,26452,26453,26456,26461,26465,26467,26490,26492,26493,26497,26499,26500,26501,26152,26199,26192,26388,26138,26139,26140,26141,26142,26146,26147,26148,26150,26151,26180,26181,26182,26198,26207,26233,26593,26595,26602,26603,26606,26607,26609,26614,26615,26617,26619,26621,26623,26628,26634,29655,29659,26625,26618,26242,26246,26539,25922,26063,26067,26570,25999,26000,26629,26368,26039,26193,26410,25951,27743,26312,13540,16814,16609,18079,19947,16173,15657,14145,15284,15286,15287,21646,21653,21654,21655,21649,19589,19724,22917,25319,16735,19523,22924,20090,21109,21113,21412,21413,21422,21427,17689,17690,17692,17693,17694,17695,17698,17701,17702,17703,17709,17710,17711,17714,17715,17716,17717,17718,17727,17729,17733,17734,17736,18111,22842,29519,17713,17957,22014,19451,24034,29889,18159,23420,26521,26522,26523,29298,26700,26705,26703,26725,24481,24508,24628,24632,25017,25021,25023,14462,14463,14461,13509,15150,24589,22614,22618,26936,22736,16610,26969,14686,14074,26687,26690,26736,26755,26758,26760,26761,26762,26770,26785,26786,26787,26790,26792,26793,26801,29946,26656,19049,24357,24829,18934,18941,18952,18951,18958,18953,18960,18954,18955,18956,18957,18936,18935,18937,19172,18942,18938,18940,18939,18944,18943,18945,18946,18947,18950,18949,18948,22025,28072,19993,28042,28043,28051,28053,28104,28132,28045,28046,28047,28048,28044,18734,26954,26974,26976,26972,21969,22772,22758,14060,14062,14063,14064,24082,19074,19326,17255,17276,17277,17246,17251,17278,17279,17280,17472,17740,17741,22641,22421,23560,16326,12401,22828,21056,18213,19364,19384,19415,19418,19421,19447,19504,19529,21003,22675,22723,22725,22726,22890,23045,23651,26371,15622,19689,22760,22765,23012,23281,23282,15309,15310,27016,22887,24527,27345,14646,19402,19404,19541,13791,17666,17787,17825,17826,17893,17944,17959,17965,17985,17997,17773,18005,17770,17844,17866,17924,17943,12755,76612,12213,15022,17955,24724,17067,17068,21433,17143,26209,24337,24338,22303,22304,17964,17966,17968,17894,19474,27077,27101,29739,18235,18363,19690,19692,19693,19694,20993,20998,30001,29891,30015,21008,17761,17880,17921,22445,18797,26895,26904,12991,13105,27206,18011,22921,22594,22617,23519,17847,16190,12705,15437,17987,17991,17999,18876,18861,24925,18884,18890,18933,17861,27223,22397,27225,27228,27229,18420,18244,27254,27276,27395,27398,27282,27307,19088,27331,18845,26081,14581,14460,27372,27375,27421,27843,27413,30039,28761,28812,27776,27720,16021,27423,27804,30042,27805,27364,14642,27847,27070,17969,18411,20853,23086,17984,17993,17995,27880,27941,13862,22885,27991,19879,22778,22989,22994,23264,23267,23270,23360,23404,23026,15298,17926,17927,16788,16789,19575,17254,26399,26515,26519,26516,27803,28321,13941,15367,15368,15371,24817,26963,29881,27078,12320,28025,18331,19670,19671,22545,22548,22550,22630,22693,22747,22753,22900,22970,23022,23027,23076,23421,23424,23440,23444,23471,23480,23482,29016,29925,23017,23025,23029,28033,20962,13806,13182,13183,13184,13185,22977,22979,23253,23314,17275,22593,28035,28037,28038,28064,28063,13506,13794,13823,13824,13827,13828,13829,13830,13832,13835,13838,13847,15373,15375,13813,27528,27498,14115,18176,18198,16977,16983,18170,14383,14385,24263,19042,18193,29804,29805,29806,29949,28076,28080,28081,28083,28084,28087,28110,28330,28333,28128,28129,28150,28153,28154,28158,28161,28163,28164,28165,28166,28168,28106,28107,28162,20462,20581,17395,17398,18401,28071,19902,28054,28146,20958,16385,22592,28189,28190,28191,22645,22638,18062,18063,18064,19450,14688,14684,14685,14681,14687,14675,14674,12268,15450,23364,18595,19217,19337,19405,22771,23049,23169,23414,22621,27569,27570,27593,27669,27655,28768,28769,23317,28215,28217,28218,28219,28221,28232,28234,28250,28274,28275,28277,28319,28356,28357,28359,28381,28382,23321,28238,28241,21897,14802,13535,13611,13660,13682,13695,13709,13720,13745,15201,15226,14301,14315,14133,19391,22608,22829,24467,24486,24521,24526,24576,28367,21344,22999,22925,12928,12296,13270,21288,22599,16543,18729,29518,16340,16344,16364,16366,16582,19229,18088,22709,22719,22759,22868,22934,23662,22800,16334,16336,16337,22478,23988,22952,15425,15419,28888,14144,15178,29036,15012,14132,14138,14141,14142,14147,14148,14149,14111,26653,14099,14139,14151,14112,14113,14114,14146,28746,28877,22270,29833,26831,27574,27661,24813,22212,22092,24891,20342,24716,24900,24892,24908,24804,27202,26818,21399,27207,22825,12380,17925,12279,12938,12851,12861,12937,12941,15004,15005,15039,14503,12860,13489,14890,17895,17930,17183,23989,24000,23986,20451,23930,23936,23929,23933,23937,23942,23958,23959,23941,23906,21685,18922,23987,23993,23998,23980,22370,16210,23984,23835,23903,24114,24649,23938,23922,23924,23926,23943,24099,27739,27735,27774,27672,18964,27736,17076,18984,27740,27748,27787,27786,27791,26728,27789,16663,13120,24289,12703,12704,14951,13592,13594,16953,16099,16097,23092,23477,28606,20351,20398,20426,20389,20391,20393,20404,20425,20349,20355,26341,18783,12648,12649,12481,20194,19178,18778,16295,16315,16322,16323,16469,16519,16531,16811,16815,22477,16427,22479,19184,13247,13367,13371,13382,13383,15303,15304,14603,24825,13307,13416,13421,14204,13420,13257,27360,21336,21338,13970,13985,14196,14201,15288,14190,27806,14335,14336,14365,14373,14420,15293,20367,20373,13007,13054,20588,20599,20616,20617,20618,20619,20620,20988,20999,28565,28566,28584,20464,20528,20584,20627,28563,20468,20461,24811,16972,16975,20771,20476,18844,18846,26919,29932,20810,20808,20844,13507,13508,28210,19249,19253,15382,14337,12419,20140,20141,12358,20751,29638,18247,16200,14722,12381,12624,25836,12626,16207,20824,20877,20868,20858,20860,14559,19198,18413,24399,24447,24449,21072,20851,28006,16707,29366,14648,16122,26692,26706,12537,12538,17606,13107,12736,13518,22539,29767,29763,29764,13585,12859,24666,23374,13583,12782,13589,13514,13517,13796,13272,13274,13277,13281,13308,13321,13328,13358,13363,13366,13370,13376,13380,14626,14643,14789,15307,15308,15322,29508,18461,16228,20945,14219,14223,14230,14231,14232,14243,14244,14245,14249,14251,14257,28497,18451,22877,22978,23013,23058,29437,28065,18359,19393,19434,19454,19457,19623,22878,28600,19417,19725,17174,17175,24836,26999,14192,13887,14045,14046,15167,15168,13924,13466,13861,13896,13914,13931,27451,14501,14504,14498,23896,27187,21119,20380,26686,27227,27333,27408,15595,26734,21446,14514,14520,14521,14524,14525,14526,14527,14543,14544,14547,14551,14552,14553,24009,14482,12985,15520,12982,14557,14321,28029,19710,28898,29477,29478,28647,24719,26746,25819,28619,18972,18978,19000,28498,17441,28943,21992,21521,29353,18392,21182,21443,21444,21445,26835,21224,21218,14259,14261,14262,14263,14264,16245,28890,16238,16239,17602,17603,17604,29435,18396,14528,14495,18914,29450,19686,21271,21298,21421,24261,29149,24766,24774,24969,21293,21292,21325,28637,18372,21236,21237,21241,21242,21243,21245,21246,21253,21254,21255,21257,21260,21264,21265,21267,21281,21301,21311,21423,21425,22941,22942,23072,23287,23289,23292,23300,23355,23679,24280,24281,29075,29741,29742,24966,29864,23185,13340,23491,13473,13474,13511,13515,19087,22975,23536,22795,17746,17747,17748,17751,17752,17755,17759,21096,25382,14417,14427,21381,19173,22271,21379,19112,20443,21834,20332,28492,20444,18096,16699,16534,27994,27578,15943,18809,20913,27325,17730,19557,23583,20500,21899,23862,23875,23863,23876,23953,23877,23878,23582,20759,20774,20694,20756,28018,23851,23884,23766,16580,23521,19110,16264,19090,23883,23880,17872,19539,29845,16272,16373,16388,16389,16399,16401,16403,16499,16508,16510,16516,16588,16589,16606,16660,16688,16696,16809,19739,19740,19741,19760,16652,16518,16623,12299,16310,12300,14743,17857,16577,16672,21505,21504,20512,15741,15742,20474,15740,14918,24265,13411,13413,13437,12305,28639,16792,16794,16796,16806,16862,16912,18113,19732,19733,20038,19737,16907,16892,16900,20040,16870,16843,16844,28876,16777,16880,16774,16781,16605,13368,14194,26333,16732,16734,13675,13984,14042,14055,17171,17177,17178,20079,13965,13968,13980,13981,13982,13983,13987,13988,13990,13991,13992,13993,13994,13995,14026,14027,14029,14056,15191,15231,13986,19109,19115,16727,27717,13800,12328,14198,14195,21673,26299,26300,27418,17089,19426,13048,19498,20960,21534,23105,19701,18772,18771,18476,18477,19307,21526,19924,22207,22227,22230,22231,22255,22257,22258,22259,22260,22263,28486,19893,19911,19915,19921,19922,19953,19957,19958,19959,19960,19961,20255,20289,22042,22043,22049,22054,22057,22062,22072,22073,22075,22078,22079,22081,22083,22084,22086,22089,22090,22091,22100,22103,22104,22109,22113,22117,22123,22125,22127,22132,22133,22135,22138,22141,22143,22147,22153,22155,22156,22157,22160,22161,22171,22174,22176,22178,22181,22182,22185,22188,22197,22203,22206,22220,22248,22250,22251,22252,22254,28503,29297,29493,29494,19949,28484,22219,21370,28525,20788,23956,23234,16939,16942,17006,17014,17015,17081,16952,17050,16919,17026,17594,21937,23859,13742,13906,15177,15175,15291,13916,13922,15173,28378,21556,21557,19905,25835,26853,26854,26846,12347,12348,17553,16678,18066,14573,14577,14585,14594,15428,17599,16306,24658,23033,23073,23346,24764,24864,18800,16798,17873,18858,18853,18887,21753,28180,18856,24043,14180,28308,14630,17096,17097,17099,19917,22470,21671,13419,14455,21607,21608,26346,26347,14341,13050,13166,13168,12770,12767,17521,27979,12797,12798,12810,12816,12837,12855,12884,12885,12886,12887,12888,12889,12890,12892,12913,12946,14823,14842,15009,15475,15477,15478,15479,15480,15482,15484,15491,15492,12808,12809,12811,15034,12891,12990,12800,12812,12815,12801,12802,27127,12805,12806,12804,26680,17103,17518,17635,13389,13391,13395,13396,12216,12540,15266,19676,22715,23154,21761,19519,22656,23097,23099,23103,23153,13584,12389,14942,14740,12327,14738,14739,14737,14940,14941,12377,12558,18974,12424,17245,17247,17260,17267,17271,17333,17367,17375,18280,18489,18510,18528,18538,18539,18541,18544,18547,18549,18550,18551,18552,18557,18564,18610,18655,18661,18677,18681,18696,19268,19296,19301,19305,19306,19361,19362,21684,21686,21688,21691,23919,14625,19091,19092,14645,12333,28908,21680,23430,12720,18249,19433,19478,16236,16237,17526,29480,21677,18349,13008,27196,27200,27621,29448,22249,13536,13537,19894,22903,23235,23236,23238,23240,23429,21734,18426,16703,16704,21584,21585,17154,17158,17172,17194,17197,17230,22521,29359,17401,21067,21074,18802,18804,18805,13036,28049,28050,18200,18190,13066,19471,19441,19444,15662,20158,27496,27506,27523,27524,27542,27558,27639,27644,27662,27666,28736,20015,20155,20010,28910,27432,27427,13996,27382,27362,27377,27564,27637,27596,27559,27544,27589,27625,27476,27622,27532,27555,27590,27495,28737,27479,27554,27710,27566,27594,27539,27550,27677,27488,27521,27529,27592,27617,27605,27442,27573,27538,27628,27546,27491,27429,27470,12598,27357,27354,27457,27462,28909,27460,27374,27363,27376,27458,27572,20012,27575,27446,27534,28002,27465,27453,27440,18774,20871,24148,23518,21739,21774,21782,21785,21793,18760,21772,21821,21822,18160,19095,18162,25515,21811,22003,21884,21805,13555,13556,13558,13559,13562,13563,13565,13566,13568,13569,13570,13571,13572,13573,13574,13575,13579,13582,13586,13590,13593,13612,13621,13626,13633,13634,13636,13638,13661,13662,13668,13679,13681,13700,13706,13727,13754,13759,13764,13765,13768,13769,13770,13771,13773,13774,13775,13776,13779,13802,15207,15215,15221,15239,21599,21603,21611,21612,21638,13538,16232,17436,17437,16230,13446,22296,30069,23492,24856,24857,24858,18109,21921,21926,28513,28940,28976,21912,20291,16506,14604,14605,14609,14612,14617,14618,14483,17384,20220,19231,16333,15071,16081,16086,16082,16090,16093,16084,16092,16091,16085,16089,16088,16083,21944,19482,21942,13269,27402,12410,14943,12339,12345,17449,12342,12343,12364,12252,15522,12411,12464,14701,26323,12373,14736,15260,12256,12257,12240,12241,25608,16509,25146,13500,15153,13576,13591,15385,14092,26349,12287,14458,21829,14287,27567,14286,12212,22290,23865,23855,23879,23882,16512,16513,20324,20327,21849,21978,21979,21982,22007,28442,30077,28434,21990,21994,20898,28469,21998,21999,28423,22010,22002,20269,20447,18963,29226,22033,22034,20885,21839,21840,22330,22437,22324,13948,13949,13950,13955,15549,13951,13939,27348,27349,27350,22339,22326,22351,22353,22355,22358,22359,22360,22363,24042,15268,22387,22388,22389,22385,20861,22369,22383,22368,22378,22379,22381,22380,22029,21116,28286,19226,21900,22414,22411,19283,23731,23743,15865,15870,27868,27869,27876,27885,27886,27887,27888,27889,27890,27895,27900,27923,22757,22402,22953,18321,23674,17396,22386,22408,14694,19194,17402,17403,16662,23889,23890,23975,23976,17465,17475,26992,28175,28181,28184,28198,22426,16180,15564,15568,19093,12378,23866,23885,25780,24926,27037,23433,15439,12384,14807,28813,23472,23388,27405,28313,24373,21460,23881,23886,17840,17841,17849,17850,22797,22799,28965,19920,15166,13741,13966,21583,21586,13819,13418,12993,23037,23038,24574,23473,22681,20832,22680,22819,22654,23052,23020,23232,13028,13031,15543,23461,14316,22984,14639,14610,27204,19734,25948,23643,17056,17060,17063,17064,17084,17509,17028,17062,24866,23322,19252,23434,23427,23050,27553,23504,29939,23769,25391,14591,16820,16824,29372,16826,14519,14578,14590,14650,14663,17051,17597,23525,14357,19778,19711,16611,16581,19023,18892,12273,26844,19107,16355,28673,25537,12846,12858,12868,12869,12880,12903,12904,28544,12827,12986,12759,26825,12425,20244,18535,18540,13244,13245,13268,13271,13291,15010,20607,13249,15503,13250,15502,23574,16174,28588,13232,13234,13235,13236,13237,13238,13239,13240,13314,13372,13373,28425,28413,18218,27992,16303,16750,20034,13253,17409,17419,17423,17639,17412,23556,23558,15906,13085,16599,16575,23544,23576,23577,23586,23589,23591,23599,23632,23633,23635,29257,18511,18512,25399,19081,20723,12967,12754,12882,12883,12350,12449,23323,28536,13449,13462,25564,29364,26735,26664,14488,23593,27790,20513,14676,28314,28320,28344,26343,22347,22344,22348,24381,20938,14072,14081,14087,15565,26836,15159,13969,13989,18130,12607,13037,13858,14021,12981,12983,18585,19545,23134,25600,14069,16748,23091,23740,23908,18920,23856,22332,22372,24005,24007,24548,23572,23588,23595,23600,23631,27906,23854,24638,23868,24037,25490,25532,27218,25397,28957,13475,13492,13807,15332,17332,18346,18434,18466,18488,18520,18530,18542,18553,18574,18578,18579,18584,18603,18622,18623,18624,18626,18627,18628,18640,18641,18665,18668,18670,18678,18679,19204,19215,19216,19267,19314,19315,19316,19324,19372,19619,19652,19664,20206,21463,23187,18437,28964,21043,27723,28963,23573,23579,28955,17239,17253,17322,17323,18468,18470,18480,18481,18484,18485,18490,18513,18527,18529,18532,18534,18559,18561,18588,18589,18590,18592,18593,18596,18615,18634,18635,18636,18642,18643,18644,18645,18650,18656,18657,18660,18663,18666,18673,18674,18686,18687,18690,19209,19212,19213,19254,19269,19304,19317,19319,19320,19357,19569,19611,20214,19300,27744,19228,16248,18052,24039,24022,24023,24025,23453,15423,14560,17196,20271,21059,27693,27697,13243,12719,12725,16319,16327,16642,16697,21752,21764,13384,13385,17928,15180,14572,15418,27737,24403,24434,24470,24482,24579,24608,24612,24618,24630,24633,24634,24663,24982,29679,27295,23902,14715,27825,24308,24313,24314,24316,24318,24352,24356,24387,24388,24975,25027,24408,24553,24598,16087,20353,19726,18991,24093,26679,24139,12771,14992,14991,12768,12769,12772,13062,12963,12964,18727,20482,18450,14633,14638,29832,12539,14602,24017,14464,16906,17427,17433,21360,19465,12984,16758,16654,17115,24680,26832,19912,13907,13923,13932,13880,15169,15170,13365,20556,13386,13076,13844,13920,13933,26321,13789,22288,16917,16933,16966,17548,17554,17011,15569,24737,24715,20018,27741,27747,27738,27788,17765,17766,24702,24703,14816,24637,23357,13224,13186,13187,13188,13189,13190,13191,13192,13193,13194,13196,13197,15508,16211,28906,27756,22295,17155,24889,24922,14660,14670,14672,16096,25912,20757,28032,21330,21376,19214,22702,27724,27819,17494,17499,17504,17542,17555,17565,17569,17651,19919,28946,17559,18824,19102,29861,26327,14307,14318,14306,14313,25828,22349,23175,23181,24729,23379,20489,26278,18807,26845,17061,22535,24755,28706,28803,14668,22810,23044,22629,22744,22889,23179,23606,26915,24835,24837,18419,13387,15174,15436,14641,21375,15073,21377,15269,12346,12259,12260,27083,12433,20762,27817,13320,28709,24325,18881,14876,13258,14265,16020,20717,22247,14277,24823,24872,24915,24917,17778,12447,28968,19130,25492,14502,13472,13290,15317,15318,15319,13478,18746,23775,28303,17470,15410,26924,28040,20692,28390,15600,15597,15583,15592,15566,15608,15956,15607,15609,15601,15963,15599,15933,15780,25039,15762,15763,15764,15757,15746,15747,15754,15611,15795,15892,15897,15649,15648,15575,15702,15728,15730,20217,25080,25081,25036,15792,15817,15830,15652,15586,15570,15655,15909,15632,15644,25093,15628,15643,15921,19782,15690,25090,15666,15668,15669,20203,15660,15665,15670,15673,15682,15696,15701,15704,15706,15716,15717,15722,15726,20202,25084,25085,25095,25096,25127,25128,25132,15614,25037,15937,15776,15636,15727,15920,15858,15855,15856,15859,15860,15861,25048,25050,25055,15786,25079,15928,25083,15946,15881,15596,15932,15512,16805,16882,16886,24888,24946,24947,24890,24948,18860,18761,21365,14921,24918,13412,13415,27686,27692,22391,22991,22337,14428,14439,19399,26957,20475,18819,21699,21700,15841,28569,13057,13042,27135,13041,12570,12282,12476,12571,12573,12621,12625,12541,12542,12479,14191,24592,17819,16940,18962,28731,18867,19164,18866,19121,15680,16007,27483,27237,12355,14713,17450,17451,13433,26334,24523,25250,25888,25167,25172,25182,21575,25160,25890,25862,27656,25229,25232,24493,25207,25263,25261,25285,25288,25318,25268,25269,25315,25480,25481,25190,25194,25228,25230,25298,25294,25339,25340,25342,25343,25344,25347,25348,24849,17456,12554,12555,12480,12334,12756,21695,18287,18292,28867,25329,28301,27090,12359,25327,21909,21910,14649,25325,27535,14452,14448,28517,28518,28977,17240,17241,17287,17291,18214,18281,18379,18381,18382,18383,18384,18415,18416,19210,19211,19230,19237,19292,19293,19333,19347,19385,19497,19507,19512,19518,19548,19551,19657,22554,22714,22740,23034,23167,23170,23173,23426,29343,23566,15348,12962,12966,12968,13587,25385,24820,18105,18298,19409,28205,19435,19436,19437,19439,19440,19446,25376,13275,29318,29389,23768,20837,27033,17616,24032,24705,20798,18269,18272,18277,18370,23456,19365,19367,25496,25408,25425,25426,25427,25440,25442,25443,25445,25447,25448,17794,18836,18243,18212,25487,13006,13034,13035,13047,13116,13119,13167,12379,13567,24867,18707,18816,28969,29267,20813,28950,14010,27820,27754,27752,27749,14319,14329,14333,14338,14353,14354,15297,14022,14002,14003,13369,13374,13375,15315,14891,13613,13614,16665,17722,12553,12566,12594,12596,12604,12605,12618,12655,12662,12697,12911,12927,13056,14777,14778,14975,14976,14977,14978,14979,14980,14982,14983,27150,27155,12572,15023,12528,12529,12664,12656,12657,14804,12663,12610,13025,13064,13198,13199,13200,14273,12988,12478,25384,14856,27516,27696,27510,27508,27694,15313,19759,26682,19728,20950,18145,16657,16655,20712,19175,18708,13118,18153,18148,18143,18142,18141,18172,18183,18136,19033,19067,19068,19160,19156,19179,19034,14330,14418,14421,13557,23531,25516,16690,17471,16671,16667,16675,16676,16680,16683,16695,22474,16742,20374,27712,24087,25517,22694,22697,16374,16428,12385,28339,16437,16511,16545,16810,24244,24246,24968,24252,26649,26654,26659,16402,22781,23040,23225,23393,23395,23391,12223,12227,12228,12232,12239,12242,12311,12370,14709,14931,14933,15262,12214,12215,12219,12220,19149,19165,18909,18997,18981,18982,29229,18996,18993,13273,29141,19485,19549,23498,23503,26914,22801,22807,24282,25565,25568,25569,20917,17161,17601,17643,22502,29481,29483,17618,12329,23887,19394,16951,17726,17731,17732,15505,25554,25555,25556,25612,29715,25598,25601,16242,25591,14476,25771,16125,15060,16134,25643,28880,29403,25645,25653,29294,29404,25684,29290,22561,25670,25672,29457,29475,29254,16138,25628,25702,22563,22567,25698,29035,25659,25705,25726,25725,28874,28542,25581,25745,25749,28722,25712,28873,22568,25781,25783,22565,29237,25714,25695,25769,29292,16142,25727,29238,29289,25676,25678,29240,25655,25649,25648,17654,14018,15027,17663,16918,16984,17019,17053,17054,17743,23051,21577,20896,13820,13843,13845,13846,13547,13469,14169,22792,14567,16219,16304,25905,25911,19928,22294,22299,20238,13588,25398,24524,17667,17669,17671,16297,16311,16324,16325,16383,16384,16386,16387,16390,16404,16421,16452,16471,16474,16490,16492,16493,16497,16539,16540,16749,29361,29513,16409,16526,16298,29854,20334,26648,26650,29791,29792,29793,13049,12726,14386,13477,25955,26396,26006,25994,26247,29670,25965,25991,26277,26632,25987,26036,26038,26040,26043,29657,18878,26033,26230,26089,26276,25924,26019,26021,26025,26261,26457,26473,26478,26503,26243,26248,26417,29640,20847,26002,29666,26103,26229,29672,26066,26056,26058,25970,26123,26357,26361,26391,26392,29668,26130,26258,26156,26171,26475,26048,26050,26053,26145,26149,26231,26241,26271,26605,26237,26061,26245,26455,25982,25984,26304,13615,26336,29824,14480,16710,26297,26298,14128,14331,18205,21035,21034,18242,18290,29239,19096,29160,18885,18889,19758,21108,18364,24031,17696,17697,17705,17707,17720,26847,19525,26726,20488,26717,26666,15983,24652,22366,14459,14457,21317,24533,20972,23501,18334,18445,21820,23378,26964,21919,25074,14070,26737,26749,26750,26751,26769,26779,14082,14086,26971,20486,25909,25910,28967,24871,25431,23853,18787,14810,22021,22023,22265,22024,20479,20480,14564,17007,28131,28052,28122,26958,28430,26981,28447,26953,28944,14647,26817,13397,14066,14068,17236,17219,21530,18270,18276,17198,17207,17209,17213,17214,17215,17216,17217,17218,17220,17223,17224,17231,17232,17233,17234,18268,18271,18273,19221,19222,19227,17200,17201,17202,17235,17261,18586,18684,18685,19242,17473,17474,17477,26990,26994,27004,27030,20849,19116,13581,12965,20727,18317,19452,19683,22547,22684,22774,23069,23431,23448,23449,23451,23452,23280,21205,16842,27022,13780,26813,27015,21471,26342,19428,14289,19395,23419,17788,17827,17829,17898,17938,17940,17963,17988,17989,28870,29431,29476,22566,27095,12766,17865,17863,12285,12286,13476,13890,13905,13918,13921,15171,29479,17070,17074,20755,20726,19908,22256,19488,13578,13580,20245,27072,19390,19547,19684,19691,27055,22310,22311,12773,12777,15144,14872,12992,13106,13122,13121,25478,21378,25392,27205,21723,18812,27190,15438,27742,18002,18003,17978,17998,18004,18875,18877,18872,20843,18865,27302,24312,19163,18883,18891,18864,18882,24826,24956,24957,27031,27342,17975,17976,18001,21063,22261,19638,22706,22786,22811,20134,28601,27394,23693,27293,27247,27249,27252,27281,27393,27316,27329,14474,13917,20870,20657,20666,20669,20671,20715,20716,20731,20687,20686,20655,20663,20721,20677,20681,20656,29245,20735,20676,20752,20650,20739,29345,20728,27759,20514,26083,20706,27832,29398,27781,27833,28001,20318,20273,26322,22102,27340,16832,23587,27862,27864,27865,27912,29121,29611,13867,13870,20299,27980,23432,27163,22703,22708,23019,23263,23269,23271,23273,23435,19678,24722,22289,18756,27973,20434,24807,16859,16860,16861,17941,28012,28026,28028,18217,18228,19667,19668,19674,21468,22737,22789,22816,22891,23035,23352,23353,23405,23438,23439,23441,23443,23445,23646,23036,23016,23094,29527,17808,26350,13797,13805,16656,18730,24815,13561,28036,28060,13038,13795,13815,13822,13840,13848,13849,13851,15376,15377,15378,15380,15381,21666,14269,28514,20719,16240,16932,16960,16980,17591,18721,18155,18156,29813,28834,28075,28077,28078,28079,28082,28085,28086,28089,28094,28097,28098,28099,28100,28113,28115,28116,28117,28118,28121,28124,28125,28126,28111,28114,28127,28130,28120,28148,28149,28151,28152,28155,28156,28157,28159,28160,28169,28331,28105,20571,20569,28564,20580,20575,17803,30051,17868,16659,17119,21518,18055,18056,18057,18053,18054,24270,28192,28197,29004,29172,19543,22783,18068,18065,18071,19677,14689,14673,25473,20806,23428,29196,18342,19071,23436,19218,28211,27571,27568,23319,28213,28230,28237,28245,28246,28247,28248,28249,28252,28340,28343,28347,28350,28358,28766,28774,28817,19895,28334,28282,28233,28239,28240,28272,28273,28281,28309,28315,28785,28780,28226,15312,15316,14320,13560,13564,13669,13778,15227,21590,21591,21596,14658,14178,26833,28396,16241,25538,26748,28363,28365,28366,28368,28401,28362,23262,23268,22993,19672,13267,17112,20276,26935,23860,23864,23867,23858,18084,19926,16361,16345,20033,16347,22689,18090,18087,18089,22731,29899,22954,24371,15184,13739,13456,14103,14120,14121,14126,14135,14153,14154,14171,15289,14118,14104,14093,14125,14155,14156,14157,14109,14110,14168,21479,21497,25432,21047,22278,20437,27818,18107,21227,18798,16664,18969,18970,19956,19167,19106,19108,21721,21722,27582,24812,22269,19105,25106,22107,22114,29551,22301,22302,22243,28734,26822,25520,21390,21391,18968,24138,25375,22105,19176,27721,28762,15930,22210,22300,14172,26925,21029,21541,17915,12830,12866,12901,12943,14843,14844,15008,27129,12831,12942,12902,13024,14857,12976,12617,13448,13465,17168,28707,24445,29844,23945,28216,24360,20784,16069,28421,16050,16059,28415,16039,16054,16036,16071,16044,16055,28420,16073,16047,16074,16076,16038,16066,28422,16068,19933,27809,27773,20714,21989,22238,21987,20647,21984,22245,20782,20780,27733,24627,28986,20819,22064,21985,12248,21804,20359,12434,13600,16098,16095,20377,20378,20428,29144,20413,20414,20420,20421,20423,20429,20430,20452,20453,20454,20455,20456,20457,20356,18902,12559,29331,12633,12650,14962,14772,21567,23756,16479,16480,24723,24739,18233,20543,20544,13292,13309,21946,14007,20148,21335,13801,13998,16715,16716,21629,16767,14339,14340,13628,13751,27541,20559,20560,20593,20594,20596,20598,20605,20621,20525,16287,20642,20783,29264,23054,24819,24879,20767,13493,26987,20842,19243,19244,24763,14408,14410,14360,14326,14355,24905,12970,14786,14948,19952,14724,14946,28187,20845,17389,24400,18127,20749,20890,20899,20275,24657,25599,14173,20916,21816,20904,16113,16107,20928,20745,20931,16102,20746,20541,16106,19500,26702,21095,13480,21628,16865,12678,15400,12916,25545,16903,13294,13297,13300,13322,14440,16222,19774,12303,20946,12301,20943,20941,14189,14252,14213,14214,14217,14220,14234,14235,14237,16552,16560,23113,18355,19522,20963,22670,23053,18365,28764,17199,17176,13817,13818,13810,13882,13893,15345,14303,14511,24011,21114,21123,20357,20388,14250,24645,24283,24916,26307,20794,27338,21447,29152,13643,15033,14529,14535,14545,14494,23610,14561,25540,25536,28872,29033,24779,24782,19007,19008,19150,28624,28729,19161,19142,28556,18977,22272,29030,20364,28777,21185,21187,21234,28510,21231,16893,28693,21213,22956,20698,18755,16780,16785,21104,18394,18395,24730,15540,24461,21247,24271,24238,24257,24295,24386,24773,24778,24129,24290,16257,16259,18094,18095,24274,18911,21252,21256,21269,21274,21275,21278,21279,21414,23284,23293,23294,23296,23298,23299,24227,24273,18832,21756,20801,13479,13505,13512,14654,26932,17744,17745,20260,20306,28923,20237,20301,21331,21332,21333,21346,29195,29492,30089,20236,14377,14422,21439,24415,21334,18998,24670,21918,21934,17462,18770,26985,19078,25805,20438,22093,19098,20400,20773,20494,20496,23870,23873,23874,23627,23581,24746,23871,27071,29201,20697,25331,16263,28394,28551,20781,16413,16544,16640,16661,19745,19753,29174,15748,20502,18773,18417,13427,16786,16793,16802,16828,16863,16864,16899,19721,19729,19730,19735,28555,29153,24647,24646,16823,16872,16874,16887,16894,16895,16896,16897,18119,18767,20037,20298,16867,16869,16871,27982,16804,14040,13301,14041,16730,16731,13999,14019,14025,14036,14038,15190,15545,16686,16687,16722,16723,16728,25371,16741,13944,14058,13485,19430,13044,13221,15020,13123,13067,15019,21490,19779,24078,23102,21329,17083,19585,19615,22228,22262,22229,28485,20226,22080,22085,22094,22095,22101,22122,22128,22129,22131,22139,22145,22146,22148,22151,22154,22179,22184,22198,28978,20839,20293,20263,21369,28526,29495,20232,29308,20302,28529,21520,14444,16929,16930,16945,16964,16973,16974,17057,17072,17073,17510,29386,22510,20821,21514,20375,17016,29433,21510,20370,21512,21566,28034,16217,28380,21320,21474,19661,23248,28801,14361,14401,12281,14887,24560,21539,24275,24059,17855,25001,17593,29210,22633,24863,29096,30076,28850,13936,19834,17258,20212,24068,25389,25542,29023,21819,28677,27025,21707,17092,24057,21705,13455,27494,27557,12602,12709,21703,23124,12314,12738,12741,12948,12959,12960,14822,14845,15488,29304,12957,15065,28268,28818,28997,17118,28594,12217,12218,14781,14963,18311,13481,22777,23006,13296,14944,14945,17358,17360,17362,17370,17378,17380,18478,18482,18483,18498,18504,18505,18506,18514,18531,18554,18558,18597,18598,18616,18633,19203,19208,19232,19261,19297,19325,19609,19610,19612,19620,21709,18208,18385,18387,18545,14742,23763,19151,22939,22940,20816,19420,17133,17136,19708,12724,21710,21711,12722,12958,15497,28838,21947,14801,20243,20242,17142,21738,23230,23239,15815,19979,22241,20449,19765,21732,28988,21715,21716,21717,20510,13879,28784,29585,29586,17145,17148,17160,17163,17195,17534,23535,26295,16620,21812,22728,20483,19376,29588,12412,20011,20016,27513,27531,27543,27545,27560,27675,28735,20014,20019,29185,27464,27676,27473,28739,27452,27475,27471,28754,27424,27459,27433,27468,27386,28920,27368,27472,13598,24606,23748,24090,24092,24088,24098,21741,21786,18759,18763,20760,17306,28385,24537,21810,28772,21802,21806,21807,28667,21803,28665,13595,13603,13622,13623,13624,13629,13646,13663,13673,13703,13708,13722,13723,13728,13729,13750,13777,15053,15219,15233,21600,14913,13693,17486,17564,17566,17527,17647,19793,12317,13665,13666,24806,17775,17831,21860,26828,21859,17949,20247,21832,21836,21931,29269,28461,26722,12897,12950,21920,26980,27010,28280,18210,19641,14616,17302,18234,19586,19660,19695,17871,16094,21945,21953,21948,21951,21955,21954,21952,21949,21950,22415,16252,17023,12349,14750,12354,12336,12344,14744,12356,15460,14666,19950,13602,20919,14296,14297,20765,20303,23869,29090,28209,24814,22027,28534,20312,21846,21997,22063,28427,29064,29065,29263,29380,20170,28440,29190,28463,20322,29496,21995,21850,22012,21852,21842,29376,28473,21980,20887,28438,28437,22279,22297,28506,22039,22323,20407,22436,22350,13958,13957,13952,13954,29079,12249,17448,22392,29002,24735,19382,25914,28352,28970,20251,19224,22413,23244,23739,15831,15842,15844,15866,15867,15868,15869,15877,15878,15879,15880,15882,27867,27896,27905,27913,27916,27921,27928,27948,27855,27903,23277,21472,20804,18441,18330,23718,23722,21531,23891,24218,30114,17478,28202,28832,22429,22070,12843,12844,28539,24949,22425,27042,12677,23127,22423,19572,19588,18261,19580,16705,17851,23467,28354,28533,21062,27576,14012,22820,23117,23261,22955,23083,25514,23437,19591,28496,20507,20508,23375,25917,28973,14349,20967,28684,25580,17032,24839,23455,24542,22794,20498,23509,23510,19649,23623,23530,23533,25428,17792,20533,25543,14598,21993,18847,28668,14323,16243,19914,17459,23725,25913,23729,13046,12423,24335,24349,24351,24361,24385,24390,24391,24392,24394,29778,24688,16619,12543,12680,12261,22317,19898,19967,19975,19992,22316,12833,14830,18912,18913,17523,16349,20612,14880,23567,23568,23569,24062,24066,24069,18988,19491,16621,27708,23564,17706,17637,17640,18008,18116,16719,16720,17417,29098,23578,23580,24152,29093,18850,12914,12915,12924,12925,12444,15495,16612,27689,20648,28292,23608,23546,20632,23603,20923,20246,28341,22345,21974,23969,15324,20701,23601,20761,19761,14073,14088,14089,22264,20770,28306,28552,14051,14014,15161,15162,14011,14917,30035,15147,13997,19339,23130,28962,28971,23965,20704,20644,26693,16067,24291,23944,23872,23505,23506,23570,27891,27074,25903,27854,27977,28730,12951,29109,17264,17331,17345,17346,17347,18227,18436,18492,18543,18569,18570,18572,18573,18658,19257,19330,19562,19584,19646,20211,24765,18337,20205,29352,28446,15100,26848,28959,22569,14356,19459,28966,18305,18507,18508,18576,18630,18691,18692,18697,19206,19327,19359,19556,19563,19568,19581,19614,19621,29354,18580,18051,28635,13027,28679,24028,25806,16255,17910,21057,21061,14378,12727,12368,12718,12710,12713,12312,16772,21749,21760,13878,23367,24416,24543,24544,24573,24587,24601,24602,24610,24614,24615,24621,24623,24624,24661,29681,14469,24301,24317,24319,24340,24342,24344,24345,24346,24348,24363,24372,23760,29104,23747,24681,22314,18859,12971,12922,24048,25908,24861,24639,15435,28656,24684,12316,17429,17430,17434,17644,17646,27298,17022,22038,14188,15379,13883,14652,16818,16988,17000,18010,17001,17002,17003,22036,16260,24733,28030,27769,28753,24712,24743,12752,23118,29280,20720,27527,22961,24853,21758,20758,16969,15366,24893,24260,17055,17563,18893,17458,23684,19699,26887,19143,14305,14310,14311,25430,27456,23370,24728,20740,20743,16856,18216,18328,24788,24790,24792,27201,24799,18350,20227,21356,14640,27549,24828,25823,13298,13429,13430,24827,19154,27294,22958,24822,27641,18122,21676,21321,24330,24593,13781,21745,23750,23757,23758,23759,23761,23745,17650,18985,19373,15465,20277,28389,15772,16012,15618,15964,15965,15966,15967,15968,15969,15970,15972,15973,15974,15975,15977,15982,15984,15987,15991,15992,15994,15995,15996,16002,16003,15907,15613,15773,15774,15783,15744,25034,15749,15765,15805,15806,15807,15823,23160,25130,15899,19697,15624,15630,15735,15698,15712,15734,15736,25086,15911,15799,15647,15620,15893,15616,15770,15603,15641,15650,16030,15816,16018,25094,15671,15688,15689,15694,15700,15705,15711,25088,25089,15637,25035,15750,25097,15687,16032,15926,15784,15789,15985,16017,15873,15874,15875,15846,15767,15769,25030,27176,16594,16885,24936,27251,18123,29275,29271,13435,24085,24086,20497,14425,14429,14432,14435,15334,15335,19423,15839,15840,15834,15835,15836,15838,15833,15832,12737,12574,12996,14787,14860,14792,13083,14800,13865,14298,23528,25031,24013,24577,17786,28056,20218,20219,19698,20718,23753,23755,19685,23255,28696,24794,13467,13428,24499,24495,21324,17461,14758,12923,12921,18293,18295,19506,25330,25590,25363,20331,27851,14443,14446,14447,17256,17285,17286,17393,18219,18232,18245,18251,18253,18378,18380,18388,18410,18587,19280,19295,19494,19509,19598,28604,28611,28614,18854,19599,12392,25390,20954,19513,19514,24762,27993,15697,23409,25105,27799,13343,24326,27793,29209,20772,17283,19425,25370,27296,16848,17607,28638,23967,19377,20532,18516,23611,19635,18278,19265,18267,18275,18264,18265,24545,20477,17205,27958,25402,25405,25411,29714,25438,25444,25446,25449,25451,25452,25453,25454,25455,28828,28831,18344,19647,18211,19639,19643,25486,17522,20515,14859,15063,13169,13219,15018,15533,13010,13011,13012,13013,13014,13015,13016,13018,13020,13069,13113,25484,25485,18835,25476,28953,27751,27821,14347,14389,14409,13513,27540,13348,12668,12669,12670,12679,12681,15016,15249,27136,27156,27168,15096,12551,14988,13425,13426,13213,13214,13215,13216,13217,13218,13222,13223,15133,12567,20279,25379,25387,25396,24417,25475,14472,20633,18343,25822,26931,17961,18929,18149,18146,18715,19127,19146,19147,29171,14075,23532,14664,26694,24137,20345,19489,16673,16738,25716,16666,18404,28922,23010,20688,27326,23746,23751,23752,23754,23762,12467,24243,24240,24245,20699,18757,26639,26640,26651,26983,25512,25595,28399,19145,23390,23398,27124,12221,12224,12233,12236,14708,19138,25500,18980,19124,19159,19141,19125,19133,19126,19058,19153,24895,13482,22741,25494,23642,25539,25530,22808,22809,21322,17228,16305,24122,24124,24132,24133,24262,28699,23749,23764,17479,22244,17619,17620,20267,17891,17627,25596,25560,25611,25597,25593,25587,20376,17912,17913,25810,28718,25646,25830,25669,25671,25770,25640,25679,25683,28741,25697,25699,16153,25639,25707,28721,25582,25777,25701,25694,25747,25748,29388,25768,25664,25729,28897,28899,29456,25792,23640,25798,19460,19461,17558,17656,17657,12352,28376,24299,16920,16934,16958,16959,16962,16995,16997,18118,16949,12382,24056,20891,21847,28431,20545,20305,14106,24115,24116,24117,25904,25918,28494,28490,12929,18837,17675,22342,26645,26646,14892,12556,21592,13812,25956,25957,25958,25960,26232,26234,26259,26263,26264,29634,26353,25997,26251,26281,26282,25983,26285,26023,26024,26265,26104,26105,14919,26098,26099,26279,26028,26076,26253,26262,29009,29643,29645,29649,29662,26094,26095,26096,26097,26101,26102,26106,26107,26250,29661,26121,26280,26283,26290,26256,26167,26172,26190,26191,26212,26260,29204,26257,26143,26144,26177,26179,26183,26249,26266,26284,26286,29175,26084,26085,26108,26109,25926,25927,26205,26309,28653,25491,26302,26303,14479,20866,25920,19348,20613,18312,23174,17243,23041,23042,26695,26293,18336,22461,20766,24030,25946,24625,24631,22336,14456,24626,15949,21102,26934,26933,26938,19552,26947,26950,26927,24727,21316,26688,26740,26756,26768,26771,26772,26781,26782,26795,26802,26803,26804,28903,27761,20225,24959,26961,14759,27024,24740,20481,27835,22427,17008,29312,16548,19906,19907,22434,22435,16769,14653,22775,14059,17385,17354,17292,17242,17344,19555,17390,17203,17204,17206,17221,17208,17210,17211,17212,17222,17225,17226,17227,17288,17480,24362,27000,13295,13299,24424,28650,22416,18391,19413,19422,16841,21766,21767,27019,17238,13902,13903,13379,27014,13086,24398,27065,28351,21315,19400,18823,17950,29482,17972,12351,16221,23741,28869,17031,17071,17505,17511,18114,19923,28634,30036,20791,28644,27060,13068,20286,17960,13522,19412,19414,19503,19533,25335,25338,22308,30104,16254,12750,12920,13017,13019,12917,12918,13009,28804,27597,24110,17757,24297,27013,27203,27184,27186,27191,27193,27194,27195,27197,27198,27199,27258,21854,24571,27036,27299,28680,27266,14423,27220,27211,27212,27214,29603,18424,18421,28833,27245,27253,27269,27397,27400,27289,27320,27250,27317,27410,27271,27314,27392,27263,27327,23515,14665,24569,17588,27351,20660,20664,20670,20732,20789,28919,20703,20654,20702,20674,20729,20673,20737,20637,20675,20680,20769,20025,20787,20705,27845,20007,27727,26996,25919,22292,28651,20850,25463,27853,27863,27866,27878,27952,27953,29133,29612,29613,29614,29615,29616,27213,26683,28010,28827,18397,14467,22275,18515,24483,12742,15106,28019,28020,28021,14949,28027,28809,28024,18323,19427,19429,19666,22541,22704,22773,22962,23039,19846,12557,24865,13597,13956,28039,28057,28061,15787,24016,13809,27631,23957,16916,16935,16936,16937,16971,17052,16963,19987,28067,17574,18178,18701,18168,29807,29951,29952,28144,17882,26928,28186,19537,19538,14679,14690,14691,14692,15449,15451,25468,19558,19248,17281,17314,19650,19375,19656,28688,23318,28214,28220,28222,28223,28251,28257,28262,28264,28269,28276,28278,28284,28288,28290,28297,28307,28342,28403,28786,28787,28411,28228,28229,28261,28227,28253,28256,28259,28287,28291,28326,28279,20835,13596,13664,14299,13601,13857,25529,24397,24468,24501,24555,24556,24563,24572,24581,24981,24469,28348,28374,23165,23166,23188,23190,24570,20347,21702,14770,16343,18459,19559,24710,24868,14105,15179,13434,14122,14124,14119,14123,27632,16220,25807,20957,18831,16653,16658,16853,19186,17114,17516,21759,28678,27609,27674,16770,19771,26834,20270,20961,25518,25900,25899,26923,26968,26814,16639,21210,20970,26941,12778,12969,12832,14818,13866,13901,20433,23454,19770,23526,24046,24109,23612,19659,16062,16034,16046,16064,16049,16057,16061,16048,16051,16043,16052,16053,16045,16037,16080,28417,15105,16042,28416,16070,16035,16079,16078,16072,16363,22065,19731,21625,29231,28941,22672,27768,23955,22069,20294,24288,19144,18784,20362,16100,27838,22965,29011,29145,29146,20386,20405,20408,20411,20415,20409,20395,21371,18782,19618,20550,23249,14966,13524,22239,24877,16400,16487,16744,18059,13312,14004,14044,21434,19738,13545,13977,20366,29945,13627,20529,20557,20558,20561,20562,20566,20572,20590,20591,20592,20595,20597,20600,20602,20603,20604,20614,20623,20625,20628,20631,28088,28567,28568,29217,29256,20574,28090,20526,20576,20626,20990,20570,29220,30096,20754,16970,20741,22767,18788,18789,29368,18785,18786,20250,25916,24643,24903,23465,14380,14393,14412,25394,19634,28470,16202,19196,12291,12628,14746,14794,14989,14990,14937,28188,17295,17296,20831,19702,23946,24404,24442,24455,20288,20893,20894,20900,28457,28474,20901,15572,21506,20981,20929,20905,16124,20933,16118,16103,26227,16120,20927,20934,16115,20935,30098,20903,16119,28798,28587,26707,26708,26720,26732,23313,28337,14811,20925,20926,20921,13261,13293,13303,13323,13324,18457,12250,17662,14212,14222,14225,14233,14238,14246,14247,14255,14256,18446,23116,19831,18206,18220,22673,21030,23075,18046,28914,13909,13910,14916,13881,13884,13886,13915,15343,15344,14508,14510,18776,24368,16626,21124,24590,24795,24583,24591,27034,20964,21621,21197,28657,13762,25413,14534,14548,15407,21194,28682,29183,29686,18989,28727,19134,19170,19132,19158,19140,19155,18986,13747,20240,21524,23095,21212,21222,29288,21180,21188,21189,21193,21233,28974,21230,21214,21442,18813,21940,15539,28640,24437,24241,24254,24256,18796,24384,24534,24768,24769,21289,24229,21283,21286,22659,22660,29186,29743,29746,29751,24565,18794,18795,18821,19191,17977,27040,22682,23141,17830,18115,20253,20241,28991,29212,20222,21348,28505,28531,29392,28984,28992,28839,20223,20234,21100,21101,21519,15252,14392,21341,21361,19119,20912,20272,27616,27321,25804,24883,22285,24884,28840,22282,22276,18764,19079,21038,18799,19123,27007,23590,23584,29081,27901,29228,26995,29113,20501,14755,20634,22982,16591,16643,19755,19757,16617,20509,22028,18731,18790,19083,27035,13445,16795,16821,16890,18021,18040,28592,29387,16898,16901,16902,16905,16908,16926,16927,18041,20039,16868,16840,16866,16784,16637,14015,21581,16636,16713,16721,16724,16698,16737,16739,27714,16616,28760,26967,18166,17090,20363,14863,13052,17797,18735,21487,14030,18908,24869,18318,21712,21478,17315,29296,22226,28553,28477,20292,20304,22056,22060,22150,22169,22172,22189,22222,28482,29276,22167,20228,21357,28527,29370,20340,21515,16998,17506,19938,21511,21509,25939,24331,29590,29211,29553,21555,21545,14886,26337,14584,14586,14592,14593,14595,29556,24407,24248,15000,19336,22624,28996,15912,15913,28796,18817,24038,24040,27051,27053,18814,27026,27052,21312,18739,18740,14449,17517,17095,17513,17512,16360,23250,24060,13072,15544,13201,15084,23043,17361,18335,19665,12849,12947,12952,12954,14851,12956,12547,20441,20823,28324,17109,18045,14795,12534,22655,23151,22626,12417,14741,14381,21669,17359,17363,17374,17376,18533,18548,18575,18577,19200,19245,19294,19360,19597,18399,17305,19111,19131,19113,19152,23254,14600,18347,15645,17514,23716,20159,29428,29609,29018,25907,21725,21726,21727,21731,29177,21828,17531,17535,17540,20874,18189,12304,27323,16438,17782,12715,27586,27588,27600,27601,27610,27646,27659,27671,28748,28751,28983,13976,27466,27388,27389,27591,27487,27533,27493,28912,28921,27425,24091,29780,20151,21791,24145,28689,24096,24833,18164,18762,21770,21773,21823,21907,18137,18163,24635,16628,12561,21814,20165,21809,21327,75421,75419,75416,75413,75414,75411,75409,75435,75433,75434,75431,75428,75425,75426,75424,75422,75423,13630,13767,15017,15021,15057,15232,28893,17567,17444,12362,17045,17896,21857,18075,21855,21905,21932,29273,28455,28454,21996,16851,21622,14620,25472,28836,28837,21943,21935,12414,15272,14950,12366,14710,12363,22305,28939,24081,22242,29082,19251,24049,20325,21844,22001,22008,22013,20323,22005,21986,19103,22318,22320,22321,29187,13942,13943,13953,22334,22015,12290,27217,28924,28405,28404,28406,29393,17352,17353,17355,19282,29620,29622,29624,29625,29626,15843,27874,27882,27910,27911,27920,27926,27927,27942,27944,27945,27947,27967,27968,27881,27892,27954,22410,18027,22433,18430,18438,21719,24079,28894,23948,23952,17466,20368,17481,20840,28170,28199,28201,19972,19978,12262,19640,24083,24882,21601,21728,21048,21049,22237,22234,20493,29426,20492,23771,17903,17902,30075,20266,22677,23199,23304,22973,23415,23194,22718,23376,23377,25521,25522,17507,24709,23620,19298,18546,24550,24552,21729,23507,23508,23511,23512,23513,18752,12306,25420,28419,23527,23524,17573,23157,21470,23735,23736,24300,24389,29779,16618,23715,19976,19982,19897,19991,19994,20200,28068,25935,12834,12908,12907,17586,17664,26819,21626,13329,13330,20606,20978,20979,28666,17589,23563,23562,28426,27815,28629,16627,16638,17537,17641,18019,18128,19918,19935,16717,23551,29786,29787,23549,13124,13133,13131,15274,23575,23628,28528,27830,12445,12465,12446,24535,27684,27690,28771,22246,22026,23596,27988,23624,24228,28402,29594,21975,28488,19927,21350,17860,23714,14090,27328,28723,29382,13302,13311,18371,18509,19536,16412,29216,21393,19476,26704,23773,23598,29143,25944,27883,27996,13501,17330,17334,17369,18555,18556,19260,19571,19654,19595,19626,29694,16884,21044,24020,29737,17318,18308,18617,19220,19246,19247,19263,19564,19592,19655,19675,16308,18050,24333,24336,24029,24064,24065,19120,18719,19086,26301,24055,26743,24053,24118,12714,16309,16585,14102,21751,24379,24402,24580,24974,24990,25000,29687,24578,24332,24393,24409,24411,29744,21624,24102,24103,24141,24142,25332,27984,22322,26676,22312,21353,21372,22927,24653,24651,20920,23619,24689,21117,17547,17424,17426,17432,17645,18077,28520,17152,17655,13442,12749,13453,13346,13889,14697,24876,16965,20439,24736,27771,23464,21354,19995,23186,29010,24690,24694,24698,24745,24697,24701,24751,24752,21484,18285,23500,20693,27757,16847,24852,21757,15581,23495,21208,28208,24259,29032,21207,27983,17357,20003,18825,18828,19700,13790,16755,15910,24754,24791,24793,25915,24798,24802,19463,22623,22705,29922,20872,16706,23183,18423,18418,21477,24831,14714,23861,18987,13278,24097,29097,24887,21313,14399,20948,25575,28069,28070,17793,15577,15582,19783,15633,25115,15952,15957,15986,15989,15990,15997,15979,15935,15779,15760,15759,15753,15819,15824,15829,15610,15900,15902,15886,15720,15695,15887,15646,15916,15919,15588,20198,15651,15941,15766,15661,15724,15945,16033,15818,16009,15862,15851,15890,15961,15938,15934,15942,15944,15947,15871,15612,20297,29947,19190,28577,21039,21040,18741,16833,16829,18971,26823,28621,25367,29179,18037,27346,14426,14433,17452,15837,12614,13180,14796,12698,20204,15863,15951,20659,20707,20639,12658,24525,29710,29711,25156,25227,29076,25415,25513,24838,17343,17371,19570,19603,14956,21696,18291,18302,28989,14655,25366,12369,22412,25357,25358,14441,14445,17289,19258,19299,19331,19386,19651,22711,28612,25383,25386,25395,21620,18288,18289,75438,76763,76768,75420,75417,75418,76769,75415,75412,76770,75410,75408,75437,76765,75432,75439,75440,76764,75429,75430,75427,76766,76767,21458,25373,14359,14471,13959,25818,29699,29700,25801,20744,18316,18266,18425,17455,18435,18262,27957,25406,25416,25417,25439,18338,29283,13134,13051,13127,13128,12386,13181,14862,13126,13135,13129,15024,14861,13125,25434,20635,25477,20812,27753,17492,12335,12562,12603,12659,14779,27161,14953,12665,14761,12563,28369,20308,28841,18736,23407,23947,16761,16635,25465,17883,12760,20231,18221,12994,25435,25437,18147,18158,18182,18179,19182,19030,19129,14366,13525,20914,16670,16764,18408,27711,27713,29055,16204,14813,24239,24231,24232,24233,24234,24235,24236,24237,24250,24251,19751,19189,28631,26671,26809,51134,28598,23219,23220,23221,12246,25504,25503,25499,25501,13078,19148,19060,19061,19136,19135,19174,19006,19766,19767,19035,19059,25489,25533,25526,25527,29068,25577,18732,25803,15751,22266,18125,17151,18028,17923,29599,17628,28633,15028,16747,25553,17936,18014,22843,18129,16136,16127,25740,25831,25629,25775,25751,16156,22560,13499,18894,16928,16955,16987,16994,18023,16392,17681,18897,18905,20285,20902,20892,28460,28435,24419,28428,27848,20536,20888,24414,22790,28493,22225,20249,20257,25906,28387,21737,25802,16445,16924,29430,26655,23765,14893,12302,12691,12690,13470,26196,26195,26014,26275,25974,26197,26113,26115,26463,26035,25925,26004,29671,25932,26111,26244,26132,26133,26135,26137,29654,29664,26289,26049,29673,26090,26091,26092,26093,28384,21536,26308,26310,25495,28670,28008,20022,15282,18357,21917,16830,18294,18306,15715,21916,18356,18360,17688,17958,18012,19799,21618,26701,22365,28902,28625,26951,20658,24564,21105,26940,26929,23372,26962,16022,20337,26763,26765,26766,26783,24327,15510,20505,28862,27985,24960,12977,18830,25032,20695,22040,22019,22022,25531,26979,20284,25800,27008,27009,27849,26975,26956,26665,26815,17294,17310,18138,19101,17337,23468,23469,23470,19567,17300,17341,18274,17298,17303,19223,17811,26989,28759,27028,27029,23559,23550,23416,13310,29222,24067,24809,24810,24094,24095,24144,24146,24147,24149,24150,24151,29095,23447,27018,21768,21206,13260,13259,13132,15509,18839,18833,18097,17867,24605,17953,25368,23738,29000,27038,17508,26214,19606,13070,13071,30113,20261,12229,19965,19473,20259,29073,27056,17881,17886,13021,12919,13130,18026,22950,27178,27180,27182,27189,27192,27257,20696,21280,24679,24322,27267,24131,27221,28794,27208,27209,27215,27216,27222,27260,27238,21754,27313,27283,27399,29604,27403,20172,20175,23462,14475,27347,29069,20733,20652,20661,20645,20786,20643,20683,20763,20641,28649,28915,28000,22515,27846,27365,27731,30043,29039,29607,27797,27687,27415,27419,20282,22438,22224,28005,27850,19723,17970,18093,24051,20725,15950,27859,27908,27922,27956,27962,27963,27999,28007,28659,28660,29122,29123,29124,29125,29134,29135,29137,29139,29563,29617,29618,29623,29627,29628,27844,26681,12413,27976,22665,14413,26211,17328,26215,14993,27969,27972,27974,20281,18314,18332,19358,19613,15025,22972,22946,18443,24678,28987,14280,28059,24012,18022,18780,18781,18775,16256,16923,28066,18194,14350,18133,18175,18177,18180,18184,18187,18195,18714,19880,19888,30097,18154,18716,18197,18169,29473,29574,29631,29632,29633,28112,28140,28141,28142,28139,29470,29579,29583,28108,28138,28145,17590,19901,18058,28193,28194,28196,18076,18099,18067,20029,14696,14677,14678,25469,18458,21318,24954,24953,18581,18582,19662,19099,19769,19100,20371,28244,28283,28289,28310,28311,28345,28355,28361,28407,28410,28781,29074,29589,29591,28549,29593,28312,28293,28294,28409,28302,13721,15224,15208,12383,17382,22678,24566,24596,22748,28349,28397,23057,23191,20802,21328,18726,18013,18082,18724,16358,16354,22931,22937,22938,19596,24805,19622,29184,13696,13443,13283,13334,13362,14094,14159,14116,21623,27039,21396,21397,21394,20440,21392,21359,21363,21367,21395,21398,21362,21368,21448,21204,18754,19756,16852,27611,28993,21837,21914,14174,22399,20254,18723,17906,14834,14996,28392,17167,28391,13110,16063,16077,16004,16075,16065,16060,16040,28414,26821,19736,20793,22066,19707,21200,18224,18229,18259,19250,23522,21595,18834,29363,16101,23063,20350,20416,20418,20419,20450,20548,12477,12514,12515,12516,13523,26328,26842,24878,18768,16394,16630,16746,16773,29510,20546,18728,12527,13265,26351,17110,13978,14344,14345,14368,17307,26741,29086,20555,20563,20585,20624,20629,20622,20577,20611,20564,20742,20815,20636,29367,29467,24648,24885,17313,14328,14411,12367,14367,17890,12651,14797,14836,14998,22679,18901,20869,20873,20855,20857,15157,19703,24444,24530,29028,24440,29208,21065,20895,19785,15580,26699,26709,26710,26712,26713,26714,26715,26727,26729,26730,26731,26733,21099,20971,26719,14985,14831,20924,17610,29772,28602,22668,22796,23529,26319,13264,13279,14803,14815,14817,14884,14215,14216,14218,14226,14227,14228,14211,14236,16556,16559,22553,23119,29422,22674,29907,29923,13073,13926,13888,29524,20193,21093,21094,29087,16632,18900,24396,24783,21262,26306,24024,20799,14889,29729,15056,18851,18852,21209,28683,24780,24781,24494,18121,21041,26326,29820,18600,18601,19791,21186,21192,21215,21216,21232,21219,28698,21211,14258,16246,16253,18036,18840,28003,13082,15537,25433,21491,16700,24584,24464,24272,24128,24135,24277,18870,18871,24378,24770,29206,24230,24125,24126,24134,24136,28636,18792,18793,21261,21276,23295,24276,29420,29451,29723,29752,29775,29776,24255,17971,14751,29559,14282,17812,17838,18015,14276,21347,15253,14855,22274,17649,28750,22273,25352,19104,15434,20777,23966,29099,27005,22017,26991,20523,18712,18171,18711,18702,19089,20484,16505,16529,20472,28559,20521,20522,20518,20519,20503,20314,28560,29242,21496,29549,21494,28702,16950,19722,26331,14193,16634,16760,14915,14005,20640,14205,14117,14203,20313,29170,18165,18034,18035,27519,21488,21533,21535,21537,18895,17583,19600,29408,26824,22211,22061,22071,22164,22165,22173,22186,22201,22205,26668,20235,29225,29427,20017,25607,26829,21508,13202,13263,27041,26320,22763,29592,21473,21475,21550,21558,21559,21560,21549,21551,21552,21553,28703,28999,30070,25102,21543,29358,14576,14596,14597,29554,29555,17587,16584,17445,20949,24604,24406,16708,22949,18806,14477,18849,21037,28675,18857,18742,17098,23895,13203,23059,23068,22752,18313,23047,12276,12780,12793,12799,12813,12814,12817,12820,12821,12822,12824,12825,12853,12854,12856,12857,12875,12878,12893,12894,12895,12896,12898,12899,12905,12945,12949,12953,14853,14995,15493,15496,15498,15501,29357,76611,14847,12791,12794,12823,15036,15499,12792,12818,12819,15090,12876,12877,18910,23365,17515,23324,12533,14960,12532,12535,12536,22699,29454,18201,19374,22814,23150,23417,29912,17365,17366,17373,18562,18567,18568,18688,19202,19233,19234,19241,19262,19302,19303,19645,29544,17324,19379,17364,14601,18341,19432,19709,25567,24538,21708,18822,18886,24850,27613,27614,27627,27722,16194,23227,23229,23385,28615,18709,21735,29054,23961,17156,17533,17538,17539,18029,22454,17157,20295,21066,21077,28590,30108,17162,26966,18803,18801,26843,16601,18896,20221,18299,23060,23383,23406,23056,20490,27556,27623,28738,28752,29323,27428,27485,27480,27486,20020,27356,27469,27450,20152,21740,21743,21778,21780,21783,21788,21789,28697,21825,21826,21898,18139,20965,21813,20283,25059,20369,20910,28562,20296,21031,12730,13539,13541,13542,13544,13639,13645,13647,13648,14909,14910,14912,15192,16169,16171,21593,21594,21602,21604,21606,21613,21615,29500,30037,18039,21678,22431,22432,17595,17899,21838,21906,20341,29734,18409,15743,18239,18240,15441,15076,19431,21939,18907,16921,21936,26324,12294,12307,16598,16440,13494,18407,12283,20167,24413,28395,29083,24050,21851,21976,20169,29057,28561,22031,22035,14078,24880,20412,23259,13938,29199,24321,22327,22328,22354,22364,29080,22367,22417,28285,26946,23189,28557,28994,29466,29904,29916,22779,23065,23680,23681,23744,27852,27875,27909,27931,27940,27943,27946,27964,27965,27998,29120,27879,27939,22755,23266,23278,29017,18326,15546,23726,23720,17482,23949,23951,23974,28200,16187,28591,13060,15567,19016,19017,19968,19973,19990,19974,19983,19988,28073,28074,19980,19985,19256,17813,17814,29024,24140,22236,29088,23770,19787,23466,17386,23156,29038,22870,23120,23005,29247,23349,29215,23126,22746,24660,23062,29285,23003,22676,22657,22713,20506,22932,23371,29727,16613,14894,14895,14896,28516,25578,17030,23615,19270,17329,24547,23217,22722,18725,14579,14575,14580,17919,14396,21706,23719,23520,24687,24143,19981,12835,14825,15500,17138,17661,18769,15051,21051,22298,26669,20796,16631,16629,17411,17422,17638,19937,28854,28690,13141,13153,14866,28578,16569,16570,16571,16572,16573,16574,16576,23637,29250,28646,29789,20024,20700,12881,15494,12459,12466,14756,14827,25563,28747,24058,29193,29200,17577,25552,14079,26213,26949,20171,28945,29381,18855,16718,23691,19542,25153,25498,19338,19544,29773,20252,20248,23728,20690,23626,27904,20768,23614,23617,14107,27861,20790,20287,16986,26317,29855,19936,18248,27244,17348,18329,18602,18631,18632,19605,19608,19616,19653,29896,29897,29929,17304,29424,16967,29724,29735,24962,17316,17317,17320,18254,18255,18676,19561,19579,29530,29532,29534,29906,24035,24036,24063,29061,20818,18132,16586,16644,27043,18030,20975,20974,21055,21058,12716,14883,16633,26338,24619,24668,24978,24980,24985,24987,25006,25019,25020,29452,29685,21090,21091,24328,24410,24412,24859,20344,27987,19077,19680,25572,21202,20977,26667,26657,14175,25815,25505,12739,15552,15553,15554,12761,20551,20552,24636,29692,19786,18017,19788,23108,17024,17660,19383,21050,13911,28687,28700,24662,20436,27324,24707,24699,24700,24692,24695,24696,24741,24748,24749,24750,28143,24747,24676,28791,23496,23613,20730,20689,27824,20724,16922,16846,20785,20807,21895,21904,28304,28266,28322,19219,29031,19754,24500,17524,13229,17557,17575,17570,22424,17911,18826,18827,18766,18765,19777,14304,18018,19201,19334,19335,24757,24758,24759,24760,24761,24753,24786,24796,24797,28616,12289,19475,19483,24800,17297,22687,22717,29015,29342,18368,23489,20495,21373,14108,12284,13424,15333,24913,24914,17737,24459,27615,12850,15120,21923,21915,24603,21841,21467,25574,15915,15918,15590,15584,15585,15591,15571,15954,15889,15955,15640,15976,15978,15980,15981,15988,16000,15940,15777,15778,15782,15884,15888,15794,15808,15810,15812,15813,15814,15820,16010,16014,15693,15675,15677,15725,15729,29351,25033,15775,15896,15891,15656,15635,15639,15948,15872,15876,26641,28626,20750,18710,16941,17653,20711,21894,22914,16517,19838,29821,12622,14771,24955,19792,24595,20215,20710,23483,13463,25166,25189,25216,25508,12313,14699,17460,12483,28300,12672,12673,12674,14656,14657,17468,25359,25360,14450,28393,17290,18237,18283,18322,19378,19495,19496,19624,23071,23168,29248,29249,29316,29540,29542,29894,29910,24896,25393,21833,22037,23717,19410,29407,16702,25377,16258,25470,28861,25372,27032,15594,24921,20538,23641,20343,24704,19682,18433,18260,19349,25107,25410,25414,25419,25422,28829,25441,25450,25456,25457,25458,25459,25460,29383,19648,19946,20524,13075,13137,13140,13146,13149,13151,13152,13154,14865,13143,13138,13142,13136,13144,13145,14867,27123,13139,14864,13147,13148,13150,18815,25466,27814,28758,14334,15052,28740,12544,12525,15247,12531,15244,12530,13945,14780,12288,12522,12523,12524,29306,16754,16692,28371,16170,17920,12848,12251,12254,21389,23107,13055,15029,29722,17381,29543,18454,16558,16622,16624,16679,16590,16551,16763,25461,25817,28857,20258,20309,24021,16381,18049,20365,28770,20239,26644,26658,26660,26674,24671,20817,29777,23223,12234,14711,25502,19075,25814,25541,28799,25534,25579,25519,13246,19177,17013,17800,17719,17905,25609,25594,25586,25588,25589,25717,25778,19462,16931,16938,16961,22805,30102,30106,26982,28476,29558,29421,29728,29730,14177,25902,19166,17805,17907,29434,29512,29515,26647,20944,29509,13077,12584,13471,25961,25966,24071,25933,26585,26118,26219,28655,26335,13414,14562,18078,18080,20023,26296,16192,14854,14954,14100,14964,20149,19028,16191,23004,28225,28298,27989,25388,21861,26294,14077,21107,21110,15658,27003,17807,17809,29516,29520,29522,13749,29680,21103,21282,24498,14470,20335,20336,26689,26738,26739,26752,26753,26754,26759,26764,26767,26773,26774,26777,26784,26789,26794,26796,26798,26800,26805,29005,29311,29266,14997,28695,19909,19913,23968,19984,28133,19966,26959,26977,26978,30099,30100,26662,26672,26816,26661,20150,19076,17321,18140,17368,18497,26988,29406,21010,19658,19644,29405,29547,29535,27001,28879,20836,23639,21027,21028,24654,18393,22750,22981,29181,29436,29464,29915,29920,21088,17839,17909,17942,17973,18091,17833,18092,14784,17816,23090,12753,17952,27063,19884,19941,20224,27059,27081,28582,28583,29191,28554,27054,27049,27073,28676,18651,22309,18104,29818,18499,27188,20968,28858,27304,27219,28692,21064,28585,29463,29921,20609,24121,24266,27300,27310,27312,27255,27265,27396,28851,28852,29251,27288,27290,27319,28789,27285,27315,27278,27279,27305,27243,25506,14637,20667,20685,20691,20734,20446,20445,26080,20315,26921,27336,17939,27856,27860,29138,27981,27990,28009,24659,23363,29453,27975,25573,25606,24551,14837,27970,28011,29118,15578,28013,28014,28015,28016,12660,24951,18599,22661,22821,22980,29390,29423,29455,29465,29546,29919,29924,30067,14935,13853,18841,12365,17237,26820,21452,17795,28868,14267,14268,18779,19969,19986,19971,21561,18186,18722,18717,18174,18718,29472,29577,28109,19903,19904,16494,18031,25576,18044,18070,18038,25471,17282,18654,28212,19577,18698,18699,18700,19199,19397,19602,28271,28346,28383,28408,28776,28821,29106,28263,28265,28775,28325,28822,29337,28296,28260,12623,13644,15194,16160,28375,29790,25570,25571,21314,24485,24502,24561,24582,29425,24554,24014,14958,28398,19511,23256,18238,20310,20969,18085,16356,16759,19939,22707,22935,29905,19583,27058,29514,16166,14161,14162,14163,15007,14160,14091,18898,19193,21683,27585,28929,21941,28336,22044,22053,24907,25374,27716,19169,27061,12253,12906,14394,12740,14826,14849,26808,16352,16353,16351,18108,25936,16733,28418,24568,24395,18959,12258,23523,12728,18904,19118,23055,20417,20422,20424,24052,25328,14798,14762,14763,14765,14766,14767,14768,16316,19772,19749,14358,14922,20567,20587,18820,18843,20838,14375,16195,13220,28934,14747,14799,14869,12293,28329,20856,16216,24446,24454,24456,24531,28641,12371,14812,25827,23205,23206,24906,13280,20980,14224,14229,16592,19448,19453,29019,21042,13930,21092,26742,21115,27877,27407,29066,16235,20539,20540,20878,15440,28412,24720,12309,23067,21190,21228,21229,21221,14266,18020,24731,24738,28848,13079,25436,13001,12998,29326,29119,21251,29284,18868,21273,20530,13799,20307,21097,13731,20915,29102,28790,24732,23917,23592,23597,23636,20672,28672,20879,23852,18713,23484,18818,16541,16583,16587,16625,16711,19747,19748,19746,16647,20516,20517,20520,20471,20504,18791,21498,15466,20846,16911,21492,17439,18102,13287,16701,14050,14017,17708,27599,28674,21482,21532,21538,24075,24076,24077,24080,19311,21525,22218,22051,22052,22058,22076,22077,22098,22099,22124,22137,22140,22142,22152,22159,28479,28480,14984,22944,17075,21476,17659,13081,21565,21548,14369,24541,23408,28800,21571,21572,21697,21698,18842,16317,17137,17519,27702,13417,21605,24870,12997,12693,12298,12826,12955,14850,14769,26841,12735,14764,26678,17108,18047,21670,26305,14748,14947,12421,12422,17467,18475,18682,18683,19617,21528,21827,21675,24074,16193,17528,29214,23088,17150,19934,23387,17900,27474,30032,27443,27598,27536,27709,20013,23517,21824,27704,18161,21817,21794,21883,13548,13551,13552,13677,13698,21609,14899,17777,17948,17834,28824,29182,21938,12717,12295,14720,14952,21469,25196,29332,23394,14927,29094,22375,22390,18006,22371,23207,23208,29012,29013,23742,27930,27937,27938,22409,23723,23950,23973,23954,17464,20372,27673,18263,23644,21830,14048,21582,14049,22690,24613,21831,25583,24549,23198,19185,17139,13248,17592,16646,17418,13155,16546,23540,27829,20984,23622,26747,14752,23609,23970,23565,23625,24725,24726,23682,23985,18924,19775,18923,18926,18928,21763,24744,27924,12909,12910,17349,18669,19604,18502,18689,19205,19560,19625,19663,19239,19240,28927,16645,24540,14166,24334,23112,12575,17916,14186,14914,13854,13284,16443,24708,27080,24742,24693,24677,20814,27758,24950,21384,27871,28500,27978,17549,17572,17652,17580,17582,17579,17581,19776,28691,24756,28926,29025,12337,17791,28745,18048,21319,15598,15629,15958,15960,15998,15999,16015,15605,15781,16023,15731,16008,15653,15914,15631,15710,15672,15723,20216,16016,15931,16028,16029,16031,15733,15885,15619,15785,16027,24641,22988,14431,14923,20952,12579,12661,24594,20709,20764,20638,20776,29014,13734,24557,24439,25191,25104,25341,27240,24311,18033,25356,20537,17121,24354,25937,14451,23485,23539,18324,18325,18327,18412,19259,23149,23665,23032,23897,25378,23080,23774,19236,21893,18303,19587,25400,25401,25407,25429,23184,13877,13160,13161,13165,14868,14871,13002,13156,13157,13158,13159,13162,14870,13164,13163,19291,12666,12671,14805,14961,12667,12585,12580,12565,14782,18899,24860,14814,25155,19768,18135,16681,16685,16691,27826,29399,14076,25462,17532,16762,18043,14753,23616,30072,28845,23392,23399,13080,12225,12235,12308,14712,19742,24935,25497,28628,28627,19056,25488,25562,25811,25812,25813,17806,25604,18007,25891,25797,25893,25642,25892,25796,25794,25793,25739,25615,25632,16154,25706,12577,12581,25762,25788,25774,25772,25746,29235,25631,25634,25633,28541,24803,17802,20280,28429,16218,20290,23960,17665,18705,16286,16507,16745,25816,12692,12576,12762,19977,27082,22293,14877,15283,23002,21720,13282,14465,24588,23159,27012,23638,21284,23389,26757,26776,26791,26797,26799,12564,18173,29255,26952,24952,26986,17383,19225,17340,18571,17339,27027,23260,16346,76566,76567,76568,76569,76570,76571,76572,76573,76574,76575,76576,76577,22686,23344,27021,21203,25681,17229,18403,17892,17908,19764,20256,28686,27047,15455,12763,15456,27179,27181,27183,27185,24958,24298,27242,29007,29006,27286,27303,27291,27318,27275,27309,27339,27241,27343,27330,14468,27728,20668,29233,20678,20753,28757,19998,27779,27726,29344,22074,27337,24539,18101,28593,27796,27918,27925,27929,29126,29127,29128,29129,29130,29131,29136,29178,29205,29232,29234,15363,27361,12930,12931,12932,14838,14999,14718,14719,28023,18258,19363,29020,24808,14281,28058,13798,21903,18181,29937,18196,18167,29808,18157,16226,18061,18098,18103,25467,17257,28267,28783,28323,13546,12376,24617,19964,23111,23265,21294,21326,16367,16332,16925,14165,22268,21358,18100,25947,21750,25682,20116,27064,25483,27011,28643,27020,24904,12839,15148,14994,18106,17405,27961,14717,19356,16058,16041,16056,20379,29147,12696,18134,20547,16979,14936,29319,20922,13262,14878,14879,14248,14253,14254,26998,21079,21080,21081,21082,21083,21085,21086,21120,21121,21122,21128,21129,21130,21131,21132,21133,21134,21135,21136,21137,21138,21139,21140,21141,21142,21143,21144,29140,24320,24721,24784,24673,21522,12695,21296,21285,16318,21922,28475,24682,16265,15267,19720,16641,16743,21485,28949,22183,17134,12781,21701,12676,23892,17025,16736,21736,28826,18120,27725,14900,14901,21668,19719,22011,22331,22373,23737,27893,23894,26993,19070,28550,14101,18042,17529,17046,17044,20542,17525,17901,20722,19578,24405,15527,21089,18704,27017,17810,16357,21087,14466,24862,13855,27870,19355,19516,20358,29246,25056,15883,25068,15953,25062,25063,25064,25065,25066,25067,25069,19716,25162,19492,13030,16395,14987,13860,28825,16668,16684,16756,27066,27067,12226,15525,17796,17799,17674,24532,19718,19084,26292,18016,26970,21196,12743,26984,28853,24364,28654,21679,18110,24664,27401,27292,20679,29230,29001,20002,27857,27858,27872,27873,27884,27894,27898,27907,27915,27917,27919,27932,27933,27934,27995,28658,28661,28662,28663,28664,24503,12934,14840,14841,21489,18032,23196,24466,21349,21054,27626,28400,12933,21352,17400,18464,23197,21366,28254,20338,19867,22096,19870,19845,19830,19875,19871,19877,19873,21554,19943,21853,19962,15088,20083,20120,20121,20125,20127,20128,20129,20122,20123,20124,20126,20130,20131,20132,20133,20135,20136,20072,20073,20119,20097,20078,20066,20099,20041,20045,20046,20063,20030,20054,20055,20101,20103,20111,20112,20113,20115,20117,20095,20057,20058,20056,20092,20096,20108,20110,20114,20098,20081,20074,20075,20071,20118,20093,20085,20100,20107,20076,20080,20077,20061,20051,20070,20086,20109,20067,20068,20069,20106,20104,20105,20088,20060,20062,20064,20084,20065,20089,20102,20094,20059,13850,26288,222875,46300,1437,1441,1444,1439,1555,46286,46287,46288,46289,46290,46291,46292,46293,46294,1447,1566,53312,178342,177727,52351,52352,1559,1550,176498,46296,1515,1476,1472,1471,176834,176666,177455,1605,1558,1541,1535,1536,1537,1538,1539,1540,176813,1564,1565,1547,1562,177096,1606,1546,1528,1526,1551,177527,176484,176496,195744,195838,195869,195867,1482,1477,1474,177879,1486,1608,1517,1609,177208,1607,1490,177700,1553,1542,1552,177816,1492,177822,1494,139702,1501,46283,46284,177206,177346,1493,176545,46096,1509,177130,177038,1449,1496,61245,177702,177891,177792,176808,1500,177759,1498,1520,229508,1511,176807,1513,1521,1522,1525,177056,1512,195324,177082,195559,1563,177652,52357,52356,52354,52355,1455,195053,195070,1527,1533,195558,177158,228994,177810,177889,1456,1514,178291,42912,1454,46285,1463,177551,195330,1461,227445,1457,1653,225617,1684,1764,37627,227671,1617,1618,1619,1620,1621,1622,1623,1624,43508,43509,1706,39741,177539,53357,43694,43695,1579,1584,1580,1612,1581,1571,1576,176864,195074,177439,43696,43697,157134,177658,218611,224240,1588,1596,1598,1587,1436,226227,70385,1466,57716,50890,50892,57551,50897,50893,50894,50895,50896,50891,50900,3965,50899,50898,3783,129655,4044,3400,4019,4537,4536,4540,55422,4538,93714,3401,36522,57717,43134,4535,4539,41319,41320,41321,3935,33259,3950,55468,57706,838,3784,55126,3714,3712,3679,3711,3713,54384,3944,108125,4033,3669,3716,8766,57427,4076,8753,8754,8755,3966,3782,8752,4075,3798,8757,131468,8750,34783,3813,8756,3843,3671,39437,6818,6811,39974,6814,32114,30633,30841,6798,3364,33399,3314,3385,3381,8733,3344,3345,3355,3357,3329,3715,3664,8723,8718,3672,3673,8744,3963,41735,50889,3739,30276,138708,4056,3949,4026,3675,3676,30278,30277,11595,3725,8728,8726,3705,8743,3968,3770,33764,3774,37134,108123,3405,8722,4920,4921,4934,4936,3785,3796,3797,8749,3844,4055,3814,46740,3821,3820,3921,3835,3836,3838,3408,3817,47241,121644,59670,8727,3303,827,11608,46311,37093,37096,37089,37095,37090,8761,37091,37092,8760,8762,33395,37094,56895,8763,48405,48406,4401,30812,8758,8759,212550,30473,3682,8717,55476,61160,10108,3663,3894,36936,3896,3891,130932,3680,3893,3710,3884,3717,3890,3908,3735,3720,3903,3723,3687,3698,3699,3752,3678,3902,3900,3898,3722,3885,3906,8316,8713,3732,3886,39793,3888,3895,3904,3719,3406,3708,3887,3718,3728,3727,3901,3964,8712,8742,48259,8748,3892,3899,3907,3721,45751,3791,3802,3803,3980,3962,3788,3809,3958,34650,3987,3823,3789,3787,3919,3790,8714,3830,3832,3834,3992,3403,3404,4595,3724,3889,46739,3786,3897,3905,37056,33658,10154,57562,10157,48586,841,10156,10155,46384,53977,3927,3928,581,12035,12025,3926,4163,51111,51121,12028,3323,4165,51119,51120,3731,12029,43314,51114,51118,12024,51123,3729,4168,12034,12032,4169,51110,51128,4171,99134,12033,51124,108124,51127,51117,12026,51125,12036,51130,3931,3932,12031,12038,3759,12037,47239,51115,51132,51131,4173,12030,3384,72882,8746,3383,8747,51129,51126,51122,580,33523,51116,4175,51113,12039,33394,51112,47240,12027,30242,3853,3407,3402,142243,46385,56258,99133,3242,3878,3977,51016,46387,50909,3974,11637,33864,594,9783,58875,3879,3681,43718,3871,3363,3969,3684,3686,3881,3914,4074,4149,3882,3695,3701,4081,3760,3386,632,3246,3247,69604,30793,4080,3979,3243,8776,4083,30469,11597,4164,30624,4022,37040,3929,3913,4069,3772,3773,4023,3771,3763,3764,33844,3262,3261,11577,3877,3828,3847,4170,620,3241,3876,32939,4172,3290,3915,3880,30630,3730,3883,8737,3933,11599,3333,3795,3337,3959,3804,3934,3984,3985,3815,3346,3347,3988,3948,3989,3998,3272,3334,3335,4001,3831,3340,3360,3341,3354,57455,3332,3336,11596,3339,3338,3846,4174,3356,3417,98383,3916,3269,4545,53274,55838,33865,4037,4038,11612,53445,128670,39318,136193,30608,54024,134278,119208,7444,58335,43013,665,6055,6052,657,6059,656,6057,6054,6020,663,6021,6062,43174,658,6048,33570,6025,6036,661,666,6044,6035,6033,6043,41951,6063,659,6045,6041,662,6039,6042,41952,6047,660,6038,6040,6046,50926,34700,47644,43717,3938,128425,836,915,5293,53978,3300,3862,57624,3855,3740,4534,57545,3738,3982,4025,3688,3315,42029,30606,3706,586,8697,30809,918,8698,45803,57623,3331,3768,3769,3917,3758,3279,3810,3270,3358,4028,42031,3273,3352,3275,3361,3840,3839,3362,3312,54554,3668,11585,3260,58750,52507,48368,117663,58751,34048,4049,56280,3942,4046,46002,4077,5993,621,3249,48193,4027,3313,10425,42027,8769,3289,41733,221007,3767,10862,3244,842,42000,628,3254,3811,3349,41998,622,3250,644,45796,34651,3301,10134,10137,631,46391,3743,4048,42003,10427,623,41727,626,3253,41729,3762,635,3248,3999,3736,625,3252,3748,926,3257,39438,3700,3954,4034,3751,10428,3674,41997,3415,3379,3378,4012,41999,629,3245,3317,3414,32983,41731,43719,639,3322,4052,9523,9524,99135,56232,3726,8741,638,627,4043,32938,33673,41730,4014,11607,4072,3983,630,3256,3909,10138,3291,624,3251,3683,3911,41728,99136,3366,10140,43114,3849,47219,10143,3742,36476,3380,39913,11598,3376,33972,8779,10135,47264,4070,10145,3409,10139,10861,3707,4031,36934,42001,33396,4550,3910,4035,3304,3801,3997,4000,4004,3779,3775,33260,3781,3918,10146,30884,648,10133,3859,4013,4015,3799,3800,3816,10865,55423,3348,3827,36516,10429,3970,8768,3978,30302,30792,5048,5049,8771,8772,8773,8774,3912,9484,3302,3305,643,4009,99137,650,10136,3852,10863,36935,927,42002,45999,4017,4053,3268,4040,3280,3922,4058,3805,4078,11643,3806,3807,3808,3359,3981,4006,4057,48430,3281,42030,3812,33401,4054,3986,3826,3996,3818,3271,3413,33634,3990,4041,4548,41732,3829,633,30272,3991,3266,3351,3833,4005,4011,30864,3353,37041,4002,634,3276,3837,4082,3263,4016,46917,3923,3842,3277,3993,3267,3994,33116,3343,3265,3995,3282,651,3299,3292,3295,3298,3294,3293,3296,30637,4010,10141,653,4003,53449,640,34011,8710,52904,54200,652,4007,4008,30811,4039,3845,3297,53105,55119,583,42942,8705,584,11594,64543,585,3756,57944,46467,139997,141212,3856,671,3857,672,34658,3667,42624,8767,3873,45804,41973,3670,3741,3692,3694,3951,57546,71391,42625,3943,36931,156146,3776,3757,42626,32703,8702,106234,55823,3666,3284,8132,3864,48815,61093,8134,8131,3940,128984,3865,156056,156264,137227,9476,48426,8243,10213,3283,45985,3240,11609,9481,12061,8005,8707,8462,3318,46001,30631,30863,12052,8745,12082,9743,3761,8669,12053,3690,3697,3702,3703,3867,32702,12084,4018,3750,3754,3755,3677,8720,4036,12081,48427,4166,3316,3875,3956,12055,12083,3704,3866,39892,12057,12059,12062,3311,32140,12058,10822,46381,11893,7777,46382,3287,3874,587,9478,3850,55775,48428,12063,10864,3285,3367,10821,42673,3777,3778,3780,40250,3765,12056,3330,4021,3749,53288,3319,3930,3321,43037,3824,4167,3665,46430,135438,3382,33945,12051,7398,3320,48429,12054,57146,12060,57547,3416,30269,30617,43035,3957,3411,30301,3953,30270,30271,3342,3412,3841,3410,3278,8792,3288,3365,46383,42032,8189,9477,9474,12080,36938,4543,3854,141213,153639,47625,69638,8701,55758,3693,140112,131473,39811,47816,54481,57088,56634,3937,4532,45802,3372,41736,3368,3375,33400,3370,39893,6573,30350,6079,6571,6572,3371,3369,41996,39894,4045,153160,3973,153956,3373,6570,4592,3947,42613,42401,849,6685,852,6684,618,49056,604,6683,30838,52560,57123,42612,619,6574,35096,6579,847,6682,52556,6681,6575,52558,6577,52557,851,58148,850,52559,848,3858,6686,6734,6739,6688,6741,6736,588,8699,6580,617,30839,6581,45993,49059,6584,6578,6576,49057,6591,162310,55475,142361,142363,142358,56259,142360,47577,6738,54519,6599,33799,6737,142354,142356,142352,6600,6740,53442,142349,53443,57492,142353,8751,137427,142351,142357,120693,142359,6594,3972,6601,142355,142348,35104,6592,53432,142350,142362,11636,163510,11572,34639,11600,6602,4376,5898,54201,58208,4286,56521,46310,10868,4064,4404,134277,37042,33132,33135,3395,4408,55492,4271,57162,5005,3863,41740,3861,128983,129462,4289,6306,40294,3306,3307,3308,3309,3310,4390,3709,3744,3746,3967,34645,41738,3685,3650,3737,5897,4391,3945,3689,3691,3696,71661,4365,5896,33128,5899,55190,5895,4431,6812,6813,57678,4288,57151,4425,9479,3976,3848,46738,3350,56209,4261,4042,4437,4299,3377,42913,4397,53422,33130,4024,4352,8700,8715,4287,57694,57695,57696,72884,6309,3392,3936,3872,63212,4309,33134,9521,33129,8002,3733,3734,38258,100791,137231,34782,4411,5900,36475,4406,4418,6017,6018,6015,6016,3961,4412,30794,73910,4381,4382,50885,59717,4280,4354,59662,6307,3393,51097,110703,4380,225799,4432,4417,4285,4359,3960,4020,33522,56358,110684,3766,3747,6596,37990,37991,4416,4301,4373,46747,4389,4281,4355,6050,57697,57698,53260,4414,4374,9512,3398,4284,4358,43162,59663,4292,4047,4050,33133,213181,3941,8778,4594,4330,4331,4332,4351,4329,4333,9511,46748,4300,4313,117651,9509,10866,59798,59799,59800,59801,4361,4640,4546,53435,57699,33767,4398,4399,6305,54489,3975,4264,4426,4427,137878,4400,9508,33131,3851,73556,3793,3792,3794,3946,51104,4032,36515,110019,33973,3389,4029,4030,51100,4362,35100,52449,3819,3822,3390,8732,11894,4549,51101,51099,51105,48369,51102,6595,3971,51103,4279,4353,59661,4277,4276,11848,59796,59797,59802,59803,9179,47221,55117,219696,130385,4413,38002,4282,4356,3939,3952,6308,53865,56223,840,6310,11591,3399,66233,4409,79366,4320,4323,4318,4304,59665,9520,9515,9514,9516,9518,9513,9519,3396,9517,37045,4051,4293,4335,59718,4315,11850,37046,4302,4283,4357,4266,4267,4156,37054,37053,37055,37051,37050,37052,6597,42809,42810,51098,579,59664,3860,9522,6674,3397,4597,4641,613,6704,41318,4162,30810,33397,6603,35105,6715,70995,6689,36441,37147,611,6698,6699,30326,30327,30329,30328,6058,50901,6608,35097,3505,3504,3506,33971,3531,59671,4097,3457,3502,6701,39237,3501,30325,4542,609,6696,3456,6613,6598,9176,9177,38878,55421,48404,48392,48397,48390,48395,48391,48385,48387,48399,57552,582,4158,608,6695,39346,53446,53447,6708,7755,139752,6607,48394,48386,48402,48400,48403,48398,48389,48396,3394,48388,33625,39370,57554,48383,39407,7753,37108,37113,33628,48384,33627,34660,39406,39417,34659,37111,56866,57555,33626,4157,57556,6605,48393,48401,6609,6610,35102,6604,610,6697,6712,614,6709,612,6702,6703,137883,6716,6706,6710,6711,11582,853,6713,41296,606,6690,6693,6694,607,6691,6692,70325,6675,35103,6705,6714,41295,6707,160502,6700,47648,670,4121,4124,137859,6717,641,6679,675,47265,673,591,3659,45759,43316,43315,43317,3661,43318,45758,3654,3656,45756,45757,3653,57150,9485,9475,53292,53293,8619,11580,6680,6676,6611,57148,590,642,47266,9178,139092,33485,30519,7288,664,6029,6721,6718,6719,6720,6028,6034,30349,11611,6032,37087,6725,6722,6723,6037,6724,73836,43175,103561,9172,3638,3745,667,668,39803,10215,595,34888,43036,6080,654,39804,6632,4117,3592,9173,10210,10208,10209,10211,30748,10214,5289,30248,10212,37141,6618,6617,161689,674,39796,6614,30263,30264,8532,8580,34656,42630,636,10142,4161,50902,70787,70788,681,30265,6053,865,8550,37135,646,137861,8593,75316,37142,649,33389,6616,35099,8621,8613,56635,60682,6615,61136,61193,645,6060,6753,6784,6761,8541,6756,6780,6781,6782,8556,37025,6762,8540,37081,6763,37021,6766,37082,6765,6771,8558,6768,8537,37027,6757,8542,6775,6773,6760,6788,37079,37080,6755,6759,34640,6774,8557,37085,4160,6019,6778,6776,6783,6769,8559,37026,50903,3651,37023,6751,6787,6081,6767,8538,37083,6061,6777,37086,6786,6758,6619,65894,6764,6754,36937,6031,6785,6770,37084,6049,6779,37022,36477,8539,6026,8552,6027,8595,4159,33103,6748,6749,8543,30472,602,6735,6744,53597,63209,137834,6742,6745,6728,34706,6729,6730,34705,6747,37902,6752,38096,225641,38330,6731,110692,669,36532,637,34941,601,6733,11592,34657,837,7287,605,6746,69992,9175,11630,63210,33863,57144,6687,6743,9486,9480,33858,47246,596,4591,4547,126637,37138,126512,125334,5294,36973,8616,37140,6772,37146,8598,6727,38717,38718,206770,8601,846,53281,5286,8597,4125,39238,6790,47901,6789,39459,4116,6620,6795,54954,615,6796,686,30791,46835,600,4073,6732,56205,6801,6791,10623,3591,6793,55842,6794,30243,69982,46836,6792,30817,42403,39454,39455,6621,6622,845,6627,6624,6629,39456,37097,6625,6628,6623,58631,37143,6635,47215,6800,8584,8585,8582,33104,3633,3603,42208,30840,8626,6626,748,8583,843,3588,3583,6630,6633,74852,3594,11960,11959,11958,11957,593,9174,37136,8739,37123,3597,592,8740,8534,696,3547,8544,693,3544,3580,690,3541,723,706,3574,3573,722,713,707,3558,3559,708,3564,710,3561,720,3571,700,3551,714,3565,716,3567,705,3556,709,711,3557,717,3553,702,697,3548,724,3575,3568,3562,8576,719,3570,703,3554,688,3539,687,3538,3560,699,3550,7286,46904,3578,689,3540,691,3542,598,6637,30470,718,3569,725,3576,704,3555,39457,695,3546,712,3563,698,3549,692,3543,33651,3589,715,3566,721,3572,684,3584,3587,8617,8618,6631,158680,158681,6638,4122,63219,701,3552,6636,726,3577,694,3545,4142,109757,47643,10473,835,5295,10470,6645,50907,39461,10624,4118,4119,39462,6649,10472,39460,30856,833,39458,10474,10469,33530,4148,39463,39453,5292,6082,6640,6641,35101,10468,5290,6647,33272,8611,39464,10471,8614,6642,35095,6644,990,4126,6815,6643,8547,10475,10466,33960,5291,50908,834,6677,6639,33388,30244,4147,41375,589,40249,11602,30635,53263,8629,50672,9150,56898,47899,9171,3627,6651,30227,153927,8004,137877,8631,8764,8765,6024,8630,3598,36531,3595,110016,42402,6650,41820,43181,33816,33569,47902,47900,3607,30867,3605,47903,134048,150374,53429,3613,61456,685,3585,3604,30611,55833,3600,6030,158682,53283,43182,8627,57549,76935,8545,3612,6797,3593,156811,655,3629,4544,6652,8586,8623,30646,6799,226374,208521,30648,30650,8624,11601,30647,30843,34816,34813,34864,34807,34810,34806,3596,30651,839,30471,34828,6084,208520,34824,34826,34819,34821,47504,47506,47507,47508,47509,47510,47511,47505,30649,47512,47513,47514,47515,47516,47517,47518,47519,47520,3590,34818,34809,34812,34825,34815,6653,34823,34863,10147,6654,8575,8628,5854,5858,5857,138747,4120,33809,8554,762,5863,37049,8620,5861,56178,5859,8625,39247,8599,8600,5862,5860,129880,4308,129875,129881,6656,5855,5856,58111,8546,34703,34704,129878,599,39252,11927,11928,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,11943,11944,11945,11946,11947,11948,11949,129879,129883,10829,8570,8571,37137,129877,129884,106350,129876,6655,8574,616,6802,129882,3599,42551,4143,4375,47811,676,4129,4130,6518,36533,54480,46429,3601,47813,6662,6522,4140,8555,4349,4350,30819,3602,8551,6508,6586,6505,6589,59689,47812,47815,6513,202758,6504,6587,11851,6503,6590,6523,6517,6515,6506,6585,6510,47810,59688,4102,6514,6519,6511,6512,6520,47814,8787,8788,8789,8790,8791,6660,56626,6507,6588,4138,6661,4135,4137,4132,4136,4128,4131,4139,4127,4133,4134,5288,33769,3609,683,6509,6516,7775,8602,3582,6659,3611,679,3579,54983,682,38012,10335,34642,3640,7387,7388,54030,4402,3634,7443,33369,6726,3636,117678,41761,4433,4593,54050,8003,157147,8562,8594,4095,829,4307,3626,4105,3637,3635,56722,4090,4393,4394,3618,647,10144,3620,3619,3581,3623,680,3610,53264,3614,50216,37007,57761,4392,3621,137879,58552,4099,3615,8609,57149,3652,4303,3630,3631,206847,8596,42562,3632,65587,8612,4096,30632,138752,4421,4420,4419,8579,3608,121901,33700,3622,8725,212042,9489,3628,32699,10148,6664,53391,4387,6663,74818,137869,3624,55843,43023,7771,7760,43021,43020,8622,4369,4370,119725,6803,43024,43018,7763,48243,7768,7759,7766,48239,34773,48240,34774,48241,34772,7764,48242,7762,7772,6083,43022,8577,43019,4371,4270,4268,4269,4363,7767,7761,8578,43026,43025,43027,4091,8615,4423,37139,6665,6678,4422,4260,4424,7769,157548,7770,55824,32994,32993,208472,38525,70168,131471,4368,70169,38072,4364,4360,6051,10867,38519,71496,38051,33206,65584,43173,57604,57605,57606,57607,57608,57609,57610,6804,6805,48073,6668,10825,10827,39909,8605,48074,4378,39907,39908,39910,48071,48069,79116,603,6806,56282,4101,4100,48068,223586,48078,597,8608,50233,127361,6667,48066,48076,48072,10826,54569,4755,6810,57603,8573,8572,11616,48070,48065,48075,48067,4377,73986,73984,73985,73983,4106,73987,6669,74774,8607,4098,8606,37038,42692,50910,132982,3503,34661,6816,137881,3616,4094,8001,57142,57143,4104,4103,157098,3606,30669,30616,61108,61109,61110,4092,8561,32952,4314,57147,57145,54477,3617,224092,53407,30306,4336,41734,57141,6808,6672,30342,30308,33033,6807,137376,4436,6670,6671,4306,30305,30343,39812,39813,30307,208220,94385,4372,4085,3450,4342,36933,8603,56336,56337,93496,3474,30790,36474,6467,6449,6450,6451,6458,6459,6460,6461,6462,6463,6464,6465,6466,6441,6442,6443,6444,6445,6446,6447,6448,6452,6453,6454,6455,6456,6457,8604,42981,62316,8721,8729,4093,8719,33647,8563,8588,8589,4107,59667,4430,3528,3496,8724,55825,8590,8587,8591,8592,3455,8730,59669,55836,126613,3507,3508,72883,56894,8569,130286,4339,4337,4338,57553,8535,8536,124478,8549,37652,8567,47575,8533,137833,8564,8731,71553,70789,48793,8610,8568,47576,117436,47745,53291,3500,137880,8548,3509,8566,57140,153959,4341,4108,30818,4087,4088,4089,832,52505,54032,137860,54033,3512,38318,11328,3510,3513,11329,3511,54034,38423,132984,50682,7773,3460,34005,677,4123,8777,48185,48186,48187,48188,9152,48189,5902,5905,5906,5903,5901,5904,48190,205257,53525,125714,156093,46891,33111,4367,4366,826,3514,4086,30670,137862,57154,30671,224154,3515,4311,11849,33635,9151,53287,3535,10869,3516,54306,54319,54313,54309,54399,54330,54314,54322,33113,54301,54315,54321,3517,54307,54311,33107,33108,33110,33109,33112,33106,54329,54317,54327,4434,54304,54300,8716,8780,37061,54302,54312,156116,54318,54332,54331,54324,54328,54316,54325,54334,54333,54326,54323,54308,54303,54305,54310,3529,37655,54299,4435,57887,128246,54320,3499,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,53457,52469,160566,3536,3537,34194,71597,3644,41230,3454,37039,38421,3453,3452,3451,4295,3518,131461,3432,3430,112734,112735,53385,37530,112741,112742,3427,156094,3433,156095,3431,39349,167879,139158,3428,37529,37527,46759,43194,3498,164070,37531,37526,4290,38400,6064,7774,62636,56560,42634,3429,131413,112782,220506,37528,161481,3533,37879,54707,137865,4312,4291,41217,41218,4297,4415,830,9510,33256,11847,4326,4316,4317,8242,4272,54026,53976,65893,208393,79348,79347,55655,4343,6313,4347,4348,52506,219071,4379,831,4327,4328,48077,54357,54356,34662,156034,53294,53295,109758,678,4141,4428,4429,4345,4346,10823,828,4273,4384,4325,221044,6312,4321,4322,6311,4334,4319,137252,4305,33850,54488,37119,64413,4344,6314,121902,224206,131489,223176,4274,4275,11845,4405,46851,37109,39427,59880,37112,37115,70971,4407,48238,138749,37110,32141,124400,33639,125184,5273,4403,5272,37118,47578,212452,38775,6824,56257,33614,33802,33806,7757,4395,30853,209820,4263,33807,39883,33616,46357,732,7756,41236,46749,4265,46752,41980,36929,37116,71046,30855,41981,39428,46750,40241,4410,38502,46751,50924,217935,33801,46754,33808,142276,46756,46758,38627,139597,139596,34771,38409,43195,33612,731,33613,33803,33615,56256,46753,33800,4262,38867,38868,33810,43196,46755,39398,39391,39378,39410,39409,39413,39415,39416,7754,39327,39355,39356,4298,43016,138748,39352,39363,39366,39364,39382,41737,39423,47652,39372,4385,39333,39335,4383,733,6823,32985,39386,41983,43017,39330,39341,39362,39365,39383,46757,39331,156107,39368,39353,39375,39401,39384,39358,39399,39347,39408,39397,39381,39390,39422,53448,39419,58545,39412,224152,39329,39336,39389,39376,40239,38293,11846,39332,39354,39411,39371,39418,40240,4278,39344,39426,8648,39337,54985,39338,39339,39342,39343,39340,39414,39400,39421,62626,39360,95363,73146,39361,55835,39351,37117,39380,39328,4310,39396,39348,136120,40340,38527,39388,39369,39387,39359,38155,39377,4296,39367,40339,39385,39425,39334,37114,52385,39392,39393,112705,39403,38537,39373,39357,39345,39404,7752,39424,3521,3520,209796,39405,39379,38643,39402,39420,39350,38678,39374,4294,4388,39394,39395,8647,38013,168787,46388,91343,91346,38524,38463,37144,40238,91337,142277,102596,156124,91334,91333,48963,38267,3466,3469,3465,3473,3461,3472,3467,3464,3463,3471,3470,3468,3462,91424,57639,38455,38516,38517,3522,3523,10870,156123,38683,91342,91341,56909,91340,131472,200838,91348,91331,91352,91345,91336,91335,91344,91332,101938,55762,91349,91329,91339,91338,91350,91351,91330,91353,3476,3477,3478,3479,3480,3481,3482,30614,91328,153950,112714,33524,36514,45997,74772,3475,91296,38089,37647,33804,112710,11836,11838,11840,11841,79163,3525,38336,144275,3530,3524,11837,59684,59686,59687,91354,11839,59685,38680,8255,8254,8256,48332,48333,48334,38881,37649,49022,65888,59683,38662,3447,6658,59681,59682,47601,59678,37132,59680,37128,33724,156122,40342,37133,37130,36932,37126,33102,37125,206503,37131,78565,156121,37129,49024,3497,59679,3527,3526,54552,38628,59673,130285,38411,37826,55290,59675,59674,59677,59672,3459,59676,38010,3483,38452,38453,3458,53427,11323,8253,8249,37127,3449,3448,156078,37903,38141,37024,8250,56326,3440,3442,3441,55362,55363,8252,156045,37124,3443,3445,3446,3444,3439,7662,156126,153983,47609,47613,56218,56215,56216,56214,56219,56221,56217,56213,56220,98195,56864,40618,33637,728,5285,57870,56212,47214,102551,40620,40621,47615,33611,40623,40624,6825,47616,124398,5282,57877,5283,57871,40242,727,47618,47621,57875,211516,47614,47620,38050,38476,137884,33617,40551,40550,46792,47619,56222,46791,47617,156106,3434,3435,40630,40631,40627,40628,3436,3437,3438,734,33619,169119,54338,54339,54344,54336,54341,54340,54342,38496,43031,38855,53972,54337,38536,52892,50925,54335,52891,54343,45642,57872,79355,222129,38265,71029,53282,109835,112707,52140,4071,47627,47628,55258,64386,64387,64388,64389,64390,64391,64392,64393,64394,64395,64396,64397,64398,64400,64401,64402,64403,64404,47629,30613,64405,64406,64407,64408,64409,47630,154305,8251,47626,47631,64384,64385,38479,38480,56908,64399,156036,47632,47633,48181,47693,5281,57880,93502,47701,47694,47699,47709,47702,47708,47704,47585,5277,57878,47676,47713,47706,47690,47696,47714,47718,47698,47700,47697,47703,5278,57884,5280,57879,5279,57882,8248,47707,53280,5275,57883,47715,5276,57885,47673,47695,54398,54394,54392,54395,54393,54391,54397,54396,47691,47692,47689,47710,47711,47712,47716,47717,47634,47635,212451,115261,156024,38381,55469,133909,38179,37844,37845,78536,38526,37846,38177,78535,37932,205784,205781,55474,37849,38114,38118,37850,38090,38091,78534,205798,205795,156022,78538,38564,38295,38252,38253,55473,40835,217913,205783,205799,205793,205788,205791,205786,37958,40833,205794,47583,52407,205797,78532,38431,38434,38728,38824,38535,38487,41209,205800,205801,205787,205782,38547,53148,55837,78539,38007,38008,38009,205792,132132,55472,55471,55470,205790,205796,205789,205785,209801,11583,6475,55487,6476,37847,6473,42827,137976,38071,47611,47705,47602,6472,55488,38263,7358,38436,47612,52138,55489,141214,78575,55490,47586,38780,47688,112709,33618,55491,7357,12018,126954,12019,12020,12021,12022,12023,38379,37981,54293,4634,4635,4636,4637,4638,53441,48182,156111,156110,156108,112681,139495,38322,139496,47640,156109,55688,55683,55682,55676,55670,55661,55674,55693,55689,55687,55665,55673,55675,55690,55677,55667,55681,55662,55691,55678,55663,55668,55686,55672,55664,55684,55671,55666,55695,55660,55694,55680,55669,55692,55685,141993,141994,222686,156102,156103,224087,107643,48501,48179,38737,38872,37644,37646,47597,39800,47596,39801,57890,57889,70317,38569,37873,37874,41241,225257,225258,37944,73920,47637,40295,40296,40285,40287,40288,37803,38698,38077,38074,219601,47598,39802,57888,41253,41254,40297,40298,37992,38195,38198,38332,38334,38201,38202,38580,60766,110683,38446,38647,38500,55164,47623,37957,38037,38043,38044,38045,38047,47607,156151,33533,47608,47599,39799,223383,38889,38890,54040,54348,54476,54361,164216,164712,54346,93707,54345,730,131411,54347,4152,86025,159400,38125,71028,164734,164731,48197,219606,53456,155788,205203,47600,154909,168850,41204,38473,38408,155789,37881,61138,40713,40722,40730,53297,40736,40728,40714,40715,40738,40739,223175,40747,40748,40759,156105,11858,11861,11859,11862,61139,40733,40734,11857,40752,156104,11860,40754,40764,40765,5287,40731,40732,40735,154308,37661,37669,33526,71032,38309,38310,37933,37934,37897,66244,65613,118965,156140,63223,66243,56174,118964,224153,118963,40563,40565,56857,38839,38840,38495,40566,57496,38150,137882,66247,37865,66248,66245,66246,40562,54491,37060,56175,38539,156073,117956,38451,118966,38734,38169,38236,38237,38153,33532,57886,58977,38799,37910,40838,118962,131485,131486,156137,47605,53261,38733,33527,57834,40348,38712,37671,57874,40354,40368,38026,38016,38015,38014,38017,38019,156125,38664,40360,40361,40349,38249,38260,40355,40356,38281,38282,38276,38277,38275,41231,41232,40362,38226,38158,40369,38018,38020,38246,38259,38274,38279,38365,38366,38433,37914,40357,40358,40359,38481,38482,38488,133872,79388,38048,38049,38860,37887,40353,40372,40378,40379,38859,40366,38560,38783,38792,40375,40376,40377,38895,38896,40381,40382,40380,47719,38491,40364,40365,37818,37819,40352,38864,38863,38862,40370,40371,48260,154040,48261,34781,156096,156113,34779,48262,40810,48134,48263,156112,54295,54298,40821,48264,48265,40820,54297,48266,48267,48268,54296,48269,48270,48271,48272,54294,156117,48133,73840,156114,156115,156099,40822,48273,48274,137894,40811,40812,40813,48275,48276,8734,34778,40816,38677,52893,32729,54479,38360,3643,40699,37838,37811,37814,38754,38327,56315,38633,38388,5992,38773,48578,6471,224094,219600,10336,117706,38602,47624,37697,47806,47807,47808,70211,47809,73903,43591,53450,53451,73904,156076,38468,38521,66603,38410,53452,53453,48103,40343,48099,48102,48174,38562,48117,48098,48124,48110,48165,48108,48116,48095,48128,48142,48161,48120,48166,48107,48123,48125,48144,48147,48158,48170,48164,48156,48171,48139,48148,48152,48143,48115,48154,48109,48151,48155,48141,48149,48157,48106,48153,48162,156071,48135,48114,48146,48119,48126,38585,48132,48111,41269,38303,40568,48167,48093,48136,48104,38416,78579,48150,48137,48100,48101,48129,48160,48118,48130,48131,48140,48138,48113,48094,48127,37964,37684,48169,48163,56629,48097,48122,48159,48173,37823,48096,48172,48168,38399,8775,48145,153962,61321,928,57498,71386,48121,169113,41074,934,129269,48180,929,6839,71385,132857,71396,10882,10892,47639,48105,227892,10891,10890,10888,10883,10884,10885,10886,10887,153538,38644,10881,37695,227890,38918,10889,162874,79345,37929,141205,158175,47233,47235,158174,40556,7397,38027,47234,40802,40803,158168,5965,47238,11924,43587,38371,38779,38821,37998,41040,41041,11925,43588,41036,47236,40808,126976,158169,153924,47237,38116,38601,38834,158172,158173,37951,40528,38600,213383,154026,8560,37995,37996,40868,158170,48112,40617,224168,135624,40664,37841,37842,37843,140816,39317,156057,144550,53428,38869,38870,38874,38595,34780,37709,156039,8735,5986,5980,5981,5982,5979,5985,5987,5983,5984,70388,55193,121893,71467,84750,8736,221262,5988,153989,56700,7399,7400,7386,140818,59577,140817,56318,153996,156166,156165,38443,57548,152802,4590,11854,11855,11856,55116,48742,47563,153993,134401,738,134403,134404,47567,156120,134400,48748,55834,134399,156119,47569,71103,48746,48747,48745,134398,47564,134396,154307,48743,134395,50015,160533,154306,134402,47571,47573,47568,47565,47566,47572,39745,158171,47570,224207,48744,133912,56519,140819,48749,133913,153978,59690,48750,47562,48741,53285,47574,134397,7401,153980,7376,153952,41266,55196,41249,142963,38139,153998,54292,41228,152780,117657,126514,117658,55457,54063,110701,7392,56621,103795,142962,7393,55201,55453,71104,126513,117659,54448,38788,153979,37859,222130,55446,55197,38398,209756,38380,209754,153963,7396,131482,129856,11961,11962,11963,11964,11965,11966,11967,129846,219047,55658,40581,129854,209755,38419,111732,129845,140820,53437,129849,30352,129852,129855,69991,153928,154025,129851,129848,129850,129847,56872,209753,40570,33772,129853,115441,71387,7374,131855,156023,221106,66787,66786,153986,38256,7373,72322,152775,163875,140103,152778,120934,37821,38430,152781,7375,7372,152774,161046,7371,75687,61241,153988,37105,152779,7370,156037,66788,156038,61107,37659,156167,156154,153926,11907,156169,37982,156178,156168,66777,156177,222610,222611,222612,222613,222614,222615,38066,79416,70311,78577,55118,66780,59605,156164,156171,38825,125648,154023,156176,156184,54039,38038,156153,156179,11916,11908,11917,11911,11918,11912,11910,11913,11914,112284,11915,112283,11919,11909,156157,66779,37986,66778,58551,222609,37878,79176,37977,37978,65589,47670,156173,129451,140124,129377,129376,73785,73786,73788,73789,129465,38826,38827,51326,51151,40392,73796,140123,40391,37640,129469,40398,38039,40411,73797,62719,154309,156246,129373,153995,73806,73787,73790,73791,7382,40399,40400,38129,38122,40423,40416,40417,62317,7378,38287,38288,38289,38304,40407,40408,40412,40409,40410,73799,73794,38269,38284,65592,140821,40420,73777,51390,73795,73780,40405,73779,7384,38901,54483,40421,40422,129375,40414,156249,73802,73808,73804,140824,140825,85917,38474,38475,73809,140126,140125,55254,129372,73801,154021,154020,73781,154310,224093,10729,51323,51325,51324,129374,156181,73784,129467,38133,40401,128988,73793,47604,47622,55840,56716,131539,131540,129464,47671,7377,40402,7379,125712,53517,126616,53480,55841,140823,7380,40403,38192,38193,156247,7381,154027,53436,62720,129468,38763,40418,40419,129466,51327,51322,51320,51321,110858,53425,156152,38420,225892,110976,70330,53438,156730,208466,53479,54354,140822,53426,37702,5310,36534,36535,51953,51822,51706,224555,224564,224565,224566,224556,224557,224558,224559,226452,224560,224561,224562,224563,224554,224568,224577,224578,224579,224569,224570,224571,224572,224573,224574,224575,224576,224567,224581,224590,224591,224592,226453,224582,224583,224584,224585,224586,224587,224588,224589,224580,224594,224603,224604,224605,224595,224596,224597,224598,224599,224600,224601,224602,226454,224593,156097,52013,51867,51773,51509,60692,36897,51741,36898,51742,7361,51774,51797,7367,60683,7364,51708,36843,36852,36844,36845,36846,36847,36848,36849,36850,36851,51834,51771,51772,51804,36895,51739,36872,51918,38459,36902,51746,36910,51754,36907,51751,41077,136231,36896,51740,51901,9525,40286,53511,52012,11921,11920,51878,51227,63221,53244,36691,51672,51796,51795,51560,36692,51766,51997,51984,36889,51765,51674,51745,53251,53247,51814,30634,41827,51448,51768,6502,36909,51753,38701,51256,60691,7369,37104,7368,53246,53243,36906,51750,36911,51755,3869,36915,51759,36914,51758,36905,51749,36839,51705,38609,7363,60693,224409,224439,224440,51559,53252,53253,51914,60687,36918,51762,36913,51757,52014,36903,51747,156098,51511,60688,11922,37954,154003,51272,57557,207651,36904,51748,51769,51770,36874,53971,10432,36873,51919,36884,51996,36870,51916,51673,36871,51917,51508,36893,51737,60686,136232,36908,51752,36894,51738,51510,60690,51854,51807,51803,51864,51865,51825,51831,51802,51808,51870,51846,51894,51906,51855,51899,51882,51889,51880,51897,51832,51859,51902,51915,51887,51838,51875,51905,51852,51895,51809,51812,51879,51821,51913,51857,51798,51830,51842,51873,51900,51868,51866,51824,51806,51911,51836,51820,51850,51904,51890,51874,51858,51828,51844,51898,51856,51863,51886,51818,51801,51888,51845,51872,51817,51903,51813,51907,51910,51860,51877,51871,51819,51826,51862,51869,51833,51815,51839,51853,51884,51908,51837,51811,51851,51835,51805,51881,51829,51800,51885,51816,51841,51891,51827,51883,51849,51892,51861,51810,51848,51876,51823,51909,51840,51843,51896,51893,51847,36916,51760,7365,7362,53249,36892,51736,41079,169110,36912,51756,53248,60674,36917,51761,53245,6501,36900,51744,36689,11923,140826,60689,36899,51743,51912,53250,154015,36657,36658,51532,10730,121899,43098,43102,153999,10734,43106,10733,34871,43096,10732,169120,37835,70206,153975,61237,164796,56561,43095,153954,43101,43100,34852,34849,34850,34851,34848,34853,34872,34870,34854,34867,34865,34866,43097,65889,154043,43099,43105,43104,34868,153977,154005,154006,43103,38787,34847,34869,10735,10736,10737,10738,10739,10740,10741,10742,156072,85913,10731,52651,111779,65610,225640,112263,53298,55545,153964,70994,85914,225893,6853,47525,38268,57900,53390,54955,38518,57901,101937,101936,34664,55593,56620,37059,40427,40428,156175,38676,40455,40456,40457,40458,40459,11759,11760,11761,11762,37674,156170,37650,70402,154016,154017,80470,40524,156183,40491,11765,11767,11774,11776,11778,33744,40470,11777,11766,11768,11775,11779,11773,11772,37917,40463,40464,156182,61457,153997,40776,40777,40778,40474,40475,40476,80460,40534,40535,38021,11731,11733,11735,11739,11738,11806,11808,38076,80461,156162,40529,40530,11792,11787,11789,40465,40466,73411,156186,156185,80466,80484,80468,11795,11797,11799,11805,11801,11804,154013,80463,80478,80462,80487,38338,38088,10786,51391,40467,11780,11782,11784,11785,11786,11743,11747,11748,11754,11755,11756,11757,11758,11745,11750,11752,38347,40489,7383,38570,80479,38417,111467,38807,40482,40483,140104,156180,156174,80486,80475,40429,40430,80469,80473,11794,154001,57569,40452,40453,40454,40522,40523,156172,53439,80488,80465,39748,40488,11793,40497,40498,37688,38460,38461,7385,37983,80482,80474,53254,80467,80483,156163,38315,40499,40500,80480,154004,40779,11810,40472,40473,38768,40527,40484,40485,54478,80459,11814,11815,11763,11744,11749,11781,11783,11746,11751,11753,11732,11734,11740,11741,11742,11737,11736,11811,11788,11790,11791,11796,11800,11798,11803,11802,11807,11809,154028,40471,40432,40433,40434,40435,40436,40437,40438,40440,40441,40442,40443,40444,40445,40447,40477,40478,40490,40492,40493,40494,40495,40496,40525,40505,40506,40507,40508,40511,40513,40514,40516,40517,40518,40519,80472,40446,40460,40461,40431,80471,80489,80476,80464,80481,154007,80458,80485,40780,37884,40501,40502,40503,40504,40450,40451,37809,80477,75722,224004,34836,34833,34831,34837,34838,34835,34839,34832,34830,34834,11905,30761,11899,154031,154029,154030,224007,34841,34842,34843,131861,224002,34811,34827,34856,34862,34857,34859,34858,34822,34808,34861,34860,34820,34814,34817,224003,224006,131894,107572,7402,11906,38685,30766,30765,30768,30769,30767,30773,30762,30763,30772,30764,30770,30771,224001,34844,34840,129003,34829,34855,34805,34846,34845,131860,224005,96654,156141,154000,11898,11901,40783,11896,53256,55766,47649,11902,40785,47638,11900,7366,53257,10422,208468,156139,40793,78533,38160,38161,53258,156136,40791,140827,33771,40787,156138,40790,40799,40798,40796,199106,206792,59668,40797,40448,40449,40284,96646,96647,156135,156134,156133,40784,40632,73771,73761,38835,37997,73731,73765,56911,73773,73774,73757,54052,154019,52502,75701,73769,73741,11903,37940,55014,11897,37952,73760,11904,40659,37831,9526,38056,38645,38005,55008,73767,73737,40637,40636,73736,73766,73772,73751,73738,40648,38261,38262,40537,40538,40539,55013,40640,40542,40642,38355,38356,38357,40656,73756,55011,73743,40634,11895,73745,40543,55010,38497,38498,73755,73775,73764,38626,40650,37955,73746,73747,73748,73749,38394,73768,40649,55017,55244,54706,206505,40645,38751,40638,40639,40653,40654,37908,37909,40658,73744,156025,40646,154018,78537,37698,41267,153925,140007,139843,53277,55477,53476,38395,37971,156043,32701,8691,8692,8693,8694,8695,8696,54029,53930,150587,218673,126499,59694,78618,161711,126488,53898,38708,63225,63226,78593,78616,78645,63234,53941,53968,55020,63261,78636,78647,63232,63227,59696,59713,126549,126544,54435,53963,48441,169179,126492,126487,126550,53919,53950,51303,51304,36783,36778,36771,36763,36764,36769,36781,36765,36770,36773,51305,51306,36782,36775,36779,36766,153994,53912,59695,47610,56320,36768,59709,51392,53886,53908,59716,126491,53893,5350,5356,5348,5355,5351,5349,5353,126489,36761,9158,63250,63253,51307,225898,52066,40910,53954,11817,11820,11822,11823,37875,63228,11826,11828,11827,59711,59692,59697,59699,59701,59700,59705,78620,59703,33846,54436,59693,225896,53923,52067,63245,38592,53894,5358,53914,56324,126936,59706,53956,53953,53895,61210,61212,40912,37848,119180,53933,11813,37926,59708,79405,51299,55248,126546,57679,52063,52064,52065,67836,53924,36780,10743,38102,53926,53936,53967,47217,48442,52069,52070,119747,53902,5344,5345,38540,78622,78608,56569,63259,63237,41092,38143,38149,41259,57675,52062,36888,11832,37871,63235,63236,38529,53897,126548,161712,78635,53947,73924,53962,5359,78611,40907,53931,78633,63240,63239,11818,11824,11825,41270,41271,38428,57676,63243,63244,40929,53880,59702,126498,61211,150375,63231,53948,53883,161715,36762,126543,59712,53922,53901,78601,142019,55755,63256,78643,52076,78589,63251,63257,41213,41214,41215,11816,11819,11821,38353,41216,63258,63241,78614,63238,78629,78583,40919,54437,78640,40908,9160,38651,57677,53965,38221,213235,53279,53943,51318,51316,51319,53946,55654,58328,53942,53940,51317,53961,53872,53870,53952,53905,46737,37454,37455,37456,37457,37462,37458,37459,37460,37461,37463,37464,37465,37466,53951,78594,78607,63246,63247,65926,78587,78625,78582,78592,78627,55082,53875,55023,38538,126515,38485,38486,53955,51315,40289,40290,126545,53949,54031,63249,63255,52056,36777,53960,53959,63260,38115,9161,55025,161713,51147,51314,51309,51310,51313,51301,51308,51146,51312,51311,36776,61227,36784,54761,55022,36774,126551,5343,53878,53891,53881,126496,48443,109790,59698,78588,63252,53877,59707,55021,78648,55024,53899,126497,11831,40920,38046,11812,61209,53896,78623,126490,57680,63248,78578,156058,59710,38856,6566,6567,161714,78612,41082,53876,53907,53906,61228,61229,53909,48444,55098,62699,48445,63229,63230,48446,63254,48447,53957,48448,48449,52059,52068,156059,53255,53958,48450,53935,53970,53915,53916,5354,5357,53927,73923,137895,67837,67838,67839,36772,5347,38735,40913,41083,51300,53939,5352,51302,53937,53887,53874,53892,5346,53966,63233,53928,11829,11830,53888,53869,53900,53917,127869,41154,53932,53921,53944,161716,53884,36767,53882,53873,53938,53890,53871,53889,53964,53913,37107,53969,53885,79349,56321,56323,56325,56322,78641,53910,53904,53903,7982,53920,53911,53918,53929,53925,59704,48451,40916,40917,40918,40921,38882,53879,78605,53945,7389,37703,38052,53286,37642,38467,38532,38634,38086,38736,7394,7395,7390,58756,58755,40827,154022,37658,40332,58753,40867,156026,38575,40826,41326,38065,38515,61186,55274,58758,128379,128378,128377,40841,38593,40862,36869,51389,53276,150371,37657,37643,38250,38251,38264,52504,40855,40856,40828,38183,34593,55106,40330,38514,58754,40865,40866,40850,40851,73544,58757,52060,61185,61183,61181,61182,61184,40857,40858,40870,37987,40844,40876,73545,128380,128374,128375,128376,153984,41237,41238,38719,156101,38306,141209,38553,41219,40325,40326,40327,40328,40329,40331,41220,41221,38791,38348,156144,205378,205385,205381,205389,205379,205384,205383,205382,205380,205388,205387,205386,38848,54485,37935,40323,40324,141208,117804,53478,141204,40321,205377,156028,55194,90146,90150,90149,90145,40291,37672,37673,90148,38798,38135,38136,38137,38296,38297,38298,37851,37852,38342,38343,38344,38219,38220,37963,37913,38483,38509,154002,37956,62542,38241,38444,154024,41207,90147,38873,55679,47681,53199,47686,53241,47679,47683,53205,53210,53232,47675,47677,47684,53207,53216,53221,47685,53223,47678,53208,47674,53215,47687,137428,38814,40703,8016,8017,47603,153949,152769,37989,38412,47680,53222,169115,53278,155382,47682,53211,54762,38617,38618,38619,64540,140830,154033,154034,69635,154035,208470,208471,126928,37700,73907,154036,140829,136772,126614,96645,153985,38124,40705,10044,38154,119777,40897,139497,118967,52073,154037,52072,56229,140828,136774,137981,136773,10423,61191,61187,61190,61192,61188,61189,53481,56179,52074,154038,136248,52075,40605,158608,38314,40601,11571,59714,59715,7793,40900,40901,40591,7794,61322,7797,7792,51149,7795,131899,40598,158613,7989,40606,40904,40603,40604,7786,7788,7787,7785,7782,7783,7784,38312,37641,7992,38285,55059,56183,38817,51410,7922,7929,51150,7919,7857,7791,7923,7896,7904,7948,7914,7937,7976,7947,7917,7974,7975,7907,7910,7968,7903,40602,7956,7938,8015,38396,7858,40594,40595,7796,40600,40610,40588,40589,54486,7790,55255,40902,51148,7993,40898,40906,40616,155863,7981,111780,7926,7927,7925,7789,38852,40612,51397,51407,51419,51396,51417,51418,51411,51402,51422,51413,6474,51158,51401,51399,51405,51416,38505,51408,51415,51414,51400,10830,51421,51404,51420,51406,51403,51395,51412,735,51409,51398,51394,33221,48482,33222,33224,38661,10417,51423,33231,60333,10420,33508,60334,52089,126945,54484,33220,53522,61176,33227,52071,37980,33230,33228,52508,130398,10419,33229,33226,33225,43592,156027,156068,33223,156069,79404,156070,10416,10418,10421,67756,136155,78581,156158,67777,139753,53467,53468,67719,67724,67740,10718,67738,38458,121916,67737,67754,67755,150588,67709,123963,67732,67728,67710,67743,67741,67744,137891,156161,67739,156160,67831,67832,67784,67778,161710,161702,67711,67782,67783,67758,67757,67781,67768,134423,67780,67771,67770,67753,38321,53469,53473,53474,53475,67715,67718,67721,73921,38164,40385,38378,110821,56630,156159,67833,200837,110671,132135,132134,156155,67834,739,53466,67725,67733,67764,67746,67729,119179,67766,67760,67759,67763,53470,53471,67716,67723,53472,67720,67769,160923,160924,160925,160926,160927,160928,160929,160930,160931,160932,160933,160934,160935,160936,160937,160938,160939,160940,160941,160942,160944,160945,160946,160947,160948,160949,160950,160951,160952,160953,160954,160955,160956,160957,160958,160959,67774,160943,112342,67726,67785,67786,67714,67730,67742,67765,67787,67745,67713,67767,67762,47606,156156,38317,67773,123015,67735,67776,67750,67752,67751,67749,67748,67747,67717,67775,67772,67731,67734,67736,59484,52667,5270,156053,40574,40575,53180,53181,38637,38563,38565,41024,206717,37106,52002,67816,51433,52006,67807,51438,206723,51331,67821,51430,52008,51441,67811,52535,55456,55460,51426,206715,206720,206713,206718,206714,55447,52536,48780,65820,133906,51445,52011,67812,134413,52001,67817,51431,51998,51427,67810,52010,67809,51444,206709,51425,206707,55442,55439,134412,55458,42968,52550,52551,206702,55061,52543,52524,52525,52526,52527,208474,52537,206710,206708,51336,67827,41021,41022,57621,52544,52545,740,52007,67814,51439,55451,55444,55455,51329,67822,51332,67829,51434,51328,67823,51330,67820,52004,67808,51436,52548,52003,67815,51435,52547,206721,38830,51999,67819,51428,51338,67830,51440,51333,67825,51334,67824,206712,55443,55452,55449,153987,40576,206711,51442,52546,52000,67818,51429,52009,67813,51443,52513,52514,52516,52517,52518,52519,52520,52521,55450,55461,206722,52542,52538,206705,51424,41023,206719,125149,51337,67828,51432,206704,206724,52005,67806,51437,55440,206716,40580,38512,55435,55436,51335,67826,206703,206706,55437,55438,55441,55448,55454,52530,52531,52534,52528,52529,55445,53509,90918,54494,10563,90924,90917,37839,10589,130389,131354,90912,97202,97200,97207,97204,97210,97201,97206,97205,97203,97209,97208,52510,54493,37931,40337,41264,49293,53433,111177,90914,10583,10587,90909,54508,54507,54501,54497,55249,51449,54499,54512,97175,97174,54513,90913,737,54492,40579,54505,54506,90922,54498,10584,120698,42826,97231,51446,51447,53434,90915,90919,38313,90910,54516,54511,10565,10571,90911,90916,10588,10580,39747,54514,54504,54503,54515,10569,741,49292,102550,54495,37900,90926,10574,39749,10577,90920,90908,54496,90921,54500,55040,40577,97241,37949,30478,5907,10568,54510,90923,54502,10560,90907,97189,97218,736,54509,97236,52553,90925,37868,51504,67799,51506,67795,51494,51495,67791,51507,51162,67800,40702,67356,51163,67801,51159,51492,67789,38171,38172,51498,67792,38106,51161,67788,38506,51500,51501,67796,53440,51496,51497,67794,51493,67790,51503,67802,11606,51505,67798,153951,51502,67797,51499,67793,3425,54697,54698,54699,54700,119766,53500,156035,69503,153953,53454,53501,56637,53182,53498,53499,53183,54471,107645,38095,37866,3532,109736,52471,53184,53185,225259,43163,109734,40406,38577,109735,109738,52472,53186,226375,37829,861,41806,53187,53188,37686,38471,38663,54461,54462,54463,54464,53824,71477,109737,97184,51558,53189,52470,53190,53191,53192,33304,52473,53193,53194,54389,53195,40520,40521,41033,4648,53289,119790,40394,40395,11764,11769,11771,40468,40938,40939,134221,37918,41813,55267,36791,51171,36788,51168,36790,51170,36789,51169,36787,51164,40571,40950,37712,54390,38292,55268,55019,40480,40481,41008,41815,41808,55056,55018,40967,40968,41818,41807,41816,41817,41809,40961,55054,55057,40941,55050,55051,33313,36786,51166,70315,8781,8782,8783,8784,8785,8786,41810,36785,51165,41814,137892,38646,40942,55270,55269,40945,54349,56177,55266,41811,41812,11770,40943,41013,40962,55078,134217,41016,36655,51167,33332,51172,47213,40944,55052,36576,51512,134418,134414,134417,134419,51513,51514,36543,36547,36572,36573,36539,134420,134422,36565,40532,10476,55058,78576,134415,51173,67803,36540,36559,36561,36560,36563,36553,33237,40531,133995,36548,37901,38579,36558,52046,51191,36678,51527,36549,36555,36554,36552,36578,36579,36676,51526,36680,51525,36690,51529,36685,51528,36686,51530,36567,36570,36569,36562,36551,36568,36566,36677,51524,36682,51523,36675,51522,36679,51520,36683,51519,36684,51521,36585,36588,36582,36544,97237,51515,36546,134411,134416,134421,51174,67804,36542,36571,40526,36581,36545,53259,36580,42825,36577,36887,51175,67805,36538,97165,97215,97214,97190,36574,36575,36541,36681,51531,36556,98642,36550,40669,40413,55272,132318,132316,36733,51197,40548,36728,51192,36730,51194,132317,36731,46795,51195,55479,138933,36732,51196,38886,40533,56176,156143,36876,51535,132312,54456,54457,54458,54459,54460,57638,38247,38245,38278,38280,54025,55100,154009,164723,164721,33560,51200,38581,37663,36729,36877,51193,51536,132314,36875,51534,131412,38607,38608,36840,36841,51190,82022,38507,59119,36734,51198,156142,33561,51199,38623,164722,38769,132315,54450,54451,54452,54453,54454,132313,38671,38672,38669,38670,38668,164724,55273,38782,36878,51533,54449,54455,132319,38916,97216,164719,38891,33562,51201,51470,67844,3639,51475,51464,51466,51461,51487,51489,51480,57873,51481,36639,36640,51203,40469,51453,67871,67856,67847,51463,51454,51462,138932,51478,51472,51202,57937,67860,67864,67867,67870,67865,67869,67861,67846,67852,67857,5311,51537,67835,82024,67848,51491,51485,38138,40425,51486,51474,36693,51540,51457,73728,51455,38812,51458,67851,51460,138931,51456,36673,51539,41379,51476,51479,51484,51473,51482,51477,51488,40572,40573,40426,51465,51490,51452,51468,51467,67872,67862,67841,67859,67855,67868,67873,67866,67842,67874,67875,67863,67850,67858,67849,67853,67845,67840,51459,51471,59266,38325,67843,51483,51469,33317,51545,67854,97192,141210,34757,38576,153955,38845,38846,37677,55459,226636,154042,34756,73922,37869,40549,37898,37899,53167,53168,38857,126883,127565,38194,37984,38764,38765,38023,38024,38697,38059,51204,34752,126882,34758,38711,37975,37711,38299,38300,38611,38294,53169,53170,52509,40590,38397,38551,73807,37806,37807,37857,37858,37889,37962,38113,38224,38225,38227,38228,38364,38557,38655,38681,38858,79354,38185,38186,226634,226635,38326,38699,66772,150382,150381,74807,36866,51226,38597,7918,34759,75725,60815,126881,38675,36867,36858,51224,36861,51693,36862,51695,36859,51696,51692,36865,51690,36863,51694,36868,51223,36860,51691,36864,51697,34755,34751,56532,51160,40555,38305,38301,38302,54051,38054,38055,34750,53171,53172,55083,55195,53173,53174,38472,38828,37639,38694,38695,38084,38085,38406,38407,160536,34753,34754,64539,56633,127563,226637,226336,53178,30750,30756,30758,30757,30755,30753,30754,30749,30751,30752,30759,37994,96642,38003,38004,38843,38844,38741,38742,38168,37937,37938,38234,38235,38151,38152,37799,37800,37801,38744,38745,38189,38190,38191,38558,226599,226600,226591,226595,226590,226592,226337,226601,226602,226597,226593,226596,226598,226594,30347,51556,36857,51225,46798,51205,60821,46799,51206,60822,46800,51207,60823,46801,51208,60824,46802,51214,60825,150502,37822,37906,37907,37972,38079,38080,38316,38793,38894,127562,46797,51553,60820,34748,97217,97188,38922,38058,60862,156248,34749,155381,38081,38082,37880,38610,38621,38819,38851,51376,5363,51551,37706,37707,213219,5341,51276,5340,51277,56640,51247,225897,37069,37953,51209,51344,51348,51371,51372,51365,51366,5365,51550,56631,56632,5342,51279,51383,36674,51516,156066,51341,51361,51360,51353,51363,51354,51359,935,5364,51548,5366,51552,37019,213218,50906,51538,51349,37068,51358,60926,60914,51222,38439,5362,51549,51350,51356,51355,51378,51379,51367,36687,51517,36688,51518,51370,51368,51362,51352,51369,51364,61085,51385,51384,51387,51388,51386,51382,51345,5360,51546,51347,37066,60911,37064,37070,36885,51580,62637,10152,33657,55759,51343,51375,38561,51381,5361,51547,51346,37067,51380,51340,5339,51278,51377,40388,51339,37063,51373,51374,37020,37065,51342,51357,60913,60917,60934,60912,51351,38801,36626,51639,36704,51599,36758,51670,36753,51665,36746,51658,36738,51650,36739,51651,36744,51656,36756,51668,36740,51652,36745,51657,36748,51661,36757,51669,36750,51662,36754,51666,36741,51653,33545,51213,36743,51655,33558,51573,33552,51570,33546,51578,33539,51563,33554,51571,51572,33556,33553,51569,36736,51221,33538,51564,36594,51607,54020,36700,51585,33537,51562,36598,51611,36622,51634,36623,51635,36590,51603,37554,36708,51587,36696,51586,36699,51589,36698,51588,36564,36615,51628,36614,51629,53179,5274,11863,11864,11865,11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,36755,51667,36583,36633,51218,36697,51597,33543,51574,33548,51215,33535,51561,36694,51581,40424,36591,51604,36609,51622,36613,51623,36611,51624,36610,51626,36604,51617,33540,51565,933,67353,33536,51566,36702,51601,40599,36706,51583,36599,51612,36707,51584,36709,51591,33797,36703,36737,51596,51648,156244,38346,36557,36608,51621,36695,51595,36600,51613,51582,36713,36711,51598,36606,51619,36705,51590,36605,51618,36603,51616,38469,40487,36701,51600,36714,51594,36842,51216,121880,36628,51641,36629,51642,36752,51664,36751,51663,36759,51671,36749,51660,33549,51576,40680,36617,51630,36620,51633,36619,51631,36612,51625,36602,51615,36618,51632,36616,51627,36635,51646,36584,36634,51645,36587,36637,51220,36638,51647,36586,36636,51219,36632,51217,55029,36595,51608,36710,51592,36597,51610,33551,51568,40346,40345,33547,51575,33542,51567,33557,51212,33555,51211,36593,51606,36621,51638,36747,51659,33544,51577,40655,36631,51644,127252,33541,51210,36596,51609,36630,51643,33550,51579,36627,51640,36589,51602,97223,97224,36742,51654,33798,36624,36625,51636,51637,36760,51649,36592,51605,36607,51620,36601,51614,36712,51593,37882,37883,40393,33314,51767,9460,33955,9226,55495,78551,943,40546,33951,10711,38464,40486,38078,9369,9370,33956,33957,33954,9227,40415,40544,40545,9461,932,938,36735,51675,40564,37813,38112,30868,119781,9237,33505,37680,119209,941,40569,9368,33950,33952,942,9225,9459,134219,33238,33235,33953,120942,56287,97170,97194,36654,51676,38880,38103,36656,51677,53301,33236,34680,51680,150589,34681,51681,34684,51684,34687,51687,34682,51682,34678,51678,34685,51685,34689,51689,46314,34686,51686,34683,51683,38854,46315,46316,46317,46318,46319,46320,46321,46322,46323,46324,46325,46326,46327,46328,46329,46330,46331,46332,46334,46335,46336,46337,46338,46339,46340,46341,46342,46343,46344,46345,46346,46347,46348,46349,46350,46351,46352,46353,46354,937,37820,38796,38797,52090,34679,51679,38762,38441,54038,58940,38117,38631,38632,38636,34688,51688,120619,52105,79183,40700,40307,40299,40300,40301,40547,46313,97232,40305,40306,40308,46333,73729,40302,40303,40304,134220,126615,54027,54538,159738,58889,159736,159735,931,156067,55067,41268,54359,6540,130275,130387,38534,54028,66238,127250,862,51228,51700,940,38040,38041,38042,939,5309,51699,30760,945,38743,944,129656,930,32995,51698,221002,54291,10770,10771,40243,10765,10776,10767,39253,37708,216482,216481,213269,216480,39254,10772,205395,10779,205399,10747,205394,38541,10748,10768,10753,10774,10773,10764,40244,71903,10759,33209,10782,10752,55109,10763,39257,141203,10785,10749,10750,10754,39255,10783,10755,3868,10766,10784,71971,37718,10780,39256,10757,10758,10751,10775,71956,10762,11574,11629,40245,10745,57516,10781,39259,205401,205396,205391,205393,205402,205398,205400,205392,10746,71885,10777,10778,39258,54062,54059,97166,73730,10756,10769,54060,54061,205397,46818,47522,67708,53489,53490,51238,36890,51702,51704,36891,51703,51236,51237,51233,33316,51239,51231,33315,51234,51232,51235,51240,51241,51242,51243,51244,51245,51230,82023,55065,38829,40676,40677,57951,51229,40801,936,70403,40363,5368,51249,53496,40615,36883,51248,53492,53491,53494,53493,51920,224145,41821,41822,41823,41824,41825,41826,97233,40804,40805,37683,53495,53423,53424,9870,52061,39886,37574,36808,51721,36802,51715,36798,51711,36537,51707,36805,51718,10402,36811,51724,36813,51726,36800,51713,36803,51716,54198,67686,128247,36810,51723,6526,10401,41047,38140,36796,51709,36901,36821,51734,10400,30604,36536,51250,55060,40596,38218,33559,51763,53485,53484,160568,53483,53486,53487,10399,119782,36817,51730,38818,36809,51722,36816,51729,36820,51733,116630,36822,51735,37575,36804,51717,36799,51712,41837,41838,41839,41840,41841,41842,41843,41828,41829,41830,41831,41832,41833,41834,41835,41836,36812,51725,41053,40509,41049,41050,53482,39884,36807,51720,7991,36814,51727,97185,97171,36815,51728,36801,51714,36819,51732,36806,51719,36797,51710,36818,51731,39887,55250,225901,38390,38594,9856,33318,33319,33320,51764,38132,33948,37631,47751,225900,225899,40592,41844,51557,9884,40625,51253,51254,5319,51947,5316,51943,5324,51951,5325,51952,9873,155790,9874,9875,51182,9882,9867,9869,9864,9866,9868,33488,40643,5313,51940,5323,51950,85918,40272,70322,10000,10059,223177,51280,40788,30736,32951,9858,90944,124910,5322,51949,40619,5321,51948,90945,52910,5312,51939,52552,38605,38902,40622,54055,43589,52522,52523,51184,119748,38837,37817,156042,51188,52540,51181,56793,9849,9863,5315,51942,5318,51945,51189,57685,9871,54387,90943,109792,40792,9859,5314,51941,38057,40396,40397,213228,9861,52515,51185,53444,71098,9847,43409,10060,9848,9857,33819,69642,38239,40536,40652,51187,58935,51183,95179,219358,30737,58878,51282,51283,40626,40660,40661,40662,97240,5991,52532,52533,141201,5320,51946,55271,55465,5317,51944,51180,51186,40933,40934,40782,52023,52021,52027,133466,133465,9885,33498,35128,43427,9851,9852,52031,9886,9876,9854,9855,52015,10061,10062,133457,37153,4110,9872,109838,4109,30821,51780,52028,52016,52020,52026,56203,52029,46796,51252,52018,52032,133467,52033,52025,38070,133463,9883,62540,38110,53266,52019,52024,52017,4115,133462,30820,51779,52047,58747,133459,133455,133454,133456,53299,129263,130610,130611,4114,52058,133458,38850,38545,38546,133460,133461,133468,133469,126853,53267,133472,133470,65614,36853,36854,36855,36856,51775,51776,51777,133464,9850,53268,133471,4111,4112,9853,52057,52030,53269,52034,30825,51784,30831,51790,30826,51785,30828,51787,155849,213220,30827,51786,30834,51793,30832,51791,30824,51783,30823,51782,30830,51789,30833,51792,30835,51794,30829,51788,53271,40277,53270,53300,53272,133473,40629,102552,119207,73763,30822,51781,52022,55646,4113,53273,33525,53459,55774,38704,156044,156147,10835,10834,10836,10838,10842,36653,51257,36652,51258,9881,5367,51778,10710,73622,53290,73619,9879,55124,53431,53430,10841,52901,55009,37855,37856,73623,40586,37664,73624,55026,860,9887,30346,51255,51393,10839,9878,33494,10840,37836,40587,73621,73618,155802,213214,73620,10837,9877,9907,73617,55028,10833,97198,97193,97191,97186,97187,97225,97228,97167,40772,40829,9880,97239,97238,33497,5370,52051,5382,51928,41804,5377,51923,5369,52050,73733,73754,54355,47672,5380,37072,51926,5383,51929,5392,51938,36880,51177,37993,110846,5390,51936,5386,51932,40273,36879,51176,5385,51931,223679,5374,5389,51935,52055,154066,9889,54360,10056,41801,34777,93481,41802,50019,41803,5373,52054,5391,51937,73782,5371,52052,5379,51925,5381,51927,50021,5372,52053,5376,51922,5378,37071,51924,33496,9888,36882,51179,50020,5387,51933,5384,51930,53388,50017,47523,5375,51921,97172,40771,50018,53508,36881,51178,5388,51934,40708,55064,90930,90933,40689,9890,90935,56858,10049,43414,10050,47659,90937,36837,51982,5328,51261,5329,51262,5332,51263,5330,5331,51265,51266,5333,51264,30848,5338,51271,5335,51268,90932,54019,55108,90934,35106,90942,55063,36670,51965,36666,51961,36668,51963,36660,51955,36665,51960,36663,51958,36667,51962,36661,51956,36671,51966,36662,51957,36669,51964,90941,5337,51270,36826,51971,51983,36832,51977,36827,51972,36830,51975,36828,51973,36836,51981,36834,51979,36825,51970,36824,51969,36831,51976,36833,51978,36835,51980,36829,51974,36838,90928,90939,90929,90940,10063,10064,38674,5336,51269,37948,54037,90938,10051,9966,10052,43410,10053,40510,90936,5334,51267,36664,51959,36672,51967,90927,36659,51954,36823,51968,5326,51259,97219,97220,97168,97169,97229,97230,90931,5327,51260,50847,82276,53503,41068,7833,10042,10043,32981,33330,52044,56302,30797,30798,30799,30800,30801,30802,30803,30804,30805,30806,30807,30808,30795,30796,41063,51281,32977,33326,52040,56298,32973,33322,52036,56294,9891,9892,61199,51157,7843,7845,7846,32982,33331,52045,56303,10048,10041,7849,51987,51988,41020,7844,7847,32980,33329,52043,56301,126956,51995,30636,32974,33323,52037,56295,164219,221108,9896,40275,7841,51985,32972,33321,52035,56293,40613,40614,9893,9894,118796,7840,47661,40834,53505,51986,37912,51145,41064,9895,32975,33324,52038,56296,37713,40832,40716,62627,51993,40583,51284,51285,51286,51287,51288,51289,51290,51291,51292,51293,51294,51295,51296,51297,51298,51274,7830,7832,10066,10065,7834,10039,51994,73783,7831,51991,40558,10040,32979,33328,52042,56300,41060,51992,51153,7842,51989,53458,213222,53507,7850,37152,73723,73724,32976,33325,52039,56297,118890,41075,55120,7839,32978,33327,52041,56299,10045,10046,7837,7838,7835,7836,10037,10038,51154,51990,51273,60896,30477,7829,51152,97221,97222,10047,51155,51156,82277,7848,5255,73734,55004,55066,5256,9971,10572,7354,5254,224453,37911,73732,5253,70216,54517,54518,857,72323,47662,10035,10036,38658,33239,37149,70348,52048,3870,52049,110853,40670,40727,10034,10033,224149,53504,213246,10032,117707,56518,126935,69654,67779,40761,69655,73739,73740,40753,67690,40818,40819,10586,73725,73726,73727,55647,67691,67694,67697,67695,67692,67696,79361,67693,10030,10029,40823,97181,97182,97226,67704,39316,38414,10031,43423,9898,38093,212466,212463,212465,94490,56331,217916,71354,57632,10798,71352,47660,56525,56526,56527,56528,56529,56530,56531,52888,52889,212460,212462,212461,73735,52890,38283,71355,33240,38337,9994,71359,71362,71361,71363,71356,6301,9995,38508,212468,212467,71360,212464,73753,844,40750,71353,71357,71358,9997,66678,40439,40767,97234,40825,40766,40763,208519,858,50846,73778,9992,9967,41048,125296,60794,60795,60796,60797,60798,60799,60800,60801,60802,60803,60804,60805,60806,60807,60808,60809,60810,38552,38233,10567,9990,9991,102719,53506,110695,9993,73762,9899,11626,35136,40279,97195,60793,52512,213209,38709,55077,39757,138516,164652,139759,162313,164711,53519,220349,164622,6838,164605,111767,38069,98192,41090,41091,65813,213251,137207,37722,40709,40710,57965,55049,60819,156061,213205,73917,73758,55045,121878,163752,154837,65642,55073,164666,55047,73918,40741,169180,164691,164642,164649,55048,8770,119734,164709,164710,72871,138513,127568,134218,40837,57550,138515,129268,9901,164708,159901,65811,10788,55075,164621,164633,164623,164625,164631,127564,73982,213210,53523,40711,127566,127567,41147,164639,164641,164640,164637,155383,52541,213207,52539,213208,169181,36520,131483,37151,73414,128671,213227,61201,41150,41151,41088,41089,97211,97235,97212,97213,53524,53477,56624,164608,164609,164627,164628,164612,52549,213206,138514,164668,164634,164615,164613,164635,164651,164648,164604,164616,164618,9903,213202,57493,164636,164663,120656,9984,7979,65791,9908,65790,9981,9988,9989,9910,9911,37804,7996,56191,65795,40559,86481,156100,40404,37653,38809,40814,40724,40725,56523,41325,40584,859,41380,9904,35133,60882,60883,57494,60881,40276,9982,9980,38489,65792,7859,9983,213234,56524,9900,40278,48580,40479,65794,65793,7977,7978,38790,9986,9987,10058,38923,97199,9902,102715,9909,102717,38876,9906,35122,43421,7980,9979,10744,54527,54522,40745,10581,52077,9975,54525,54528,54537,60861,101929,40707,101931,101930,54535,38022,34677,219605,47636,154032,54531,224454,60855,55428,10561,9977,60857,54530,213250,60859,54534,40815,55434,140361,60858,9978,60886,7921,7885,7924,7959,7889,7899,73776,75745,7983,54536,40905,10811,30878,60853,60854,54524,54526,9976,61320,54521,9912,54523,121537,60856,9996,9998,40717,9985,75715,54532,54529,9974,40762,54520,55427,60852,729,55430,55432,60860,10809,32954,55431,55429,55433,10808,54533,40742,53502,7928,7916,38705,38706,38707,9230,35132,7912,7963,7894,7887,7966,7901,7913,7965,7964,124707,110975,10554,9944,72024,72025,160512,39751,55037,7942,7967,7895,7943,7961,7908,7897,7888,7915,7900,7920,7893,7958,7906,7911,7939,7957,7886,7898,7892,7890,7955,7953,7944,217071,7884,7941,7881,11628,35123,43418,40809,7984,32781,7860,72865,7882,7880,7879,125056,60877,60878,32779,40817,38727,7902,7877,7970,7931,7932,7960,7971,7950,7973,7972,7940,51020,51021,51022,51023,58548,6255,51019,10582,38035,71381,30879,9973,60880,7878,40280,60876,7875,7876,7873,51017,60887,169070,7874,7933,51018,60879,46905,7780,7852,7853,7854,7855,7856,53795,53778,73800,53805,53798,53776,53772,221912,53789,53766,53768,96638,96639,120881,164706,53764,53763,53765,41143,53695,53696,37563,53755,53516,53739,53689,53690,53634,53635,53706,53707,53708,53732,53733,53770,53769,53771,41800,53614,53615,9972,155791,53626,53627,53520,221913,9939,9938,53664,53665,37566,53749,53750,53680,53681,40885,40721,10558,53793,41108,7987,221914,221916,55121,37567,53711,53712,53713,53723,53724,53620,53621,58202,34874,34883,34884,34885,34875,34876,34877,34878,34879,34880,34881,34882,53603,53604,217912,41122,53639,53640,53693,53694,53600,53601,53602,53598,53599,53641,53642,53628,53629,53632,10832,33215,9231,53803,53804,53691,53692,53636,37573,53645,53646,53702,53703,41120,41121,41096,41131,41138,41141,40756,40757,37559,53612,53613,58203,53651,53652,37560,37561,53630,53631,53655,53656,53657,53661,53757,53794,53797,53787,53762,53753,53754,53670,53671,37570,53605,53606,53697,53698,53799,221918,53737,53738,70784,7851,126974,54953,9940,221917,53725,53726,53727,53740,221915,37564,53618,53619,37572,53716,53717,53734,53735,4646,41124,156040,53790,10028,109789,53788,53806,53780,53758,53796,53801,53759,53781,53792,53800,53777,53811,53779,53773,53802,53761,53784,53782,53767,53786,53791,53756,53775,53785,53783,37571,53678,53679,53672,53673,53760,53624,53625,53736,53668,53669,33499,41132,53622,53623,164707,74805,74804,37568,9941,53746,53720,73415,53643,53644,37562,53741,53742,53653,53654,53610,53611,39310,53676,53677,213223,53747,53748,38513,40706,38786,37557,37558,53752,58204,53674,53675,53662,53663,53647,53648,53649,53650,53745,53728,53729,34873,97176,97177,97178,97173,41145,41144,204943,53812,53637,53638,53658,53709,53710,37556,53743,53744,53616,53617,53714,53715,53666,53667,37569,53721,53722,53704,53705,53686,53687,53688,53682,53683,53699,53700,53701,53730,53731,38200,53633,53684,53685,53607,53608,53609,53718,53719,37565,41128,53659,53660,53774,53807,53810,53809,53808,58205,7986,95380,60874,33489,60864,30508,30509,30510,30511,30512,30513,30514,30515,30516,30517,30518,60870,60871,60868,7866,10801,30275,30880,73909,30310,30311,30312,30313,30314,30315,57762,57763,71038,71039,71040,71041,7871,7870,7864,65927,38362,38361,38291,9935,63242,7828,7985,60872,60875,60885,60866,7988,32784,7865,7863,120882,9936,9937,10027,48244,10812,60873,40718,60867,7862,154415,154012,40746,7872,156251,156046,7869,7861,60884,60863,97196,97197,40768,7867,7868,60869,60865,210458,210456,210481,210454,210448,118033,10585,10556,210455,53985,210452,53990,30491,30484,30483,30481,30485,30488,30482,30486,30490,30487,30489,225890,210457,61070,10570,30886,35125,10564,204063,53987,56198,154121,61163,32782,210451,96637,210453,56199,10797,33127,40758,9933,9934,30290,43426,49135,9932,35130,38392,53983,53984,53980,53982,53989,53988,57764,42813,56195,210477,10818,52484,204071,204069,204075,204074,204066,204076,204068,204064,204067,204073,204072,204070,204065,10814,56197,7990,7994,32780,40751,154416,204062,53979,30480,73625,97183,53981,210449,56196,53986,210450,206585,7995,210416,40895,60665,154417,9926,9927,156047,9302,9945,54952,56861,56860,56862,56859,56863,30504,9159,38382,30494,112672,32785,10024,10025,127826,131837,38833,7951,9924,9925,43416,72889,30503,30498,30506,30501,30497,30493,30499,73908,10805,9391,10810,9928,9930,9931,33495,90727,160535,30502,30492,38816,30507,30500,30505,30496,30495,11584,62628,206507,90596,90601,40769,40760,55012,40712,9969,40888,7962,40723,9444,9381,51106,90600,10557,112335,40737,219690,37062,40740,40744,40743,40749,59168,40720,9387,9241,7934,9275,90598,7930,7945,7946,7969,7952,7949,7891,7954,7883,7905,9307,65928,40557,55015,9076,90595,90597,90599,56272,56275,10398,7781,40770,56273,56283,56274,9232,7935,7936,154418,90591,90593,90592,53975,79132,38391,223868,9305,6468,61124,32783,10022,10023,9353,37915,10579,213217,7909,61126,61125,9438,86482,37886,130274,40860,10573,213249,55039,37867,221104,54539,61127,9385,10578,35107,50778,213215,52554,50849,213216,55493,55038,126516,37808,9303,38387,119622,119623,40585,10021,9923,43419,117679,9922,10020,11625,9286,131470,30877,41069,66237,57097,55752,58209,60922,6470,61129,204944,224397,38064,119618,119619,119620,48245,74813,213212,110100,40861,40651,61128,6469,38713,38714,90588,38492,61131,61130,60924,60915,60932,60921,79395,79396,37893,38853,90594,215957,7810,7809,7816,9414,10019,215959,7807,164718,7817,7818,7805,9441,7826,9916,9917,9918,35127,48579,7808,7827,7814,7806,7802,7803,75713,10017,10018,7823,7798,9378,9377,164720,67877,67886,67878,67879,67880,67881,67882,67883,67884,67885,215960,37862,10566,38323,55361,59125,156065,7815,11576,35129,43422,50848,9921,35135,43420,9411,164714,9437,40878,7819,7821,7811,7812,7824,7825,7799,7820,9274,9308,164713,7801,7813,7804,164717,40373,40374,10026,7353,215958,10016,215955,215954,215953,164716,164715,60925,9424,215956,7822,7800,4645,9914,70189,74775,9253,38156,70198,70196,9247,38766,9913,43412,62327,43413,9965,10817,10815,10816,11575,35124,43424,49134,70194,9388,9376,40930,40931,54021,54022,9386,38781,10576,225196,55191,60916,60931,10068,35131,9963,9292,9293,225197,67705,10014,41193,70201,70203,119669,119661,70192,69656,53175,53176,119667,40512,10803,75702,70200,70199,70202,119670,6569,52511,40389,37552,37553,70195,70197,70193,37555,60928,41025,10800,30873,9267,67702,9266,55756,9970,11624,35134,9235,47524,67699,55265,213248,9229,9383,10792,61205,40274,40842,40843,9374,9439,67698,67701,40983,40932,67703,40540,40951,59058,43059,9358,9382,38385,40914,10806,10794,30874,9248,9443,9243,40845,40846,40847,9964,41056,40641,40875,41018,40873,67700,40863,40972,40973,10011,43411,38841,102553,41277,11620,33491,43415,9238,10009,10010,136249,40925,126617,53462,9958,9330,38494,9959,9960,10067,11622,53465,40597,53464,9300,9346,9347,10013,9289,10813,54986,9269,40928,40663,53461,38440,9375,9228,40959,41289,38075,40839,40840,38000,40911,41029,53460,40849,97227,41014,53463,855,11621,9957,9254,38104,30885,49133,115460,33859,56310,110480,9410,9429,58890,10003,40936,9326,9328,10004,10006,10007,119744,9955,42024,9457,9384,9415,60918,867,9291,40924,96640,62318,40848,10831,53177,33490,41175,40872,58891,40692,60919,60920,60933,40915,9956,131148,56268,9255,9256,9257,9258,9462,37150,72890,9236,41037,107226,9371,9372,54487,73798,9246,9343,107228,156063,32971,38197,35126,43425,49136,8668,73805,9350,40982,9421,11640,55099,73759,40922,56271,73803,9284,10575,107229,56267,56269,133875,107212,56270,106231,56266,107227,9953,9954,43590,11617,78631,156064,222919,10724,9449,9259,9352,9344,9234,79167,10562,206850,9281,127879,10727,41000,9322,41086,9428,10726,10725,222920,9250,40633,93311,40871,9251,9367,9442,10720,10728,40953,9952,213382,41009,40869,41180,41010,40997,10721,10723,40874,10722,213381,40998,40927,9299,9408,9260,9264,9265,40935,856,9354,33306,9436,33662,33307,33308,37576,9324,9325,32854,40853,40926,9949,9968,9961,9962,9450,9285,9417,9268,73792,43417,54382,75714,33493,9294,10001,10002,40644,921,9452,9453,41001,41002,41003,33309,34946,78638,40657,9950,9951,73752,43092,38462,156118,9261,9262,9263,9342,9412,41004,9278,41072,39752,9947,9948,38157,9363,70215,40984,216023,9423,10719,123964,70327,38549,9454,54358,9304,9390,95365,9392,41163,56265,9351,9323,9451,79372,32953,137898,69552,9419,9420,9406,9394,41080,41066,41067,137893,205639,134125,30526,30527,30528,30529,30530,30531,55031,40864,53751,9273,9355,9356,121892,59169,55016,4633,163745,65808,38319,41032,112336,40993,40994,78564,922,9446,91422,9389,55036,9340,9341,73742,9249,156245,9329,67706,9240,55043,10559,41038,41039,9306,9321,9298,73916,67707,40948,40949,9244,9245,41043,40909,30291,9239,66398,72085,209609,209613,37827,53973,67761,9338,9339,65886,209617,53497,62541,56292,67712,53974,9362,78574,9405,40859,9398,9272,9320,209612,9396,9279,209610,41970,209616,209615,40977,40978,110685,209614,55053,56697,9422,54023,9448,9334,9335,32853,41178,65643,9373,155856,41035,30847,9277,9360,9361,53455,66242,54704,9296,9297,54705,40923,225894,6563,212409,40988,40989,40990,10787,9447,163499,920,9290,8708,55005,9416,41172,226181,868,9317,9318,9366,6477,40981,60930,60927,60929,56905,160567,55006,56901,33830,9359,56903,30292,119673,33836,33834,33838,33839,156041,33835,33829,56906,9395,9233,55003,200560,33833,33837,56902,33831,33832,163321,56907,33828,56904,9242,9407,9445,41093,41094,9316,55030,41960,55027,97179,97180,40964,91872,9393,41005,41006,8709,9403,9327,73750,73770,10804,10790,10795,10789,40957,40958,224088,224089,9427,55034,9349,37927,37837,9397,9365,38823,60923,40852,40974,40975,41078,40952,96651,9301,54553,9313,9430,38599,41167,109791,9426,9333,54353,102479,9400,40986,55055,58207,9315,209770,40593,71077,59167,60684,79402,224090,41011,41012,10802,32956,9434,9288,159730,9252,9271,9364,40954,40946,41099,126973,9295,9331,9332,41081,225255,32955,40960,41097,41098,124940,70352,9283,41015,126975,9282,39816,39815,39817,9287,9440,55086,9399,9379,40979,39819,39818,55097,55089,55088,55092,55091,55095,55087,55090,55096,55094,39820,39821,10791,30876,9456,55093,139498,41160,110665,41126,9433,9418,9270,40996,41187,133388,41113,40313,40320,40311,40318,40312,40310,40992,40316,40317,40966,41057,55033,40314,40319,169116,9455,10796,55076,40315,119656,41085,110487,9357,119657,40309,70436,60671,130566,53197,53198,53200,62625,9432,9413,53212,53202,53235,53218,53240,53217,53238,70434,53203,53227,53201,53219,53220,53236,53214,53237,53204,53213,53226,53242,70438,9276,70439,155952,41058,41118,41119,9401,55262,53206,9311,70437,70435,6837,55767,53234,53209,53225,53196,53224,53233,53228,53229,53230,53231,53239,98194,9431,41109,41051,41052,9310,9309,204847,55007,37685,41019,9435,9425,9336,41107,41073,9348,55035,9280,55768,41055,162311,111731,10793,41159,41104,35144,6836,41168,138791,55062,208127,2759,117662,4603,53166,208361,67876,43322,60792,209608,55032,72090,119655,224162,43323,43321,121918,63222,164725,164726,2875,117661,41101,55212,162871,55206,55216,55218,162870,41116,55243,40729,55203,55239,55204,55214,55220,55217,55215,55219,55209,55211,139758,55234,41211,41110,33194,33185,33189,33184,41125,55236,33186,33183,33187,33188,33192,33191,33193,33190,55235,55242,38386,55205,55221,55213,55223,55227,55229,55226,55228,55207,41123,121128,55231,55222,55210,987,55202,55240,55233,55241,55232,55224,55225,55230,55208,33177,33172,33180,33178,33179,33181,33176,33174,33175,33182,33173,33171,55237,55238,119875,73407,136209,136215,62539,38604,33378,62538,30875,40971,136206,136218,136213,136220,136214,136212,136219,136211,136207,136208,136217,136210,136216,136205,38006,40969,40970,119681,41084,41137,41136,119682,37905,37654,40956,121134,37791,39754,119651,37812,40955,38105,38691,39750,169111,121131,37974,119652,121129,38730,40965,37985,40647,111728,37892,10799,110825,33312,33310,33311,55101,55102,110827,55105,156080,124705,110829,124706,55103,55104,110828,156082,156081,156079,58077,54482,6821,32739,6822,32738,121127,157138,8690,41007,225254,79399,40515,10598,41054,30520,30521,30522,30523,30524,30525,52078,102375,102369,102373,102376,102368,102374,102371,102378,102372,102377,102370,41186,74816,203015,2619,98400,2814,41130,7299,61137,128993,129815,137885,73915,215409,117675,119624,41185,103812,103810,61142,75091,103811,103807,103809,103808,58567,41111,111729,157132,40560,96641,41153,62707,62708,62704,119663,119671,62705,62706,38836,225889,65625,55084,65611,53518,166141,65804,65805,41156,65800,65796,65799,65806,41406,10605,65807,65803,52561,30615,65802,65798,30652,65801,65797,947,156062,54703,55071,37651,38785,8008,56868,55543,55544,156060,32796,12193,73911,41133,54402,41127,55068,37759,65630,41142,55069,156127,41034,121884,42784,42785,221051,84249,161706,42794,56436,144588,144587,2912,168700,144594,159750,37744,71320,58259,116675,3037,3036,58232,117652,203014,42793,168783,42700,42701,124444,208360,2913,42795,42746,42747,42748,42730,42731,42726,42727,42728,42729,3108,42721,42759,42779,42780,3056,59259,144589,53839,144597,144592,59470,144590,221052,221043,41285,9942,224086,53835,133367,111464,37805,144595,54049,153943,119923,133905,41103,55070,119924,131035,153939,153941,120939,153944,152782,154423,153947,130292,131143,133849,133850,43326,6835,55072,60951,60957,60953,60954,60955,60956,60958,60959,60960,60961,43325,60952,53275,119660,60675,125293,162233,162234,159453,119668,65644,65632,2805,55074,208017,222921,156132,224464,208386,65628,65629,119662,78563,52097,52101,52102,12195,52094,37870,57100,119674,2798,52103,2797,52098,55504,52093,52100,200834,200835,52095,54490,52096,52099,200836,65934,131847,156899,38931,5952,41155,119659,59485,119658,131903,119649,119666,58942,144849,144850,119628,156897,156898,55622,131850,41095,217499,217429,217426,217434,217493,151274,153567,130096,131851,119672,37760,6296,69541,55464,6562,75093,11324,120886,222923,71312,69528,55041,2816,71316,150689,70426,55463,73410,55042,53851,225891,62713,62715,62714,62716,160530,206740,65639,119665,58210,206741,37750,127163,168779,61143,37689,61154,61145,61151,61155,61147,61144,61153,106228,61146,61150,61148,57091,2909,56187,61152,56185,56190,2984,2796,2737,2876,2878,2877,53838,56189,56188,56186,129497,132517,61149,2738,54290,54440,62416,62417,159208,157404,62712,62711,159215,159211,150586,55263,159210,159213,62646,53296,34023,53850,159209,110483,62710,110484,159214,136204,53284,159672,159212,38929,119629,115462,115463,115465,115464,119664,30437,110482,30435,129345,129349,129353,124684,124683,125523,124685,65622,131897,71255,69386,56856,64548,160509,69540,129344,125518,102570,124686,65623,150568,124623,124641,72088,59971,55831,124660,6561,62645,55830,124650,124649,124624,124647,124621,124617,124657,55832,124638,124648,124655,124634,124653,124637,124642,124651,124652,124620,124662,124626,163853,65641,79386,215411,153982,119636,3126,36961,30457,36949,224091,48660,69538,73914,96652,95177,157139,151070,161705,157140,30415,30416,150378,96644,156131,156130,156128,156129,79406,61135,168781,168782,157141,151060,225895,30461,42736,42737,60670,166115,208128,37792,118968,118969,146700,55481,130568,38740,48792,2978,79317,54056,128940,54054,62543,73928,70208,111363,73569,55046,37786,37787,37788,34673,111362,119597,39743,204339,57876,69537,70799,50232,38648,32778,119646,124939,151050,119647,5951,32999,2458,2740,2741,124938,70318,6565,208394,81367,81366,59246,2927,2926,81365,81363,81364,59247,98196,2920,2924,2923,2925,2917,168853,81369,2916,42741,42742,42743,2918,2919,2922,3066,2921,57090,2928,139609,81368,81362,37737,117770,119608,119607,56304,50733,52364,73634,73654,57463,73636,73659,73665,73700,73680,50737,53848,50738,73696,57464,69526,73651,73704,73652,53849,73682,73655,53845,50853,73641,50741,73707,50731,73701,50739,73663,73684,73664,73681,73653,69527,2817,2818,2766,73662,73644,73661,156145,73657,2765,73703,50736,50740,73642,73643,2903,156083,73706,73640,50732,73697,73683,50730,53847,55546,73633,53843,73658,73708,50735,53844,73692,73693,73694,73714,73635,208392,54467,73699,73639,73679,53834,56802,73698,50734,53846,73656,153948,73713,154437,73712,73355,119879,30454,95143,33621,2457,30367,30368,30369,30370,30371,30372,62642,2742,208129,30844,52443,52438,95144,153981,30455,32777,3075,3074,52439,52442,52435,30402,52436,52437,52434,52441,52440,58349,37789,37790,65930,2943,2461,215413,58346,58347,103562,752,66542,753,32725,66543,778,66568,769,66562,70411,70416,70412,70418,70414,70410,70409,759,66549,776,66558,2767,2761,775,66564,777,66566,773,66561,774,66565,765,32724,66555,750,11579,66540,2762,754,66544,767,66556,771,66554,779,66567,166167,141011,772,66560,766,66557,199300,751,66541,768,66563,107531,758,66548,755,66545,30373,30374,30375,30376,30377,30378,30379,30380,30381,70419,756,66546,2951,111641,70413,70415,70417,770,66559,52092,70408,749,66539,757,66547,763,66552,153946,66569,780,126509,124917,30458,30426,2948,58978,98193,2986,144640,144644,2987,144642,144645,3019,2620,3018,2834,144641,2832,2833,3065,144643,2988,2989,78545,3020,124916,156030,69550,65627,30452,30456,65624,144639,65626,55466,57619,2947,2781,65931,2788,62643,151066,73912,161676,215438,2782,153934,161678,30388,204888,131144,3062,3141,2846,3145,2843,2844,2845,72087,62644,161677,30386,30389,209626,30387,208130,161675,208131,161679,30409,161155,111463,37970,163748,33080,33097,33095,11445,78567,33086,33087,33088,33089,33376,134648,2778,2779,33013,205600,153937,36972,33081,31230,157179,73930,56803,163749,46000,43260,131846,62700,2815,54401,159573,156696,156697,48455,57095,124848,73913,59522,2784,56865,42744,42745,33018,33019,119727,69504,2758,3150,7292,2826,2785,42764,42765,42766,42711,42712,2869,3047,3048,3049,33090,33091,48454,33083,33084,33085,153940,65935,123962,48456,129498,169112,48452,168778,96119,98854,222924,56330,48453,119769,65621,70804,153932,153933,154320,154319,33093,33092,33094,215439,215440,30427,33059,33082,153936,760,66550,761,66551,52487,72872,2745,42774,42775,95176,60361,2746,208196,42732,42733,42734,42735,2731,42755,42756,42757,42758,42781,42782,42783,2743,2744,2789,42713,42714,42715,42716,69525,130077,155429,60948,72091,107532,208133,62701,69536,208134,93946,161047,2787,36958,2733,764,66553,2981,3117,36970,2790,2827,2732,3070,2881,2882,2977,37771,37772,166405,38606,154322,153942,154323,33077,33076,33078,208135,104631,104633,104628,58339,33099,33100,2771,2852,3146,166294,208136,104634,104630,103734,3069,153945,33079,166404,125690,73705,55044,62703,30356,30453,33098,153929,153930,153931,153935,154321,65634,2799,3105,50675,3076,53841,153938,208137,38034,73630,6831,56867,124853,208138,73631,95146,166123,90189,125531,72032,95145,131866,72086,56329,2915,2914,42760,42761,42762,42763,3077,166117,42738,42739,42740,57159,57158,57160,57161,57157,139817,166121,74815,166120,166118,42790,42791,42792,166122,57156,72033,166119,65602,65598,127977,199112,71516,128032,127983,127982,127976,65604,128049,127991,128015,65595,128021,65594,128041,128005,125519,127990,65599,65601,65603,127989,2974,66249,30357,30358,30359,30360,30361,30362,65600,65597,150687,128009,128050,128020,128019,127988,159205,128002,127978,65596,37810,127995,81190,208139,125522,38746,38747,127979,128031,56699,62702,125521,160532,128010,156900,45786,59519,71520,30404,95148,126524,2960,2820,2754,2831,2821,2949,2822,2739,2950,2879,2880,2793,107530,54400,208140,11551,30444,95147,130404,30390,30164,30392,30398,30400,30396,30394,30393,30399,30397,30401,30395,30391,7289,206091,8070,30460,163857,156029,160564,78561,207776,125682,125684,125670,125667,125666,125683,125676,125671,125664,125687,125688,58550,125660,125673,37751,78566,125659,125674,30403,30354,73130,42702,42703,42704,3079,7291,39755,42787,42788,42789,3101,3102,42717,42718,42719,42720,160562,160563,69532,78573,3081,3080,125678,125663,125675,125672,211537,125681,2906,125686,125677,125679,11416,30124,54568,125685,125669,125665,125680,168852,125661,125662,125668,55812,55808,55810,55815,55806,3113,3052,3127,55816,55817,55811,55805,55813,55807,55809,782,55804,156074,55814,129368,207622,111466,33736,158530,54472,38898,158687,213259,72893,33732,59046,209607,70231,33734,33739,33730,73716,130295,2863,209611,209583,2941,2942,2772,69530,48659,56674,54473,33740,33741,111465,208141,33735,969,10601,158688,60660,33737,41157,56671,33731,33733,2862,169938,33729,56673,56672,45791,61207,30479,33738,133772,133771,135387,45783,45790,225886,30432,225883,225887,225888,30384,30382,30433,33503,30442,208142,225884,225885,30385,65640,208143,30383,95372,95373,2993,2994,45782,206890,206874,213268,119675,119679,30449,206894,206903,119922,130047,57495,3001,69531,206896,206905,206897,206906,206904,3008,206892,206898,206907,3003,206876,3004,3002,3017,37768,3016,37767,73925,3011,30440,69529,3009,208144,206883,45781,206877,975,71311,208145,140988,73408,110486,3015,3014,33377,30423,30424,958,126609,65936,2990,978,11604,76673,967,968,10600,980,982,977,10602,976,966,964,3106,83177,983,10604,970,973,974,963,971,965,961,962,10599,960,2874,45780,48658,2777,2809,2760,2755,972,981,10603,55480,76647,73567,71325,979,76620,157175,959,30837,39500,30836,82881,73645,73695,73690,73686,71323,73691,65638,73677,73660,30463,73710,45789,71313,43329,119925,73709,73687,73689,73632,73688,208146,73650,73637,214487,208147,37743,73711,73649,73702,2870,73638,73678,73685,128038,128042,9567,163155,128034,128027,128028,128029,84083,30363,82220,65938,84081,128046,206856,128022,127986,42707,42708,42709,42710,56173,127987,84250,128030,128045,208148,84082,62709,128040,102573,128039,224161,208149,128043,128033,128026,128037,127997,128025,127980,127998,128023,102572,54439,54441,128044,159999,31044,45776,141010,141009,31385,30407,30406,42705,42706,55510,55534,55519,144863,45773,2747,42722,42723,42724,42725,45779,45769,45770,45771,55527,55513,55529,45772,45777,55518,55522,45794,55531,55526,2748,55516,55521,2971,31045,32043,208072,50242,130098,208150,65929,55532,55533,208151,116678,116677,2983,45778,45775,45768,45774,127406,30162,37738,30364,58625,58624,215408,215406,215407,2786,110852,58623,2780,58622,2783,42026,71317,59501,59502,208152,58626,91219,102574,208153,124644,37778,30450,30451,33946,66785,134233,30366,144586,111699,124908,144593,144591,37753,33947,86120,124619,39192,39193,65635,2872,56279,57442,124618,30365,55851,208154,111253,124656,206510,54465,54466,54468,54469,54470,124654,208155,73409,124622,124907,156090,118809,156735,30408,69539,71315,156054,162312,124635,124670,55535,55512,55524,55528,55541,55514,55517,3107,55520,55539,55538,55523,55536,55537,55511,55530,55515,55525,55540,216485,781,133874,134409,217938,144596,126919,208156,206512,156085,118805,124663,124666,124665,124633,208157,124636,124669,118808,156087,118807,156088,117667,156089,118806,156086,73874,73872,73873,73875,96650,55852,169598,139692,50888,45787,2753,48662,50887,200833,10613,70429,115461,110476,163859,60949,78559,168698,139691,139688,2752,2764,42749,42750,42751,215425,2810,3095,3045,39497,2763,208387,67679,65637,139687,163858,208158,211560,139689,154039,139690,2864,168854,208159,220348,74817,3057,124673,2811,73871,210099,73404,127999,127996,127993,2812,3096,215403,127992,160801,128016,128017,128018,78558,141008,214169,45785,30459,160800,57089,33827,127984,128048,57099,71318,2736,215424,215418,62915,65636,4649,78557,65633,207994,128051,128001,128035,208160,160798,128036,103641,103640,208161,128003,127994,9827,9828,9829,9830,9831,9832,56431,128012,128013,128014,2813,30467,128024,127981,128011,160799,56430,56426,215428,215401,30429,215405,215429,215397,110490,215402,53852,130064,212047,60950,71106,215426,215427,133785,119648,70802,215423,39498,55111,75720,55482,60362,45793,215404,208162,55483,3061,55085,164727,124639,124640,208163,66239,37785,124643,30434,39496,41381,74777,165527,103852,165520,79364,102482,56427,124645,134326,30405,70803,165528,55820,165516,166408,215412,103853,103813,103814,103820,103816,103817,103815,223584,165519,151106,30446,111614,111615,41963,2966,165521,81232,2934,7284,2932,7282,124646,166297,74780,103851,215410,103819,165525,165518,74778,2933,7285,2935,7283,9825,9826,208164,56434,124659,151069,74779,166410,165522,103818,154102,154104,159198,94135,3068,213256,165524,94134,94130,71245,37779,144585,71250,71251,73929,204948,70800,71513,71514,71074,93706,78552,78553,78555,78556,134328,71247,71248,3067,159196,74776,208165,110649,71246,71249,57443,94136,130043,124397,208166,94133,159201,159197,159200,209295,30468,165526,94137,94138,131911,159199,93948,94132,94131,209441,209445,209448,111231,66252,66251,125786,78560,182775,182776,55846,110477,117153,71319,72082,2757,2861,3046,2873,209440,71515,117155,125785,125784,124668,66679,208167,208168,169121,56399,70340,61200,125788,125783,125782,215421,160802,11578,215417,215419,64549,215415,36974,208363,215422,78569,215414,58938,124661,208169,215420,59495,56413,124664,208170,215416,54766,56400,70404,93074,56418,2905,12194,52334,45657,69657,56419,45658,221063,45655,79362,45656,33904,45788,42752,42753,42754,2176,156148,52335,124667,71310,208171,56437,215430,208172,124672,151354,221060,221061,221062,9803,9804,9805,9806,9807,9808,9809,56410,106233,125189,208524,213267,213255,127890,56261,56263,56562,56260,217569,217573,217568,217570,217571,217572,2824,2825,9819,9820,9821,9822,9823,9824,119599,86114,57994,56262,57996,56566,56563,56564,56565,56403,84252,108658,106227,226959,133770,110421,110419,156050,130053,2910,2911,98641,154106,56406,2572,153992,124849,127253,208173,111484,84251,111364,208174,2776,33305,119601,111478,56405,7412,223582,74802,57094,222346,131481,11550,55110,69551,60668,86115,71518,111480,134406,133873,134148,134408,134149,134407,111482,111479,70801,120884,50841,208362,119654,144807,86118,86113,121883,160510,72089,69636,140097,124909,59518,119604,216569,111485,2848,2849,2850,111459,3111,78548,222400,65932,65933,78549,8706,55192,30474,224159,213264,208175,111458,10857,163746,208176,110481,221057,55107,217574,204945,74814,72030,86119,106232,206080,45784,69546,111486,120885,215400,119592,30251,56415,60774,96649,213258,75704,119690,94882,94883,93709,94886,94887,94885,94884,93708,94879,94880,94881,94846,86117,111489,94888,93710,71519,2904,57096,119687,119688,2829,2830,3071,2853,2854,2842,2985,2841,2851,54350,144865,72034,37764,86116,70805,9833,9834,9835,9836,9837,9838,9839,9840,9841,59504,208177,119686,111487,140064,110471,54043,54044,110470,208178,161708,208389,157151,37763,90172,206086,206084,119600,2929,2930,55764,52394,56404,221009,10856,140063,119595,56421,199113,93715,55763,58558,92534,52395,59810,208179,208180,119590,48080,48664,70326,43261,53858,53862,73719,79363,133773,46826,39852,38724,2979,2463,56417,32929,53934,95149,208181,156262,156149,119593,209694,36964,3116,208182,37754,58939,53860,73718,90173,208480,208481,131849,213257,110668,73721,73720,129356,3119,36960,159195,66579,56429,118936,91291,213266,98386,3005,71322,110805,131387,2836,2837,60773,65590,52363,7298,7297,2856,2857,7293,7296,7295,3088,3089,3148,10424,3090,3091,3092,10426,7294,7300,3118,36971,163747,69533,182398,208183,208184,110667,225646,109760,90212,33683,213253,163320,119596,222956,60667,62537,43331,70229,9482,140533,56408,169037,163485,129001,37781,37748,37747,163483,107554,38211,163486,59691,9487,38722,38723,7290,3121,36969,163478,163482,141982,130567,153991,163487,2819,33760,33761,163481,163480,163476,163488,107553,163484,2855,107555,107556,163479,167175,222954,2975,72022,2968,119589,9488,167173,157149,157146,157150,157148,9483,30465,38029,10513,9796,9797,9798,9799,9800,9801,9802,91247,70228,208185,70370,38568,48663,66379,55850,10874,91292,214140,119594,165062,209697,79397,222965,37945,135655,30857,67046,116628,10873,119691,57098,2969,3078,154839,2582,209444,70806,57565,73359,208186,3120,36968,2839,2840,124674,208187,124671,153715,38622,124676,209447,208388,56412,124675,66383,30858,222938,2871,215432,3129,36945,129379,56432,215433,225462,11642,225461,56407,38213,3125,36962,11462,98646,59815,3115,36943,3114,140065,43340,3124,36963,220207,36942,69553,59493,69545,2995,2959,32677,49051,3038,3039,3123,3122,36950,2996,2806,2908,2907,2807,46073,56424,2838,59124,220155,225463,56423,102478,3128,36944,59818,59819,34765,2931,742,39825,39826,56689,56687,209707,56688,163231,56682,210168,3131,36947,213211,3139,36956,56683,54438,56680,39831,213480,39830,48079,56690,56428,7445,7446,56678,209695,3138,36957,3132,36948,156150,2982,3027,3028,3029,2795,2823,2835,119680,3134,36952,156049,124850,7638,2581,54543,56681,56677,3130,36946,208188,3140,36966,56685,56686,2584,2583,208189,42628,56679,209701,157934,2967,56676,56684,36928,39828,3133,36953,119881,57949,57950,213479,3086,10858,56433,138934,57755,59486,79351,209730,224085,213254,34917,209731,56401,3143,36965,55127,209726,55750,36955,3136,3142,36959,209727,2992,2961,2962,2768,3137,36954,2794,2858,2972,2973,3085,65937,39744,209729,6560,56402,209725,3135,36951,209728,151355,138937,138935,138936,138939,138938,209732,8018,162365,55821,65900,123693,98197,129367,222049,53853,59472,11487,52347,52348,69543,111453,52344,52345,3087,110333,111457,9788,129657,7448,7409,9789,215398,9786,93718,71517,56414,209737,56276,182330,2769,2828,3097,34910,52343,52346,52342,34907,199115,3007,37716,43330,57092,59263,34911,55847,9795,53861,111447,34906,46915,9785,106230,9793,59817,57728,57727,57729,93719,70230,70233,199114,123886,34903,57730,212046,159202,46916,55822,71324,56409,110835,37746,56435,71314,78572,34913,30655,56425,2734,3054,54047,54048,54042,71598,37745,59492,34909,56411,216566,34927,34017,34926,34915,34931,57438,156055,33443,39756,215434,3072,3073,33118,33119,33120,34938,34918,110806,2952,34919,34932,34933,9195,60963,34939,34905,34928,7411,43519,71321,3144,36967,56420,3109,3110,2939,2937,2938,163353,34934,34935,34920,34925,34914,34921,2792,2791,208197,3050,3051,2955,2956,2945,2946,3044,10514,43343,2847,34912,5008,138879,109761,34929,3022,208190,111176,34924,34922,54045,34916,34936,34937,208191,34930,34923,217582,47650,34908,9810,9811,9812,9813,9814,9815,9816,9817,9818,56416,140132,70360,70362,119591,124802,121885,33385,70332,55702,55703,55704,55705,55706,55707,48331,144311,3063,3064,3024,3147,2770,2944,2980,3013,91797,69542,117152,6521,221105,59816,134327,30908,221045,70361,30980,30981,30953,69979,57758,215435,30998,4983,121891,57756,37536,37537,37532,37533,37535,37534,3023,3025,11618,2970,3149,119678,3041,3042,2808,3026,2773,3055,30952,4982,215436,215437,70807,30934,30958,37761,37762,10512,57754,215431,59487,57757,56422,37540,37539,37541,37542,37543,37538,210433,200724,31000,119627,30979,32936,30989,154660,221103,955,222925,72873,217910,217911,7413,3040,2735,3033,2749,134206,169114,3059,3060,2750,2774,3103,45722,45723,45724,45725,45726,45727,45728,45729,45730,45731,90175,38657,208192,155864,31006,31005,30997,220502,220503,220504,948,208193,70207,226751,950,957,953,951,90174,949,946,30982,75741,217583,134207,952,954,30978,956,70303,3093,124061,70301,97901,2867,2868,2997,2751,2940,3034,3035,2892,45732,2886,3012,162362,221122,3094,31014,84248,153801,125524,150601,66522,62655,71512,70302,57093,59811,70304,30890,119653,2888,207789,4996,30892,2998,2889,2894,2884,3082,50236,222131,130391,3006,31383,2895,2896,119633,75889,33759,31367,31344,98617,2775,3104,30889,78562,31348,126532,62657,62656,62658,2999,158531,2891,2860,2890,3043,3053,2885,37717,156770,210151,53855,53856,43333,3030,3031,53857,53854,119625,3058,3000,58185,58186,2883,48317,48958,3083,43339,58190,48318,58194,48319,48320,48321,3032,3084,46298,31374,48322,37783,37784,119637,48323,48324,33999,111250,30891,31373,169609,59813,3098,3021,56278,60669,2893,111244,42843,48962,43342,2936,48325,48326,2887,48327,111248,111247,116982,48328,48329,112691,31364,48330,38738,119638,119632,157018,204160,110222,59812,8068,159731,38209,204095,74812,116674,213265,215387,222681,222682,3010,90185,224411,110688,133369,133368,133370,72023,226328,48246,7410,129371,119676,119774,9188,4984,31402,57440,30888,43336,2957,2958,2462,2963,2964,2965,2859,2898,2756,2899,2953,2954,31407,9156,84253,119634,126934,31403,223249,222922,37752,37793,37794,55848,119677,31409,31413,223447,152272,59814,208317,155804,47657,31452,3100,142933,161709,38770,4559,78568,158685,128047,5956,91969,2897,31455,78570,33121,33122,33123,57750,4986,127975,33776,209774,53829,144600,144601,37547,31466,2976,43337,37545,4985,37551,4995,37549,4994,4991,37550,4989,37548,43334,34000,37544,9183,42767,42768,42769,2589,78571,37546,4993,70217,2588,73919,4988,30781,130569,153572,9185,46823,30599,4987,5029,34670,34671,34672,34674,34675,34676,4990,72031,91964,4992,53859,30784,130925,11475,42770,42771,42772,42773,119011,30777,11496,57439,10852,10851,11490,9187,215391,42776,42777,42778,120617,153571,9186,59469,110478,30783,38614,38615,38772,215390,214680,11497,169591,59530,215388,215383,215386,215385,215389,42698,42699,215341,30785,215288,215290,215399,153772,30788,2900,110801,156742,153718,215335,3099,206852,30782,30787,2901,170274,215354,30779,30850,30789,4146,154296,154297,215378,153537,213873,213871,214359,214356,140209,204761,204774,153727,213866,214352,214146,214150,213867,57854,55849,213874,213876,213875,43259,33507,33506,69534,69535,214144,37904,214358,38572,38573,204768,30786,43258,214149,215307,204769,213870,213880,58000,214362,204772,214354,204773,214157,9184,225260,213869,215318,213872,58937,162363,213879,30778,62698,213877,194655,59514,144603,204766,213868,30849,204770,110848,214361,38654,214147,11491,213878,215384,204762,214148,214152,214384,214158,208467,220132,208477,220134,220137,208476,220133,42621,124852,124851,215303,214406,214389,220135,214387,215284,214400,214355,214392,204771,214394,214379,220138,214376,119603,117669,204775,204764,214382,214403,214388,214377,214156,158783,214399,33202,215371,215370,214378,214154,214401,214353,214153,214381,204767,214365,214363,214398,214395,214457,214397,215292,214357,42622,156734,220136,57681,119873,214360,204765,214351,169135,214380,224461,42619,214402,210100,214386,214383,39746,214145,226919,31093,33203,214460,214155,204763,157142,214405,7637,215304,214364,214393,162364,214390,30780,220131,215324,215373,215375,215376,215377,215321,215374,214151,215327,215320,207609,214396,221011,215323,214385,214404,214448,57437,111460,215314,214438,214469,219039,215309,214490,70455,214493,214450,215308,156263,215326,69544,214482,214464,153729,215289,214452,204495,214440,214466,214458,204493,156084,162366,111438,214502,204490,215346,38847,59512,215313,204487,214731,214465,158534,37739,37740,43328,214478,214496,204498,214480,204496,214462,206107,214468,204486,215359,215311,214436,215345,214437,214447,215333,215340,214513,214461,204497,214442,215316,204489,214499,214473,215330,214443,214459,215366,214477,215296,214504,214506,214444,214491,111437,204484,43335,124854,124855,204492,37776,37777,170273,215319,214454,214445,214446,220378,214455,214472,214449,214456,214471,111285,59524,214679,215361,214481,204485,214494,215362,214463,214475,214497,214479,214470,222268,37758,215331,215328,214441,214718,215315,215325,215332,215334,215336,215343,215344,215347,215348,215349,215350,215351,215352,215353,215357,215358,215360,215363,215364,215368,215369,57445,57446,57447,57448,57449,57450,1136,214439,214503,59516,204488,214492,214474,214476,204491,214453,214519,7490,214537,79371,214524,7486,215286,214501,214531,59290,214500,214512,214527,215291,7520,119650,214534,7480,7502,79370,215283,7451,172897,214514,215295,214529,57444,183186,214966,215380,214634,214518,214530,214526,214535,214510,214508,214967,214525,214495,215379,214533,214538,214507,153725,31105,7500,119684,215285,31037,215293,31130,7496,214944,75695,214536,69548,70221,7469,7459,7482,7452,214511,214515,7509,214520,7636,75694,124847,214574,204494,59515,214509,214532,214517,144864,214516,214528,216723,42620,111427,111440,60962,52340,52341,52336,52337,52338,52339,214607,214584,59471,9792,214588,57701,124533,53831,53828,214610,214592,214544,214599,144598,144599,214553,214597,41286,214575,3753,214577,214609,37696,96653,79407,59479,214552,214618,214549,215276,70226,214581,31147,31140,31477,214551,155867,214582,214579,111233,214583,223585,143518,111232,111234,33913,33958,214617,37742,59476,214572,9794,226329,53832,214611,119874,59478,197313,31141,59474,59473,59480,57441,214556,214619,214546,183436,58319,111288,214555,214576,214595,214545,214550,214602,214606,214547,214608,204788,214594,214589,43332,214548,95175,95184,95383,66518,111428,59475,226184,197013,70454,196889,169138,214580,215381,214601,46386,215096,214614,214571,184846,214600,59505,214591,214605,214625,59481,214616,70232,214570,59483,9791,169137,214615,53833,214554,61335,214557,204790,214593,214590,111439,66519,71466,57684,9787,214596,214558,111235,52295,30972,180591,53836,58877,70423,157145,53837,215300,59506,59507,59508,214573,214498,32731,214613,214598,214652,33893,214633,214624,182299,214653,214667,214642,33901,214636,214630,37976,214632,60775,214659,214663,215277,214648,214649,214655,32583,214654,214631,214670,59513,183351,70220,214628,214666,214635,70459,70225,214627,214658,215018,2802,214651,214668,214626,70453,214664,214645,31363,214672,214669,214671,214647,31187,214629,214650,214665,169538,215065,214623,214643,214656,214637,215259,214661,214660,214662,158686,183350,214677,117967,214696,214724,214729,214674,70219,214676,214717,214706,214694,214707,214644,214646,214682,215260,214693,214692,214713,214702,119645,214700,214684,215143,214690,215270,214711,214712,214703,214723,69549,214688,215074,214685,214715,214701,214722,214691,214734,214727,214697,214719,214681,214698,214686,33880,33897,31197,214738,215342,214735,214726,214678,215337,214720,214728,214730,214716,39753,31198,214675,127586,33903,214683,214699,214695,214687,33889,214709,214710,96643,214736,119640,33885,59260,214704,215145,57559,57615,57560,214708,215329,214732,214714,214725,33898,214762,70223,111450,215365,209724,214752,111405,4997,4998,4999,62653,62654,4865,5000,5001,215275,215200,33896,214743,214751,70227,214765,54403,55502,11492,214763,214739,33900,214766,214747,139757,119735,226920,132400,70218,111452,135589,214748,214612,214741,214755,215118,214746,214764,214754,214761,70457,215201,215078,215192,214756,214749,214760,11483,33888,33895,58524,33894,214578,58672,33876,214744,215187,204782,215184,215017,56438,214768,33899,33881,215194,206108,215153,214759,206110,69960,214767,214742,214757,214750,206109,33884,33868,214758,58049,11474,214745,215217,214740,33902,32758,53544,214940,214974,33875,214970,119685,111446,53554,73673,52365,73669,111240,52374,206111,214942,214935,214939,119683,53568,214960,206114,53566,53550,111241,53555,208315,7447,53565,53547,53569,7334,53575,206120,53541,214965,111461,184845,53551,53546,53559,52371,53563,53556,53567,53560,53538,214937,53562,73671,214973,53564,59520,214993,32759,33878,73668,52372,53542,214934,214962,214946,214969,214961,214933,214945,206113,53558,73670,53576,33886,59491,73672,111242,206121,53545,224150,53574,53561,214938,214932,52366,111444,7335,123965,123967,111255,53552,206112,214936,206118,73674,52373,53539,53543,52368,53548,111445,53573,33869,214943,73667,31229,206116,53571,52370,53570,53577,33879,53572,206119,214963,204785,215299,206115,52369,53540,214972,33877,214971,215008,214968,214964,206117,214941,215043,215301,214985,214989,215002,214986,214990,69547,214983,214984,215266,215294,153722,70458,204780,215274,120880,73021,204786,215001,215268,215278,204789,215271,215269,70224,215005,214977,214999,215267,214996,214982,215000,204783,183187,214998,214994,110804,2803,215262,214976,153726,214987,169713,134228,134230,134229,215004,215003,214981,204781,215279,111966,215273,215261,204791,215021,48506,214995,59497,204787,70222,214992,214997,214978,204779,204777,204784,215133,215272,204778,214980,11476,49045,204854,214988,60768,215006,111400,215044,31670,215012,215050,70405,124059,215051,200562,200563,215041,215019,215035,215036,215030,215049,215038,78546,33891,70456,215026,215031,215013,215025,215040,215009,215033,215020,215029,215046,33883,215052,11478,11479,11480,11481,11482,111403,215048,33882,33890,215014,153751,57995,215054,215053,215034,215047,215015,215024,33887,215028,37756,37757,33873,215016,215011,50840,215032,215010,215027,215045,59498,59499,215037,215022,215090,32010,10629,215107,10626,33874,215067,215057,215073,215060,215088,215062,93716,215191,214733,215063,2902,215058,62718,214979,215056,215066,103606,215150,215178,215070,215077,870,871,10630,215082,183181,215079,2800,33892,33872,33870,215076,215061,215059,31612,215069,33871,215064,215083,215085,62544,215092,215115,10628,215094,215075,153728,215072,215089,215136,215310,215367,215093,215081,215086,215080,215091,215229,215068,215084,215134,215095,10627,10697,215157,215112,215189,215188,215156,215168,134818,215132,872,873,10637,223196,73547,73628,10632,33689,215182,215148,215146,215105,215165,31634,57415,215128,31647,215171,10638,215170,215174,57414,10640,37770,215158,215116,215117,215180,73647,215193,215190,11420,215173,215216,215222,215099,10635,215108,215127,31680,215164,215138,215102,215106,215110,215109,215122,215159,215149,215111,215179,215172,215298,59490,215177,215169,215129,215137,215114,215221,215141,215152,215123,215140,215100,215196,215163,215175,215258,215181,169136,10639,215144,215125,6257,6345,6346,215113,73648,215161,54046,215186,215176,10633,215280,215120,73629,73717,215166,10636,215131,215101,215139,73627,73626,215126,215154,215142,31627,215185,10634,215042,10631,57306,215282,215162,215124,215104,215160,215098,117312,6399,6328,215195,215312,215121,96111,215155,208126,215147,215097,215130,73722,215212,55335,215207,215251,215211,55321,215242,215208,55332,55300,55319,55320,31719,55317,131062,55298,55310,55311,55318,215248,31821,111413,55338,55291,55294,55336,55333,38937,55328,208221,215203,55316,215230,215205,31971,215198,55307,161158,55330,208347,55293,10642,10641,215236,164800,55309,215287,215219,55324,37798,31807,55306,215302,215228,215214,215218,215232,215202,215213,215206,215249,215237,215204,215243,215245,215226,215234,55292,10644,42786,55337,38936,55296,55325,55322,38938,55312,55313,55297,55314,55315,10643,55295,215252,10645,215244,215317,215209,215238,55334,55331,55323,55304,215239,215235,55326,55327,55305,55308,90184,215225,59494,215220,215246,215227,5002,70422,215250,215240,215223,215241,215224,215233,55299,55329,215305,215197,215210,37714,215257,11493,11494,11495,204949,56943,222127,31910,39853,48199,39829,48198,216819,215253,215254,215255,2801,164799,2865,39832,2866,2804,7635,41297,32135,215256,55746,216814,216813,39833,37888,31702,91298,59489,70406,59503,10648,31974,110876,59488,31936,10660,10649,10659,223583,874,875,10652,10646,10655,10650,33687,10653,10658,31965,10654,124534,110877,31986,32136,32933,31915,31092,111491,31932,31920,31931,10657,33688,226330,10647,154420,10651,112689,10656,10667,66589,56942,183271,10668,10699,55620,11477,10673,33684,10663,10625,878,879,10671,223194,144900,10674,10664,136199,10669,10665,32934,10670,10675,10672,35142,876,877,10662,32935,55621,10661,10666,10698,32003,223195,42661,111495,90878,39038,32733,90877,111496,58189,103756,9192,111239,157143,32038,59482,32037,2991,58001,183783,182531,10677,70342,32064,58192,60776,159742,33638,57702,48957,90881,90876,57035,747,8010,183532,884,885,124701,4798,10682,157097,39837,10688,4793,4771,4777,57501,111256,4775,48191,65945,107767,162361,4788,4779,39851,39845,39848,52383,55649,39847,45995,39835,39840,41298,39834,45978,39839,41299,39842,39844,52384,39836,39838,4799,10680,4792,4772,39843,4794,4778,4781,4795,4782,4791,4783,10679,33374,37120,39014,124704,10689,111490,124700,4800,43014,39850,111170,4787,39841,45996,4770,4773,4790,880,881,10678,4767,39846,10681,4774,4786,4769,4784,4797,4796,47832,124702,39849,225261,10622,10676,10684,4785,10685,4780,4776,4789,10683,107482,159218,55348,138960,161703,39196,49107,49110,48202,135591,164801,37749,49108,37780,61208,41212,73574,39194,39195,49109,101752,135448,107480,52327,206849,52326,153835,59174,55279,55280,55283,55284,154405,66583,55281,55282,39197,57620,55289,73570,107481,111415,48959,48960,110493,154406,55287,108753,48961,55286,111416,59500,153716,154403,136252,130269,110473,40248,154402,154404,73573,111245,111246,41357,154407,120937,55285,10690,37715,111433,58578,58579,10693,10691,180876,10694,886,887,10692,33685,882,883,10687,33686,197331,207777,111172,119598,48465,74882,139678,90880,48350,111228,194372,10686,101753,888,889,10695,59525,204915,52367,153586,40246,150688,90882,55648,39011,57504,128424,90187,57503,11486,11488,227542,57502,111418,111408,59521,5003,57505,4079,73906,73905,43197,57506,227543,169145,153724,40247,227540,53842,162367,227541,150508,5019,5017,79170,39010,5015,169897,5025,39012,5018,5014,5021,5020,111424,7355,7356,11588,61073,126932,111425,154010,111423,5022,111422,39013,60672,5027,5028,32730,42618,5026,183546,5016,5009,5024,5023,5011,5013,5012,111412,136198,48237,48511,59526,108405,144848,108402,108401,108400,42832,111258,5953,111173,55744,55749,111257,5955,5954,107479,108407,111436,37721,57721,4866,90186,58073,182716,212636,33820,58887,90178,111471,214062,111238,126933,39444,39446,39448,38028,39449,111249,55761,108403,59529,59496,111410,90581,55760,111409,33749,39447,153554,39445,136779,136780,156092,38953,39450,39451,39452,111399,58327,39827,169146,216810,216808,90879,5235,55344,56641,216806,11489,216811,59477,41322,216807,94491,62545,39319,110834,55751,180963,5238,32754,41323,110472,5237,32753,216809,73576,37795,819,4975,5267,33821,746,59510,126574,818,4974,153720,807,4963,126578,745,743,4859,4860,820,4850,4851,4852,4853,4854,4890,4976,8011,39015,126567,126571,111272,126569,182025,811,4824,4825,4826,4834,4844,4967,812,4829,4830,4968,815,4838,4839,4971,822,4978,4815,4816,4817,823,4979,824,4861,4862,4980,805,4801,4803,4804,4805,4806,4961,4863,4864,825,4981,814,4832,4835,4836,4837,4845,4855,4970,126570,90177,817,4842,4843,4846,4856,4889,4973,207779,111271,126572,126573,808,4818,4833,4964,194627,33375,126577,126576,744,126580,55743,55745,55747,55748,806,4807,4808,4809,4810,4811,4812,4813,4814,4962,809,4828,4965,810,4819,4820,4821,4822,4823,4827,4966,56854,126854,126579,126575,59509,804,4960,126568,159706,4857,4858,4891,813,4831,4969,821,4977,4847,4848,4849,153719,5004,816,4840,4841,4972,221107,56798,5236,54388,55340,145332,55343,153721,55342,55341,69640,39320,126953,131848,168788,69639,110851,153723,164110,30775,86081,55277,32153,33030,32159,32152,32161,32156,32146,32151,73356,32167,32158,799,8320,57823,12098,798,8318,8319,57822,12095,12094,802,8459,57826,797,8317,11878,57821,57828,57829,800,8321,8322,12097,57824,801,12096,57825,803,8323,8460,12093,57827,57852,224064,33826,90176,54649,223912,38939,37769,11484,11485,32142,32147,32157,124846,32160,32164,32162,37796,32155,32144,32145,32148,32163,32165,32150,32154,32166,119877,32149,32143,163145,32181,32173,32190,32184,32189,32176,57700,32180,57072,94626,32178,61206,110420,32179,163144,79166,32183,32168,32188,32182,146506,32169,32177,32185,32191,6496,32170,32186,182717,154279,32171,55478,32175,32174,225460,75733,59431,59464,32210,59455,59428,59457,59458,59440,32201,32200,32193,59450,95202,95200,95197,59429,32196,59441,59430,59448,59465,59466,95199,59453,59451,59452,59463,59437,32202,59468,32211,32199,59461,220206,32215,32207,59467,60974,59462,59456,132399,32216,56606,32198,86070,75731,75732,55377,55376,59444,59442,66530,66531,111162,32194,59460,32203,219089,219090,59436,59454,59432,32206,95198,32197,32192,32208,32209,32195,56607,59434,59438,55380,59449,59435,55382,55383,55378,55379,55384,32213,32205,59459,59445,59446,59447,58072,208390,153840,95201,59433,59439,32204,32212,32214,111236,111492,111404,55388,32229,32235,32218,32231,32227,32236,32225,32232,207780,32237,32240,94620,55386,119643,94623,94625,94624,165225,32222,32228,226925,94622,32219,32241,145246,55385,56319,55375,79387,32224,94621,226923,111237,111431,111402,55392,32239,208522,32238,32230,226922,226926,226921,226924,55389,119642,55381,6094,59173,32233,32221,107646,55391,119644,49128,39019,111483,32234,111430,119641,55394,32220,55393,32217,55387,32223,55390,32226,8013,66521,66520,32264,32247,49075,32254,32263,32243,32266,32248,32244,206663,57657,32245,111169,204101,204102,6095,32253,39018,58576,131388,32257,55396,32265,55398,32251,90179,111419,111435,33387,151053,32258,206659,206661,206658,111493,90180,32261,32252,206662,32242,32246,59531,206660,55397,32250,32262,55395,32249,32259,66538,32255,32256,32260,6494,6495,32272,32283,8689,32276,32274,32296,45761,59527,55753,32269,58702,79377,6098,32279,55400,49126,6096,32280,32287,37741,32284,32282,32270,32275,55399,32277,32288,45762,32281,32289,32291,32268,157137,32290,32285,6097,160508,119639,111442,32295,32273,32292,6137,169989,32293,32267,73676,32278,32294,32286,32271,86068,32297,32299,6108,6103,111407,45719,32306,6106,32312,32314,196850,32301,45659,221909,32313,130926,66523,32302,196853,32300,6102,6107,6101,196849,196851,160534,224457,6104,39016,40195,48250,6105,111165,52332,133111,32309,45704,32324,32322,32311,32323,6100,196852,70335,41364,79376,56359,6099,45851,32308,111397,151063,196844,45763,40198,111280,33200,45850,32310,45718,39017,195058,195857,32316,32315,32319,40197,32304,32321,119778,41365,41366,32307,32298,40199,195065,41985,8014,40196,32317,45720,32305,48247,33201,45705,45760,66536,143872,32318,32320,32303,32338,32366,57997,32326,6113,32357,32328,32348,70165,32339,11117,32342,32335,119770,11099,66526,32388,37628,6132,32349,32356,32344,11110,11115,32333,32352,6110,58060,58059,58064,58062,32370,32364,32353,32363,32362,226180,111426,196143,196843,32337,6117,6114,32351,58047,58048,7325,6109,6115,196082,6138,6129,74290,32334,11113,36727,11116,32340,32369,32355,119728,32359,32325,11114,32757,6116,79359,58063,6131,11111,32361,32327,32365,32358,129956,58058,32387,58054,32386,32343,6112,119771,60673,66532,32336,32368,6133,32345,32367,10914,32341,7324,36719,70124,32330,58066,32373,32371,196142,183372,32347,197354,11069,32329,6130,32372,196141,55754,32346,6111,66537,32360,32332,32350,32354,32331,32377,32389,32381,32409,6134,32408,32391,6121,6122,6136,32379,32421,32392,32406,6126,32414,111481,32407,32382,6135,6123,32398,32384,32393,32426,32401,32412,32405,6127,6124,32375,32376,32422,32410,58065,58056,32402,32400,32399,6125,32418,32394,32417,6119,179230,6118,6120,195266,196414,179231,58105,6128,32374,32416,58104,32404,58061,32397,32425,32396,10160,32413,32378,156051,32420,32419,32415,32380,32411,195613,32403,32390,32383,32385,58106,61213,66534,66535,32424,32423,32395,32459,32478,32452,32486,58109,32437,32444,32479,179232,32457,32475,32455,32458,32464,32487,32448,32454,11880,32465,6437,111284,66524,32466,32442,32433,11881,32443,32440,134829,11886,32489,32467,42564,32483,32441,32472,125751,32482,32447,32450,32474,32438,32432,72925,32428,11884,11888,11882,11887,32434,32481,32490,11885,156033,150143,196415,49122,32460,11889,32480,32461,32469,32485,32453,32436,42552,126547,10161,11890,6439,169967,32435,134226,32473,32446,196416,32431,32456,32476,32463,32439,32471,179233,195624,196418,32491,32462,32484,32468,50235,32488,32430,32451,32449,52330,52331,32445,11883,6568,58108,58107,11879,33610,181665,32427,32470,32477,32429,42338,110670,37607,42331,41546,43501,8360,43239,8383,79385,43253,43254,8352,42878,32670,37608,42897,41573,8355,43251,32498,32511,8284,32660,41536,42873,34172,32500,32541,43248,8338,43489,32536,41566,42343,8272,37016,8348,32671,32508,42900,37600,42898,8268,42357,42855,42856,34629,42864,42865,43472,32526,42332,37588,41541,8358,43243,8385,46445,41554,43217,8289,34173,37605,43651,42901,32525,32540,32493,42319,32504,42367,32532,8310,42300,42322,41555,41556,43221,37015,37592,32537,42352,43491,43219,34597,34598,8384,34630,47204,8379,37606,42375,43500,42347,32494,32535,42863,8381,43505,169921,42308,42309,66525,32512,32513,42305,34188,42374,46462,42876,43648,54158,8366,34611,8336,37597,42373,42334,8420,41537,42339,42307,8313,34621,8394,42888,43493,42351,8261,32662,32665,46444,43486,37602,37603,32668,41547,41544,42866,43467,41565,42359,42858,34625,11892,8260,42874,32514,42336,8262,42868,8331,42910,8286,37611,42340,42341,43213,43464,8368,8369,8370,41558,43229,43230,32646,43497,43204,43215,41551,41572,43499,34169,37595,37596,37610,32650,37590,8293,8302,32651,42289,8291,42335,42370,42297,8303,41575,42318,46452,8328,37622,58580,37030,8341,43473,34628,8353,37618,37619,8312,37032,42298,42354,34167,43240,8356,8264,42360,37623,34613,32528,32673,32492,42364,8314,32656,43478,34632,43475,46450,8374,43216,43666,37621,32519,8266,8274,42303,42344,42345,42356,43495,8311,42299,34622,34615,42857,46451,42342,8269,34164,42870,43479,8285,42330,32667,42862,34618,41569,34609,43202,43206,43207,43469,43235,32507,52333,42358,8367,42372,8398,42882,32664,41570,42902,43659,42311,37601,42304,32652,160492,11891,195643,59511,134817,196417,34189,43225,43226,42886,42887,43655,8339,8389,34181,34182,34605,41539,41540,42909,43208,43209,43212,43222,43227,43231,43236,46457,42889,8354,43252,8283,42324,42325,42326,41557,42328,43496,42327,42323,37612,8335,32506,6297,42383,43658,32531,8337,32539,8287,34623,111414,32516,8270,8363,8346,42380,43461,46458,42301,43487,43471,46459,41549,32524,32502,41574,34610,32533,32495,37014,32496,34612,43483,43476,43249,43250,8333,42376,34614,34170,32497,8259,34176,46455,8258,42877,34177,37593,37594,8280,34168,43241,43245,195269,46456,41538,42290,41560,32510,34634,43661,43203,8388,34184,34606,43468,42906,166364,46447,32529,8387,41552,42899,42369,43214,37017,37031,42881,41568,8396,8397,42883,8296,37591,37620,34171,42872,8349,43456,8298,8299,8297,42320,42321,8271,37583,42314,43462,41542,8265,34626,34627,46463,46464,32499,8306,34180,43463,42892,42315,8276,34624,42329,42363,8395,32672,37580,34620,46465,42890,42891,8386,42905,42288,42908,8375,34607,34608,32669,32530,8308,37587,42306,43460,41559,42875,43490,43474,37614,34185,43247,46460,43246,34174,8343,42903,32509,34175,41548,42880,32520,37617,43233,8365,34179,43237,42893,8357,42907,37624,34166,37582,8277,8278,34599,32538,32518,43210,32674,43488,32661,8382,41553,43485,8290,32658,32515,32523,37585,8342,34636,42379,8351,43459,37615,37616,43232,8329,42349,8362,43238,8390,8391,8392,8393,42366,42894,43504,42296,43470,43257,41545,42871,32648,43498,42353,32522,8315,46454,43481,42361,42869,8330,42859,42860,32653,8378,8376,8332,41567,8275,8377,43211,43224,43492,34186,43482,34178,34603,42377,8327,34600,8294,46461,32659,37625,32521,8263,37604,195758,37609,42896,43665,8273,32663,34631,42378,43255,43256,43660,41543,32534,43656,37599,32649,8300,42316,42317,8347,43458,34635,43457,8361,43480,8325,8324,32517,34601,42355,8305,8344,8345,43465,43466,34633,43234,42294,42350,42368,8326,41563,41564,34187,8359,43242,43228,42884,42365,42295,42362,42879,8371,43223,8334,42904,43244,8279,42346,42333,8380,43205,42381,41576,34604,41571,32527,32505,42861,8350,32501,8364,43218,42895,37598,43220,42293,32666,42313,8372,8373,42371,42885,41550,8267,32503,43477,57183,57179,32572,32559,32549,152381,57182,180106,57184,32543,32556,32562,32574,32573,6140,32554,32567,152416,152379,32566,32576,32552,152417,152380,152411,152387,152403,195680,32548,32545,152385,152406,50231,180109,32544,32555,152386,32557,32550,57181,152378,58071,169788,6141,195305,57177,152392,32565,6139,195306,57317,57180,32560,32575,57178,195576,152418,32558,32551,195300,57171,195282,152398,152400,152390,96648,152395,152408,152394,152399,152384,152393,152397,152383,57191,152377,57192,32564,32561,169789,180107,32542,152391,195273,195278,180104,152404,32563,152410,32546,194545,152396,152407,32571,152419,152405,160487,111167,57190,32569,152382,152376,152389,152402,152401,152409,195279,66533,32547,59443,179234,152413,111277,45671,57172,32553,57176,152412,32570,32568,57175,92528,92529,92531,57206,92525,57204,92527,92522,57207,92523,195549,196423,57166,57290,124859,195572,196862,180351,195573,57174,183183,57416,195319,196874,57288,49127,57343,179225,60973,6233,57173,196873,108408,134272,169579,194607,153809,134273,195474,57293,57286,57287,195331,195337,196875,57265,196872,59528,124860,195553,180346,124903,195634,195664,195473,6236,195314,180111,180342,195338,92521,183361,131480,148162,57292,180117,57289,124858,61203,180122,92532,92524,42608,124902,179227,182648,195312,92526,180352,196863,196876,92530,57205,153561,58110,180121,57294,170047,180350,6145,196421,196871,36941,196856,57303,56889,134826,180126,179997,125607,125608,180570,53840,180129,180131,6146,57302,57168,195350,125602,195608,196424,33583,125603,125612,195556,148220,108409,183202,181103,196858,195555,81884,196879,125610,180344,196878,182499,195326,57304,81883,6147,6148,57330,181177,57336,195508,57329,181105,180353,196426,180599,57337,180125,180118,196861,196877,161704,66528,66529,57165,125609,135595,57340,117311,195370,180130,57341,6142,195587,100792,195550,180358,56891,196888,41349,57311,195341,57342,196443,180123,57186,163856,196859,125614,125606,195309,173993,196669,180521,180354,196857,180114,125652,57194,196455,182761,38954,33609,180143,196880,57268,195369,42567,57310,90868,33607,180145,180146,182659,33579,6143,182668,57185,180115,38266,57188,6157,86076,6158,41352,195315,59243,57187,180976,196441,6150,57163,33574,57305,181155,57189,196427,181116,38961,57328,57331,180660,57338,57327,57199,6149,6155,57196,6235,57200,182557,182384,182522,57308,183379,196454,66527,42605,57193,57309,33576,57167,183078,57195,41339,57339,196457,196456,33585,6151,6156,196342,180140,86075,159279,42606,205138,39150,205139,108411,183149,196386,43177,42607,5959,30348,41355,183052,57266,196389,180355,196881,180119,79360,56623,195328,6234,33608,195552,180120,196464,6164,6154,57203,57197,180137,196436,183772,196887,180148,38966,6144,196458,180147,6153,33577,183947,6163,57201,180134,195329,196437,33575,6152,196432,57198,181853,183421,33584,196438,6165,57333,6160,57202,196882,33594,195335,180150,196461,33595,160493,78879,196442,196884,6237,57332,6162,10853,160505,61231,95362,196459,123678,196462,6161,196463,58193,6159,57267,180356,183426,179528,180116,62697,6171,6172,214488,196714,78880,196475,197539,196473,58070,58067,196468,6166,57319,196479,33589,196476,33580,196481,58057,140530,58068,58069,165223,42943,180156,57323,6167,57320,57325,196767,196405,150258,150257,180153,57324,57318,33590,180444,196477,33578,196482,183729,196483,180158,169117,7331,196480,6240,6241,180154,6239,57169,196703,33593,195252,196472,33591,6238,57321,6170,118042,183744,196488,57322,196402,6242,6168,183745,33581,196711,6169,116636,158580,57243,6189,41343,180171,38955,41351,180375,5960,196511,57240,146546,38960,38957,33592,196502,6190,38958,38971,41984,170200,55122,196506,211517,57239,173084,67915,38964,38965,180168,196939,196914,196508,196913,57314,180160,57242,41337,57251,180359,196776,57315,196916,196319,57236,6173,139754,57241,179348,38962,41346,196486,196505,38978,119772,170204,196917,180373,119773,196924,197489,196509,181941,196507,33029,180173,57237,61202,57238,38974,197487,206768,41958,38979,38980,206766,41340,38968,180170,43502,43503,196510,110700,6174,172881,57244,180167,57170,38963,41955,57247,41341,179224,38967,38970,41345,180372,57248,61204,38969,183962,196894,196484,142939,180361,180360,196898,41342,172936,57235,6192,41344,173108,6212,41350,196935,33597,42574,196513,42571,195938,38959,169859,173109,42575,6209,57261,196918,6210,57283,57276,57262,197490,180379,153810,57285,6176,173110,6211,42580,79394,170201,6208,57282,41354,42579,6195,42577,42572,57249,6193,33599,196920,196934,197488,57279,197494,180365,196902,56893,6194,42797,180383,41348,170202,208125,33600,57273,6180,43178,196518,196919,180268,57246,196777,57256,6182,6178,57245,169537,57313,172633,180177,197492,218974,196516,6207,42798,57465,152415,196512,57284,6191,42578,57272,42796,66573,66586,33596,6092,38976,38977,57275,196930,55401,41335,32735,6205,6206,196487,42573,173072,57258,6181,57260,33601,173078,6175,196942,180367,180419,6177,197065,196950,57254,57252,152414,57280,57255,196489,41347,180378,172837,196903,196901,57253,172484,38981,196940,33605,196897,6179,57281,42581,42576,6214,180181,42594,33598,169934,182497,6228,6199,42589,197497,70785,196911,180180,57278,196912,173115,57214,42585,183375,57263,6246,57233,180390,33602,196949,183374,182548,33571,196952,42958,196533,197496,196527,182794,182792,74291,6227,183376,183370,57216,6198,42588,180184,197498,126552,197493,57274,6213,197495,57209,57264,38956,170203,170199,57259,6400,6245,45809,196951,33603,180386,173113,196497,196498,182793,183373,33604,33587,57224,42584,180370,42565,196621,57208,55402,6229,42586,196944,161707,196514,38973,125291,173116,173090,42582,6196,42591,183256,173114,180179,57230,6243,42595,39039,196526,181026,196946,111171,57215,57277,42590,6184,57226,205195,59517,183255,182498,42568,180183,111406,38984,183369,196947,6201,42593,6186,6183,57257,180388,180385,36496,196529,196525,6188,6185,42592,57250,6187,180368,6197,42587,196948,42583,197501,7333,180188,57295,6339,57299,6216,6249,57234,196552,135583,153808,6219,180196,57217,69659,6220,6225,57225,6341,135525,135522,135523,33794,196545,41336,6280,135526,6260,139842,33795,36497,6232,180195,196559,6289,57269,57270,6231,6223,135485,196564,6288,135455,135478,135482,135483,196550,6338,57296,57300,6258,57228,6224,6218,57301,197513,6287,135581,135582,38972,42596,181917,170031,6252,108418,6290,6282,45810,57298,56855,6221,6343,57271,6286,4456,135580,135479,6342,196557,6285,6336,6259,6244,6337,109652,7332,6344,108412,6202,196451,57221,42604,170033,6217,196561,36498,6253,197502,196544,57227,6215,57223,57211,197503,153961,57213,170070,57219,182513,196549,197500,57218,6279,57297,33586,6248,57231,57210,33588,6250,6251,42597,6230,57220,135578,6254,57232,57222,6226,6281,6340,6247,196955,57212,4457,196956,197508,180198,197505,170038,196593,6322,196958,196582,6256,41947,180207,196592,47752,196972,6271,6294,39020,65615,196567,196971,6292,6293,180206,196575,197521,181781,170034,6222,197526,6283,197524,36490,6203,42598,6268,196967,33582,42600,42601,42602,6291,33573,6266,196962,6323,196591,196585,42609,6272,180392,111441,180200,111168,196983,196970,194595,6278,180209,180393,6273,196577,180208,6263,50008,196566,196968,33606,196565,196587,196569,180399,208124,6275,38975,42799,57229,170039,196957,6274,196589,180398,180193,197523,196578,6284,6270,197522,197525,183120,32732,6267,170066,180205,180400,196581,196568,42570,197510,6204,42599,42603,170054,42672,116670,6317,6371,180213,6333,36481,180215,73546,73549,36492,45674,196594,6315,6265,61350,36494,173168,45650,45651,52481,52474,52476,52480,52475,52479,52477,52478,45673,197516,196611,63218,6327,196959,6386,170023,180401,36489,36493,196603,36491,6276,170042,6331,197528,6318,6319,36486,36483,6335,45676,36482,57334,196604,6330,6326,36487,196596,6334,36485,183076,180199,6316,6320,8473,45675,6325,196601,6321,82845,197533,197534,82848,82846,82843,197536,45672,216417,196612,82849,82847,6376,6387,45677,45678,196614,110664,82850,133994,180216,180222,45679,6277,82844,33796,196600,196615,197531,196975,180219,41338,36488,196598,111269,126852,170045,196973,45681,73548,197532,6324,196597,8489,5909,41353,170044,6375,6372,36484,180218,196571,196607,197527,8491,86073,8478,8479,196602,180220,197537,196974,173169,6269,196573,196572,6329,6261,170046,223232,180404,6351,57558,73666,111398,196679,45706,33792,170131,183907,6332,6264,196617,47754,196618,170099,170051,33788,180223,36478,33572,196986,55345,180226,170105,110596,196976,73550,45811,196576,196963,170103,196980,196982,196622,183297,170092,6374,183301,45812,47772,196984,170043,43179,9093,35117,36519,170093,125292,45682,170122,170109,45819,47775,196985,45684,170114,170115,170116,170101,6299,45683,47753,223229,170048,36480,180228,180203,6352,180409,211712,180234,170121,180202,180231,57335,170119,196623,6353,6373,223228,196981,170118,180408,196616,45680,181150,36479,180230,55346,33791,196619,180406,222620,180402,223236,6378,170097,6093,196979,170049,170100,170096,170125,183285,170102,170094,170123,204299,196977,52328,52329,56892,180395,168780,62311,173170,197355,183236,183237,183235,170113,41303,53553,196631,170111,180233,156075,196638,170129,196634,196633,181777,6359,170137,45694,196639,180236,9075,39905,204100,39904,204099,45693,53549,43180,5958,180397,45685,45699,53557,170140,196640,180235,170136,6355,170124,6357,45690,6350,45688,196626,45687,138602,170130,45686,45689,196637,196627,196978,170134,55347,182492,197718,170143,196305,6349,45698,47783,180238,6262,196965,170128,197717,9142,196628,170098,196624,196625,45692,170108,196635,160506,180394,197006,170110,170141,180232,6388,45696,45691,170142,170138,36495,45697,45695,47792,57413,196636,93717,180237,79368,6356,6347,45815,182719,184971,196992,170146,10216,183435,180418,56546,170159,56536,56543,56549,180244,56545,196646,197388,32957,180420,45813,196990,196996,196000,170151,170019,195706,47196,10217,180239,180410,180415,170150,180413,170147,182777,56544,59311,45700,56537,6363,160882,56542,197002,196993,6364,6377,45707,196655,197004,56540,6361,180417,193895,9099,9100,35110,196661,9096,9097,35116,6365,170156,170160,196995,196994,170149,30605,142043,196671,6358,6367,180412,56550,196997,6366,6368,197001,47197,196659,197005,157133,170154,6369,170165,180414,56547,56539,56548,45814,196998,57326,196650,170163,170152,196653,180240,9098,35112,62632,196989,197003,6362,180248,196987,170162,9088,213529,11610,11631,35109,170153,196652,196649,170011,184956,170148,180254,6348,196645,6360,34952,196660,6370,170157,182709,184812,180245,196988,180416,56541,170155,45816,56538,196991,111254,184979,45827,196322,170135,111443,7336,50781,5260,184308,184539,182894,30612,180252,45708,50780,184274,207781,195733,197007,9094,35118,184336,866,9095,35120,36518,45828,9145,9101,35114,194598,9092,11635,32138,35111,46880,111251,196280,169511,9139,50782,194600,194599,196026,179237,184164,50779,171807,66572,9089,50854,9090,9091,197018,196676,182846,196672,197036,179557,197026,180253,170185,180435,45712,197016,148689,180256,197037,170175,5262,62635,45667,197021,197024,180432,180427,110694,197014,170183,197923,179552,184910,196675,9140,180425,58188,197038,55501,50787,180257,35121,9103,45755,170177,196687,196673,197022,170181,197030,9104,33247,35113,36517,9082,180436,9081,197025,9102,35119,70354,180267,196677,170178,180255,196678,182809,179554,9083,9105,50784,197032,197035,170158,197020,55351,55275,170191,197031,170174,170193,198269,170072,62721,170071,180426,170176,180429,10893,54948,54949,197019,50783,197033,180428,197034,111164,170184,197015,180430,197023,170179,197017,124950,183542,183543,48524,196666,196680,180434,50786,132296,132293,132292,132295,180266,170194,197045,42959,136146,132291,132294,196700,180265,170195,53830,197049,170190,182929,172013,194601,197042,48587,180258,180440,45709,180431,132298,180485,182867,132290,132288,183348,181036,170182,180437,181425,6001,50788,197028,56328,173120,197039,196717,144120,197047,170073,170025,196682,45711,9471,132297,56558,182876,45710,45822,180439,197027,9472,9473,170173,45714,170180,6000,61325,170188,9193,111292,45830,196696,45715,180438,170187,48593,196693,197043,196695,45713,173119,196697,145247,196689,180442,182870,208198,48596,48595,48597,48598,48599,48600,48601,48602,48603,182872,48604,132289,50789,196683,197046,170186,170189,197044,180441,45821,195656,57316,197051,182900,197041,45820,196691,145208,196701,196692,180264,183347,110334,9086,196730,173124,194602,196411,196698,196710,196460,180272,170196,57984,58191,45754,9143,180278,173123,170081,182937,197054,173121,196718,196719,196842,42646,45823,171032,194603,196716,45829,196667,180277,40207,182958,182968,196300,9112,196709,45824,196706,56896,196731,170029,180282,57307,196707,182877,180274,180279,45716,197053,196722,119693,194604,197479,196729,196449,45818,180280,170197,180271,57982,57986,170198,196721,41356,180273,196686,57983,48522,57985,197478,223456,197056,173125,196705,180445,196708,196724,197063,170030,45826,196723,173122,71241,196720,71243,154449,184449,197050,179293,10896,194556,197078,196749,196738,204186,197074,194554,74930,212736,212732,212719,184419,179345,196735,71244,196728,194551,184371,180291,197084,197067,179255,196740,71242,180453,180450,204200,196732,196471,212709,194558,196736,6479,33366,196750,85999,212727,212720,197075,45869,212711,212740,212730,182774,45870,180457,179376,184421,180459,180285,212746,180286,212729,173133,197064,180454,196771,179263,180283,170075,179239,195150,196690,173135,194555,197083,180455,197071,173134,183349,194553,204193,196739,10894,10895,70111,212734,50790,180275,197076,74927,196737,173136,196747,180289,212716,212717,180263,197068,212723,212735,180451,194552,170074,45825,180290,123463,196727,194548,197070,212725,212747,119976,33848,33849,212745,212733,212739,160507,212737,212724,212728,182985,45868,45871,6478,194550,9505,61140,62312,148963,212741,196725,196647,45817,180284,196688,197072,181821,212710,197066,195154,204269,196734,197073,196746,180302,173132,173131,212726,212731,212743,212744,212722,212714,212713,212708,183504,180292,197106,212742,212721,212715,32734,212738,57164,161147,197082,197060,7647,56554,169637,183440,36980,43593,136236,197087,180460,36978,197057,208418,6851,197085,197062,197086,50798,197058,180462,73151,196754,36976,64534,183417,183424,183450,36977,50795,50794,170077,197080,10910,10911,173477,197079,10906,10907,10909,183427,194540,10897,184983,195080,194557,197088,10898,10905,41312,61197,70113,169625,180293,196726,180458,179435,86065,10899,70112,197077,50792,50791,196713,196756,180281,10915,212718,197438,197061,204202,196755,197439,197081,180448,196751,179430,184454,6405,41311,70114,136241,173490,183414,183429,183439,197090,50797,181453,50793,184984,180449,10913,50796,10902,10903,10904,133448,45632,170079,180447,212707,10912,183419,194534,48523,204204,86064,180446,10900,10901,169629,212712,197055,197089,180461,182955,11641,119975,36979,56535,196759,67070,56533,36987,10931,10932,10930,41310,60685,169624,47201,169630,48518,36983,136240,173480,183418,183447,11613,173478,11156,11157,196762,183200,55500,79358,183449,132053,10922,1073,7665,45615,48517,160883,196757,36985,36986,36982,10916,70115,48510,184460,6404,70374,10936,70118,180298,1076,50239,45717,159207,10917,194640,57408,196761,10927,37577,70117,173479,10921,70116,10926,169626,196760,34616,165226,169623,1074,7667,7728,58187,180297,10918,169627,10920,1079,56800,10940,10923,8309,37033,124711,196758,183430,10491,36984,36981,183433,183443,10928,170080,33793,196752,1077,7646,7654,7655,10924,10925,169628,173482,10919,169631,10528,196764,64417,56534,10934,10935,180295,183446,66755,41957,10933,165227,170083,9144,35115,10937,32657,226327,7668,9141,8307,37584,1069,50805,119974,8687,50801,50800,48521,182324,1072,33789,9470,9084,33367,157551,9506,10938,50799,9469,42312,9119,10939,70119,173481,183431,854,1075,45630,45624,50802,222927,45631,170086,120009,182500,180294,50803,32654,32655,135446,135445,183420,48655,36989,58859,73553,110698,9085,46789,66576,138959,10941,183422,183448,9116,154600,30638,135449,138963,41988,41989,40139,9114,36990,10948,169636,9113,157136,9467,10945,10946,183437,10943,10944,37088,36988,136235,10942,10947,9468,10859,135447,138961,10949,173483,8685,9115,55349,110699,10951,138962,119694,164876,136238,10950,45629,67324,36991,9106,135450,8679,42337,56316,45622,67133,60849,93088,150506,60838,56757,60846,60840,60842,41368,93089,93034,56765,57499,56556,60851,56696,30862,42965,6401,42964,60850,1085,60841,74840,197981,60839,41369,60844,42569,151061,6385,9191,50240,9107,42967,56756,56758,135451,138965,138966,6403,42962,56755,56769,56768,56762,34596,8686,60837,42960,41995,110669,41372,42966,67328,60845,41370,67331,61196,42963,170084,56761,55494,56760,56767,864,160504,60843,48519,204096,56555,60848,60847,45618,67134,41367,60836,8681,41371,56753,57468,42961,56766,41373,56759,56763,56764,45605,32797,45636,183302,60834,154159,10953,10954,148793,45639,45638,10952,73088,9194,226390,32719,7551,55288,45637,67139,182753,59523,139140,139142,56771,56773,56772,56770,65571,139139,139138,139141,7568,7586,7613,7563,9118,205059,9117,7660,62313,7554,7556,9121,9120,139144,7719,121905,134266,7601,139143,10955,33968,7712,47189,7593,7580,7590,48520,7550,67141,170213,6381,180381,129909,173137,194609,197101,9108,9109,9110,9111,32843,197105,42194,197463,6298,9078,9080,221123,179550,184434,180469,40237,180465,197091,170214,180312,197445,197447,6379,170207,160886,33195,40194,197099,5261,197098,56775,57467,7661,196772,197442,7721,179742,56774,197444,165224,93920,94898,180300,179538,180464,170091,197449,47779,196768,47780,6382,57466,180463,197443,224021,70084,197097,170216,41982,42203,7629,197096,170215,196770,180456,221010,197094,179703,57155,180475,180305,170085,170206,180307,6406,179721,196773,170217,6065,111411,180466,160531,180468,197432,119914,1078,42201,42202,179642,184401,196778,170208,6380,196779,57507,179465,196896,180339,170220,196775,180304,197093,197092,197095,47794,42195,180288,197111,179211,180008,194317,8684,41994,62631,173140,163150,42310,180470,180477,196792,196787,179214,179879,111166,197441,179932,180478,196803,196793,47764,195194,41954,173138,33403,132133,156048,163152,110680,224022,54540,197115,180391,180472,170087,179672,196783,170088,42023,197112,74801,161156,197110,170212,42669,50855,173141,180309,196210,197474,180313,170089,170205,170209,173155,119913,197052,197107,179994,196801,196781,204218,196790,47781,50237,148434,132052,196800,170090,180473,196786,179212,11593,197108,196804,197475,34165,7666,180001,196789,180308,196784,196782,47790,197113,180471,179978,197116,196780,180287,179210,196802,180476,179796,180474,204444,197117,179213,196791,197104,179937,196797,148934,7663,151064,224023,196810,57407,170211,163157,57386,56557,42563,55253,179215,42671,57404,164692,57383,173157,9137,9138,8680,57312,180320,47763,170210,126963,41334,179219,196841,47765,173145,47767,863,173144,57388,57405,180318,179221,9463,9464,9465,9466,50886,57409,57406,57346,57389,179218,226373,180482,57403,173146,180479,47774,179222,57351,180321,182718,197114,173156,57353,195113,224024,57859,41993,173143,47755,57385,196809,183245,224029,57384,8682,40138,5999,42957,41302,57382,196805,57417,148731,57381,47793,57387,224079,159708,57390,47757,173148,173149,163158,33842,47760,47762,180324,6395,6436,56779,56776,56777,56780,56781,56778,170247,179223,180322,66577,47769,196816,47771,195810,173151,47776,181753,47782,45625,224027,224028,160879,47785,47786,47787,47788,173150,206295,161121,180323,173147,66574,196818,45621,56786,110672,56782,135453,56277,47758,62630,180325,47759,224030,8688,196269,157913,57355,226389,47766,56784,56785,71037,196820,32794,45628,226387,33196,33199,47768,72102,56783,58566,196821,180327,47778,7659,32793,125649,125650,108419,154068,217286,217287,173152,8247,70349,34619,226388,226386,55467,217285,151054,38946,47791,196819,224148,57348,205189,222933,40082,42632,47756,224033,73552,196822,40083,34697,41992,224032,45627,224036,224035,154069,57394,224031,47761,111290,8304,110674,163137,41333,57391,57393,45619,57352,57395,209757,57345,47773,224037,224034,47777,217584,57392,47784,7664,57350,196823,173153,40084,154070,47898,47789,56787,57397,45614,67337,161149,182448,184646,7648,7649,7650,7651,50238,217275,180389,160823,146342,6384,58035,10956,160875,168872,57412,67274,182305,6391,58036,32795,45607,89689,10959,10960,163134,110663,196825,180330,36992,217283,160822,57349,6383,58037,206913,160824,183533,160821,159754,57401,47770,57354,196830,56890,98169,55260,183339,217277,6393,58038,180329,6396,58039,57400,57399,134813,57410,39035,182447,6397,58040,6390,58041,217280,184299,179931,173159,217276,184297,173154,196828,173158,6394,58033,163151,10957,70120,32792,6392,217282,217284,6398,57402,58042,57344,224038,181905,181521,57373,159710,206832,224044,57375,49050,33391,138968,224047,224039,183415,33198,6002,57379,58034,180332,57369,57376,136234,57372,8683,196831,45613,57366,6009,224041,224045,6012,135454,138916,34702,224048,6006,50806,5265,5266,173160,57371,57347,57357,119726,183353,183613,135452,138967,57367,196834,196832,224042,57365,57356,57370,57411,224058,57398,6003,6004,196837,6011,57291,161150,50810,57362,6007,50808,50813,224046,224040,57378,33197,57358,196833,110406,6005,6008,6010,50804,50807,50809,206830,57363,206831,57368,57377,50811,50812,196835,224043,57396,57364,160825,93032,42566,57374,58043,57361,138964,6013,42561,206833,45612,62315,42633,93035,6389,180338,226572,57360,45701,45702,159996,173163,57359,226929,32788,196840,196838,57380,10958,32789,67169,164365,196839,179490,162276,60945,226930,224049,45610,67178,36996,93106,206767,224051,10970,10969,53165,36995,50674,135527,224050,150387,10964,224054,10963,38948,4880,45609,67176,198447,224055,109640,45606,224053,224052,57905,10962,10967,10968,32786,10966,32791,67174,110666,7326,71389,226933,226934,57860,156091,45623,198448,226932,32790,67177,36993,67338,10965,36994,55259,10961,224057,224056,224060,224059,110673,50818,98119,55252,50815,217288,217289,194583,45616,170302,217273,217274,50817,5998,217278,79352,217290,141578,50016,166107,55542,163750,161119,45617,33843,62314,71557,91423,217279,110693,139756,45620,33564,32787,41953,50814,50816,4455,93123,109641,141991,164702,160831,163148,148935,166109,181637,42610,58052,58053,59318,163138,10987,10986,45626,73675,66575,220479,10974,36925,8301,37589,139755,183541,224061,10971,39021,54202,223913,148037,86077,183338,10975,10976,10977,10982,42302,206914,161148,33790,144358,111161,10972,111252,217281,10983,10984,10985,208391,36997,224073,36998,10973,10979,10980,32928,205058,73715,36999,10978,207650,148648,120647,33352,10981,93109,148815,54951,6858,6859,153664,47821,65826,65902,6855,148476,184633,38949,148814,148475,160878,160889,109657,45767,86066,6854,6856,4450,93107,109661,10158,206771,52902,6482,10207,148477,224062,109653,37000,173485,183445,4444,4445,109647,110662,219521,224063,30607,42867,34602,73048,1070,86069,226928,46446,32676,183551,162392,10988,10993,183416,130174,54984,39023,8288,42291,224065,93137,93138,109644,93124,10997,10991,70121,10994,33365,6948,55350,184635,159711,36926,37581,37586,79384,10992,10995,10996,73049,224066,10989,10990,11005,11007,47200,169632,173486,183441,159707,94925,94918,94923,71022,149144,11165,12091,33410,42016,10159,123040,11164,33707,149146,11155,10998,10999,38945,224068,11012,173484,119964,79162,94922,160785,160826,123062,93110,93111,93112,12090,206769,93125,109650,154838,43657,4441,41294,93127,109643,93108,4453,12088,73145,4452,8499,56788,224069,109711,109928,12092,149628,1060,4449,11159,11412,11160,11161,76789,12089,148735,64412,208469,94924,94920,41956,226927,11000,11001,224067,54351,4882,70122,11158,33716,33717,11166,11162,11163,94921,161232,94919,183592,148313,6480,36927,42611,169459,133441,3184,11039,11027,3171,11024,11025,33847,73571,222269,11034,11035,3181,93117,93128,182590,33775,6481,6483,169571,182428,3173,56698,11167,76792,173487,183425,183442,58544,183595,93114,4463,93126,109646,4459,93131,93132,93119,3193,11049,130178,183244,4446,109642,11004,132388,4443,93129,93130,109645,38996,38982,38983,93121,93118,93115,1061,4447,93122,4454,93133,3164,11017,173488,183423,11011,136237,11051,73572,52104,3189,11045,6842,109655,6484,93031,33364,119962,3162,11014,11015,3179,11031,36473,11009,11169,37001,76790,182551,11010,11053,183550,109656,183560,166108,183428,169634,210161,11170,11171,76793,3169,11021,146141,93120,3192,11048,3174,11151,184588,222926,123064,183590,36715,33509,37002,11020,57861,11022,109639,4451,71688,11008,71689,71690,71691,93116,93113,224070,3182,11036,11037,173489,183240,183242,3172,11026,36716,63211,11168,76791,224071,55829,3194,11054,11002,11003,148353,54566,154077,36940,161157,36717,50218,169633,43169,183003,46901,224083,224082,223227,224081,224084,3166,5047,11152,139828,3198,11059,182388,3185,11040,11050,3177,11029,11153,3187,11042,183121,53163,7658,111274,223234,212447,33337,33338,134827,157131,33773,224080,54701,6860,45703,3197,11058,3163,11016,3161,11013,35138,3196,11056,11057,3180,11032,11033,138601,169506,148377,126878,181621,181625,144912,3190,11046,173164,169590,183602,124948,146138,181605,182617,3165,11018,3167,11019,93969,182611,3186,11041,224072,183203,3191,11047,11060,11061,144951,148513,3188,11043,11044,33714,3183,11038,169886,6820,6819,148267,55803,183088,3178,11030,183204,8281,8282,7391,7645,11062,11063,176248,154350,181041,183024,183593,38947,184593,3195,11055,183432,3168,3176,11028,3170,11023,148379,148733,148734,149125,149126,145518,182402,216140,224074,169710,169711,148258,145430,148624,223872,66582,10107,33774,42348,147779,159753,7657,128626,183115,185010,4461,183243,7653,1033,33501,183112,6843,138614,145560,148040,181549,183559,169621,148038,219293,124216,169593,183028,183029,183113,224075,148254,132051,138612,36920,205057,181541,119968,40057,139819,65940,69666,93720,157078,55624,60359,61272,138629,65943,147739,65939,160819,148255,149143,65941,138611,40058,40059,48203,138630,138628,70314,119768,214063,36919,33344,5046,5263,39823,124714,182749,145101,65942,55623,54352,59143,7656,124712,66236,145102,119961,138626,138627,149015,138604,119990,183239,226370,1034,160816,145044,36720,133996,137260,159883,32856,159886,159887,159888,159889,159885,4650,72139,72140,144761,183958,40263,6850,4448,11876,119991,138619,148296,40261,40257,159890,159884,36923,40262,138621,4440,10198,40259,138620,138622,102542,40258,40260,138639,138608,138625,148553,4618,159891,159892,159893,109658,132383,124710,181641,183554,183535,182318,181769,183553,183534,148292,41327,148294,173545,119989,183116,43058,169725,40256,47188,57113,149142,148248,149016,149141,70123,159882,148249,148291,146785,10379,145060,9740,11065,224078,145302,11066,11064,216491,183669,163160,149140,4629,36718,11074,146142,4607,36722,148844,148438,124949,11071,11072,148299,148049,33348,36921,36922,148251,224076,11070,11068,148252,98270,11073,36721,147955,1035,10201,10204,224077,4464,109659,150383,149501,10199,10200,42979,150507,138618,148485,78714,78708,148311,183842,102115,139885,153893,54163,138617,145121,145243,10206,223225,147737,223230,78709,78710,78711,93145,109660,4442,93134,93135,93146,93144,4465,138623,138624,93142,83815,223231,102116,102117,119971,78713,78726,149471,119780,83814,59741,39824,134856,78706,78707,54164,205196,147481,93143,161120,148314,145155,148312,145271,54205,148482,39227,148298,11094,148481,156032,102120,11079,11084,11082,7652,134824,102118,32887,11089,119965,4615,144950,224025,148309,11083,70125,11090,4617,33409,11298,149336,156031,119966,183025,145800,171554,11081,36726,32116,4460,93136,109649,4608,33852,4458,6862,11097,11096,50234,11093,98271,98272,119969,149145,119967,148200,144948,197468,102119,33713,160782,223235,11086,67675,144953,47208,98274,97647,11080,78715,78716,78717,145091,11091,145001,160786,36725,98273,148295,55359,11095,72141,72142,11075,148188,11290,11289,148196,148390,148401,145917,148901,57862,148902,160818,10202,10203,145528,159709,119987,160783,226367,11077,11078,148304,123036,212040,139936,148302,148195,70126,11118,149212,11102,40252,56804,11119,11173,11087,11088,11100,4439,71686,120960,11092,148223,149480,11107,148224,11106,47190,11172,148097,148519,148319,86067,148222,11076,47191,124911,36724,11121,11123,11120,148253,148197,4620,148061,109648,148221,11174,145035,144952,11085,11112,11105,4624,78701,31411,111265,60679,11122,120626,159219,183594,148306,11125,11101,144945,11108,83816,36723,148431,4619,78702,169595,144949,147997,145526,11104,144947,71397,146139,148400,42951,11067,161179,11103,11109,4610,98278,223233,6964,223226,181633,148402,93908,209758,72926,4611,194580,137259,182549,183552,11129,33510,11179,11176,93958,11133,163140,11180,11124,83819,11177,11178,11181,109651,182561,119960,145154,145236,39469,11127,160784,11130,11134,144999,160877,42650,47542,138610,11175,11126,11128,83820,47192,145527,182317,145722,148391,148198,148293,148368,11148,160820,11131,148348,145559,98277,54559,8526,86082,67355,8521,144299,11132,145519,146467,55657,145257,11135,93909,93910,138603,83821,11138,182494,183388,45977,41966,11142,205194,11187,35140,183434,45744,38999,42649,42651,11143,138609,147831,10174,148301,145251,148289,11189,45742,160876,8519,8520,4614,93849,106395,10177,93897,144443,41967,55358,10179,10180,8518,11144,42648,11186,11615,45743,11139,145341,11145,33342,33341,11188,148290,145156,11141,11190,42647,78718,78719,78720,11140,45741,56695,148349,33347,42653,10178,10175,47193,4609,149337,11137,11136,70127,42652,10176,148427,148257,42654,46833,65812,32926,83852,4613,11644,226931,11146,5917,5918,5919,33334,33335,46731,71033,221048,148006,93890,163872,6953,5910,5911,5912,5913,5914,5915,5916,5935,46723,160827,8504,146126,148736,5920,5933,33333,46732,54556,30280,144997,30289,37638,148541,214180,153868,209302,10717,10106,4632,111264,33708,33336,37078,46727,71035,11183,11191,145207,30288,33845,58759,50819,5927,5928,5939,33351,46725,30282,170000,109708,214424,93912,5937,33343,46724,33650,5938,45971,46726,168826,32958,1068,5936,33345,46730,11185,93843,93941,204946,5926,5934,46729,6485,57433,224157,224156,224158,224155,214178,30283,8523,8525,139884,10105,92213,54558,149447,32840,148403,5943,37613,219520,146466,119938,30287,54950,42668,30284,139886,30286,52898,11184,176249,8498,147757,144998,148317,148367,148441,146500,145000,145534,148350,30285,11182,33349,33350,37077,46728,71034,40271,33368,47804,208473,40265,1066,6959,11193,6954,8511,8512,8513,8514,163508,11296,33705,33706,33965,40266,11342,11194,11195,11341,8522,74769,214177,146993,39249,11192,33521,93850,93887,149468,33487,40270,213015,40267,40236,1067,11236,184985,11256,33711,10456,93851,93879,33712,119992,119993,40264,53514,40269,119743,43128,8515,5940,98276,148426,40268,32118,153713,39004,11340,93095,131886,149338,6955,148439,148366,145717,148310,50683,11346,8516,8517,118734,225192,6957,6958,33853,42045,93869,193772,193771,49137,193773,193774,93139,193769,11297,33969,134825,153714,11345,47203,83853,148315,193775,33710,226368,6536,6538,93874,93875,40255,59809,6531,6537,93876,193770,225256,52899,93141,10151,43127,4616,11292,8529,8509,6956,123709,93033,89690,209581,11223,33715,11293,53304,194547,148705,93140,8510,70339,83854,33934,47651,33933,33921,49166,10205,42844,93937,131727,160887,47198,33928,33905,42080,49164,42074,160828,42216,45972,93865,93866,109802,109801,109796,109803,93868,9573,33932,33920,33719,11199,33940,224401,11201,224400,42054,131728,42217,11224,11203,33704,11300,42077,42078,33929,49165,33924,33937,42075,109795,32117,42272,42079,42056,42057,42058,97328,11198,5929,5930,5931,5932,33938,109799,8505,8506,214061,42052,42050,154599,33922,42220,10181,93871,33702,42211,170007,40231,42065,42066,109797,223455,11150,33918,93872,93873,42218,42215,109707,93877,9579,9580,39177,39178,42055,11208,42069,42070,42053,155106,33857,33926,42803,129614,131714,131726,11197,33923,160780,224402,55276,42046,42047,42048,42049,93880,93881,33944,42071,42076,32858,33484,11204,11299,71797,11202,131713,33930,49175,33936,39153,109800,106810,11147,131716,47202,11254,33966,93953,11149,160781,83882,42068,33931,33935,33939,42059,42060,33927,49167,11200,224403,42067,220461,11350,109798,109794,93923,93955,149124,11196,42072,42073,11331,224398,224399,42063,42064,42207,53303,163139,11255,33967,47199,40232,42061,42062,33925,42093,42099,130663,42214,93844,42088,208413,11586,66590,42082,42081,93939,61230,30253,39311,93867,56467,42086,42087,33909,43126,39166,42089,140357,33855,53067,11217,11283,11285,11284,111497,6846,131725,8507,11234,131729,11221,11222,6845,111283,53162,131853,33709,131715,11229,93940,42213,11286,42097,131724,40254,62624,33655,57114,42210,46832,42085,11339,42022,93906,93907,106229,42219,30260,93847,94889,11226,11219,11220,11227,33916,216378,48656,11218,6965,62633,11225,11214,42090,11215,39223,93950,42209,42098,66584,33942,93919,9570,42845,11207,11213,11206,890,11209,42083,7344,30262,39312,30258,33817,39313,42616,7352,30261,129914,156738,156739,131718,42084,30256,34026,30257,39314,11205,136242,223453,42096,42802,5921,5922,5923,5924,5925,33346,42956,93932,109710,11232,11231,33681,11154,11216,33722,11230,173260,93954,163851,33251,223452,34027,39007,41968,30259,34028,39315,11212,42091,42092,11211,110682,42811,10531,118737,93882,8508,93861,93956,39009,34029,226371,11210,39002,78721,78722,78723,39172,42094,42095,42100,130641,130642,130643,130645,130647,130648,130650,130651,130653,130656,130657,130658,130659,130660,130661,130662,42134,42123,39167,41964,41965,60811,79180,72160,42124,11245,33718,39165,139844,38997,93856,93965,11246,33943,40229,42105,42106,94890,106397,167876,42670,42125,42113,42130,11247,33720,183960,11242,176252,11252,42133,42101,11237,11241,93870,134846,54541,43511,42197,42198,42196,11248,93918,93902,93903,42128,125146,144809,6966,93931,39156,92958,221020,33959,42136,39141,93917,93935,93936,42126,60833,42111,42112,33680,42108,42110,42109,6967,42129,42199,42200,42132,42127,42135,11238,11249,42121,42122,42120,119716,33914,42190,42205,42206,54203,11239,42116,93913,93914,42118,42117,39171,42119,42107,39173,42115,42104,33242,42102,42131,11253,176250,39005,42137,93921,153774,11288,11243,176251,42204,11244,11250,119921,131721,52485,54368,11251,11240,7345,156723,74994,153752,7346,7347,107031,109709,54542,151028,33656,153773,46902,33252,148484,93916,207815,10517,11235,34762,39001,163136,42114,39179,40233,145614,11344,42150,42151,40228,42165,33907,45982,42166,53513,39502,11260,11348,5946,57432,30475,221054,208207,106752,139845,11279,11280,33703,42160,42161,55360,11273,42141,42142,42143,42144,42145,42167,94899,65612,41469,41328,40253,42158,42159,6972,42156,42157,83855,83856,11272,11257,11258,11259,199156,49158,42169,39190,93905,93894,93895,39206,39207,39208,42192,42146,42147,42153,42154,11263,10439,40158,93862,93840,69505,58921,70239,6976,42172,42162,42212,93951,93952,11269,11264,43594,109881,11274,11282,42148,42149,6304,10454,53078,90724,33915,11268,153702,86084,42193,6848,39901,39902,42155,11270,42168,166147,42173,93922,41470,11266,11267,11277,42138,42139,11271,136233,72161,11294,33721,48605,11278,66591,66592,41471,42170,11281,11265,11261,11262,42140,42163,42164,11276,33723,153825,11569,55167,93883,45970,93860,39143,11275,211417,163855,86078,49162,33678,49174,33911,49163,33910,33912,49160,49161,49159,42152,6978,39200,11291,42178,75686,93938,39169,5947,38951,45973,93942,39140,54204,93926,33241,30304,54555,183959,42801,89691,42180,42174,93853,93878,93925,48590,1071,7669,6977,6979,42179,33941,39220,53077,59216,36939,153129,137244,163854,42176,212561,183023,169732,93898,94892,94893,39163,153775,46819,154836,111281,33486,93927,93886,93901,93971,93830,93924,11295,57724,33701,42175,39515,10843,57947,39175,55166,42177,52488,93928,219522,10492,126944,5908,4621,78705,119767,39168,39142,39203,8497,164006,153911,39188,8503,33854,33908,39006,39209,208414,39189,49170,42181,42685,141979,39180,59144,55462,57576,42182,39187,49168,67916,34761,40206,53073,42683,93150,42183,42686,39181,59145,33679,42688,7349,39183,49171,130402,182466,93891,93863,93859,39191,53042,93841,116680,83857,110679,39176,93854,39186,49173,39182,38998,138881,39184,49172,110696,55278,42690,39000,93929,42558,38952,40225,42689,10445,34763,7348,10442,39185,49169,226369,93885,141980,42687,7343,10448,10173,39202,62553,39222,160881,10169,93839,39204,39221,224460,220959,10172,10162,10164,10167,10171,10168,10166,94894,184642,72952,5978,39201,39205,33906,42691,42184,42185,42186,93911,4622,93934,226345,86079,42188,10170,10163,78724,53040,42187,153738,45845,49065,83858,7350,7351,30255,39008,41969,93054,93055,10165,6844,71629,71636,83859,134212,83860,71648,10220,10221,169744,39149,4623,134274,71649,71631,54560,54561,54562,71644,71645,45841,71634,153827,48562,33856,33219,71639,71633,71652,71628,93930,93933,200839,10222,10223,71651,78725,11335,42189,71640,71635,71630,71638,71647,209297,48556,10104,45842,71643,54563,71646,71637,39154,163149,49063,71627,71632,148300,71641,71650,71642,8502,49062,55355,48639,144810,8527,8528,110752,8524,40080,55356,55357,4626,102121,102122,194584,126965,98275,139943,55354,4625,152829,94891,42955,8500,8501,55353,55352,157178,119942,37018,6909,6910,223451,5942,10532,183157,6914,6890,6939,6886,6887,6888,6889,5944,159203,149469,116679,39145,53068,10519,5941,33818,111282,7423,49066,49067,219590,32846,53488,153737,6988,32862,221046,1065,32863,45844,57087,57086,11343,32867,45843,160880,41308,119977,126943,32864,7422,32833,41561,32860,93949,93957,9578,32865,32866,42557,32861,11549,34945,32871,32870,183096,147921,32839,152784,10149,10150,8340,120008,146828,153513,169763,32876,1088,32875,152826,32869,10449,152783,32857,183094,93967,154337,34944,32873,32868,11548,182670,159225,62745,8109,32872,161146,140359,10455,10444,183093,32874,30887,147346,169764,169762,50241,183097,34617,148250,139736,32879,154331,83813,164729,183598,73993,41991,153842,32881,32847,153859,69339,32844,32877,6983,6984,6985,6986,54447,154332,153841,7002,7009,39144,34190,43484,10526,69341,32878,32882,148203,183036,32859,69338,32880,83861,40109,11336,11347,32885,149496,32886,148364,154365,148435,154333,32883,39152,32884,153753,129390,154334,206062,148381,8295,9739,183092,8470,154366,183795,74995,34191,34192,154335,48606,32838,39151,154364,8492,8496,32850,32888,10438,32892,32894,9576,32897,32722,209303,8485,32891,69596,32893,32890,221656,8480,32889,154389,32896,9577,41309,32895,6868,6869,6867,83862,32848,70157,147457,131864,54557,9738,220999,119741,6863,219045,10524,32849,153826,165957,8103,8481,73992,8475,6864,6865,6866,7740,182763,73581,73994,6903,6904,6872,66675,8495,8104,69597,6912,125780,32842,146140,6892,6893,123310,6913,6873,6870,182338,47185,73995,41307,37101,6882,6883,6900,6902,6876,6877,6878,6879,6897,6898,6899,6875,6908,6906,6907,7010,6871,6880,6881,6884,6885,6911,6941,6874,9571,222415,6901,71305,180778,11349,69599,32756,40226,8482,66674,6905,147305,9569,32898,7011,9651,34943,6915,32901,152785,32841,32900,9772,6926,197480,9760,32903,147342,6923,6924,149470,8486,10075,6921,6922,9770,9766,9768,154368,154367,8463,73996,119893,153662,6918,6919,6920,6925,6935,6949,6930,6916,6917,10338,32923,107595,154391,32902,57435,9652,9695,147371,9653,9713,169765,154390,10093,6927,6928,6929,7005,8483,8484,9769,139935,182465,10098,32924,217937,9759,10071,183566,1090,153657,32899,10094,161174,10077,7275,154336,123658,10084,9782,10089,48589,9682,154369,9781,120957,7272,7273,7274,73998,10518,8469,10082,9778,74001,217934,11337,73999,10072,8477,30861,212041,32904,32905,8474,107258,183986,153889,69340,154392,9773,9687,37579,153784,8494,8476,8677,43034,1093,10088,74008,153790,9590,8112,9587,9599,9754,9642,153794,123656,9757,199911,153844,9735,9686,9647,9762,9619,10092,145991,11338,154394,48591,9592,146004,9591,9572,9639,9589,10100,9684,48592,6944,74013,10070,9644,9641,9610,9620,9617,9618,9586,9585,9734,1091,74006,41301,1092,6934,6951,9696,74003,74004,153755,9640,10085,6989,6950,6932,6933,6990,6936,6946,9755,33860,6940,9761,9600,9749,40150,40151,154393,74011,10096,6952,6943,139937,10534,32826,154338,9764,9765,74009,74010,9604,74002,9756,9698,41376,9717,10087,10091,74005,9763,9737,9697,9736,10522,10525,9732,9689,9588,9603,40117,152786,9719,9758,9752,70156,9774,9767,9685,43494,71653,153750,153789,183095,10097,9666,9751,153788,40191,40192,56520,10086,9776,32832,9748,9676,73582,153787,153864,8464,8111,71654,71655,71656,71657,154339,154370,8468,71658,71659,74021,9690,153647,9675,9581,93945,9780,9779,8487,169973,183371,9673,37578,74015,154244,33783,33784,7276,7277,9672,9771,32830,9584,9775,9583,9582,9665,9753,9624,9622,9750,9718,74020,69600,8466,9671,9777,74022,98145,9670,48588,47797,74024,10095,153655,9674,147968,153658,154371,72143,72144,72145,72146,4627,74031,74034,10529,153898,147972,65946,40078,117157,74035,33392,147971,147963,74030,117156,74028,74036,74039,74037,7008,7263,7262,137170,45643,6995,7258,7261,7268,7269,7270,7271,147967,183985,147966,147962,74033,147037,8467,74038,10520,153867,7260,9614,74032,7003,7004,74027,152827,147969,153703,8110,148278,137887,147964,153749,154340,124389,74029,7007,7014,10530,147973,139938,152793,7259,103615,7257,147970,74026,8465,30266,147965,183104,40041,7006,7012,74040,146215,91220,154431,111262,69345,41990,32906,154395,8471,10515,10516,74044,74042,74041,7013,160841,6942,6938,6937,74043,145309,9623,8490,182669,32770,184609,69342,69343,110096,110092,110093,110094,110095,110097,110091,74045,123596,169563,40046,153663,32907,32771,74047,58616,154341,1089,32908,8488,169560,74046,9645,74068,74060,40037,148279,172613,10076,153620,9657,9667,43571,9712,9649,39809,40042,9669,153661,9709,147753,74056,9716,71293,156731,10101,4630,9625,74059,9627,154342,9658,74052,74064,40073,7136,9594,10521,73583,154343,182660,146115,9593,9615,9688,117814,9710,40040,9720,9634,74067,147752,10083,10074,9626,9633,9659,9632,8113,46760,163143,41290,74065,9628,9643,145954,43578,43579,148754,9683,74058,74055,7155,7278,40079,9638,9646,10099,74051,207938,173515,74049,74069,61437,9631,9648,9650,9621,9635,9656,9680,74061,9630,128725,128726,10073,9668,1082,33766,43582,61438,9636,40044,9715,74062,74057,40190,74053,74050,74066,74048,70353,169562,9655,9616,9711,10523,163876,43172,147922,9681,117158,153659,123691,9714,154396,74070,9637,32824,143251,74054,74063,69352,73584,43585,146287,9629,147751,123630,57582,9662,161176,9728,153566,9664,9703,9726,9679,9700,10078,9605,9596,9677,9705,9654,9693,33765,43061,74075,184606,9723,179844,10080,9702,9727,72152,83874,74074,8493,9708,9724,9730,10081,130570,8105,183564,182667,74077,9706,9722,73085,183926,83864,83865,83866,83867,83868,83870,83871,83872,83873,9613,74076,9597,9704,9595,149195,9701,10079,73406,182683,169931,10090,72151,169928,9661,72147,72148,72149,72150,9678,9663,9725,57580,55257,9692,9691,9699,212114,221606,43583,39566,9707,9721,9598,176224,9607,9606,146123,74071,74072,74073,9660,154344,182688,45974,152787,150569,131004,32768,169714,32766,74734,32845,30610,32765,169932,119616,183502,181433,49043,32764,182677,74079,40185,183499,74078,71291,169715,123627,71292,225875,74733,145962,32763,182675,103616,32767,182692,182689,182685,8472,169930,182691,5973,30267,58640,169929,61273,182333,182686,182687,150570,182673,212044,74732,40188,183498,153622,123838,182534,182680,32834,153623,153624,74081,74080,183497,183500,169555,183501,169933,33785,212038,145269,182676,182674,153901,5971,183529,5968,74736,32910,40070,74738,74739,74740,74737,139882,150580,103631,40068,150571,40222,40133,9745,4145,40069,32914,9742,32911,184658,155545,74741,74742,74743,74744,74745,74735,33786,40039,133412,9747,9741,153614,40066,154208,1087,32909,39554,150575,154374,57587,71558,154375,154299,145604,6993,9744,33780,32913,154347,150581,153613,43040,154373,9729,150576,150573,150574,46074,83877,83878,83879,169787,83876,53389,133413,45975,150578,150579,117815,154397,154372,123597,4631,153612,146848,83875,155549,150577,8101,150572,153631,133414,133415,9746,32915,123594,32912,40045,154346,39571,154379,36511,57456,135407,200296,156722,74748,145313,153563,57591,33778,131863,74753,74754,153568,43156,43160,69351,135397,117813,135406,74749,135398,135399,74747,135401,135402,103614,135400,33781,169706,74751,57583,153611,74746,69356,39557,43155,32916,33782,98147,135403,8108,40071,135404,135405,182672,135396,117160,74755,39563,56789,143250,153615,181525,57598,59159,5967,39559,71559,154388,133426,147425,37121,108314,117161,71298,154048,57585,32917,39807,40075,74752,153564,57579,39564,43161,74750,9574,39568,32831,61441,61442,71296,43153,40074,143166,145986,154376,107256,107257,33362,154378,154377,50876,169925,107255,10102,32918,9602,9612,50875,150582,153660,43573,43574,43158,71823,71826,71827,71825,71828,123593,69344,43157,69353,61436,7779,69349,9611,39562,123671,9609,43159,153570,153861,43577,43580,169507,39558,43581,153569,61434,9608,71290,153549,39322,39323,79373,117162,9694,73585,9601,9731,33631,150583,154380,73586,53055,169564,150585,33357,69347,48594,65901,117674,153550,39570,154398,153551,61440,39567,150584,10103,93943,9733,43584,5970,117163,95382,83880,153635,153644,32823,153637,71295,153819,39433,36512,84037,153821,6303,119915,182663,153636,182662,32772,154349,154076,52870,78703,78704,153633,148004,153820,71297,148005,147529,69348,40077,107259,39556,98146,32829,93884,39532,154381,69357,61348,74765,74764,74766,74768,61432,103613,42553,43572,148486,36500,182653,43575,61433,43576,8107,183563,47798,45801,144310,154384,153629,33779,153627,74756,182661,45968,169785,36508,36509,133422,74767,134267,147290,61435,153645,69350,9575,182248,153903,154383,61439,153634,71294,8106,153632,153638,74763,1083,134629,131862,153539,153628,154382,154400,69354,154351,138525,138526,69355,169510,123628,154352,154353,154385,5974,33360,153860,154401,154354,69360,69361,73587,154357,69362,69363,73074,69359,69364,69346,69358,69365,154359,154358,146847,152789,152788,73588,154361,154386,154387,199298,154362,154363,195316,30476,197518,41201,37824,40883,38092,40553,38178,40687,38905,38596,37667,37668,37979,40334,40335,41239,41240,40554,4541,37704,37775,37797,40667,38759,38760,38692,38693,40668,38180,38181,41161,41162,41243,41265,41158,41242,41164,41165,41166,41278,41263,40344,37928,38424,37950,37966,38389,38903,38906,38907,38909,38176,38175,38666,41170,38111,38652,40696,38025,41284,38033,41245,41247,41248,41246,41274,38061,38067,38108,40674,40675,38838,38582,38147,38182,38097,37660,38207,37666,40800,37725,37731,37782,38120,38425,38426,38119,40686,37774,41176,38659,38660,38142,40678,38121,38123,40697,41262,38653,37863,38163,38240,38208,40679,37681,37693,38320,38757,38758,41272,41275,41273,41276,38427,40684,38574,38254,38255,38308,38290,38832,40701,38174,38199,41287,38331,38333,37699,38804,38805,41210,40552,41224,41225,41227,41229,41233,41234,41235,41222,40336,41174,41223,40333,41226,41177,40894,38203,38204,38784,37853,37833,37834,38383,38187,38544,38372,38375,38376,38238,38774,38368,38369,38808,38367,38229,37815,37816,37891,40695,40693,40350,40351,38373,38107,41171,41173,41139,41140,38726,41042,40690,40691,40893,38702,38345,38188,38767,40322,40836,37719,37720,37733,37735,38328,38429,38447,38448,38432,38437,38435,38438,38210,59666,38603,40896,37802,38466,38530,38531,38533,38456,38484,41208,38214,38215,38598,38493,38499,38504,40682,40683,38109,37710,38899,38566,41202,38752,38753,38667,41031,41169,38413,40830,38465,38624,38324,38715,38625,38638,38629,38630,38635,38640,38641,38642,38820,41200,41194,38578,41282,37682,38548,41199,41196,41197,38205,41195,37679,41198,41192,37678,38159,41279,41280,38470,37936,38036,38053,40884,38060,38934,40881,40882,38583,38584,37988,38217,40831,40671,37825,38083,40672,40673,38401,38403,38404,38405,40681,38402,40666,41179,40694,38682,38684,38450,38449,40880,38700,38750,37959,37726,37727,37732,37734,37736,37773,37723,37724,37729,41030,38571,38739,41288,38591,38761,41182,40890,38842,40891,38755,38831,38803,38616,38620,40704,38789,38897,41183,41190,41191,41203,41189,37894,37832,38861,40879,38879,38866,38871,41281,41181,40887,41283,40889,41135,38756,40892,3920,128373,134155,144602,144613,144606,138593,34904,165268,127487,4768,219450,4802,154278,117680,124904,151356,79530,140325,133112,134209,213410,60835,133853,75312,204097,204098,154107,226946,30281,33919,110875,127461,42684,213644,43154,129516,71824,40026,140586,137172,162863,169149,143916,152804,75813,150303,153158,72046,206069,10467,206486,157341,220342,111965,157998,7329,111964,132585,210882,212628,169150,199272,158515,206699,62330,34760,81130,72071,62380,69823,69750,69668,69883,223449,81345,69956,80457,144582,81728,11650,11649,11651,131343,56397,163311,95950,71078,151039,201095,81525,81336,81337,210102,144581,204078,11647,11648,11727,62443,72079,206498,62353,164703,60939,81429,205420,81284,30353,2725,208195,226744,81433,11709,62371,81359,144313,218592,69969,69970,135611,141981,220208,219484,134426,135620,135621,2728,2729,62394,81231,81084,208475,11653,223587,226626,81720,81721,81722,56567,63200,210178,62410,201094,81616,144583,81760,31332,57419,57420,62426,224508,115492,81455,149506,81690,36452,62413,60936,81395,36456,81146,81566,81561,163760,163360,226745,2537,143952,166298,226746,2686,226747,107043,81684,62319,81687,2485,150690,153515,226749,81609,81645,57453,81388,81646,2630,81647,226748,208219,6852,98606,43533,207599,215382,2432,2433,61222,61223,181241,204760,214689,213881,214350,214375,215306,2648,215372,215281,215297,215322,215356,214391,214451,81475,214467,214489,214505,214673,214705,214721,215339,214435,204483,214523,214569,214622,36454,214543,214587,214604,215264,205193,214641,214657,215055,215247,11729,150448,219165,214737,215071,214753,206106,204776,215007,30240,62652,36472,214931,214959,214991,215039,30239,214975,215087,215119,81024,215023,215103,215135,215167,215183,215215,215151,215199,142961,215231,163326,62695,62696,169148,164035,199108,5010,169373,60969,90875,150377,198420,226188,226392,109991,110003,214314,102555,184950,58003,142078,157753,224469,59877,140507,205204,94896,169071,219354,219355,164745,206816,139590,184951,170475,136542,184993,165853,76219,194502,197293,193898,61224,61225,138523,138524,140011,173183,206258,75213,137289,154250,193826,160973,168886,71830,193899,106769,207956,207036,207035,214603,57992,210072,169245,228095,228096,228120,123342,228087,228123,228130,228094,228091,228114,228116,228115,228119,228104,228105,228106,228107,228100,228132,228092,228109,228125,228118,228101,228093,228110,228103,228102,228127,228122,228126,228112,228111,228128,228133,228129,228113,228135,228124,228099,228097,165042,228117,228134,228131,228121,228098,228089,228136,228090,228108,228137,228088,123341,227832,227833,227834,227835,227831,154240,228032,228036,228039,228038,228033,228034,228040,228031,117192,154047,228029,228030,228041,228028,228037,154232,223869,227805,227768,227793,227757,227796,227801,227766,227763,227784,227786,227787,139945,227791,227775,227776,227778,227772,227803,227764,227783,227792,227789,227773,227765,227781,227774,227771,227798,227795,227794,227782,123343,227785,227799,227804,227802,227780,227777,227761,227797,227769,227770,227788,227800,227790,227767,227759,227760,227762,227779,227806,227758,227730,227712,227937,227715,227716,227717,227718,227719,227720,227721,227722,227723,227724,227725,227726,227727,227728,154231,227714,227729,227713,139946,131980,132903,136630,227359,139537,139499,139695,132369,138669,138671,138672,139696,134847,161237,226187,135421,135420,92338,92376,227392,136477,227390,227352,227353,165922,227391,227021,227043,227044,158574,227358,227396,227312,227338,227387,227394,227425,227292,216401,227335,227397,227357,227419,227337,227395,227420,227388,227355,227393,227334,227336,227354,227310,227287,219079,216388,227276,227272,212101,227301,160847,137701,137713,198391,95789,137712,102589,137708,137700,169356,137704,137703,137711,92227,106469,137702,227284,137706,137707,137705,137698,121540,137709,121539,210764,227042,216392,137699,227034,169355,92222,210145,221186,227294,124122,155085,227036,162320,162869,227031,227291,208483,208484,103369,137714,163247,198721,209026,209027,210146,210194,227030,165231,216399,169342,139563,169340,216391,227035,227038,198720,210195,226906,165232,206149,136144,153418,92318,102586,142162,212190,137710,142255,227025,169354,169338,213467,136130,127858,212359,214639,212097,221187,212350,212267,212266,212231,212315,216387,124313,227041,212286,228432,228431,169357,212109,205779,212330,92319,212305,169085,140337,206946,108309,218910,227039,212210,212334,227285,136286,222126,136392,136393,223722,212241,212260,212199,227273,142256,142257,212273,206141,136600,201127,227670,92342,110216,137731,139622,139623,212242,212325,92284,205921,226186,219353,137730,142290,208891,162262,227320,227325,102580,150904,218122,205185,216405,227286,136631,136632,163248,212320,213035,216397,216403,218124,227024,140505,169341,218121,227324,216619,227309,137716,212244,212258,212319,212327,213034,227269,212340,216398,140506,227311,218077,160848,212203,212318,210190,216394,212240,133108,136391,212186,92307,212446,212206,137717,210522,227295,92308,212314,212274,212280,212275,139701,228999,212217,92326,212223,212229,92320,212096,212092,212194,163984,156232,228998,212256,221189,226185,132374,118072,210752,210759,210758,210755,210761,210760,228651,216476,151043,212261,127206,227022,92304,210343,101436,212106,140119,220932,212288,205160,212313,212094,92339,137718,224222,126121,219556,212337,136526,143634,227023,212222,210753,210751,210756,128368,201419,227029,227517,162322,224615,227037,212245,212185,198389,92327,131946,135199,212341,134859,154900,92336,169269,212293,169288,169262,169273,169265,169268,169279,169281,129603,212218,98419,128367,212250,169286,92314,128714,169267,169290,169272,169260,169261,169276,93779,169282,212099,168622,212292,169264,169284,169274,169271,131979,212225,210754,169266,169280,137715,210485,169283,169275,169263,137719,212187,127330,205778,169278,169277,169270,212268,169287,169291,169289,133106,117620,169285,159644,227052,159643,136143,227065,152354,159355,159336,117621,159341,159335,159346,159356,159343,152353,159353,159337,159342,159345,159340,159339,159357,159354,163421,163422,227275,212086,132868,163434,142258,103376,227075,92309,223413,206591,92288,163441,128369,163440,118074,163418,210208,227192,227193,227194,227195,216389,212236,212227,163423,92287,209769,163429,163425,163426,163430,227088,163424,216332,227064,136287,136288,136289,163439,132368,140108,163443,163427,216396,159338,212282,212234,140109,142259,140504,210053,163417,92300,212193,212183,210757,210762,210763,212200,227055,216325,227051,227279,227302,227028,139500,227308,227280,227027,136645,210192,216393,216395,223421,227048,227049,160849,227072,216400,227290,227525,227323,216323,216324,216331,216390,216402,216406,216407,223422,224203,224204,227045,227047,227053,227040,227026,227318,227278,227373,161238,216404,227046,227056,227050,138776,138777,139616,152357,159349,159347,159348,92340,159334,159333,159332,159329,159331,159330,163431,163420,134726,120779,132372,163436,92297,163419,163435,163437,163438,137735,159639,163442,159358,223420,222456,159351,159350,159352,216295,229695,229822,229823,229824,229825,229826,163433,102476,163432,92285,163428,212316,159641,159642,159640,92306,216330,226703,92223,92286,212093,212095,225237,226189,127365,212214,223393,216333,92770,212298,98420,108342,92718,136628,154243,212243,212281,115376,120782,226701,226702,224202,137734,227071,227019,227073,137736,206419,155342,136418,150449,137732,131528,155365,155356,155362,228000,139889,155357,155360,227328,144296,226530,155361,155358,227305,227303,227304,161726,158614,227077,227078,227054,227080,226532,155347,92311,125689,155363,162323,137738,212285,155355,212207,224431,92298,155364,216281,227059,224426,159344,207965,227274,151026,92301,207964,92328,207969,207973,207963,219380,161081,227958,207959,136358,207961,207962,156213,165222,136333,219408,207976,207979,207974,207975,208208,224898,207980,167155,167156,216303,132370,202760,133322,210471,224184,136414,207960,207966,207971,207967,111507,207970,216336,216329,218123,216294,216326,207968,210153,212239,212091,207978,212088,207958,92312,224891,212276,212277,92341,213434,203974,207972,203970,136413,207977,108307,224894,227214,92332,92331,154879,216318,169042,210345,118073,151024,209767,92335,227066,227079,227270,120781,136357,138775,139615,212198,227329,124314,226318,212335,216335,218126,225795,227081,92333,216320,227074,227082,212326,227196,213440,213438,213435,223417,227379,223416,223418,163371,163393,163392,212098,140118,212246,211365,135425,138877,136593,136594,163391,164743,223437,92299,223412,101041,136515,223411,212188,211372,212201,102584,136640,136639,143739,211364,227330,163396,163395,163375,223406,223405,163370,163369,163389,211367,211380,223414,128715,206590,140338,219692,219693,227423,132371,216305,223407,223404,223443,163386,163387,163377,92305,223409,223403,224417,163368,223398,163388,136119,163379,163366,163397,163364,163373,227057,224428,216321,206140,212299,92313,92343,212265,212272,199154,120780,136353,136354,223410,163383,212202,224906,92289,224905,211366,223444,212192,212297,227424,223392,163394,223729,140115,212180,168726,224416,223436,227375,223433,142249,142252,142253,227313,218131,218132,227271,136098,157754,209022,218127,218128,227315,227350,216293,218134,221059,223427,218133,218135,218138,218139,227327,227321,224419,227376,227293,160850,224421,227382,227316,227351,218136,218137,218140,223423,223424,223425,223426,223428,223430,227228,227233,227331,227349,227372,227383,218129,224422,142251,158573,218130,136355,212304,169345,163372,92303,223419,163380,211369,163384,218125,211361,211362,211363,211368,211370,211371,211376,211378,211379,211381,227384,212235,210209,212247,212343,163367,163378,163381,212181,163382,224436,163390,163374,92302,137733,163376,163385,211377,227435,227436,227434,216327,163325,227086,119710,108758,216315,216314,92377,210122,216302,224420,224415,166039,92228,227380,227418,175018,174502,227058,108424,92220,227213,227020,227068,136559,136560,136562,224900,224901,224902,135503,136117,216322,217718,153430,153431,136118,136115,140116,206561,227063,223401,212287,206332,227524,160845,227076,136116,163403,213439,216317,224899,168714,226875,136312,136545,136578,136579,216279,212191,212087,227277,218073,216284,136313,137737,216328,223400,158575,206544,216280,163997,136369,208069,136314,226786,227070,227218,213437,227217,216301,92290,226761,139510,227060,223396,134309,224425,164805,164806,137722,92295,212333,136296,216286,224418,161725,216288,92292,158609,227085,92329,125705,210147,164108,227067,158611,221478,137727,218937,216304,226312,218025,136570,218022,227385,136295,210207,218023,101039,216319,216310,216312,226313,218019,218020,125517,226526,128056,92361,92363,92362,204086,136141,136556,212179,129617,212301,143139,143142,226903,223438,226314,92359,110211,226527,218006,140009,218024,92344,226531,212195,197628,212213,132194,212302,212259,163728,216282,142955,142952,142953,137729,212312,142956,92345,102578,137721,142957,142958,125481,224909,209530,209531,209532,137725,120778,221264,216334,175482,137726,137724,227197,92378,224903,92229,224423,227529,92221,226908,140117,92379,101040,219377,221199,115375,223445,217967,227381,155439,153429,137728,226905,155447,155441,155442,92283,155438,136282,155446,155445,155444,136364,155440,92230,155443,135391,135390,135389,136362,136363,226476,226485,226486,226487,226488,226489,226490,226491,226492,226493,226494,226477,226495,226496,226497,226498,226499,226500,226501,226502,226503,226504,226478,226505,226506,226507,226508,226509,226510,226511,226512,226513,226514,226479,226515,226516,226517,226518,226519,226520,226521,226522,226523,226524,226480,226525,226481,226482,226483,226484,92358,227200,210224,227378,136520,227374,227439,226879,136626,152432,156830,136099,162018,191427,135499,223415,136365,227094,212271,108339,124096,124097,124099,124100,124101,227121,227114,163983,136603,212251,136142,139505,137723,212189,139504,226869,206589,151048,139528,139527,139531,139526,130810,224897,139529,139534,139533,92347,139530,227087,139532,226865,136544,139525,136528,136584,92296,156596,226866,136297,95411,92380,174951,226868,136571,136572,218021,224911,92334,227201,156226,226832,161079,92293,218120,227124,227099,227122,227123,227403,131739,175725,136534,227221,175109,212353,152763,131740,136533,131743,136532,131742,131741,136531,191425,206147,136530,135062,212107,191426,136398,136527,212254,226909,136529,136396,136400,136641,125658,226833,227406,161080,133755,157256,227399,156228,226895,136097,136139,136137,136138,227440,227343,227232,227405,227361,136140,163446,227231,227089,227389,227093,226900,163444,212226,198309,226894,169048,219351,106470,203985,108745,135395,158610,227092,227345,155086,92315,227069,206934,227216,227149,160667,160673,160668,226840,136367,160671,227250,175523,160672,227410,227409,227198,227101,227110,226826,227306,227106,227119,227115,227096,227108,227116,227117,227340,227107,227234,227105,227362,227097,227339,227404,227400,75217,160664,227952,136634,136635,108746,75249,75251,75216,226874,75237,75243,75214,75245,75241,206142,75219,75250,75227,75233,75252,75222,75246,75232,75242,75235,75226,75225,75253,75230,75247,75229,75244,75238,75240,75236,75234,75224,75248,75215,75231,75223,75220,75239,75218,75221,218141,75228,166505,166514,166602,181202,166603,166604,166605,166606,166607,166608,166609,166610,181200,166611,166612,166613,166614,166615,166616,166617,166618,166619,166620,166515,167292,166621,166622,166623,166624,166625,166626,166627,166628,166629,166516,166630,166631,166632,166633,166634,166635,166636,166637,166638,166639,166517,166640,166641,166642,181203,166643,166644,166645,166646,166647,166648,166518,166649,166650,166651,166652,166653,181204,166654,166655,166656,166657,166519,166658,166659,181205,166660,166661,166662,166663,166664,166665,166666,166520,181206,166667,166668,166669,166670,166671,166672,166673,166674,166675,166521,181207,166676,166677,166678,166679,166680,181208,166681,166682,166683,166522,166684,166685,166686,166687,166688,166689,181209,166690,166691,166692,166506,166523,166693,166524,220608,166710,220609,166525,220610,166526,166527,220611,166731,166528,166739,166529,166530,166755,166531,166758,166760,166762,166532,166507,166533,166534,166793,166794,166535,166796,166797,166799,166800,166536,166806,166807,166808,166809,166810,166811,166812,166813,166815,92330,166537,136538,166817,166818,166824,166538,166825,166826,166827,166828,166829,166830,166831,166832,166539,166834,166838,166839,166540,166843,166844,166845,166847,166850,166541,166851,166542,166508,166543,220612,166544,166545,166546,220613,166547,220592,220614,166548,166549,166908,136540,166550,166920,166551,166552,220593,166509,166553,220615,166941,166942,166943,166944,166554,181225,166555,166956,136535,136537,166556,220616,166557,166558,166559,166560,166561,166562,166510,166563,166564,166565,136536,181201,166566,166567,166568,220617,221201,220344,220345,220462,166569,220581,220347,220346,220463,220582,220464,220465,220466,166570,166571,166511,166572,221203,220467,166573,220618,221204,220468,220469,220470,220471,166574,220472,166575,136541,166576,166577,136539,166578,166579,166580,166581,166512,166582,166583,166584,166585,166586,166587,166588,166589,166590,166591,166513,166592,166593,166594,166595,166596,166597,166598,166599,166600,166601,150425,136368,227222,227398,160661,160654,160656,126977,227129,160662,227411,160660,160659,226836,136576,165375,227369,205588,198751,165372,165398,198749,205586,165371,165381,165362,205587,165393,165363,198755,226784,205597,110221,165396,165384,165365,165368,205593,205589,205591,165378,165374,165361,165373,198756,157269,165397,165385,165379,226783,226212,205598,205596,205594,205584,205585,165394,165370,165389,165392,198724,198753,198750,225381,213444,165364,165390,227356,227120,163445,227422,227412,218181,218142,165367,165383,165382,165391,205595,205590,198754,212291,150186,165369,165388,165395,165376,165386,165366,165377,165380,227951,227954,227955,227956,135037,205592,165387,227103,227148,136301,160665,160663,160657,160658,160655,160666,136302,226873,227100,227102,227416,227098,226910,160669,160670,224614,212270,164783,164782,197722,136412,139521,139511,227118,227341,227953,227143,227342,227224,136521,221098,227240,136638,135443,135441,71846,71832,150206,71836,229827,135440,135493,212342,218085,227364,227365,227414,227347,227236,227360,227104,71844,150211,136408,135442,227090,136737,218099,227346,227126,124961,218143,170443,222107,227144,227125,127445,125745,150204,131731,217020,217023,217026,217029,127439,127435,127447,136624,227091,127443,127448,136633,127434,136739,136437,127441,127438,127449,127437,127436,127442,227860,124962,217034,217035,150207,226864,92219,124965,136625,150208,226778,127432,115379,217012,127455,127452,127451,136547,136546,227127,125746,127453,127454,127458,127456,218103,132864,139520,217008,217033,217039,217014,217043,217044,217047,217024,217050,217053,227223,217019,217025,227095,137853,226774,136738,150212,136423,217045,217021,217046,217022,217027,217028,136548,222105,217958,170445,217016,217048,217051,217052,220579,156829,222106,124971,227132,227109,227238,227241,227142,217040,136549,136550,106293,218104,217011,217041,217017,217049,217054,131736,137857,217031,217032,217037,217038,217042,217030,226839,175723,227137,213988,136422,217007,217009,217010,217015,217036,217013,217018,110218,197799,115839,131771,194350,194808,137856,194351,164188,227138,227134,165230,124972,150209,221194,212255,124994,179424,124973,218187,125738,227245,218113,227244,218114,164195,92317,162024,218188,227160,225380,124977,124981,197731,124979,162263,124980,109004,197730,124985,92218,196208,92719,124996,112170,124987,124991,124989,124992,136283,136284,221241,227417,227344,227219,227402,227140,227235,227386,227363,227239,227332,227333,227413,227407,227421,34653,34652,159581,150376,102633,102634,5007,57820,5006,4904,4906,4910,4914,4912,4907,4909,4905,4913,4903,4911,4908,4902,4900,4897,4896,4901,4899,4898,4895,169534,47897,4879,46822,4881,93037,4876,4877" | |
return mo, raw_public_domain_ids | |
@app.cell(hide_code=True) | |
def _(): | |
GALLARY_WIDGET_ESM = """ | |
import * as flech from "https://esm.sh/@uwdata/[email protected]"; | |
function render({ model, el }) { | |
let objects = flech.tableFromIPC(new Uint8Array(model.get("_ipc").buffer)); | |
let container = document.createElement("div"); | |
container.className = "gallery"; | |
let paginationControls = document.createElement("div"); | |
paginationControls.className = "pagination-controls"; | |
let prevButton = document.createElement("button"); | |
prevButton.innerText = "← Previous"; | |
let pageIndicator = document.createElement("span"); | |
pageIndicator.className = "page-indicator"; | |
let nextButton = document.createElement("button"); | |
nextButton.innerText = "Next →"; | |
paginationControls.appendChild(prevButton); | |
paginationControls.appendChild(pageIndicator); | |
paginationControls.appendChild(nextButton); | |
el.appendChild(container); | |
el.appendChild(paginationControls); | |
function update() { | |
container.replaceChildren(); | |
let size = model.get("size"); | |
let page = model.get("page"); | |
let pageSize = model.get("page_size"); | |
let totalPages = Math.ceil(objects.numRows / pageSize); | |
container.style.gridTemplateColumns = `repeat(auto-fill, minmax(${size}px, 1fr))`; | |
let startIdx = page * pageSize; | |
let endIdx = Math.min(startIdx + pageSize, objects.numRows); | |
for (let i = startIdx; i < endIdx; i++) { | |
let row = objects.get(i); | |
let item = document.createElement("div"); | |
item.className = "gallery-item"; | |
let link = Object.assign(document.createElement("a"), { | |
className: "thumb-link", | |
href: `https://www.nga.gov/collection/art-object-page.${row.objectid}.html`, | |
target: "_blank", | |
rel: "noopener noreferrer", | |
}); | |
link.style.width = `${size}px`; | |
link.style.height = `${size}px`; | |
let img = Object.assign(document.createElement("img"), { | |
src: row.thumburl, | |
alt: row.title, | |
}); | |
link.appendChild(img); | |
if (row.public) { | |
let badge = Object.assign(document.createElement("img"), { | |
src: "https://mirrors.creativecommons.org/presskit/icons/zero.svg", | |
alt: "Public Domain", | |
className: "public-domain-badge", | |
}); | |
link.appendChild(badge); | |
} | |
item.appendChild(link); | |
container.appendChild(item); | |
} | |
pageIndicator.innerText = `Page ${page + 1} of ${totalPages}`; | |
prevButton.disabled = page <= 0; | |
nextButton.disabled = page >= totalPages - 1; | |
} | |
update(); | |
prevButton.addEventListener("click", () => { | |
let page = model.get("page"); | |
if (page > 0) { | |
model.set("page", page - 1); | |
model.save_changes(); | |
} | |
}); | |
nextButton.addEventListener("click", () => { | |
let page = model.get("page"); | |
let pageSize = model.get("page_size"); | |
let totalPages = Math.ceil(objects.numRows / pageSize); | |
if (page < totalPages - 1) { | |
model.set("page", page + 1); | |
model.save_changes(); | |
} | |
}); | |
model.on("change:page", update); | |
model.on("change:size", update); | |
model.on("change:page_size", update); | |
} | |
export default { render }; | |
""" | |
GALLARY_WIDGET_STYLES = """ | |
.gallery { | |
display: grid; | |
gap: 8px; | |
margin-bottom: 15px; | |
} | |
.gallery-item { | |
position: relative; | |
text-align: center; | |
} | |
.thumb-link { | |
display: block; | |
position: relative; | |
} | |
.thumb-link img:first-child { | |
width: 100%; | |
height: 100%; | |
object-fit: cover; | |
border-radius: 5px; | |
} | |
.public-domain-badge { | |
position: absolute; | |
bottom: 3px; | |
right: 3px; | |
width: 20px; | |
height: 20px; | |
opacity: 0.6; | |
} | |
.pagination-controls { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
margin-top: 10px; | |
gap: 15px; | |
} | |
.pagination-controls button { | |
padding: 5px 10px; | |
background-color: var(--background); | |
border: 1px solid #ccc; | |
border-radius: 4px; | |
cursor: pointer; | |
} | |
.pagination-controls button:disabled { | |
background-color: var(--background); | |
color: #999; | |
cursor: not-allowed; | |
} | |
.page-indicator { | |
font-size: 14px; | |
} | |
""" | |
return GALLARY_WIDGET_ESM, GALLARY_WIDGET_STYLES | |
if __name__ == "__main__": | |
app.run() |
@FlynnOConnell this is a marmio notebook. Running directly with uv
will just execute the code as a script (i.e., "headless" mode, without UI). In order to use the marimo UI you need to invoke marimo
:
uvx marimo edit https://gist.githubusercontent.com/manzt/7c63c7481b9fb39be1d815356fc4bf0f/raw/82e3530ad35f0cc3251490e80b073669a3bf581c/open_nga.py
Because it's from a URL, marimo will prompt you if you want to run inside a Docker sandbox (need to have docker installed to do so). Otherwise, you can just say n
and run it on your system like uv run.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
0 clue what this script is meant to do but I tried it out lol
What did I do wrong!
P.S dont trust strangers it was so easy to run this